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