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