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