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