]> git.proxmox.com Git - mirror_qemu.git/blame - configure
Revert "audio: fix pc speaker init"
[mirror_qemu.git] / configure
CommitLineData
7d13299d
FB
1#!/bin/sh
2#
3ef693a0 3# qemu configure script (c) 2003 Fabrice Bellard
7d13299d 4#
8cd05ab6 5
99519e67
CH
6# Unset some variables known to interfere with behavior of common tools,
7# just as autoconf does.
8CLICOLOR_FORCE= GREP_OPTIONS=
9unset CLICOLOR_FORCE GREP_OPTIONS
10
5e4dfd3d
JS
11# Don't allow CCACHE, if present, to use cached results of compile tests!
12export CCACHE_RECACHE=yes
13
8cd05ab6
PM
14# Temporary directory used for files created while
15# configure runs. Since it is in the build directory
16# we can safely blow away any previous version of it
17# (and we need not jump through hoops to try to delete
18# it when configure exits.)
19TMPDIR1="config-temp"
20rm -rf "${TMPDIR1}"
21mkdir -p "${TMPDIR1}"
22if [ $? -ne 0 ]; then
23 echo "ERROR: failed to create temporary directory"
24 exit 1
7d13299d
FB
25fi
26
8cd05ab6
PM
27TMPB="qemu-conf"
28TMPC="${TMPDIR1}/${TMPB}.c"
66518bf6 29TMPO="${TMPDIR1}/${TMPB}.o"
9c83ffd8 30TMPCXX="${TMPDIR1}/${TMPB}.cxx"
8cd05ab6 31TMPE="${TMPDIR1}/${TMPB}.exe"
6969ec6c 32TMPMO="${TMPDIR1}/${TMPB}.mo"
7d13299d 33
da1d85e3 34rm -f config.log
9ac81bbb 35
b48e3611
PM
36# Print a helpful header at the top of config.log
37echo "# QEMU configure log $(date)" >> config.log
979ae168
PM
38printf "# Configured with:" >> config.log
39printf " '%s'" "$0" "$@" >> config.log
40echo >> config.log
b48e3611
PM
41echo "#" >> config.log
42
d880a3ba
PB
43print_error() {
44 (echo
76ad07a4
PM
45 echo "ERROR: $1"
46 while test -n "$2"; do
47 echo " $2"
48 shift
49 done
d880a3ba
PB
50 echo) >&2
51}
52
53error_exit() {
54 print_error "$@"
76ad07a4
PM
55 exit 1
56}
57
9c83ffd8
PM
58do_compiler() {
59 # Run the compiler, capturing its output to the log. First argument
60 # is compiler binary to execute.
61 local compiler="$1"
62 shift
8bbe05d7
IJ
63 if test -n "$BASH_VERSION"; then eval '
64 echo >>config.log "
65funcs: ${FUNCNAME[*]}
66lines: ${BASH_LINENO[*]}"
67 '; fi
9c83ffd8
PM
68 echo $compiler "$@" >> config.log
69 $compiler "$@" >> config.log 2>&1 || return $?
8dc38a78
PM
70 # Test passed. If this is an --enable-werror build, rerun
71 # the test with -Werror and bail out if it fails. This
72 # makes warning-generating-errors in configure test code
73 # obvious to developers.
74 if test "$werror" != "yes"; then
75 return 0
76 fi
77 # Don't bother rerunning the compile if we were already using -Werror
78 case "$*" in
79 *-Werror*)
80 return 0
81 ;;
82 esac
9c83ffd8
PM
83 echo $compiler -Werror "$@" >> config.log
84 $compiler -Werror "$@" >> config.log 2>&1 && return $?
76ad07a4
PM
85 error_exit "configure test passed without -Werror but failed with -Werror." \
86 "This is probably a bug in the configure script. The failing command" \
87 "will be at the bottom of config.log." \
88 "You can run configure with --disable-werror to bypass this check."
8dc38a78
PM
89}
90
9c83ffd8
PM
91do_cc() {
92 do_compiler "$cc" "$@"
93}
94
95do_cxx() {
96 do_compiler "$cxx" "$@"
97}
98
99update_cxxflags() {
100 # Set QEMU_CXXFLAGS from QEMU_CFLAGS by filtering out those
101 # options which some versions of GCC's C++ compiler complain about
102 # because they only make sense for C programs.
11cde1c8
BD
103 QEMU_CXXFLAGS="$QEMU_CXXFLAGS -D__STDC_LIMIT_MACROS"
104
9c83ffd8
PM
105 for arg in $QEMU_CFLAGS; do
106 case $arg in
107 -Wstrict-prototypes|-Wmissing-prototypes|-Wnested-externs|\
108 -Wold-style-declaration|-Wold-style-definition|-Wredundant-decls)
109 ;;
7be41675
TH
110 -std=gnu99)
111 QEMU_CXXFLAGS=${QEMU_CXXFLAGS:+$QEMU_CXXFLAGS }"-std=gnu++98"
112 ;;
9c83ffd8
PM
113 *)
114 QEMU_CXXFLAGS=${QEMU_CXXFLAGS:+$QEMU_CXXFLAGS }$arg
115 ;;
116 esac
117 done
118}
119
52166aa0 120compile_object() {
fd0e6053
JS
121 local_cflags="$1"
122 do_cc $QEMU_CFLAGS $local_cflags -c -o $TMPO $TMPC
52166aa0
JQ
123}
124
125compile_prog() {
126 local_cflags="$1"
127 local_ldflags="$2"
8dc38a78 128 do_cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
52166aa0
JQ
129}
130
11568d6d
PB
131# symbolically link $1 to $2. Portable version of "ln -sf".
132symlink() {
72b8b5a1 133 rm -rf "$2"
ec5b06d7 134 mkdir -p "$(dirname "$2")"
72b8b5a1 135 ln -s "$1" "$2"
11568d6d
PB
136}
137
0dba6195
LM
138# check whether a command is available to this shell (may be either an
139# executable or a builtin)
140has() {
141 type "$1" >/dev/null 2>&1
142}
143
144# search for an executable in PATH
145path_of() {
146 local_command="$1"
147 local_ifs="$IFS"
148 local_dir=""
149
150 # pathname has a dir component?
151 if [ "${local_command#*/}" != "$local_command" ]; then
152 if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then
153 echo "$local_command"
154 return 0
155 fi
156 fi
157 if [ -z "$local_command" ]; then
158 return 1
159 fi
160
161 IFS=:
162 for local_dir in $PATH; do
163 if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then
164 echo "$local_dir/$local_command"
165 IFS="${local_ifs:-$(printf ' \t\n')}"
166 return 0
167 fi
168 done
169 # not found
170 IFS="${local_ifs:-$(printf ' \t\n')}"
171 return 1
172}
173
5b808275
LV
174have_backend () {
175 echo "$trace_backends" | grep "$1" >/dev/null
176}
177
3b6b7550
PB
178glob() {
179 eval test -z '"${1#'"$2"'}"'
180}
181
182supported_hax_target() {
183 test "$hax" = "yes" || return 1
184 glob "$1" "*-softmmu" || return 1
185 case "${1%-softmmu}" in
186 i386|x86_64)
187 return 0
188 ;;
189 esac
190 return 1
191}
192
193supported_kvm_target() {
194 test "$kvm" = "yes" || return 1
195 glob "$1" "*-softmmu" || return 1
196 case "${1%-softmmu}:$cpu" in
197 arm:arm | aarch64:aarch64 | \
198 i386:i386 | i386:x86_64 | i386:x32 | \
199 x86_64:i386 | x86_64:x86_64 | x86_64:x32 | \
200 mips:mips | mipsel:mips | \
a69dc537 201 ppc:ppc | ppc64:ppc | ppc:ppc64 | ppc64:ppc64 | \
3b6b7550
PB
202 s390x:s390x)
203 return 0
204 ;;
205 esac
206 return 1
207}
208
209supported_xen_target() {
210 test "$xen" = "yes" || return 1
211 glob "$1" "*-softmmu" || return 1
b5ed2e11
PB
212 # Only i386 and x86_64 provide the xenpv machine.
213 case "${1%-softmmu}" in
214 i386|x86_64)
3b6b7550
PB
215 return 0
216 ;;
217 esac
218 return 1
219}
220
c97d6d2c
SAGDR
221supported_hvf_target() {
222 test "$hvf" = "yes" || return 1
223 glob "$1" "*-softmmu" || return 1
224 case "${1%-softmmu}" in
225 x86_64)
226 return 0
227 ;;
228 esac
229 return 1
230}
231
d661d9a4
JTV
232supported_whpx_target() {
233 test "$whpx" = "yes" || return 1
234 glob "$1" "*-softmmu" || return 1
235 case "${1%-softmmu}" in
236 i386|x86_64)
237 return 0
238 ;;
239 esac
240 return 1
241}
242
d880a3ba
PB
243supported_target() {
244 case "$1" in
245 *-softmmu)
246 ;;
247 *-linux-user)
248 if test "$linux" != "yes"; then
249 print_error "Target '$target' is only available on a Linux host"
250 return 1
251 fi
252 ;;
253 *-bsd-user)
254 if test "$bsd" != "yes"; then
255 print_error "Target '$target' is only available on a BSD host"
256 return 1
257 fi
258 ;;
259 *)
260 print_error "Invalid target name '$target'"
261 return 1
262 ;;
263 esac
b3f6ea7e
PB
264 test "$tcg" = "yes" && return 0
265 supported_kvm_target "$1" && return 0
266 supported_xen_target "$1" && return 0
267 supported_hax_target "$1" && return 0
c97d6d2c 268 supported_hvf_target "$1" && return 0
d661d9a4 269 supported_whpx_target "$1" && return 0
b3f6ea7e
PB
270 print_error "TCG disabled, but hardware accelerator not available for '$target'"
271 return 1
d880a3ba
PB
272}
273
e9a3591f
CB
274
275ld_has() {
276 $ld --help 2>/dev/null | grep ".$1" >/dev/null 2>&1
277}
278
7d13299d 279# default parameters
89138857 280source_path=$(dirname "$0")
2ff6b91e 281cpu=""
a31a8642 282iasl="iasl"
1e43adfc 283interp_prefix="/usr/gnemul/qemu-%M"
43ce4dfe 284static="no"
7d13299d 285cross_prefix=""
0c58ac1c 286audio_drv_list=""
b64ec4e4
FZ
287block_drv_rw_whitelist=""
288block_drv_ro_whitelist=""
e49d021e 289host_cc="cc"
73da375e 290libs_softmmu=""
3e2e0e6b 291libs_tools=""
67f86e8e 292audio_pt_int=""
d5631638 293audio_win_int=""
957f1f99 294libs_qga=""
5bc62e01 295debug_info="yes"
63678e17 296stack_protector=""
ac0df51d 297
92712822
DB
298if test -e "$source_path/.git"
299then
f62bbee5 300 git_update=yes
92712822 301 git_submodules="ui/keycodemapdb"
3ac1f813
EC
302 git_submodules="$git_submodules tests/fp/berkeley-testfloat-3"
303 git_submodules="$git_submodules tests/fp/berkeley-softfloat-3"
92712822 304else
f62bbee5 305 git_update=no
92712822 306 git_submodules=""
5c0ef67a
DB
307
308 if ! test -f "$source_path/ui/keycodemapdb/README"
309 then
310 echo
311 echo "ERROR: missing file $source_path/ui/keycodemapdb/README"
312 echo
313 echo "This is not a GIT checkout but module content appears to"
314 echo "be missing. Do not use 'git archive' or GitHub download links"
315 echo "to acquire QEMU source archives. Non-GIT builds are only"
316 echo "supported with source archives linked from:"
317 echo
318 echo " https://www.qemu.org/download/"
319 echo
320 echo "Developers working with GIT can use scripts/archive-source.sh"
321 echo "if they need to create valid source archives."
322 echo
323 exit 1
324 fi
92712822 325fi
cc84d63a 326git="git"
ac0df51d 327
afb63ebd
SW
328# Don't accept a target_list environment variable.
329unset target_list
447e133f 330unset target_list_exclude
377529c0
PB
331
332# Default value for a variable defining feature "foo".
333# * foo="no" feature will only be used if --enable-foo arg is given
334# * foo="" feature will be searched for, and if found, will be used
335# unless --disable-foo is given
336# * foo="yes" this value will only be set by --enable-foo flag.
337# feature will searched for,
338# if not found, configure exits with error
339#
340# Always add --enable-foo and --disable-foo command line args.
341# Distributions want to ensure that several features are compiled in, and it
342# is impossible without a --enable-foo that exits if a feature is not found.
343
344bluez=""
345brlapi=""
346curl=""
347curses=""
348docs=""
349fdt=""
58952137 350netmap="no"
377529c0 351sdl=""
a442fe2f 352sdl_image=""
983eef5a 353virtfs=""
fe8fc5ae 354mpath=""
821601ea 355vnc="yes"
377529c0 356sparse="no"
377529c0 357vde=""
377529c0
PB
358vnc_sasl=""
359vnc_jpeg=""
360vnc_png=""
6a021536 361xkbcommon=""
377529c0 362xen=""
d5b93ddf 363xen_ctrl_version=""
eb6fda0f 364xen_pci_passthrough=""
377529c0 365linux_aio=""
47e98658 366cap_ng=""
377529c0 367attr=""
4f26f2b6 368libattr=""
377529c0 369xfs=""
b3f6ea7e 370tcg="yes"
a40161cb 371membarrier=""
299e6f19
PB
372vhost_net=""
373vhost_crypto=""
374vhost_scsi=""
375vhost_vsock=""
e6a74868 376vhost_user=""
d41a75a2 377kvm="no"
b0cb0a66 378hax="no"
c97d6d2c 379hvf="no"
d661d9a4 380whpx="no"
2da776db 381rdma=""
21ab34c9 382pvrdma=""
377529c0
PB
383gprof="no"
384debug_tcg="no"
377529c0 385debug="no"
247724cb 386sanitizers="no"
b553a042 387fortify_source=""
377529c0 388strip_opt="yes"
9195b2c2 389tcg_interpreter="no"
377529c0
PB
390bigendian="no"
391mingw32="no"
1d728c39
BS
392gcov="no"
393gcov_tool="gcov"
377529c0 394EXESUF=""
17969268
FZ
395DSOSUF=".so"
396LDFLAGS_SHARED="-shared"
397modules="no"
377529c0
PB
398prefix="/usr/local"
399mandir="\${prefix}/share/man"
528ae5b8 400datadir="\${prefix}/share"
3d5eecab 401firmwarepath="\${prefix}/share/qemu-firmware"
850da188 402qemu_docdir="\${prefix}/share/doc/qemu"
377529c0 403bindir="\${prefix}/bin"
3aa5d2be 404libdir="\${prefix}/lib"
8bf188aa 405libexecdir="\${prefix}/libexec"
0f94d6da 406includedir="\${prefix}/include"
377529c0 407sysconfdir="\${prefix}/etc"
785c23ae 408local_statedir="\${prefix}/var"
377529c0 409confsuffix="/qemu"
675b9b53 410slirp=""
377529c0
PB
411oss_lib=""
412bsd="no"
413linux="no"
414solaris="no"
415profiler="no"
416cocoa="no"
417softmmu="yes"
418linux_user="no"
377529c0 419bsd_user="no"
377529c0
PB
420blobs="yes"
421pkgversion=""
40d6444e 422pie=""
3556c233 423qom_cast_debug="yes"
baf86d6b 424trace_backends="log"
377529c0
PB
425trace_file="trace"
426spice=""
427rbd=""
7b02f544 428smartcard=""
2b2325ff 429libusb=""
69354a83 430usb_redir=""
da076ffe 431opengl=""
014cb152 432opengl_dmabuf="no"
5dd89908 433cpuid_h="no"
86583a07 434avx2_opt=""
1ece9905 435zlib="yes"
8ca80760 436capstone=""
b25c9dff
SW
437lzo=""
438snappy=""
6b383c08 439bzip2=""
83bc1f97 440lzfse=""
e8ef31a3 441guest_agent=""
d9840e25 442guest_agent_with_vss="no"
50cbebb9 443guest_agent_ntddscsi="no"
9dacf32d 444guest_agent_msi=""
d9840e25
TS
445vss_win32_sdk=""
446win_sdk="no"
4b1c11fd 447want_tools="yes"
c589b249 448libiscsi=""
6542aa9c 449libnfs=""
519175a2 450coroutine=""
70c60c08 451coroutine_pool=""
7d992e4d 452debug_stack_usage="no"
f0d92b56 453crypto_afalg="no"
f794573e 454seccomp=""
eb100396 455glusterfs=""
d85fa9eb 456glusterfs_xlator_opt="no"
0c14fb47 457glusterfs_discard="no"
df3a429a 458glusterfs_fallocate="no"
7c815372 459glusterfs_zerofill="no"
e014dbe7 460glusterfs_ftruncate_has_stat="no"
0e3b891f 461glusterfs_iocb_has_stat="no"
a4ccabcf 462gtk=""
925a0400 463gtk_gl="no"
a1c5e949 464tls_priority="NORMAL"
ddbb0d09 465gnutls=""
91bfcdb0
DB
466nettle=""
467gcrypt=""
1f923c70 468gcrypt_hmac="no"
8953caf3 469auth_pam=""
bbbf9bfb 470vte=""
9d9e1521 471virglrenderer=""
7aaa6a16 472tpm=""
0a12ec87 473libssh2=""
ed1701c6 474live_block_migration="yes"
a99d57bb 475numa=""
2847b469 476tcmalloc="no"
7b01cb97 477jemalloc="no"
a6b1d4c0 478replication="yes"
da92c3ff 479vxhs=""
2f740136
JC
480bochs="yes"
481cloop="yes"
482dmg="yes"
483qcow1="yes"
484vdi="yes"
485vvfat="yes"
486qed="yes"
487parallels="yes"
488sheepdog="yes"
ed279a06 489libxml2=""
51a12b51 490docker="no"
ba59fb77 491debug_mutex="no"
17824406 492libpmem=""
f3494749 493default_devices="yes"
377529c0 494
d75402b5
AB
495# cross compilers defaults, can be overridden with --cross-cc-ARCH
496cross_cc_aarch64="aarch64-linux-gnu-gcc"
d422b2bc
AB
497cross_cc_aarch64_be="$cross_cc_aarch64"
498cross_cc_cflags_aarch64_be="-mbig-endian"
d75402b5 499cross_cc_arm="arm-linux-gnueabihf-gcc"
d422b2bc 500cross_cc_cflags_armeb="-mbig-endian"
716a507c
AB
501cross_cc_i386="i386-pc-linux-gnu-gcc"
502cross_cc_cflags_i386=""
d75402b5 503cross_cc_powerpc="powerpc-linux-gnu-gcc"
d422b2bc 504cross_cc_powerpc="powerpc-linux-gnu-gcc"
d75402b5
AB
505
506enabled_cross_compilers=""
507
898be3e0
PM
508supported_cpu="no"
509supported_os="no"
fb59dabd 510bogus_os="no"
5a22ab71 511malloc_trim=""
898be3e0 512
ac0df51d
AL
513# parse CC options first
514for opt do
89138857 515 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
ac0df51d
AL
516 case "$opt" in
517 --cross-prefix=*) cross_prefix="$optarg"
518 ;;
3d8df640 519 --cc=*) CC="$optarg"
ac0df51d 520 ;;
83f73fce
TS
521 --cxx=*) CXX="$optarg"
522 ;;
ca4deeb1
PB
523 --source-path=*) source_path="$optarg"
524 ;;
2ff6b91e
JQ
525 --cpu=*) cpu="$optarg"
526 ;;
de385287 527 --extra-cflags=*) QEMU_CFLAGS="$QEMU_CFLAGS $optarg"
e2a2ed06 528 ;;
11cde1c8 529 --extra-cxxflags=*) QEMU_CXXFLAGS="$QEMU_CXXFLAGS $optarg"
11cde1c8 530 ;;
a4969e90 531 --extra-ldflags=*) LDFLAGS="$LDFLAGS $optarg"
f9943cd5 532 EXTRA_LDFLAGS="$optarg"
e2a2ed06 533 ;;
5bc62e01
GH
534 --enable-debug-info) debug_info="yes"
535 ;;
536 --disable-debug-info) debug_info="no"
537 ;;
d75402b5
AB
538 --cross-cc-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-cc-FOO option"
539 ;;
d422b2bc
AB
540 --cross-cc-cflags-*) cc_arch=${opt#--cross-cc-flags-}; cc_arch=${cc_arch%%=*}
541 eval "cross_cc_cflags_${cc_arch}=\$optarg"
542 ;;
d75402b5
AB
543 --cross-cc-*) cc_arch=${opt#--cross-cc-}; cc_arch=${cc_arch%%=*}
544 eval "cross_cc_${cc_arch}=\$optarg"
545 ;;
ac0df51d
AL
546 esac
547done
ac0df51d
AL
548# OS specific
549# Using uname is really, really broken. Once we have the right set of checks
93148aa5 550# we can eliminate its usage altogether.
ac0df51d 551
e49d021e
PM
552# Preferred compiler:
553# ${CC} (if set)
554# ${cross_prefix}gcc (if cross-prefix specified)
555# system compiler
556if test -z "${CC}${cross_prefix}"; then
557 cc="$host_cc"
558else
559 cc="${CC-${cross_prefix}gcc}"
560fi
561
83f73fce
TS
562if test -z "${CXX}${cross_prefix}"; then
563 cxx="c++"
564else
565 cxx="${CXX-${cross_prefix}g++}"
566fi
567
b3198cc2 568ar="${AR-${cross_prefix}ar}"
cdbd727c 569as="${AS-${cross_prefix}as}"
5f6f0e27 570ccas="${CCAS-$cc}"
3dd46c78 571cpp="${CPP-$cc -E}"
b3198cc2
SY
572objcopy="${OBJCOPY-${cross_prefix}objcopy}"
573ld="${LD-${cross_prefix}ld}"
9f81aeb5 574ranlib="${RANLIB-${cross_prefix}ranlib}"
4852ee95 575nm="${NM-${cross_prefix}nm}"
b3198cc2
SY
576strip="${STRIP-${cross_prefix}strip}"
577windres="${WINDRES-${cross_prefix}windres}"
17884d7b
ST
578pkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}"
579query_pkg_config() {
580 "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@"
581}
582pkg_config=query_pkg_config
47c03744 583sdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}"
ac0df51d 584
45d285ab
PM
585# If the user hasn't specified ARFLAGS, default to 'rv', just as make does.
586ARFLAGS="${ARFLAGS-rv}"
587
be17dc90 588# default flags for all hosts
2d31515b
PM
589# We use -fwrapv to tell the compiler that we require a C dialect where
590# left shift of signed integers is well defined and has the expected
591# 2s-complement style results. (Both clang and gcc agree that it
592# provides these semantics.)
7be41675 593QEMU_CFLAGS="-fno-strict-aliasing -fno-common -fwrapv -std=gnu99 $QEMU_CFLAGS"
f9188227 594QEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
c95e3080 595QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
be17dc90 596QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
9edc19c9 597QEMU_INCLUDES="-iquote . -iquote \$(SRC_PATH) -iquote \$(SRC_PATH)/accel/tcg -iquote \$(SRC_PATH)/include"
5bc62e01
GH
598if test "$debug_info" = "yes"; then
599 CFLAGS="-g $CFLAGS"
600 LDFLAGS="-g $LDFLAGS"
601fi
be17dc90 602
ca4deeb1 603# make source path absolute
89138857 604source_path=$(cd "$source_path"; pwd)
ca4deeb1 605
cab00a5a
MT
606# running configure in the source tree?
607# we know that's the case if configure is there.
608if test -f "./configure"; then
609 pwd_is_source_path="y"
610else
611 pwd_is_source_path="n"
612fi
613
ac0df51d
AL
614check_define() {
615cat > $TMPC <<EOF
616#if !defined($1)
fd786e1a 617#error $1 not defined
ac0df51d
AL
618#endif
619int main(void) { return 0; }
620EOF
52166aa0 621 compile_object
ac0df51d
AL
622}
623
307119e7
GH
624check_include() {
625cat > $TMPC <<EOF
626#include <$1>
627int main(void) { return 0; }
628EOF
629 compile_object
630}
631
93b25869
JS
632write_c_skeleton() {
633 cat > $TMPC <<EOF
634int main(void) { return 0; }
635EOF
636}
637
bbea4050
PM
638if check_define __linux__ ; then
639 targetos="Linux"
640elif check_define _WIN32 ; then
641 targetos='MINGW32'
642elif check_define __OpenBSD__ ; then
643 targetos='OpenBSD'
644elif check_define __sun__ ; then
645 targetos='SunOS'
646elif check_define __HAIKU__ ; then
647 targetos='Haiku'
951fedfc
PM
648elif check_define __FreeBSD__ ; then
649 targetos='FreeBSD'
650elif check_define __FreeBSD_kernel__ && check_define __GLIBC__; then
651 targetos='GNU/kFreeBSD'
652elif check_define __DragonFly__ ; then
653 targetos='DragonFly'
654elif check_define __NetBSD__; then
655 targetos='NetBSD'
656elif check_define __APPLE__; then
657 targetos='Darwin'
bbea4050 658else
951fedfc
PM
659 # This is a fatal error, but don't report it yet, because we
660 # might be going to just print the --help text, or it might
661 # be the result of a missing compiler.
662 targetos='bogus'
663 bogus_os='yes'
bbea4050
PM
664fi
665
666# Some host OSes need non-standard checks for which CPU to use.
667# Note that these checks are broken for cross-compilation: if you're
668# cross-compiling to one of these OSes then you'll need to specify
669# the correct CPU with the --cpu option.
670case $targetos in
671Darwin)
672 # on Leopard most of the system is 32-bit, so we have to ask the kernel if we can
673 # run 64-bit userspace code.
674 # If the user didn't specify a CPU explicitly and the kernel says this is
675 # 64 bit hw, then assume x86_64. Otherwise fall through to the usual detection code.
676 if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
677 cpu="x86_64"
678 fi
679 ;;
680SunOS)
89138857 681 # $(uname -m) returns i86pc even on an x86_64 box, so default based on isainfo
bbea4050
PM
682 if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
683 cpu="x86_64"
684 fi
685esac
686
2ff6b91e
JQ
687if test ! -z "$cpu" ; then
688 # command line argument
689 :
690elif check_define __i386__ ; then
ac0df51d
AL
691 cpu="i386"
692elif check_define __x86_64__ ; then
c72b26ec
RH
693 if check_define __ILP32__ ; then
694 cpu="x32"
695 else
696 cpu="x86_64"
697 fi
3aa9bd6c 698elif check_define __sparc__ ; then
3aa9bd6c
BS
699 if check_define __arch64__ ; then
700 cpu="sparc64"
701 else
702 cpu="sparc"
703 fi
fdf7ed96 704elif check_define _ARCH_PPC ; then
705 if check_define _ARCH_PPC64 ; then
706 cpu="ppc64"
707 else
708 cpu="ppc"
709 fi
afa05235
AJ
710elif check_define __mips__ ; then
711 cpu="mips"
d66ed0ea
AJ
712elif check_define __s390__ ; then
713 if check_define __s390x__ ; then
714 cpu="s390x"
715 else
716 cpu="s390"
717 fi
c4f80543
AF
718elif check_define __riscv ; then
719 if check_define _LP64 ; then
720 cpu="riscv64"
721 else
722 cpu="riscv32"
723 fi
21d89f84
PM
724elif check_define __arm__ ; then
725 cpu="arm"
1f080313
CF
726elif check_define __aarch64__ ; then
727 cpu="aarch64"
ac0df51d 728else
89138857 729 cpu=$(uname -m)
ac0df51d
AL
730fi
731
359bc95d
PM
732ARCH=
733# Normalise host CPU name and set ARCH.
734# Note that this case should only have supported host CPUs, not guests.
7d13299d 735case "$cpu" in
c4f80543 736 ppc|ppc64|s390|s390x|sparc64|x32|riscv32|riscv64)
898be3e0
PM
737 cpu="$cpu"
738 supported_cpu="yes"
d75402b5 739 eval "cross_cc_${cpu}=\$host_cc"
898be3e0 740 ;;
7d13299d 741 i386|i486|i586|i686|i86pc|BePC)
97a847bc 742 cpu="i386"
898be3e0 743 supported_cpu="yes"
d75402b5 744 cross_cc_i386=$host_cc
7d13299d 745 ;;
aaa5fa14
AJ
746 x86_64|amd64)
747 cpu="x86_64"
898be3e0 748 supported_cpu="yes"
d75402b5 749 cross_cc_x86_64=$host_cc
aaa5fa14 750 ;;
21d89f84
PM
751 armv*b|armv*l|arm)
752 cpu="arm"
898be3e0 753 supported_cpu="yes"
d75402b5 754 cross_cc_arm=$host_cc
7d13299d 755 ;;
1f080313
CF
756 aarch64)
757 cpu="aarch64"
898be3e0 758 supported_cpu="yes"
d75402b5 759 cross_cc_aarch64=$host_cc
1f080313 760 ;;
afa05235
AJ
761 mips*)
762 cpu="mips"
898be3e0 763 supported_cpu="yes"
d75402b5 764 cross_cc_mips=$host_cc
afa05235 765 ;;
3142255c 766 sparc|sun4[cdmuv])
ae228531 767 cpu="sparc"
6499fd15 768 supported_cpu="yes"
d75402b5 769 cross_cc_sparc=$host_cc
ae228531 770 ;;
7d13299d 771 *)
359bc95d
PM
772 # This will result in either an error or falling back to TCI later
773 ARCH=unknown
7d13299d
FB
774 ;;
775esac
359bc95d
PM
776if test -z "$ARCH"; then
777 ARCH="$cpu"
778fi
e2d52ad3 779
7d13299d 780# OS specific
0dbfc675 781
adfc3e91
SS
782# host *BSD for user mode
783HOST_VARIANT_DIR=""
784
7d13299d 785case $targetos in
67b915a5 786MINGW32*)
0dbfc675 787 mingw32="yes"
b0cb0a66 788 hax="yes"
299e6f19 789 vhost_user="no"
3cec7cc2 790 audio_possible_drivers="dsound sdl"
307119e7
GH
791 if check_include dsound.h; then
792 audio_drv_list="dsound"
793 else
794 audio_drv_list=""
795 fi
898be3e0 796 supported_os="yes"
67b915a5 797;;
5c40d2bd 798GNU/kFreeBSD)
a167ba50 799 bsd="yes"
6a485418 800 audio_drv_list="oss try-sdl"
0bac1111 801 audio_possible_drivers="oss sdl pa"
5c40d2bd 802;;
7d3505c5 803FreeBSD)
0dbfc675 804 bsd="yes"
0db4a067 805 make="${MAKE-gmake}"
6a485418 806 audio_drv_list="oss try-sdl"
0bac1111 807 audio_possible_drivers="oss sdl pa"
f01576f1
JL
808 # needed for kinfo_getvmmap(3) in libutil.h
809 LIBS="-lutil $LIBS"
a7764f15
EM
810 # needed for kinfo_getproc
811 libs_qga="-lutil $libs_qga"
58952137 812 netmap="" # enable netmap autodetect
adfc3e91 813 HOST_VARIANT_DIR="freebsd"
898be3e0 814 supported_os="yes"
7d3505c5 815;;
c5e97233 816DragonFly)
0dbfc675 817 bsd="yes"
0db4a067 818 make="${MAKE-gmake}"
6a485418 819 audio_drv_list="oss try-sdl"
0bac1111 820 audio_possible_drivers="oss sdl pa"
adfc3e91 821 HOST_VARIANT_DIR="dragonfly"
c5e97233 822;;
7d3505c5 823NetBSD)
0dbfc675 824 bsd="yes"
604a5b99 825 hax="yes"
0db4a067 826 make="${MAKE-gmake}"
6a485418 827 audio_drv_list="oss try-sdl"
0bac1111 828 audio_possible_drivers="oss sdl"
0dbfc675 829 oss_lib="-lossaudio"
adfc3e91 830 HOST_VARIANT_DIR="netbsd"
3c2bdbc1 831 supported_os="yes"
7d3505c5
FB
832;;
833OpenBSD)
0dbfc675 834 bsd="yes"
0db4a067 835 make="${MAKE-gmake}"
f92c7168 836 audio_drv_list="try-sdl"
0bac1111 837 audio_possible_drivers="sdl"
adfc3e91 838 HOST_VARIANT_DIR="openbsd"
0a773d55 839 supported_os="yes"
7d3505c5 840;;
83fb7adf 841Darwin)
0dbfc675
JQ
842 bsd="yes"
843 darwin="yes"
b0cb0a66 844 hax="yes"
c97d6d2c 845 hvf="yes"
17969268 846 LDFLAGS_SHARED="-bundle -undefined dynamic_lookup"
0dbfc675 847 if [ "$cpu" = "x86_64" ] ; then
a558ee17 848 QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
0c439cbf 849 LDFLAGS="-arch x86_64 $LDFLAGS"
0dbfc675 850 fi
0dbfc675 851 cocoa="yes"
6a485418 852 audio_drv_list="coreaudio try-sdl"
14382605 853 audio_possible_drivers="coreaudio sdl"
0dbfc675 854 LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
7973f21c 855 libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
a0b7cf6b
PM
856 # Disable attempts to use ObjectiveC features in os/object.h since they
857 # won't work when we're compiling with gcc as a C compiler.
858 QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS"
adfc3e91 859 HOST_VARIANT_DIR="darwin"
898be3e0 860 supported_os="yes"
83fb7adf 861;;
ec530c81 862SunOS)
0dbfc675 863 solaris="yes"
0db4a067
PB
864 make="${MAKE-gmake}"
865 install="${INSTALL-ginstall}"
e2d8830e 866 smbd="${SMBD-/usr/sfw/sbin/smbd}"
0dbfc675 867 if test -f /usr/include/sys/soundcard.h ; then
6a485418 868 audio_drv_list="oss try-sdl"
0dbfc675
JQ
869 fi
870 audio_possible_drivers="oss sdl"
d741429a
BS
871# needed for CMSG_ macros in sys/socket.h
872 QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
873# needed for TIOCWIN* defines in termios.h
874 QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
a558ee17 875 QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
560d375f
AF
876 solarisnetlibs="-lsocket -lnsl -lresolv"
877 LIBS="$solarisnetlibs $LIBS"
878 libs_qga="$solarisnetlibs $libs_qga"
86b2bd93 879;;
179cf400
AF
880Haiku)
881 haiku="yes"
882 QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
883 LIBS="-lposix_error_mapper -lnetwork $LIBS"
884;;
898be3e0 885Linux)
7183834a 886 audio_drv_list="try-pa oss"
0bac1111 887 audio_possible_drivers="oss alsa sdl pa"
0dbfc675
JQ
888 linux="yes"
889 linux_user="yes"
af2be207 890 kvm="yes"
e8d81a61 891 QEMU_INCLUDES="-I\$(SRC_PATH)/linux-headers -I$PWD/linux-headers $QEMU_INCLUDES"
898be3e0 892 supported_os="yes"
3efac6eb 893 libudev="yes"
898be3e0 894;;
7d13299d
FB
895esac
896
7d3505c5 897if [ "$bsd" = "yes" ] ; then
b1a550a0 898 if [ "$darwin" != "yes" ] ; then
08de3949 899 bsd_user="yes"
83fb7adf 900 fi
7d3505c5
FB
901fi
902
0db4a067
PB
903: ${make=${MAKE-make}}
904: ${install=${INSTALL-install}}
52510f8b 905: ${python=${PYTHON-python}}
e2d8830e 906: ${smbd=${SMBD-/usr/sbin/smbd}}
0db4a067 907
3c4a4d0d
PM
908# Default objcc to clang if available, otherwise use CC
909if has clang; then
910 objcc=clang
911else
912 objcc="$cc"
913fi
914
3457a3f8 915if test "$mingw32" = "yes" ; then
3457a3f8 916 EXESUF=".exe"
17969268 917 DSOSUF=".dll"
78e9d4ad
SW
918 # MinGW needs -mthreads for TLS and macro _MT.
919 QEMU_CFLAGS="-mthreads $QEMU_CFLAGS"
f7cf5d5b 920 LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
93b25869 921 write_c_skeleton;
f7cf5d5b
SW
922 if compile_prog "" "-liberty" ; then
923 LIBS="-liberty $LIBS"
924 fi
c5ec15ea 925 prefix="c:/Program Files/QEMU"
683035de 926 mandir="\${prefix}"
528ae5b8 927 datadir="\${prefix}"
850da188 928 qemu_docdir="\${prefix}"
683035de
PB
929 bindir="\${prefix}"
930 sysconfdir="\${prefix}"
5a699bbb 931 local_statedir=
683035de 932 confsuffix=""
105fad6b 933 libs_qga="-lws2_32 -lwinmm -lpowrprof -lwtsapi32 -lwininet -liphlpapi -lnetapi32 $libs_qga"
3457a3f8
JQ
934fi
935
487fefdb 936werror=""
85aa5189 937
7d13299d 938for opt do
89138857 939 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
7d13299d 940 case "$opt" in
2efc3265
FB
941 --help|-h) show_help=yes
942 ;;
99123e13
MF
943 --version|-V) exec cat $source_path/VERSION
944 ;;
b1a550a0 945 --prefix=*) prefix="$optarg"
7d13299d 946 ;;
b1a550a0 947 --interp-prefix=*) interp_prefix="$optarg"
32ce6337 948 ;;
ca4deeb1 949 --source-path=*)
7d13299d 950 ;;
ac0df51d 951 --cross-prefix=*)
7d13299d 952 ;;
ac0df51d 953 --cc=*)
7d13299d 954 ;;
b1a550a0 955 --host-cc=*) host_cc="$optarg"
83469015 956 ;;
83f73fce
TS
957 --cxx=*)
958 ;;
e007dbec
MT
959 --iasl=*) iasl="$optarg"
960 ;;
3c4a4d0d
PM
961 --objcc=*) objcc="$optarg"
962 ;;
b1a550a0 963 --make=*) make="$optarg"
7d13299d 964 ;;
6a882643
PB
965 --install=*) install="$optarg"
966 ;;
c886edfb
BS
967 --python=*) python="$optarg"
968 ;;
1d728c39
BS
969 --gcov=*) gcov_tool="$optarg"
970 ;;
e2d8830e
BS
971 --smbd=*) smbd="$optarg"
972 ;;
e2a2ed06 973 --extra-cflags=*)
7d13299d 974 ;;
11cde1c8
BD
975 --extra-cxxflags=*)
976 ;;
e2a2ed06 977 --extra-ldflags=*)
7d13299d 978 ;;
5bc62e01
GH
979 --enable-debug-info)
980 ;;
981 --disable-debug-info)
982 ;;
d75402b5
AB
983 --cross-cc-*)
984 ;;
17969268
FZ
985 --enable-modules)
986 modules="yes"
3aa88b31
SH
987 ;;
988 --disable-modules)
989 modules="no"
17969268 990 ;;
2ff6b91e 991 --cpu=*)
7d13299d 992 ;;
b1a550a0 993 --target-list=*) target_list="$optarg"
447e133f
AB
994 if test "$target_list_exclude"; then
995 error_exit "Can't mix --target-list with --target-list-exclude"
996 fi
997 ;;
998 --target-list-exclude=*) target_list_exclude="$optarg"
999 if test "$target_list"; then
1000 error_exit "Can't mix --target-list-exclude with --target-list"
1001 fi
de83cd02 1002 ;;
5b808275
LV
1003 --enable-trace-backends=*) trace_backends="$optarg"
1004 ;;
1005 # XXX: backwards compatibility
1006 --enable-trace-backend=*) trace_backends="$optarg"
94a420b1 1007 ;;
74242e0f 1008 --with-trace-file=*) trace_file="$optarg"
9410b56c 1009 ;;
f3494749
PB
1010 --with-default-devices) default_devices="yes"
1011 ;;
1012 --without-default-devices) default_devices="no"
1013 ;;
7d13299d
FB
1014 --enable-gprof) gprof="yes"
1015 ;;
1d728c39
BS
1016 --enable-gcov) gcov="yes"
1017 ;;
79427693
LM
1018 --static)
1019 static="yes"
1020 LDFLAGS="-static $LDFLAGS"
17884d7b 1021 QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS"
43ce4dfe 1022 ;;
0b24e75f
PB
1023 --mandir=*) mandir="$optarg"
1024 ;;
1025 --bindir=*) bindir="$optarg"
1026 ;;
3aa5d2be
AL
1027 --libdir=*) libdir="$optarg"
1028 ;;
8bf188aa
MT
1029 --libexecdir=*) libexecdir="$optarg"
1030 ;;
0f94d6da
AL
1031 --includedir=*) includedir="$optarg"
1032 ;;
528ae5b8 1033 --datadir=*) datadir="$optarg"
0b24e75f 1034 ;;
023d3d67
EH
1035 --with-confsuffix=*) confsuffix="$optarg"
1036 ;;
850da188 1037 --docdir=*) qemu_docdir="$optarg"
0b24e75f 1038 ;;
ca2fb938 1039 --sysconfdir=*) sysconfdir="$optarg"
07381cc1 1040 ;;
785c23ae
LC
1041 --localstatedir=*) local_statedir="$optarg"
1042 ;;
3d5eecab
GH
1043 --firmwarepath=*) firmwarepath="$optarg"
1044 ;;
181ce1d0
OH
1045 --host=*|--build=*|\
1046 --disable-dependency-tracking|\
785c23ae 1047 --sbindir=*|--sharedstatedir=*|\
023ddd74
MF
1048 --oldincludedir=*|--datarootdir=*|--infodir=*|--localedir=*|\
1049 --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*)
1050 # These switches are silently ignored, for compatibility with
1051 # autoconf-generated configure scripts. This allows QEMU's
1052 # configure to be used by RPM and similar macros that set
1053 # lots of directory switches by default.
1054 ;;
97a847bc
FB
1055 --disable-sdl) sdl="no"
1056 ;;
c4198157
JQ
1057 --enable-sdl) sdl="yes"
1058 ;;
a442fe2f
DB
1059 --disable-sdl-image) sdl_image="no"
1060 ;;
1061 --enable-sdl-image) sdl_image="yes"
1062 ;;
3556c233
PB
1063 --disable-qom-cast-debug) qom_cast_debug="no"
1064 ;;
1065 --enable-qom-cast-debug) qom_cast_debug="yes"
1066 ;;
983eef5a
MI
1067 --disable-virtfs) virtfs="no"
1068 ;;
1069 --enable-virtfs) virtfs="yes"
1070 ;;
fe8fc5ae
PB
1071 --disable-mpath) mpath="no"
1072 ;;
1073 --enable-mpath) mpath="yes"
1074 ;;
821601ea
JS
1075 --disable-vnc) vnc="no"
1076 ;;
1077 --enable-vnc) vnc="yes"
1078 ;;
2f6a1ab0
BS
1079 --oss-lib=*) oss_lib="$optarg"
1080 ;;
0c58ac1c 1081 --audio-drv-list=*) audio_drv_list="$optarg"
102a52e4 1082 ;;
89138857 1083 --block-drv-rw-whitelist=*|--block-drv-whitelist=*) block_drv_rw_whitelist=$(echo "$optarg" | sed -e 's/,/ /g')
b64ec4e4 1084 ;;
89138857 1085 --block-drv-ro-whitelist=*) block_drv_ro_whitelist=$(echo "$optarg" | sed -e 's/,/ /g')
eb852011 1086 ;;
f8393946
AJ
1087 --enable-debug-tcg) debug_tcg="yes"
1088 ;;
1089 --disable-debug-tcg) debug_tcg="no"
1090 ;;
f3d08ee6
PB
1091 --enable-debug)
1092 # Enable debugging options that aren't excessively noisy
1093 debug_tcg="yes"
1fcc6d42 1094 debug_mutex="yes"
f3d08ee6
PB
1095 debug="yes"
1096 strip_opt="no"
b553a042 1097 fortify_source="no"
f3d08ee6 1098 ;;
247724cb
MAL
1099 --enable-sanitizers) sanitizers="yes"
1100 ;;
1101 --disable-sanitizers) sanitizers="no"
1102 ;;
03b4fe7d
AL
1103 --enable-sparse) sparse="yes"
1104 ;;
1105 --disable-sparse) sparse="no"
1106 ;;
1625af87
AL
1107 --disable-strip) strip_opt="no"
1108 ;;
2f9606b3
AL
1109 --disable-vnc-sasl) vnc_sasl="no"
1110 ;;
ea784e3b
JQ
1111 --enable-vnc-sasl) vnc_sasl="yes"
1112 ;;
2f6f5c7a
CC
1113 --disable-vnc-jpeg) vnc_jpeg="no"
1114 ;;
1115 --enable-vnc-jpeg) vnc_jpeg="yes"
1116 ;;
efe556ad
CC
1117 --disable-vnc-png) vnc_png="no"
1118 ;;
1119 --enable-vnc-png) vnc_png="yes"
1120 ;;
443f1376 1121 --disable-slirp) slirp="no"
1d14ffa9 1122 ;;
675b9b53
MAL
1123 --enable-slirp=system) slirp="system"
1124 ;;
e0e6c8c0 1125 --disable-vde) vde="no"
8a16d273 1126 ;;
dfb278bd
JQ
1127 --enable-vde) vde="yes"
1128 ;;
58952137
VM
1129 --disable-netmap) netmap="no"
1130 ;;
1131 --enable-netmap) netmap="yes"
1132 ;;
e37630ca
AL
1133 --disable-xen) xen="no"
1134 ;;
fc321b4b
JQ
1135 --enable-xen) xen="yes"
1136 ;;
eb6fda0f
AP
1137 --disable-xen-pci-passthrough) xen_pci_passthrough="no"
1138 ;;
1139 --enable-xen-pci-passthrough) xen_pci_passthrough="yes"
1140 ;;
2e4d9fb1
AJ
1141 --disable-brlapi) brlapi="no"
1142 ;;
4ffcedb6
JQ
1143 --enable-brlapi) brlapi="yes"
1144 ;;
fb599c9a
AZ
1145 --disable-bluez) bluez="no"
1146 ;;
a20a6f46
JQ
1147 --enable-bluez) bluez="yes"
1148 ;;
7ba1e619
AL
1149 --disable-kvm) kvm="no"
1150 ;;
b31a0277
JQ
1151 --enable-kvm) kvm="yes"
1152 ;;
b0cb0a66 1153 --disable-hax) hax="no"
180fb750 1154 ;;
b0cb0a66 1155 --enable-hax) hax="yes"
180fb750 1156 ;;
c97d6d2c
SAGDR
1157 --disable-hvf) hvf="no"
1158 ;;
1159 --enable-hvf) hvf="yes"
1160 ;;
d661d9a4
JTV
1161 --disable-whpx) whpx="no"
1162 ;;
1163 --enable-whpx) whpx="yes"
1164 ;;
9195b2c2
SW
1165 --disable-tcg-interpreter) tcg_interpreter="no"
1166 ;;
1167 --enable-tcg-interpreter) tcg_interpreter="yes"
1168 ;;
47e98658
CB
1169 --disable-cap-ng) cap_ng="no"
1170 ;;
1171 --enable-cap-ng) cap_ng="yes"
1172 ;;
b3f6ea7e
PB
1173 --disable-tcg) tcg="no"
1174 ;;
1175 --enable-tcg) tcg="yes"
1176 ;;
5a22ab71
YZ
1177 --disable-malloc-trim) malloc_trim="no"
1178 ;;
1179 --enable-malloc-trim) malloc_trim="yes"
1180 ;;
cd4ec0b4
GH
1181 --disable-spice) spice="no"
1182 ;;
1183 --enable-spice) spice="yes"
1184 ;;
c589b249
RS
1185 --disable-libiscsi) libiscsi="no"
1186 ;;
1187 --enable-libiscsi) libiscsi="yes"
1188 ;;
6542aa9c
PL
1189 --disable-libnfs) libnfs="no"
1190 ;;
1191 --enable-libnfs) libnfs="yes"
1192 ;;
05c2a3e7
FB
1193 --enable-profiler) profiler="yes"
1194 ;;
14821030
PB
1195 --disable-cocoa) cocoa="no"
1196 ;;
c2de5c91 1197 --enable-cocoa)
1198 cocoa="yes" ;
89138857 1199 audio_drv_list="coreaudio $(echo $audio_drv_list | sed s,coreaudio,,g)"
1d14ffa9 1200 ;;
cad25d69 1201 --disable-system) softmmu="no"
0a8e90f4 1202 ;;
cad25d69 1203 --enable-system) softmmu="yes"
0a8e90f4 1204 ;;
0953a80f
ZA
1205 --disable-user)
1206 linux_user="no" ;
1207 bsd_user="no" ;
0953a80f
ZA
1208 ;;
1209 --enable-user) ;;
831b7825 1210 --disable-linux-user) linux_user="no"
0a8e90f4 1211 ;;
831b7825
TS
1212 --enable-linux-user) linux_user="yes"
1213 ;;
84778508
BS
1214 --disable-bsd-user) bsd_user="no"
1215 ;;
1216 --enable-bsd-user) bsd_user="yes"
1217 ;;
40d6444e 1218 --enable-pie) pie="yes"
34005a00 1219 ;;
40d6444e 1220 --disable-pie) pie="no"
34005a00 1221 ;;
85aa5189
FB
1222 --enable-werror) werror="yes"
1223 ;;
1224 --disable-werror) werror="no"
1225 ;;
63678e17
SN
1226 --enable-stack-protector) stack_protector="yes"
1227 ;;
1228 --disable-stack-protector) stack_protector="no"
1229 ;;
4d3b6f6e
AZ
1230 --disable-curses) curses="no"
1231 ;;
c584a6d0
JQ
1232 --enable-curses) curses="yes"
1233 ;;
e08bb301
ST
1234 --disable-iconv) iconv="no"
1235 ;;
1236 --enable-iconv) iconv="yes"
1237 ;;
769ce76d
AG
1238 --disable-curl) curl="no"
1239 ;;
788c8196
JQ
1240 --enable-curl) curl="yes"
1241 ;;
2df87df7
JQ
1242 --disable-fdt) fdt="no"
1243 ;;
1244 --enable-fdt) fdt="yes"
1245 ;;
5c6c3a6c
CH
1246 --disable-linux-aio) linux_aio="no"
1247 ;;
1248 --enable-linux-aio) linux_aio="yes"
1249 ;;
758e8e38
VJ
1250 --disable-attr) attr="no"
1251 ;;
1252 --enable-attr) attr="yes"
1253 ;;
a40161cb
PB
1254 --disable-membarrier) membarrier="no"
1255 ;;
1256 --enable-membarrier) membarrier="yes"
1257 ;;
77755340
TS
1258 --disable-blobs) blobs="no"
1259 ;;
7e563bfb 1260 --with-pkgversion=*) pkgversion="$optarg"
4a19f1ec 1261 ;;
519175a2
AB
1262 --with-coroutine=*) coroutine="$optarg"
1263 ;;
70c60c08
SH
1264 --disable-coroutine-pool) coroutine_pool="no"
1265 ;;
1266 --enable-coroutine-pool) coroutine_pool="yes"
1267 ;;
7d992e4d
PL
1268 --enable-debug-stack-usage) debug_stack_usage="yes"
1269 ;;
f0d92b56
LM
1270 --enable-crypto-afalg) crypto_afalg="yes"
1271 ;;
1272 --disable-crypto-afalg) crypto_afalg="no"
1273 ;;
a25dba17 1274 --disable-docs) docs="no"
70ec5dc0 1275 ;;
a25dba17 1276 --enable-docs) docs="yes"
83a3ab8b 1277 ;;
d5970055
MT
1278 --disable-vhost-net) vhost_net="no"
1279 ;;
1280 --enable-vhost-net) vhost_net="yes"
1281 ;;
042cea27
GA
1282 --disable-vhost-crypto) vhost_crypto="no"
1283 ;;
299e6f19 1284 --enable-vhost-crypto) vhost_crypto="yes"
042cea27 1285 ;;
5e9be92d
NB
1286 --disable-vhost-scsi) vhost_scsi="no"
1287 ;;
1288 --enable-vhost-scsi) vhost_scsi="yes"
1289 ;;
fc0b9b0e
SH
1290 --disable-vhost-vsock) vhost_vsock="no"
1291 ;;
1292 --enable-vhost-vsock) vhost_vsock="yes"
1293 ;;
da076ffe 1294 --disable-opengl) opengl="no"
20ff075b 1295 ;;
da076ffe 1296 --enable-opengl) opengl="yes"
20ff075b 1297 ;;
f27aaf4b
CB
1298 --disable-rbd) rbd="no"
1299 ;;
1300 --enable-rbd) rbd="yes"
1301 ;;
8c84cf11
ST
1302 --disable-xfsctl) xfs="no"
1303 ;;
1304 --enable-xfsctl) xfs="yes"
1305 ;;
7b02f544 1306 --disable-smartcard) smartcard="no"
111a38b0 1307 ;;
7b02f544 1308 --enable-smartcard) smartcard="yes"
111a38b0 1309 ;;
2b2325ff
GH
1310 --disable-libusb) libusb="no"
1311 ;;
1312 --enable-libusb) libusb="yes"
1313 ;;
69354a83
HG
1314 --disable-usb-redir) usb_redir="no"
1315 ;;
1316 --enable-usb-redir) usb_redir="yes"
1317 ;;
1ece9905
AL
1318 --disable-zlib-test) zlib="no"
1319 ;;
b25c9dff
SW
1320 --disable-lzo) lzo="no"
1321 ;;
607dacd0
QN
1322 --enable-lzo) lzo="yes"
1323 ;;
b25c9dff
SW
1324 --disable-snappy) snappy="no"
1325 ;;
607dacd0
QN
1326 --enable-snappy) snappy="yes"
1327 ;;
6b383c08
PW
1328 --disable-bzip2) bzip2="no"
1329 ;;
1330 --enable-bzip2) bzip2="yes"
1331 ;;
83bc1f97
JF
1332 --enable-lzfse) lzfse="yes"
1333 ;;
1334 --disable-lzfse) lzfse="no"
1335 ;;
d138cee9
MR
1336 --enable-guest-agent) guest_agent="yes"
1337 ;;
1338 --disable-guest-agent) guest_agent="no"
1339 ;;
9dacf32d
YH
1340 --enable-guest-agent-msi) guest_agent_msi="yes"
1341 ;;
1342 --disable-guest-agent-msi) guest_agent_msi="no"
1343 ;;
d9840e25
TS
1344 --with-vss-sdk) vss_win32_sdk=""
1345 ;;
1346 --with-vss-sdk=*) vss_win32_sdk="$optarg"
1347 ;;
1348 --without-vss-sdk) vss_win32_sdk="no"
1349 ;;
1350 --with-win-sdk) win_sdk=""
1351 ;;
1352 --with-win-sdk=*) win_sdk="$optarg"
1353 ;;
1354 --without-win-sdk) win_sdk="no"
1355 ;;
4b1c11fd
DB
1356 --enable-tools) want_tools="yes"
1357 ;;
1358 --disable-tools) want_tools="no"
1359 ;;
f794573e
EO
1360 --enable-seccomp) seccomp="yes"
1361 ;;
1362 --disable-seccomp) seccomp="no"
1363 ;;
eb100396
BR
1364 --disable-glusterfs) glusterfs="no"
1365 ;;
86583a07
LM
1366 --disable-avx2) avx2_opt="no"
1367 ;;
1368 --enable-avx2) avx2_opt="yes"
1369 ;;
eb100396
BR
1370 --enable-glusterfs) glusterfs="yes"
1371 ;;
52b53c04
FZ
1372 --disable-virtio-blk-data-plane|--enable-virtio-blk-data-plane)
1373 echo "$0: $opt is obsolete, virtio-blk data-plane is always on" >&2
583f6e7b 1374 ;;
cb6414df
FZ
1375 --enable-vhdx|--disable-vhdx)
1376 echo "$0: $opt is obsolete, VHDX driver is always built" >&2
1377 ;;
315d3184
FZ
1378 --enable-uuid|--disable-uuid)
1379 echo "$0: $opt is obsolete, UUID support is always built" >&2
1380 ;;
a4ccabcf
AL
1381 --disable-gtk) gtk="no"
1382 ;;
1383 --enable-gtk) gtk="yes"
1384 ;;
a1c5e949
DB
1385 --tls-priority=*) tls_priority="$optarg"
1386 ;;
ddbb0d09
DB
1387 --disable-gnutls) gnutls="no"
1388 ;;
1389 --enable-gnutls) gnutls="yes"
1390 ;;
91bfcdb0
DB
1391 --disable-nettle) nettle="no"
1392 ;;
1393 --enable-nettle) nettle="yes"
1394 ;;
1395 --disable-gcrypt) gcrypt="no"
1396 ;;
1397 --enable-gcrypt) gcrypt="yes"
1398 ;;
8953caf3
DB
1399 --disable-auth-pam) auth_pam="no"
1400 ;;
1401 --enable-auth-pam) auth_pam="yes"
1402 ;;
2da776db
MH
1403 --enable-rdma) rdma="yes"
1404 ;;
1405 --disable-rdma) rdma="no"
1406 ;;
21ab34c9
MA
1407 --enable-pvrdma) pvrdma="yes"
1408 ;;
1409 --disable-pvrdma) pvrdma="no"
1410 ;;
bbbf9bfb
SW
1411 --disable-vte) vte="no"
1412 ;;
1413 --enable-vte) vte="yes"
1414 ;;
9d9e1521
GH
1415 --disable-virglrenderer) virglrenderer="no"
1416 ;;
1417 --enable-virglrenderer) virglrenderer="yes"
1418 ;;
e91c793c
CR
1419 --disable-tpm) tpm="no"
1420 ;;
ab214c29
SB
1421 --enable-tpm) tpm="yes"
1422 ;;
0a12ec87
RJ
1423 --disable-libssh2) libssh2="no"
1424 ;;
1425 --enable-libssh2) libssh2="yes"
1426 ;;
ed1701c6
DDAG
1427 --disable-live-block-migration) live_block_migration="no"
1428 ;;
1429 --enable-live-block-migration) live_block_migration="yes"
1430 ;;
a99d57bb
WG
1431 --disable-numa) numa="no"
1432 ;;
1433 --enable-numa) numa="yes"
1434 ;;
ed279a06
KK
1435 --disable-libxml2) libxml2="no"
1436 ;;
1437 --enable-libxml2) libxml2="yes"
1438 ;;
2847b469
FZ
1439 --disable-tcmalloc) tcmalloc="no"
1440 ;;
1441 --enable-tcmalloc) tcmalloc="yes"
1442 ;;
7b01cb97
AD
1443 --disable-jemalloc) jemalloc="no"
1444 ;;
1445 --enable-jemalloc) jemalloc="yes"
1446 ;;
a6b1d4c0
CX
1447 --disable-replication) replication="no"
1448 ;;
1449 --enable-replication) replication="yes"
1450 ;;
da92c3ff
AM
1451 --disable-vxhs) vxhs="no"
1452 ;;
1453 --enable-vxhs) vxhs="yes"
1454 ;;
2f740136
JC
1455 --disable-bochs) bochs="no"
1456 ;;
1457 --enable-bochs) bochs="yes"
1458 ;;
1459 --disable-cloop) cloop="no"
1460 ;;
1461 --enable-cloop) cloop="yes"
1462 ;;
1463 --disable-dmg) dmg="no"
1464 ;;
1465 --enable-dmg) dmg="yes"
1466 ;;
1467 --disable-qcow1) qcow1="no"
1468 ;;
1469 --enable-qcow1) qcow1="yes"
1470 ;;
1471 --disable-vdi) vdi="no"
1472 ;;
1473 --enable-vdi) vdi="yes"
1474 ;;
1475 --disable-vvfat) vvfat="no"
1476 ;;
1477 --enable-vvfat) vvfat="yes"
1478 ;;
1479 --disable-qed) qed="no"
1480 ;;
1481 --enable-qed) qed="yes"
1482 ;;
1483 --disable-parallels) parallels="no"
1484 ;;
1485 --enable-parallels) parallels="yes"
1486 ;;
1487 --disable-sheepdog) sheepdog="no"
1488 ;;
1489 --enable-sheepdog) sheepdog="yes"
1490 ;;
e6a74868
MAL
1491 --disable-vhost-user) vhost_user="no"
1492 ;;
299e6f19
PB
1493 --enable-vhost-user) vhost_user="yes"
1494 ;;
1495 --disable-vhost-kernel) vhost_kernel="no"
1496 ;;
1497 --enable-vhost-kernel) vhost_kernel="yes"
e6a74868 1498 ;;
8ca80760
RH
1499 --disable-capstone) capstone="no"
1500 ;;
1501 --enable-capstone) capstone="yes"
1502 ;;
e219c499
RH
1503 --enable-capstone=git) capstone="git"
1504 ;;
1505 --enable-capstone=system) capstone="system"
1506 ;;
cc84d63a
DB
1507 --with-git=*) git="$optarg"
1508 ;;
f62bbee5
DB
1509 --enable-git-update) git_update=yes
1510 ;;
1511 --disable-git-update) git_update=no
1512 ;;
ba59fb77
PB
1513 --enable-debug-mutex) debug_mutex=yes
1514 ;;
1515 --disable-debug-mutex) debug_mutex=no
1516 ;;
17824406
JH
1517 --enable-libpmem) libpmem=yes
1518 ;;
1519 --disable-libpmem) libpmem=no
1520 ;;
2d2ad6d0
FZ
1521 *)
1522 echo "ERROR: unknown option $opt"
1523 echo "Try '$0 --help' for more information"
1524 exit 1
7f1559c6 1525 ;;
7d13299d
FB
1526 esac
1527done
1528
40293e58 1529case "$cpu" in
e3608d66
RH
1530 ppc)
1531 CPU_CFLAGS="-m32"
1532 LDFLAGS="-m32 $LDFLAGS"
13a5abe2
AB
1533 cross_cc_powerpc=$cc
1534 cross_cc_cflags_powerpc=$CPU_CFLAGS
e3608d66
RH
1535 ;;
1536 ppc64)
1537 CPU_CFLAGS="-m64"
1538 LDFLAGS="-m64 $LDFLAGS"
13a5abe2
AB
1539 cross_cc_ppc64=$cc
1540 cross_cc_cflags_ppc64=$CPU_CFLAGS
e3608d66 1541 ;;
9b9c37c3 1542 sparc)
f1079bb8
RH
1543 CPU_CFLAGS="-m32 -mv8plus -mcpu=ultrasparc"
1544 LDFLAGS="-m32 -mv8plus $LDFLAGS"
13a5abe2
AB
1545 cross_cc_sparc=$cc
1546 cross_cc_cflags_sparc=$CPU_CFLAGS
3142255c 1547 ;;
ed968ff1 1548 sparc64)
79f3b12f 1549 CPU_CFLAGS="-m64 -mcpu=ultrasparc"
f1079bb8 1550 LDFLAGS="-m64 $LDFLAGS"
13a5abe2
AB
1551 cross_cc_sparc64=$cc
1552 cross_cc_cflags_sparc64=$CPU_CFLAGS
3142255c 1553 ;;
76d83bde 1554 s390)
061cdd81 1555 CPU_CFLAGS="-m31"
28d7cc49 1556 LDFLAGS="-m31 $LDFLAGS"
13a5abe2
AB
1557 cross_cc_s390=$cc
1558 cross_cc_cflags_s390=$CPU_CFLAGS
28d7cc49
RH
1559 ;;
1560 s390x)
061cdd81 1561 CPU_CFLAGS="-m64"
28d7cc49 1562 LDFLAGS="-m64 $LDFLAGS"
13a5abe2
AB
1563 cross_cc_s390x=$cc
1564 cross_cc_cflags_s390x=$CPU_CFLAGS
76d83bde 1565 ;;
40293e58 1566 i386)
79f3b12f 1567 CPU_CFLAGS="-m32"
0c439cbf 1568 LDFLAGS="-m32 $LDFLAGS"
716a507c
AB
1569 cross_cc_i386=$cc
1570 cross_cc_cflags_i386=$CPU_CFLAGS
40293e58
FB
1571 ;;
1572 x86_64)
7ebee43e
RH
1573 # ??? Only extremely old AMD cpus do not have cmpxchg16b.
1574 # If we truly care, we should simply detect this case at
1575 # runtime and generate the fallback to serial emulation.
1576 CPU_CFLAGS="-m64 -mcx16"
0c439cbf 1577 LDFLAGS="-m64 $LDFLAGS"
716a507c
AB
1578 cross_cc_x86_64=$cc
1579 cross_cc_cflags_x86_64=$CPU_CFLAGS
d2fbca94 1580 ;;
c72b26ec
RH
1581 x32)
1582 CPU_CFLAGS="-mx32"
1583 LDFLAGS="-mx32 $LDFLAGS"
716a507c 1584 cross_cc_i386=$cc
13a5abe2 1585 cross_cc_cflags_i386=$CPU_CFLAGS
c72b26ec 1586 ;;
30163d89 1587 # No special flags required for other host CPUs
3142255c
BS
1588esac
1589
79f3b12f 1590QEMU_CFLAGS="$CPU_CFLAGS $QEMU_CFLAGS"
79f3b12f 1591
affc88cc
PM
1592# For user-mode emulation the host arch has to be one we explicitly
1593# support, even if we're using TCI.
1594if [ "$ARCH" = "unknown" ]; then
1595 bsd_user="no"
1596 linux_user="no"
1597fi
1598
60e0df25
PM
1599default_target_list=""
1600
6e92f823
PM
1601mak_wilds=""
1602
1603if [ "$softmmu" = "yes" ]; then
1604 mak_wilds="${mak_wilds} $source_path/default-configs/*-softmmu.mak"
60e0df25 1605fi
6e92f823
PM
1606if [ "$linux_user" = "yes" ]; then
1607 mak_wilds="${mak_wilds} $source_path/default-configs/*-linux-user.mak"
60e0df25 1608fi
6e92f823
PM
1609if [ "$bsd_user" = "yes" ]; then
1610 mak_wilds="${mak_wilds} $source_path/default-configs/*-bsd-user.mak"
60e0df25
PM
1611fi
1612
447e133f
AB
1613if test -z "$target_list_exclude"; then
1614 for config in $mak_wilds; do
1615 default_target_list="${default_target_list} $(basename "$config" .mak)"
1616 done
1617else
1618 exclude_list=$(echo "$target_list_exclude" | sed -e 's/,/ /g')
1619 for config in $mak_wilds; do
1620 target="$(basename "$config" .mak)"
1621 exclude="no"
1622 for excl in $exclude_list; do
1623 if test "$excl" = "$target"; then
1624 exclude="yes"
1625 break;
1626 fi
1627 done
1628 if test "$exclude" = "no"; then
1629 default_target_list="${default_target_list} $target"
1630 fi
1631 done
1632fi
6e92f823 1633
c53eeaf7 1634# Enumerate public trace backends for --help output
64a6047d 1635trace_backend_list=$(echo $(grep -le '^PUBLIC = True$' "$source_path"/scripts/tracetool/backend/*.py | sed -e 's/^.*\/\(.*\)\.py$/\1/'))
c53eeaf7 1636
af5db58e
PB
1637if test x"$show_help" = x"yes" ; then
1638cat << EOF
1639
1640Usage: configure [options]
1641Options: [defaults in brackets after descriptions]
1642
08fb77ed
SW
1643Standard options:
1644 --help print this message
1645 --prefix=PREFIX install in PREFIX [$prefix]
1646 --interp-prefix=PREFIX where to find shared libraries, etc.
1647 use %M for cpu name [$interp_prefix]
1648 --target-list=LIST set target list (default: build everything)
1649$(echo Available targets: $default_target_list | \
1650 fold -s -w 53 | sed -e 's/^/ /')
447e133f 1651 --target-list-exclude=LIST exclude a set of targets from the default target-list
08fb77ed
SW
1652
1653Advanced options (experts only):
1654 --source-path=PATH path of source code [$source_path]
1655 --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]
1656 --cc=CC use C compiler CC [$cc]
1657 --iasl=IASL use ACPI compiler IASL [$iasl]
1658 --host-cc=CC use C compiler CC [$host_cc] for code run at
1659 build time
1660 --cxx=CXX use C++ compiler CXX [$cxx]
1661 --objcc=OBJCC use Objective-C compiler OBJCC [$objcc]
1662 --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS
11cde1c8 1663 --extra-cxxflags=CXXFLAGS append extra C++ compiler flags QEMU_CXXFLAGS
08fb77ed 1664 --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS
d75402b5 1665 --cross-cc-ARCH=CC use compiler when building ARCH guest test cases
d422b2bc 1666 --cross-cc-flags-ARCH= use compiler flags when building ARCH guest tests
08fb77ed
SW
1667 --make=MAKE use specified make [$make]
1668 --install=INSTALL use specified install [$install]
1669 --python=PYTHON use specified python [$python]
1670 --smbd=SMBD use specified smbd [$smbd]
db1b5f13 1671 --with-git=GIT use specified git [$git]
08fb77ed
SW
1672 --static enable static build [$static]
1673 --mandir=PATH install man pages in PATH
1674 --datadir=PATH install firmware in PATH$confsuffix
1675 --docdir=PATH install documentation in PATH$confsuffix
1676 --bindir=PATH install binaries in PATH
1677 --libdir=PATH install libraries in PATH
db1b5f13 1678 --libexecdir=PATH install helper binaries in PATH
08fb77ed
SW
1679 --sysconfdir=PATH install config in PATH$confsuffix
1680 --localstatedir=PATH install local state in PATH (set at runtime on win32)
3d5eecab 1681 --firmwarepath=PATH search PATH for firmware files
e26110cf 1682 --with-confsuffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir [$confsuffix]
db1b5f13 1683 --with-pkgversion=VERS use specified string as sub-version of the package
08fb77ed 1684 --enable-debug enable common debug build options
247724cb 1685 --enable-sanitizers enable default sanitizers
08fb77ed
SW
1686 --disable-strip disable stripping binaries
1687 --disable-werror disable compilation abort on warning
63678e17 1688 --disable-stack-protector disable compiler-provided stack protection
08fb77ed
SW
1689 --audio-drv-list=LIST set audio drivers list:
1690 Available drivers: $audio_possible_drivers
1691 --block-drv-whitelist=L Same as --block-drv-rw-whitelist=L
1692 --block-drv-rw-whitelist=L
1693 set block driver read-write whitelist
1694 (affects only QEMU, not qemu-img)
1695 --block-drv-ro-whitelist=L
1696 set block driver read-only whitelist
1697 (affects only QEMU, not qemu-img)
5b808275 1698 --enable-trace-backends=B Set trace backend
c53eeaf7 1699 Available backends: $trace_backend_list
08fb77ed
SW
1700 --with-trace-file=NAME Full PATH,NAME of file to store traces
1701 Default:trace-<pid>
c23f23b9
MT
1702 --disable-slirp disable SLIRP userspace network connectivity
1703 --enable-tcg-interpreter enable TCG with bytecode interpreter (TCI)
5a22ab71 1704 --enable-malloc-trim enable libc malloc_trim() for memory optimization
c23f23b9
MT
1705 --oss-lib path to OSS library
1706 --cpu=CPU Build for host CPU [$cpu]
08fb77ed 1707 --with-coroutine=BACKEND coroutine backend. Supported options:
33c53c54 1708 ucontext, sigaltstack, windows
08fb77ed
SW
1709 --enable-gcov enable test coverage analysis with gcov
1710 --gcov=GCOV use specified gcov [$gcov_tool]
c23f23b9
MT
1711 --disable-blobs disable installing provided firmware blobs
1712 --with-vss-sdk=SDK-path enable Windows VSS support in QEMU Guest Agent
1713 --with-win-sdk=SDK-path path to Windows Platform SDK (to build VSS .tlb)
a1c5e949 1714 --tls-priority default TLS protocol/cipher priority string
c12d66aa
LM
1715 --enable-gprof QEMU profiling with gprof
1716 --enable-profiler profiler support
c12d66aa
LM
1717 --enable-debug-stack-usage
1718 track the maximum stack usage of stacks created by qemu_alloc_stack
c23f23b9
MT
1719
1720Optional features, enabled with --enable-FEATURE and
1721disabled with --disable-FEATURE, default is enabled if available:
1722
1723 system all system emulation targets
1724 user supported user emulation targets
1725 linux-user all linux usermode emulation targets
1726 bsd-user all BSD usermode emulation targets
c23f23b9
MT
1727 docs build documentation
1728 guest-agent build the QEMU Guest Agent
1729 guest-agent-msi build guest agent Windows MSI installation package
1730 pie Position Independent Executables
1731 modules modules support
1732 debug-tcg TCG debugging (default is disabled)
1733 debug-info debugging information
1734 sparse sparse checker
1735
ddbb0d09 1736 gnutls GNUTLS cryptography support
91bfcdb0
DB
1737 nettle nettle cryptography support
1738 gcrypt libgcrypt cryptography support
8953caf3 1739 auth-pam PAM access control
c23f23b9 1740 sdl SDL UI
a442fe2f 1741 sdl_image SDL Image support for icons
c23f23b9 1742 gtk gtk UI
c23f23b9
MT
1743 vte vte support for the gtk UI
1744 curses curses UI
e08bb301 1745 iconv font glyph conversion support
c23f23b9 1746 vnc VNC UI support
c23f23b9
MT
1747 vnc-sasl SASL encryption for VNC server
1748 vnc-jpeg JPEG lossy compression for VNC server
1749 vnc-png PNG compression for VNC server
c23f23b9
MT
1750 cocoa Cocoa UI (Mac OS X only)
1751 virtfs VirtFS
fe8fc5ae 1752 mpath Multipath persistent reservation passthrough
c23f23b9 1753 xen xen backend driver support
70c292af 1754 xen-pci-passthrough PCI passthrough support for Xen
c23f23b9
MT
1755 brlapi BrlAPI (Braile)
1756 curl curl connectivity
a40161cb 1757 membarrier membarrier system call (for Linux 4.14+ or Windows)
c23f23b9
MT
1758 fdt fdt device tree
1759 bluez bluez stack connectivity
1760 kvm KVM acceleration support
b0cb0a66 1761 hax HAX acceleration support
c97d6d2c 1762 hvf Hypervisor.framework acceleration support
d661d9a4 1763 whpx Windows Hypervisor Platform acceleration support
21ab34c9
MA
1764 rdma Enable RDMA-based migration
1765 pvrdma Enable PVRDMA support
c23f23b9
MT
1766 vde support for vde network
1767 netmap support for netmap network
1768 linux-aio Linux AIO support
1769 cap-ng libcap-ng support
1770 attr attr and xattr support
299e6f19
PB
1771 vhost-net vhost-net kernel acceleration support
1772 vhost-vsock virtio sockets device support
1773 vhost-scsi vhost-scsi kernel target support
1774 vhost-crypto vhost-user-crypto backend support
1775 vhost-kernel vhost kernel backend support
1776 vhost-user vhost-user backend support
c23f23b9
MT
1777 spice spice
1778 rbd rados block device (rbd)
1779 libiscsi iscsi support
1780 libnfs nfs support
7b02f544 1781 smartcard smartcard support (libcacard)
c23f23b9 1782 libusb libusb (for usb passthrough)
ed1701c6 1783 live-block-migration Block migration in the main migration stream
c23f23b9
MT
1784 usb-redir usb network redirection support
1785 lzo support of lzo compression library
1786 snappy support of snappy compression library
1787 bzip2 support of bzip2 compression library
1788 (for reading bzip2-compressed dmg images)
83bc1f97
JF
1789 lzfse support of lzfse compression library
1790 (for reading lzfse-compressed dmg images)
c23f23b9
MT
1791 seccomp seccomp support
1792 coroutine-pool coroutine freelist (better performance)
1793 glusterfs GlusterFS backend
c23f23b9
MT
1794 tpm TPM support
1795 libssh2 ssh block device support
c23f23b9 1796 numa libnuma support
ed279a06 1797 libxml2 for Parallels image format
c23f23b9 1798 tcmalloc tcmalloc support
7b01cb97 1799 jemalloc jemalloc support
86583a07 1800 avx2 AVX2 optimization support
a6b1d4c0 1801 replication replication support
c12d66aa
LM
1802 opengl opengl support
1803 virglrenderer virgl rendering support
1804 xfsctl xfsctl support
1805 qom-cast-debug cast debugging support
8de73fa8 1806 tools build qemu-io, qemu-nbd and qemu-img tools
da92c3ff 1807 vxhs Veritas HyperScale vDisk backend support
2f740136
JC
1808 bochs bochs image format support
1809 cloop cloop image format support
1810 dmg dmg image format support
1811 qcow1 qcow v1 image format support
1812 vdi vdi image format support
1813 vvfat vvfat image format support
1814 qed qed image format support
1815 parallels parallels image format support
1816 sheepdog sheepdog block driver support
f0d92b56 1817 crypto-afalg Linux AF_ALG crypto backend driver
8ca80760 1818 capstone capstone disassembler support
ba59fb77 1819 debug-mutex mutex debugging support
17824406 1820 libpmem libpmem support
08fb77ed
SW
1821
1822NOTE: The object files are built at the place where configure is launched
af5db58e 1823EOF
2d2ad6d0 1824exit 0
af5db58e
PB
1825fi
1826
c53eeaf7
SH
1827if ! has $python; then
1828 error_exit "Python not found. Use --python=/path/to/python"
1829fi
1830
1831# Note that if the Python conditional here evaluates True we will exit
1832# with status 1 which is a shell 'false' value.
7f2b5544
EH
1833if ! $python -c 'import sys; sys.exit(sys.version_info < (2,7))'; then
1834 error_exit "Cannot use '$python', Python 2 >= 2.7 or Python 3 is required." \
c53eeaf7
SH
1835 "Use --python=/path/to/python to specify a supported Python."
1836fi
1837
755ee70f
CR
1838# Preserve python version since some functionality is dependent on it
1839python_version=$($python -V 2>&1 | sed -e 's/Python\ //')
1840
c53eeaf7
SH
1841# Suppress writing compiled files
1842python="$python -B"
1843
9aae6e54
DHB
1844# Check that the C compiler works. Doing this here before testing
1845# the host CPU ensures that we had a valid CC to autodetect the
1846# $cpu var (and we should bail right here if that's not the case).
1847# It also allows the help message to be printed without a CC.
1848write_c_skeleton;
1849if compile_object ; then
1850 : C compiler works ok
1851else
1852 error_exit "\"$cc\" either does not exist or does not work"
1853fi
1854if ! compile_prog ; then
1855 error_exit "\"$cc\" cannot build an executable (is your linker broken?)"
1856fi
1857
359bc95d
PM
1858# Now we have handled --enable-tcg-interpreter and know we're not just
1859# printing the help message, bail out if the host CPU isn't supported.
1860if test "$ARCH" = "unknown"; then
1861 if test "$tcg_interpreter" = "yes" ; then
1862 echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)"
359bc95d 1863 else
76ad07a4 1864 error_exit "Unsupported CPU = $cpu, try --enable-tcg-interpreter"
359bc95d
PM
1865 fi
1866fi
1867
9c83ffd8
PM
1868# Consult white-list to determine whether to enable werror
1869# by default. Only enable by default for git builds
9c83ffd8 1870if test -z "$werror" ; then
fd73745d 1871 if test -e "$source_path/.git" && \
e633a5c6 1872 { test "$linux" = "yes" || test "$mingw32" = "yes"; }; then
9c83ffd8
PM
1873 werror="yes"
1874 else
1875 werror="no"
1876 fi
1877fi
1878
fb59dabd
PM
1879if test "$bogus_os" = "yes"; then
1880 # Now that we know that we're not printing the help and that
1881 # the compiler works (so the results of the check_defines we used
1882 # to identify the OS are reliable), if we didn't recognize the
1883 # host OS we should stop now.
951fedfc 1884 error_exit "Unrecognized host OS (uname -s reports '$(uname -s)')"
fb59dabd
PM
1885fi
1886
efc6c070
TH
1887# Check whether the compiler matches our minimum requirements:
1888cat > $TMPC << EOF
1889#if defined(__clang_major__) && defined(__clang_minor__)
1890# ifdef __apple_build_version__
1891# if __clang_major__ < 5 || (__clang_major__ == 5 && __clang_minor__ < 1)
1892# error You need at least XCode Clang v5.1 to compile QEMU
1893# endif
1894# else
1895# if __clang_major__ < 3 || (__clang_major__ == 3 && __clang_minor__ < 4)
1896# error You need at least Clang v3.4 to compile QEMU
1897# endif
1898# endif
1899#elif defined(__GNUC__) && defined(__GNUC_MINOR__)
1900# if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 8)
1901# error You need at least GCC v4.8 to compile QEMU
1902# endif
1903#else
1904# error You either need GCC or Clang to compiler QEMU
1905#endif
1906int main (void) { return 0; }
1907EOF
1908if ! compile_prog "" "" ; then
1909 error_exit "You need at least GCC v4.8 or Clang v3.4 (or XCode Clang v5.1)"
1910fi
1911
8d05095c
PB
1912gcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
1913gcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
ac7568bd 1914gcc_flags="-Wno-missing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
435405ac 1915gcc_flags="-Wendif-labels -Wno-shift-negative-value $gcc_flags"
b98fcfd8 1916gcc_flags="-Wno-initializer-overrides -Wexpansion-to-defined $gcc_flags"
71429097 1917gcc_flags="-Wno-string-plus-int $gcc_flags"
6ca026cb
PM
1918# Note that we do not add -Werror to gcc_flags here, because that would
1919# enable it for all configure tests. If a configure test failed due
1920# to -Werror this would just silently disable some features,
1921# so it's too error prone.
93b25869
JS
1922
1923cc_has_warning_flag() {
1924 write_c_skeleton;
1925
a1d29d6c
PM
1926 # Use the positive sense of the flag when testing for -Wno-wombat
1927 # support (gcc will happily accept the -Wno- form of unknown
1928 # warning options).
93b25869
JS
1929 optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')"
1930 compile_prog "-Werror $optflag" ""
1931}
1932
1933for flag in $gcc_flags; do
1934 if cc_has_warning_flag $flag ; then
1935 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
8d05095c
PB
1936 fi
1937done
1938
3b463a3f 1939if test "$stack_protector" != "no"; then
fccd35a0
RR
1940 cat > $TMPC << EOF
1941int main(int argc, char *argv[])
1942{
1943 char arr[64], *p = arr, *c = argv[0];
1944 while (*c) {
1945 *p++ = *c++;
1946 }
1947 return 0;
1948}
1949EOF
63678e17 1950 gcc_flags="-fstack-protector-strong -fstack-protector-all"
3b463a3f 1951 sp_on=0
63678e17 1952 for flag in $gcc_flags; do
590e5dd9
PM
1953 # We need to check both a compile and a link, since some compiler
1954 # setups fail only on a .c->.o compile and some only at link time
1955 if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC &&
1956 compile_prog "-Werror $flag" ""; then
63678e17 1957 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
3b463a3f 1958 sp_on=1
63678e17
SN
1959 break
1960 fi
1961 done
3b463a3f
MR
1962 if test "$stack_protector" = yes; then
1963 if test $sp_on = 0; then
1964 error_exit "Stack protector not supported"
1965 fi
1966 fi
37746c5e
MAL
1967fi
1968
20bc94a2
PB
1969# Disable -Wmissing-braces on older compilers that warn even for
1970# the "universal" C zero initializer {0}.
1971cat > $TMPC << EOF
1972struct {
1973 int a[2];
1974} x = {0};
1975EOF
1976if compile_object "-Werror" "" ; then
1977 :
1978else
1979 QEMU_CFLAGS="$QEMU_CFLAGS -Wno-missing-braces"
1980fi
1981
d376e9de 1982# Static linking is not possible with modules or PIE
40d6444e 1983if test "$static" = "yes" ; then
aa0d1f44
PB
1984 if test "$modules" = "yes" ; then
1985 error_exit "static and modules are mutually incompatible"
1986 fi
40d6444e 1987 if test "$pie" = "yes" ; then
76ad07a4 1988 error_exit "static and pie are mutually incompatible"
40d6444e
AK
1989 else
1990 pie="no"
1991 fi
1992fi
1993
768b7855
EC
1994# Unconditional check for compiler __thread support
1995 cat > $TMPC << EOF
1996static __thread int tls_var;
1997int main(void) { return tls_var; }
1998EOF
1999
2000if ! compile_prog "-Werror" "" ; then
2001 error_exit "Your compiler does not support the __thread specifier for " \
2002 "Thread-Local Storage (TLS). Please upgrade to a version that does."
2003fi
2004
40d6444e
AK
2005if test "$pie" = ""; then
2006 case "$cpu-$targetos" in
c72b26ec 2007 i386-Linux|x86_64-Linux|x32-Linux|i386-OpenBSD|x86_64-OpenBSD)
40d6444e
AK
2008 ;;
2009 *)
2010 pie="no"
2011 ;;
2012 esac
2013fi
2014
2015if test "$pie" != "no" ; then
2016 cat > $TMPC << EOF
21d4a791
AK
2017
2018#ifdef __linux__
2019# define THREAD __thread
2020#else
2021# define THREAD
2022#endif
2023
2024static THREAD int tls_var;
2025
2026int main(void) { return tls_var; }
2027
40d6444e
AK
2028EOF
2029 if compile_prog "-fPIE -DPIE" "-pie"; then
2030 QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS"
2031 LDFLAGS="-pie $LDFLAGS"
2032 pie="yes"
2033 if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then
2034 LDFLAGS="-Wl,-z,relro -Wl,-z,now $LDFLAGS"
2035 fi
2036 else
2037 if test "$pie" = "yes"; then
76ad07a4 2038 error_exit "PIE not available due to missing toolchain support"
40d6444e
AK
2039 else
2040 echo "Disabling PIE due to missing toolchain support"
2041 pie="no"
2042 fi
2043 fi
46eef33b 2044
e4a7b344 2045 if compile_prog "-Werror -fno-pie" "-nopie"; then
46eef33b
BS
2046 CFLAGS_NOPIE="-fno-pie"
2047 LDFLAGS_NOPIE="-nopie"
2048 fi
40d6444e
AK
2049fi
2050
09dada40
PB
2051##########################################
2052# __sync_fetch_and_and requires at least -march=i486. Many toolchains
2053# use i686 as default anyway, but for those that don't, an explicit
2054# specification is necessary
2055
2056if test "$cpu" = "i386"; then
2057 cat > $TMPC << EOF
2058static int sfaa(int *ptr)
2059{
2060 return __sync_fetch_and_and(ptr, 0);
2061}
2062
2063int main(void)
2064{
2065 int val = 42;
1405b629 2066 val = __sync_val_compare_and_swap(&val, 0, 1);
09dada40
PB
2067 sfaa(&val);
2068 return val;
2069}
2070EOF
2071 if ! compile_prog "" "" ; then
2072 QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS"
2073 fi
2074fi
2075
2076#########################################
ec530c81 2077# Solaris specific configure tool chain decisions
09dada40 2078
ec530c81 2079if test "$solaris" = "yes" ; then
6792aa11
LM
2080 if has $install; then
2081 :
2082 else
76ad07a4
PM
2083 error_exit "Solaris install program not found. Use --install=/usr/ucb/install or" \
2084 "install fileutils from www.blastwave.org using pkg-get -i fileutils" \
2085 "to get ginstall which is used by default (which lives in /opt/csw/bin)"
ec530c81 2086 fi
89138857 2087 if test "$(path_of $install)" = "/usr/sbin/install" ; then
76ad07a4
PM
2088 error_exit "Solaris /usr/sbin/install is not an appropriate install program." \
2089 "try ginstall from the GNU fileutils available from www.blastwave.org" \
2090 "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
ec530c81 2091 fi
6792aa11
LM
2092 if has ar; then
2093 :
2094 else
ec530c81 2095 if test -f /usr/ccs/bin/ar ; then
76ad07a4
PM
2096 error_exit "No path includes ar" \
2097 "Add /usr/ccs/bin to your path and rerun configure"
ec530c81 2098 fi
76ad07a4 2099 error_exit "No path includes ar"
ec530c81 2100 fi
5fafdf24 2101fi
ec530c81 2102
afb63ebd 2103if test -z "${target_list+xxx}" ; then
d880a3ba
PB
2104 for target in $default_target_list; do
2105 supported_target $target 2>/dev/null && \
2106 target_list="$target_list $target"
2107 done
2108 target_list="${target_list# }"
121afa9e 2109else
89138857 2110 target_list=$(echo "$target_list" | sed -e 's/,/ /g')
d880a3ba
PB
2111 for target in $target_list; do
2112 # Check that we recognised the target name; this allows a more
2113 # friendly error message than if we let it fall through.
2114 case " $default_target_list " in
2115 *" $target "*)
2116 ;;
2117 *)
2118 error_exit "Unknown target name '$target'"
2119 ;;
2120 esac
2121 supported_target $target || exit 1
2122 done
121afa9e 2123fi
25b48338 2124
f55fe278
PB
2125# see if system emulation was really requested
2126case " $target_list " in
2127 *"-softmmu "*) softmmu=yes
2128 ;;
2129 *) softmmu=no
2130 ;;
2131esac
5327cf48 2132
249247c9
JQ
2133feature_not_found() {
2134 feature=$1
21684af0 2135 remedy=$2
249247c9 2136
76ad07a4 2137 error_exit "User requested feature $feature" \
21684af0
SS
2138 "configure was not able to find it." \
2139 "$remedy"
249247c9
JQ
2140}
2141
7d13299d
FB
2142# ---
2143# big/little endian test
2144cat > $TMPC << EOF
61cc919f
MF
2145short big_endian[] = { 0x4269, 0x4765, 0x4e64, 0x4961, 0x4e00, 0, };
2146short little_endian[] = { 0x694c, 0x7454, 0x654c, 0x6e45, 0x6944, 0x6e41, 0, };
2147extern int foo(short *, short *);
2148int main(int argc, char *argv[]) {
2149 return foo(big_endian, little_endian);
7d13299d
FB
2150}
2151EOF
2152
61cc919f 2153if compile_object ; then
12f15c91 2154 if strings -a $TMPO | grep -q BiGeNdIaN ; then
61cc919f 2155 bigendian="yes"
12f15c91 2156 elif strings -a $TMPO | grep -q LiTtLeEnDiAn ; then
61cc919f
MF
2157 bigendian="no"
2158 else
2159 echo big/little test failed
21d89f84 2160 fi
61cc919f
MF
2161else
2162 echo big/little test failed
7d13299d
FB
2163fi
2164
a30878e7
PM
2165##########################################
2166# cocoa implies not SDL or GTK
2167# (the cocoa UI code currently assumes it is always the active UI
2168# and doesn't interact well with other UI frontend code)
2169if test "$cocoa" = "yes"; then
2170 if test "$sdl" = "yes"; then
2171 error_exit "Cocoa and SDL UIs cannot both be enabled at once"
2172 fi
2173 if test "$gtk" = "yes"; then
2174 error_exit "Cocoa and GTK UIs cannot both be enabled at once"
2175 fi
2176 gtk=no
2177 sdl=no
2178fi
2179
6b39b063
EB
2180# Some versions of Mac OS X incorrectly define SIZE_MAX
2181cat > $TMPC << EOF
2182#include <stdint.h>
2183#include <stdio.h>
2184int main(int argc, char *argv[]) {
2185 return printf("%zu", SIZE_MAX);
2186}
2187EOF
2188have_broken_size_max=no
2189if ! compile_object -Werror ; then
2190 have_broken_size_max=yes
2191fi
2192
015a33bd
GA
2193##########################################
2194# L2TPV3 probe
2195
2196cat > $TMPC <<EOF
2197#include <sys/socket.h>
bff6cb72 2198#include <linux/ip.h>
015a33bd
GA
2199int main(void) { return sizeof(struct mmsghdr); }
2200EOF
2201if compile_prog "" "" ; then
2202 l2tpv3=yes
2203else
2204 l2tpv3=no
2205fi
2206
299e6f19
PB
2207#########################################
2208# vhost interdependencies and host support
2209
2210# vhost backends
2211test "$vhost_user" = "" && vhost_user=yes
2212if test "$vhost_user" = "yes" && test "$mingw32" = "yes"; then
2213 error_exit "vhost-user isn't available on win32"
2214fi
2215test "$vhost_kernel" = "" && vhost_kernel=$linux
2216if test "$vhost_kernel" = "yes" && test "$linux" != "yes"; then
2217 error_exit "vhost-kernel is only available on Linux"
2218fi
2219
2220# vhost-kernel devices
2221test "$vhost_scsi" = "" && vhost_scsi=$vhost_kernel
2222if test "$vhost_scsi" = "yes" && test "$vhost_kernel" != "yes"; then
2223 error_exit "--enable-vhost-scsi requires --enable-vhost-kernel"
2224fi
2225test "$vhost_vsock" = "" && vhost_vsock=$vhost_kernel
2226if test "$vhost_vsock" = "yes" && test "$vhost_kernel" != "yes"; then
2227 error_exit "--enable-vhost-vsock requires --enable-vhost-kernel"
2228fi
2229
2230# vhost-user backends
2231test "$vhost_net_user" = "" && vhost_net_user=$vhost_user
2232if test "$vhost_net_user" = "yes" && test "$vhost_user" = "no"; then
2233 error_exit "--enable-vhost-net-user requires --enable-vhost-user"
2234fi
2235test "$vhost_crypto" = "" && vhost_crypto=$vhost_user
2236if test "$vhost_crypto" = "yes" && test "$vhost_user" = "no"; then
2237 error_exit "--enable-vhost-crypto requires --enable-vhost-user"
2238fi
2239
2240# OR the vhost-kernel and vhost-user values for simplicity
2241if test "$vhost_net" = ""; then
2242 test "$vhost_net_user" = "yes" && vhost_net=yes
2243 test "$vhost_kernel" = "yes" && vhost_net=yes
2244fi
2245
4d9310f4
DB
2246##########################################
2247# MinGW / Mingw-w64 localtime_r/gmtime_r check
2248
2249if test "$mingw32" = "yes"; then
2250 # Some versions of MinGW / Mingw-w64 lack localtime_r
2251 # and gmtime_r entirely.
2252 #
2253 # Some versions of Mingw-w64 define a macro for
2254 # localtime_r/gmtime_r.
2255 #
2256 # Some versions of Mingw-w64 will define functions
2257 # for localtime_r/gmtime_r, but only if you have
2258 # _POSIX_THREAD_SAFE_FUNCTIONS defined. For fun
2259 # though, unistd.h and pthread.h both define
2260 # that for you.
2261 #
2262 # So this #undef localtime_r and #include <unistd.h>
2263 # are not in fact redundant.
2264cat > $TMPC << EOF
2265#include <unistd.h>
2266#include <time.h>
2267#undef localtime_r
2268int main(void) { localtime_r(NULL, NULL); return 0; }
2269EOF
2270 if compile_prog "" "" ; then
2271 localtime_r="yes"
2272 else
2273 localtime_r="no"
2274 fi
2275fi
2276
779ab5e3
SW
2277##########################################
2278# pkg-config probe
2279
2280if ! has "$pkg_config_exe"; then
76ad07a4 2281 error_exit "pkg-config binary '$pkg_config_exe' not found"
779ab5e3
SW
2282fi
2283
b0a47e79
JQ
2284##########################################
2285# NPTL probe
2286
24cb36a6 2287if test "$linux_user" = "yes"; then
b0a47e79 2288 cat > $TMPC <<EOF
bd0c5661 2289#include <sched.h>
30813cea 2290#include <linux/futex.h>
182eacc0 2291int main(void) {
bd0c5661
PB
2292#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
2293#error bork
2294#endif
182eacc0 2295 return 0;
bd0c5661
PB
2296}
2297EOF
24cb36a6 2298 if ! compile_object ; then
21684af0 2299 feature_not_found "nptl" "Install glibc and linux kernel headers."
b0a47e79 2300 fi
bd0c5661
PB
2301fi
2302
607dacd0
QN
2303##########################################
2304# lzo check
2305
2306if test "$lzo" != "no" ; then
2307 cat > $TMPC << EOF
2308#include <lzo/lzo1x.h>
2309int main(void) { lzo_version(); return 0; }
2310EOF
2311 if compile_prog "" "-llzo2" ; then
b25c9dff
SW
2312 libs_softmmu="$libs_softmmu -llzo2"
2313 lzo="yes"
607dacd0 2314 else
b25c9dff
SW
2315 if test "$lzo" = "yes"; then
2316 feature_not_found "liblzo2" "Install liblzo2 devel"
2317 fi
2318 lzo="no"
607dacd0 2319 fi
607dacd0
QN
2320fi
2321
2322##########################################
2323# snappy check
2324
2325if test "$snappy" != "no" ; then
2326 cat > $TMPC << EOF
2327#include <snappy-c.h>
2328int main(void) { snappy_max_compressed_length(4096); return 0; }
2329EOF
2330 if compile_prog "" "-lsnappy" ; then
b25c9dff
SW
2331 libs_softmmu="$libs_softmmu -lsnappy"
2332 snappy="yes"
607dacd0 2333 else
b25c9dff
SW
2334 if test "$snappy" = "yes"; then
2335 feature_not_found "libsnappy" "Install libsnappy devel"
2336 fi
2337 snappy="no"
607dacd0 2338 fi
607dacd0
QN
2339fi
2340
6b383c08
PW
2341##########################################
2342# bzip2 check
2343
2344if test "$bzip2" != "no" ; then
2345 cat > $TMPC << EOF
2346#include <bzlib.h>
2347int main(void) { BZ2_bzlibVersion(); return 0; }
2348EOF
2349 if compile_prog "" "-lbz2" ; then
2350 bzip2="yes"
2351 else
2352 if test "$bzip2" = "yes"; then
2353 feature_not_found "libbzip2" "Install libbzip2 devel"
2354 fi
2355 bzip2="no"
2356 fi
2357fi
2358
83bc1f97
JF
2359##########################################
2360# lzfse check
2361
2362if test "$lzfse" != "no" ; then
2363 cat > $TMPC << EOF
2364#include <lzfse.h>
2365int main(void) { lzfse_decode_scratch_size(); return 0; }
2366EOF
2367 if compile_prog "" "-llzfse" ; then
2368 lzfse="yes"
2369 else
2370 if test "$lzfse" = "yes"; then
2371 feature_not_found "lzfse" "Install lzfse devel"
2372 fi
2373 lzfse="no"
2374 fi
2375fi
2376
f794573e
EO
2377##########################################
2378# libseccomp check
2379
d0699bd3 2380libseccomp_minver="2.2.0"
f794573e 2381if test "$seccomp" != "no" ; then
693e5910 2382 case "$cpu" in
d0699bd3 2383 i386|x86_64|mips)
5ce43972 2384 ;;
693e5910
AJ
2385 arm|aarch64)
2386 libseccomp_minver="2.2.3"
2387 ;;
3aa35fcf 2388 ppc|ppc64|s390x)
3e684455
MS
2389 libseccomp_minver="2.3.0"
2390 ;;
693e5910
AJ
2391 *)
2392 libseccomp_minver=""
2393 ;;
2394 esac
2395
2396 if test "$libseccomp_minver" != "" &&
2397 $pkg_config --atleast-version=$libseccomp_minver libseccomp ; then
c3883e1f
FZ
2398 seccomp_cflags="$($pkg_config --cflags libseccomp)"
2399 seccomp_libs="$($pkg_config --libs libseccomp)"
693e5910 2400 seccomp="yes"
f794573e 2401 else
693e5910
AJ
2402 if test "$seccomp" = "yes" ; then
2403 if test "$libseccomp_minver" != "" ; then
2404 feature_not_found "libseccomp" \
2405 "Install libseccomp devel >= $libseccomp_minver"
2406 else
2407 feature_not_found "libseccomp" \
2408 "libseccomp is not supported for host cpu $cpu"
2409 fi
2410 fi
2411 seccomp="no"
f794573e
EO
2412 fi
2413fi
e37630ca
AL
2414##########################################
2415# xen probe
2416
fc321b4b 2417if test "$xen" != "no" ; then
c1cdd9d5
JG
2418 # Check whether Xen library path is specified via --extra-ldflags to avoid
2419 # overriding this setting with pkg-config output. If not, try pkg-config
2420 # to obtain all needed flags.
2421
2422 if ! echo $EXTRA_LDFLAGS | grep tools/libxc > /dev/null && \
2423 $pkg_config --exists xencontrol ; then
2424 xen_ctrl_version="$(printf '%d%02d%02d' \
2425 $($pkg_config --modversion xencontrol | sed 's/\./ /g') )"
2426 xen=yes
2427 xen_pc="xencontrol xenstore xenguest xenforeignmemory xengnttab"
2428 xen_pc="$xen_pc xenevtchn xendevicemodel"
58ea9a7a
AP
2429 if $pkg_config --exists xentoolcore; then
2430 xen_pc="$xen_pc xentoolcore"
2431 fi
c1cdd9d5
JG
2432 QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags $xen_pc)"
2433 libs_softmmu="$($pkg_config --libs $xen_pc) $libs_softmmu"
c1cdd9d5 2434 else
d5b93ddf 2435
c1cdd9d5 2436 xen_libs="-lxenstore -lxenctrl -lxenguest"
d9506cab 2437 xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn"
50ced5b3 2438
c1cdd9d5
JG
2439 # First we test whether Xen headers and libraries are available.
2440 # If no, we are done and there is no Xen support.
2441 # If yes, more tests are run to detect the Xen version.
2442
2443 # Xen (any)
2444 cat > $TMPC <<EOF
e37630ca 2445#include <xenctrl.h>
50ced5b3
SW
2446int main(void) {
2447 return 0;
2448}
2449EOF
c1cdd9d5
JG
2450 if ! compile_prog "" "$xen_libs" ; then
2451 # Xen not found
2452 if test "$xen" = "yes" ; then
2453 feature_not_found "xen" "Install xen devel"
2454 fi
2455 xen=no
50ced5b3 2456
c1cdd9d5
JG
2457 # Xen unstable
2458 elif
2459 cat > $TMPC <<EOF &&
2cbf8903
RL
2460#undef XC_WANT_COMPAT_DEVICEMODEL_API
2461#define __XEN_TOOLS__
2462#include <xendevicemodel.h>
d3c49ebb 2463#include <xenforeignmemory.h>
2cbf8903
RL
2464int main(void) {
2465 xendevicemodel_handle *xd;
d3c49ebb 2466 xenforeignmemory_handle *xfmem;
2cbf8903
RL
2467
2468 xd = xendevicemodel_open(0, 0);
2469 xendevicemodel_pin_memory_cacheattr(xd, 0, 0, 0, 0);
2470
d3c49ebb
PD
2471 xfmem = xenforeignmemory_open(0, 0);
2472 xenforeignmemory_map_resource(xfmem, 0, 0, 0, 0, 0, NULL, 0, 0);
2473
2cbf8903
RL
2474 return 0;
2475}
2476EOF
2477 compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore"
2478 then
2479 xen_stable_libs="-lxendevicemodel $xen_stable_libs -lxentoolcore"
2480 xen_ctrl_version=41100
2481 xen=yes
2482 elif
2483 cat > $TMPC <<EOF &&
5ba3d756
ID
2484#undef XC_WANT_COMPAT_MAP_FOREIGN_API
2485#include <xenforeignmemory.h>
58ea9a7a 2486#include <xentoolcore.h>
5ba3d756
ID
2487int main(void) {
2488 xenforeignmemory_handle *xfmem;
2489
2490 xfmem = xenforeignmemory_open(0, 0);
2491 xenforeignmemory_map2(xfmem, 0, 0, 0, 0, 0, 0, 0);
58ea9a7a 2492 xentoolcore_restrict_all(0);
5ba3d756
ID
2493
2494 return 0;
2495}
2496EOF
58ea9a7a 2497 compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore"
5ba3d756 2498 then
58ea9a7a 2499 xen_stable_libs="-lxendevicemodel $xen_stable_libs -lxentoolcore"
5ba3d756
ID
2500 xen_ctrl_version=41000
2501 xen=yes
2502 elif
2503 cat > $TMPC <<EOF &&
da8090cc
PD
2504#undef XC_WANT_COMPAT_DEVICEMODEL_API
2505#define __XEN_TOOLS__
2506#include <xendevicemodel.h>
2507int main(void) {
2508 xendevicemodel_handle *xd;
2509
2510 xd = xendevicemodel_open(0, 0);
2511 xendevicemodel_close(xd);
50ced5b3 2512
da8090cc
PD
2513 return 0;
2514}
2515EOF
c1cdd9d5
JG
2516 compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs"
2517 then
2518 xen_stable_libs="-lxendevicemodel $xen_stable_libs"
2519 xen_ctrl_version=40900
2520 xen=yes
2521 elif
2522 cat > $TMPC <<EOF &&
b6eb9b45
PS
2523/*
2524 * If we have stable libs the we don't want the libxc compat
2525 * layers, regardless of what CFLAGS we may have been given.
2526 *
2527 * Also, check if xengnttab_grant_copy_segment_t is defined and
2528 * grant copy operation is implemented.
2529 */
2530#undef XC_WANT_COMPAT_EVTCHN_API
2531#undef XC_WANT_COMPAT_GNTTAB_API
2532#undef XC_WANT_COMPAT_MAP_FOREIGN_API
2533#include <xenctrl.h>
2534#include <xenstore.h>
2535#include <xenevtchn.h>
2536#include <xengnttab.h>
2537#include <xenforeignmemory.h>
2538#include <stdint.h>
2539#include <xen/hvm/hvm_info_table.h>
2540#if !defined(HVM_MAX_VCPUS)
2541# error HVM_MAX_VCPUS not defined
2542#endif
2543int main(void) {
2544 xc_interface *xc = NULL;
2545 xenforeignmemory_handle *xfmem;
2546 xenevtchn_handle *xe;
2547 xengnttab_handle *xg;
b6eb9b45
PS
2548 xengnttab_grant_copy_segment_t* seg = NULL;
2549
2550 xs_daemon_open();
2551
2552 xc = xc_interface_open(0, 0, 0);
2553 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2554 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2555 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2556 xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
b6eb9b45
PS
2557
2558 xfmem = xenforeignmemory_open(0, 0);
2559 xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0);
2560
2561 xe = xenevtchn_open(0, 0);
2562 xenevtchn_fd(xe);
2563
2564 xg = xengnttab_open(0, 0);
2565 xengnttab_grant_copy(xg, 0, seg);
2566
2567 return 0;
2568}
2569EOF
c1cdd9d5
JG
2570 compile_prog "" "$xen_libs $xen_stable_libs"
2571 then
2572 xen_ctrl_version=40800
2573 xen=yes
2574 elif
2575 cat > $TMPC <<EOF &&
5eeb39c2
IC
2576/*
2577 * If we have stable libs the we don't want the libxc compat
2578 * layers, regardless of what CFLAGS we may have been given.
2579 */
2580#undef XC_WANT_COMPAT_EVTCHN_API
2581#undef XC_WANT_COMPAT_GNTTAB_API
2582#undef XC_WANT_COMPAT_MAP_FOREIGN_API
2583#include <xenctrl.h>
2584#include <xenstore.h>
2585#include <xenevtchn.h>
2586#include <xengnttab.h>
2587#include <xenforeignmemory.h>
2588#include <stdint.h>
2589#include <xen/hvm/hvm_info_table.h>
2590#if !defined(HVM_MAX_VCPUS)
2591# error HVM_MAX_VCPUS not defined
2592#endif
2593int main(void) {
2594 xc_interface *xc = NULL;
2595 xenforeignmemory_handle *xfmem;
2596 xenevtchn_handle *xe;
2597 xengnttab_handle *xg;
5eeb39c2
IC
2598
2599 xs_daemon_open();
2600
2601 xc = xc_interface_open(0, 0, 0);
2602 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2603 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2604 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2605 xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
5eeb39c2
IC
2606
2607 xfmem = xenforeignmemory_open(0, 0);
2608 xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0);
2609
2610 xe = xenevtchn_open(0, 0);
2611 xenevtchn_fd(xe);
2612
2613 xg = xengnttab_open(0, 0);
2614 xengnttab_map_grant_ref(xg, 0, 0, 0);
2615
2616 return 0;
2617}
2618EOF
c1cdd9d5
JG
2619 compile_prog "" "$xen_libs $xen_stable_libs"
2620 then
2621 xen_ctrl_version=40701
2622 xen=yes
c1cdd9d5
JG
2623
2624 # Xen 4.6
2625 elif
2626 cat > $TMPC <<EOF &&
cdadde39 2627#include <xenctrl.h>
e108a3c1 2628#include <xenstore.h>
d5b93ddf
AP
2629#include <stdint.h>
2630#include <xen/hvm/hvm_info_table.h>
2631#if !defined(HVM_MAX_VCPUS)
2632# error HVM_MAX_VCPUS not defined
2633#endif
d8b441a3
JB
2634int main(void) {
2635 xc_interface *xc;
2636 xs_daemon_open();
2637 xc = xc_interface_open(0, 0, 0);
2638 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2639 xc_gnttab_open(NULL, 0);
2640 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2641 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2642 xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
20a544c7 2643 xc_reserved_device_memory_map(xc, 0, 0, 0, 0, NULL, 0);
d8b441a3
JB
2644 return 0;
2645}
2646EOF
c1cdd9d5
JG
2647 compile_prog "" "$xen_libs"
2648 then
2649 xen_ctrl_version=40600
2650 xen=yes
2651
2652 # Xen 4.5
2653 elif
2654 cat > $TMPC <<EOF &&
d8b441a3
JB
2655#include <xenctrl.h>
2656#include <xenstore.h>
2657#include <stdint.h>
2658#include <xen/hvm/hvm_info_table.h>
2659#if !defined(HVM_MAX_VCPUS)
2660# error HVM_MAX_VCPUS not defined
2661#endif
3996e85c
PD
2662int main(void) {
2663 xc_interface *xc;
2664 xs_daemon_open();
2665 xc = xc_interface_open(0, 0, 0);
2666 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2667 xc_gnttab_open(NULL, 0);
2668 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2669 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2670 xc_hvm_create_ioreq_server(xc, 0, 0, NULL);
2671 return 0;
2672}
2673EOF
c1cdd9d5
JG
2674 compile_prog "" "$xen_libs"
2675 then
2676 xen_ctrl_version=40500
2677 xen=yes
3996e85c 2678
c1cdd9d5
JG
2679 elif
2680 cat > $TMPC <<EOF &&
3996e85c
PD
2681#include <xenctrl.h>
2682#include <xenstore.h>
2683#include <stdint.h>
2684#include <xen/hvm/hvm_info_table.h>
2685#if !defined(HVM_MAX_VCPUS)
2686# error HVM_MAX_VCPUS not defined
2687#endif
8688e065
SS
2688int main(void) {
2689 xc_interface *xc;
2690 xs_daemon_open();
2691 xc = xc_interface_open(0, 0, 0);
2692 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2693 xc_gnttab_open(NULL, 0);
2694 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2695 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2696 return 0;
2697}
2698EOF
c1cdd9d5
JG
2699 compile_prog "" "$xen_libs"
2700 then
2701 xen_ctrl_version=40200
2702 xen=yes
8688e065 2703
c1cdd9d5
JG
2704 else
2705 if test "$xen" = "yes" ; then
2706 feature_not_found "xen (unsupported version)" \
2707 "Install a supported xen (xen 4.2 or newer)"
2708 fi
2709 xen=no
fc321b4b 2710 fi
d5b93ddf 2711
c1cdd9d5
JG
2712 if test "$xen" = yes; then
2713 if test $xen_ctrl_version -ge 40701 ; then
2714 libs_softmmu="$xen_stable_libs $libs_softmmu"
2715 fi
2716 libs_softmmu="$xen_libs $libs_softmmu"
5eeb39c2 2717 fi
d5b93ddf 2718 fi
e37630ca
AL
2719fi
2720
eb6fda0f 2721if test "$xen_pci_passthrough" != "no"; then
edfb07ed 2722 if test "$xen" = "yes" && test "$linux" = "yes"; then
eb6fda0f
AP
2723 xen_pci_passthrough=yes
2724 else
2725 if test "$xen_pci_passthrough" = "yes"; then
76ad07a4
PM
2726 error_exit "User requested feature Xen PCI Passthrough" \
2727 " but this feature requires /sys from Linux"
eb6fda0f
AP
2728 fi
2729 xen_pci_passthrough=no
2730 fi
2731fi
2732
d661d9a4
JTV
2733##########################################
2734# Windows Hypervisor Platform accelerator (WHPX) check
2735if test "$whpx" != "no" ; then
327fccb2 2736 if check_include "WinHvPlatform.h" && check_include "WinHvEmulation.h"; then
d661d9a4
JTV
2737 whpx="yes"
2738 else
2739 if test "$whpx" = "yes"; then
53537bb1 2740 feature_not_found "WinHvPlatform" "WinHvEmulation is not installed"
d661d9a4
JTV
2741 fi
2742 whpx="no"
2743 fi
2744fi
2745
dfffc653
JQ
2746##########################################
2747# Sparse probe
2748if test "$sparse" != "no" ; then
0dba6195 2749 if has cgcc; then
dfffc653
JQ
2750 sparse=yes
2751 else
2752 if test "$sparse" = "yes" ; then
21684af0 2753 feature_not_found "sparse" "Install sparse binary"
dfffc653
JQ
2754 fi
2755 sparse=no
2756 fi
2757fi
2758
f676c67e
JW
2759##########################################
2760# X11 probe
f676c67e 2761if $pkg_config --exists "x11"; then
8781595b 2762 have_x11=yes
89138857
SW
2763 x11_cflags=$($pkg_config --cflags x11)
2764 x11_libs=$($pkg_config --libs x11)
f676c67e
JW
2765fi
2766
a4ccabcf
AL
2767##########################################
2768# GTK probe
2769
2770if test "$gtk" != "no"; then
89d85cde
DB
2771 gtkpackage="gtk+-3.0"
2772 gtkx11package="gtk+-x11-3.0"
58296cb6 2773 gtkversion="3.14.0"
bbbf9bfb 2774 if $pkg_config --exists "$gtkpackage >= $gtkversion"; then
89138857
SW
2775 gtk_cflags=$($pkg_config --cflags $gtkpackage)
2776 gtk_libs=$($pkg_config --libs $gtkpackage)
2777 gtk_version=$($pkg_config --modversion $gtkpackage)
0a337ed0 2778 if $pkg_config --exists "$gtkx11package >= $gtkversion"; then
8781595b 2779 need_x11=yes
f676c67e
JW
2780 gtk_cflags="$gtk_cflags $x11_cflags"
2781 gtk_libs="$gtk_libs $x11_libs"
0a337ed0 2782 fi
bbbf9bfb
SW
2783 gtk="yes"
2784 elif test "$gtk" = "yes"; then
5fe309ff 2785 feature_not_found "gtk" "Install gtk3-devel"
bbbf9bfb
SW
2786 else
2787 gtk="no"
2788 fi
2789fi
2790
ddbb0d09
DB
2791
2792##########################################
2793# GNUTLS probe
2794
2795if test "$gnutls" != "no"; then
a0722409 2796 if $pkg_config --exists "gnutls >= 3.1.18"; then
89138857
SW
2797 gnutls_cflags=$($pkg_config --cflags gnutls)
2798 gnutls_libs=$($pkg_config --libs gnutls)
ddbb0d09
DB
2799 libs_softmmu="$gnutls_libs $libs_softmmu"
2800 libs_tools="$gnutls_libs $libs_tools"
2801 QEMU_CFLAGS="$QEMU_CFLAGS $gnutls_cflags"
2802 gnutls="yes"
ddbb0d09 2803 elif test "$gnutls" = "yes"; then
a0722409 2804 feature_not_found "gnutls" "Install gnutls devel >= 3.1.18"
ddbb0d09
DB
2805 else
2806 gnutls="no"
ddbb0d09 2807 fi
ddbb0d09
DB
2808fi
2809
91bfcdb0
DB
2810
2811# If user didn't give a --disable/enable-gcrypt flag,
2812# then mark as disabled if user requested nettle
a0722409 2813# explicitly
91bfcdb0
DB
2814if test -z "$gcrypt"
2815then
a0722409 2816 if test "$nettle" = "yes"
91bfcdb0
DB
2817 then
2818 gcrypt="no"
2819 fi
2820fi
2821
2822# If user didn't give a --disable/enable-nettle flag,
2823# then mark as disabled if user requested gcrypt
a0722409 2824# explicitly
91bfcdb0
DB
2825if test -z "$nettle"
2826then
a0722409 2827 if test "$gcrypt" = "yes"
91bfcdb0
DB
2828 then
2829 nettle="no"
2830 fi
2831fi
2832
dea7a64e 2833has_libgcrypt() {
91bfcdb0
DB
2834 if ! has "libgcrypt-config"
2835 then
2836 return 1
2837 fi
2838
2839 if test -n "$cross_prefix"
2840 then
89138857 2841 host=$(libgcrypt-config --host)
91bfcdb0
DB
2842 if test "$host-" != $cross_prefix
2843 then
2844 return 1
2845 fi
2846 fi
2847
dea7a64e
DB
2848 maj=`libgcrypt-config --version | awk -F . '{print $1}'`
2849 min=`libgcrypt-config --version | awk -F . '{print $2}'`
2850
2851 if test $maj != 1 || test $min -lt 5
2852 then
2853 return 1
2854 fi
2855
91bfcdb0
DB
2856 return 0
2857}
2858
a0722409
DB
2859
2860if test "$nettle" != "no"; then
64dd2f3b 2861 if $pkg_config --exists "nettle >= 2.7.1"; then
a0722409
DB
2862 nettle_cflags=$($pkg_config --cflags nettle)
2863 nettle_libs=$($pkg_config --libs nettle)
2864 nettle_version=$($pkg_config --modversion nettle)
2865 libs_softmmu="$nettle_libs $libs_softmmu"
2866 libs_tools="$nettle_libs $libs_tools"
2867 QEMU_CFLAGS="$QEMU_CFLAGS $nettle_cflags"
2868 nettle="yes"
2869
a0722409
DB
2870 if test -z "$gcrypt"; then
2871 gcrypt="no"
2872 fi
a0722409
DB
2873 else
2874 if test "$nettle" = "yes"; then
64dd2f3b 2875 feature_not_found "nettle" "Install nettle devel >= 2.7.1"
a0722409
DB
2876 else
2877 nettle="no"
2878 fi
2879 fi
2880fi
2881
91bfcdb0 2882if test "$gcrypt" != "no"; then
dea7a64e 2883 if has_libgcrypt; then
89138857
SW
2884 gcrypt_cflags=$(libgcrypt-config --cflags)
2885 gcrypt_libs=$(libgcrypt-config --libs)
91bfcdb0
DB
2886 # Debian has remove -lgpg-error from libgcrypt-config
2887 # as it "spreads unnecessary dependencies" which in
2888 # turn breaks static builds...
2889 if test "$static" = "yes"
2890 then
2891 gcrypt_libs="$gcrypt_libs -lgpg-error"
2892 fi
62893b67
DB
2893 libs_softmmu="$gcrypt_libs $libs_softmmu"
2894 libs_tools="$gcrypt_libs $libs_tools"
2895 QEMU_CFLAGS="$QEMU_CFLAGS $gcrypt_cflags"
91bfcdb0 2896 gcrypt="yes"
1f923c70
LM
2897
2898 cat > $TMPC << EOF
2899#include <gcrypt.h>
2900int main(void) {
2901 gcry_mac_hd_t handle;
2902 gcry_mac_open(&handle, GCRY_MAC_HMAC_MD5,
2903 GCRY_MAC_FLAG_SECURE, NULL);
2904 return 0;
2905}
2906EOF
2907 if compile_prog "$gcrypt_cflags" "$gcrypt_libs" ; then
2908 gcrypt_hmac=yes
2909 fi
62893b67 2910 else
91bfcdb0 2911 if test "$gcrypt" = "yes"; then
dea7a64e 2912 feature_not_found "gcrypt" "Install gcrypt devel >= 1.5.0"
91bfcdb0
DB
2913 else
2914 gcrypt="no"
2915 fi
62893b67
DB
2916 fi
2917fi
2918
ddbb0d09 2919
91bfcdb0
DB
2920if test "$gcrypt" = "yes" && test "$nettle" = "yes"
2921then
2922 error_exit "Only one of gcrypt & nettle can be enabled"
2923fi
2924
9a2fd434
DB
2925##########################################
2926# libtasn1 - only for the TLS creds/session test suite
2927
2928tasn1=yes
90246037
DB
2929tasn1_cflags=""
2930tasn1_libs=""
9a2fd434 2931if $pkg_config --exists "libtasn1"; then
89138857
SW
2932 tasn1_cflags=$($pkg_config --cflags libtasn1)
2933 tasn1_libs=$($pkg_config --libs libtasn1)
9a2fd434
DB
2934else
2935 tasn1=no
2936fi
2937
ed754746 2938
8953caf3
DB
2939##########################################
2940# PAM probe
2941
2942if test "$auth_pam" != "no"; then
2943 cat > $TMPC <<EOF
2944#include <security/pam_appl.h>
2945#include <stdio.h>
2946int main(void) {
2947 const char *service_name = "qemu";
2948 const char *user = "frank";
2949 const struct pam_conv *pam_conv = NULL;
2950 pam_handle_t *pamh = NULL;
2951 pam_start(service_name, user, pam_conv, &pamh);
2952 return 0;
2953}
2954EOF
2955 if compile_prog "" "-lpam" ; then
2956 auth_pam=yes
2957 else
2958 if test "$auth_pam" = "yes"; then
2959 feature_not_found "PAM" "Install PAM development package"
2960 else
2961 auth_pam=no
2962 fi
2963 fi
2964fi
2965
559607ea
DB
2966##########################################
2967# getifaddrs (for tests/test-io-channel-socket )
2968
2969have_ifaddrs_h=yes
2970if ! check_include "ifaddrs.h" ; then
2971 have_ifaddrs_h=no
2972fi
2973
bbbf9bfb
SW
2974##########################################
2975# VTE probe
2976
2977if test "$vte" != "no"; then
89d85cde
DB
2978 vteminversion="0.32.0"
2979 if $pkg_config --exists "vte-2.91"; then
2980 vtepackage="vte-2.91"
528de90a 2981 else
89d85cde 2982 vtepackage="vte-2.90"
528de90a 2983 fi
c6feff9e 2984 if $pkg_config --exists "$vtepackage >= $vteminversion"; then
89138857
SW
2985 vte_cflags=$($pkg_config --cflags $vtepackage)
2986 vte_libs=$($pkg_config --libs $vtepackage)
2987 vteversion=$($pkg_config --modversion $vtepackage)
bbbf9bfb
SW
2988 vte="yes"
2989 elif test "$vte" = "yes"; then
89d85cde 2990 feature_not_found "vte" "Install libvte-2.90/2.91 devel"
0d185e63 2991 else
bbbf9bfb 2992 vte="no"
a4ccabcf
AL
2993 fi
2994fi
2995
11d9f695
FB
2996##########################################
2997# SDL probe
2998
3ec87ffe
PB
2999# Look for sdl configuration program (pkg-config or sdl-config). Try
3000# sdl-config even without cross prefix, and favour pkg-config over sdl-config.
47c03744 3001
c6093a05
PX
3002sdl_probe ()
3003{
0015ca5c
DB
3004 if $pkg_config sdl2 --exists; then
3005 sdlconfig="$pkg_config sdl2"
c6093a05
PX
3006 sdlversion=$($sdlconfig --modversion 2>/dev/null)
3007 elif has ${sdl_config}; then
0015ca5c 3008 sdlconfig="$sdl2_config"
c6093a05
PX
3009 sdlversion=$($sdlconfig --version)
3010 else
3011 if test "$sdl" = "yes" ; then
3012 feature_not_found "sdl" "Install SDL2-devel"
3013 fi
3014 sdl=no
3015 # no need to do the rest
3016 return
3017 fi
3018 if test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then
3019 echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
a0dfd8a4 3020 fi
11d9f695 3021
ac119f9d 3022 cat > $TMPC << EOF
11d9f695
FB
3023#include <SDL.h>
3024#undef main /* We don't want SDL to override our main() */
3025int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
3026EOF
89138857 3027 sdl_cflags=$($sdlconfig --cflags 2>/dev/null)
2ca5c430 3028 sdl_cflags="$sdl_cflags -Wno-undef" # workaround 2.0.8 bug
74f42e18 3029 if test "$static" = "yes" ; then
0015ca5c
DB
3030 if $pkg_config sdl2 --exists; then
3031 sdl_libs=$($pkg_config sdl2 --static --libs 2>/dev/null)
5f37e6d4
TH
3032 else
3033 sdl_libs=$($sdlconfig --static-libs 2>/dev/null)
3034 fi
74f42e18 3035 else
89138857 3036 sdl_libs=$($sdlconfig --libs 2>/dev/null)
74f42e18 3037 fi
52166aa0 3038 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
0015ca5c 3039 sdl=yes
cd01b4a3 3040
67c274d3 3041 # static link with sdl ? (note: sdl.pc's --static --libs is broken)
e633a5c6 3042 if test "$sdl" = "yes" && test "$static" = "yes" ; then
67c274d3 3043 if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
89138857
SW
3044 sdl_libs="$sdl_libs $(aalib-config --static-libs 2>/dev/null)"
3045 sdl_cflags="$sdl_cflags $(aalib-config --cflags 2>/dev/null)"
ac119f9d 3046 fi
52166aa0 3047 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
ac119f9d
JQ
3048 :
3049 else
3050 sdl=no
3051 fi
3052 fi # static link
c4198157
JQ
3053 else # sdl not found
3054 if test "$sdl" = "yes" ; then
0015ca5c 3055 feature_not_found "sdl" "Install SDL2 devel"
c4198157
JQ
3056 fi
3057 sdl=no
ac119f9d 3058 fi # sdl compile test
c6093a05
PX
3059}
3060
a442fe2f
DB
3061sdl_image_probe ()
3062{
3063 if test "$sdl_image" != "no" ; then
3064 if $pkg_config SDL2_image --exists; then
3065 if test "$static" = "yes"; then
3066 sdl_image_libs=$($pkg_config SDL2_image --libs --static 2>/dev/null)
3067 else
3068 sdl_image_libs=$($pkg_config SDL2_image --libs 2>/dev/null)
3069 fi
3070 sdl_image_cflags=$($pkg_config SDL2_image --cflags 2>/dev/null)
3071 sdl_image=yes
3072
3073 sdl_cflags="$sdl_cflags $sdl_image_cflags"
3074 sdl_libs="$sdl_libs $sdl_image_libs"
3075 else
3076 if test "$sdl_image" = "yes" ; then
3077 feature_not_found "sdl_image" "Install SDL Image devel"
3078 else
3079 sdl_image=no
3080 fi
3081 fi
3082 fi
3083}
3084
c6093a05
PX
3085if test "$sdl" != "no" ; then
3086 sdl_probe
a68551bc 3087fi
11d9f695 3088
a442fe2f
DB
3089if test "$sdl" = "yes" ; then
3090 sdl_image_probe
3091else
3092 if test "$sdl_image" = "yes"; then
3093 echo "warning: SDL Image requested, but SDL is not available, disabling"
3094 fi
3095 sdl_image=no
3096fi
3097
5368a422 3098if test "$sdl" = "yes" ; then
ac119f9d 3099 cat > $TMPC <<EOF
5368a422
AL
3100#include <SDL.h>
3101#if defined(SDL_VIDEO_DRIVER_X11)
3102#include <X11/XKBlib.h>
3103#else
3104#error No x11 support
3105#endif
3106int main(void) { return 0; }
3107EOF
f676c67e 3108 if compile_prog "$sdl_cflags $x11_cflags" "$sdl_libs $x11_libs" ; then
8781595b 3109 need_x11=yes
f676c67e
JW
3110 sdl_cflags="$sdl_cflags $x11_cflags"
3111 sdl_libs="$sdl_libs $x11_libs"
ac119f9d 3112 fi
5368a422
AL
3113fi
3114
2da776db
MH
3115##########################################
3116# RDMA needs OpenFabrics libraries
3117if test "$rdma" != "no" ; then
3118 cat > $TMPC <<EOF
3119#include <rdma/rdma_cma.h>
3120int main(void) { return 0; }
3121EOF
ef6d4ccd 3122 rdma_libs="-lrdmacm -libverbs -libumad"
2da776db
MH
3123 if compile_prog "" "$rdma_libs" ; then
3124 rdma="yes"
ef6d4ccd 3125 libs_softmmu="$libs_softmmu $rdma_libs"
2da776db
MH
3126 else
3127 if test "$rdma" = "yes" ; then
3128 error_exit \
ef6d4ccd 3129 " OpenFabrics librdmacm/libibverbs/libibumad not present." \
2da776db 3130 " Your options:" \
ef6d4ccd 3131 " (1) Fast: Install infiniband packages (devel) from your distro." \
2da776db
MH
3132 " (2) Cleanest: Install libraries from www.openfabrics.org" \
3133 " (3) Also: Install softiwarp if you don't have RDMA hardware"
3134 fi
3135 rdma="no"
3136 fi
3137fi
3138
21ab34c9
MA
3139##########################################
3140# PVRDMA detection
3141
3142cat > $TMPC <<EOF &&
3143#include <sys/mman.h>
3144
3145int
3146main(void)
3147{
3148 char buf = 0;
3149 void *addr = &buf;
3150 addr = mremap(addr, 0, 1, MREMAP_MAYMOVE | MREMAP_FIXED);
3151
3152 return 0;
3153}
3154EOF
3155
3156if test "$rdma" = "yes" ; then
3157 case "$pvrdma" in
3158 "")
3159 if compile_prog "" ""; then
3160 pvrdma="yes"
3161 else
3162 pvrdma="no"
3163 fi
3164 ;;
3165 "yes")
3166 if ! compile_prog "" ""; then
3167 error_exit "PVRDMA is not supported since mremap is not implemented"
3168 fi
3169 pvrdma="yes"
3170 ;;
3171 "no")
3172 pvrdma="no"
3173 ;;
3174 esac
3175else
3176 if test "$pvrdma" = "yes" ; then
3177 error_exit "PVRDMA requires rdma suppport"
3178 fi
3179 pvrdma="no"
3180fi
95c6bff3 3181
2f9606b3
AL
3182##########################################
3183# VNC SASL detection
e633a5c6 3184if test "$vnc" = "yes" && test "$vnc_sasl" != "no" ; then
ea784e3b 3185 cat > $TMPC <<EOF
2f9606b3
AL
3186#include <sasl/sasl.h>
3187#include <stdio.h>
3188int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
3189EOF
ea784e3b
JQ
3190 # Assuming Cyrus-SASL installed in /usr prefix
3191 vnc_sasl_cflags=""
3192 vnc_sasl_libs="-lsasl2"
3193 if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
3194 vnc_sasl=yes
3195 libs_softmmu="$vnc_sasl_libs $libs_softmmu"
ca273d58 3196 QEMU_CFLAGS="$QEMU_CFLAGS $vnc_sasl_cflags"
ea784e3b
JQ
3197 else
3198 if test "$vnc_sasl" = "yes" ; then
21684af0 3199 feature_not_found "vnc-sasl" "Install Cyrus SASL devel"
2f9606b3 3200 fi
ea784e3b
JQ
3201 vnc_sasl=no
3202 fi
2f9606b3
AL
3203fi
3204
2f6f5c7a
CC
3205##########################################
3206# VNC JPEG detection
e633a5c6 3207if test "$vnc" = "yes" && test "$vnc_jpeg" != "no" ; then
2f6f5c7a
CC
3208cat > $TMPC <<EOF
3209#include <stdio.h>
3210#include <jpeglib.h>
3211int main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
3212EOF
3213 vnc_jpeg_cflags=""
3214 vnc_jpeg_libs="-ljpeg"
3215 if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
3216 vnc_jpeg=yes
3217 libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
ca273d58 3218 QEMU_CFLAGS="$QEMU_CFLAGS $vnc_jpeg_cflags"
2f6f5c7a
CC
3219 else
3220 if test "$vnc_jpeg" = "yes" ; then
21684af0 3221 feature_not_found "vnc-jpeg" "Install libjpeg-turbo devel"
2f6f5c7a
CC
3222 fi
3223 vnc_jpeg=no
3224 fi
3225fi
3226
efe556ad
CC
3227##########################################
3228# VNC PNG detection
e633a5c6 3229if test "$vnc" = "yes" && test "$vnc_png" != "no" ; then
efe556ad
CC
3230cat > $TMPC <<EOF
3231//#include <stdio.h>
3232#include <png.h>
832ce9c2 3233#include <stddef.h>
efe556ad
CC
3234int main(void) {
3235 png_structp png_ptr;
3236 png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
7edc3fed 3237 return png_ptr != 0;
efe556ad
CC
3238}
3239EOF
65d5d3f9 3240 if $pkg_config libpng --exists; then
89138857
SW
3241 vnc_png_cflags=$($pkg_config libpng --cflags)
3242 vnc_png_libs=$($pkg_config libpng --libs)
9af8025e 3243 else
efe556ad
CC
3244 vnc_png_cflags=""
3245 vnc_png_libs="-lpng"
9af8025e 3246 fi
efe556ad
CC
3247 if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
3248 vnc_png=yes
3249 libs_softmmu="$vnc_png_libs $libs_softmmu"
9af8025e 3250 QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags"
efe556ad
CC
3251 else
3252 if test "$vnc_png" = "yes" ; then
21684af0 3253 feature_not_found "vnc-png" "Install libpng devel"
efe556ad
CC
3254 fi
3255 vnc_png=no
3256 fi
3257fi
3258
6a021536
GH
3259##########################################
3260# xkbcommon probe
3261if test "$xkbcommon" != "no" ; then
3262 if $pkg_config xkbcommon --exists; then
3263 xkbcommon_cflags=$($pkg_config xkbcommon --cflags)
3264 xkbcommon_libs=$($pkg_config xkbcommon --libs)
3265 xkbcommon=yes
3266 else
3267 if test "$xkbcommon" = "yes" ; then
3268 feature_not_found "xkbcommon" "Install libxkbcommon-devel"
3269 fi
3270 xkbcommon=no
3271 fi
3272fi
3273
76655d6d 3274
ee682d27 3275##########################################
c1bb86cd 3276# xfsctl() probe, used for file-posix.c
dce512de
CH
3277if test "$xfs" != "no" ; then
3278 cat > $TMPC << EOF
ffc41d10 3279#include <stddef.h> /* NULL */
dce512de
CH
3280#include <xfs/xfs.h>
3281int main(void)
3282{
3283 xfsctl(NULL, 0, 0, NULL);
3284 return 0;
3285}
3286EOF
3287 if compile_prog "" "" ; then
3288 xfs="yes"
3289 else
3290 if test "$xfs" = "yes" ; then
21684af0 3291 feature_not_found "xfs" "Instal xfsprogs/xfslibs devel"
dce512de
CH
3292 fi
3293 xfs=no
3294 fi
3295fi
3296
8a16d273
TS
3297##########################################
3298# vde libraries probe
dfb278bd 3299if test "$vde" != "no" ; then
4baae0ac 3300 vde_libs="-lvdeplug"
8a16d273
TS
3301 cat > $TMPC << EOF
3302#include <libvdeplug.h>
4a7f0e06
PB
3303int main(void)
3304{
3305 struct vde_open_args a = {0, 0, 0};
fea08e08
PM
3306 char s[] = "";
3307 vde_open(s, s, &a);
4a7f0e06
PB
3308 return 0;
3309}
8a16d273 3310EOF
52166aa0 3311 if compile_prog "" "$vde_libs" ; then
4baae0ac 3312 vde=yes
dfb278bd
JQ
3313 else
3314 if test "$vde" = "yes" ; then
21684af0 3315 feature_not_found "vde" "Install vde (Virtual Distributed Ethernet) devel"
dfb278bd
JQ
3316 fi
3317 vde=no
4baae0ac 3318 fi
8a16d273
TS
3319fi
3320
58952137 3321##########################################
0a985b37
VM
3322# netmap support probe
3323# Apart from looking for netmap headers, we make sure that the host API version
3324# supports the netmap backend (>=11). The upper bound (15) is meant to simulate
3325# a minor/major version number. Minor new features will be marked with values up
3326# to 15, and if something happens that requires a change to the backend we will
3327# move above 15, submit the backend fixes and modify this two bounds.
58952137
VM
3328if test "$netmap" != "no" ; then
3329 cat > $TMPC << EOF
3330#include <inttypes.h>
3331#include <net/if.h>
3332#include <net/netmap.h>
3333#include <net/netmap_user.h>
0a985b37
VM
3334#if (NETMAP_API < 11) || (NETMAP_API > 15)
3335#error
3336#endif
58952137
VM
3337int main(void) { return 0; }
3338EOF
3339 if compile_prog "" "" ; then
3340 netmap=yes
3341 else
3342 if test "$netmap" = "yes" ; then
3343 feature_not_found "netmap"
3344 fi
3345 netmap=no
3346 fi
3347fi
3348
47e98658
CB
3349##########################################
3350# libcap-ng library probe
3351if test "$cap_ng" != "no" ; then
3352 cap_libs="-lcap-ng"
3353 cat > $TMPC << EOF
3354#include <cap-ng.h>
3355int main(void)
3356{
3357 capng_capability_to_name(CAPNG_EFFECTIVE);
3358 return 0;
3359}
3360EOF
3361 if compile_prog "" "$cap_libs" ; then
3362 cap_ng=yes
3363 libs_tools="$cap_libs $libs_tools"
3364 else
3365 if test "$cap_ng" = "yes" ; then
21684af0 3366 feature_not_found "cap_ng" "Install libcap-ng devel"
47e98658
CB
3367 fi
3368 cap_ng=no
3369 fi
3370fi
3371
8f28f3fb 3372##########################################
c2de5c91 3373# Sound support libraries probe
8f28f3fb 3374
89138857 3375audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/,/ /g')
c2de5c91 3376for drv in $audio_drv_list; do
3377 case $drv in
e42975a1 3378 alsa | try-alsa)
c80a867f
GH
3379 if $pkg_config alsa --exists; then
3380 alsa_libs=$($pkg_config alsa --libs)
e42975a1
GH
3381 if test "$drv" = "try-alsa"; then
3382 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-alsa/alsa/')
3383 fi
c80a867f 3384 else
e42975a1
GH
3385 if test "$drv" = "try-alsa"; then
3386 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-alsa//')
3387 else
3388 error_exit "$drv check failed" \
3389 "Make sure to have the $drv libs and headers installed."
3390 fi
c80a867f 3391 fi
c2de5c91 3392 ;;
3393
e42975a1 3394 pa | try-pa)
c80a867f
GH
3395 if $pkg_config libpulse --exists; then
3396 pulse_libs=$($pkg_config libpulse --libs)
3397 audio_pt_int="yes"
e42975a1
GH
3398 if test "$drv" = "try-pa"; then
3399 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-pa/pa/')
3400 fi
c80a867f 3401 else
e42975a1
GH
3402 if test "$drv" = "try-pa"; then
3403 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-pa//')
3404 else
3405 error_exit "$drv check failed" \
3406 "Make sure to have the $drv libs and headers installed."
3407 fi
c80a867f 3408 fi
b8e59f18 3409 ;;
3410
373967b2
GH
3411 sdl)
3412 if test "$sdl" = "no"; then
3413 error_exit "sdl not found or disabled, can not use sdl audio driver"
3414 fi
3415 ;;
3416
e42975a1
GH
3417 try-sdl)
3418 if test "$sdl" = "no"; then
3419 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-sdl//')
3420 else
3421 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-sdl/sdl/')
3422 fi
3423 ;;
3424
997e690a 3425 coreaudio)
b1149911 3426 coreaudio_libs="-framework CoreAudio"
997e690a
JQ
3427 ;;
3428
a4bf6780 3429 dsound)
b1149911 3430 dsound_libs="-lole32 -ldxguid"
d5631638 3431 audio_win_int="yes"
a4bf6780
JQ
3432 ;;
3433
3434 oss)
b1149911 3435 oss_libs="$oss_lib"
a4bf6780
JQ
3436 ;;
3437
e4c63a6a 3438 *)
1c9b2a52 3439 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
76ad07a4
PM
3440 error_exit "Unknown driver '$drv' selected" \
3441 "Possible drivers are: $audio_possible_drivers"
e4c63a6a 3442 }
3443 ;;
c2de5c91 3444 esac
3445done
8f28f3fb 3446
2e4d9fb1
AJ
3447##########################################
3448# BrlAPI probe
3449
4ffcedb6 3450if test "$brlapi" != "no" ; then
eb82284f
JQ
3451 brlapi_libs="-lbrlapi"
3452 cat > $TMPC << EOF
2e4d9fb1 3453#include <brlapi.h>
832ce9c2 3454#include <stddef.h>
2e4d9fb1
AJ
3455int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
3456EOF
52166aa0 3457 if compile_prog "" "$brlapi_libs" ; then
eb82284f 3458 brlapi=yes
4ffcedb6
JQ
3459 else
3460 if test "$brlapi" = "yes" ; then
21684af0 3461 feature_not_found "brlapi" "Install brlapi devel"
4ffcedb6
JQ
3462 fi
3463 brlapi=no
eb82284f
JQ
3464 fi
3465fi
2e4d9fb1 3466
e08bb301
ST
3467##########################################
3468# iconv probe
3469if test "$iconv" != "no" ; then
3470 cat > $TMPC << EOF
3471#include <iconv.h>
3472int main(void) {
3473 iconv_t conv = iconv_open("WCHAR_T", "UCS-2");
3474 return conv != (iconv_t) -1;
3475}
3476EOF
3477 iconv_prefix_list="/usr/local:/usr"
3478 iconv_lib_list=":-liconv"
3479 IFS=:
3480 for iconv_prefix in $iconv_prefix_list; do
3481 IFS=:
3482 iconv_cflags="-I$iconv_prefix/include"
3483 iconv_ldflags="-L$iconv_prefix/lib"
3484 for iconv_link in $iconv_lib_list; do
3485 unset IFS
3486 iconv_lib="$iconv_ldflags $iconv_link"
3487 echo "looking at iconv in '$iconv_cflags' '$iconv_lib'" >> config.log
3488 if compile_prog "$iconv_cflags" "$iconv_lib" ; then
3489 iconv_found=yes
3490 break
3491 fi
3492 done
3493 if test "$iconv_found" = yes ; then
3494 break
3495 fi
3496 done
3497 if test "$iconv_found" = "yes" ; then
3498 iconv=yes
3499 else
3500 if test "$iconv" = "yes" ; then
3501 feature_not_found "iconv" "Install iconv devel"
3502 fi
3503 iconv=no
3504 fi
3505fi
3506
4d3b6f6e
AZ
3507##########################################
3508# curses probe
e08bb301
ST
3509if test "$iconv" = "no" ; then
3510 # curses will need iconv
3511 curses=no
3512fi
a3605bf6
MT
3513if test "$curses" != "no" ; then
3514 if test "$mingw32" = "yes" ; then
8ddc5bf9
ST
3515 curses_inc_list="$($pkg_config --cflags ncurses 2>/dev/null):"
3516 curses_lib_list="$($pkg_config --libs ncurses 2>/dev/null):-lpdcurses"
a3605bf6 3517 else
7c703002 3518 curses_inc_list="$($pkg_config --cflags ncursesw 2>/dev/null):-I/usr/include/ncursesw:"
8ddc5bf9 3519 curses_lib_list="$($pkg_config --libs ncursesw 2>/dev/null):-lncursesw:-lcursesw"
a3605bf6 3520 fi
c584a6d0 3521 curses_found=no
4d3b6f6e 3522 cat > $TMPC << EOF
8ddc5bf9 3523#include <locale.h>
4d3b6f6e 3524#include <curses.h>
8ddc5bf9 3525#include <wchar.h>
2f8b7cd5 3526#include <langinfo.h>
ef9a2524 3527int main(void) {
2f8b7cd5 3528 const char *codeset;
8ddc5bf9
ST
3529 wchar_t wch = L'w';
3530 setlocale(LC_ALL, "");
ef9a2524 3531 resize_term(0, 0);
8ddc5bf9
ST
3532 addwstr(L"wide chars\n");
3533 addnwstr(&wch, 1);
7c703002 3534 add_wch(WACS_DEGREE);
2f8b7cd5
ST
3535 codeset = nl_langinfo(CODESET);
3536 return codeset != 0;
ef9a2524 3537}
4d3b6f6e 3538EOF
ecbe251f 3539 IFS=:
8ddc5bf9 3540 for curses_inc in $curses_inc_list; do
b01a4fd3
PM
3541 # Make sure we get the wide character prototypes
3542 curses_inc="-DNCURSES_WIDECHAR $curses_inc"
7c703002 3543 IFS=:
8ddc5bf9
ST
3544 for curses_lib in $curses_lib_list; do
3545 unset IFS
3546 if compile_prog "$curses_inc" "$curses_lib" ; then
3547 curses_found=yes
8ddc5bf9
ST
3548 break
3549 fi
3550 done
7c703002
ST
3551 if test "$curses_found" = yes ; then
3552 break
3553 fi
4f78ef9a 3554 done
ecbe251f 3555 unset IFS
c584a6d0
JQ
3556 if test "$curses_found" = "yes" ; then
3557 curses=yes
3558 else
3559 if test "$curses" = "yes" ; then
21684af0 3560 feature_not_found "curses" "Install ncurses devel"
c584a6d0
JQ
3561 fi
3562 curses=no
3563 fi
4f78ef9a 3564fi
4d3b6f6e 3565
769ce76d
AG
3566##########################################
3567# curl probe
788c8196 3568if test "$curl" != "no" ; then
65d5d3f9 3569 if $pkg_config libcurl --exists; then
a3605bf6
MT
3570 curlconfig="$pkg_config libcurl"
3571 else
3572 curlconfig=curl-config
3573 fi
769ce76d
AG
3574 cat > $TMPC << EOF
3575#include <curl/curl.h>
0b862ced 3576int main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; }
769ce76d 3577EOF
89138857
SW
3578 curl_cflags=$($curlconfig --cflags 2>/dev/null)
3579 curl_libs=$($curlconfig --libs 2>/dev/null)
b1d5a277 3580 if compile_prog "$curl_cflags" "$curl_libs" ; then
769ce76d 3581 curl=yes
788c8196
JQ
3582 else
3583 if test "$curl" = "yes" ; then
21684af0 3584 feature_not_found "curl" "Install libcurl devel"
788c8196
JQ
3585 fi
3586 curl=no
769ce76d
AG
3587 fi
3588fi # test "$curl"
3589
fb599c9a
AZ
3590##########################################
3591# bluez support probe
a20a6f46 3592if test "$bluez" != "no" ; then
e820e3f4
AZ
3593 cat > $TMPC << EOF
3594#include <bluetooth/bluetooth.h>
3595int main(void) { return bt_error(0); }
3596EOF
89138857
SW
3597 bluez_cflags=$($pkg_config --cflags bluez 2>/dev/null)
3598 bluez_libs=$($pkg_config --libs bluez 2>/dev/null)
52166aa0 3599 if compile_prog "$bluez_cflags" "$bluez_libs" ; then
a20a6f46 3600 bluez=yes
e482d56a 3601 libs_softmmu="$bluez_libs $libs_softmmu"
e820e3f4 3602 else
a20a6f46 3603 if test "$bluez" = "yes" ; then
21684af0 3604 feature_not_found "bluez" "Install bluez-libs/libbluetooth devel"
a20a6f46 3605 fi
e820e3f4
AZ
3606 bluez="no"
3607 fi
fb599c9a
AZ
3608fi
3609
e18df141
AL
3610##########################################
3611# glib support probe
a52d28af 3612
e7b3af81 3613glib_req_ver=2.40
aa0d1f44
PB
3614glib_modules=gthread-2.0
3615if test "$modules" = yes; then
a88afc64 3616 glib_modules="$glib_modules gmodule-export-2.0"
aa0d1f44 3617fi
e26110cf 3618
4eaf7202
SJ
3619# This workaround is required due to a bug in pkg-config file for glib as it
3620# doesn't define GLIB_STATIC_COMPILATION for pkg-config --static
3621
e633a5c6 3622if test "$static" = yes && test "$mingw32" = yes; then
4eaf7202
SJ
3623 QEMU_CFLAGS="-DGLIB_STATIC_COMPILATION $QEMU_CFLAGS"
3624fi
3625
aa0d1f44 3626for i in $glib_modules; do
e26110cf 3627 if $pkg_config --atleast-version=$glib_req_ver $i; then
89138857
SW
3628 glib_cflags=$($pkg_config --cflags $i)
3629 glib_libs=$($pkg_config --libs $i)
4a058899 3630 QEMU_CFLAGS="$glib_cflags $QEMU_CFLAGS"
e26110cf
FZ
3631 LIBS="$glib_libs $LIBS"
3632 libs_qga="$glib_libs $libs_qga"
3633 else
3634 error_exit "glib-$glib_req_ver $i is required to compile QEMU"
3635 fi
3636done
3637
f876b765
MAL
3638if $pkg_config --atleast-version=$glib_req_ver gio-2.0; then
3639 gio=yes
3640 gio_cflags=$($pkg_config --cflags gio-2.0)
3641 gio_libs=$($pkg_config --libs gio-2.0)
3642else
3643 gio=no
3644fi
3645
977a82ab
DB
3646# Sanity check that the current size_t matches the
3647# size that glib thinks it should be. This catches
3648# problems on multi-arch where people try to build
3649# 32-bit QEMU while pointing at 64-bit glib headers
3650cat > $TMPC <<EOF
3651#include <glib.h>
3652#include <unistd.h>
3653
3654#define QEMU_BUILD_BUG_ON(x) \
3655 typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused));
3656
3657int main(void) {
3658 QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T);
3659 return 0;
3660}
3661EOF
3662
5919e032 3663if ! compile_prog "$CFLAGS" "$LIBS" ; then
977a82ab
DB
3664 error_exit "sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T."\
3665 "You probably need to set PKG_CONFIG_LIBDIR"\
3666 "to point to the right pkg-config files for your"\
3667 "build target"
3668fi
3669
bbbf2e04
JS
3670# Silence clang 3.5.0 warnings about glib attribute __alloc_size__ usage
3671cat > $TMPC << EOF
3672#include <glib.h>
3673int main(void) { return 0; }
3674EOF
3675if ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then
3676 if cc_has_warning_flag "-Wno-unknown-attributes"; then
3677 glib_cflags="-Wno-unknown-attributes $glib_cflags"
3678 CFLAGS="-Wno-unknown-attributes $CFLAGS"
3679 fi
3680fi
3681
6a1f42bd
SW
3682#########################################
3683# zlib check
3684
3685if test "$zlib" != "no" ; then
3686 if $pkg_config --exists zlib; then
3687 zlib_cflags=$($pkg_config --cflags zlib)
3688 zlib_libs=$($pkg_config --libs zlib)
3689 QEMU_CFLAGS="$zlib_cflags $QEMU_CFLAGS"
3690 LIBS="$zlib_libs $LIBS"
3691 else
3692 cat > $TMPC << EOF
3693#include <zlib.h>
3694int main(void) { zlibVersion(); return 0; }
3695EOF
3696 if compile_prog "" "-lz" ; then
3697 LIBS="$LIBS -lz"
3698 else
3699 error_exit "zlib check failed" \
3700 "Make sure to have the zlib libs and headers installed."
3701 fi
3702 fi
3703fi
3704
e26110cf
FZ
3705##########################################
3706# SHA command probe for modules
3707if test "$modules" = yes; then
3708 shacmd_probe="sha1sum sha1 shasum"
3709 for c in $shacmd_probe; do
8ccefb91 3710 if has $c; then
e26110cf
FZ
3711 shacmd="$c"
3712 break
3713 fi
3714 done
3715 if test "$shacmd" = ""; then
3716 error_exit "one of the checksum commands is required to enable modules: $shacmd_probe"
3717 fi
e18df141
AL
3718fi
3719
e2134eb9
GH
3720##########################################
3721# pixman support probe
3722
e633a5c6 3723if test "$want_tools" = "no" && test "$softmmu" = "no"; then
74880fe2
RS
3724 pixman_cflags=
3725 pixman_libs=
35c4e86c 3726elif $pkg_config --atleast-version=0.21.8 pixman-1 > /dev/null 2>&1; then
89138857
SW
3727 pixman_cflags=$($pkg_config --cflags pixman-1)
3728 pixman_libs=$($pkg_config --libs pixman-1)
e2134eb9 3729else
c12b6d70
GH
3730 error_exit "pixman >= 0.21.8 not present." \
3731 "Please install the pixman devel package."
e2134eb9 3732fi
e2134eb9 3733
fe8fc5ae
PB
3734##########################################
3735# libmpathpersist probe
3736
3737if test "$mpath" != "no" ; then
1b0578f5 3738 # probe for the new API
fe8fc5ae
PB
3739 cat > $TMPC <<EOF
3740#include <libudev.h>
3741#include <mpath_persist.h>
3742unsigned mpath_mx_alloc_len = 1024;
3743int logsink;
b3f1c8c4
PB
3744static struct config *multipath_conf;
3745extern struct udev *udev;
3746extern struct config *get_multipath_config(void);
3747extern void put_multipath_config(struct config *conf);
3748struct udev *udev;
3749struct config *get_multipath_config(void) { return multipath_conf; }
3750void put_multipath_config(struct config *conf) { }
3751
fe8fc5ae 3752int main(void) {
b3f1c8c4
PB
3753 udev = udev_new();
3754 multipath_conf = mpath_lib_init();
fe8fc5ae
PB
3755 return 0;
3756}
3757EOF
3758 if compile_prog "" "-ludev -lmultipath -lmpathpersist" ; then
3759 mpathpersist=yes
1b0578f5 3760 mpathpersist_new_api=yes
fe8fc5ae 3761 else
1b0578f5
MOA
3762 # probe for the old API
3763 cat > $TMPC <<EOF
3764#include <libudev.h>
3765#include <mpath_persist.h>
3766unsigned mpath_mx_alloc_len = 1024;
3767int logsink;
3768int main(void) {
3769 struct udev *udev = udev_new();
3770 mpath_lib_init(udev);
3771 return 0;
3772}
3773EOF
3774 if compile_prog "" "-ludev -lmultipath -lmpathpersist" ; then
3775 mpathpersist=yes
3776 mpathpersist_new_api=no
3777 else
3778 mpathpersist=no
3779 fi
fe8fc5ae
PB
3780 fi
3781else
3782 mpathpersist=no
3783fi
3784
17bff52b
MK
3785##########################################
3786# libcap probe
3787
3788if test "$cap" != "no" ; then
3789 cat > $TMPC <<EOF
3790#include <stdio.h>
3791#include <sys/capability.h>
cc939743 3792int main(void) { cap_t caps; caps = cap_init(); return caps != NULL; }
17bff52b
MK
3793EOF
3794 if compile_prog "" "-lcap" ; then
3795 cap=yes
3796 else
3797 cap=no
3798 fi
3799fi
3800
414f0dab 3801##########################################
e5d355d1 3802# pthread probe
4b29ec41 3803PTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2"
3c529d93 3804
4dd75c70 3805pthread=no
e5d355d1 3806cat > $TMPC << EOF
3c529d93 3807#include <pthread.h>
7a42bbe4
SW
3808static void *f(void *p) { return NULL; }
3809int main(void) {
3810 pthread_t thread;
3811 pthread_create(&thread, 0, f, 0);
3812 return 0;
3813}
414f0dab 3814EOF
bd00d539
AF
3815if compile_prog "" "" ; then
3816 pthread=yes
3817else
3818 for pthread_lib in $PTHREADLIBS_LIST; do
3819 if compile_prog "" "$pthread_lib" ; then
3820 pthread=yes
e3c56761
PP
3821 found=no
3822 for lib_entry in $LIBS; do
3823 if test "$lib_entry" = "$pthread_lib"; then
3824 found=yes
3825 break
3826 fi
3827 done
3828 if test "$found" = "no"; then
3829 LIBS="$pthread_lib $LIBS"
14ab3aa7 3830 libs_qga="$pthread_lib $libs_qga"
e3c56761 3831 fi
409437e1 3832 PTHREAD_LIB="$pthread_lib"
bd00d539
AF
3833 break
3834 fi
3835 done
3836fi
414f0dab 3837
e633a5c6 3838if test "$mingw32" != yes && test "$pthread" = no; then
76ad07a4
PM
3839 error_exit "pthread check failed" \
3840 "Make sure to have the pthread libs and headers installed."
e5d355d1
AL
3841fi
3842
479a5747
RB
3843# check for pthread_setname_np with thread id
3844pthread_setname_np_w_tid=no
5c312079
DDAG
3845cat > $TMPC << EOF
3846#include <pthread.h>
3847
3848static void *f(void *p) { return NULL; }
3849int main(void)
3850{
3851 pthread_t thread;
3852 pthread_create(&thread, 0, f, 0);
3853 pthread_setname_np(thread, "QEMU");
3854 return 0;
3855}
3856EOF
3857if compile_prog "" "$pthread_lib" ; then
479a5747
RB
3858 pthread_setname_np_w_tid=yes
3859fi
3860
3861# check for pthread_setname_np without thread id
3862pthread_setname_np_wo_tid=no
3863cat > $TMPC << EOF
3864#include <pthread.h>
3865
3866static void *f(void *p) { pthread_setname_np("QEMU"); }
3867int main(void)
3868{
3869 pthread_t thread;
3870 pthread_create(&thread, 0, f, 0);
3871 return 0;
3872}
3873EOF
3874if compile_prog "" "$pthread_lib" ; then
3875 pthread_setname_np_wo_tid=yes
5c312079
DDAG
3876fi
3877
f27aaf4b
CB
3878##########################################
3879# rbd probe
3880if test "$rbd" != "no" ; then
3881 cat > $TMPC <<EOF
3882#include <stdio.h>
ad32e9c0 3883#include <rbd/librbd.h>
f27aaf4b 3884int main(void) {
ad32e9c0
JD
3885 rados_t cluster;
3886 rados_create(&cluster, NULL);
f27aaf4b
CB
3887 return 0;
3888}
3889EOF
ad32e9c0
JD
3890 rbd_libs="-lrbd -lrados"
3891 if compile_prog "" "$rbd_libs" ; then
3892 rbd=yes
f27aaf4b
CB
3893 else
3894 if test "$rbd" = "yes" ; then
21684af0 3895 feature_not_found "rados block device" "Install librbd/ceph devel"
f27aaf4b
CB
3896 fi
3897 rbd=no
3898 fi
f27aaf4b
CB
3899fi
3900
0a12ec87
RJ
3901##########################################
3902# libssh2 probe
4fc16838 3903min_libssh2_version=1.2.8
0a12ec87 3904if test "$libssh2" != "no" ; then
65d5d3f9 3905 if $pkg_config --atleast-version=$min_libssh2_version libssh2; then
89138857
SW
3906 libssh2_cflags=$($pkg_config libssh2 --cflags)
3907 libssh2_libs=$($pkg_config libssh2 --libs)
0a12ec87 3908 libssh2=yes
0a12ec87
RJ
3909 else
3910 if test "$libssh2" = "yes" ; then
4fc16838 3911 error_exit "libssh2 >= $min_libssh2_version required for --enable-libssh2"
0a12ec87
RJ
3912 fi
3913 libssh2=no
3914 fi
3915fi
3916
9a2d462e
RJ
3917##########################################
3918# libssh2_sftp_fsync probe
3919
3920if test "$libssh2" = "yes"; then
3921 cat > $TMPC <<EOF
3922#include <stdio.h>
3923#include <libssh2.h>
3924#include <libssh2_sftp.h>
3925int main(void) {
3926 LIBSSH2_SESSION *session;
3927 LIBSSH2_SFTP *sftp;
3928 LIBSSH2_SFTP_HANDLE *sftp_handle;
3929 session = libssh2_session_init ();
3930 sftp = libssh2_sftp_init (session);
3931 sftp_handle = libssh2_sftp_open (sftp, "/", 0, 0);
3932 libssh2_sftp_fsync (sftp_handle);
3933 return 0;
3934}
3935EOF
3936 # libssh2_cflags/libssh2_libs defined in previous test.
3937 if compile_prog "$libssh2_cflags" "$libssh2_libs" ; then
3938 QEMU_CFLAGS="-DHAS_LIBSSH2_SFTP_FSYNC $QEMU_CFLAGS"
3939 fi
3940fi
3941
5c6c3a6c
CH
3942##########################################
3943# linux-aio probe
5c6c3a6c
CH
3944
3945if test "$linux_aio" != "no" ; then
3946 cat > $TMPC <<EOF
3947#include <libaio.h>
3948#include <sys/eventfd.h>
832ce9c2 3949#include <stddef.h>
5c6c3a6c
CH
3950int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
3951EOF
3952 if compile_prog "" "-laio" ; then
3953 linux_aio=yes
5c6c3a6c
CH
3954 else
3955 if test "$linux_aio" = "yes" ; then
21684af0 3956 feature_not_found "linux AIO" "Install libaio devel"
5c6c3a6c 3957 fi
3cfcae3c 3958 linux_aio=no
5c6c3a6c
CH
3959 fi
3960fi
3961
3b8acc11 3962##########################################
7aaa6a16 3963# TPM emulation is only on POSIX
3b8acc11 3964
7aaa6a16
PB
3965if test "$tpm" = ""; then
3966 if test "$mingw32" = "yes"; then
3967 tpm=no
3968 else
3969 tpm=yes
3970 fi
3971elif test "$tpm" = "yes"; then
3972 if test "$mingw32" = "yes" ; then
3973 error_exit "TPM emulation only available on POSIX systems"
3974 fi
3b8acc11
PB
3975fi
3976
758e8e38
VJ
3977##########################################
3978# attr probe
3979
3980if test "$attr" != "no" ; then
3981 cat > $TMPC <<EOF
3982#include <stdio.h>
3983#include <sys/types.h>
f2338fb4
PB
3984#ifdef CONFIG_LIBATTR
3985#include <attr/xattr.h>
3986#else
4f26f2b6 3987#include <sys/xattr.h>
f2338fb4 3988#endif
758e8e38
VJ
3989int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
3990EOF
4f26f2b6
AK
3991 if compile_prog "" "" ; then
3992 attr=yes
3993 # Older distros have <attr/xattr.h>, and need -lattr:
f2338fb4 3994 elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then
758e8e38
VJ
3995 attr=yes
3996 LIBS="-lattr $LIBS"
4f26f2b6 3997 libattr=yes
758e8e38
VJ
3998 else
3999 if test "$attr" = "yes" ; then
21684af0 4000 feature_not_found "ATTR" "Install libc6 or libattr devel"
758e8e38
VJ
4001 fi
4002 attr=no
4003 fi
4004fi
4005
bf9298b9
AL
4006##########################################
4007# iovec probe
4008cat > $TMPC <<EOF
db34f0b3 4009#include <sys/types.h>
bf9298b9 4010#include <sys/uio.h>
db34f0b3 4011#include <unistd.h>
f91f9bee 4012int main(void) { return sizeof(struct iovec); }
bf9298b9
AL
4013EOF
4014iovec=no
52166aa0 4015if compile_prog "" "" ; then
bf9298b9
AL
4016 iovec=yes
4017fi
4018
ceb42de8
AL
4019##########################################
4020# preadv probe
4021cat > $TMPC <<EOF
4022#include <sys/types.h>
4023#include <sys/uio.h>
4024#include <unistd.h>
c075a723 4025int main(void) { return preadv(0, 0, 0, 0); }
ceb42de8
AL
4026EOF
4027preadv=no
52166aa0 4028if compile_prog "" "" ; then
ceb42de8
AL
4029 preadv=yes
4030fi
4031
f652e6af
AJ
4032##########################################
4033# fdt probe
e169e1e1
PM
4034# fdt support is mandatory for at least some target architectures,
4035# so insist on it if we're building those system emulators.
4036fdt_required=no
4037for target in $target_list; do
4038 case $target in
a666409f 4039 aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu|mips64el-softmmu|riscv*-softmmu)
e169e1e1
PM
4040 fdt_required=yes
4041 ;;
4042 esac
4043done
4044
4045if test "$fdt_required" = "yes"; then
4046 if test "$fdt" = "no"; then
4047 error_exit "fdt disabled but some requested targets require it." \
4048 "You can turn off fdt only if you also disable all the system emulation" \
4049 "targets which need it (by specifying a cut down --target-list)."
4050 fi
4051 fdt=yes
4052fi
4053
2df87df7 4054if test "$fdt" != "no" ; then
b41af4ba 4055 fdt_libs="-lfdt"
96ce6545 4056 # explicitly check for libfdt_env.h as it is missing in some stable installs
6e85fce0 4057 # and test for required functions to make sure we are on a version >= 1.4.2
b41af4ba 4058 cat > $TMPC << EOF
31ce0adb 4059#include <libfdt.h>
96ce6545 4060#include <libfdt_env.h>
fea35ca4 4061int main(void) { fdt_check_full(NULL, 0); return 0; }
f652e6af 4062EOF
52166aa0 4063 if compile_prog "" "$fdt_libs" ; then
a540f158 4064 # system DTC is good - use it
e3971d61 4065 fdt=system
a540f158 4066 else
aef45d51
DB
4067 # have GIT checkout, so activate dtc submodule
4068 if test -e "${source_path}/.git" ; then
4069 git_submodules="${git_submodules} dtc"
4070 fi
4071 if test -d "${source_path}/dtc/libfdt" || test -e "${source_path}/.git" ; then
e3971d61 4072 fdt=git
aef45d51
DB
4073 mkdir -p dtc
4074 if [ "$pwd_is_source_path" != "y" ] ; then
4075 symlink "$source_path/dtc/Makefile" "dtc/Makefile"
4076 symlink "$source_path/dtc/scripts" "dtc/scripts"
4077 fi
4078 fdt_cflags="-I\$(SRC_PATH)/dtc/libfdt"
8a99e9a3
PMD
4079 fdt_ldflags="-L\$(BUILD_DIR)/dtc/libfdt"
4080 fdt_libs="$fdt_libs"
aef45d51
DB
4081 elif test "$fdt" = "yes" ; then
4082 # Not a git build & no libfdt found, prompt for system install
4083 error_exit "DTC (libfdt) version >= 1.4.2 not present." \
4084 "Please install the DTC (libfdt) devel package"
4085 else
4086 # don't have and don't want
4087 fdt_libs=
4088 fdt=no
4089 fi
f652e6af
AJ
4090 fi
4091fi
4092
a540f158
PC
4093libs_softmmu="$libs_softmmu $fdt_libs"
4094
20ff075b 4095##########################################
fb719563 4096# opengl probe (for sdl2, gtk, milkymist-tmu2)
b1546f32 4097
da076ffe 4098if test "$opengl" != "no" ; then
4939a1df 4099 opengl_pkgs="epoxy gbm"
5f9b1e35
GH
4100 if $pkg_config $opengl_pkgs; then
4101 opengl_cflags="$($pkg_config --cflags $opengl_pkgs)"
4102 opengl_libs="$($pkg_config --libs $opengl_pkgs)"
da076ffe 4103 opengl=yes
925a0400
GH
4104 if test "$gtk" = "yes" && $pkg_config --exists "$gtkpackage >= 3.16"; then
4105 gtk_gl="yes"
4106 fi
cc720a5d 4107 QEMU_CFLAGS="$QEMU_CFLAGS $opengl_cflags"
20ff075b 4108 else
da076ffe 4109 if test "$opengl" = "yes" ; then
dcf30025 4110 feature_not_found "opengl" "Please install opengl (mesa) devel pkgs: $opengl_pkgs"
20ff075b 4111 fi
f676c67e 4112 opengl_cflags=""
da076ffe
GH
4113 opengl_libs=""
4114 opengl=no
20ff075b
MW
4115 fi
4116fi
4117
014cb152
GH
4118if test "$opengl" = "yes"; then
4119 cat > $TMPC << EOF
4120#include <epoxy/egl.h>
4121#ifndef EGL_MESA_image_dma_buf_export
4122# error mesa/epoxy lacks support for dmabufs (mesa 10.6+)
4123#endif
4124int main(void) { return 0; }
4125EOF
4126 if compile_prog "" "" ; then
4127 opengl_dmabuf=yes
4128 fi
4129fi
c9a12e75 4130
e633a5c6 4131if test "$opengl" = "yes" && test "$have_x11" = "yes"; then
99e1a93b
PMD
4132 for target in $target_list; do
4133 case $target in
4134 lm32-softmmu) # milkymist-tmu2 requires X11 and OpenGL
4135 need_x11=yes
4136 ;;
4137 esac
4138 done
4139fi
4140
ed279a06
KK
4141##########################################
4142# libxml2 probe
4143if test "$libxml2" != "no" ; then
4144 if $pkg_config --exists libxml-2.0; then
4145 libxml2="yes"
4146 libxml2_cflags=$($pkg_config --cflags libxml-2.0)
4147 libxml2_libs=$($pkg_config --libs libxml-2.0)
4148 else
4149 if test "$libxml2" = "yes"; then
4150 feature_not_found "libxml2" "Install libxml2 devel"
4151 fi
4152 libxml2="no"
4153 fi
4154fi
c9a12e75 4155
eb100396
BR
4156##########################################
4157# glusterfs probe
4158if test "$glusterfs" != "no" ; then
65d5d3f9 4159 if $pkg_config --atleast-version=3 glusterfs-api; then
e01bee08 4160 glusterfs="yes"
89138857
SW
4161 glusterfs_cflags=$($pkg_config --cflags glusterfs-api)
4162 glusterfs_libs=$($pkg_config --libs glusterfs-api)
d85fa9eb
JC
4163 if $pkg_config --atleast-version=4 glusterfs-api; then
4164 glusterfs_xlator_opt="yes"
4165 fi
65d5d3f9 4166 if $pkg_config --atleast-version=5 glusterfs-api; then
0c14fb47
BR
4167 glusterfs_discard="yes"
4168 fi
7c815372 4169 if $pkg_config --atleast-version=6 glusterfs-api; then
df3a429a 4170 glusterfs_fallocate="yes"
7c815372
BR
4171 glusterfs_zerofill="yes"
4172 fi
e014dbe7
PKK
4173 cat > $TMPC << EOF
4174#include <glusterfs/api/glfs.h>
4175
4176int
4177main(void)
4178{
4179 /* new glfs_ftruncate() passes two additional args */
4180 return glfs_ftruncate(NULL, 0, NULL, NULL);
4181}
4182EOF
4183 if compile_prog "$glusterfs_cflags" "$glusterfs_libs" ; then
4184 glusterfs_ftruncate_has_stat="yes"
4185 fi
0e3b891f
NV
4186 cat > $TMPC << EOF
4187#include <glusterfs/api/glfs.h>
4188
4189/* new glfs_io_cbk() passes two additional glfs_stat structs */
4190static void
4191glusterfs_iocb(glfs_fd_t *fd, ssize_t ret, struct glfs_stat *prestat, struct glfs_stat *poststat, void *data)
4192{}
4193
4194int
4195main(void)
4196{
4197 glfs_io_cbk iocb = &glusterfs_iocb;
4198 iocb(NULL, 0 , NULL, NULL, NULL);
4199 return 0;
4200}
4201EOF
4202 if compile_prog "$glusterfs_cflags" "$glusterfs_libs" ; then
4203 glusterfs_iocb_has_stat="yes"
4204 fi
eb100396
BR
4205 else
4206 if test "$glusterfs" = "yes" ; then
8efc9363
HT
4207 feature_not_found "GlusterFS backend support" \
4208 "Install glusterfs-api devel >= 3"
eb100396 4209 fi
e01bee08 4210 glusterfs="no"
eb100396
BR
4211 fi
4212fi
4213
39386ac7 4214# Check for inotify functions when we are building linux-user
3b3f24ad
AJ
4215# emulator. This is done because older glibc versions don't
4216# have syscall stubs for these implemented. In that case we
4217# don't provide them even if kernel supports them.
4218#
4219inotify=no
67ba57f6 4220cat > $TMPC << EOF
3b3f24ad
AJ
4221#include <sys/inotify.h>
4222
4223int
4224main(void)
4225{
4226 /* try to start inotify */
8690e420 4227 return inotify_init();
3b3f24ad
AJ
4228}
4229EOF
52166aa0 4230if compile_prog "" "" ; then
67ba57f6 4231 inotify=yes
3b3f24ad
AJ
4232fi
4233
c05c7a73
RV
4234inotify1=no
4235cat > $TMPC << EOF
4236#include <sys/inotify.h>
4237
4238int
4239main(void)
4240{
4241 /* try to start inotify */
4242 return inotify_init1(0);
4243}
4244EOF
4245if compile_prog "" "" ; then
4246 inotify1=yes
4247fi
4248
099d6b0f
RV
4249# check if pipe2 is there
4250pipe2=no
4251cat > $TMPC << EOF
099d6b0f
RV
4252#include <unistd.h>
4253#include <fcntl.h>
4254
4255int main(void)
4256{
4257 int pipefd[2];
9bca8162 4258 return pipe2(pipefd, O_CLOEXEC);
099d6b0f
RV
4259}
4260EOF
52166aa0 4261if compile_prog "" "" ; then
099d6b0f
RV
4262 pipe2=yes
4263fi
4264
40ff6d7e
KW
4265# check if accept4 is there
4266accept4=no
4267cat > $TMPC << EOF
40ff6d7e
KW
4268#include <sys/socket.h>
4269#include <stddef.h>
4270
4271int main(void)
4272{
4273 accept4(0, NULL, NULL, SOCK_CLOEXEC);
4274 return 0;
4275}
4276EOF
4277if compile_prog "" "" ; then
4278 accept4=yes
4279fi
4280
3ce34dfb
VS
4281# check if tee/splice is there. vmsplice was added same time.
4282splice=no
4283cat > $TMPC << EOF
3ce34dfb
VS
4284#include <unistd.h>
4285#include <fcntl.h>
4286#include <limits.h>
4287
4288int main(void)
4289{
66ea0f22 4290 int len, fd = 0;
3ce34dfb
VS
4291 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
4292 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
4293 return 0;
4294}
4295EOF
52166aa0 4296if compile_prog "" "" ; then
3ce34dfb
VS
4297 splice=yes
4298fi
4299
a99d57bb
WG
4300##########################################
4301# libnuma probe
4302
4303if test "$numa" != "no" ; then
4304 cat > $TMPC << EOF
4305#include <numa.h>
4306int main(void) { return numa_available(); }
4307EOF
4308
4309 if compile_prog "" "-lnuma" ; then
4310 numa=yes
4311 libs_softmmu="-lnuma $libs_softmmu"
4312 else
4313 if test "$numa" = "yes" ; then
4314 feature_not_found "numa" "install numactl devel"
4315 fi
4316 numa=no
4317 fi
4318fi
4319
7b01cb97
AD
4320if test "$tcmalloc" = "yes" && test "$jemalloc" = "yes" ; then
4321 echo "ERROR: tcmalloc && jemalloc can't be used at the same time"
4322 exit 1
4323fi
4324
5a22ab71
YZ
4325# Even if malloc_trim() is available, these non-libc memory allocators
4326# do not support it.
4327if test "$tcmalloc" = "yes" || test "$jemalloc" = "yes" ; then
4328 if test "$malloc_trim" = "yes" ; then
4329 echo "Disabling malloc_trim with non-libc memory allocator"
4330 fi
4331 malloc_trim="no"
4332fi
4333
4334#######################################
4335# malloc_trim
4336
4337if test "$malloc_trim" != "no" ; then
4338 cat > $TMPC << EOF
4339#include <malloc.h>
4340int main(void) { malloc_trim(0); return 0; }
4341EOF
4342 if compile_prog "" "" ; then
4343 malloc_trim="yes"
4344 else
4345 malloc_trim="no"
4346 fi
4347fi
4348
2847b469
FZ
4349##########################################
4350# tcmalloc probe
4351
4352if test "$tcmalloc" = "yes" ; then
4353 cat > $TMPC << EOF
4354#include <stdlib.h>
4355int main(void) { malloc(1); return 0; }
4356EOF
4357
4358 if compile_prog "" "-ltcmalloc" ; then
4359 LIBS="-ltcmalloc $LIBS"
4360 else
4361 feature_not_found "tcmalloc" "install gperftools devel"
4362 fi
4363fi
4364
7b01cb97
AD
4365##########################################
4366# jemalloc probe
4367
4368if test "$jemalloc" = "yes" ; then
4369 cat > $TMPC << EOF
4370#include <stdlib.h>
4371int main(void) { malloc(1); return 0; }
4372EOF
4373
4374 if compile_prog "" "-ljemalloc" ; then
4375 LIBS="-ljemalloc $LIBS"
4376 else
4377 feature_not_found "jemalloc" "install jemalloc devel"
4378 fi
4379fi
4380
dcc38d1c
MT
4381##########################################
4382# signalfd probe
4383signalfd="no"
4384cat > $TMPC << EOF
dcc38d1c
MT
4385#include <unistd.h>
4386#include <sys/syscall.h>
4387#include <signal.h>
4388int main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
4389EOF
4390
4391if compile_prog "" "" ; then
4392 signalfd=yes
4393fi
4394
d339d766
RJ
4395# check if optreset global is declared by <getopt.h>
4396optreset="no"
4397cat > $TMPC << EOF
4398#include <getopt.h>
4399int main(void) { return optreset; }
4400EOF
4401
4402if compile_prog "" "" ; then
4403 optreset=yes
4404fi
4405
c2882b96
RV
4406# check if eventfd is supported
4407eventfd=no
4408cat > $TMPC << EOF
4409#include <sys/eventfd.h>
4410
4411int main(void)
4412{
55cc7f3e 4413 return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
c2882b96
RV
4414}
4415EOF
4416if compile_prog "" "" ; then
4417 eventfd=yes
4418fi
4419
751bcc39
MAL
4420# check if memfd is supported
4421memfd=no
4422cat > $TMPC << EOF
75e5b70e 4423#include <sys/mman.h>
751bcc39
MAL
4424
4425int main(void)
4426{
4427 return memfd_create("foo", MFD_ALLOW_SEALING);
4428}
4429EOF
4430if compile_prog "" "" ; then
4431 memfd=yes
4432fi
4433
955727d2
CT
4434# check for usbfs
4435have_usbfs=no
4436if test "$linux_user" = "yes"; then
96566d09
TP
4437 cat > $TMPC << EOF
4438#include <linux/usbdevice_fs.h>
4439
4440#ifndef USBDEVFS_GET_CAPABILITIES
4441#error "USBDEVFS_GET_CAPABILITIES undefined"
4442#endif
4443
4444#ifndef USBDEVFS_DISCONNECT_CLAIM
4445#error "USBDEVFS_DISCONNECT_CLAIM undefined"
4446#endif
4447
4448int main(void)
4449{
4450 return 0;
4451}
4452EOF
4453 if compile_prog "" ""; then
955727d2
CT
4454 have_usbfs=yes
4455 fi
955727d2 4456fi
751bcc39 4457
d0927938
UH
4458# check for fallocate
4459fallocate=no
4460cat > $TMPC << EOF
4461#include <fcntl.h>
4462
4463int main(void)
4464{
4465 fallocate(0, 0, 0, 0);
4466 return 0;
4467}
4468EOF
8fb03151 4469if compile_prog "" "" ; then
d0927938
UH
4470 fallocate=yes
4471fi
4472
3d4fa43e
KK
4473# check for fallocate hole punching
4474fallocate_punch_hole=no
4475cat > $TMPC << EOF
4476#include <fcntl.h>
4477#include <linux/falloc.h>
4478
4479int main(void)
4480{
4481 fallocate(0, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, 0, 0);
4482 return 0;
4483}
4484EOF
4485if compile_prog "" "" ; then
4486 fallocate_punch_hole=yes
4487fi
4488
b953f075
DL
4489# check that fallocate supports range zeroing inside the file
4490fallocate_zero_range=no
4491cat > $TMPC << EOF
4492#include <fcntl.h>
4493#include <linux/falloc.h>
4494
4495int main(void)
4496{
4497 fallocate(0, FALLOC_FL_ZERO_RANGE, 0, 0);
4498 return 0;
4499}
4500EOF
4501if compile_prog "" "" ; then
4502 fallocate_zero_range=yes
4503fi
4504
ed911435
KW
4505# check for posix_fallocate
4506posix_fallocate=no
4507cat > $TMPC << EOF
4508#include <fcntl.h>
4509
4510int main(void)
4511{
4512 posix_fallocate(0, 0, 0);
4513 return 0;
4514}
4515EOF
4516if compile_prog "" "" ; then
4517 posix_fallocate=yes
4518fi
4519
c727f47d
PM
4520# check for sync_file_range
4521sync_file_range=no
4522cat > $TMPC << EOF
4523#include <fcntl.h>
4524
4525int main(void)
4526{
4527 sync_file_range(0, 0, 0, 0);
4528 return 0;
4529}
4530EOF
8fb03151 4531if compile_prog "" "" ; then
c727f47d
PM
4532 sync_file_range=yes
4533fi
4534
dace20dc
PM
4535# check for linux/fiemap.h and FS_IOC_FIEMAP
4536fiemap=no
4537cat > $TMPC << EOF
4538#include <sys/ioctl.h>
4539#include <linux/fs.h>
4540#include <linux/fiemap.h>
4541
4542int main(void)
4543{
4544 ioctl(0, FS_IOC_FIEMAP, 0);
4545 return 0;
4546}
4547EOF
8fb03151 4548if compile_prog "" "" ; then
dace20dc
PM
4549 fiemap=yes
4550fi
4551
d0927938
UH
4552# check for dup3
4553dup3=no
4554cat > $TMPC << EOF
4555#include <unistd.h>
4556
4557int main(void)
4558{
4559 dup3(0, 0, 0);
4560 return 0;
4561}
4562EOF
78f5d726 4563if compile_prog "" "" ; then
d0927938
UH
4564 dup3=yes
4565fi
4566
4e0c6529
AB
4567# check for ppoll support
4568ppoll=no
4569cat > $TMPC << EOF
4570#include <poll.h>
4571
4572int main(void)
4573{
4574 struct pollfd pfd = { .fd = 0, .events = 0, .revents = 0 };
4575 ppoll(&pfd, 1, 0, 0);
4576 return 0;
4577}
4578EOF
4579if compile_prog "" "" ; then
4580 ppoll=yes
4581fi
4582
cd758dd0
AB
4583# check for prctl(PR_SET_TIMERSLACK , ... ) support
4584prctl_pr_set_timerslack=no
4585cat > $TMPC << EOF
4586#include <sys/prctl.h>
4587
4588int main(void)
4589{
4590 prctl(PR_SET_TIMERSLACK, 1, 0, 0, 0);
4591 return 0;
4592}
4593EOF
4594if compile_prog "" "" ; then
4595 prctl_pr_set_timerslack=yes
4596fi
4597
3b6edd16
PM
4598# check for epoll support
4599epoll=no
4600cat > $TMPC << EOF
4601#include <sys/epoll.h>
4602
4603int main(void)
4604{
4605 epoll_create(0);
4606 return 0;
4607}
4608EOF
8fb03151 4609if compile_prog "" "" ; then
3b6edd16
PM
4610 epoll=yes
4611fi
4612
227f0214
PM
4613# epoll_create1 is a later addition
4614# so we must check separately for its presence
3b6edd16
PM
4615epoll_create1=no
4616cat > $TMPC << EOF
4617#include <sys/epoll.h>
4618
4619int main(void)
4620{
19e83f6b
PM
4621 /* Note that we use epoll_create1 as a value, not as
4622 * a function being called. This is necessary so that on
4623 * old SPARC glibc versions where the function was present in
4624 * the library but not declared in the header file we will
4625 * fail the configure check. (Otherwise we will get a compiler
4626 * warning but not an error, and will proceed to fail the
4627 * qemu compile where we compile with -Werror.)
4628 */
c075a723 4629 return (int)(uintptr_t)&epoll_create1;
3b6edd16
PM
4630}
4631EOF
8fb03151 4632if compile_prog "" "" ; then
3b6edd16
PM
4633 epoll_create1=yes
4634fi
4635
a8fd1aba
PM
4636# check for sendfile support
4637sendfile=no
4638cat > $TMPC << EOF
4639#include <sys/sendfile.h>
4640
4641int main(void)
4642{
4643 return sendfile(0, 0, 0, 0);
4644}
4645EOF
4646if compile_prog "" "" ; then
4647 sendfile=yes
4648fi
4649
51834341
RV
4650# check for timerfd support (glibc 2.8 and newer)
4651timerfd=no
4652cat > $TMPC << EOF
4653#include <sys/timerfd.h>
4654
4655int main(void)
4656{
4657 return(timerfd_create(CLOCK_REALTIME, 0));
4658}
4659EOF
4660if compile_prog "" "" ; then
4661 timerfd=yes
4662fi
4663
9af5c906
RV
4664# check for setns and unshare support
4665setns=no
4666cat > $TMPC << EOF
4667#include <sched.h>
4668
4669int main(void)
4670{
4671 int ret;
4672 ret = setns(0, 0);
4673 ret = unshare(0);
4674 return ret;
4675}
4676EOF
4677if compile_prog "" "" ; then
4678 setns=yes
4679fi
4680
38860a03
AM
4681# clock_adjtime probe
4682clock_adjtime=no
4683cat > $TMPC <<EOF
4684#include <time.h>
4685
4686int main(void)
4687{
4688 return clock_adjtime(0, 0);
4689}
4690EOF
4691clock_adjtime=no
4692if compile_prog "" "" ; then
4693 clock_adjtime=yes
4694fi
4695
5a03cd00
AM
4696# syncfs probe
4697syncfs=no
4698cat > $TMPC <<EOF
4699#include <unistd.h>
4700
4701int main(void)
4702{
4703 return syncfs(0);
4704}
4705EOF
4706syncfs=no
4707if compile_prog "" "" ; then
4708 syncfs=yes
4709fi
4710
5f71eac0
PM
4711# Check we have a new enough version of sphinx-build
4712has_sphinx_build() {
4713 # This is a bit awkward but works: create a trivial document and
4714 # try to run it with our configuration file (which enforces a
4715 # version requirement). This will fail if either
4716 # sphinx-build doesn't exist at all or if it is too old.
4717 mkdir -p "$TMPDIR1/sphinx"
4718 touch "$TMPDIR1/sphinx/index.rst"
4719 sphinx-build -c "$source_path/docs" -b html "$TMPDIR1/sphinx" "$TMPDIR1/sphinx/out" >/dev/null 2>&1
4720}
4721
cc8ae6de 4722# Check if tools are available to build documentation.
a25dba17 4723if test "$docs" != "no" ; then
5f71eac0 4724 if has makeinfo && has pod2man && has_sphinx_build; then
a25dba17 4725 docs=yes
83a3ab8b 4726 else
a25dba17 4727 if test "$docs" = "yes" ; then
5f71eac0 4728 feature_not_found "docs" "Install texinfo, Perl/perl-podlators and python-sphinx"
83a3ab8b 4729 fi
a25dba17 4730 docs=no
83a3ab8b 4731 fi
cc8ae6de
PB
4732fi
4733
f514f41c 4734# Search for bswap_32 function
6ae9a1f4
JQ
4735byteswap_h=no
4736cat > $TMPC << EOF
4737#include <byteswap.h>
4738int main(void) { return bswap_32(0); }
4739EOF
52166aa0 4740if compile_prog "" "" ; then
6ae9a1f4
JQ
4741 byteswap_h=yes
4742fi
4743
75f13596 4744# Search for bswap32 function
6ae9a1f4
JQ
4745bswap_h=no
4746cat > $TMPC << EOF
4747#include <sys/endian.h>
4748#include <sys/types.h>
4749#include <machine/bswap.h>
4750int main(void) { return bswap32(0); }
4751EOF
52166aa0 4752if compile_prog "" "" ; then
6ae9a1f4
JQ
4753 bswap_h=yes
4754fi
4755
c589b249 4756##########################################
e49ab19f 4757# Do we have libiscsi >= 1.9.0
c589b249 4758if test "$libiscsi" != "no" ; then
e49ab19f 4759 if $pkg_config --atleast-version=1.9.0 libiscsi; then
3c33ea96 4760 libiscsi="yes"
ca871ec8
SW
4761 libiscsi_cflags=$($pkg_config --cflags libiscsi)
4762 libiscsi_libs=$($pkg_config --libs libiscsi)
c589b249
RS
4763 else
4764 if test "$libiscsi" = "yes" ; then
e49ab19f 4765 feature_not_found "libiscsi" "Install libiscsi >= 1.9.0"
c589b249
RS
4766 fi
4767 libiscsi="no"
4768 fi
4769fi
4770
8bacde8d
NC
4771##########################################
4772# Do we need libm
4773cat > $TMPC << EOF
4774#include <math.h>
f80ea986 4775int main(int argc, char **argv) { return isnan(sin((double)argc)); }
8bacde8d
NC
4776EOF
4777if compile_prog "" "" ; then
4778 :
4779elif compile_prog "" "-lm" ; then
4780 LIBS="-lm $LIBS"
4781 libs_qga="-lm $libs_qga"
4782else
76ad07a4 4783 error_exit "libm check failed"
8bacde8d
NC
4784fi
4785
da93a1fd
AL
4786##########################################
4787# Do we need librt
8bacde8d
NC
4788# uClibc provides 2 versions of clock_gettime(), one with realtime
4789# support and one without. This means that the clock_gettime() don't
4790# need -lrt. We still need it for timer_create() so we check for this
4791# function in addition.
da93a1fd
AL
4792cat > $TMPC <<EOF
4793#include <signal.h>
4794#include <time.h>
8bacde8d
NC
4795int main(void) {
4796 timer_create(CLOCK_REALTIME, NULL, NULL);
4797 return clock_gettime(CLOCK_REALTIME, NULL);
4798}
da93a1fd
AL
4799EOF
4800
52166aa0 4801if compile_prog "" "" ; then
07ffa4bd 4802 :
8bacde8d 4803# we need pthread for static linking. use previous pthread test result
18e588b1
RL
4804elif compile_prog "" "$pthread_lib -lrt" ; then
4805 LIBS="$LIBS -lrt"
4806 libs_qga="$libs_qga -lrt"
da93a1fd
AL
4807fi
4808
d99e97e6
TH
4809# Check whether we need to link libutil for openpty()
4810cat > $TMPC << EOF
4811extern int openpty(int *am, int *as, char *name, void *termp, void *winp);
4812int main(void) { return openpty(0, 0, 0, 0, 0); }
4813EOF
4814
4815if ! compile_prog "" "" ; then
4816 if compile_prog "" "-lutil" ; then
6362a53f 4817 libs_softmmu="-lutil $libs_softmmu"
d99e97e6
TH
4818 libs_tools="-lutil $libs_tools"
4819 fi
6362a53f
JQ
4820fi
4821
de5071c5 4822##########################################
cd4ec0b4
GH
4823# spice probe
4824if test "$spice" != "no" ; then
4825 cat > $TMPC << EOF
4826#include <spice.h>
4827int main(void) { spice_server_new(); return 0; }
4828EOF
710fc4f5
JD
4829 spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
4830 spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
1b63665c 4831 if $pkg_config --atleast-version=0.12.5 spice-server && \
65d5d3f9 4832 $pkg_config --atleast-version=0.12.3 spice-protocol && \
cd4ec0b4
GH
4833 compile_prog "$spice_cflags" "$spice_libs" ; then
4834 spice="yes"
4835 libs_softmmu="$libs_softmmu $spice_libs"
4836 QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags"
2e0e3c39
AL
4837 spice_protocol_version=$($pkg_config --modversion spice-protocol)
4838 spice_server_version=$($pkg_config --modversion spice-server)
cd4ec0b4
GH
4839 else
4840 if test "$spice" = "yes" ; then
8efc9363 4841 feature_not_found "spice" \
1b63665c 4842 "Install spice-server(>=0.12.5) and spice-protocol(>=0.12.3) devel"
cd4ec0b4
GH
4843 fi
4844 spice="no"
4845 fi
4846fi
4847
7b02f544 4848# check for smartcard support
7b02f544 4849if test "$smartcard" != "no"; then
0f5c642d 4850 if $pkg_config --atleast-version=2.5.1 libcacard; then
7b02f544
MAL
4851 libcacard_cflags=$($pkg_config --cflags libcacard)
4852 libcacard_libs=$($pkg_config --libs libcacard)
7b02f544 4853 smartcard="yes"
afd347ab 4854 else
7b02f544
MAL
4855 if test "$smartcard" = "yes"; then
4856 feature_not_found "smartcard" "Install libcacard devel"
111a38b0 4857 fi
7b02f544 4858 smartcard="no"
111a38b0
RR
4859 fi
4860fi
111a38b0 4861
2b2325ff
GH
4862# check for libusb
4863if test "$libusb" != "no" ; then
65d5d3f9 4864 if $pkg_config --atleast-version=1.0.13 libusb-1.0; then
2b2325ff 4865 libusb="yes"
ca871ec8
SW
4866 libusb_cflags=$($pkg_config --cflags libusb-1.0)
4867 libusb_libs=$($pkg_config --libs libusb-1.0)
2b2325ff
GH
4868 else
4869 if test "$libusb" = "yes"; then
8efc9363 4870 feature_not_found "libusb" "Install libusb devel >= 1.0.13"
2b2325ff
GH
4871 fi
4872 libusb="no"
4873 fi
4874fi
4875
69354a83
HG
4876# check for usbredirparser for usb network redirection support
4877if test "$usb_redir" != "no" ; then
65d5d3f9 4878 if $pkg_config --atleast-version=0.6 libusbredirparser-0.5; then
69354a83 4879 usb_redir="yes"
ca871ec8
SW
4880 usb_redir_cflags=$($pkg_config --cflags libusbredirparser-0.5)
4881 usb_redir_libs=$($pkg_config --libs libusbredirparser-0.5)
69354a83
HG
4882 else
4883 if test "$usb_redir" = "yes"; then
21684af0 4884 feature_not_found "usb-redir" "Install usbredir devel"
69354a83
HG
4885 fi
4886 usb_redir="no"
4887 fi
4888fi
4889
d9840e25
TS
4890##########################################
4891# check if we have VSS SDK headers for win
4892
e633a5c6
EB
4893if test "$mingw32" = "yes" && test "$guest_agent" != "no" && \
4894 test "$vss_win32_sdk" != "no" ; then
d9840e25 4895 case "$vss_win32_sdk" in
690604f6 4896 "") vss_win32_include="-isystem $source_path" ;;
d9840e25
TS
4897 *\ *) # The SDK is installed in "Program Files" by default, but we cannot
4898 # handle path with spaces. So we symlink the headers into ".sdk/vss".
690604f6 4899 vss_win32_include="-isystem $source_path/.sdk/vss"
d9840e25
TS
4900 symlink "$vss_win32_sdk/inc" "$source_path/.sdk/vss/inc"
4901 ;;
690604f6 4902 *) vss_win32_include="-isystem $vss_win32_sdk"
d9840e25
TS
4903 esac
4904 cat > $TMPC << EOF
4905#define __MIDL_user_allocate_free_DEFINED__
4906#include <inc/win2003/vss.h>
4907int main(void) { return VSS_CTX_BACKUP; }
4908EOF
4909 if compile_prog "$vss_win32_include" "" ; then
4910 guest_agent_with_vss="yes"
4911 QEMU_CFLAGS="$QEMU_CFLAGS $vss_win32_include"
315d3184 4912 libs_qga="-lole32 -loleaut32 -lshlwapi -lstdc++ -Wl,--enable-stdcall-fixup $libs_qga"
f33ca81f 4913 qga_vss_provider="qga/vss-win32/qga-vss.dll qga/vss-win32/qga-vss.tlb"
d9840e25
TS
4914 else
4915 if test "$vss_win32_sdk" != "" ; then
4916 echo "ERROR: Please download and install Microsoft VSS SDK:"
4917 echo "ERROR: http://www.microsoft.com/en-us/download/details.aspx?id=23490"
4918 echo "ERROR: On POSIX-systems, you can extract the SDK headers by:"
4919 echo "ERROR: scripts/extract-vsssdk-headers setup.exe"
4920 echo "ERROR: The headers are extracted in the directory \`inc'."
4921 feature_not_found "VSS support"
4922 fi
4923 guest_agent_with_vss="no"
4924 fi
4925fi
4926
4927##########################################
4928# lookup Windows platform SDK (if not specified)
4929# The SDK is needed only to build .tlb (type library) file of guest agent
4930# VSS provider from the source. It is usually unnecessary because the
4931# pre-compiled .tlb file is included.
4932
e633a5c6
EB
4933if test "$mingw32" = "yes" && test "$guest_agent" != "no" && \
4934 test "$guest_agent_with_vss" = "yes" ; then
d9840e25
TS
4935 if test -z "$win_sdk"; then
4936 programfiles="$PROGRAMFILES"
4937 test -n "$PROGRAMW6432" && programfiles="$PROGRAMW6432"
4938 if test -n "$programfiles"; then
4939 win_sdk=$(ls -d "$programfiles/Microsoft SDKs/Windows/v"* | tail -1) 2>/dev/null
4940 else
4941 feature_not_found "Windows SDK"
4942 fi
4943 elif test "$win_sdk" = "no"; then
4944 win_sdk=""
4945 fi
4946fi
4947
50cbebb9
MR
4948##########################################
4949# check if mingw environment provides a recent ntddscsi.h
e633a5c6 4950if test "$mingw32" = "yes" && test "$guest_agent" != "no"; then
50cbebb9
MR
4951 cat > $TMPC << EOF
4952#include <windows.h>
4953#include <ntddscsi.h>
4954int main(void) {
4955#if !defined(IOCTL_SCSI_GET_ADDRESS)
4956#error Missing required ioctl definitions
4957#endif
4958 SCSI_ADDRESS addr = { .Lun = 0, .TargetId = 0, .PathId = 0 };
4959 return addr.Lun;
4960}
4961EOF
4962 if compile_prog "" "" ; then
4963 guest_agent_ntddscsi=yes
996b9cdc 4964 libs_qga="-lsetupapi -lcfgmgr32 $libs_qga"
50cbebb9
MR
4965 fi
4966fi
4967
9d9e1521
GH
4968##########################################
4969# virgl renderer probe
4970
4971if test "$virglrenderer" != "no" ; then
4972 cat > $TMPC << EOF
4973#include <virglrenderer.h>
4974int main(void) { virgl_renderer_poll(); return 0; }
4975EOF
4976 virgl_cflags=$($pkg_config --cflags virglrenderer 2>/dev/null)
4977 virgl_libs=$($pkg_config --libs virglrenderer 2>/dev/null)
47479c55 4978 virgl_version=$($pkg_config --modversion virglrenderer 2>/dev/null)
9d9e1521
GH
4979 if $pkg_config virglrenderer >/dev/null 2>&1 && \
4980 compile_prog "$virgl_cflags" "$virgl_libs" ; then
4981 virglrenderer="yes"
4982 else
4983 if test "$virglrenderer" = "yes" ; then
4984 feature_not_found "virglrenderer"
4985 fi
4986 virglrenderer="no"
4987 fi
4988fi
4989
8ca80760
RH
4990##########################################
4991# capstone
4992
e219c499
RH
4993case "$capstone" in
4994 "" | yes)
4995 if $pkg_config capstone; then
4996 capstone=system
e633a5c6 4997 elif test -e "${source_path}/.git" && test $git_update = 'yes' ; then
e219c499
RH
4998 capstone=git
4999 elif test -e "${source_path}/capstone/Makefile" ; then
5000 capstone=internal
5001 elif test -z "$capstone" ; then
5002 capstone=no
5003 else
5004 feature_not_found "capstone" "Install capstone devel or git submodule"
5005 fi
5006 ;;
5007
5008 system)
5009 if ! $pkg_config capstone; then
5010 feature_not_found "capstone" "Install capstone devel"
5011 fi
5012 ;;
5013esac
5014
5015case "$capstone" in
5016 git | internal)
5017 if test "$capstone" = git; then
5018 git_submodules="${git_submodules} capstone"
5019 fi
5020 mkdir -p capstone
5021 QEMU_CFLAGS="$QEMU_CFLAGS -I\$(SRC_PATH)/capstone/include"
5022 if test "$mingw32" = "yes"; then
5023 LIBCAPSTONE=capstone.lib
5024 else
5025 LIBCAPSTONE=libcapstone.a
5026 fi
5027 LIBS="-L\$(BUILD_DIR)/capstone -lcapstone $LIBS"
5028 ;;
5029
5030 system)
8ca80760
RH
5031 QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags capstone)"
5032 LIBS="$($pkg_config --libs capstone) $LIBS"
e219c499
RH
5033 ;;
5034
5035 no)
5036 ;;
5037 *)
5038 error_exit "Unknown state for capstone: $capstone"
5039 ;;
5040esac
8ca80760 5041
5f6b9e8f
BS
5042##########################################
5043# check if we have fdatasync
5044
5045fdatasync=no
5046cat > $TMPC << EOF
5047#include <unistd.h>
d1722a27
AR
5048int main(void) {
5049#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
5050return fdatasync(0);
5051#else
e172fe11 5052#error Not supported
d1722a27
AR
5053#endif
5054}
5f6b9e8f
BS
5055EOF
5056if compile_prog "" "" ; then
5057 fdatasync=yes
5058fi
5059
e78815a5
AF
5060##########################################
5061# check if we have madvise
5062
5063madvise=no
5064cat > $TMPC << EOF
5065#include <sys/types.h>
5066#include <sys/mman.h>
832ce9c2 5067#include <stddef.h>
e78815a5
AF
5068int main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
5069EOF
5070if compile_prog "" "" ; then
5071 madvise=yes
5072fi
5073
5074##########################################
5075# check if we have posix_madvise
5076
5077posix_madvise=no
5078cat > $TMPC << EOF
5079#include <sys/mman.h>
832ce9c2 5080#include <stddef.h>
e78815a5
AF
5081int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
5082EOF
5083if compile_prog "" "" ; then
5084 posix_madvise=yes
5085fi
5086
9bc5a719
AG
5087##########################################
5088# check if we have posix_memalign()
5089
5090posix_memalign=no
5091cat > $TMPC << EOF
5092#include <stdlib.h>
5093int main(void) {
5094 void *p;
5095 return posix_memalign(&p, 8, 8);
5096}
5097EOF
5098if compile_prog "" "" ; then
5099 posix_memalign=yes
5100fi
5101
0a852417
PD
5102##########################################
5103# check if we have posix_syslog
5104
5105posix_syslog=no
5106cat > $TMPC << EOF
5107#include <syslog.h>
5108int main(void) { openlog("qemu", LOG_PID, LOG_DAEMON); syslog(LOG_INFO, "configure"); return 0; }
5109EOF
5110if compile_prog "" "" ; then
5111 posix_syslog=yes
5112fi
5113
401bc051
PM
5114##########################################
5115# check if we have sem_timedwait
5116
5117sem_timedwait=no
5118cat > $TMPC << EOF
5119#include <semaphore.h>
5120int main(void) { return sem_timedwait(0, 0); }
5121EOF
5122if compile_prog "" "" ; then
5123 sem_timedwait=yes
5124fi
5125
5c99fa37
KF
5126##########################################
5127# check if we have strchrnul
5128
5129strchrnul=no
5130cat > $TMPC << EOF
5131#include <string.h>
5132int main(void);
5133// Use a haystack that the compiler shouldn't be able to constant fold
5134char *haystack = (char*)&main;
5135int main(void) { return strchrnul(haystack, 'x') != &haystack[6]; }
5136EOF
5137if compile_prog "" "" ; then
5138 strchrnul=yes
5139fi
5140
94a420b1
SH
5141##########################################
5142# check if trace backend exists
5143
5b808275 5144$python "$source_path/scripts/tracetool.py" "--backends=$trace_backends" --check-backends > /dev/null 2> /dev/null
94a420b1 5145if test "$?" -ne 0 ; then
5b808275
LV
5146 error_exit "invalid trace backends" \
5147 "Please choose supported trace backends."
94a420b1
SH
5148fi
5149
7e24e92a
SH
5150##########################################
5151# For 'ust' backend, test if ust headers are present
5b808275 5152if have_backend "ust"; then
7e24e92a 5153 cat > $TMPC << EOF
bf15f63c 5154#include <lttng/tracepoint.h>
7e24e92a
SH
5155int main(void) { return 0; }
5156EOF
c79ed23d 5157 if compile_prog "" "-Wl,--no-as-needed -ldl" ; then
bf15f63c 5158 if $pkg_config lttng-ust --exists; then
89138857 5159 lttng_ust_libs=$($pkg_config --libs lttng-ust)
bf15f63c 5160 else
c79ed23d 5161 lttng_ust_libs="-llttng-ust -ldl"
bf15f63c
MG
5162 fi
5163 if $pkg_config liburcu-bp --exists; then
89138857 5164 urcu_bp_libs=$($pkg_config --libs liburcu-bp)
bf15f63c
MG
5165 else
5166 urcu_bp_libs="-lurcu-bp"
5167 fi
5168
5169 LIBS="$lttng_ust_libs $urcu_bp_libs $LIBS"
5170 libs_qga="$lttng_ust_libs $urcu_bp_libs $libs_qga"
7e24e92a 5171 else
bf15f63c 5172 error_exit "Trace backend 'ust' missing lttng-ust header files"
7e24e92a
SH
5173 fi
5174fi
b3d08c02
DB
5175
5176##########################################
5177# For 'dtrace' backend, test if 'dtrace' command is present
5b808275 5178if have_backend "dtrace"; then
b3d08c02 5179 if ! has 'dtrace' ; then
76ad07a4 5180 error_exit "dtrace command is not found in PATH $PATH"
b3d08c02 5181 fi
c276b17d
DB
5182 trace_backend_stap="no"
5183 if has 'stap' ; then
5184 trace_backend_stap="yes"
5185 fi
b3d08c02
DB
5186fi
5187
023367e6 5188##########################################
519175a2 5189# check and set a backend for coroutine
d0e2fce5 5190
7c2acc70 5191# We prefer ucontext, but it's not always possible. The fallback
33c53c54
DB
5192# is sigcontext. On Windows the only valid backend is the Windows
5193# specific one.
7c2acc70
PM
5194
5195ucontext_works=no
5196if test "$darwin" != "yes"; then
5197 cat > $TMPC << EOF
d0e2fce5 5198#include <ucontext.h>
cdf84806
PM
5199#ifdef __stub_makecontext
5200#error Ignoring glibc stub makecontext which will always fail
5201#endif
75cafad7 5202int main(void) { makecontext(0, 0, 0); return 0; }
d0e2fce5 5203EOF
7c2acc70
PM
5204 if compile_prog "" "" ; then
5205 ucontext_works=yes
5206 fi
5207fi
5208
5209if test "$coroutine" = ""; then
5210 if test "$mingw32" = "yes"; then
5211 coroutine=win32
5212 elif test "$ucontext_works" = "yes"; then
5213 coroutine=ucontext
5214 else
5215 coroutine=sigaltstack
d0e2fce5 5216 fi
519175a2 5217else
7c2acc70
PM
5218 case $coroutine in
5219 windows)
5220 if test "$mingw32" != "yes"; then
5221 error_exit "'windows' coroutine backend only valid for Windows"
5222 fi
5223 # Unfortunately the user visible backend name doesn't match the
5224 # coroutine-*.c filename for this case, so we have to adjust it here.
5225 coroutine=win32
5226 ;;
5227 ucontext)
5228 if test "$ucontext_works" != "yes"; then
5229 feature_not_found "ucontext"
5230 fi
5231 ;;
33c53c54 5232 sigaltstack)
7c2acc70
PM
5233 if test "$mingw32" = "yes"; then
5234 error_exit "only the 'windows' coroutine backend is valid for Windows"
5235 fi
5236 ;;
5237 *)
5238 error_exit "unknown coroutine backend $coroutine"
5239 ;;
5240 esac
d0e2fce5
AK
5241fi
5242
70c60c08 5243if test "$coroutine_pool" = ""; then
33c53c54 5244 coroutine_pool=yes
70c60c08
SH
5245fi
5246
7d992e4d 5247if test "$debug_stack_usage" = "yes"; then
7d992e4d
PL
5248 if test "$coroutine_pool" = "yes"; then
5249 echo "WARN: disabling coroutine pool for stack usage debugging"
5250 coroutine_pool=no
5251 fi
5252fi
5253
5254
d2042378
AK
5255##########################################
5256# check if we have open_by_handle_at
5257
4e1797f9 5258open_by_handle_at=no
d2042378
AK
5259cat > $TMPC << EOF
5260#include <fcntl.h>
acc55ba8
SW
5261#if !defined(AT_EMPTY_PATH)
5262# error missing definition
5263#else
75cafad7 5264int main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); }
acc55ba8 5265#endif
d2042378
AK
5266EOF
5267if compile_prog "" "" ; then
5268 open_by_handle_at=yes
5269fi
5270
e06a765e
HPB
5271########################################
5272# check if we have linux/magic.h
5273
5274linux_magic_h=no
5275cat > $TMPC << EOF
5276#include <linux/magic.h>
5277int main(void) {
75cafad7 5278 return 0;
e06a765e
HPB
5279}
5280EOF
5281if compile_prog "" "" ; then
5282 linux_magic_h=yes
5283fi
5284
06d71fa1 5285########################################
c95e3080
KW
5286# check whether we can disable warning option with a pragma (this is needed
5287# to silence warnings in the headers of some versions of external libraries).
5288# This test has to be compiled with -Werror as otherwise an unknown pragma is
5289# only a warning.
5290#
5291# If we can't selectively disable warning in the code, disable -Werror so that
5292# the build doesn't fail anyway.
5293
06d71fa1
PM
5294pragma_disable_unused_but_set=no
5295cat > $TMPC << EOF
e6f53fd5 5296#pragma GCC diagnostic push
c95e3080 5297#pragma GCC diagnostic ignored "-Wstrict-prototypes"
e6f53fd5 5298#pragma GCC diagnostic pop
c95e3080 5299
06d71fa1
PM
5300int main(void) {
5301 return 0;
5302}
5303EOF
5304if compile_prog "-Werror" "" ; then
cc6e3ca9 5305 pragma_diagnostic_available=yes
c95e3080
KW
5306else
5307 werror=no
06d71fa1
PM
5308fi
5309
3f4349dc 5310########################################
541be927 5311# check if we have valgrind/valgrind.h
3f4349dc
KW
5312
5313valgrind_h=no
5314cat > $TMPC << EOF
5315#include <valgrind/valgrind.h>
3f4349dc 5316int main(void) {
3f4349dc
KW
5317 return 0;
5318}
5319EOF
5320if compile_prog "" "" ; then
5321 valgrind_h=yes
5322fi
5323
8ab1bf12
LC
5324########################################
5325# check if environ is declared
5326
5327has_environ=no
5328cat > $TMPC << EOF
5329#include <unistd.h>
5330int main(void) {
c075a723 5331 environ = 0;
8ab1bf12
LC
5332 return 0;
5333}
5334EOF
5335if compile_prog "" "" ; then
5336 has_environ=yes
5337fi
5338
76a347e1
RH
5339########################################
5340# check if cpuid.h is usable.
5341
76a347e1
RH
5342cat > $TMPC << EOF
5343#include <cpuid.h>
5344int main(void) {
774d566c
PM
5345 unsigned a, b, c, d;
5346 int max = __get_cpuid_max(0, 0);
5347
5348 if (max >= 1) {
5349 __cpuid(1, a, b, c, d);
5350 }
5351
5352 if (max >= 7) {
5353 __cpuid_count(7, 0, a, b, c, d);
5354 }
5355
5356 return 0;
76a347e1
RH
5357}
5358EOF
5359if compile_prog "" "" ; then
5360 cpuid_h=yes
5361fi
5362
5dd89908
RH
5363##########################################
5364# avx2 optimization requirement check
5365#
5366# There is no point enabling this if cpuid.h is not usable,
5367# since we won't be able to select the new routines.
5368
e633a5c6 5369if test "$cpuid_h" = "yes" && test "$avx2_opt" != "no"; then
5dd89908
RH
5370 cat > $TMPC << EOF
5371#pragma GCC push_options
5372#pragma GCC target("avx2")
5373#include <cpuid.h>
5374#include <immintrin.h>
5375static int bar(void *a) {
5376 __m256i x = *(__m256i *)a;
5377 return _mm256_testz_si256(x, x);
5378}
5379int main(int argc, char *argv[]) { return bar(argv[0]); }
5380EOF
5381 if compile_object "" ; then
5382 avx2_opt="yes"
86583a07
LM
5383 else
5384 avx2_opt="no"
5dd89908
RH
5385 fi
5386fi
5387
f540166b
RH
5388########################################
5389# check if __[u]int128_t is usable.
5390
5391int128=no
5392cat > $TMPC << EOF
5393__int128_t a;
5394__uint128_t b;
5395int main (void) {
5396 a = a + b;
5397 b = a * b;
464e3671 5398 a = a * a;
f540166b
RH
5399 return 0;
5400}
5401EOF
5402if compile_prog "" "" ; then
5403 int128=yes
5404fi
76a347e1 5405
7ebee43e
RH
5406#########################################
5407# See if 128-bit atomic operations are supported.
5408
5409atomic128=no
5410if test "$int128" = "yes"; then
5411 cat > $TMPC << EOF
5412int main(void)
5413{
5414 unsigned __int128 x = 0, y = 0;
5415 y = __atomic_load_16(&x, 0);
5416 __atomic_store_16(&x, y, 0);
5417 __atomic_compare_exchange_16(&x, &y, x, 0, 0, 0);
5418 return 0;
5419}
5420EOF
5421 if compile_prog "" "" ; then
5422 atomic128=yes
5423 fi
5424fi
5425
e6cd4bb5 5426cmpxchg128=no
e633a5c6 5427if test "$int128" = yes && test "$atomic128" = no; then
e6cd4bb5
RH
5428 cat > $TMPC << EOF
5429int main(void)
5430{
5431 unsigned __int128 x = 0, y = 0;
5432 __sync_val_compare_and_swap_16(&x, y, x);
5433 return 0;
5434}
5435EOF
5436 if compile_prog "" "" ; then
5437 cmpxchg128=yes
5438 fi
5439fi
5440
df79b996
RH
5441#########################################
5442# See if 64-bit atomic operations are supported.
5443# Note that without __atomic builtins, we can only
5444# assume atomic loads/stores max at pointer size.
5445
5446cat > $TMPC << EOF
5447#include <stdint.h>
5448int main(void)
5449{
5450 uint64_t x = 0, y = 0;
5451#ifdef __ATOMIC_RELAXED
5452 y = __atomic_load_8(&x, 0);
5453 __atomic_store_8(&x, y, 0);
5454 __atomic_compare_exchange_8(&x, &y, x, 0, 0, 0);
5455 __atomic_exchange_8(&x, y, 0);
5456 __atomic_fetch_add_8(&x, y, 0);
5457#else
5458 typedef char is_host64[sizeof(void *) >= sizeof(uint64_t) ? 1 : -1];
5459 __sync_lock_test_and_set(&x, y);
5460 __sync_val_compare_and_swap(&x, y, 0);
5461 __sync_fetch_and_add(&x, y);
5462#endif
5463 return 0;
5464}
5465EOF
5466if compile_prog "" "" ; then
5467 atomic64=yes
5468fi
5469
db432672
RH
5470########################################
5471# See if 16-byte vector operations are supported.
5472# Even without a vector unit the compiler may expand these.
5473# There is a bug in old GCC for PPC that crashes here.
5474# Unfortunately it's the system compiler for Centos 7.
5475
5476cat > $TMPC << EOF
5477typedef unsigned char U1 __attribute__((vector_size(16)));
5478typedef unsigned short U2 __attribute__((vector_size(16)));
5479typedef unsigned int U4 __attribute__((vector_size(16)));
5480typedef unsigned long long U8 __attribute__((vector_size(16)));
5481typedef signed char S1 __attribute__((vector_size(16)));
5482typedef signed short S2 __attribute__((vector_size(16)));
5483typedef signed int S4 __attribute__((vector_size(16)));
5484typedef signed long long S8 __attribute__((vector_size(16)));
5485static U1 a1, b1;
5486static U2 a2, b2;
5487static U4 a4, b4;
5488static U8 a8, b8;
5489static S1 c1;
5490static S2 c2;
5491static S4 c4;
5492static S8 c8;
5493static int i;
74912f6d
LV
5494void helper(void *d, void *a, int shift, int i);
5495void helper(void *d, void *a, int shift, int i)
5496{
5497 *(U1 *)(d + i) = *(U1 *)(a + i) << shift;
5498 *(U2 *)(d + i) = *(U2 *)(a + i) << shift;
5499 *(U4 *)(d + i) = *(U4 *)(a + i) << shift;
5500 *(U8 *)(d + i) = *(U8 *)(a + i) << shift;
5501}
db432672
RH
5502int main(void)
5503{
5504 a1 += b1; a2 += b2; a4 += b4; a8 += b8;
5505 a1 -= b1; a2 -= b2; a4 -= b4; a8 -= b8;
5506 a1 *= b1; a2 *= b2; a4 *= b4; a8 *= b8;
5507 a1 &= b1; a2 &= b2; a4 &= b4; a8 &= b8;
5508 a1 |= b1; a2 |= b2; a4 |= b4; a8 |= b8;
5509 a1 ^= b1; a2 ^= b2; a4 ^= b4; a8 ^= b8;
5510 a1 <<= i; a2 <<= i; a4 <<= i; a8 <<= i;
5511 a1 >>= i; a2 >>= i; a4 >>= i; a8 >>= i;
5512 c1 >>= i; c2 >>= i; c4 >>= i; c8 >>= i;
5513 return 0;
5514}
5515EOF
5516
5517vector16=no
5518if compile_prog "" "" ; then
5519 vector16=yes
5520fi
5521
1e6e9aca
RH
5522########################################
5523# check if getauxval is available.
5524
5525getauxval=no
5526cat > $TMPC << EOF
5527#include <sys/auxv.h>
5528int main(void) {
5529 return getauxval(AT_HWCAP) == 0;
5530}
5531EOF
5532if compile_prog "" "" ; then
5533 getauxval=yes
5534fi
5535
fd0e6053
JS
5536########################################
5537# check if ccache is interfering with
5538# semantic analysis of macros
5539
5e4dfd3d 5540unset CCACHE_CPP2
fd0e6053
JS
5541ccache_cpp2=no
5542cat > $TMPC << EOF
5543static const int Z = 1;
5544#define fn() ({ Z; })
5545#define TAUT(X) ((X) == Z)
5546#define PAREN(X, Y) (X == Y)
5547#define ID(X) (X)
5548int main(int argc, char *argv[])
5549{
5550 int x = 0, y = 0;
5551 x = ID(x);
5552 x = fn();
5553 fn();
5554 if (PAREN(x, y)) return 0;
5555 if (TAUT(Z)) return 0;
5556 return 0;
5557}
5558EOF
5559
5560if ! compile_object "-Werror"; then
5561 ccache_cpp2=yes
5562fi
5563
b553a042
JS
5564#################################################
5565# clang does not support glibc + FORTIFY_SOURCE.
5566
5567if test "$fortify_source" != "no"; then
5568 if echo | $cc -dM -E - | grep __clang__ > /dev/null 2>&1 ; then
5569 fortify_source="no";
e189091f 5570 elif test -n "$cxx" && has $cxx &&
cfcc7c14 5571 echo | $cxx -dM -E - | grep __clang__ >/dev/null 2>&1 ; then
b553a042
JS
5572 fortify_source="no";
5573 else
5574 fortify_source="yes"
5575 fi
5576fi
5577
1efad060
FZ
5578###############################################
5579# Check if copy_file_range is provided by glibc
5580have_copy_file_range=no
5581cat > $TMPC << EOF
5582#include <unistd.h>
5583int main(void) {
5584 copy_file_range(0, NULL, 0, NULL, 0, 0);
5585 return 0;
5586}
5587EOF
5588if compile_prog "" "" ; then
5589 have_copy_file_range=yes
5590fi
5591
277abf15
JV
5592##########################################
5593# check if struct fsxattr is available via linux/fs.h
5594
5595have_fsxattr=no
5596cat > $TMPC << EOF
5597#include <linux/fs.h>
5598struct fsxattr foo;
5599int main(void) {
5600 return 0;
5601}
5602EOF
5603if compile_prog "" "" ; then
5604 have_fsxattr=yes
5605fi
5606
a40161cb
PB
5607##########################################
5608# check for usable membarrier system call
5609if test "$membarrier" = "yes"; then
5610 have_membarrier=no
5611 if test "$mingw32" = "yes" ; then
5612 have_membarrier=yes
5613 elif test "$linux" = "yes" ; then
5614 cat > $TMPC << EOF
5615 #include <linux/membarrier.h>
5616 #include <sys/syscall.h>
5617 #include <unistd.h>
5618 #include <stdlib.h>
5619 int main(void) {
5620 syscall(__NR_membarrier, MEMBARRIER_CMD_QUERY, 0);
5621 syscall(__NR_membarrier, MEMBARRIER_CMD_SHARED, 0);
5622 exit(0);
5623 }
5624EOF
5625 if compile_prog "" "" ; then
5626 have_membarrier=yes
5627 fi
5628 fi
5629 if test "$have_membarrier" = "no"; then
5630 feature_not_found "membarrier" "membarrier system call not available"
5631 fi
5632else
5633 # Do not enable it by default even for Mingw32, because it doesn't
5634 # work on Wine.
5635 membarrier=no
5636fi
5637
b66e10e4
PM
5638##########################################
5639# check if rtnetlink.h exists and is useful
575b22b1
LV
5640have_rtnetlink=no
5641cat > $TMPC << EOF
5642#include <linux/rtnetlink.h>
5643int main(void) {
5644 return IFLA_PROTO_DOWN;
5645}
5646EOF
5647if compile_prog "" "" ; then
5648 have_rtnetlink=yes
5649fi
5650
6a02c806
SH
5651##########################################
5652# check for usable AF_VSOCK environment
5653have_af_vsock=no
5654cat > $TMPC << EOF
5655#include <errno.h>
5656#include <sys/types.h>
5657#include <sys/socket.h>
5658#if !defined(AF_VSOCK)
5659# error missing AF_VSOCK flag
5660#endif
5661#include <linux/vm_sockets.h>
5662int main(void) {
5663 int sock, ret;
5664 struct sockaddr_vm svm;
5665 socklen_t len = sizeof(svm);
5666 sock = socket(AF_VSOCK, SOCK_STREAM, 0);
5667 ret = getpeername(sock, (struct sockaddr *)&svm, &len);
5668 if ((ret == -1) && (errno == ENOTCONN)) {
5669 return 0;
5670 }
5671 return -1;
5672}
5673EOF
5674if compile_prog "" "" ; then
5675 have_af_vsock=yes
5676fi
5677
f0d92b56
LM
5678##########################################
5679# check for usable AF_ALG environment
5680hava_afalg=no
5681cat > $TMPC << EOF
5682#include <errno.h>
5683#include <sys/types.h>
5684#include <sys/socket.h>
5685#include <linux/if_alg.h>
5686int main(void) {
5687 int sock;
5688 sock = socket(AF_ALG, SOCK_SEQPACKET, 0);
5689 return sock;
5690}
5691EOF
5692if compile_prog "" "" ; then
5693 have_afalg=yes
5694fi
5695if test "$crypto_afalg" = "yes"
5696then
5697 if test "$have_afalg" != "yes"
5698 then
5699 error_exit "AF_ALG requested but could not be detected"
5700 fi
5701fi
5702
5703
c97d6d2c
SAGDR
5704#################################################
5705# Check to see if we have the Hypervisor framework
d2d08522 5706if [ "$darwin" = "yes" ] ; then
c97d6d2c
SAGDR
5707 cat > $TMPC << EOF
5708#include <Hypervisor/hv.h>
5709int main() { return 0;}
5710EOF
5711 if ! compile_object ""; then
5712 hvf='no'
5713 else
5714 hvf='yes'
5715 LDFLAGS="-framework Hypervisor $LDFLAGS"
5716 fi
5717fi
5718
6969ec6c
JC
5719#################################################
5720# Sparc implicitly links with --relax, which is
5721# incompatible with -r, so --no-relax should be
5722# given. It does no harm to give it on other
5723# platforms too.
5724
5725# Note: the prototype is needed since QEMU_CFLAGS
5726# contains -Wmissing-prototypes
5727cat > $TMPC << EOF
5728extern int foo(void);
5729int foo(void) { return 0; }
5730EOF
5731if ! compile_object ""; then
5732 error_exit "Failed to compile object file for LD_REL_FLAGS test"
5733fi
7ecf44a5
PB
5734for i in '-Wl,-r -Wl,--no-relax' -Wl,-r -r; do
5735 if do_cc -nostdlib $i -o $TMPMO $TMPO; then
5736 LD_REL_FLAGS=$i
5737 break
5738 fi
5739done
5740if test "$modules" = "yes" && test "$LD_REL_FLAGS" = ""; then
5741 feature_not_found "modules" "Cannot find how to build relocatable objects"
6969ec6c
JC
5742fi
5743
4d04351f
CC
5744##########################################
5745# check for sysmacros.h
5746
5747have_sysmacros=no
5748cat > $TMPC << EOF
5749#include <sys/sysmacros.h>
5750int main(void) {
5751 return makedev(0, 0);
5752}
5753EOF
5754if compile_prog "" "" ; then
5755 have_sysmacros=yes
5756fi
5757
da92c3ff
AM
5758##########################################
5759# Veritas HyperScale block driver VxHS
5760# Check if libvxhs is installed
5761
5762if test "$vxhs" != "no" ; then
5763 cat > $TMPC <<EOF
5764#include <stdint.h>
5765#include <qnio/qnio_api.h>
5766
5767void *vxhs_callback;
5768
5769int main(void) {
5770 iio_init(QNIO_VERSION, vxhs_callback);
5771 return 0;
5772}
5773EOF
5774 vxhs_libs="-lvxhs -lssl"
5775 if compile_prog "" "$vxhs_libs" ; then
5776 vxhs=yes
5777 else
5778 if test "$vxhs" = "yes" ; then
5779 feature_not_found "vxhs block device" "Install libvxhs See github"
5780 fi
5781 vxhs=no
5782 fi
5783fi
5784
49e00a18
AG
5785##########################################
5786# check for _Static_assert()
5787
5788have_static_assert=no
5789cat > $TMPC << EOF
5790_Static_assert(1, "success");
5791int main(void) {
5792 return 0;
5793}
5794EOF
5795if compile_prog "" "" ; then
5796 have_static_assert=yes
5797fi
5798
e674605f
TG
5799##########################################
5800# check for utmpx.h, it is missing e.g. on OpenBSD
5801
5802have_utmpx=no
5803cat > $TMPC << EOF
5804#include <utmpx.h>
5805struct utmpx user_info;
5806int main(void) {
5807 return 0;
5808}
5809EOF
5810if compile_prog "" "" ; then
5811 have_utmpx=yes
5812fi
5813
247724cb
MAL
5814##########################################
5815# checks for sanitizers
5816
247724cb
MAL
5817have_asan=no
5818have_ubsan=no
d83414e1
MAL
5819have_asan_iface_h=no
5820have_asan_iface_fiber=no
247724cb
MAL
5821
5822if test "$sanitizers" = "yes" ; then
b9f44da2 5823 write_c_skeleton
247724cb
MAL
5824 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" ""; then
5825 have_asan=yes
5826 fi
b9f44da2
MAL
5827
5828 # we could use a simple skeleton for flags checks, but this also
5829 # detect the static linking issue of ubsan, see also:
5830 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84285
5831 cat > $TMPC << EOF
5832#include <stdlib.h>
5833int main(void) {
5834 void *tmp = malloc(10);
5835 return *(int *)(tmp + 2);
5836}
5837EOF
247724cb
MAL
5838 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=undefined" ""; then
5839 have_ubsan=yes
5840 fi
d83414e1
MAL
5841
5842 if check_include "sanitizer/asan_interface.h" ; then
5843 have_asan_iface_h=yes
5844 fi
5845
5846 cat > $TMPC << EOF
5847#include <sanitizer/asan_interface.h>
5848int main(void) {
5849 __sanitizer_start_switch_fiber(0, 0, 0);
5850 return 0;
5851}
5852EOF
5853 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" "" ; then
5854 have_asan_iface_fiber=yes
5855 fi
247724cb
MAL
5856fi
5857
51a12b51
AB
5858##########################################
5859# Docker and cross-compiler support
5860#
5861# This is specifically for building test
5862# cases for foreign architectures, not
5863# cross-compiling QEMU itself.
5864
5865if has "docker"; then
5866 docker=$($python $source_path/tests/docker/docker.py probe)
5867fi
5868
17824406
JH
5869##########################################
5870# check for libpmem
5871
5872if test "$libpmem" != "no"; then
5873 if $pkg_config --exists "libpmem"; then
5874 libpmem="yes"
5875 libpmem_libs=$($pkg_config --libs libpmem)
5876 libpmem_cflags=$($pkg_config --cflags libpmem)
5877 libs_softmmu="$libs_softmmu $libpmem_libs"
5878 QEMU_CFLAGS="$QEMU_CFLAGS $libpmem_cflags"
5879 else
5880 if test "$libpmem" = "yes" ; then
5881 feature_not_found "libpmem" "Install nvml or pmdk"
5882 fi
5883 libpmem="no"
5884 fi
5885fi
5886
675b9b53
MAL
5887##########################################
5888# check for slirp
5889
5890case "$slirp" in
5891 "" | yes)
5892 if $pkg_config slirp; then
5893 slirp=system
675b9b53
MAL
5894 elif test -e "${source_path}/slirp/Makefile" ; then
5895 slirp=internal
5896 elif test -z "$slirp" ; then
5897 slirp=no
5898 else
5899 feature_not_found "slirp" "Install slirp devel or git submodule"
5900 fi
5901 ;;
5902
5903 system)
5904 if ! $pkg_config slirp; then
5905 feature_not_found "slirp" "Install slirp devel"
5906 fi
5907 ;;
5908esac
5909
5910case "$slirp" in
1f773d9d 5911 internal)
675b9b53
MAL
5912 mkdir -p slirp
5913 slirp_cflags="-I\$(SRC_PATH)/slirp/src -I\$(BUILD_DIR)/slirp/src"
5914 slirp_libs="-L\$(BUILD_DIR)/slirp -lslirp"
5915 ;;
5916
5917 system)
5918 slirp_version=$($pkg_config --modversion slirp 2>/dev/null)
5919 slirp_cflags=$($pkg_config --cflags slirp 2>/dev/null)
5920 slirp_libs=$($pkg_config --libs slirp 2>/dev/null)
5921 ;;
5922
5923 no)
5924 ;;
5925 *)
5926 error_exit "Unknown state for slirp: $slirp"
5927 ;;
5928esac
5929
5930
7e24e92a 5931##########################################
e86ecd4b
JQ
5932# End of CC checks
5933# After here, no more $cc or $ld runs
5934
d83414e1
MAL
5935write_c_skeleton
5936
1d728c39
BS
5937if test "$gcov" = "yes" ; then
5938 CFLAGS="-fprofile-arcs -ftest-coverage -g $CFLAGS"
5939 LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS"
b553a042 5940elif test "$fortify_source" = "yes" ; then
e600cdf3 5941 CFLAGS="-O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $CFLAGS"
48e56d50
PB
5942elif test "$debug" = "no"; then
5943 CFLAGS="-O2 $CFLAGS"
e86ecd4b 5944fi
a316e378 5945
247724cb
MAL
5946if test "$have_asan" = "yes"; then
5947 CFLAGS="-fsanitize=address $CFLAGS"
d83414e1
MAL
5948 if test "$have_asan_iface_h" = "no" ; then
5949 echo "ASAN build enabled, but ASAN header missing." \
5950 "Without code annotation, the report may be inferior."
5951 elif test "$have_asan_iface_fiber" = "no" ; then
5952 echo "ASAN build enabled, but ASAN header is too old." \
5953 "Without code annotation, the report may be inferior."
5954 fi
247724cb
MAL
5955fi
5956if test "$have_ubsan" = "yes"; then
5957 CFLAGS="-fsanitize=undefined $CFLAGS"
5958fi
5959
6542aa9c
PL
5960##########################################
5961# Do we have libnfs
5962if test "$libnfs" != "no" ; then
b7d769c9 5963 if $pkg_config --atleast-version=1.9.3 libnfs; then
6542aa9c
PL
5964 libnfs="yes"
5965 libnfs_libs=$($pkg_config --libs libnfs)
6542aa9c
PL
5966 else
5967 if test "$libnfs" = "yes" ; then
8efc9363 5968 feature_not_found "libnfs" "Install libnfs devel >= 1.9.3"
6542aa9c
PL
5969 fi
5970 libnfs="no"
5971 fi
5972fi
1d728c39 5973
3efac6eb
TG
5974##########################################
5975# Do we have libudev
5976if test "$libudev" != "no" ; then
5977 if $pkg_config libudev && test "$static" != "yes"; then
5978 libudev="yes"
5979 libudev_libs=$($pkg_config --libs libudev)
5980 else
5981 libudev="no"
5982 fi
5983fi
5984
6ca026cb
PM
5985# Now we've finished running tests it's OK to add -Werror to the compiler flags
5986if test "$werror" = "yes"; then
5987 QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
5988fi
5989
e86ecd4b
JQ
5990if test "$solaris" = "no" ; then
5991 if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
1156c669 5992 LDFLAGS="-Wl,--warn-common $LDFLAGS"
e86ecd4b
JQ
5993 fi
5994fi
5995
94dd53c5
GH
5996# test if pod2man has --utf8 option
5997if pod2man --help | grep -q utf8; then
5998 POD2MAN="pod2man --utf8"
5999else
6000 POD2MAN="pod2man"
6001fi
6002
952afb71
BS
6003# Use ASLR, no-SEH and DEP if available
6004if test "$mingw32" = "yes" ; then
6005 for flag in --dynamicbase --no-seh --nxcompat; do
e9a3591f 6006 if ld_has $flag ; then
952afb71
BS
6007 LDFLAGS="-Wl,$flag $LDFLAGS"
6008 fi
6009 done
6010fi
6011
7776ea6b
PMD
6012# Disable OpenBSD W^X if available
6013if test "$tcg" = "yes" && test "$targetos" = "OpenBSD"; then
6014 cat > $TMPC <<EOF
6015 int main(void) { return 0; }
6016EOF
6017 wx_ldflags="-Wl,-z,wxneeded"
6018 if compile_prog "" "$wx_ldflags"; then
6019 QEMU_LDFLAGS="$QEMU_LDFLAGS $wx_ldflags"
6020 fi
6021fi
6022
10ea68b3 6023qemu_confdir=$sysconfdir$confsuffix
e26110cf 6024qemu_moddir=$libdir$confsuffix
528ae5b8 6025qemu_datadir=$datadir$confsuffix
834574ea 6026qemu_localedir="$datadir/locale"
a8260d38 6027qemu_icondir="$datadir/icons"
67ea9546 6028qemu_desktopdir="$datadir/applications"
e7b45cc4 6029
e0580342
KR
6030# We can only support ivshmem if we have eventfd
6031if [ "$eventfd" = "yes" ]; then
6032 ivshmem=yes
6033fi
6034
4b1c11fd
DB
6035tools=""
6036if test "$want_tools" = "yes" ; then
72d277a7 6037 tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) qemu-edid\$(EXESUF) $tools"
4b1c11fd
DB
6038 if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
6039 tools="qemu-nbd\$(EXESUF) $tools"
b1449edb
KR
6040 fi
6041 if [ "$ivshmem" = "yes" ]; then
a75eb03b 6042 tools="ivshmem-client\$(EXESUF) ivshmem-server\$(EXESUF) $tools"
4b1c11fd 6043 fi
1b9d35f3
VP
6044 if [ "$curl" = "yes" ]; then
6045 tools="elf2dmp\$(EXESUF) $tools"
3fa2d384 6046 fi
4b1c11fd
DB
6047fi
6048if test "$softmmu" = yes ; then
b855f8d1
PB
6049 if test "$linux" = yes; then
6050 if test "$virtfs" != no && test "$cap" = yes && test "$attr" = yes ; then
aabfd88d
AF
6051 virtfs=yes
6052 tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
6053 else
6054 if test "$virtfs" = yes; then
b855f8d1 6055 error_exit "VirtFS requires libcap devel and libattr devel"
983eef5a 6056 fi
17500370 6057 virtfs=no
aabfd88d 6058 fi
fe8fc5ae
PB
6059 if test "$mpath" != no && test "$mpathpersist" = yes ; then
6060 mpath=yes
6061 else
6062 if test "$mpath" = yes; then
6063 error_exit "Multipath requires libmpathpersist devel"
6064 fi
6065 mpath=no
6066 fi
b855f8d1
PB
6067 tools="$tools scsi/qemu-pr-helper\$(EXESUF)"
6068 else
6069 if test "$virtfs" = yes; then
6070 error_exit "VirtFS is supported only on Linux"
6071 fi
6072 virtfs=no
fe8fc5ae
PB
6073 if test "$mpath" = yes; then
6074 error_exit "Multipath is supported only on Linux"
6075 fi
6076 mpath=no
17bff52b 6077 fi
ff69fd8c
LV
6078 if test "$xkbcommon" = "yes"; then
6079 tools="qemu-keymap\$(EXESUF) $tools"
6080 fi
6a021536 6081fi
9d6bc27b
MR
6082
6083# Probe for guest agent support/options
6084
e8ef31a3 6085if [ "$guest_agent" != "no" ]; then
b39297ae 6086 if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32" = "yes" ] ; then
fafcaf1d 6087 tools="qemu-ga $tools"
e8ef31a3
MT
6088 guest_agent=yes
6089 elif [ "$guest_agent" != yes ]; then
6090 guest_agent=no
6091 else
6092 error_exit "Guest agent is not supported on this platform"
ca35f780 6093 fi
00c705fb 6094fi
ca35f780 6095
9d6bc27b
MR
6096# Guest agent Window MSI package
6097
6098if test "$guest_agent" != yes; then
6099 if test "$guest_agent_msi" = yes; then
6100 error_exit "MSI guest agent package requires guest agent enabled"
6101 fi
6102 guest_agent_msi=no
6103elif test "$mingw32" != "yes"; then
6104 if test "$guest_agent_msi" = "yes"; then
6105 error_exit "MSI guest agent package is available only for MinGW Windows cross-compilation"
6106 fi
6107 guest_agent_msi=no
6108elif ! has wixl; then
6109 if test "$guest_agent_msi" = "yes"; then
6110 error_exit "MSI guest agent package requires wixl tool installed ( usually from msitools package )"
6111 fi
6112 guest_agent_msi=no
1a34904e
MR
6113else
6114 # we support qemu-ga, mingw32, and wixl: default to MSI enabled if it wasn't
6115 # disabled explicitly
6116 if test "$guest_agent_msi" != "no"; then
6117 guest_agent_msi=yes
6118 fi
9d6bc27b
MR
6119fi
6120
1a34904e 6121if test "$guest_agent_msi" = "yes"; then
9d6bc27b
MR
6122 if test "$guest_agent_with_vss" = "yes"; then
6123 QEMU_GA_MSI_WITH_VSS="-D InstallVss"
6124 fi
6125
6126 if test "$QEMU_GA_MANUFACTURER" = ""; then
6127 QEMU_GA_MANUFACTURER=QEMU
6128 fi
6129
6130 if test "$QEMU_GA_DISTRO" = ""; then
6131 QEMU_GA_DISTRO=Linux
6132 fi
6133
6134 if test "$QEMU_GA_VERSION" = ""; then
89138857 6135 QEMU_GA_VERSION=$(cat $source_path/VERSION)
9d6bc27b
MR
6136 fi
6137
89138857 6138 QEMU_GA_MSI_MINGW_DLL_PATH="-D Mingw_dlls=$($pkg_config --variable=prefix glib-2.0)/bin"
9d6bc27b
MR
6139
6140 case "$cpu" in
6141 x86_64)
6142 QEMU_GA_MSI_ARCH="-a x64 -D Arch=64"
6143 ;;
6144 i386)
6145 QEMU_GA_MSI_ARCH="-D Arch=32"
6146 ;;
6147 *)
6148 error_exit "CPU $cpu not supported for building installation package"
6149 ;;
6150 esac
6151fi
6152
ca35f780
PB
6153# Mac OS X ships with a broken assembler
6154roms=
e633a5c6
EB
6155if { test "$cpu" = "i386" || test "$cpu" = "x86_64"; } && \
6156 test "$targetos" != "Darwin" && test "$targetos" != "SunOS" && \
6157 test "$softmmu" = yes ; then
e57218b6 6158 # Different host OS linkers have different ideas about the name of the ELF
c65d5e4e
BS
6159 # emulation. Linux and OpenBSD/amd64 use 'elf_i386'; FreeBSD uses the _fbsd
6160 # variant; OpenBSD/i386 uses the _obsd variant; and Windows uses i386pe.
6161 for emu in elf_i386 elf_i386_fbsd elf_i386_obsd i386pe; do
e57218b6
PM
6162 if "$ld" -verbose 2>&1 | grep -q "^[[:space:]]*$emu[[:space:]]*$"; then
6163 ld_i386_emulation="$emu"
6164 roms="optionrom"
6165 break
6166 fi
6167 done
ca35f780 6168fi
e633a5c6 6169if test "$cpu" = "ppc64" && test "$targetos" != "Darwin" ; then
39ac8455
DG
6170 roms="$roms spapr-rtas"
6171fi
ca35f780 6172
2e33c3f8 6173# Only build s390-ccw bios if we're on s390x and the compiler has -march=z900
9933c305 6174if test "$cpu" = "s390x" ; then
2e33c3f8
TH
6175 write_c_skeleton
6176 if compile_prog "-march=z900" ""; then
6177 roms="$roms s390-ccw"
6178 fi
9933c305
CB
6179fi
6180
964c6fa1 6181# Probe for the need for relocating the user-only binary.
92fe2ba8 6182if ( [ "$linux_user" = yes ] || [ "$bsd_user" = yes ] ) && [ "$pie" = no ]; then
964c6fa1
RH
6183 textseg_addr=
6184 case "$cpu" in
479eb121
RH
6185 arm | i386 | ppc* | s390* | sparc* | x86_64 | x32)
6186 # ??? Rationale for choosing this address
964c6fa1
RH
6187 textseg_addr=0x60000000
6188 ;;
6189 mips)
479eb121
RH
6190 # A 256M aligned address, high in the address space, with enough
6191 # room for the code_gen_buffer above it before the stack.
6192 textseg_addr=0x60000000
964c6fa1
RH
6193 ;;
6194 esac
6195 if [ -n "$textseg_addr" ]; then
6196 cat > $TMPC <<EOF
6197 int main(void) { return 0; }
6198EOF
6199 textseg_ldflags="-Wl,-Ttext-segment=$textseg_addr"
6200 if ! compile_prog "" "$textseg_ldflags"; then
6201 # In case ld does not support -Ttext-segment, edit the default linker
6202 # script via sed to set the .text start addr. This is needed on FreeBSD
6203 # at least.
92fe2ba8
PM
6204 if ! $ld --verbose >/dev/null 2>&1; then
6205 error_exit \
6206 "We need to link the QEMU user mode binaries at a" \
6207 "specific text address. Unfortunately your linker" \
6208 "doesn't support either the -Ttext-segment option or" \
6209 "printing the default linker script with --verbose." \
6210 "If you don't want the user mode binaries, pass the" \
6211 "--disable-user option to configure."
6212 fi
6213
964c6fa1
RH
6214 $ld --verbose | sed \
6215 -e '1,/==================================================/d' \
6216 -e '/==================================================/,$d' \
6217 -e "s/[.] = [0-9a-fx]* [+] SIZEOF_HEADERS/. = $textseg_addr + SIZEOF_HEADERS/" \
6218 -e "s/__executable_start = [0-9a-fx]*/__executable_start = $textseg_addr/" > config-host.ld
6219 textseg_ldflags="-Wl,-T../config-host.ld"
6220 fi
6221 fi
6222fi
6223
11cde1c8
BD
6224# Check that the C++ compiler exists and works with the C compiler.
6225# All the QEMU_CXXFLAGS are based on QEMU_CFLAGS. Keep this at the end to don't miss any other that could be added.
6226if has $cxx; then
6227 cat > $TMPC <<EOF
6228int c_function(void);
6229int main(void) { return c_function(); }
6230EOF
6231
6232 compile_object
6233
6234 cat > $TMPCXX <<EOF
6235extern "C" {
6236 int c_function(void);
6237}
6238int c_function(void) { return 42; }
6239EOF
6240
6241 update_cxxflags
6242
6243 if do_cxx $QEMU_CXXFLAGS -o $TMPE $TMPCXX $TMPO $LDFLAGS; then
6244 # C++ compiler $cxx works ok with C compiler $cc
6245 :
6246 else
6247 echo "C++ compiler $cxx does not work with C compiler $cc"
6248 echo "Disabling C++ specific optional code"
6249 cxx=
6250 fi
6251else
6252 echo "No C++ compiler available; disabling C++ specific optional code"
6253 cxx=
6254fi
6255
02d34f62
CR
6256echo_version() {
6257 if test "$1" = "yes" ; then
6258 echo "($2)"
6259 fi
6260}
6261
50e12060
JK
6262# prepend pixman and ftd flags after all config tests are done
6263QEMU_CFLAGS="$pixman_cflags $fdt_cflags $QEMU_CFLAGS"
8a99e9a3 6264QEMU_LDFLAGS="$fdt_ldflags $QEMU_LDFLAGS"
50e12060 6265libs_softmmu="$pixman_libs $libs_softmmu"
5ca9388a 6266
43ce4dfe 6267echo "Install prefix $prefix"
89138857 6268echo "BIOS directory $(eval echo $qemu_datadir)"
3d5eecab 6269echo "firmware path $(eval echo $firmwarepath)"
89138857
SW
6270echo "binary directory $(eval echo $bindir)"
6271echo "library directory $(eval echo $libdir)"
6272echo "module directory $(eval echo $qemu_moddir)"
6273echo "libexec directory $(eval echo $libexecdir)"
6274echo "include directory $(eval echo $includedir)"
6275echo "config directory $(eval echo $sysconfdir)"
11d9f695 6276if test "$mingw32" = "no" ; then
89138857
SW
6277echo "local state directory $(eval echo $local_statedir)"
6278echo "Manual directory $(eval echo $mandir)"
43ce4dfe 6279echo "ELF interp prefix $interp_prefix"
5a699bbb
LE
6280else
6281echo "local state directory queried at runtime"
d9840e25 6282echo "Windows SDK $win_sdk"
11d9f695 6283fi
5a67135a 6284echo "Source path $source_path"
cc84d63a 6285echo "GIT binary $git"
aef45d51 6286echo "GIT submodules $git_submodules"
43ce4dfe 6287echo "C compiler $cc"
83469015 6288echo "Host C compiler $host_cc"
83f73fce 6289echo "C++ compiler $cxx"
3c4a4d0d 6290echo "Objective-C compiler $objcc"
45d285ab 6291echo "ARFLAGS $ARFLAGS"
0c439cbf 6292echo "CFLAGS $CFLAGS"
a558ee17 6293echo "QEMU_CFLAGS $QEMU_CFLAGS"
0c439cbf 6294echo "LDFLAGS $LDFLAGS"
8a99e9a3 6295echo "QEMU_LDFLAGS $QEMU_LDFLAGS"
43ce4dfe 6296echo "make $make"
6a882643 6297echo "install $install"
755ee70f 6298echo "python $python ($python_version)"
675b9b53
MAL
6299echo "slirp support $slirp $(echo_version $slirp $slirp_version)"
6300if test "$slirp" != "no" ; then
e2d8830e
BS
6301 echo "smbd $smbd"
6302fi
17969268 6303echo "module support $modules"
43ce4dfe 6304echo "host CPU $cpu"
de83cd02 6305echo "host big endian $bigendian"
97a847bc 6306echo "target list $target_list"
43ce4dfe 6307echo "gprof enabled $gprof"
03b4fe7d 6308echo "sparse enabled $sparse"
1625af87 6309echo "strip binaries $strip_opt"
05c2a3e7 6310echo "profiler $profiler"
43ce4dfe 6311echo "static build $static"
5b0753e0
FB
6312if test "$darwin" = "yes" ; then
6313 echo "Cocoa support $cocoa"
6314fi
89138857 6315echo "SDL support $sdl $(echo_version $sdl $sdlversion)"
a442fe2f 6316echo "SDL image support $sdl_image"
89138857 6317echo "GTK support $gtk $(echo_version $gtk $gtk_version)"
925a0400 6318echo "GTK GL support $gtk_gl"
89138857 6319echo "VTE support $vte $(echo_version $vte $vteversion)"
a1c5e949 6320echo "TLS priority $tls_priority"
ddbb0d09 6321echo "GNUTLS support $gnutls"
91bfcdb0 6322echo "libgcrypt $gcrypt"
89138857 6323echo "nettle $nettle $(echo_version $nettle $nettle_version)"
9a2fd434 6324echo "libtasn1 $tasn1"
8953caf3 6325echo "PAM $auth_pam"
e08bb301 6326echo "iconv support $iconv"
4d3b6f6e 6327echo "curses support $curses"
47479c55 6328echo "virgl support $virglrenderer $(echo_version $virglrenderer $virgl_version)"
769ce76d 6329echo "curl support $curl"
67b915a5 6330echo "mingw32 support $mingw32"
0c58ac1c 6331echo "Audio drivers $audio_drv_list"
b64ec4e4
FZ
6332echo "Block whitelist (rw) $block_drv_rw_whitelist"
6333echo "Block whitelist (ro) $block_drv_ro_whitelist"
983eef5a 6334echo "VirtFS support $virtfs"
fe8fc5ae 6335echo "Multipath support $mpath"
821601ea
JS
6336echo "VNC support $vnc"
6337if test "$vnc" = "yes" ; then
821601ea
JS
6338 echo "VNC SASL support $vnc_sasl"
6339 echo "VNC JPEG support $vnc_jpeg"
6340 echo "VNC PNG support $vnc_png"
821601ea 6341fi
3142255c
BS
6342if test -n "$sparc_cpu"; then
6343 echo "Target Sparc Arch $sparc_cpu"
6344fi
e37630ca 6345echo "xen support $xen"
3996e85c
PD
6346if test "$xen" = "yes" ; then
6347 echo "xen ctrl version $xen_ctrl_version"
6348fi
2e4d9fb1 6349echo "brlapi support $brlapi"
a20a6f46 6350echo "bluez support $bluez"
a25dba17 6351echo "Documentation $docs"
40d6444e 6352echo "PIE $pie"
8a16d273 6353echo "vde support $vde"
58952137 6354echo "netmap support $netmap"
5c6c3a6c 6355echo "Linux AIO support $linux_aio"
758e8e38 6356echo "ATTR/XATTR support $attr"
77755340 6357echo "Install blobs $blobs"
b31a0277 6358echo "KVM support $kvm"
b0cb0a66 6359echo "HAX support $hax"
c97d6d2c 6360echo "HVF support $hvf"
d661d9a4 6361echo "WHPX support $whpx"
b3f6ea7e
PB
6362echo "TCG support $tcg"
6363if test "$tcg" = "yes" ; then
6364 echo "TCG debug enabled $debug_tcg"
6365 echo "TCG interpreter $tcg_interpreter"
6366fi
5a22ab71 6367echo "malloc trim support $malloc_trim"
2da776db 6368echo "RDMA support $rdma"
21ab34c9 6369echo "PVRDMA support $pvrdma"
f652e6af 6370echo "fdt support $fdt"
a40161cb 6371echo "membarrier $membarrier"
ceb42de8 6372echo "preadv support $preadv"
5f6b9e8f 6373echo "fdatasync $fdatasync"
e78815a5
AF
6374echo "madvise $madvise"
6375echo "posix_madvise $posix_madvise"
9bc5a719 6376echo "posix_memalign $posix_memalign"
47e98658 6377echo "libcap-ng support $cap_ng"
d5970055 6378echo "vhost-net support $vhost_net"
042cea27 6379echo "vhost-crypto support $vhost_crypto"
5e9be92d 6380echo "vhost-scsi support $vhost_scsi"
fc0b9b0e 6381echo "vhost-vsock support $vhost_vsock"
e6a74868 6382echo "vhost-user support $vhost_user"
5b808275 6383echo "Trace backends $trace_backends"
713572a7 6384if have_backend "simple"; then
9410b56c 6385echo "Trace output file $trace_file-<pid>"
e00e36fb 6386fi
89138857 6387echo "spice support $spice $(echo_version $spice $spice_protocol_version/$spice_server_version)"
f27aaf4b 6388echo "rbd support $rbd"
dce512de 6389echo "xfsctl support $xfs"
7b02f544 6390echo "smartcard support $smartcard"
2b2325ff 6391echo "libusb $libusb"
69354a83 6392echo "usb net redir $usb_redir"
da076ffe 6393echo "OpenGL support $opengl"
014cb152 6394echo "OpenGL dmabufs $opengl_dmabuf"
c589b249 6395echo "libiscsi support $libiscsi"
6542aa9c 6396echo "libnfs support $libnfs"
d138cee9 6397echo "build guest agent $guest_agent"
d9840e25 6398echo "QGA VSS support $guest_agent_with_vss"
50cbebb9 6399echo "QGA w32 disk info $guest_agent_ntddscsi"
4c875d89 6400echo "QGA MSI support $guest_agent_msi"
f794573e 6401echo "seccomp support $seccomp"
7c2acc70 6402echo "coroutine backend $coroutine"
70c60c08 6403echo "coroutine pool $coroutine_pool"
7d992e4d 6404echo "debug stack usage $debug_stack_usage"
ba59fb77 6405echo "mutex debugging $debug_mutex"
f0d92b56 6406echo "crypto afalg $crypto_afalg"
eb100396 6407echo "GlusterFS support $glusterfs"
1d728c39
BS
6408echo "gcov $gcov_tool"
6409echo "gcov enabled $gcov"
ab214c29 6410echo "TPM support $tpm"
0a12ec87 6411echo "libssh2 support $libssh2"
3b8acc11 6412echo "TPM passthrough $tpm_passthrough"
f4ede81e 6413echo "TPM emulator $tpm_emulator"
3556c233 6414echo "QOM debugging $qom_cast_debug"
ed1701c6 6415echo "Live block migration $live_block_migration"
607dacd0
QN
6416echo "lzo support $lzo"
6417echo "snappy support $snappy"
6b383c08 6418echo "bzip2 support $bzip2"
83bc1f97 6419echo "lzfse support $lzfse"
a99d57bb 6420echo "NUMA host support $numa"
ed279a06 6421echo "libxml2 $libxml2"
2847b469 6422echo "tcmalloc support $tcmalloc"
7b01cb97 6423echo "jemalloc support $jemalloc"
99f2dbd3 6424echo "avx2 optimization $avx2_opt"
a6b1d4c0 6425echo "replication support $replication"
da92c3ff 6426echo "VxHS block device $vxhs"
2f740136
JC
6427echo "bochs support $bochs"
6428echo "cloop support $cloop"
6429echo "dmg support $dmg"
6430echo "qcow v1 support $qcow1"
6431echo "vdi support $vdi"
6432echo "vvfat support $vvfat"
6433echo "qed support $qed"
6434echo "parallels support $parallels"
6435echo "sheepdog support $sheepdog"
8ca80760 6436echo "capstone $capstone"
51a12b51 6437echo "docker $docker"
17824406 6438echo "libpmem support $libpmem"
3efac6eb 6439echo "libudev $libudev"
f3494749 6440echo "default devices $default_devices"
67b915a5 6441
898be3e0
PM
6442if test "$supported_cpu" = "no"; then
6443 echo
6444 echo "WARNING: SUPPORT FOR THIS HOST CPU WILL GO AWAY IN FUTURE RELEASES!"
6445 echo
6446 echo "CPU host architecture $cpu support is not currently maintained."
6447 echo "The QEMU project intends to remove support for this host CPU in"
6448 echo "a future release if nobody volunteers to maintain it and to"
6449 echo "provide a build host for our continuous integration setup."
6450 echo "configure has succeeded and you can continue to build, but"
6451 echo "if you care about QEMU on this platform you should contact"
6452 echo "us upstream at qemu-devel@nongnu.org."
6453fi
6454
6455if test "$supported_os" = "no"; then
6456 echo
6457 echo "WARNING: SUPPORT FOR THIS HOST OS WILL GO AWAY IN FUTURE RELEASES!"
6458 echo
c50126aa
PM
6459 echo "Host OS $targetos support is not currently maintained."
6460 echo "The QEMU project intends to remove support for this host OS in"
898be3e0
PM
6461 echo "a future release if nobody volunteers to maintain it and to"
6462 echo "provide a build host for our continuous integration setup."
6463 echo "configure has succeeded and you can continue to build, but"
6464 echo "if you care about QEMU on this platform you should contact"
6465 echo "us upstream at qemu-devel@nongnu.org."
6466fi
6467
98ec69ac 6468config_host_mak="config-host.mak"
98ec69ac 6469
dbd99ae3
SW
6470echo "# Automatically generated by configure - do not modify" >config-all-disas.mak
6471
98ec69ac 6472echo "# Automatically generated by configure - do not modify" > $config_host_mak
98ec69ac 6473echo >> $config_host_mak
98ec69ac 6474
e6c3b0f7 6475echo all: >> $config_host_mak
99d7cc75
PB
6476echo "prefix=$prefix" >> $config_host_mak
6477echo "bindir=$bindir" >> $config_host_mak
3aa5d2be 6478echo "libdir=$libdir" >> $config_host_mak
8bf188aa 6479echo "libexecdir=$libexecdir" >> $config_host_mak
0f94d6da 6480echo "includedir=$includedir" >> $config_host_mak
99d7cc75 6481echo "mandir=$mandir" >> $config_host_mak
99d7cc75 6482echo "sysconfdir=$sysconfdir" >> $config_host_mak
22d07038 6483echo "qemu_confdir=$qemu_confdir" >> $config_host_mak
9afa52ce 6484echo "qemu_datadir=$qemu_datadir" >> $config_host_mak
3d5eecab 6485echo "qemu_firmwarepath=$firmwarepath" >> $config_host_mak
9afa52ce 6486echo "qemu_docdir=$qemu_docdir" >> $config_host_mak
e26110cf 6487echo "qemu_moddir=$qemu_moddir" >> $config_host_mak
5a699bbb
LE
6488if test "$mingw32" = "no" ; then
6489 echo "qemu_localstatedir=$local_statedir" >> $config_host_mak
6490fi
f354b1a1 6491echo "qemu_helperdir=$libexecdir" >> $config_host_mak
834574ea 6492echo "qemu_localedir=$qemu_localedir" >> $config_host_mak
a8260d38 6493echo "qemu_icondir=$qemu_icondir" >> $config_host_mak
67ea9546 6494echo "qemu_desktopdir=$qemu_desktopdir" >> $config_host_mak
f544a488 6495echo "libs_softmmu=$libs_softmmu" >> $config_host_mak
cc84d63a 6496echo "GIT=$git" >> $config_host_mak
aef45d51 6497echo "GIT_SUBMODULES=$git_submodules" >> $config_host_mak
f62bbee5 6498echo "GIT_UPDATE=$git_update" >> $config_host_mak
804edf29 6499
98ec69ac 6500echo "ARCH=$ARCH" >> $config_host_mak
727e5283 6501
f3494749
PB
6502if test "$default_devices" = "yes" ; then
6503 echo "CONFIG_MINIKCONF_MODE=--defconfig" >> $config_host_mak
6504else
6505 echo "CONFIG_MINIKCONF_MODE=--allnoconfig" >> $config_host_mak
6506fi
f8393946 6507if test "$debug_tcg" = "yes" ; then
2358a494 6508 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
f8393946 6509fi
1625af87 6510if test "$strip_opt" = "yes" ; then
52ba784d 6511 echo "STRIP=${strip}" >> $config_host_mak
1625af87 6512fi
7d13299d 6513if test "$bigendian" = "yes" ; then
e2542fe2 6514 echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
97a847bc 6515fi
67b915a5 6516if test "$mingw32" = "yes" ; then
98ec69ac 6517 echo "CONFIG_WIN32=y" >> $config_host_mak
89138857 6518 rc_version=$(cat $source_path/VERSION)
9fe6de94
BS
6519 version_major=${rc_version%%.*}
6520 rc_version=${rc_version#*.}
6521 version_minor=${rc_version%%.*}
6522 rc_version=${rc_version#*.}
6523 version_subminor=${rc_version%%.*}
6524 version_micro=0
6525 echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
6526 echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
d9840e25
TS
6527 if test "$guest_agent_with_vss" = "yes" ; then
6528 echo "CONFIG_QGA_VSS=y" >> $config_host_mak
f33ca81f 6529 echo "QGA_VSS_PROVIDER=$qga_vss_provider" >> $config_host_mak
d9840e25
TS
6530 echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak
6531 fi
50cbebb9 6532 if test "$guest_agent_ntddscsi" = "yes" ; then
76dc75ca 6533 echo "CONFIG_QGA_NTDDSCSI=y" >> $config_host_mak
50cbebb9 6534 fi
1a34904e 6535 if test "$guest_agent_msi" = "yes"; then
d661d9a4 6536 echo "QEMU_GA_MSI_ENABLED=yes" >> $config_host_mak
9dacf32d
YH
6537 echo "QEMU_GA_MSI_MINGW_DLL_PATH=${QEMU_GA_MSI_MINGW_DLL_PATH}" >> $config_host_mak
6538 echo "QEMU_GA_MSI_WITH_VSS=${QEMU_GA_MSI_WITH_VSS}" >> $config_host_mak
6539 echo "QEMU_GA_MSI_ARCH=${QEMU_GA_MSI_ARCH}" >> $config_host_mak
6540 echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER}" >> $config_host_mak
6541 echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO}" >> $config_host_mak
6542 echo "QEMU_GA_VERSION=${QEMU_GA_VERSION}" >> $config_host_mak
6543 fi
210fa556 6544else
35f4df27 6545 echo "CONFIG_POSIX=y" >> $config_host_mak
dffcb71c
MM
6546fi
6547
6548if test "$linux" = "yes" ; then
6549 echo "CONFIG_LINUX=y" >> $config_host_mak
67b915a5 6550fi
128ab2ff 6551
83fb7adf 6552if test "$darwin" = "yes" ; then
98ec69ac 6553 echo "CONFIG_DARWIN=y" >> $config_host_mak
83fb7adf 6554fi
b29fe3ed 6555
ec530c81 6556if test "$solaris" = "yes" ; then
98ec69ac 6557 echo "CONFIG_SOLARIS=y" >> $config_host_mak
ec530c81 6558fi
179cf400
AF
6559if test "$haiku" = "yes" ; then
6560 echo "CONFIG_HAIKU=y" >> $config_host_mak
6561fi
97a847bc 6562if test "$static" = "yes" ; then
98ec69ac 6563 echo "CONFIG_STATIC=y" >> $config_host_mak
7d13299d 6564fi
1ba16968 6565if test "$profiler" = "yes" ; then
2358a494 6566 echo "CONFIG_PROFILER=y" >> $config_host_mak
05c2a3e7 6567fi
675b9b53 6568if test "$slirp" != "no"; then
98ec69ac 6569 echo "CONFIG_SLIRP=y" >> $config_host_mak
e2d8830e 6570 echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak
675b9b53
MAL
6571 echo "SLIRP_CFLAGS=$slirp_cflags" >> $config_host_mak
6572 echo "SLIRP_LIBS=$slirp_libs" >> $config_host_mak
6573fi
1f773d9d 6574if [ "$slirp" = "internal" ]; then
675b9b53 6575 echo "config-host.h: subdir-slirp" >> $config_host_mak
c20709aa 6576fi
8a16d273 6577if test "$vde" = "yes" ; then
98ec69ac 6578 echo "CONFIG_VDE=y" >> $config_host_mak
e2ad6f16 6579 echo "VDE_LIBS=$vde_libs" >> $config_host_mak
8a16d273 6580fi
58952137
VM
6581if test "$netmap" = "yes" ; then
6582 echo "CONFIG_NETMAP=y" >> $config_host_mak
6583fi
015a33bd
GA
6584if test "$l2tpv3" = "yes" ; then
6585 echo "CONFIG_L2TPV3=y" >> $config_host_mak
6586fi
47e98658
CB
6587if test "$cap_ng" = "yes" ; then
6588 echo "CONFIG_LIBCAP=y" >> $config_host_mak
6589fi
2358a494 6590echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
0c58ac1c 6591for drv in $audio_drv_list; do
1ef1ec2a 6592 def=CONFIG_AUDIO_$(echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]')
ce3dc033 6593 case "$drv" in
051c7d5c 6594 alsa | oss | pa | sdl)
ce3dc033
GH
6595 echo "$def=m" >> $config_host_mak ;;
6596 *)
6597 echo "$def=y" >> $config_host_mak ;;
6598 esac
0c58ac1c 6599done
b1149911
FZ
6600echo "ALSA_LIBS=$alsa_libs" >> $config_host_mak
6601echo "PULSE_LIBS=$pulse_libs" >> $config_host_mak
6602echo "COREAUDIO_LIBS=$coreaudio_libs" >> $config_host_mak
6603echo "DSOUND_LIBS=$dsound_libs" >> $config_host_mak
6604echo "OSS_LIBS=$oss_libs" >> $config_host_mak
67f86e8e
JQ
6605if test "$audio_pt_int" = "yes" ; then
6606 echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
6607fi
d5631638 6608if test "$audio_win_int" = "yes" ; then
6609 echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
6610fi
b64ec4e4
FZ
6611echo "CONFIG_BDRV_RW_WHITELIST=$block_drv_rw_whitelist" >> $config_host_mak
6612echo "CONFIG_BDRV_RO_WHITELIST=$block_drv_ro_whitelist" >> $config_host_mak
821601ea
JS
6613if test "$vnc" = "yes" ; then
6614 echo "CONFIG_VNC=y" >> $config_host_mak
6615fi
2f9606b3 6616if test "$vnc_sasl" = "yes" ; then
98ec69ac 6617 echo "CONFIG_VNC_SASL=y" >> $config_host_mak
2f9606b3 6618fi
821601ea 6619if test "$vnc_jpeg" = "yes" ; then
2f6f5c7a 6620 echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
2f6f5c7a 6621fi
821601ea 6622if test "$vnc_png" = "yes" ; then
efe556ad 6623 echo "CONFIG_VNC_PNG=y" >> $config_host_mak
efe556ad 6624fi
6a021536
GH
6625if test "$xkbcommon" = "yes" ; then
6626 echo "XKBCOMMON_CFLAGS=$xkbcommon_cflags" >> $config_host_mak
6627 echo "XKBCOMMON_LIBS=$xkbcommon_libs" >> $config_host_mak
6628fi
dce512de
CH
6629if test "$xfs" = "yes" ; then
6630 echo "CONFIG_XFS=y" >> $config_host_mak
6631fi
89138857 6632qemu_version=$(head $source_path/VERSION)
98ec69ac 6633echo "VERSION=$qemu_version" >>$config_host_mak
2358a494 6634echo "PKGVERSION=$pkgversion" >>$config_host_mak
98ec69ac 6635echo "SRC_PATH=$source_path" >> $config_host_mak
2b1f35b9 6636echo "TARGET_DIRS=$target_list" >> $config_host_mak
a25dba17 6637if [ "$docs" = "yes" ] ; then
98ec69ac 6638 echo "BUILD_DOCS=yes" >> $config_host_mak
cc8ae6de 6639fi
17969268 6640if test "$modules" = "yes"; then
e26110cf
FZ
6641 # $shacmd can generate a hash started with digit, which the compiler doesn't
6642 # like as an symbol. So prefix it with an underscore
89138857 6643 echo "CONFIG_STAMP=_$( (echo $qemu_version; echo $pkgversion; cat $0) | $shacmd - | cut -f1 -d\ )" >> $config_host_mak
17969268
FZ
6644 echo "CONFIG_MODULES=y" >> $config_host_mak
6645fi
e633a5c6 6646if test "$have_x11" = "yes" && test "$need_x11" = "yes"; then
8781595b
GH
6647 echo "CONFIG_X11=y" >> $config_host_mak
6648 echo "X11_CFLAGS=$x11_cflags" >> $config_host_mak
6649 echo "X11_LIBS=$x11_libs" >> $config_host_mak
6650fi
1ac88f28 6651if test "$sdl" = "yes" ; then
96400a14 6652 echo "CONFIG_SDL=m" >> $config_host_mak
1ac88f28 6653 echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
8ecc89f6 6654 echo "SDL_LIBS=$sdl_libs" >> $config_host_mak
a442fe2f
DB
6655 if test "$sdl_image" = "yes" ; then
6656 echo "CONFIG_SDL_IMAGE=y" >> $config_host_mak
6657 fi
49ecc3fa
FB
6658fi
6659if test "$cocoa" = "yes" ; then
98ec69ac 6660 echo "CONFIG_COCOA=y" >> $config_host_mak
4d3b6f6e 6661fi
e08bb301
ST
6662if test "$iconv" = "yes" ; then
6663 echo "CONFIG_ICONV=y" >> $config_host_mak
6664 echo "ICONV_CFLAGS=$iconv_cflags" >> $config_host_mak
6665 echo "ICONV_LIBS=$iconv_lib" >> $config_host_mak
6666fi
4d3b6f6e 6667if test "$curses" = "yes" ; then
2373f7d5
GH
6668 echo "CONFIG_CURSES=m" >> $config_host_mak
6669 echo "CURSES_CFLAGS=$curses_inc" >> $config_host_mak
6670 echo "CURSES_LIBS=$curses_lib" >> $config_host_mak
49ecc3fa 6671fi
099d6b0f 6672if test "$pipe2" = "yes" ; then
2358a494 6673 echo "CONFIG_PIPE2=y" >> $config_host_mak
099d6b0f 6674fi
40ff6d7e
KW
6675if test "$accept4" = "yes" ; then
6676 echo "CONFIG_ACCEPT4=y" >> $config_host_mak
6677fi
3ce34dfb 6678if test "$splice" = "yes" ; then
2358a494 6679 echo "CONFIG_SPLICE=y" >> $config_host_mak
3ce34dfb 6680fi
c2882b96
RV
6681if test "$eventfd" = "yes" ; then
6682 echo "CONFIG_EVENTFD=y" >> $config_host_mak
6683fi
751bcc39
MAL
6684if test "$memfd" = "yes" ; then
6685 echo "CONFIG_MEMFD=y" >> $config_host_mak
6686fi
955727d2
CT
6687if test "$have_usbfs" = "yes" ; then
6688 echo "CONFIG_USBFS=y" >> $config_host_mak
6689fi
d0927938
UH
6690if test "$fallocate" = "yes" ; then
6691 echo "CONFIG_FALLOCATE=y" >> $config_host_mak
6692fi
3d4fa43e
KK
6693if test "$fallocate_punch_hole" = "yes" ; then
6694 echo "CONFIG_FALLOCATE_PUNCH_HOLE=y" >> $config_host_mak
6695fi
b953f075
DL
6696if test "$fallocate_zero_range" = "yes" ; then
6697 echo "CONFIG_FALLOCATE_ZERO_RANGE=y" >> $config_host_mak
6698fi
ed911435
KW
6699if test "$posix_fallocate" = "yes" ; then
6700 echo "CONFIG_POSIX_FALLOCATE=y" >> $config_host_mak
6701fi
c727f47d
PM
6702if test "$sync_file_range" = "yes" ; then
6703 echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak
6704fi
dace20dc
PM
6705if test "$fiemap" = "yes" ; then
6706 echo "CONFIG_FIEMAP=y" >> $config_host_mak
6707fi
d0927938
UH
6708if test "$dup3" = "yes" ; then
6709 echo "CONFIG_DUP3=y" >> $config_host_mak
6710fi
4e0c6529
AB
6711if test "$ppoll" = "yes" ; then
6712 echo "CONFIG_PPOLL=y" >> $config_host_mak
6713fi
cd758dd0
AB
6714if test "$prctl_pr_set_timerslack" = "yes" ; then
6715 echo "CONFIG_PRCTL_PR_SET_TIMERSLACK=y" >> $config_host_mak
6716fi
3b6edd16
PM
6717if test "$epoll" = "yes" ; then
6718 echo "CONFIG_EPOLL=y" >> $config_host_mak
6719fi
6720if test "$epoll_create1" = "yes" ; then
6721 echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak
6722fi
a8fd1aba
PM
6723if test "$sendfile" = "yes" ; then
6724 echo "CONFIG_SENDFILE=y" >> $config_host_mak
6725fi
51834341
RV
6726if test "$timerfd" = "yes" ; then
6727 echo "CONFIG_TIMERFD=y" >> $config_host_mak
6728fi
9af5c906
RV
6729if test "$setns" = "yes" ; then
6730 echo "CONFIG_SETNS=y" >> $config_host_mak
6731fi
38860a03
AM
6732if test "$clock_adjtime" = "yes" ; then
6733 echo "CONFIG_CLOCK_ADJTIME=y" >> $config_host_mak
6734fi
5a03cd00
AM
6735if test "$syncfs" = "yes" ; then
6736 echo "CONFIG_SYNCFS=y" >> $config_host_mak
6737fi
3b3f24ad 6738if test "$inotify" = "yes" ; then
2358a494 6739 echo "CONFIG_INOTIFY=y" >> $config_host_mak
3b3f24ad 6740fi
c05c7a73
RV
6741if test "$inotify1" = "yes" ; then
6742 echo "CONFIG_INOTIFY1=y" >> $config_host_mak
6743fi
401bc051
PM
6744if test "$sem_timedwait" = "yes" ; then
6745 echo "CONFIG_SEM_TIMEDWAIT=y" >> $config_host_mak
6746fi
5c99fa37
KF
6747if test "$strchrnul" = "yes" ; then
6748 echo "HAVE_STRCHRNUL=y" >> $config_host_mak
6749fi
6ae9a1f4
JQ
6750if test "$byteswap_h" = "yes" ; then
6751 echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
6752fi
6753if test "$bswap_h" = "yes" ; then
6754 echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
6755fi
769ce76d 6756if test "$curl" = "yes" ; then
d3399d7c 6757 echo "CONFIG_CURL=m" >> $config_host_mak
b1d5a277 6758 echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
6ebc91e5 6759 echo "CURL_LIBS=$curl_libs" >> $config_host_mak
769ce76d 6760fi
2e4d9fb1 6761if test "$brlapi" = "yes" ; then
98ec69ac 6762 echo "CONFIG_BRLAPI=y" >> $config_host_mak
8eca2889 6763 echo "BRLAPI_LIBS=$brlapi_libs" >> $config_host_mak
2e4d9fb1 6764fi
fb599c9a 6765if test "$bluez" = "yes" ; then
98ec69ac 6766 echo "CONFIG_BLUEZ=y" >> $config_host_mak
ef7635ec 6767 echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
fb599c9a 6768fi
a4ccabcf 6769if test "$gtk" = "yes" ; then
e0fb129c 6770 echo "CONFIG_GTK=m" >> $config_host_mak
a4ccabcf 6771 echo "GTK_CFLAGS=$gtk_cflags" >> $config_host_mak
014cb152 6772 echo "GTK_LIBS=$gtk_libs" >> $config_host_mak
925a0400
GH
6773 if test "$gtk_gl" = "yes" ; then
6774 echo "CONFIG_GTK_GL=y" >> $config_host_mak
6775 fi
bbbf9bfb 6776fi
f876b765
MAL
6777if test "$gio" = "yes" ; then
6778 echo "CONFIG_GIO=y" >> $config_host_mak
6779 echo "GIO_CFLAGS=$gio_cflags" >> $config_host_mak
6780 echo "GIO_LIBS=$gio_libs" >> $config_host_mak
6781fi
a1c5e949 6782echo "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak
ddbb0d09
DB
6783if test "$gnutls" = "yes" ; then
6784 echo "CONFIG_GNUTLS=y" >> $config_host_mak
6785fi
91bfcdb0
DB
6786if test "$gcrypt" = "yes" ; then
6787 echo "CONFIG_GCRYPT=y" >> $config_host_mak
1f923c70
LM
6788 if test "$gcrypt_hmac" = "yes" ; then
6789 echo "CONFIG_GCRYPT_HMAC=y" >> $config_host_mak
6790 fi
62893b67 6791fi
91bfcdb0
DB
6792if test "$nettle" = "yes" ; then
6793 echo "CONFIG_NETTLE=y" >> $config_host_mak
becaeb72 6794 echo "CONFIG_NETTLE_VERSION_MAJOR=${nettle_version%%.*}" >> $config_host_mak
ed754746 6795fi
9a2fd434
DB
6796if test "$tasn1" = "yes" ; then
6797 echo "CONFIG_TASN1=y" >> $config_host_mak
6798fi
8953caf3
DB
6799if test "$auth_pam" = "yes" ; then
6800 echo "CONFIG_AUTH_PAM=y" >> $config_host_mak
6801fi
559607ea
DB
6802if test "$have_ifaddrs_h" = "yes" ; then
6803 echo "HAVE_IFADDRS_H=y" >> $config_host_mak
6804fi
6b39b063
EB
6805if test "$have_broken_size_max" = "yes" ; then
6806 echo "HAVE_BROKEN_SIZE_MAX=y" >> $config_host_mak
6807fi
277abf15
JV
6808
6809# Work around a system header bug with some kernel/XFS header
6810# versions where they both try to define 'struct fsxattr':
6811# xfs headers will not try to redefine structs from linux headers
6812# if this macro is set.
6813if test "$have_fsxattr" = "yes" ; then
6814 echo "HAVE_FSXATTR=y" >> $config_host_mak
6815fi
1efad060
FZ
6816if test "$have_copy_file_range" = "yes" ; then
6817 echo "HAVE_COPY_FILE_RANGE=y" >> $config_host_mak
6818fi
bbbf9bfb
SW
6819if test "$vte" = "yes" ; then
6820 echo "CONFIG_VTE=y" >> $config_host_mak
a4ccabcf 6821 echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak
e0fb129c 6822 echo "VTE_LIBS=$vte_libs" >> $config_host_mak
a4ccabcf 6823fi
9d9e1521
GH
6824if test "$virglrenderer" = "yes" ; then
6825 echo "CONFIG_VIRGL=y" >> $config_host_mak
6826 echo "VIRGL_CFLAGS=$virgl_cflags" >> $config_host_mak
6827 echo "VIRGL_LIBS=$virgl_libs" >> $config_host_mak
6828fi
e37630ca 6829if test "$xen" = "yes" ; then
6dbd588a 6830 echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak
d5b93ddf 6831 echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
e37630ca 6832fi
5c6c3a6c
CH
6833if test "$linux_aio" = "yes" ; then
6834 echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
6835fi
758e8e38
VJ
6836if test "$attr" = "yes" ; then
6837 echo "CONFIG_ATTR=y" >> $config_host_mak
6838fi
4f26f2b6
AK
6839if test "$libattr" = "yes" ; then
6840 echo "CONFIG_LIBATTR=y" >> $config_host_mak
6841fi
983eef5a
MI
6842if test "$virtfs" = "yes" ; then
6843 echo "CONFIG_VIRTFS=y" >> $config_host_mak
758e8e38 6844fi
fe8fc5ae
PB
6845if test "$mpath" = "yes" ; then
6846 echo "CONFIG_MPATH=y" >> $config_host_mak
1b0578f5
MOA
6847 if test "$mpathpersist_new_api" = "yes"; then
6848 echo "CONFIG_MPATH_NEW_API=y" >> $config_host_mak
6849 fi
fe8fc5ae 6850fi
5e9be92d
NB
6851if test "$vhost_scsi" = "yes" ; then
6852 echo "CONFIG_VHOST_SCSI=y" >> $config_host_mak
6853fi
af3bba76
PB
6854if test "$vhost_net" = "yes" ; then
6855 echo "CONFIG_VHOST_NET=y" >> $config_host_mak
6856fi
6857if test "$vhost_net_user" = "yes" ; then
56f41de7 6858 echo "CONFIG_VHOST_NET_USER=y" >> $config_host_mak
03ce5744 6859fi
042cea27
GA
6860if test "$vhost_crypto" = "yes" ; then
6861 echo "CONFIG_VHOST_CRYPTO=y" >> $config_host_mak
6862fi
fc0b9b0e
SH
6863if test "$vhost_vsock" = "yes" ; then
6864 echo "CONFIG_VHOST_VSOCK=y" >> $config_host_mak
6865fi
299e6f19
PB
6866if test "$vhost_kernel" = "yes" ; then
6867 echo "CONFIG_VHOST_KERNEL=y" >> $config_host_mak
6868fi
e6a74868
MAL
6869if test "$vhost_user" = "yes" ; then
6870 echo "CONFIG_VHOST_USER=y" >> $config_host_mak
6871fi
77755340 6872if test "$blobs" = "yes" ; then
98ec69ac 6873 echo "INSTALL_BLOBS=yes" >> $config_host_mak
77755340 6874fi
bf9298b9 6875if test "$iovec" = "yes" ; then
2358a494 6876 echo "CONFIG_IOVEC=y" >> $config_host_mak
bf9298b9 6877fi
ceb42de8 6878if test "$preadv" = "yes" ; then
2358a494 6879 echo "CONFIG_PREADV=y" >> $config_host_mak
ceb42de8 6880fi
e3971d61 6881if test "$fdt" != "no" ; then
3f0855b1 6882 echo "CONFIG_FDT=y" >> $config_host_mak
f652e6af 6883fi
a40161cb
PB
6884if test "$membarrier" = "yes" ; then
6885 echo "CONFIG_MEMBARRIER=y" >> $config_host_mak
6886fi
dcc38d1c
MT
6887if test "$signalfd" = "yes" ; then
6888 echo "CONFIG_SIGNALFD=y" >> $config_host_mak
6889fi
d339d766
RJ
6890if test "$optreset" = "yes" ; then
6891 echo "HAVE_OPTRESET=y" >> $config_host_mak
6892fi
b3f6ea7e
PB
6893if test "$tcg" = "yes"; then
6894 echo "CONFIG_TCG=y" >> $config_host_mak
6895 if test "$tcg_interpreter" = "yes" ; then
6896 echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak
6897 fi
9195b2c2 6898fi
5f6b9e8f
BS
6899if test "$fdatasync" = "yes" ; then
6900 echo "CONFIG_FDATASYNC=y" >> $config_host_mak
6901fi
e78815a5
AF
6902if test "$madvise" = "yes" ; then
6903 echo "CONFIG_MADVISE=y" >> $config_host_mak
6904fi
6905if test "$posix_madvise" = "yes" ; then
6906 echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
6907fi
9bc5a719
AG
6908if test "$posix_memalign" = "yes" ; then
6909 echo "CONFIG_POSIX_MEMALIGN=y" >> $config_host_mak
6910fi
97a847bc 6911
cd4ec0b4
GH
6912if test "$spice" = "yes" ; then
6913 echo "CONFIG_SPICE=y" >> $config_host_mak
6914fi
36707144 6915
7b02f544
MAL
6916if test "$smartcard" = "yes" ; then
6917 echo "CONFIG_SMARTCARD=y" >> $config_host_mak
7b62bf5a
FZ
6918 echo "SMARTCARD_CFLAGS=$libcacard_cflags" >> $config_host_mak
6919 echo "SMARTCARD_LIBS=$libcacard_libs" >> $config_host_mak
111a38b0
RR
6920fi
6921
2b2325ff
GH
6922if test "$libusb" = "yes" ; then
6923 echo "CONFIG_USB_LIBUSB=y" >> $config_host_mak
b878b652
FZ
6924 echo "LIBUSB_CFLAGS=$libusb_cflags" >> $config_host_mak
6925 echo "LIBUSB_LIBS=$libusb_libs" >> $config_host_mak
2b2325ff
GH
6926fi
6927
69354a83
HG
6928if test "$usb_redir" = "yes" ; then
6929 echo "CONFIG_USB_REDIR=y" >> $config_host_mak
cc7923fc
FZ
6930 echo "USB_REDIR_CFLAGS=$usb_redir_cflags" >> $config_host_mak
6931 echo "USB_REDIR_LIBS=$usb_redir_libs" >> $config_host_mak
69354a83
HG
6932fi
6933
da076ffe
GH
6934if test "$opengl" = "yes" ; then
6935 echo "CONFIG_OPENGL=y" >> $config_host_mak
6936 echo "OPENGL_LIBS=$opengl_libs" >> $config_host_mak
014cb152
GH
6937 if test "$opengl_dmabuf" = "yes" ; then
6938 echo "CONFIG_OPENGL_DMABUF=y" >> $config_host_mak
6939 fi
20ff075b
MW
6940fi
6941
5a22ab71
YZ
6942if test "$malloc_trim" = "yes" ; then
6943 echo "CONFIG_MALLOC_TRIM=y" >> $config_host_mak
6944fi
6945
99f2dbd3
LL
6946if test "$avx2_opt" = "yes" ; then
6947 echo "CONFIG_AVX2_OPT=y" >> $config_host_mak
6948fi
6949
607dacd0
QN
6950if test "$lzo" = "yes" ; then
6951 echo "CONFIG_LZO=y" >> $config_host_mak
6952fi
6953
6954if test "$snappy" = "yes" ; then
6955 echo "CONFIG_SNAPPY=y" >> $config_host_mak
6956fi
6957
6b383c08
PW
6958if test "$bzip2" = "yes" ; then
6959 echo "CONFIG_BZIP2=y" >> $config_host_mak
6960 echo "BZIP2_LIBS=-lbz2" >> $config_host_mak
6961fi
6962
83bc1f97
JF
6963if test "$lzfse" = "yes" ; then
6964 echo "CONFIG_LZFSE=y" >> $config_host_mak
6965 echo "LZFSE_LIBS=-llzfse" >> $config_host_mak
6966fi
6967
c589b249 6968if test "$libiscsi" = "yes" ; then
d3399d7c 6969 echo "CONFIG_LIBISCSI=m" >> $config_host_mak
6ebc91e5
FZ
6970 echo "LIBISCSI_CFLAGS=$libiscsi_cflags" >> $config_host_mak
6971 echo "LIBISCSI_LIBS=$libiscsi_libs" >> $config_host_mak
c589b249
RS
6972fi
6973
6542aa9c 6974if test "$libnfs" = "yes" ; then
4be4879f
CL
6975 echo "CONFIG_LIBNFS=m" >> $config_host_mak
6976 echo "LIBNFS_LIBS=$libnfs_libs" >> $config_host_mak
6542aa9c
PL
6977fi
6978
f794573e
EO
6979if test "$seccomp" = "yes"; then
6980 echo "CONFIG_SECCOMP=y" >> $config_host_mak
c3883e1f
FZ
6981 echo "SECCOMP_CFLAGS=$seccomp_cflags" >> $config_host_mak
6982 echo "SECCOMP_LIBS=$seccomp_libs" >> $config_host_mak
f794573e
EO
6983fi
6984
83fb7adf 6985# XXX: suppress that
7d3505c5 6986if [ "$bsd" = "yes" ] ; then
2358a494 6987 echo "CONFIG_BSD=y" >> $config_host_mak
7d3505c5
FB
6988fi
6989
4d9310f4
DB
6990if test "$localtime_r" = "yes" ; then
6991 echo "CONFIG_LOCALTIME_R=y" >> $config_host_mak
6992fi
3556c233
PB
6993if test "$qom_cast_debug" = "yes" ; then
6994 echo "CONFIG_QOM_CAST_DEBUG=y" >> $config_host_mak
6995fi
f27aaf4b 6996if test "$rbd" = "yes" ; then
d3399d7c 6997 echo "CONFIG_RBD=m" >> $config_host_mak
6ebc91e5
FZ
6998 echo "RBD_CFLAGS=$rbd_cflags" >> $config_host_mak
6999 echo "RBD_LIBS=$rbd_libs" >> $config_host_mak
d0e2fce5
AK
7000fi
7001
7c2acc70 7002echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak
70c60c08
SH
7003if test "$coroutine_pool" = "yes" ; then
7004 echo "CONFIG_COROUTINE_POOL=1" >> $config_host_mak
7005else
7006 echo "CONFIG_COROUTINE_POOL=0" >> $config_host_mak
7007fi
20ff6c80 7008
7d992e4d
PL
7009if test "$debug_stack_usage" = "yes" ; then
7010 echo "CONFIG_DEBUG_STACK_USAGE=y" >> $config_host_mak
7011fi
7012
f0d92b56
LM
7013if test "$crypto_afalg" = "yes" ; then
7014 echo "CONFIG_AF_ALG=y" >> $config_host_mak
7015fi
7016
d2042378
AK
7017if test "$open_by_handle_at" = "yes" ; then
7018 echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak
7019fi
7020
e06a765e
HPB
7021if test "$linux_magic_h" = "yes" ; then
7022 echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak
8ab1bf12
LC
7023fi
7024
cc6e3ca9
GH
7025if test "$pragma_diagnostic_available" = "yes" ; then
7026 echo "CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE=y" >> $config_host_mak
06d71fa1
PM
7027fi
7028
3f4349dc
KW
7029if test "$valgrind_h" = "yes" ; then
7030 echo "CONFIG_VALGRIND_H=y" >> $config_host_mak
7031fi
7032
d83414e1
MAL
7033if test "$have_asan_iface_fiber" = "yes" ; then
7034 echo "CONFIG_ASAN_IFACE_FIBER=y" >> $config_host_mak
7035fi
7036
8ab1bf12
LC
7037if test "$has_environ" = "yes" ; then
7038 echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak
e06a765e
HPB
7039fi
7040
76a347e1
RH
7041if test "$cpuid_h" = "yes" ; then
7042 echo "CONFIG_CPUID_H=y" >> $config_host_mak
7043fi
7044
f540166b
RH
7045if test "$int128" = "yes" ; then
7046 echo "CONFIG_INT128=y" >> $config_host_mak
7047fi
7048
7ebee43e
RH
7049if test "$atomic128" = "yes" ; then
7050 echo "CONFIG_ATOMIC128=y" >> $config_host_mak
7051fi
7052
e6cd4bb5
RH
7053if test "$cmpxchg128" = "yes" ; then
7054 echo "CONFIG_CMPXCHG128=y" >> $config_host_mak
7055fi
7056
df79b996
RH
7057if test "$atomic64" = "yes" ; then
7058 echo "CONFIG_ATOMIC64=y" >> $config_host_mak
7059fi
7060
db432672
RH
7061if test "$vector16" = "yes" ; then
7062 echo "CONFIG_VECTOR16=y" >> $config_host_mak
7063fi
7064
1e6e9aca
RH
7065if test "$getauxval" = "yes" ; then
7066 echo "CONFIG_GETAUXVAL=y" >> $config_host_mak
7067fi
7068
eb100396 7069if test "$glusterfs" = "yes" ; then
d3399d7c 7070 echo "CONFIG_GLUSTERFS=m" >> $config_host_mak
6ebc91e5
FZ
7071 echo "GLUSTERFS_CFLAGS=$glusterfs_cflags" >> $config_host_mak
7072 echo "GLUSTERFS_LIBS=$glusterfs_libs" >> $config_host_mak
0c14fb47
BR
7073fi
7074
d85fa9eb
JC
7075if test "$glusterfs_xlator_opt" = "yes" ; then
7076 echo "CONFIG_GLUSTERFS_XLATOR_OPT=y" >> $config_host_mak
7077fi
7078
0c14fb47
BR
7079if test "$glusterfs_discard" = "yes" ; then
7080 echo "CONFIG_GLUSTERFS_DISCARD=y" >> $config_host_mak
eb100396 7081fi
e06a765e 7082
df3a429a
NV
7083if test "$glusterfs_fallocate" = "yes" ; then
7084 echo "CONFIG_GLUSTERFS_FALLOCATE=y" >> $config_host_mak
7085fi
7086
7c815372
BR
7087if test "$glusterfs_zerofill" = "yes" ; then
7088 echo "CONFIG_GLUSTERFS_ZEROFILL=y" >> $config_host_mak
7089fi
7090
e014dbe7
PKK
7091if test "$glusterfs_ftruncate_has_stat" = "yes" ; then
7092 echo "CONFIG_GLUSTERFS_FTRUNCATE_HAS_STAT=y" >> $config_host_mak
7093fi
7094
0e3b891f
NV
7095if test "$glusterfs_iocb_has_stat" = "yes" ; then
7096 echo "CONFIG_GLUSTERFS_IOCB_HAS_STAT=y" >> $config_host_mak
7097fi
7098
0a12ec87 7099if test "$libssh2" = "yes" ; then
d3399d7c 7100 echo "CONFIG_LIBSSH2=m" >> $config_host_mak
6ebc91e5
FZ
7101 echo "LIBSSH2_CFLAGS=$libssh2_cflags" >> $config_host_mak
7102 echo "LIBSSH2_LIBS=$libssh2_libs" >> $config_host_mak
0a12ec87
RJ
7103fi
7104
ed1701c6
DDAG
7105if test "$live_block_migration" = "yes" ; then
7106 echo "CONFIG_LIVE_BLOCK_MIGRATION=y" >> $config_host_mak
7107fi
7108
3b8acc11
PB
7109if test "$tpm" = "yes"; then
7110 echo 'CONFIG_TPM=$(CONFIG_SOFTMMU)' >> $config_host_mak
f4ede81e 7111 # TPM passthrough support?
3b8acc11
PB
7112 if test "$tpm_passthrough" = "yes"; then
7113 echo "CONFIG_TPM_PASSTHROUGH=y" >> $config_host_mak
7114 fi
f4ede81e
AV
7115 # TPM emulator support?
7116 if test "$tpm_emulator" = "yes"; then
7117 echo "CONFIG_TPM_EMULATOR=y" >> $config_host_mak
7118 fi
3b8acc11
PB
7119fi
7120
5b808275
LV
7121echo "TRACE_BACKENDS=$trace_backends" >> $config_host_mak
7122if have_backend "nop"; then
6d8a764e 7123 echo "CONFIG_TRACE_NOP=y" >> $config_host_mak
22890ab5 7124fi
5b808275 7125if have_backend "simple"; then
6d8a764e
LV
7126 echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak
7127 # Set the appropriate trace file.
953ffe0f 7128 trace_file="\"$trace_file-\" FMT_pid"
9410b56c 7129fi
ed7f5f1d
PB
7130if have_backend "log"; then
7131 echo "CONFIG_TRACE_LOG=y" >> $config_host_mak
6d8a764e 7132fi
5b808275 7133if have_backend "ust"; then
6d8a764e
LV
7134 echo "CONFIG_TRACE_UST=y" >> $config_host_mak
7135fi
5b808275 7136if have_backend "dtrace"; then
6d8a764e
LV
7137 echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak
7138 if test "$trace_backend_stap" = "yes" ; then
7139 echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak
7140 fi
c276b17d 7141fi
5b808275 7142if have_backend "ftrace"; then
781e9545
ET
7143 if test "$linux" = "yes" ; then
7144 echo "CONFIG_TRACE_FTRACE=y" >> $config_host_mak
781e9545 7145 else
21684af0 7146 feature_not_found "ftrace(trace backend)" "ftrace requires Linux"
781e9545
ET
7147 fi
7148fi
0a852417
PD
7149if have_backend "syslog"; then
7150 if test "$posix_syslog" = "yes" ; then
7151 echo "CONFIG_TRACE_SYSLOG=y" >> $config_host_mak
7152 else
7153 feature_not_found "syslog(trace backend)" "syslog not available"
7154 fi
7155fi
9410b56c
PS
7156echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
7157
2da776db
MH
7158if test "$rdma" = "yes" ; then
7159 echo "CONFIG_RDMA=y" >> $config_host_mak
392fb643 7160 echo "RDMA_LIBS=$rdma_libs" >> $config_host_mak
2da776db
MH
7161fi
7162
21ab34c9
MA
7163if test "$pvrdma" = "yes" ; then
7164 echo "CONFIG_PVRDMA=y" >> $config_host_mak
7165fi
7166
575b22b1
LV
7167if test "$have_rtnetlink" = "yes" ; then
7168 echo "CONFIG_RTNETLINK=y" >> $config_host_mak
7169fi
7170
ed279a06
KK
7171if test "$libxml2" = "yes" ; then
7172 echo "CONFIG_LIBXML2=y" >> $config_host_mak
7173 echo "LIBXML2_CFLAGS=$libxml2_cflags" >> $config_host_mak
7174 echo "LIBXML2_LIBS=$libxml2_libs" >> $config_host_mak
7175fi
7176
a6b1d4c0
CX
7177if test "$replication" = "yes" ; then
7178 echo "CONFIG_REPLICATION=y" >> $config_host_mak
7179fi
7180
6a02c806
SH
7181if test "$have_af_vsock" = "yes" ; then
7182 echo "CONFIG_AF_VSOCK=y" >> $config_host_mak
7183fi
7184
4d04351f
CC
7185if test "$have_sysmacros" = "yes" ; then
7186 echo "CONFIG_SYSMACROS=y" >> $config_host_mak
7187fi
7188
49e00a18
AG
7189if test "$have_static_assert" = "yes" ; then
7190 echo "CONFIG_STATIC_ASSERT=y" >> $config_host_mak
7191fi
7192
e674605f
TG
7193if test "$have_utmpx" = "yes" ; then
7194 echo "HAVE_UTMPX=y" >> $config_host_mak
7195fi
7196
e0580342
KR
7197if test "$ivshmem" = "yes" ; then
7198 echo "CONFIG_IVSHMEM=y" >> $config_host_mak
8ca80760 7199fi
e219c499 7200if test "$capstone" != "no" ; then
8ca80760 7201 echo "CONFIG_CAPSTONE=y" >> $config_host_mak
e0580342 7202fi
ba59fb77
PB
7203if test "$debug_mutex" = "yes" ; then
7204 echo "CONFIG_DEBUG_MUTEX=y" >> $config_host_mak
7205fi
e0580342 7206
5c312079
DDAG
7207# Hold two types of flag:
7208# CONFIG_THREAD_SETNAME_BYTHREAD - we've got a way of setting the name on
7209# a thread we have a handle to
479a5747 7210# CONFIG_PTHREAD_SETNAME_NP_W_TID - A way of doing it on a particular
5c312079 7211# platform
479a5747
RB
7212if test "$pthread_setname_np_w_tid" = "yes" ; then
7213 echo "CONFIG_THREAD_SETNAME_BYTHREAD=y" >> $config_host_mak
7214 echo "CONFIG_PTHREAD_SETNAME_NP_W_TID=y" >> $config_host_mak
7215elif test "$pthread_setname_np_wo_tid" = "yes" ; then
5c312079 7216 echo "CONFIG_THREAD_SETNAME_BYTHREAD=y" >> $config_host_mak
479a5747 7217 echo "CONFIG_PTHREAD_SETNAME_NP_WO_TID=y" >> $config_host_mak
5c312079
DDAG
7218fi
7219
da92c3ff
AM
7220if test "$vxhs" = "yes" ; then
7221 echo "CONFIG_VXHS=y" >> $config_host_mak
7222 echo "VXHS_LIBS=$vxhs_libs" >> $config_host_mak
7223fi
7224
17824406
JH
7225if test "$libpmem" = "yes" ; then
7226 echo "CONFIG_LIBPMEM=y" >> $config_host_mak
7227fi
7228
2f740136
JC
7229if test "$bochs" = "yes" ; then
7230 echo "CONFIG_BOCHS=y" >> $config_host_mak
7231fi
7232if test "$cloop" = "yes" ; then
7233 echo "CONFIG_CLOOP=y" >> $config_host_mak
7234fi
7235if test "$dmg" = "yes" ; then
7236 echo "CONFIG_DMG=y" >> $config_host_mak
7237fi
7238if test "$qcow1" = "yes" ; then
7239 echo "CONFIG_QCOW1=y" >> $config_host_mak
7240fi
7241if test "$vdi" = "yes" ; then
7242 echo "CONFIG_VDI=y" >> $config_host_mak
7243fi
7244if test "$vvfat" = "yes" ; then
7245 echo "CONFIG_VVFAT=y" >> $config_host_mak
7246fi
7247if test "$qed" = "yes" ; then
7248 echo "CONFIG_QED=y" >> $config_host_mak
7249fi
7250if test "$parallels" = "yes" ; then
7251 echo "CONFIG_PARALLELS=y" >> $config_host_mak
7252fi
7253if test "$sheepdog" = "yes" ; then
7254 echo "CONFIG_SHEEPDOG=y" >> $config_host_mak
7255fi
7256
5b5e3037 7257if test "$tcg_interpreter" = "yes"; then
9edc19c9 7258 QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg/tci $QEMU_INCLUDES"
5b5e3037 7259elif test "$ARCH" = "sparc64" ; then
9edc19c9 7260 QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg/sparc $QEMU_INCLUDES"
5b5e3037 7261elif test "$ARCH" = "s390x" ; then
9edc19c9 7262 QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg/s390 $QEMU_INCLUDES"
e633a5c6 7263elif test "$ARCH" = "x86_64" || test "$ARCH" = "x32" ; then
9edc19c9 7264 QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg/i386 $QEMU_INCLUDES"
40d964b5 7265elif test "$ARCH" = "ppc64" ; then
9edc19c9 7266 QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg/ppc $QEMU_INCLUDES"
e633a5c6 7267elif test "$ARCH" = "riscv32" || test "$ARCH" = "riscv64" ; then
c4f80543 7268 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/riscv $QEMU_INCLUDES"
5b5e3037 7269else
9edc19c9 7270 QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg/\$(ARCH) $QEMU_INCLUDES"
5b5e3037 7271fi
9edc19c9 7272QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg $QEMU_INCLUDES"
5b5e3037 7273
98ec69ac 7274echo "TOOLS=$tools" >> $config_host_mak
98ec69ac 7275echo "ROMS=$roms" >> $config_host_mak
804edf29
JQ
7276echo "MAKE=$make" >> $config_host_mak
7277echo "INSTALL=$install" >> $config_host_mak
1901cb14
BS
7278echo "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak
7279echo "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak
e999ee44
MT
7280echo "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak
7281echo "INSTALL_LIB=$install -c -m 0644" >> $config_host_mak
c886edfb 7282echo "PYTHON=$python" >> $config_host_mak
755ee70f 7283echo "PYTHON_VERSION=$python_version" >> $config_host_mak
804edf29 7284echo "CC=$cc" >> $config_host_mak
a31a8642
MT
7285if $iasl -h > /dev/null 2>&1; then
7286 echo "IASL=$iasl" >> $config_host_mak
7287fi
804edf29 7288echo "HOST_CC=$host_cc" >> $config_host_mak
83f73fce 7289echo "CXX=$cxx" >> $config_host_mak
3c4a4d0d 7290echo "OBJCC=$objcc" >> $config_host_mak
804edf29 7291echo "AR=$ar" >> $config_host_mak
45d285ab 7292echo "ARFLAGS=$ARFLAGS" >> $config_host_mak
cdbd727c 7293echo "AS=$as" >> $config_host_mak
5f6f0e27 7294echo "CCAS=$ccas" >> $config_host_mak
3dd46c78 7295echo "CPP=$cpp" >> $config_host_mak
804edf29
JQ
7296echo "OBJCOPY=$objcopy" >> $config_host_mak
7297echo "LD=$ld" >> $config_host_mak
9f81aeb5 7298echo "RANLIB=$ranlib" >> $config_host_mak
4852ee95 7299echo "NM=$nm" >> $config_host_mak
9fe6de94 7300echo "WINDRES=$windres" >> $config_host_mak
e2a2ed06 7301echo "CFLAGS=$CFLAGS" >> $config_host_mak
46eef33b 7302echo "CFLAGS_NOPIE=$CFLAGS_NOPIE" >> $config_host_mak
a558ee17 7303echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
11cde1c8 7304echo "QEMU_CXXFLAGS=$QEMU_CXXFLAGS" >> $config_host_mak
f9728943 7305echo "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak
e39f0062
PB
7306if test "$sparse" = "yes" ; then
7307 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak
80fd48df 7308 echo "CPP := REAL_CC=\"\$(CPP)\" cgcc" >> $config_host_mak
2944d742 7309 echo "CXX := REAL_CC=\"\$(CXX)\" cgcc" >> $config_host_mak
e39f0062
PB
7310 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak
7311 echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
7312fi
42da6041
GH
7313if test "$cross_prefix" != ""; then
7314 echo "AUTOCONF_HOST := --host=${cross_prefix%-}" >> $config_host_mak
7315else
7316 echo "AUTOCONF_HOST := " >> $config_host_mak
7317fi
e2a2ed06 7318echo "LDFLAGS=$LDFLAGS" >> $config_host_mak
46eef33b 7319echo "LDFLAGS_NOPIE=$LDFLAGS_NOPIE" >> $config_host_mak
8a99e9a3 7320echo "QEMU_LDFLAGS=$QEMU_LDFLAGS" >> $config_host_mak
6969ec6c 7321echo "LD_REL_FLAGS=$LD_REL_FLAGS" >> $config_host_mak
e57218b6 7322echo "LD_I386_EMULATION=$ld_i386_emulation" >> $config_host_mak
73da375e 7323echo "LIBS+=$LIBS" >> $config_host_mak
3e2e0e6b 7324echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
409437e1 7325echo "PTHREAD_LIB=$PTHREAD_LIB" >> $config_host_mak
804edf29 7326echo "EXESUF=$EXESUF" >> $config_host_mak
17969268
FZ
7327echo "DSOSUF=$DSOSUF" >> $config_host_mak
7328echo "LDFLAGS_SHARED=$LDFLAGS_SHARED" >> $config_host_mak
957f1f99 7329echo "LIBS_QGA+=$libs_qga" >> $config_host_mak
90246037
DB
7330echo "TASN1_LIBS=$tasn1_libs" >> $config_host_mak
7331echo "TASN1_CFLAGS=$tasn1_cflags" >> $config_host_mak
94dd53c5 7332echo "POD2MAN=$POD2MAN" >> $config_host_mak
1d728c39
BS
7333if test "$gcov" = "yes" ; then
7334 echo "CONFIG_GCOV=y" >> $config_host_mak
7335 echo "GCOV=$gcov_tool" >> $config_host_mak
7336fi
804edf29 7337
51a12b51
AB
7338if test "$docker" != "no"; then
7339 echo "HAVE_USER_DOCKER=y" >> $config_host_mak
7340fi
7341
3efac6eb
TG
7342if test "$libudev" != "no"; then
7343 echo "CONFIG_LIBUDEV=y" >> $config_host_mak
7344 echo "LIBUDEV_LIBS=$libudev_libs" >> $config_host_mak
7345fi
7346
6efd7517
PM
7347# use included Linux headers
7348if test "$linux" = "yes" ; then
a307beb6 7349 mkdir -p linux-headers
6efd7517 7350 case "$cpu" in
c72b26ec 7351 i386|x86_64|x32)
08312a63 7352 linux_arch=x86
6efd7517 7353 ;;
a69dc537 7354 ppc|ppc64)
08312a63 7355 linux_arch=powerpc
6efd7517
PM
7356 ;;
7357 s390x)
08312a63
PM
7358 linux_arch=s390
7359 ;;
1f080313
CF
7360 aarch64)
7361 linux_arch=arm64
7362 ;;
222e7d11
SL
7363 mips64)
7364 linux_arch=mips
7365 ;;
08312a63
PM
7366 *)
7367 # For most CPUs the kernel architecture name and QEMU CPU name match.
7368 linux_arch="$cpu"
6efd7517
PM
7369 ;;
7370 esac
08312a63
PM
7371 # For non-KVM architectures we will not have asm headers
7372 if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then
7373 symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm
7374 fi
6efd7517
PM
7375fi
7376
1d14ffa9 7377for target in $target_list; do
97a847bc 7378target_dir="$target"
25be210f 7379config_target_mak=$target_dir/config-target.mak
89138857 7380target_name=$(echo $target | cut -d '-' -f 1)
97a847bc 7381target_bigendian="no"
1f3d3c8f 7382
c1799a84 7383case "$target_name" in
a69dc537 7384 armeb|aarch64_be|hppa|lm32|m68k|microblaze|mips|mipsn32|mips64|moxie|or1k|ppc|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb)
ea2d6a39
JQ
7385 target_bigendian=yes
7386 ;;
7387esac
97a847bc 7388target_softmmu="no"
997344f3 7389target_user_only="no"
831b7825 7390target_linux_user="no"
84778508 7391target_bsd_user="no"
9e407a85 7392case "$target" in
c1799a84 7393 ${target_name}-softmmu)
9e407a85
PB
7394 target_softmmu="yes"
7395 ;;
c1799a84 7396 ${target_name}-linux-user)
9e407a85
PB
7397 target_user_only="yes"
7398 target_linux_user="yes"
7399 ;;
c1799a84 7400 ${target_name}-bsd-user)
84778508
BS
7401 target_user_only="yes"
7402 target_bsd_user="yes"
7403 ;;
9e407a85 7404 *)
76ad07a4 7405 error_exit "Target '$target' not recognised"
9e407a85
PB
7406 exit 1
7407 ;;
7408esac
831b7825 7409
d75402b5
AB
7410target_compiler=""
7411target_compiler_static=""
716a507c 7412target_compiler_cflags=""
d75402b5 7413
97a847bc 7414mkdir -p $target_dir
25be210f 7415echo "# Automatically generated by configure - do not modify" > $config_target_mak
de83cd02 7416
e5fe0c52 7417bflt="no"
ca759f9e 7418mttcg="no"
89138857 7419interp_prefix1=$(echo "$interp_prefix" | sed "s/%M/$target_name/g")
56aebc89 7420gdb_xml_files=""
7ba1e619 7421
c1799a84 7422TARGET_ARCH="$target_name"
6acff7da 7423TARGET_BASE_ARCH=""
e6e91b9c 7424TARGET_ABI_DIR=""
e73aae67 7425
c1799a84 7426case "$target_name" in
2408a527 7427 i386)
0a7fa00a 7428 mttcg="yes"
7b0f97ba 7429 gdb_xml_files="i386-32bit.xml"
d75402b5 7430 target_compiler=$cross_cc_i386
716a507c 7431 target_compiler_cflags=$cross_cc_ccflags_i386
2408a527
AJ
7432 ;;
7433 x86_64)
6acff7da 7434 TARGET_BASE_ARCH=i386
0a7fa00a 7435 mttcg="yes"
7b0f97ba 7436 gdb_xml_files="i386-64bit.xml"
d75402b5 7437 target_compiler=$cross_cc_x86_64
2408a527
AJ
7438 ;;
7439 alpha)
5ee4f3c2 7440 mttcg="yes"
d75402b5 7441 target_compiler=$cross_cc_alpha
2408a527
AJ
7442 ;;
7443 arm|armeb)
b498c8a0 7444 TARGET_ARCH=arm
2408a527 7445 bflt="yes"
ca759f9e 7446 mttcg="yes"
56aebc89 7447 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
d75402b5 7448 target_compiler=$cross_cc_arm
d422b2bc 7449 eval "target_compiler_cflags=\$cross_cc_cflags_${target_name}"
2408a527 7450 ;;
722dd7be
MW
7451 aarch64|aarch64_be)
7452 TARGET_ARCH=aarch64
6a49fa95
AG
7453 TARGET_BASE_ARCH=arm
7454 bflt="yes"
ca759f9e 7455 mttcg="yes"
8f95ce2e 7456 gdb_xml_files="aarch64-core.xml aarch64-fpu.xml arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
d75402b5 7457 target_compiler=$cross_cc_aarch64
d422b2bc 7458 eval "target_compiler_cflags=\$cross_cc_cflags_${target_name}"
6a49fa95 7459 ;;
2408a527 7460 cris)
d75402b5 7461 target_compiler=$cross_cc_cris
2408a527 7462 ;;
61766fe9 7463 hppa)
7b93dab5 7464 mttcg="yes"
d75402b5 7465 target_compiler=$cross_cc_hppa
61766fe9 7466 ;;
613a22c9 7467 lm32)
d75402b5 7468 target_compiler=$cross_cc_lm32
613a22c9 7469 ;;
2408a527 7470 m68k)
2408a527 7471 bflt="yes"
5a4526b2 7472 gdb_xml_files="cf-core.xml cf-fp.xml m68k-fp.xml"
d75402b5 7473 target_compiler=$cross_cc_m68k
2408a527 7474 ;;
877fdc12
EI
7475 microblaze|microblazeel)
7476 TARGET_ARCH=microblaze
72b675ca 7477 bflt="yes"
be73ef64 7478 echo "TARGET_ABI32=y" >> $config_target_mak
d75402b5 7479 target_compiler=$cross_cc_microblaze
72b675ca 7480 ;;
0adcffb1 7481 mips|mipsel)
0454728c 7482 mttcg="yes"
b498c8a0 7483 TARGET_ARCH=mips
d75402b5 7484 target_compiler=$cross_cc_mips
25be210f 7485 echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
2408a527
AJ
7486 ;;
7487 mipsn32|mipsn32el)
0454728c 7488 mttcg="yes"
597e2cec 7489 TARGET_ARCH=mips64
6acff7da 7490 TARGET_BASE_ARCH=mips
d75402b5 7491 target_compiler=$cross_cc_mipsn32
25be210f 7492 echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
597e2cec 7493 echo "TARGET_ABI32=y" >> $config_target_mak
2408a527
AJ
7494 ;;
7495 mips64|mips64el)
0454728c 7496 mttcg="yes"
b498c8a0 7497 TARGET_ARCH=mips64
6acff7da 7498 TARGET_BASE_ARCH=mips
d75402b5 7499 target_compiler=$cross_cc_mips64
25be210f 7500 echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
2408a527 7501 ;;
d15a9c23 7502 moxie)
d75402b5 7503 target_compiler=$cross_cc_moxie
d15a9c23 7504 ;;
e671711c 7505 nios2)
d75402b5 7506 target_compiler=$cross_cc_nios2
e671711c 7507 ;;
4a09d0bb 7508 or1k)
d75402b5 7509 target_compiler=$cross_cc_or1k
e67db06e
JL
7510 TARGET_ARCH=openrisc
7511 TARGET_BASE_ARCH=openrisc
e67db06e 7512 ;;
2408a527 7513 ppc)
c8b3532d 7514 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
d75402b5 7515 target_compiler=$cross_cc_powerpc
2408a527 7516 ;;
2408a527 7517 ppc64)
6acff7da 7518 TARGET_BASE_ARCH=ppc
e6e91b9c 7519 TARGET_ABI_DIR=ppc
f0b0685d 7520 mttcg=yes
1438eff3 7521 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
d75402b5 7522 target_compiler=$cross_cc_ppc64
2408a527 7523 ;;
9c35126c
DK
7524 ppc64le)
7525 TARGET_ARCH=ppc64
7526 TARGET_BASE_ARCH=ppc
7527 TARGET_ABI_DIR=ppc
f0b0685d 7528 mttcg=yes
1438eff3 7529 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
d75402b5 7530 target_compiler=$cross_cc_ppc64le
9c35126c 7531 ;;
2408a527 7532 ppc64abi32)
b498c8a0 7533 TARGET_ARCH=ppc64
6acff7da 7534 TARGET_BASE_ARCH=ppc
e6e91b9c 7535 TARGET_ABI_DIR=ppc
25be210f 7536 echo "TARGET_ABI32=y" >> $config_target_mak
1438eff3 7537 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
d75402b5 7538 target_compiler=$cross_cc_ppc64abi32
2408a527 7539 ;;
25fa194b
MC
7540 riscv32)
7541 TARGET_BASE_ARCH=riscv
7542 TARGET_ABI_DIR=riscv
7543 mttcg=yes
1a987a1d 7544 gdb_xml_files="riscv-32bit-cpu.xml riscv-32bit-fpu.xml riscv-32bit-csr.xml"
d75402b5 7545 target_compiler=$cross_cc_riscv32
25fa194b
MC
7546 ;;
7547 riscv64)
7548 TARGET_BASE_ARCH=riscv
7549 TARGET_ABI_DIR=riscv
7550 mttcg=yes
c670970d 7551 gdb_xml_files="riscv-64bit-cpu.xml riscv-64bit-fpu.xml riscv-64bit-csr.xml"
d75402b5 7552 target_compiler=$cross_cc_riscv64
25fa194b 7553 ;;
2408a527 7554 sh4|sh4eb)
b498c8a0 7555 TARGET_ARCH=sh4
2408a527 7556 bflt="yes"
d75402b5 7557 target_compiler=$cross_cc_sh4
2408a527
AJ
7558 ;;
7559 sparc)
d75402b5 7560 target_compiler=$cross_cc_sparc
2408a527
AJ
7561 ;;
7562 sparc64)
6acff7da 7563 TARGET_BASE_ARCH=sparc
d75402b5 7564 target_compiler=$cross_cc_sparc64
2408a527
AJ
7565 ;;
7566 sparc32plus)
b498c8a0 7567 TARGET_ARCH=sparc64
6acff7da 7568 TARGET_BASE_ARCH=sparc
e6e91b9c 7569 TARGET_ABI_DIR=sparc
d75402b5 7570 target_compiler=$cross_cc_sparc32plus
25be210f 7571 echo "TARGET_ABI32=y" >> $config_target_mak
2408a527 7572 ;;
24e804ec 7573 s390x)
63685bc4 7574 mttcg=yes
86158a2a 7575 gdb_xml_files="s390x-core64.xml s390-acr.xml s390-fpr.xml s390-vx.xml s390-cr.xml s390-virt.xml s390-gs.xml"
d75402b5 7576 target_compiler=$cross_cc_s390x
24e804ec 7577 ;;
444e06b1 7578 tilegx)
d75402b5 7579 target_compiler=$cross_cc_tilegx
444e06b1 7580 ;;
5ecaa4ed 7581 tricore)
d75402b5 7582 target_compiler=$cross_cc_tricore
5ecaa4ed 7583 ;;
d2fbca94 7584 unicore32)
d75402b5 7585 target_compiler=$cross_cc_unicore32
d2fbca94 7586 ;;
cfa550c6
MF
7587 xtensa|xtensaeb)
7588 TARGET_ARCH=xtensa
02e33e9f 7589 bflt="yes"
9fb40342 7590 mttcg="yes"
d75402b5 7591 target_compiler=$cross_cc_xtensa
cfa550c6 7592 ;;
2408a527 7593 *)
76ad07a4 7594 error_exit "Unsupported target CPU"
2408a527
AJ
7595 ;;
7596esac
5e8861a0
PB
7597# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
7598if [ "$TARGET_BASE_ARCH" = "" ]; then
7599 TARGET_BASE_ARCH=$TARGET_ARCH
7600fi
7601
d75402b5
AB
7602# Do we have a cross compiler for this target?
7603if has $target_compiler; then
7604
7605 write_c_skeleton
7606
716a507c 7607 if ! do_compiler "$target_compiler" $target_compiler_cflags -o $TMPE $TMPC -static ; then
d75402b5 7608 # For host systems we might get away with building without -static
716a507c 7609 if ! do_compiler "$target_compiler" $target_compiler_cflags -o $TMPE $TMPC ; then
d75402b5
AB
7610 target_compiler=""
7611 else
7612 enabled_cross_compilers="${enabled_cross_compilers} '${target_compiler}'"
7613 target_compiler_static="n"
7614 fi
7615 else
7616 enabled_cross_compilers="${enabled_cross_compilers} '${target_compiler}'"
7617 target_compiler_static="y"
7618 fi
7619else
7620 target_compiler=""
7621fi
7622
5e8861a0
PB
7623symlink "$source_path/Makefile.target" "$target_dir/Makefile"
7624
99afc91d
DB
7625upper() {
7626 echo "$@"| LC_ALL=C tr '[a-z]' '[A-Z]'
7627}
7628
89138857 7629target_arch_name="$(upper $TARGET_ARCH)"
25be210f 7630echo "TARGET_$target_arch_name=y" >> $config_target_mak
c1799a84 7631echo "TARGET_NAME=$target_name" >> $config_target_mak
25be210f 7632echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
e6e91b9c
JQ
7633if [ "$TARGET_ABI_DIR" = "" ]; then
7634 TARGET_ABI_DIR=$TARGET_ARCH
7635fi
25be210f 7636echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
adfc3e91
SS
7637if [ "$HOST_VARIANT_DIR" != "" ]; then
7638 echo "HOST_VARIANT_DIR=$HOST_VARIANT_DIR" >> $config_target_mak
7639fi
3b6b7550
PB
7640
7641if supported_xen_target $target; then
7642 echo "CONFIG_XEN=y" >> $config_target_mak
e0e312f3 7643 echo "$target/config-devices.mak: CONFIG_XEN=y" >> $config_host_mak
3b6b7550 7644 if test "$xen_pci_passthrough" = yes; then
eb6fda0f 7645 echo "CONFIG_XEN_PCI_PASSTHROUGH=y" >> "$config_target_mak"
1b0c87fc 7646 fi
e0e312f3
PB
7647else
7648 echo "$target/config-devices.mak: CONFIG_XEN=n" >> $config_host_mak
3b6b7550
PB
7649fi
7650if supported_kvm_target $target; then
7651 echo "CONFIG_KVM=y" >> $config_target_mak
e0e312f3
PB
7652 echo "$target/config-devices.mak: CONFIG_KVM=y" >> $config_host_mak
7653else
7654 echo "$target/config-devices.mak: CONFIG_KVM=n" >> $config_host_mak
3b6b7550
PB
7655fi
7656if supported_hax_target $target; then
7657 echo "CONFIG_HAX=y" >> $config_target_mak
b0cb0a66 7658fi
c97d6d2c
SAGDR
7659if supported_hvf_target $target; then
7660 echo "CONFIG_HVF=y" >> $config_target_mak
7661fi
d661d9a4
JTV
7662if supported_whpx_target $target; then
7663 echo "CONFIG_WHPX=y" >> $config_target_mak
7664fi
de83cd02 7665if test "$target_bigendian" = "yes" ; then
25be210f 7666 echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
de83cd02 7667fi
97a847bc 7668if test "$target_softmmu" = "yes" ; then
25be210f 7669 echo "CONFIG_SOFTMMU=y" >> $config_target_mak
ca759f9e
AB
7670 if test "$mttcg" = "yes" ; then
7671 echo "TARGET_SUPPORTS_MTTCG=y" >> $config_target_mak
7672 fi
43ce4dfe 7673fi
997344f3 7674if test "$target_user_only" = "yes" ; then
25be210f 7675 echo "CONFIG_USER_ONLY=y" >> $config_target_mak
a2c80be9 7676 echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
997344f3 7677fi
831b7825 7678if test "$target_linux_user" = "yes" ; then
25be210f 7679 echo "CONFIG_LINUX_USER=y" >> $config_target_mak
831b7825 7680fi
56aebc89
PB
7681list=""
7682if test ! -z "$gdb_xml_files" ; then
7683 for x in $gdb_xml_files; do
7684 list="$list $source_path/gdb-xml/$x"
7685 done
3d0f1517 7686 echo "TARGET_XML_FILES=$list" >> $config_target_mak
56aebc89 7687fi
97a847bc 7688
e633a5c6 7689if test "$target_user_only" = "yes" && test "$bflt" = "yes"; then
25be210f 7690 echo "TARGET_HAS_BFLT=y" >> $config_target_mak
e5fe0c52 7691fi
84778508 7692if test "$target_bsd_user" = "yes" ; then
25be210f 7693 echo "CONFIG_BSD_USER=y" >> $config_target_mak
84778508 7694fi
5b0753e0 7695
d75402b5
AB
7696if test -n "$target_compiler"; then
7697 echo "CROSS_CC_GUEST=\"$target_compiler\"" >> $config_target_mak
7698
7699 if test -n "$target_compiler_static"; then
7700 echo "CROSS_CC_GUEST_STATIC=$target_compiler_static" >> $config_target_mak
7701 fi
716a507c
AB
7702
7703 if test -n "$target_compiler_cflags"; then
7704 echo "CROSS_CC_GUEST_CFLAGS=$target_compiler_cflags" >> $config_target_mak
7705 fi
d75402b5
AB
7706fi
7707
716a507c 7708
4afddb55 7709# generate QEMU_CFLAGS/LDFLAGS for targets
fa282484 7710
4afddb55 7711cflags=""
fa282484 7712ldflags=""
9b8e111f 7713
c765fcac
PC
7714disas_config() {
7715 echo "CONFIG_${1}_DIS=y" >> $config_target_mak
7716 echo "CONFIG_${1}_DIS=y" >> config-all-disas.mak
7717}
7718
64656024
JQ
7719for i in $ARCH $TARGET_BASE_ARCH ; do
7720 case "$i" in
7721 alpha)
c765fcac 7722 disas_config "ALPHA"
64656024 7723 ;;
82295d8a
RH
7724 aarch64)
7725 if test -n "${cxx}"; then
c765fcac 7726 disas_config "ARM_A64"
82295d8a
RH
7727 fi
7728 ;;
64656024 7729 arm)
c765fcac 7730 disas_config "ARM"
999b53ec 7731 if test -n "${cxx}"; then
c765fcac 7732 disas_config "ARM_A64"
999b53ec 7733 fi
64656024
JQ
7734 ;;
7735 cris)
c765fcac 7736 disas_config "CRIS"
64656024 7737 ;;
429b31a2
RH
7738 hppa)
7739 disas_config "HPPA"
7740 ;;
c72b26ec 7741 i386|x86_64|x32)
c765fcac 7742 disas_config "I386"
64656024 7743 ;;
79368f49 7744 lm32)
c765fcac 7745 disas_config "LM32"
79368f49 7746 ;;
64656024 7747 m68k)
c765fcac 7748 disas_config "M68K"
64656024 7749 ;;
877fdc12 7750 microblaze*)
c765fcac 7751 disas_config "MICROBLAZE"
64656024
JQ
7752 ;;
7753 mips*)
c765fcac 7754 disas_config "MIPS"
89a955e8
AM
7755 if test -n "${cxx}"; then
7756 disas_config "NANOMIPS"
7757 fi
64656024 7758 ;;
d15a9c23 7759 moxie*)
c765fcac 7760 disas_config "MOXIE"
d15a9c23 7761 ;;
e671711c
MV
7762 nios2)
7763 disas_config "NIOS2"
7764 ;;
4a09d0bb 7765 or1k)
c765fcac 7766 disas_config "OPENRISC"
e67db06e 7767 ;;
64656024 7768 ppc*)
c765fcac 7769 disas_config "PPC"
64656024 7770 ;;
c4f80543 7771 riscv*)
25fa194b
MC
7772 disas_config "RISCV"
7773 ;;
24e804ec 7774 s390*)
c765fcac 7775 disas_config "S390"
64656024
JQ
7776 ;;
7777 sh4)
c765fcac 7778 disas_config "SH4"
64656024
JQ
7779 ;;
7780 sparc*)
c765fcac 7781 disas_config "SPARC"
64656024 7782 ;;
cfa550c6 7783 xtensa*)
c765fcac 7784 disas_config "XTENSA"
cfa550c6 7785 ;;
64656024
JQ
7786 esac
7787done
9195b2c2 7788if test "$tcg_interpreter" = "yes" ; then
c765fcac 7789 disas_config "TCI"
9195b2c2 7790fi
64656024 7791
6ee7126f
JQ
7792case "$ARCH" in
7793alpha)
7794 # Ensure there's only a single GP
7795 cflags="-msmall-data $cflags"
7796;;
7797esac
7798
d02c1db3 7799if test "$gprof" = "yes" ; then
0acf7ded 7800 echo "TARGET_GPROF=y" >> $config_target_mak
d02c1db3
JQ
7801 if test "$target_linux_user" = "yes" ; then
7802 cflags="-p $cflags"
7803 ldflags="-p $ldflags"
7804 fi
7805 if test "$target_softmmu" = "yes" ; then
7806 ldflags="-p $ldflags"
25be210f 7807 echo "GPROF_CFLAGS=-p" >> $config_target_mak
d02c1db3
JQ
7808 fi
7809fi
7810
e633a5c6 7811if test "$target_linux_user" = "yes" || test "$target_bsd_user" = "yes" ; then
964c6fa1 7812 ldflags="$ldflags $textseg_ldflags"
fa282484 7813fi
fa282484 7814
e9a3591f
CB
7815# Newer kernels on s390 check for an S390_PGSTE program header and
7816# enable the pgste page table extensions in that case. This makes
7817# the vm.allocate_pgste sysctl unnecessary. We enable this program
7818# header if
7819# - we build on s390x
7820# - we build the system emulation for s390x (qemu-system-s390x)
7821# - KVM is enabled
7822# - the linker supports --s390-pgste
e633a5c6
EB
7823if test "$TARGET_ARCH" = "s390x" && test "$target_softmmu" = "yes" && \
7824 test "$ARCH" = "s390x" && test "$kvm" = "yes"; then
e9a3591f
CB
7825 if ld_has --s390-pgste ; then
7826 ldflags="-Wl,--s390-pgste $ldflags"
7827 fi
7828fi
7829
25be210f
JQ
7830echo "LDFLAGS+=$ldflags" >> $config_target_mak
7831echo "QEMU_CFLAGS+=$cflags" >> $config_target_mak
fa282484 7832
97a847bc 7833done # for target in $targets
7d13299d 7834
d75402b5
AB
7835if test -n "$enabled_cross_compilers"; then
7836 echo
7837 echo "NOTE: cross-compilers enabled: $enabled_cross_compilers"
7838fi
7839
e3971d61 7840if [ "$fdt" = "git" ]; then
a540f158
PC
7841 echo "config-host.h: subdir-dtc" >> $config_host_mak
7842fi
e219c499
RH
7843if [ "$capstone" = "git" -o "$capstone" = "internal" ]; then
7844 echo "config-host.h: subdir-capstone" >> $config_host_mak
7845fi
7846if test -n "$LIBCAPSTONE"; then
7847 echo "LIBCAPSTONE=$LIBCAPSTONE" >> $config_host_mak
7848fi
a540f158 7849
a99d57bb
WG
7850if test "$numa" = "yes"; then
7851 echo "CONFIG_NUMA=y" >> $config_host_mak
7852fi
7853
fd0e6053
JS
7854if test "$ccache_cpp2" = "yes"; then
7855 echo "export CCACHE_CPP2=y" >> $config_host_mak
7856fi
7857
e29e5c6e
PM
7858# If we're using a separate build tree, set it up now.
7859# DIRS are directories which we simply mkdir in the build tree;
7860# LINKS are things to symlink back into the source tree
7861# (these can be both files and directories).
7862# Caution: do not add files or directories here using wildcards. This
7863# will result in problems later if a new file matching the wildcard is
7864# added to the source tree -- nothing will cause configure to be rerun
7865# so the build tree will be missing the link back to the new file, and
7866# tests might fail. Prefer to keep the relevant files in their own
7867# directory and symlink the directory instead.
b1fb9a63 7868DIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32 tests/libqos tests/qapi-schema tests/tcg/xtensa tests/qemu-iotests tests/vm"
fc281c80 7869DIRS="$DIRS tests/fp tests/qgraph"
b855f8d1 7870DIRS="$DIRS docs docs/interop fsdev scsi"
9933c305 7871DIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas pc-bios/s390-ccw"
d1807a4f 7872DIRS="$DIRS roms/seabios roms/vgabios"
fe07b62c 7873LINKS="Makefile tests/tcg/Makefile"
e29e5c6e
PM
7874LINKS="$LINKS tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit"
7875LINKS="$LINKS tests/tcg/lm32/Makefile tests/tcg/xtensa/Makefile po/Makefile"
7876LINKS="$LINKS tests/fp/Makefile"
7877LINKS="$LINKS pc-bios/optionrom/Makefile pc-bios/keymaps"
7878LINKS="$LINKS pc-bios/spapr-rtas/Makefile"
7879LINKS="$LINKS pc-bios/s390-ccw/Makefile"
7880LINKS="$LINKS roms/seabios/Makefile roms/vgabios/Makefile"
7881LINKS="$LINKS pc-bios/qemu-icon.bmp"
7882LINKS="$LINKS .gdbinit scripts" # scripts needed by relative path in .gdbinit
39950353
PM
7883LINKS="$LINKS tests/acceptance tests/data"
7884LINKS="$LINKS tests/qemu-iotests/check"
8f8fd9ed 7885LINKS="$LINKS python"
753d11f2
RH
7886for bios_file in \
7887 $source_path/pc-bios/*.bin \
225a9ab8 7888 $source_path/pc-bios/*.lid \
5acc2ec0 7889 $source_path/pc-bios/*.aml \
753d11f2
RH
7890 $source_path/pc-bios/*.rom \
7891 $source_path/pc-bios/*.dtb \
e89e33e1 7892 $source_path/pc-bios/*.img \
753d11f2 7893 $source_path/pc-bios/openbios-* \
4e73c781 7894 $source_path/pc-bios/u-boot.* \
753d11f2
RH
7895 $source_path/pc-bios/palcode-*
7896do
e29e5c6e 7897 LINKS="$LINKS pc-bios/$(basename $bios_file)"
d1807a4f
PB
7898done
7899mkdir -p $DIRS
e29e5c6e 7900for f in $LINKS ; do
cab00a5a 7901 if [ -e "$source_path/$f" ] && [ "$pwd_is_source_path" != "y" ]; then
f9245e10
PM
7902 symlink "$source_path/$f" "$f"
7903 fi
d1807a4f 7904done
1ad2134f 7905
c34ebfdc 7906# temporary config to build submodules
2d9f27d2 7907for rom in seabios vgabios ; do
c34ebfdc 7908 config_mak=roms/$rom/config.mak
37116c89 7909 echo "# Automatically generated by configure - do not modify" > $config_mak
c34ebfdc 7910 echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
cdbd727c 7911 echo "AS=$as" >> $config_mak
5f6f0e27 7912 echo "CCAS=$ccas" >> $config_mak
c34ebfdc
AL
7913 echo "CC=$cc" >> $config_mak
7914 echo "BCC=bcc" >> $config_mak
3dd46c78 7915 echo "CPP=$cpp" >> $config_mak
c34ebfdc 7916 echo "OBJCOPY=objcopy" >> $config_mak
a31a8642 7917 echo "IASL=$iasl" >> $config_mak
c34ebfdc 7918 echo "LD=$ld" >> $config_mak
9f81aeb5 7919 echo "RANLIB=$ranlib" >> $config_mak
c34ebfdc
AL
7920done
7921
76c7560a
HR
7922# set up qemu-iotests in this build directory
7923iotests_common_env="tests/qemu-iotests/common.env"
76c7560a
HR
7924
7925echo "# Automatically generated by configure - do not modify" > "$iotests_common_env"
7926echo >> "$iotests_common_env"
7927echo "export PYTHON='$python'" >> "$iotests_common_env"
7928
dc655404
MT
7929# Save the configure command line for later reuse.
7930cat <<EOD >config.status
7931#!/bin/sh
7932# Generated by configure.
7933# Run this file to recreate the current configuration.
7934# Compiler output produced by configure, useful for debugging
7935# configure, is in config.log if it exists.
7936EOD
e811da7f
DB
7937
7938preserve_env() {
7939 envname=$1
7940
7941 eval envval=\$$envname
7942
7943 if test -n "$envval"
7944 then
7945 echo "$envname='$envval'" >> config.status
7946 echo "export $envname" >> config.status
7947 else
7948 echo "unset $envname" >> config.status
7949 fi
7950}
7951
7952# Preserve various env variables that influence what
7953# features/build target configure will detect
7954preserve_env AR
7955preserve_env AS
7956preserve_env CC
7957preserve_env CPP
7958preserve_env CXX
7959preserve_env INSTALL
7960preserve_env LD
7961preserve_env LD_LIBRARY_PATH
7962preserve_env LIBTOOL
7963preserve_env MAKE
7964preserve_env NM
7965preserve_env OBJCOPY
7966preserve_env PATH
7967preserve_env PKG_CONFIG
7968preserve_env PKG_CONFIG_LIBDIR
7969preserve_env PKG_CONFIG_PATH
7970preserve_env PYTHON
7971preserve_env SDL_CONFIG
7972preserve_env SDL2_CONFIG
7973preserve_env SMBD
7974preserve_env STRIP
7975preserve_env WINDRES
7976
dc655404
MT
7977printf "exec" >>config.status
7978printf " '%s'" "$0" "$@" >>config.status
cf7cc929 7979echo ' "$@"' >>config.status
dc655404
MT
7980chmod +x config.status
7981
8cd05ab6 7982rm -r "$TMPDIR1"