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