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