]> git.proxmox.com Git - qemu.git/blame - configure
Add new user mode option -ignore-environment
[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
9ac81bbb 21
52166aa0 22compile_object() {
a558ee17 23 $cc $QEMU_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
52166aa0
JQ
24}
25
26compile_prog() {
27 local_cflags="$1"
28 local_ldflags="$2"
a558ee17 29 $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags > /dev/null 2> /dev/null
52166aa0
JQ
30}
31
0dba6195
LM
32# check whether a command is available to this shell (may be either an
33# executable or a builtin)
34has() {
35 type "$1" >/dev/null 2>&1
36}
37
38# search for an executable in PATH
39path_of() {
40 local_command="$1"
41 local_ifs="$IFS"
42 local_dir=""
43
44 # pathname has a dir component?
45 if [ "${local_command#*/}" != "$local_command" ]; then
46 if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then
47 echo "$local_command"
48 return 0
49 fi
50 fi
51 if [ -z "$local_command" ]; then
52 return 1
53 fi
54
55 IFS=:
56 for local_dir in $PATH; do
57 if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then
58 echo "$local_dir/$local_command"
59 IFS="${local_ifs:-$(printf ' \t\n')}"
60 return 0
61 fi
62 done
63 # not found
64 IFS="${local_ifs:-$(printf ' \t\n')}"
65 return 1
66}
67
7d13299d 68# default parameters
2ff6b91e 69cpu=""
1e43adfc 70interp_prefix="/usr/gnemul/qemu-%M"
43ce4dfe 71static="no"
ed968ff1 72sparc_cpu=""
7d13299d
FB
73cross_prefix=""
74cc="gcc"
0c58ac1c 75audio_drv_list=""
4c9b53e3 76audio_card_list="ac97 es1370 sb16"
77audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus"
eb852011 78block_drv_whitelist=""
7d13299d
FB
79host_cc="gcc"
80ar="ar"
81make="make"
6a882643 82install="install"
7aa486fe
AL
83objcopy="objcopy"
84ld="ld"
52ba784d 85strip="strip"
9fe6de94 86windres="windres"
c81da56e 87helper_cflags=""
73da375e 88libs_softmmu=""
3e2e0e6b 89libs_tools=""
67f86e8e 90audio_pt_int=""
d5631638 91audio_win_int=""
ac0df51d
AL
92
93# parse CC options first
94for opt do
95 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
96 case "$opt" in
97 --cross-prefix=*) cross_prefix="$optarg"
98 ;;
99 --cc=*) cc="$optarg"
100 ;;
2ff6b91e
JQ
101 --cpu=*) cpu="$optarg"
102 ;;
a558ee17 103 --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS"
e2a2ed06
JQ
104 ;;
105 --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS"
106 ;;
50e7b1a0
JQ
107 --sparc_cpu=*)
108 sparc_cpu="$optarg"
109 case $sparc_cpu in
ed968ff1 110 v7|v8|v8plus|v8plusa)
50e7b1a0
JQ
111 cpu="sparc"
112 ;;
113 v9)
50e7b1a0
JQ
114 cpu="sparc64"
115 ;;
116 *)
117 echo "undefined SPARC architecture. Exiting";
118 exit 1
119 ;;
120 esac
121 ;;
ac0df51d
AL
122 esac
123done
ac0df51d
AL
124# OS specific
125# Using uname is really, really broken. Once we have the right set of checks
126# we can eliminate it's usage altogether
127
128cc="${cross_prefix}${cc}"
129ar="${cross_prefix}${ar}"
7aa486fe
AL
130objcopy="${cross_prefix}${objcopy}"
131ld="${cross_prefix}${ld}"
52ba784d 132strip="${cross_prefix}${strip}"
9fe6de94 133windres="${cross_prefix}${windres}"
ac0df51d 134
be17dc90
MT
135# default flags for all hosts
136QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
137CFLAGS="-g $CFLAGS"
138QEMU_CFLAGS="-Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
139QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
140QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
84958305 141QEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
be17dc90
MT
142QEMU_CFLAGS="-I. -I\$(SRC_PATH) $QEMU_CFLAGS"
143LDFLAGS="-g $LDFLAGS"
144
a21493e0
BS
145gcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
146gcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
0b65b9e1 147gcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
a21493e0 148gcc_flags="-fstack-protector-all $gcc_flags"
be17dc90 149cat > $TMPC << EOF
aa527b65 150int main(void) { return 0; }
be17dc90
MT
151EOF
152for flag in $gcc_flags; do
aa527b65 153 if compile_prog "-Werror $QEMU_CFLAGS" "-Werror $flag" ; then
be17dc90
MT
154 QEMU_CFLAGS="$flag $QEMU_CFLAGS"
155 fi
156done
157
ac0df51d
AL
158# check that the C compiler works.
159cat > $TMPC <<EOF
160int main(void) {}
161EOF
162
52166aa0 163if compile_object ; then
ac0df51d
AL
164 : C compiler works ok
165else
166 echo "ERROR: \"$cc\" either does not exist or does not work"
167 exit 1
168fi
169
170check_define() {
171cat > $TMPC <<EOF
172#if !defined($1)
173#error Not defined
174#endif
175int main(void) { return 0; }
176EOF
52166aa0 177 compile_object
ac0df51d
AL
178}
179
2ff6b91e
JQ
180if test ! -z "$cpu" ; then
181 # command line argument
182 :
183elif check_define __i386__ ; then
ac0df51d
AL
184 cpu="i386"
185elif check_define __x86_64__ ; then
186 cpu="x86_64"
3aa9bd6c
BS
187elif check_define __sparc__ ; then
188 # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
189 # They must be specified using --sparc_cpu
190 if check_define __arch64__ ; then
191 cpu="sparc64"
192 else
193 cpu="sparc"
194 fi
fdf7ed96 195elif check_define _ARCH_PPC ; then
196 if check_define _ARCH_PPC64 ; then
197 cpu="ppc64"
198 else
199 cpu="ppc"
200 fi
afa05235
AJ
201elif check_define __mips__ ; then
202 cpu="mips"
477ba620
AJ
203elif check_define __ia64__ ; then
204 cpu="ia64"
d66ed0ea
AJ
205elif check_define __s390__ ; then
206 if check_define __s390x__ ; then
207 cpu="s390x"
208 else
209 cpu="s390"
210 fi
ac0df51d 211else
fdf7ed96 212 cpu=`uname -m`
ac0df51d
AL
213fi
214
5327cf48 215target_list=""
7d13299d 216case "$cpu" in
afa05235 217 alpha|cris|ia64|m68k|microblaze|ppc|ppc64|sparc64)
ea8f20f8
JQ
218 cpu="$cpu"
219 ;;
7d13299d 220 i386|i486|i586|i686|i86pc|BePC)
97a847bc 221 cpu="i386"
7d13299d 222 ;;
aaa5fa14
AJ
223 x86_64|amd64)
224 cpu="x86_64"
225 ;;
ba68055e 226 armv*b)
808c4954
FB
227 cpu="armv4b"
228 ;;
ba68055e 229 armv*l)
7d13299d
FB
230 cpu="armv4l"
231 ;;
f54b3f92
AJ
232 parisc|parisc64)
233 cpu="hppa"
234 ;;
afa05235
AJ
235 mips*)
236 cpu="mips"
237 ;;
24e804ec 238 s390)
fb3e5849
FB
239 cpu="s390"
240 ;;
24e804ec
AG
241 s390x)
242 cpu="s390x"
243 ;;
3142255c 244 sparc|sun4[cdmuv])
ae228531
FB
245 cpu="sparc"
246 ;;
7d13299d 247 *)
a447d4dc
PB
248 echo "Unsupported CPU = $cpu"
249 exit 1
7d13299d
FB
250 ;;
251esac
e2d52ad3 252
3a3fb96d
SW
253# Default value for a variable defining feature "foo".
254# * foo="no" feature will only be used if --enable-foo arg is given
255# * foo="" feature will be searched for, and if found, will be used
256# unless --disable-foo is given
257# * foo="yes" this value will only be set by --enable-foo flag.
258# feature will searched for,
259# if not found, configure exits with error
e2d52ad3 260#
3a3fb96d
SW
261# Always add --enable-foo and --disable-foo command line args.
262# Distributions want to ensure that several features are compiled in, and it
263# is impossible without a --enable-foo that exits if a feature is not found.
e2d52ad3 264
a20a6f46 265bluez=""
4ffcedb6 266brlapi=""
788c8196 267curl=""
c584a6d0 268curses=""
a25dba17 269docs=""
2df87df7 270fdt=""
b31a0277 271kvm=""
dae5079a 272kvm_para=""
b0a47e79 273nptl=""
c4198157 274sdl=""
dfffc653 275sparse="no"
ee682d27 276uuid=""
dfb278bd 277vde=""
1be10ad2 278vnc_tls=""
ea784e3b 279vnc_sasl=""
2f6f5c7a 280vnc_jpeg=""
efe556ad 281vnc_png=""
96763cf9 282vnc_thread="no"
fc321b4b 283xen=""
5c6c3a6c 284linux_aio=""
758e8e38 285attr=""
d5970055 286vhost_net=""
dfb278bd 287
7d13299d 288gprof="no"
f8393946 289debug_tcg="no"
b4475aa2 290debug_mon="no"
f3d08ee6 291debug="no"
1625af87 292strip_opt="yes"
7d13299d 293bigendian="no"
67b915a5
FB
294mingw32="no"
295EXESUF=""
683035de
PB
296prefix="/usr/local"
297mandir="\${prefix}/share/man"
298datadir="\${prefix}/share/qemu"
299docdir="\${prefix}/share/doc/qemu"
300bindir="\${prefix}/bin"
301sysconfdir="\${prefix}/etc"
302confsuffix="/qemu"
443f1376 303slirp="yes"
102a52e4
FB
304fmod_lib=""
305fmod_inc=""
2f6a1ab0 306oss_lib=""
b1a550a0 307bsd="no"
5327cf48 308linux="no"
d2c7c9b8 309solaris="no"
05c2a3e7 310profiler="no"
5b0753e0 311cocoa="no"
0a8e90f4 312softmmu="yes"
831b7825
TS
313linux_user="no"
314darwin_user="no"
84778508 315bsd_user="no"
379f6698 316guest_base=""
c5937220 317uname_release=""
e5d355d1 318io_thread="no"
8ff9cbf7 319mixemu="no"
eac30262 320kerneldir=""
b29fe3ed 321aix="no"
179cf400 322haiku="no"
77755340 323blobs="yes"
4a19f1ec 324pkgversion=""
5495ed11 325check_utests="no"
34005a00 326user_pie="no"
20ff6c80 327zero_malloc=""
94a420b1 328trace_backend="nop"
9410b56c 329trace_file="trace"
7d13299d
FB
330
331# OS specific
ac0df51d
AL
332if check_define __linux__ ; then
333 targetos="Linux"
334elif check_define _WIN32 ; then
335 targetos='MINGW32'
169dc5d3
BS
336elif check_define __OpenBSD__ ; then
337 targetos='OpenBSD'
338elif check_define __sun__ ; then
339 targetos='SunOS'
179cf400
AF
340elif check_define __HAIKU__ ; then
341 targetos='Haiku'
ac0df51d
AL
342else
343 targetos=`uname -s`
344fi
0dbfc675 345
7d13299d 346case $targetos in
c326e0af 347CYGWIN*)
0dbfc675 348 mingw32="yes"
a558ee17 349 QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
d5631638 350 audio_possible_drivers="winwave sdl"
351 audio_drv_list="winwave"
c326e0af 352;;
67b915a5 353MINGW32*)
0dbfc675 354 mingw32="yes"
d5631638 355 audio_possible_drivers="winwave dsound sdl fmod"
356 audio_drv_list="winwave"
67b915a5 357;;
5c40d2bd 358GNU/kFreeBSD)
a167ba50 359 bsd="yes"
0dbfc675
JQ
360 audio_drv_list="oss"
361 audio_possible_drivers="oss sdl esd pa"
5c40d2bd 362;;
7d3505c5 363FreeBSD)
0dbfc675 364 bsd="yes"
a167ba50 365 make="gmake"
0dbfc675
JQ
366 audio_drv_list="oss"
367 audio_possible_drivers="oss sdl esd pa"
f01576f1
JL
368 # needed for kinfo_getvmmap(3) in libutil.h
369 LIBS="-lutil $LIBS"
7d3505c5 370;;
c5e97233 371DragonFly)
0dbfc675 372 bsd="yes"
a167ba50 373 make="gmake"
0dbfc675
JQ
374 audio_drv_list="oss"
375 audio_possible_drivers="oss sdl esd pa"
c5e97233 376;;
7d3505c5 377NetBSD)
0dbfc675 378 bsd="yes"
a167ba50 379 make="gmake"
0dbfc675
JQ
380 audio_drv_list="oss"
381 audio_possible_drivers="oss sdl esd"
382 oss_lib="-lossaudio"
7d3505c5
FB
383;;
384OpenBSD)
0dbfc675 385 bsd="yes"
a167ba50 386 make="gmake"
0dbfc675
JQ
387 audio_drv_list="oss"
388 audio_possible_drivers="oss sdl esd"
389 oss_lib="-lossaudio"
7d3505c5 390;;
83fb7adf 391Darwin)
0dbfc675
JQ
392 bsd="yes"
393 darwin="yes"
394 # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can
395 # run 64-bit userspace code
396 if [ "$cpu" = "i386" ] ; then
aab8588a 397 is_x86_64=`sysctl -n hw.optional.x86_64`
398 [ "$is_x86_64" = "1" ] && cpu=x86_64
0dbfc675
JQ
399 fi
400 if [ "$cpu" = "x86_64" ] ; then
a558ee17 401 QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
0c439cbf 402 LDFLAGS="-arch x86_64 $LDFLAGS"
0dbfc675 403 else
a558ee17 404 QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS"
0dbfc675
JQ
405 fi
406 darwin_user="yes"
407 cocoa="yes"
408 audio_drv_list="coreaudio"
409 audio_possible_drivers="coreaudio sdl fmod"
410 LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
7973f21c 411 libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
83fb7adf 412;;
ec530c81 413SunOS)
0dbfc675
JQ
414 solaris="yes"
415 make="gmake"
416 install="ginstall"
fa58948d 417 ld="gld"
0dbfc675
JQ
418 needs_libsunmath="no"
419 solarisrev=`uname -r | cut -f2 -d.`
420 # have to select again, because `uname -m` returns i86pc
421 # even on an x86_64 box.
422 solariscpu=`isainfo -k`
423 if test "${solariscpu}" = "amd64" ; then
424 cpu="x86_64"
425 fi
426 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
427 if test "$solarisrev" -le 9 ; then
428 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
429 needs_libsunmath="yes"
f14bfdf9
JQ
430 QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS"
431 LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS"
432 LIBS="-lsunmath $LIBS"
0dbfc675
JQ
433 else
434 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
435 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
436 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
437 echo "Studio 11 can be downloaded from www.sun.com."
438 exit 1
439 fi
86b2bd93 440 fi
0dbfc675
JQ
441 fi
442 if test -f /usr/include/sys/soundcard.h ; then
443 audio_drv_list="oss"
444 fi
445 audio_possible_drivers="oss sdl"
d741429a
BS
446# needed for CMSG_ macros in sys/socket.h
447 QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
448# needed for TIOCWIN* defines in termios.h
449 QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
a558ee17 450 QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
e174c0bb 451 LIBS="-lsocket -lnsl -lresolv $LIBS"
86b2bd93 452;;
b29fe3ed 453AIX)
0dbfc675
JQ
454 aix="yes"
455 make="gmake"
b29fe3ed 456;;
179cf400
AF
457Haiku)
458 haiku="yes"
459 QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
460 LIBS="-lposix_error_mapper -lnetwork $LIBS"
461;;
1d14ffa9 462*)
0dbfc675
JQ
463 audio_drv_list="oss"
464 audio_possible_drivers="oss alsa sdl esd pa"
465 linux="yes"
466 linux_user="yes"
467 usb="linux"
0dbfc675 468 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
c2de5c91 469 audio_possible_drivers="$audio_possible_drivers fmod"
0dbfc675 470 fi
fb065187 471;;
7d13299d
FB
472esac
473
7d3505c5 474if [ "$bsd" = "yes" ] ; then
b1a550a0 475 if [ "$darwin" != "yes" ] ; then
68063649 476 usb="bsd"
83fb7adf 477 fi
84778508 478 bsd_user="yes"
7d3505c5
FB
479fi
480
3457a3f8 481if test "$mingw32" = "yes" ; then
3457a3f8 482 EXESUF=".exe"
a558ee17 483 QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
e94a7936
SW
484 # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
485 QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
884044aa 486 LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
683035de
PB
487 prefix="c:/Program Files/Qemu"
488 mandir="\${prefix}"
489 datadir="\${prefix}"
490 docdir="\${prefix}"
491 bindir="\${prefix}"
492 sysconfdir="\${prefix}"
493 confsuffix=""
3457a3f8
JQ
494fi
495
7d13299d 496# find source path
ad064840 497source_path=`dirname "$0"`
59faef3a
AZ
498source_path_used="no"
499workdir=`pwd`
ad064840 500if [ -z "$source_path" ]; then
59faef3a 501 source_path=$workdir
ad064840
PB
502else
503 source_path=`cd "$source_path"; pwd`
7d13299d 504fi
724db118 505[ -f "$workdir/vl.c" ] || source_path_used="yes"
7d13299d 506
487fefdb 507werror=""
85aa5189 508
7d13299d 509for opt do
a46e4035 510 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
7d13299d 511 case "$opt" in
2efc3265
FB
512 --help|-h) show_help=yes
513 ;;
b1a550a0 514 --prefix=*) prefix="$optarg"
7d13299d 515 ;;
b1a550a0 516 --interp-prefix=*) interp_prefix="$optarg"
32ce6337 517 ;;
b1a550a0 518 --source-path=*) source_path="$optarg"
ad064840 519 source_path_used="yes"
7d13299d 520 ;;
ac0df51d 521 --cross-prefix=*)
7d13299d 522 ;;
ac0df51d 523 --cc=*)
7d13299d 524 ;;
b1a550a0 525 --host-cc=*) host_cc="$optarg"
83469015 526 ;;
b1a550a0 527 --make=*) make="$optarg"
7d13299d 528 ;;
6a882643
PB
529 --install=*) install="$optarg"
530 ;;
e2a2ed06 531 --extra-cflags=*)
7d13299d 532 ;;
e2a2ed06 533 --extra-ldflags=*)
7d13299d 534 ;;
2ff6b91e 535 --cpu=*)
7d13299d 536 ;;
b1a550a0 537 --target-list=*) target_list="$optarg"
de83cd02 538 ;;
94a420b1
SH
539 --trace-backend=*) trace_backend="$optarg"
540 ;;
9410b56c
PS
541 --trace-file=*) trace_file="$optarg"
542 ;;
7d13299d
FB
543 --enable-gprof) gprof="yes"
544 ;;
79427693
LM
545 --static)
546 static="yes"
547 LDFLAGS="-static $LDFLAGS"
43ce4dfe 548 ;;
0b24e75f
PB
549 --mandir=*) mandir="$optarg"
550 ;;
551 --bindir=*) bindir="$optarg"
552 ;;
553 --datadir=*) datadir="$optarg"
554 ;;
555 --docdir=*) docdir="$optarg"
556 ;;
ca2fb938 557 --sysconfdir=*) sysconfdir="$optarg"
07381cc1 558 ;;
97a847bc
FB
559 --disable-sdl) sdl="no"
560 ;;
c4198157
JQ
561 --enable-sdl) sdl="yes"
562 ;;
0c58ac1c 563 --fmod-lib=*) fmod_lib="$optarg"
1d14ffa9 564 ;;
c2de5c91 565 --fmod-inc=*) fmod_inc="$optarg"
566 ;;
2f6a1ab0
BS
567 --oss-lib=*) oss_lib="$optarg"
568 ;;
2fa7d3bf 569 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
102a52e4 570 ;;
0c58ac1c 571 --audio-drv-list=*) audio_drv_list="$optarg"
102a52e4 572 ;;
eb852011
MA
573 --block-drv-whitelist=*) block_drv_whitelist=`echo "$optarg" | sed -e 's/,/ /g'`
574 ;;
f8393946
AJ
575 --enable-debug-tcg) debug_tcg="yes"
576 ;;
577 --disable-debug-tcg) debug_tcg="no"
578 ;;
b4475aa2
LC
579 --enable-debug-mon) debug_mon="yes"
580 ;;
581 --disable-debug-mon) debug_mon="no"
582 ;;
f3d08ee6
PB
583 --enable-debug)
584 # Enable debugging options that aren't excessively noisy
585 debug_tcg="yes"
b4475aa2 586 debug_mon="yes"
f3d08ee6
PB
587 debug="yes"
588 strip_opt="no"
589 ;;
03b4fe7d
AL
590 --enable-sparse) sparse="yes"
591 ;;
592 --disable-sparse) sparse="no"
593 ;;
1625af87
AL
594 --disable-strip) strip_opt="no"
595 ;;
8d5d2d4c
TS
596 --disable-vnc-tls) vnc_tls="no"
597 ;;
1be10ad2
JQ
598 --enable-vnc-tls) vnc_tls="yes"
599 ;;
2f9606b3
AL
600 --disable-vnc-sasl) vnc_sasl="no"
601 ;;
ea784e3b
JQ
602 --enable-vnc-sasl) vnc_sasl="yes"
603 ;;
2f6f5c7a
CC
604 --disable-vnc-jpeg) vnc_jpeg="no"
605 ;;
606 --enable-vnc-jpeg) vnc_jpeg="yes"
607 ;;
efe556ad
CC
608 --disable-vnc-png) vnc_png="no"
609 ;;
610 --enable-vnc-png) vnc_png="yes"
611 ;;
bd023f95
CC
612 --disable-vnc-thread) vnc_thread="no"
613 ;;
614 --enable-vnc-thread) vnc_thread="yes"
615 ;;
443f1376 616 --disable-slirp) slirp="no"
1d14ffa9 617 ;;
ee682d27
SW
618 --disable-uuid) uuid="no"
619 ;;
620 --enable-uuid) uuid="yes"
621 ;;
e0e6c8c0 622 --disable-vde) vde="no"
8a16d273 623 ;;
dfb278bd
JQ
624 --enable-vde) vde="yes"
625 ;;
e37630ca
AL
626 --disable-xen) xen="no"
627 ;;
fc321b4b
JQ
628 --enable-xen) xen="yes"
629 ;;
2e4d9fb1
AJ
630 --disable-brlapi) brlapi="no"
631 ;;
4ffcedb6
JQ
632 --enable-brlapi) brlapi="yes"
633 ;;
fb599c9a
AZ
634 --disable-bluez) bluez="no"
635 ;;
a20a6f46
JQ
636 --enable-bluez) bluez="yes"
637 ;;
7ba1e619
AL
638 --disable-kvm) kvm="no"
639 ;;
b31a0277
JQ
640 --enable-kvm) kvm="yes"
641 ;;
05c2a3e7
FB
642 --enable-profiler) profiler="yes"
643 ;;
c2de5c91 644 --enable-cocoa)
645 cocoa="yes" ;
646 sdl="no" ;
647 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
1d14ffa9 648 ;;
cad25d69 649 --disable-system) softmmu="no"
0a8e90f4 650 ;;
cad25d69 651 --enable-system) softmmu="yes"
0a8e90f4 652 ;;
0953a80f
ZA
653 --disable-user)
654 linux_user="no" ;
655 bsd_user="no" ;
656 darwin_user="no"
657 ;;
658 --enable-user) ;;
831b7825 659 --disable-linux-user) linux_user="no"
0a8e90f4 660 ;;
831b7825
TS
661 --enable-linux-user) linux_user="yes"
662 ;;
663 --disable-darwin-user) darwin_user="no"
664 ;;
665 --enable-darwin-user) darwin_user="yes"
0a8e90f4 666 ;;
84778508
BS
667 --disable-bsd-user) bsd_user="no"
668 ;;
669 --enable-bsd-user) bsd_user="yes"
670 ;;
379f6698
PB
671 --enable-guest-base) guest_base="yes"
672 ;;
673 --disable-guest-base) guest_base="no"
674 ;;
34005a00
KS
675 --enable-user-pie) user_pie="yes"
676 ;;
677 --disable-user-pie) user_pie="no"
678 ;;
c5937220
PB
679 --enable-uname-release=*) uname_release="$optarg"
680 ;;
3142255c 681 --sparc_cpu=*)
3142255c 682 ;;
85aa5189
FB
683 --enable-werror) werror="yes"
684 ;;
685 --disable-werror) werror="no"
686 ;;
4d3b6f6e
AZ
687 --disable-curses) curses="no"
688 ;;
c584a6d0
JQ
689 --enable-curses) curses="yes"
690 ;;
769ce76d
AG
691 --disable-curl) curl="no"
692 ;;
788c8196
JQ
693 --enable-curl) curl="yes"
694 ;;
2df87df7
JQ
695 --disable-fdt) fdt="no"
696 ;;
697 --enable-fdt) fdt="yes"
698 ;;
5495ed11
LC
699 --disable-check-utests) check_utests="no"
700 ;;
701 --enable-check-utests) check_utests="yes"
702 ;;
bd0c5661
PB
703 --disable-nptl) nptl="no"
704 ;;
b0a47e79
JQ
705 --enable-nptl) nptl="yes"
706 ;;
8ff9cbf7 707 --enable-mixemu) mixemu="yes"
708 ;;
5c6c3a6c
CH
709 --disable-linux-aio) linux_aio="no"
710 ;;
711 --enable-linux-aio) linux_aio="yes"
712 ;;
758e8e38
VJJ
713 --disable-attr) attr="no"
714 ;;
715 --enable-attr) attr="yes"
716 ;;
e5d355d1
AL
717 --enable-io-thread) io_thread="yes"
718 ;;
77755340
TS
719 --disable-blobs) blobs="no"
720 ;;
eac30262
AL
721 --kerneldir=*) kerneldir="$optarg"
722 ;;
4a19f1ec
PB
723 --with-pkgversion=*) pkgversion=" ($optarg)"
724 ;;
a25dba17 725 --disable-docs) docs="no"
70ec5dc0 726 ;;
a25dba17 727 --enable-docs) docs="yes"
83a3ab8b 728 ;;
d5970055
MT
729 --disable-vhost-net) vhost_net="no"
730 ;;
731 --enable-vhost-net) vhost_net="yes"
732 ;;
6bde81cb
PB
733 --*dir)
734 ;;
7f1559c6
AZ
735 *) echo "ERROR: unknown option $opt"; show_help="yes"
736 ;;
7d13299d
FB
737 esac
738done
739
3142255c
BS
740#
741# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
a558ee17 742# QEMU_CFLAGS/LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
3142255c 743#
379f6698 744host_guest_base="no"
40293e58 745case "$cpu" in
ed968ff1
JQ
746 sparc) case $sparc_cpu in
747 v7|v8)
a558ee17 748 QEMU_CFLAGS="-mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
ed968ff1
JQ
749 ;;
750 v8plus|v8plusa)
a558ee17 751 QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
ed968ff1
JQ
752 ;;
753 *) # sparc_cpu not defined in the command line
a558ee17 754 QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_v8plus__ $QEMU_CFLAGS"
ed968ff1
JQ
755 esac
756 LDFLAGS="-m32 $LDFLAGS"
a558ee17 757 QEMU_CFLAGS="-m32 -ffixed-g2 -ffixed-g3 $QEMU_CFLAGS"
762e8230 758 if test "$solaris" = "no" ; then
a558ee17 759 QEMU_CFLAGS="-ffixed-g1 -ffixed-g6 $QEMU_CFLAGS"
c81da56e 760 helper_cflags="-ffixed-i0"
762e8230 761 fi
3142255c 762 ;;
ed968ff1 763 sparc64)
a558ee17 764 QEMU_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__ $QEMU_CFLAGS"
ed968ff1 765 LDFLAGS="-m64 $LDFLAGS"
a558ee17 766 QEMU_CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $QEMU_CFLAGS"
ed968ff1 767 if test "$solaris" != "no" ; then
a558ee17 768 QEMU_CFLAGS="-ffixed-g1 $QEMU_CFLAGS"
762e8230 769 fi
3142255c 770 ;;
76d83bde 771 s390)
28d7cc49
RH
772 QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS"
773 LDFLAGS="-m31 $LDFLAGS"
48bb3750 774 host_guest_base="yes"
28d7cc49
RH
775 ;;
776 s390x)
777 QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS"
778 LDFLAGS="-m64 $LDFLAGS"
48bb3750 779 host_guest_base="yes"
76d83bde 780 ;;
40293e58 781 i386)
a558ee17 782 QEMU_CFLAGS="-m32 $QEMU_CFLAGS"
0c439cbf 783 LDFLAGS="-m32 $LDFLAGS"
c81da56e 784 helper_cflags="-fomit-frame-pointer"
379f6698 785 host_guest_base="yes"
40293e58
FB
786 ;;
787 x86_64)
a558ee17 788 QEMU_CFLAGS="-m64 $QEMU_CFLAGS"
0c439cbf 789 LDFLAGS="-m64 $LDFLAGS"
379f6698
PB
790 host_guest_base="yes"
791 ;;
792 arm*)
793 host_guest_base="yes"
40293e58 794 ;;
f6548c0a 795 ppc*)
796 host_guest_base="yes"
797 ;;
cc01cc8e
AJ
798 mips*)
799 host_guest_base="yes"
800 ;;
477ba620
AJ
801 ia64*)
802 host_guest_base="yes"
803 ;;
fd76e73a
RH
804 hppa*)
805 host_guest_base="yes"
806 ;;
3142255c
BS
807esac
808
379f6698
PB
809[ -z "$guest_base" ] && guest_base="$host_guest_base"
810
af5db58e
PB
811if test x"$show_help" = x"yes" ; then
812cat << EOF
813
814Usage: configure [options]
815Options: [defaults in brackets after descriptions]
816
817EOF
818echo "Standard options:"
819echo " --help print this message"
820echo " --prefix=PREFIX install in PREFIX [$prefix]"
821echo " --interp-prefix=PREFIX where to find shared libraries, etc."
822echo " use %M for cpu name [$interp_prefix]"
823echo " --target-list=LIST set target list [$target_list]"
824echo ""
af5db58e
PB
825echo "Advanced options (experts only):"
826echo " --source-path=PATH path of source code [$source_path]"
827echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
828echo " --cc=CC use C compiler CC [$cc]"
0bfe8cc0
PB
829echo " --host-cc=CC use C compiler CC [$host_cc] for code run at"
830echo " build time"
a558ee17 831echo " --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS"
e3fc14c3 832echo " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS"
af5db58e 833echo " --make=MAKE use specified make [$make]"
6a882643 834echo " --install=INSTALL use specified install [$install]"
af5db58e 835echo " --static enable static build [$static]"
0b24e75f
PB
836echo " --mandir=PATH install man pages in PATH"
837echo " --datadir=PATH install firmware in PATH"
838echo " --docdir=PATH install documentation in PATH"
839echo " --bindir=PATH install binaries in PATH"
840echo " --sysconfdir=PATH install config in PATH/qemu"
f8393946
AJ
841echo " --enable-debug-tcg enable TCG debugging"
842echo " --disable-debug-tcg disable TCG debugging (default)"
09695a4a 843echo " --enable-debug enable common debug build options"
890b1658
AL
844echo " --enable-sparse enable sparse checker"
845echo " --disable-sparse disable sparse checker (default)"
1625af87 846echo " --disable-strip disable stripping binaries"
85aa5189 847echo " --disable-werror disable compilation abort on warning"
fe8f78e4 848echo " --disable-sdl disable SDL"
c4198157 849echo " --enable-sdl enable SDL"
af5db58e 850echo " --enable-cocoa enable COCOA (Mac OS X only)"
c2de5c91 851echo " --audio-drv-list=LIST set audio drivers list:"
852echo " Available drivers: $audio_possible_drivers"
4c9b53e3 853echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
854echo " Available cards: $audio_possible_cards"
eb852011
MA
855echo " --block-drv-whitelist=L set block driver whitelist"
856echo " (affects only QEMU, not qemu-img)"
8ff9cbf7 857echo " --enable-mixemu enable mixer emulation"
e37630ca 858echo " --disable-xen disable xen backend driver support"
fc321b4b 859echo " --enable-xen enable xen backend driver support"
2e4d9fb1 860echo " --disable-brlapi disable BrlAPI"
4ffcedb6 861echo " --enable-brlapi enable BrlAPI"
8d5d2d4c 862echo " --disable-vnc-tls disable TLS encryption for VNC server"
1be10ad2 863echo " --enable-vnc-tls enable TLS encryption for VNC server"
2f9606b3 864echo " --disable-vnc-sasl disable SASL encryption for VNC server"
ea784e3b 865echo " --enable-vnc-sasl enable SASL encryption for VNC server"
2f6f5c7a
CC
866echo " --disable-vnc-jpeg disable JPEG lossy compression for VNC server"
867echo " --enable-vnc-jpeg enable JPEG lossy compression for VNC server"
96763cf9 868echo " --disable-vnc-png disable PNG compression for VNC server (default)"
efe556ad 869echo " --enable-vnc-png enable PNG compression for VNC server"
bd023f95
CC
870echo " --disable-vnc-thread disable threaded VNC server"
871echo " --enable-vnc-thread enable threaded VNC server"
af896aaa 872echo " --disable-curses disable curses output"
c584a6d0 873echo " --enable-curses enable curses output"
769ce76d 874echo " --disable-curl disable curl connectivity"
788c8196 875echo " --enable-curl enable curl connectivity"
2df87df7
JQ
876echo " --disable-fdt disable fdt device tree"
877echo " --enable-fdt enable fdt device tree"
5495ed11
LC
878echo " --disable-check-utests disable check unit-tests"
879echo " --enable-check-utests enable check unit-tests"
fb599c9a 880echo " --disable-bluez disable bluez stack connectivity"
a20a6f46 881echo " --enable-bluez enable bluez stack connectivity"
7ba1e619 882echo " --disable-kvm disable KVM acceleration support"
b31a0277 883echo " --enable-kvm enable KVM acceleration support"
bd0c5661 884echo " --disable-nptl disable usermode NPTL support"
e5934d33 885echo " --enable-nptl enable usermode NPTL support"
af5db58e
PB
886echo " --enable-system enable all system emulation targets"
887echo " --disable-system disable all system emulation targets"
0953a80f
ZA
888echo " --enable-user enable supported user emulation targets"
889echo " --disable-user disable all user emulation targets"
831b7825
TS
890echo " --enable-linux-user enable all linux usermode emulation targets"
891echo " --disable-linux-user disable all linux usermode emulation targets"
892echo " --enable-darwin-user enable all darwin usermode emulation targets"
893echo " --disable-darwin-user disable all darwin usermode emulation targets"
84778508
BS
894echo " --enable-bsd-user enable all BSD usermode emulation targets"
895echo " --disable-bsd-user disable all BSD usermode emulation targets"
379f6698
PB
896echo " --enable-guest-base enable GUEST_BASE support for usermode"
897echo " emulation targets"
898echo " --disable-guest-base disable GUEST_BASE support"
34005a00
KS
899echo " --enable-user-pie build usermode emulation targets as PIE"
900echo " --disable-user-pie do not build usermode emulation targets as PIE"
af5db58e
PB
901echo " --fmod-lib path to FMOD library"
902echo " --fmod-inc path to FMOD includes"
2f6a1ab0 903echo " --oss-lib path to OSS library"
c5937220 904echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
3142255c 905echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
ee682d27
SW
906echo " --disable-uuid disable uuid support"
907echo " --enable-uuid enable uuid support"
e0e6c8c0 908echo " --disable-vde disable support for vde network"
dfb278bd 909echo " --enable-vde enable support for vde network"
5c6c3a6c
CH
910echo " --disable-linux-aio disable Linux AIO support"
911echo " --enable-linux-aio enable Linux AIO support"
758e8e38
VJJ
912echo " --disable-attr disables attr and xattr support"
913echo " --enable-attr enable attr and xattr support"
e5d355d1 914echo " --enable-io-thread enable IO thread"
77755340 915echo " --disable-blobs disable installing provided firmware blobs"
eac30262 916echo " --kerneldir=PATH look for kernel includes in PATH"
d2807bc9
DU
917echo " --enable-docs enable documentation build"
918echo " --disable-docs disable documentation build"
d5970055
MT
919echo " --disable-vhost-net disable vhost-net acceleration support"
920echo " --enable-vhost-net enable vhost-net acceleration support"
7e24e92a 921echo " --trace-backend=B Trace backend nop simple ust"
9410b56c
PS
922echo " --trace-file=NAME Full PATH,NAME of file to store traces"
923echo " Default:trace-<pid>"
af5db58e 924echo ""
5bf08934 925echo "NOTE: The object files are built at the place where configure is launched"
af5db58e
PB
926exit 1
927fi
928
ec530c81
FB
929#
930# Solaris specific configure tool chain decisions
931#
932if test "$solaris" = "yes" ; then
6792aa11
LM
933 if has $install; then
934 :
935 else
ec530c81
FB
936 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
937 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
938 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
939 exit 1
940 fi
6792aa11 941 if test "`path_of $install`" = "/usr/sbin/install" ; then
ec530c81
FB
942 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
943 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
944 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
945 exit 1
946 fi
6792aa11
LM
947 if has ar; then
948 :
949 else
ec530c81
FB
950 echo "Error: No path includes ar"
951 if test -f /usr/ccs/bin/ar ; then
952 echo "Add /usr/ccs/bin to your path and rerun configure"
953 fi
954 exit 1
955 fi
5fafdf24 956fi
ec530c81
FB
957
958
5327cf48
FB
959if test -z "$target_list" ; then
960# these targets are portable
0a8e90f4 961 if [ "$softmmu" = "yes" ] ; then
2408a527
AJ
962 target_list="\
963i386-softmmu \
964x86_64-softmmu \
965arm-softmmu \
966cris-softmmu \
967m68k-softmmu \
72b675ca 968microblaze-softmmu \
2408a527
AJ
969mips-softmmu \
970mipsel-softmmu \
971mips64-softmmu \
972mips64el-softmmu \
973ppc-softmmu \
974ppcemb-softmmu \
975ppc64-softmmu \
976sh4-softmmu \
977sh4eb-softmmu \
978sparc-softmmu \
1b64fcae 979sparc64-softmmu \
2408a527 980"
0a8e90f4 981 fi
5327cf48 982# the following are Linux specific
831b7825 983 if [ "$linux_user" = "yes" ] ; then
2408a527
AJ
984 target_list="${target_list}\
985i386-linux-user \
986x86_64-linux-user \
987alpha-linux-user \
988arm-linux-user \
989armeb-linux-user \
990cris-linux-user \
991m68k-linux-user \
72b675ca 992microblaze-linux-user \
2408a527
AJ
993mips-linux-user \
994mipsel-linux-user \
995ppc-linux-user \
996ppc64-linux-user \
997ppc64abi32-linux-user \
998sh4-linux-user \
999sh4eb-linux-user \
1000sparc-linux-user \
1001sparc64-linux-user \
1002sparc32plus-linux-user \
1003"
831b7825
TS
1004 fi
1005# the following are Darwin specific
1006 if [ "$darwin_user" = "yes" ] ; then
6cdc7375 1007 target_list="$target_list i386-darwin-user ppc-darwin-user "
5327cf48 1008 fi
84778508
BS
1009# the following are BSD specific
1010 if [ "$bsd_user" = "yes" ] ; then
1011 target_list="${target_list}\
31fc12df
BS
1012i386-bsd-user \
1013x86_64-bsd-user \
1014sparc-bsd-user \
84778508
BS
1015sparc64-bsd-user \
1016"
1017 fi
6e20a45f 1018else
b1a550a0 1019 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
5327cf48 1020fi
0a8e90f4
PB
1021if test -z "$target_list" ; then
1022 echo "No targets enabled"
1023 exit 1
1024fi
f55fe278
PB
1025# see if system emulation was really requested
1026case " $target_list " in
1027 *"-softmmu "*) softmmu=yes
1028 ;;
1029 *) softmmu=no
1030 ;;
1031esac
5327cf48 1032
249247c9
JQ
1033feature_not_found() {
1034 feature=$1
1035
1036 echo "ERROR"
1037 echo "ERROR: User requested feature $feature"
9332f6a2 1038 echo "ERROR: configure was not able to find it"
249247c9
JQ
1039 echo "ERROR"
1040 exit 1;
1041}
1042
7d13299d
FB
1043if test -z "$cross_prefix" ; then
1044
1045# ---
1046# big/little endian test
1047cat > $TMPC << EOF
1048#include <inttypes.h>
1049int main(int argc, char ** argv){
1d14ffa9
FB
1050 volatile uint32_t i=0x01234567;
1051 return (*((uint8_t*)(&i))) == 0x67;
7d13299d
FB
1052}
1053EOF
1054
52166aa0 1055if compile_prog "" "" ; then
7d13299d
FB
1056$TMPE && bigendian="yes"
1057else
1058echo big/little test failed
1059fi
1060
1061else
1062
1063# if cross compiling, cannot launch a program, so make a static guess
ea8f20f8 1064case "$cpu" in
24e804ec 1065 armv4b|hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
ea8f20f8
JQ
1066 bigendian=yes
1067 ;;
1068esac
7d13299d
FB
1069
1070fi
1071
b6853697
FB
1072# host long bits test
1073hostlongbits="32"
ea8f20f8 1074case "$cpu" in
24e804ec 1075 x86_64|alpha|ia64|sparc64|ppc64|s390x)
ea8f20f8
JQ
1076 hostlongbits=64
1077 ;;
1078esac
b6853697 1079
b0a47e79
JQ
1080
1081##########################################
1082# NPTL probe
1083
1084if test "$nptl" != "no" ; then
1085 cat > $TMPC <<EOF
bd0c5661 1086#include <sched.h>
30813cea 1087#include <linux/futex.h>
bd0c5661
PB
1088void foo()
1089{
1090#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
1091#error bork
1092#endif
1093}
1094EOF
1095
b0a47e79
JQ
1096 if compile_object ; then
1097 nptl=yes
1098 else
1099 if test "$nptl" = "yes" ; then
1100 feature_not_found "nptl"
1101 fi
1102 nptl=no
1103 fi
bd0c5661
PB
1104fi
1105
ac62922e
AZ
1106##########################################
1107# zlib check
1108
1109cat > $TMPC << EOF
1110#include <zlib.h>
1111int main(void) { zlibVersion(); return 0; }
1112EOF
52166aa0 1113if compile_prog "" "-lz" ; then
ac62922e
AZ
1114 :
1115else
1116 echo
1117 echo "Error: zlib check failed"
1118 echo "Make sure to have the zlib libs and headers installed."
1119 echo
1120 exit 1
1121fi
1122
e37630ca
AL
1123##########################################
1124# xen probe
1125
fc321b4b 1126if test "$xen" != "no" ; then
b2266bee
JQ
1127 xen_libs="-lxenstore -lxenctrl -lxenguest"
1128 cat > $TMPC <<EOF
e37630ca
AL
1129#include <xenctrl.h>
1130#include <xs.h>
df7a607b 1131int main(void) { xs_daemon_open(); xc_interface_open(); return 0; }
e37630ca 1132EOF
52166aa0 1133 if compile_prog "" "$xen_libs" ; then
fc321b4b 1134 xen=yes
3efd632b 1135 libs_softmmu="$xen_libs $libs_softmmu"
b2266bee 1136 else
fc321b4b
JQ
1137 if test "$xen" = "yes" ; then
1138 feature_not_found "xen"
1139 fi
1140 xen=no
b2266bee 1141 fi
e37630ca
AL
1142fi
1143
f91672e5
PB
1144##########################################
1145# pkgconfig probe
1146
1147pkgconfig="${cross_prefix}pkg-config"
0dba6195 1148if ! has $pkgconfig; then
f91672e5
PB
1149 # likely not cross compiling, or hope for the best
1150 pkgconfig=pkg-config
1151fi
1152
dfffc653
JQ
1153##########################################
1154# Sparse probe
1155if test "$sparse" != "no" ; then
0dba6195 1156 if has cgcc; then
dfffc653
JQ
1157 sparse=yes
1158 else
1159 if test "$sparse" = "yes" ; then
1160 feature_not_found "sparse"
1161 fi
1162 sparse=no
1163 fi
1164fi
1165
11d9f695
FB
1166##########################################
1167# SDL probe
1168
fec0e3e8
SW
1169# Look for sdl configuration program (pkg-config or sdl-config).
1170# Prefer variant with cross prefix if cross compiling,
1171# and favour pkg-config with sdl over sdl-config.
1172if test -n "$cross_prefix" -a $pkgconfig != pkg-config && \
1173 $pkgconfig sdl --modversion >/dev/null 2>&1; then
1174 sdlconfig="$pkgconfig sdl"
1175 _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
1176elif test -n "$cross_prefix" && has ${cross_prefix}sdl-config; then
1177 sdlconfig="${cross_prefix}sdl-config"
1178 _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
1179elif $pkgconfig sdl --modversion >/dev/null 2>&1; then
9316f803
PB
1180 sdlconfig="$pkgconfig sdl"
1181 _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
0dba6195 1182elif has sdl-config; then
9316f803
PB
1183 sdlconfig='sdl-config'
1184 _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
a0dfd8a4
LM
1185else
1186 if test "$sdl" = "yes" ; then
1187 feature_not_found "sdl"
1188 fi
1189 sdl=no
9316f803 1190fi
11d9f695 1191
9316f803 1192sdl_too_old=no
c4198157 1193if test "$sdl" != "no" ; then
ac119f9d 1194 cat > $TMPC << EOF
11d9f695
FB
1195#include <SDL.h>
1196#undef main /* We don't want SDL to override our main() */
1197int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
1198EOF
9316f803 1199 sdl_cflags=`$sdlconfig --cflags 2> /dev/null`
74f42e18
T
1200 if test "$static" = "yes" ; then
1201 sdl_libs=`$sdlconfig --static-libs 2>/dev/null`
1202 else
1203 sdl_libs=`$sdlconfig --libs 2> /dev/null`
1204 fi
52166aa0 1205 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
ac119f9d
JQ
1206 if test "$_sdlversion" -lt 121 ; then
1207 sdl_too_old=yes
1208 else
1209 if test "$cocoa" = "no" ; then
1210 sdl=yes
1211 fi
1212 fi
cd01b4a3 1213
67c274d3 1214 # static link with sdl ? (note: sdl.pc's --static --libs is broken)
ac119f9d 1215 if test "$sdl" = "yes" -a "$static" = "yes" ; then
67c274d3 1216 if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
f8aa6c7b
SW
1217 sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
1218 sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
ac119f9d 1219 fi
52166aa0 1220 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
ac119f9d
JQ
1221 :
1222 else
1223 sdl=no
1224 fi
1225 fi # static link
c4198157
JQ
1226 else # sdl not found
1227 if test "$sdl" = "yes" ; then
1228 feature_not_found "sdl"
1229 fi
1230 sdl=no
ac119f9d 1231 fi # sdl compile test
a68551bc 1232fi
11d9f695 1233
5368a422 1234if test "$sdl" = "yes" ; then
ac119f9d 1235 cat > $TMPC <<EOF
5368a422
AL
1236#include <SDL.h>
1237#if defined(SDL_VIDEO_DRIVER_X11)
1238#include <X11/XKBlib.h>
1239#else
1240#error No x11 support
1241#endif
1242int main(void) { return 0; }
1243EOF
52166aa0 1244 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
ac119f9d
JQ
1245 sdl_libs="$sdl_libs -lX11"
1246 fi
07d9ac44
JQ
1247 if test "$mingw32" = "yes" ; then
1248 sdl_libs="`echo $sdl_libs | sed s/-mwindows//g` -mconsole"
1249 fi
0705667e 1250 libs_softmmu="$sdl_libs $libs_softmmu"
5368a422
AL
1251fi
1252
8d5d2d4c
TS
1253##########################################
1254# VNC TLS detection
1be10ad2
JQ
1255if test "$vnc_tls" != "no" ; then
1256 cat > $TMPC <<EOF
ae6b5e5a
AL
1257#include <gnutls/gnutls.h>
1258int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
1259EOF
f91672e5
PB
1260 vnc_tls_cflags=`$pkgconfig --cflags gnutls 2> /dev/null`
1261 vnc_tls_libs=`$pkgconfig --libs gnutls 2> /dev/null`
1be10ad2
JQ
1262 if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
1263 vnc_tls=yes
1264 libs_softmmu="$vnc_tls_libs $libs_softmmu"
1265 else
1266 if test "$vnc_tls" = "yes" ; then
1267 feature_not_found "vnc-tls"
ae6b5e5a 1268 fi
1be10ad2
JQ
1269 vnc_tls=no
1270 fi
8d5d2d4c
TS
1271fi
1272
2f9606b3
AL
1273##########################################
1274# VNC SASL detection
3aefa744 1275if test "$vnc_sasl" != "no" ; then
ea784e3b 1276 cat > $TMPC <<EOF
2f9606b3
AL
1277#include <sasl/sasl.h>
1278#include <stdio.h>
1279int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
1280EOF
ea784e3b
JQ
1281 # Assuming Cyrus-SASL installed in /usr prefix
1282 vnc_sasl_cflags=""
1283 vnc_sasl_libs="-lsasl2"
1284 if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
1285 vnc_sasl=yes
1286 libs_softmmu="$vnc_sasl_libs $libs_softmmu"
1287 else
1288 if test "$vnc_sasl" = "yes" ; then
1289 feature_not_found "vnc-sasl"
2f9606b3 1290 fi
ea784e3b
JQ
1291 vnc_sasl=no
1292 fi
2f9606b3
AL
1293fi
1294
2f6f5c7a
CC
1295##########################################
1296# VNC JPEG detection
96763cf9 1297if test "$vnc_jpeg" != "no" ; then
2f6f5c7a
CC
1298cat > $TMPC <<EOF
1299#include <stdio.h>
1300#include <jpeglib.h>
1301int main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
1302EOF
1303 vnc_jpeg_cflags=""
1304 vnc_jpeg_libs="-ljpeg"
1305 if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
1306 vnc_jpeg=yes
1307 libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
1308 else
1309 if test "$vnc_jpeg" = "yes" ; then
1310 feature_not_found "vnc-jpeg"
1311 fi
1312 vnc_jpeg=no
1313 fi
1314fi
1315
efe556ad
CC
1316##########################################
1317# VNC PNG detection
96763cf9 1318if test "$vnc_png" != "no" ; then
efe556ad
CC
1319cat > $TMPC <<EOF
1320//#include <stdio.h>
1321#include <png.h>
1322int main(void) {
1323 png_structp png_ptr;
1324 png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
1325 return 0;
1326}
1327EOF
1328 vnc_png_cflags=""
1329 vnc_png_libs="-lpng"
1330 if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
1331 vnc_png=yes
1332 libs_softmmu="$vnc_png_libs $libs_softmmu"
1333 else
1334 if test "$vnc_png" = "yes" ; then
1335 feature_not_found "vnc-png"
1336 fi
1337 vnc_png=no
1338 fi
1339fi
1340
76655d6d
AL
1341##########################################
1342# fnmatch() probe, used for ACL routines
1343fnmatch="no"
1344cat > $TMPC << EOF
1345#include <fnmatch.h>
1346int main(void)
1347{
1348 fnmatch("foo", "foo", 0);
1349 return 0;
1350}
1351EOF
52166aa0 1352if compile_prog "" "" ; then
76655d6d
AL
1353 fnmatch="yes"
1354fi
1355
ee682d27
SW
1356##########################################
1357# uuid_generate() probe, used for vdi block driver
1358if test "$uuid" != "no" ; then
1359 uuid_libs="-luuid"
1360 cat > $TMPC << EOF
1361#include <uuid/uuid.h>
1362int main(void)
1363{
1364 uuid_t my_uuid;
1365 uuid_generate(my_uuid);
1366 return 0;
1367}
1368EOF
1369 if compile_prog "" "$uuid_libs" ; then
1370 uuid="yes"
1371 libs_softmmu="$uuid_libs $libs_softmmu"
1372 libs_tools="$uuid_libs $libs_tools"
1373 else
1374 if test "$uuid" = "yes" ; then
1375 feature_not_found "uuid"
1376 fi
1377 uuid=no
1378 fi
1379fi
1380
8a16d273
TS
1381##########################################
1382# vde libraries probe
dfb278bd 1383if test "$vde" != "no" ; then
4baae0ac 1384 vde_libs="-lvdeplug"
8a16d273
TS
1385 cat > $TMPC << EOF
1386#include <libvdeplug.h>
4a7f0e06
PB
1387int main(void)
1388{
1389 struct vde_open_args a = {0, 0, 0};
1390 vde_open("", "", &a);
1391 return 0;
1392}
8a16d273 1393EOF
52166aa0 1394 if compile_prog "" "$vde_libs" ; then
4baae0ac 1395 vde=yes
8e02e54c
JQ
1396 libs_softmmu="$vde_libs $libs_softmmu"
1397 libs_tools="$vde_libs $libs_tools"
dfb278bd
JQ
1398 else
1399 if test "$vde" = "yes" ; then
1400 feature_not_found "vde"
1401 fi
1402 vde=no
4baae0ac 1403 fi
8a16d273
TS
1404fi
1405
8f28f3fb 1406##########################################
c2de5c91 1407# Sound support libraries probe
8f28f3fb 1408
c2de5c91 1409audio_drv_probe()
1410{
1411 drv=$1
1412 hdr=$2
1413 lib=$3
1414 exp=$4
1415 cfl=$5
1416 cat > $TMPC << EOF
1417#include <$hdr>
1418int main(void) { $exp }
8f28f3fb 1419EOF
52166aa0 1420 if compile_prog "$cfl" "$lib" ; then
c2de5c91 1421 :
1422 else
1423 echo
1424 echo "Error: $drv check failed"
1425 echo "Make sure to have the $drv libs and headers installed."
1426 echo
1427 exit 1
1428 fi
1429}
1430
2fa7d3bf 1431audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
c2de5c91 1432for drv in $audio_drv_list; do
1433 case $drv in
1434 alsa)
1435 audio_drv_probe $drv alsa/asoundlib.h -lasound \
1436 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
a4bf6780 1437 libs_softmmu="-lasound $libs_softmmu"
c2de5c91 1438 ;;
1439
1440 fmod)
1441 if test -z $fmod_lib || test -z $fmod_inc; then
1442 echo
1443 echo "Error: You must specify path to FMOD library and headers"
1444 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1445 echo
1446 exit 1
1447 fi
1448 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
a4bf6780 1449 libs_softmmu="$fmod_lib $libs_softmmu"
c2de5c91 1450 ;;
1451
1452 esd)
1453 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
a4bf6780 1454 libs_softmmu="-lesd $libs_softmmu"
67f86e8e 1455 audio_pt_int="yes"
c2de5c91 1456 ;;
b8e59f18 1457
1458 pa)
493abda6 1459 audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \
b8e59f18 1460 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
493abda6 1461 libs_softmmu="-lpulse -lpulse-simple $libs_softmmu"
67f86e8e 1462 audio_pt_int="yes"
b8e59f18 1463 ;;
1464
997e690a
JQ
1465 coreaudio)
1466 libs_softmmu="-framework CoreAudio $libs_softmmu"
1467 ;;
1468
a4bf6780
JQ
1469 dsound)
1470 libs_softmmu="-lole32 -ldxguid $libs_softmmu"
d5631638 1471 audio_win_int="yes"
a4bf6780
JQ
1472 ;;
1473
1474 oss)
1475 libs_softmmu="$oss_lib $libs_softmmu"
1476 ;;
1477
1478 sdl|wav)
2f6a1ab0
BS
1479 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1480 ;;
1481
d5631638 1482 winwave)
1483 libs_softmmu="-lwinmm $libs_softmmu"
1484 audio_win_int="yes"
1485 ;;
1486
e4c63a6a 1487 *)
1c9b2a52 1488 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
e4c63a6a 1489 echo
1490 echo "Error: Unknown driver '$drv' selected"
1491 echo "Possible drivers are: $audio_possible_drivers"
1492 echo
1493 exit 1
1494 }
1495 ;;
c2de5c91 1496 esac
1497done
8f28f3fb 1498
2e4d9fb1
AJ
1499##########################################
1500# BrlAPI probe
1501
4ffcedb6 1502if test "$brlapi" != "no" ; then
eb82284f
JQ
1503 brlapi_libs="-lbrlapi"
1504 cat > $TMPC << EOF
2e4d9fb1
AJ
1505#include <brlapi.h>
1506int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1507EOF
52166aa0 1508 if compile_prog "" "$brlapi_libs" ; then
eb82284f 1509 brlapi=yes
264606b3 1510 libs_softmmu="$brlapi_libs $libs_softmmu"
4ffcedb6
JQ
1511 else
1512 if test "$brlapi" = "yes" ; then
1513 feature_not_found "brlapi"
1514 fi
1515 brlapi=no
eb82284f
JQ
1516 fi
1517fi
2e4d9fb1 1518
4d3b6f6e
AZ
1519##########################################
1520# curses probe
4f78ef9a 1521curses_list="-lncurses -lcurses"
4d3b6f6e 1522
c584a6d0
JQ
1523if test "$curses" != "no" ; then
1524 curses_found=no
4d3b6f6e
AZ
1525 cat > $TMPC << EOF
1526#include <curses.h>
5a8ff3aa
BS
1527#ifdef __OpenBSD__
1528#define resize_term resizeterm
1529#endif
1530int main(void) { resize_term(0, 0); return curses_version(); }
4d3b6f6e 1531EOF
4f78ef9a
JQ
1532 for curses_lib in $curses_list; do
1533 if compile_prog "" "$curses_lib" ; then
c584a6d0 1534 curses_found=yes
4f78ef9a
JQ
1535 libs_softmmu="$curses_lib $libs_softmmu"
1536 break
1537 fi
1538 done
c584a6d0
JQ
1539 if test "$curses_found" = "yes" ; then
1540 curses=yes
1541 else
1542 if test "$curses" = "yes" ; then
1543 feature_not_found "curses"
1544 fi
1545 curses=no
1546 fi
4f78ef9a 1547fi
4d3b6f6e 1548
769ce76d
AG
1549##########################################
1550# curl probe
1551
4e2b0658
PB
1552if $pkgconfig libcurl --modversion >/dev/null 2>&1; then
1553 curlconfig="$pkgconfig libcurl"
1554else
1555 curlconfig=curl-config
1556fi
1557
788c8196 1558if test "$curl" != "no" ; then
769ce76d
AG
1559 cat > $TMPC << EOF
1560#include <curl/curl.h>
1561int main(void) { return curl_easy_init(); }
1562EOF
4e2b0658
PB
1563 curl_cflags=`$curlconfig --cflags 2>/dev/null`
1564 curl_libs=`$curlconfig --libs 2>/dev/null`
b1d5a277 1565 if compile_prog "$curl_cflags" "$curl_libs" ; then
769ce76d 1566 curl=yes
f0302935
JQ
1567 libs_tools="$curl_libs $libs_tools"
1568 libs_softmmu="$curl_libs $libs_softmmu"
788c8196
JQ
1569 else
1570 if test "$curl" = "yes" ; then
1571 feature_not_found "curl"
1572 fi
1573 curl=no
769ce76d
AG
1574 fi
1575fi # test "$curl"
1576
5495ed11
LC
1577##########################################
1578# check framework probe
1579
1580if test "$check_utests" != "no" ; then
1581 cat > $TMPC << EOF
1582#include <check.h>
1583int main(void) { suite_create("qemu test"); return 0; }
1584EOF
f91672e5 1585 check_libs=`$pkgconfig --libs check`
5495ed11
LC
1586 if compile_prog "" $check_libs ; then
1587 check_utests=yes
1588 libs_tools="$check_libs $libs_tools"
1589 else
1590 if test "$check_utests" = "yes" ; then
1591 feature_not_found "check"
1592 fi
1593 check_utests=no
1594 fi
1595fi # test "$check_utests"
1596
fb599c9a
AZ
1597##########################################
1598# bluez support probe
a20a6f46 1599if test "$bluez" != "no" ; then
e820e3f4
AZ
1600 cat > $TMPC << EOF
1601#include <bluetooth/bluetooth.h>
1602int main(void) { return bt_error(0); }
1603EOF
f91672e5
PB
1604 bluez_cflags=`$pkgconfig --cflags bluez 2> /dev/null`
1605 bluez_libs=`$pkgconfig --libs bluez 2> /dev/null`
52166aa0 1606 if compile_prog "$bluez_cflags" "$bluez_libs" ; then
a20a6f46 1607 bluez=yes
e482d56a 1608 libs_softmmu="$bluez_libs $libs_softmmu"
e820e3f4 1609 else
a20a6f46
JQ
1610 if test "$bluez" = "yes" ; then
1611 feature_not_found "bluez"
1612 fi
e820e3f4
AZ
1613 bluez="no"
1614 fi
fb599c9a
AZ
1615fi
1616
7ba1e619
AL
1617##########################################
1618# kvm probe
b31a0277 1619if test "$kvm" != "no" ; then
7ba1e619
AL
1620 cat > $TMPC <<EOF
1621#include <linux/kvm.h>
9fd8d8d7 1622#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
7ba1e619
AL
1623#error Invalid KVM version
1624#endif
9fd8d8d7
AL
1625#if !defined(KVM_CAP_USER_MEMORY)
1626#error Missing KVM capability KVM_CAP_USER_MEMORY
1627#endif
1628#if !defined(KVM_CAP_SET_TSS_ADDR)
1629#error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1630#endif
1631#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1632#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1633#endif
7ba1e619
AL
1634int main(void) { return 0; }
1635EOF
eac30262
AL
1636 if test "$kerneldir" != "" ; then
1637 kvm_cflags=-I"$kerneldir"/include
8444eb6e
AL
1638 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1639 -a -d "$kerneldir/arch/x86/include" ; then
1640 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
406b430d
AL
1641 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1642 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
0e60a699
AG
1643 elif test "$cpu" = "s390x" -a -d "$kerneldir/arch/s390/include" ; then
1644 kvm_cflags="$kvm_cflags -I$kerneldir/arch/s390/include"
8444eb6e
AL
1645 elif test -d "$kerneldir/arch/$cpu/include" ; then
1646 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1647 fi
eac30262 1648 else
f038e8f7 1649 kvm_cflags=`$pkgconfig --cflags kvm-kmod 2>/dev/null`
eac30262 1650 fi
52166aa0 1651 if compile_prog "$kvm_cflags" "" ; then
b31a0277 1652 kvm=yes
dae5079a
JK
1653 cat > $TMPC <<EOF
1654#include <linux/kvm_para.h>
1655int main(void) { return 0; }
1656EOF
1657 if compile_prog "$kvm_cflags" "" ; then
1658 kvm_para=yes
1659 fi
7ba1e619 1660 else
b31a0277 1661 if test "$kvm" = "yes" ; then
0dba6195 1662 if has awk && has grep; then
b31a0277 1663 kvmerr=`LANG=C $cc $QEMU_CFLAGS -o $TMPE $kvm_cflags $TMPC 2>&1 \
9fd8d8d7
AL
1664 | grep "error: " \
1665 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
b31a0277
JQ
1666 if test "$kvmerr" != "" ; then
1667 echo -e "${kvmerr}\n\
1668 NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \
1669 recent kvm-kmod from http://sourceforge.net/projects/kvm."
1670 fi
9fd8d8d7 1671 fi
b31a0277 1672 feature_not_found "kvm"
9fd8d8d7 1673 fi
b31a0277 1674 kvm=no
7ba1e619
AL
1675 fi
1676fi
1677
d5970055
MT
1678##########################################
1679# test for vhost net
1680
1681if test "$vhost_net" != "no"; then
1682 if test "$kvm" != "no"; then
1683 cat > $TMPC <<EOF
1684 #include <linux/vhost.h>
1685 int main(void) { return 0; }
1686EOF
1687 if compile_prog "$kvm_cflags" "" ; then
1688 vhost_net=yes
1689 else
1690 if test "$vhost_net" = "yes" ; then
1691 feature_not_found "vhost-net"
1692 fi
1693 vhost_net=no
1694 fi
1695 else
1696 if test "$vhost_net" = "yes" ; then
4021d247 1697 echo "NOTE: vhost-net feature requires KVM (--enable-kvm)."
d5970055
MT
1698 feature_not_found "vhost-net"
1699 fi
1700 vhost_net=no
1701 fi
1702fi
1703
414f0dab 1704##########################################
e5d355d1 1705# pthread probe
de65fe0f 1706PTHREADLIBS_LIST="-lpthread -lpthreadGC2"
3c529d93 1707
4dd75c70 1708pthread=no
e5d355d1 1709cat > $TMPC << EOF
3c529d93 1710#include <pthread.h>
de65fe0f 1711int main(void) { pthread_create(0,0,0,0); return 0; }
414f0dab 1712EOF
bd00d539
AF
1713if compile_prog "" "" ; then
1714 pthread=yes
1715else
1716 for pthread_lib in $PTHREADLIBS_LIST; do
1717 if compile_prog "" "$pthread_lib" ; then
1718 pthread=yes
1719 LIBS="$pthread_lib $LIBS"
1720 break
1721 fi
1722 done
1723fi
414f0dab 1724
4617e593 1725if test "$mingw32" != yes -a "$pthread" = no; then
4dd75c70
CH
1726 echo
1727 echo "Error: pthread check failed"
1728 echo "Make sure to have the pthread libs and headers installed."
1729 echo
1730 exit 1
e5d355d1
AL
1731fi
1732
5c6c3a6c
CH
1733##########################################
1734# linux-aio probe
5c6c3a6c
CH
1735
1736if test "$linux_aio" != "no" ; then
1737 cat > $TMPC <<EOF
1738#include <libaio.h>
1739#include <sys/eventfd.h>
1740int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
1741EOF
1742 if compile_prog "" "-laio" ; then
1743 linux_aio=yes
048d179f
PB
1744 libs_softmmu="$libs_softmmu -laio"
1745 libs_tools="$libs_tools -laio"
5c6c3a6c
CH
1746 else
1747 if test "$linux_aio" = "yes" ; then
1748 feature_not_found "linux AIO"
1749 fi
3cfcae3c 1750 linux_aio=no
5c6c3a6c
CH
1751 fi
1752fi
1753
758e8e38
VJJ
1754##########################################
1755# attr probe
1756
1757if test "$attr" != "no" ; then
1758 cat > $TMPC <<EOF
1759#include <stdio.h>
1760#include <sys/types.h>
1761#include <attr/xattr.h>
1762int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
1763EOF
1764 if compile_prog "" "-lattr" ; then
1765 attr=yes
1766 LIBS="-lattr $LIBS"
1767 else
1768 if test "$attr" = "yes" ; then
1769 feature_not_found "ATTR"
1770 fi
1771 attr=no
1772 fi
1773fi
1774
bf9298b9
AL
1775##########################################
1776# iovec probe
1777cat > $TMPC <<EOF
db34f0b3 1778#include <sys/types.h>
bf9298b9 1779#include <sys/uio.h>
db34f0b3 1780#include <unistd.h>
bf9298b9
AL
1781int main(void) { struct iovec iov; return 0; }
1782EOF
1783iovec=no
52166aa0 1784if compile_prog "" "" ; then
bf9298b9
AL
1785 iovec=yes
1786fi
1787
ceb42de8
AL
1788##########################################
1789# preadv probe
1790cat > $TMPC <<EOF
1791#include <sys/types.h>
1792#include <sys/uio.h>
1793#include <unistd.h>
1794int main(void) { preadv; }
1795EOF
1796preadv=no
52166aa0 1797if compile_prog "" "" ; then
ceb42de8
AL
1798 preadv=yes
1799fi
1800
f652e6af
AJ
1801##########################################
1802# fdt probe
2df87df7 1803if test "$fdt" != "no" ; then
b41af4ba
JQ
1804 fdt_libs="-lfdt"
1805 cat > $TMPC << EOF
f652e6af
AJ
1806int main(void) { return 0; }
1807EOF
52166aa0 1808 if compile_prog "" "$fdt_libs" ; then
f652e6af 1809 fdt=yes
e4782985 1810 libs_softmmu="$fdt_libs $libs_softmmu"
2df87df7
JQ
1811 else
1812 if test "$fdt" = "yes" ; then
1813 feature_not_found "fdt"
1814 fi
1815 fdt=no
f652e6af
AJ
1816 fi
1817fi
1818
3b3f24ad
AJ
1819#
1820# Check for xxxat() functions when we are building linux-user
1821# emulator. This is done because older glibc versions don't
1822# have syscall stubs for these implemented.
1823#
1824atfile=no
67ba57f6 1825cat > $TMPC << EOF
3b3f24ad
AJ
1826#define _ATFILE_SOURCE
1827#include <sys/types.h>
1828#include <fcntl.h>
1829#include <unistd.h>
1830
1831int
1832main(void)
1833{
1834 /* try to unlink nonexisting file */
1835 return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1836}
1837EOF
52166aa0 1838if compile_prog "" "" ; then
67ba57f6 1839 atfile=yes
3b3f24ad
AJ
1840fi
1841
39386ac7 1842# Check for inotify functions when we are building linux-user
3b3f24ad
AJ
1843# emulator. This is done because older glibc versions don't
1844# have syscall stubs for these implemented. In that case we
1845# don't provide them even if kernel supports them.
1846#
1847inotify=no
67ba57f6 1848cat > $TMPC << EOF
3b3f24ad
AJ
1849#include <sys/inotify.h>
1850
1851int
1852main(void)
1853{
1854 /* try to start inotify */
8690e420 1855 return inotify_init();
3b3f24ad
AJ
1856}
1857EOF
52166aa0 1858if compile_prog "" "" ; then
67ba57f6 1859 inotify=yes
3b3f24ad
AJ
1860fi
1861
c05c7a73
RV
1862inotify1=no
1863cat > $TMPC << EOF
1864#include <sys/inotify.h>
1865
1866int
1867main(void)
1868{
1869 /* try to start inotify */
1870 return inotify_init1(0);
1871}
1872EOF
1873if compile_prog "" "" ; then
1874 inotify1=yes
1875fi
1876
ebc996f3
RV
1877# check if utimensat and futimens are supported
1878utimens=no
1879cat > $TMPC << EOF
1880#define _ATFILE_SOURCE
1881#define _GNU_SOURCE
1882#include <stddef.h>
1883#include <fcntl.h>
1884
1885int main(void)
1886{
1887 utimensat(AT_FDCWD, "foo", NULL, 0);
1888 futimens(0, NULL);
1889 return 0;
1890}
1891EOF
52166aa0 1892if compile_prog "" "" ; then
ebc996f3
RV
1893 utimens=yes
1894fi
1895
099d6b0f
RV
1896# check if pipe2 is there
1897pipe2=no
1898cat > $TMPC << EOF
1899#define _GNU_SOURCE
1900#include <unistd.h>
1901#include <fcntl.h>
1902
1903int main(void)
1904{
1905 int pipefd[2];
1906 pipe2(pipefd, O_CLOEXEC);
1907 return 0;
1908}
1909EOF
52166aa0 1910if compile_prog "" "" ; then
099d6b0f
RV
1911 pipe2=yes
1912fi
1913
40ff6d7e
KW
1914# check if accept4 is there
1915accept4=no
1916cat > $TMPC << EOF
1917#define _GNU_SOURCE
1918#include <sys/socket.h>
1919#include <stddef.h>
1920
1921int main(void)
1922{
1923 accept4(0, NULL, NULL, SOCK_CLOEXEC);
1924 return 0;
1925}
1926EOF
1927if compile_prog "" "" ; then
1928 accept4=yes
1929fi
1930
3ce34dfb 1931# check if tee/splice is there. vmsplice was added same time.
1932splice=no
1933cat > $TMPC << EOF
1934#define _GNU_SOURCE
1935#include <unistd.h>
1936#include <fcntl.h>
1937#include <limits.h>
1938
1939int main(void)
1940{
1941 int len, fd;
1942 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
1943 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
1944 return 0;
1945}
1946EOF
52166aa0 1947if compile_prog "" "" ; then
3ce34dfb 1948 splice=yes
1949fi
1950
c2882b96
RV
1951# check if eventfd is supported
1952eventfd=no
1953cat > $TMPC << EOF
1954#include <sys/eventfd.h>
1955
1956int main(void)
1957{
1958 int efd = eventfd(0, 0);
1959 return 0;
1960}
1961EOF
1962if compile_prog "" "" ; then
1963 eventfd=yes
1964fi
1965
d0927938
UH
1966# check for fallocate
1967fallocate=no
1968cat > $TMPC << EOF
1969#include <fcntl.h>
1970
1971int main(void)
1972{
1973 fallocate(0, 0, 0, 0);
1974 return 0;
1975}
1976EOF
be17dc90 1977if compile_prog "$ARCH_CFLAGS" "" ; then
d0927938
UH
1978 fallocate=yes
1979fi
1980
1981# check for dup3
1982dup3=no
1983cat > $TMPC << EOF
1984#include <unistd.h>
1985
1986int main(void)
1987{
1988 dup3(0, 0, 0);
1989 return 0;
1990}
1991EOF
78f5d726 1992if compile_prog "" "" ; then
d0927938
UH
1993 dup3=yes
1994fi
1995
cc8ae6de 1996# Check if tools are available to build documentation.
a25dba17 1997if test "$docs" != "no" ; then
01668d98 1998 if has makeinfo && has pod2man; then
a25dba17 1999 docs=yes
83a3ab8b 2000 else
a25dba17
JQ
2001 if test "$docs" = "yes" ; then
2002 feature_not_found "docs"
83a3ab8b 2003 fi
a25dba17 2004 docs=no
83a3ab8b 2005 fi
cc8ae6de
PB
2006fi
2007
f514f41c 2008# Search for bswap_32 function
6ae9a1f4
JQ
2009byteswap_h=no
2010cat > $TMPC << EOF
2011#include <byteswap.h>
2012int main(void) { return bswap_32(0); }
2013EOF
52166aa0 2014if compile_prog "" "" ; then
6ae9a1f4
JQ
2015 byteswap_h=yes
2016fi
2017
f514f41c 2018# Search for bswap_32 function
6ae9a1f4
JQ
2019bswap_h=no
2020cat > $TMPC << EOF
2021#include <sys/endian.h>
2022#include <sys/types.h>
2023#include <machine/bswap.h>
2024int main(void) { return bswap32(0); }
2025EOF
52166aa0 2026if compile_prog "" "" ; then
6ae9a1f4
JQ
2027 bswap_h=yes
2028fi
2029
da93a1fd
AL
2030##########################################
2031# Do we need librt
2032cat > $TMPC <<EOF
2033#include <signal.h>
2034#include <time.h>
2035int main(void) { clockid_t id; return clock_gettime(id, NULL); }
2036EOF
2037
52166aa0 2038if compile_prog "" "" ; then
07ffa4bd 2039 :
52166aa0 2040elif compile_prog "" "-lrt" ; then
07ffa4bd 2041 LIBS="-lrt $LIBS"
da93a1fd
AL
2042fi
2043
31ff504d 2044if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
179cf400 2045 "$aix" != "yes" -a "$haiku" != "yes" ; then
6362a53f
JQ
2046 libs_softmmu="-lutil $libs_softmmu"
2047fi
2048
de5071c5
BS
2049##########################################
2050# check if the compiler defines offsetof
2051
2052need_offsetof=yes
2053cat > $TMPC << EOF
2054#include <stddef.h>
2055int main(void) { struct s { int f; }; return offsetof(struct s, f); }
2056EOF
2057if compile_prog "" "" ; then
2058 need_offsetof=no
2059fi
2060
747bbdf7
BS
2061##########################################
2062# check if the compiler understands attribute warn_unused_result
2063#
2064# This could be smarter, but gcc -Werror does not error out even when warning
2065# about attribute warn_unused_result
2066
2067gcc_attribute_warn_unused_result=no
2068cat > $TMPC << EOF
2069#if defined(__GNUC__) && (__GNUC__ < 4) && defined(__GNUC_MINOR__) && (__GNUC__ < 4)
2070#error gcc 3.3 or older
2071#endif
2072int main(void) { return 0;}
2073EOF
2074if compile_prog "" ""; then
2075 gcc_attribute_warn_unused_result=yes
2076fi
2077
5f6b9e8f
BS
2078##########################################
2079# check if we have fdatasync
2080
2081fdatasync=no
2082cat > $TMPC << EOF
2083#include <unistd.h>
2084int main(void) { return fdatasync(0); }
2085EOF
2086if compile_prog "" "" ; then
2087 fdatasync=yes
2088fi
2089
e78815a5
AF
2090##########################################
2091# check if we have madvise
2092
2093madvise=no
2094cat > $TMPC << EOF
2095#include <sys/types.h>
2096#include <sys/mman.h>
2097int main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
2098EOF
2099if compile_prog "" "" ; then
2100 madvise=yes
2101fi
2102
2103##########################################
2104# check if we have posix_madvise
2105
2106posix_madvise=no
2107cat > $TMPC << EOF
2108#include <sys/mman.h>
2109int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
2110EOF
2111if compile_prog "" "" ; then
2112 posix_madvise=yes
2113fi
2114
94a420b1
SH
2115##########################################
2116# check if trace backend exists
2117
2118sh "$source_path/tracetool" "--$trace_backend" --check-backend > /dev/null 2> /dev/null
2119if test "$?" -ne 0 ; then
2120 echo
2121 echo "Error: invalid trace backend"
2122 echo "Please choose a supported trace backend."
2123 echo
2124 exit 1
2125fi
2126
7e24e92a
SH
2127##########################################
2128# For 'ust' backend, test if ust headers are present
2129if test "$trace_backend" = "ust"; then
2130 cat > $TMPC << EOF
2131#include <ust/tracepoint.h>
2132#include <ust/marker.h>
2133int main(void) { return 0; }
2134EOF
2135 if compile_prog "" "" ; then
2136 LIBS="-lust $LIBS"
2137 else
2138 echo
2139 echo "Error: Trace backend 'ust' missing libust header files"
2140 echo
2141 exit 1
2142 fi
2143fi
2144##########################################
e86ecd4b
JQ
2145# End of CC checks
2146# After here, no more $cc or $ld runs
2147
e86ecd4b 2148if test "$debug" = "no" ; then
1156c669 2149 CFLAGS="-O2 $CFLAGS"
e86ecd4b 2150fi
a316e378 2151
e86ecd4b
JQ
2152# Consult white-list to determine whether to enable werror
2153# by default. Only enable by default for git builds
20ff6c80
AL
2154z_version=`cut -f3 -d. $source_path/VERSION`
2155
e86ecd4b 2156if test -z "$werror" ; then
e86ecd4b
JQ
2157 if test "$z_version" = "50" -a \
2158 "$linux" = "yes" ; then
2159 werror="yes"
2160 else
2161 werror="no"
2162 fi
2163fi
2164
20ff6c80
AL
2165# Disable zero malloc errors for official releases unless explicitly told to
2166# enable/disable
2167if test -z "$zero_malloc" ; then
2168 if test "$z_version" = "50" ; then
2169 zero_malloc="no"
2170 else
2171 zero_malloc="yes"
2172 fi
2173fi
2174
e86ecd4b 2175if test "$werror" = "yes" ; then
a558ee17 2176 QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
e86ecd4b
JQ
2177fi
2178
2179if test "$solaris" = "no" ; then
2180 if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
1156c669 2181 LDFLAGS="-Wl,--warn-common $LDFLAGS"
e86ecd4b
JQ
2182 fi
2183fi
2184
952afb71
BS
2185# Use ASLR, no-SEH and DEP if available
2186if test "$mingw32" = "yes" ; then
2187 for flag in --dynamicbase --no-seh --nxcompat; do
2188 if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
2189 LDFLAGS="-Wl,$flag $LDFLAGS"
2190 fi
2191 done
2192fi
2193
190e9c59 2194confdir=$sysconfdir$confsuffix
e7b45cc4 2195
ca35f780
PB
2196tools=
2197if test "$softmmu" = yes ; then
2198 tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
2199 if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
2200 tools="qemu-nbd\$(EXESUF) $tools"
2201 if [ "$check_utests" = "yes" ]; then
2202 tools="check-qint check-qstring check-qdict check-qlist $tools"
2203 tools="check-qfloat check-qjson $tools"
2204 fi
2205 fi
2206fi
2207
2208# Mac OS X ships with a broken assembler
2209roms=
2210if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
2211 "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
2212 "$softmmu" = yes ; then
2213 roms="optionrom"
2214fi
2215
2216
43ce4dfe 2217echo "Install prefix $prefix"
f2b9e1e3
PB
2218echo "BIOS directory `eval echo $datadir`"
2219echo "binary directory `eval echo $bindir`"
1c0fd160 2220echo "config directory `eval echo $sysconfdir`"
11d9f695 2221if test "$mingw32" = "no" ; then
f2b9e1e3 2222echo "Manual directory `eval echo $mandir`"
43ce4dfe 2223echo "ELF interp prefix $interp_prefix"
11d9f695 2224fi
5a67135a 2225echo "Source path $source_path"
43ce4dfe 2226echo "C compiler $cc"
83469015 2227echo "Host C compiler $host_cc"
0c439cbf 2228echo "CFLAGS $CFLAGS"
a558ee17 2229echo "QEMU_CFLAGS $QEMU_CFLAGS"
0c439cbf 2230echo "LDFLAGS $LDFLAGS"
43ce4dfe 2231echo "make $make"
6a882643 2232echo "install $install"
43ce4dfe 2233echo "host CPU $cpu"
de83cd02 2234echo "host big endian $bigendian"
97a847bc 2235echo "target list $target_list"
ade25b0d 2236echo "tcg debug enabled $debug_tcg"
b4475aa2 2237echo "Mon debug enabled $debug_mon"
43ce4dfe 2238echo "gprof enabled $gprof"
03b4fe7d 2239echo "sparse enabled $sparse"
1625af87 2240echo "strip binaries $strip_opt"
05c2a3e7 2241echo "profiler $profiler"
43ce4dfe 2242echo "static build $static"
85aa5189 2243echo "-Werror enabled $werror"
5b0753e0
FB
2244if test "$darwin" = "yes" ; then
2245 echo "Cocoa support $cocoa"
2246fi
97a847bc 2247echo "SDL support $sdl"
4d3b6f6e 2248echo "curses support $curses"
769ce76d 2249echo "curl support $curl"
5495ed11 2250echo "check support $check_utests"
67b915a5 2251echo "mingw32 support $mingw32"
0c58ac1c 2252echo "Audio drivers $audio_drv_list"
2253echo "Extra audio cards $audio_card_list"
eb852011 2254echo "Block whitelist $block_drv_whitelist"
8ff9cbf7 2255echo "Mixer emulation $mixemu"
8d5d2d4c 2256echo "VNC TLS support $vnc_tls"
2f9606b3 2257echo "VNC SASL support $vnc_sasl"
2f6f5c7a 2258echo "VNC JPEG support $vnc_jpeg"
efe556ad 2259echo "VNC PNG support $vnc_png"
bd023f95 2260echo "VNC thread $vnc_thread"
3142255c
BS
2261if test -n "$sparc_cpu"; then
2262 echo "Target Sparc Arch $sparc_cpu"
2263fi
e37630ca 2264echo "xen support $xen"
2e4d9fb1 2265echo "brlapi support $brlapi"
a20a6f46 2266echo "bluez support $bluez"
a25dba17 2267echo "Documentation $docs"
c5937220
PB
2268[ ! -z "$uname_release" ] && \
2269echo "uname -r $uname_release"
bd0c5661 2270echo "NPTL support $nptl"
379f6698 2271echo "GUEST_BASE $guest_base"
34005a00 2272echo "PIE user targets $user_pie"
8a16d273 2273echo "vde support $vde"
e5d355d1 2274echo "IO thread $io_thread"
5c6c3a6c 2275echo "Linux AIO support $linux_aio"
758e8e38 2276echo "ATTR/XATTR support $attr"
77755340 2277echo "Install blobs $blobs"
b31a0277 2278echo "KVM support $kvm"
f652e6af 2279echo "fdt support $fdt"
ceb42de8 2280echo "preadv support $preadv"
5f6b9e8f 2281echo "fdatasync $fdatasync"
e78815a5
AF
2282echo "madvise $madvise"
2283echo "posix_madvise $posix_madvise"
ee682d27 2284echo "uuid support $uuid"
d5970055 2285echo "vhost-net support $vhost_net"
94a420b1 2286echo "Trace backend $trace_backend"
9410b56c 2287echo "Trace output file $trace_file-<pid>"
67b915a5 2288
97a847bc 2289if test $sdl_too_old = "yes"; then
24b55b96 2290echo "-> Your SDL version is too old - please upgrade to have SDL support"
7c1f25b4 2291fi
7d13299d 2292
98ec69ac 2293config_host_mak="config-host.mak"
4bf6b55b 2294config_host_ld="config-host.ld"
98ec69ac 2295
98ec69ac
JQ
2296echo "# Automatically generated by configure - do not modify" > $config_host_mak
2297printf "# Configured with:" >> $config_host_mak
2298printf " '%s'" "$0" "$@" >> $config_host_mak
2299echo >> $config_host_mak
98ec69ac 2300
99d7cc75
PB
2301echo "prefix=$prefix" >> $config_host_mak
2302echo "bindir=$bindir" >> $config_host_mak
2303echo "mandir=$mandir" >> $config_host_mak
2304echo "datadir=$datadir" >> $config_host_mak
2305echo "sysconfdir=$sysconfdir" >> $config_host_mak
2306echo "docdir=$docdir" >> $config_host_mak
1dabe05c 2307echo "confdir=$confdir" >> $config_host_mak
804edf29 2308
2408a527 2309case "$cpu" in
24e804ec 2310 i386|x86_64|alpha|cris|hppa|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
e0da9dd3 2311 ARCH=$cpu
2408a527 2312 ;;
a302c32d 2313 armv4b|armv4l)
16dbd14f 2314 ARCH=arm
2408a527 2315 ;;
2408a527 2316esac
98ec69ac 2317echo "ARCH=$ARCH" >> $config_host_mak
f8393946 2318if test "$debug_tcg" = "yes" ; then
2358a494 2319 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
f8393946 2320fi
b4475aa2
LC
2321if test "$debug_mon" = "yes" ; then
2322 echo "CONFIG_DEBUG_MONITOR=y" >> $config_host_mak
2323fi
f3d08ee6 2324if test "$debug" = "yes" ; then
2358a494 2325 echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak
f3d08ee6 2326fi
1625af87 2327if test "$strip_opt" = "yes" ; then
52ba784d 2328 echo "STRIP=${strip}" >> $config_host_mak
1625af87 2329fi
7d13299d 2330if test "$bigendian" = "yes" ; then
e2542fe2 2331 echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
97a847bc 2332fi
2358a494 2333echo "HOST_LONG_BITS=$hostlongbits" >> $config_host_mak
67b915a5 2334if test "$mingw32" = "yes" ; then
98ec69ac 2335 echo "CONFIG_WIN32=y" >> $config_host_mak
9fe6de94
BS
2336 rc_version=`cat $source_path/VERSION`
2337 version_major=${rc_version%%.*}
2338 rc_version=${rc_version#*.}
2339 version_minor=${rc_version%%.*}
2340 rc_version=${rc_version#*.}
2341 version_subminor=${rc_version%%.*}
2342 version_micro=0
2343 echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
2344 echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
210fa556 2345else
35f4df27 2346 echo "CONFIG_POSIX=y" >> $config_host_mak
dffcb71c
MM
2347fi
2348
2349if test "$linux" = "yes" ; then
2350 echo "CONFIG_LINUX=y" >> $config_host_mak
67b915a5 2351fi
128ab2ff 2352
83fb7adf 2353if test "$darwin" = "yes" ; then
98ec69ac 2354 echo "CONFIG_DARWIN=y" >> $config_host_mak
83fb7adf 2355fi
b29fe3ed 2356
2357if test "$aix" = "yes" ; then
98ec69ac 2358 echo "CONFIG_AIX=y" >> $config_host_mak
b29fe3ed 2359fi
2360
ec530c81 2361if test "$solaris" = "yes" ; then
98ec69ac 2362 echo "CONFIG_SOLARIS=y" >> $config_host_mak
2358a494 2363 echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
0475a5ca 2364 if test "$needs_libsunmath" = "yes" ; then
75b5a697 2365 echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
0475a5ca 2366 fi
ec530c81 2367fi
179cf400
AF
2368if test "$haiku" = "yes" ; then
2369 echo "CONFIG_HAIKU=y" >> $config_host_mak
2370fi
97a847bc 2371if test "$static" = "yes" ; then
98ec69ac 2372 echo "CONFIG_STATIC=y" >> $config_host_mak
7d13299d 2373fi
05c2a3e7 2374if test $profiler = "yes" ; then
2358a494 2375 echo "CONFIG_PROFILER=y" >> $config_host_mak
05c2a3e7 2376fi
c20709aa 2377if test "$slirp" = "yes" ; then
98ec69ac 2378 echo "CONFIG_SLIRP=y" >> $config_host_mak
b6e31c12 2379 QEMU_CFLAGS="-I\$(SRC_PATH)/slirp $QEMU_CFLAGS"
c20709aa 2380fi
8a16d273 2381if test "$vde" = "yes" ; then
98ec69ac 2382 echo "CONFIG_VDE=y" >> $config_host_mak
8a16d273 2383fi
0c58ac1c 2384for card in $audio_card_list; do
f6e5889e 2385 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
98ec69ac 2386 echo "$def=y" >> $config_host_mak
0c58ac1c 2387done
2358a494 2388echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
0c58ac1c 2389for drv in $audio_drv_list; do
f6e5889e 2390 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
98ec69ac 2391 echo "$def=y" >> $config_host_mak
923e4521 2392 if test "$drv" = "fmod"; then
7aac6cb1 2393 echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
0c58ac1c 2394 fi
2395done
67f86e8e
JQ
2396if test "$audio_pt_int" = "yes" ; then
2397 echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
2398fi
d5631638 2399if test "$audio_win_int" = "yes" ; then
2400 echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
2401fi
eb852011 2402echo "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak
8ff9cbf7 2403if test "$mixemu" = "yes" ; then
98ec69ac 2404 echo "CONFIG_MIXEMU=y" >> $config_host_mak
8ff9cbf7 2405fi
8d5d2d4c 2406if test "$vnc_tls" = "yes" ; then
98ec69ac 2407 echo "CONFIG_VNC_TLS=y" >> $config_host_mak
525061bf 2408 echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
8d5d2d4c 2409fi
2f9606b3 2410if test "$vnc_sasl" = "yes" ; then
98ec69ac 2411 echo "CONFIG_VNC_SASL=y" >> $config_host_mak
60ddf533 2412 echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
2f9606b3 2413fi
96763cf9 2414if test "$vnc_jpeg" != "no" ; then
2f6f5c7a
CC
2415 echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
2416 echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak
2417fi
96763cf9 2418if test "$vnc_png" != "no" ; then
efe556ad
CC
2419 echo "CONFIG_VNC_PNG=y" >> $config_host_mak
2420 echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak
2421fi
96763cf9 2422if test "$vnc_thread" != "no" ; then
bd023f95
CC
2423 echo "CONFIG_VNC_THREAD=y" >> $config_host_mak
2424 echo "CONFIG_THREAD=y" >> $config_host_mak
2425fi
76655d6d 2426if test "$fnmatch" = "yes" ; then
2358a494 2427 echo "CONFIG_FNMATCH=y" >> $config_host_mak
76655d6d 2428fi
ee682d27
SW
2429if test "$uuid" = "yes" ; then
2430 echo "CONFIG_UUID=y" >> $config_host_mak
2431fi
b1a550a0 2432qemu_version=`head $source_path/VERSION`
98ec69ac 2433echo "VERSION=$qemu_version" >>$config_host_mak
2358a494 2434echo "PKGVERSION=$pkgversion" >>$config_host_mak
98ec69ac 2435echo "SRC_PATH=$source_path" >> $config_host_mak
98ec69ac 2436echo "TARGET_DIRS=$target_list" >> $config_host_mak
a25dba17 2437if [ "$docs" = "yes" ] ; then
98ec69ac 2438 echo "BUILD_DOCS=yes" >> $config_host_mak
cc8ae6de 2439fi
1ac88f28 2440if test "$sdl" = "yes" ; then
98ec69ac 2441 echo "CONFIG_SDL=y" >> $config_host_mak
1ac88f28 2442 echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
49ecc3fa
FB
2443fi
2444if test "$cocoa" = "yes" ; then
98ec69ac 2445 echo "CONFIG_COCOA=y" >> $config_host_mak
4d3b6f6e
AZ
2446fi
2447if test "$curses" = "yes" ; then
98ec69ac 2448 echo "CONFIG_CURSES=y" >> $config_host_mak
49ecc3fa 2449fi
3b3f24ad 2450if test "$atfile" = "yes" ; then
2358a494 2451 echo "CONFIG_ATFILE=y" >> $config_host_mak
3b3f24ad 2452fi
ebc996f3 2453if test "$utimens" = "yes" ; then
2358a494 2454 echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
ebc996f3 2455fi
099d6b0f 2456if test "$pipe2" = "yes" ; then
2358a494 2457 echo "CONFIG_PIPE2=y" >> $config_host_mak
099d6b0f 2458fi
40ff6d7e
KW
2459if test "$accept4" = "yes" ; then
2460 echo "CONFIG_ACCEPT4=y" >> $config_host_mak
2461fi
3ce34dfb 2462if test "$splice" = "yes" ; then
2358a494 2463 echo "CONFIG_SPLICE=y" >> $config_host_mak
3ce34dfb 2464fi
c2882b96
RV
2465if test "$eventfd" = "yes" ; then
2466 echo "CONFIG_EVENTFD=y" >> $config_host_mak
2467fi
d0927938
UH
2468if test "$fallocate" = "yes" ; then
2469 echo "CONFIG_FALLOCATE=y" >> $config_host_mak
2470fi
2471if test "$dup3" = "yes" ; then
2472 echo "CONFIG_DUP3=y" >> $config_host_mak
2473fi
3b3f24ad 2474if test "$inotify" = "yes" ; then
2358a494 2475 echo "CONFIG_INOTIFY=y" >> $config_host_mak
3b3f24ad 2476fi
c05c7a73
RV
2477if test "$inotify1" = "yes" ; then
2478 echo "CONFIG_INOTIFY1=y" >> $config_host_mak
2479fi
6ae9a1f4
JQ
2480if test "$byteswap_h" = "yes" ; then
2481 echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
2482fi
2483if test "$bswap_h" = "yes" ; then
2484 echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
2485fi
769ce76d 2486if test "$curl" = "yes" ; then
98ec69ac 2487 echo "CONFIG_CURL=y" >> $config_host_mak
b1d5a277 2488 echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
769ce76d 2489fi
2e4d9fb1 2490if test "$brlapi" = "yes" ; then
98ec69ac 2491 echo "CONFIG_BRLAPI=y" >> $config_host_mak
2e4d9fb1 2492fi
fb599c9a 2493if test "$bluez" = "yes" ; then
98ec69ac 2494 echo "CONFIG_BLUEZ=y" >> $config_host_mak
ef7635ec 2495 echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
fb599c9a 2496fi
e37630ca 2497if test "$xen" = "yes" ; then
5647eb74 2498 echo "CONFIG_XEN=y" >> $config_host_mak
e37630ca 2499fi
e5d355d1 2500if test "$io_thread" = "yes" ; then
98ec69ac 2501 echo "CONFIG_IOTHREAD=y" >> $config_host_mak
bd023f95 2502 echo "CONFIG_THREAD=y" >> $config_host_mak
e5d355d1 2503fi
5c6c3a6c
CH
2504if test "$linux_aio" = "yes" ; then
2505 echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
2506fi
758e8e38
VJJ
2507if test "$attr" = "yes" ; then
2508 echo "CONFIG_ATTR=y" >> $config_host_mak
2509fi
2510if test "$linux" = "yes" ; then
2511 if test "$attr" = "yes" ; then
2512 echo "CONFIG_VIRTFS=y" >> $config_host_mak
2513 fi
2514fi
77755340 2515if test "$blobs" = "yes" ; then
98ec69ac 2516 echo "INSTALL_BLOBS=yes" >> $config_host_mak
77755340 2517fi
bf9298b9 2518if test "$iovec" = "yes" ; then
2358a494 2519 echo "CONFIG_IOVEC=y" >> $config_host_mak
bf9298b9 2520fi
ceb42de8 2521if test "$preadv" = "yes" ; then
2358a494 2522 echo "CONFIG_PREADV=y" >> $config_host_mak
ceb42de8 2523fi
f652e6af 2524if test "$fdt" = "yes" ; then
3f0855b1 2525 echo "CONFIG_FDT=y" >> $config_host_mak
f652e6af 2526fi
de5071c5
BS
2527if test "$need_offsetof" = "yes" ; then
2528 echo "CONFIG_NEED_OFFSETOF=y" >> $config_host_mak
2529fi
747bbdf7
BS
2530if test "$gcc_attribute_warn_unused_result" = "yes" ; then
2531 echo "CONFIG_GCC_ATTRIBUTE_WARN_UNUSED_RESULT=y" >> $config_host_mak
2532fi
5f6b9e8f
BS
2533if test "$fdatasync" = "yes" ; then
2534 echo "CONFIG_FDATASYNC=y" >> $config_host_mak
2535fi
e78815a5
AF
2536if test "$madvise" = "yes" ; then
2537 echo "CONFIG_MADVISE=y" >> $config_host_mak
2538fi
2539if test "$posix_madvise" = "yes" ; then
2540 echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
2541fi
97a847bc 2542
83fb7adf 2543# XXX: suppress that
7d3505c5 2544if [ "$bsd" = "yes" ] ; then
2358a494 2545 echo "CONFIG_BSD=y" >> $config_host_mak
7d3505c5
FB
2546fi
2547
2358a494 2548echo "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak
c5937220 2549
20ff6c80
AL
2550if test "$zero_malloc" = "yes" ; then
2551 echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak
2552fi
2553
68063649
BS
2554# USB host support
2555case "$usb" in
2556linux)
98ec69ac 2557 echo "HOST_USB=linux" >> $config_host_mak
68063649
BS
2558;;
2559bsd)
98ec69ac 2560 echo "HOST_USB=bsd" >> $config_host_mak
68063649
BS
2561;;
2562*)
98ec69ac 2563 echo "HOST_USB=stub" >> $config_host_mak
68063649
BS
2564;;
2565esac
2566
94a420b1 2567echo "TRACE_BACKEND=$trace_backend" >> $config_host_mak
22890ab5
PS
2568if test "$trace_backend" = "simple"; then
2569 echo "CONFIG_SIMPLE_TRACE=y" >> $config_host_mak
2570fi
9410b56c
PS
2571# Set the appropriate trace file.
2572if test "$trace_backend" = "simple"; then
2573 trace_file="\"$trace_file-%u\""
2574fi
2575echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
2576
98ec69ac 2577echo "TOOLS=$tools" >> $config_host_mak
98ec69ac 2578echo "ROMS=$roms" >> $config_host_mak
804edf29
JQ
2579echo "MAKE=$make" >> $config_host_mak
2580echo "INSTALL=$install" >> $config_host_mak
2581echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak
2582echo "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak
2583echo "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak
2584echo "CC=$cc" >> $config_host_mak
2585echo "HOST_CC=$host_cc" >> $config_host_mak
2586if test "$sparse" = "yes" ; then
2587 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak
2588 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak
a558ee17 2589 echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
804edf29
JQ
2590fi
2591echo "AR=$ar" >> $config_host_mak
2592echo "OBJCOPY=$objcopy" >> $config_host_mak
2593echo "LD=$ld" >> $config_host_mak
9fe6de94 2594echo "WINDRES=$windres" >> $config_host_mak
e2a2ed06 2595echo "CFLAGS=$CFLAGS" >> $config_host_mak
a558ee17 2596echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
c81da56e 2597echo "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak
e2a2ed06 2598echo "LDFLAGS=$LDFLAGS" >> $config_host_mak
a36abbbb
JQ
2599echo "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak
2600echo "ARLIBS_END=$arlibs_end" >> $config_host_mak
73da375e 2601echo "LIBS+=$LIBS" >> $config_host_mak
3e2e0e6b 2602echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
804edf29 2603echo "EXESUF=$EXESUF" >> $config_host_mak
804edf29 2604
4bf6b55b
JQ
2605# generate list of library paths for linker script
2606
2607$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld}
2608
2609if test -f ${config_host_ld}~ ; then
2610 if cmp -s $config_host_ld ${config_host_ld}~ ; then
2611 mv ${config_host_ld}~ $config_host_ld
2612 else
2613 rm ${config_host_ld}~
2614 fi
2615fi
2616
4d904533
BS
2617for d in libdis libdis-user; do
2618 mkdir -p $d
2619 rm -f $d/Makefile
2620 ln -s $source_path/Makefile.dis $d/Makefile
2621 echo > $d/config.mak
2622done
d44cff22
RH
2623if test "$static" = "no" -a "$user_pie" = "yes" ; then
2624 echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak
2625fi
4d904533 2626
1d14ffa9 2627for target in $target_list; do
97a847bc 2628target_dir="$target"
25be210f 2629config_target_mak=$target_dir/config-target.mak
600309b6 2630target_arch2=`echo $target | cut -d '-' -f 1`
97a847bc 2631target_bigendian="no"
1f3d3c8f 2632
ea2d6a39 2633case "$target_arch2" in
24e804ec 2634 armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus)
ea2d6a39
JQ
2635 target_bigendian=yes
2636 ;;
2637esac
97a847bc 2638target_softmmu="no"
997344f3 2639target_user_only="no"
831b7825 2640target_linux_user="no"
831b7825 2641target_darwin_user="no"
84778508 2642target_bsd_user="no"
9e407a85 2643case "$target" in
600309b6 2644 ${target_arch2}-softmmu)
9e407a85
PB
2645 target_softmmu="yes"
2646 ;;
600309b6 2647 ${target_arch2}-linux-user)
9c7a4202
BS
2648 if test "$linux" != "yes" ; then
2649 echo "ERROR: Target '$target' is only available on a Linux host"
2650 exit 1
2651 fi
9e407a85
PB
2652 target_user_only="yes"
2653 target_linux_user="yes"
2654 ;;
600309b6 2655 ${target_arch2}-darwin-user)
9c7a4202
BS
2656 if test "$darwin" != "yes" ; then
2657 echo "ERROR: Target '$target' is only available on a Darwin host"
2658 exit 1
2659 fi
9e407a85
PB
2660 target_user_only="yes"
2661 target_darwin_user="yes"
2662 ;;
600309b6 2663 ${target_arch2}-bsd-user)
9cf55765 2664 if test "$bsd" != "yes" ; then
9c7a4202
BS
2665 echo "ERROR: Target '$target' is only available on a BSD host"
2666 exit 1
2667 fi
84778508
BS
2668 target_user_only="yes"
2669 target_bsd_user="yes"
2670 ;;
9e407a85
PB
2671 *)
2672 echo "ERROR: Target '$target' not recognised"
2673 exit 1
2674 ;;
2675esac
831b7825 2676
97a847bc 2677mkdir -p $target_dir
158142c2 2678mkdir -p $target_dir/fpu
57fec1fe 2679mkdir -p $target_dir/tcg
59f2a787 2680mkdir -p $target_dir/ide
84778508 2681if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
69de927c
FB
2682 mkdir -p $target_dir/nwfpe
2683fi
2684
ec530c81
FB
2685#
2686# don't use ln -sf as not all "ln -sf" over write the file/link
2687#
2688rm -f $target_dir/Makefile
2689ln -s $source_path/Makefile.target $target_dir/Makefile
2690
97a847bc 2691
25be210f 2692echo "# Automatically generated by configure - do not modify" > $config_target_mak
de83cd02 2693
e5fe0c52 2694bflt="no"
bd0c5661 2695target_nptl="no"
600309b6 2696interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
7ee2822c 2697echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
56aebc89 2698gdb_xml_files=""
7ba1e619 2699
938b1edd 2700TARGET_ARCH="$target_arch2"
6acff7da 2701TARGET_BASE_ARCH=""
e6e91b9c 2702TARGET_ABI_DIR=""
e73aae67 2703
600309b6 2704case "$target_arch2" in
2408a527 2705 i386)
1ad2134f 2706 target_phys_bits=32
2408a527
AJ
2707 ;;
2708 x86_64)
6acff7da 2709 TARGET_BASE_ARCH=i386
1ad2134f 2710 target_phys_bits=64
2408a527
AJ
2711 ;;
2712 alpha)
1ad2134f 2713 target_phys_bits=64
a4b388ff 2714 target_nptl="yes"
2408a527
AJ
2715 ;;
2716 arm|armeb)
b498c8a0 2717 TARGET_ARCH=arm
2408a527 2718 bflt="yes"
bd0c5661 2719 target_nptl="yes"
56aebc89 2720 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1ad2134f 2721 target_phys_bits=32
2408a527
AJ
2722 ;;
2723 cris)
253bd7f8 2724 target_nptl="yes"
1ad2134f 2725 target_phys_bits=32
2408a527
AJ
2726 ;;
2727 m68k)
2408a527 2728 bflt="yes"
56aebc89 2729 gdb_xml_files="cf-core.xml cf-fp.xml"
1ad2134f 2730 target_phys_bits=32
2408a527 2731 ;;
72b675ca 2732 microblaze)
72b675ca
EI
2733 bflt="yes"
2734 target_nptl="yes"
2735 target_phys_bits=32
2736 ;;
0adcffb1 2737 mips|mipsel)
b498c8a0 2738 TARGET_ARCH=mips
25be210f 2739 echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
f04dc72f 2740 target_nptl="yes"
1ad2134f 2741 target_phys_bits=64
2408a527
AJ
2742 ;;
2743 mipsn32|mipsn32el)
b498c8a0 2744 TARGET_ARCH=mipsn32
6acff7da 2745 TARGET_BASE_ARCH=mips
25be210f 2746 echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
1ad2134f 2747 target_phys_bits=64
2408a527
AJ
2748 ;;
2749 mips64|mips64el)
b498c8a0 2750 TARGET_ARCH=mips64
6acff7da 2751 TARGET_BASE_ARCH=mips
25be210f 2752 echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
1ad2134f 2753 target_phys_bits=64
2408a527
AJ
2754 ;;
2755 ppc)
c8b3532d 2756 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2757 target_phys_bits=32
d6630708 2758 target_nptl="yes"
2408a527
AJ
2759 ;;
2760 ppcemb)
6acff7da 2761 TARGET_BASE_ARCH=ppc
e6e91b9c 2762 TARGET_ABI_DIR=ppc
c8b3532d 2763 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2764 target_phys_bits=64
d6630708 2765 target_nptl="yes"
2408a527
AJ
2766 ;;
2767 ppc64)
6acff7da 2768 TARGET_BASE_ARCH=ppc
e6e91b9c 2769 TARGET_ABI_DIR=ppc
c8b3532d 2770 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2771 target_phys_bits=64
2408a527
AJ
2772 ;;
2773 ppc64abi32)
b498c8a0 2774 TARGET_ARCH=ppc64
6acff7da 2775 TARGET_BASE_ARCH=ppc
e6e91b9c 2776 TARGET_ABI_DIR=ppc
25be210f 2777 echo "TARGET_ABI32=y" >> $config_target_mak
c8b3532d 2778 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2779 target_phys_bits=64
2408a527
AJ
2780 ;;
2781 sh4|sh4eb)
b498c8a0 2782 TARGET_ARCH=sh4
2408a527 2783 bflt="yes"
0b6d3ae0 2784 target_nptl="yes"
1ad2134f 2785 target_phys_bits=32
2408a527
AJ
2786 ;;
2787 sparc)
1ad2134f 2788 target_phys_bits=64
2408a527
AJ
2789 ;;
2790 sparc64)
6acff7da 2791 TARGET_BASE_ARCH=sparc
1ad2134f 2792 target_phys_bits=64
2408a527
AJ
2793 ;;
2794 sparc32plus)
b498c8a0 2795 TARGET_ARCH=sparc64
6acff7da 2796 TARGET_BASE_ARCH=sparc
e6e91b9c 2797 TARGET_ABI_DIR=sparc
25be210f 2798 echo "TARGET_ABI32=y" >> $config_target_mak
1ad2134f 2799 target_phys_bits=64
2408a527 2800 ;;
24e804ec
AG
2801 s390x)
2802 target_phys_bits=64
2803 ;;
2408a527
AJ
2804 *)
2805 echo "Unsupported target CPU"
2806 exit 1
2807 ;;
2808esac
25be210f 2809echo "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak
053dd92e 2810target_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`"
25be210f
JQ
2811echo "TARGET_$target_arch_name=y" >> $config_target_mak
2812echo "TARGET_ARCH2=$target_arch2" >> $config_target_mak
42bc608b 2813# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
6acff7da
JQ
2814if [ "$TARGET_BASE_ARCH" = "" ]; then
2815 TARGET_BASE_ARCH=$TARGET_ARCH
6acff7da 2816fi
25be210f 2817echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
e6e91b9c
JQ
2818if [ "$TARGET_ABI_DIR" = "" ]; then
2819 TARGET_ABI_DIR=$TARGET_ARCH
2820fi
25be210f 2821echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
1b0c87fc
JQ
2822case "$target_arch2" in
2823 i386|x86_64)
2824 if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
25be210f 2825 echo "CONFIG_XEN=y" >> $config_target_mak
1b0c87fc
JQ
2826 fi
2827esac
c59249f9 2828case "$target_arch2" in
0e60a699 2829 i386|x86_64|ppcemb|ppc|ppc64|s390x)
c59249f9
JQ
2830 # Make sure the target and host cpus are compatible
2831 if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
2832 \( "$target_arch2" = "$cpu" -o \
2833 \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
5f114bc6 2834 \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \
c59249f9
JQ
2835 \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \
2836 \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then
25be210f
JQ
2837 echo "CONFIG_KVM=y" >> $config_target_mak
2838 echo "KVM_CFLAGS=$kvm_cflags" >> $config_target_mak
dae5079a
JK
2839 if test "$kvm_para" = "yes"; then
2840 echo "CONFIG_KVM_PARA=y" >> $config_target_mak
2841 fi
d5970055
MT
2842 if test $vhost_net = "yes" ; then
2843 echo "CONFIG_VHOST_NET=y" >> $config_target_mak
2844 fi
c59249f9
JQ
2845 fi
2846esac
de83cd02 2847if test "$target_bigendian" = "yes" ; then
25be210f 2848 echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
de83cd02 2849fi
97a847bc 2850if test "$target_softmmu" = "yes" ; then
b1aa27c4 2851 echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak
25be210f
JQ
2852 echo "CONFIG_SOFTMMU=y" >> $config_target_mak
2853 echo "LIBS+=$libs_softmmu" >> $config_target_mak
0e8c9214 2854 echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak
5791f45b 2855 echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
43ce4dfe 2856fi
997344f3 2857if test "$target_user_only" = "yes" ; then
25be210f 2858 echo "CONFIG_USER_ONLY=y" >> $config_target_mak
997344f3 2859fi
831b7825 2860if test "$target_linux_user" = "yes" ; then
25be210f 2861 echo "CONFIG_LINUX_USER=y" >> $config_target_mak
831b7825
TS
2862fi
2863if test "$target_darwin_user" = "yes" ; then
25be210f 2864 echo "CONFIG_DARWIN_USER=y" >> $config_target_mak
831b7825 2865fi
56aebc89
PB
2866list=""
2867if test ! -z "$gdb_xml_files" ; then
2868 for x in $gdb_xml_files; do
2869 list="$list $source_path/gdb-xml/$x"
2870 done
3d0f1517 2871 echo "TARGET_XML_FILES=$list" >> $config_target_mak
56aebc89 2872fi
97a847bc 2873
f57975fb 2874case "$target_arch2" in
990b3e19 2875 alpha|arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|s390x|sparc|sparc64|sparc32plus)
25be210f 2876 echo "CONFIG_SOFTFLOAT=y" >> $config_target_mak
f57975fb 2877 ;;
d6b38939 2878 *)
25be210f 2879 echo "CONFIG_NOSOFTFLOAT=y" >> $config_target_mak
d6b38939 2880 ;;
f57975fb
JQ
2881esac
2882
e5fe0c52 2883if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
25be210f 2884 echo "TARGET_HAS_BFLT=y" >> $config_target_mak
e5fe0c52 2885fi
bd0c5661
PB
2886if test "$target_user_only" = "yes" \
2887 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
25be210f 2888 echo "CONFIG_USE_NPTL=y" >> $config_target_mak
bd0c5661 2889fi
379f6698 2890if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
25be210f 2891 echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak
379f6698 2892fi
84778508 2893if test "$target_bsd_user" = "yes" ; then
25be210f 2894 echo "CONFIG_BSD_USER=y" >> $config_target_mak
84778508 2895fi
5b0753e0 2896
4afddb55 2897# generate QEMU_CFLAGS/LDFLAGS for targets
fa282484 2898
4afddb55 2899cflags=""
fa282484 2900ldflags=""
9b8e111f 2901
57ddfbf7
JQ
2902if test "$ARCH" = "sparc64" ; then
2903 cflags="-I\$(SRC_PATH)/tcg/sparc $cflags"
24e804ec
AG
2904elif test "$ARCH" = "s390x" ; then
2905 cflags="-I\$(SRC_PATH)/tcg/s390 $cflags"
5d8a4f8f
RH
2906elif test "$ARCH" = "x86_64" ; then
2907 cflags="-I\$(SRC_PATH)/tcg/i386 $cflags"
57ddfbf7
JQ
2908else
2909 cflags="-I\$(SRC_PATH)/tcg/\$(ARCH) $cflags"
2910fi
2911cflags="-I\$(SRC_PATH)/tcg $cflags"
2912cflags="-I\$(SRC_PATH)/fpu $cflags"
2913
4d904533
BS
2914if test "$target_user_only" = "yes" ; then
2915 libdis_config_mak=libdis-user/config.mak
2916else
2917 libdis_config_mak=libdis/config.mak
2918fi
2919
64656024
JQ
2920for i in $ARCH $TARGET_BASE_ARCH ; do
2921 case "$i" in
2922 alpha)
25be210f 2923 echo "CONFIG_ALPHA_DIS=y" >> $config_target_mak
4d904533 2924 echo "CONFIG_ALPHA_DIS=y" >> $libdis_config_mak
64656024
JQ
2925 ;;
2926 arm)
25be210f 2927 echo "CONFIG_ARM_DIS=y" >> $config_target_mak
4d904533 2928 echo "CONFIG_ARM_DIS=y" >> $libdis_config_mak
64656024
JQ
2929 ;;
2930 cris)
25be210f 2931 echo "CONFIG_CRIS_DIS=y" >> $config_target_mak
4d904533 2932 echo "CONFIG_CRIS_DIS=y" >> $libdis_config_mak
64656024
JQ
2933 ;;
2934 hppa)
25be210f 2935 echo "CONFIG_HPPA_DIS=y" >> $config_target_mak
4d904533 2936 echo "CONFIG_HPPA_DIS=y" >> $libdis_config_mak
64656024
JQ
2937 ;;
2938 i386|x86_64)
25be210f 2939 echo "CONFIG_I386_DIS=y" >> $config_target_mak
4d904533 2940 echo "CONFIG_I386_DIS=y" >> $libdis_config_mak
64656024 2941 ;;
903ec55c
AJ
2942 ia64*)
2943 echo "CONFIG_IA64_DIS=y" >> $config_target_mak
2944 echo "CONFIG_IA64_DIS=y" >> $libdis_config_mak
2945 ;;
64656024 2946 m68k)
25be210f 2947 echo "CONFIG_M68K_DIS=y" >> $config_target_mak
4d904533 2948 echo "CONFIG_M68K_DIS=y" >> $libdis_config_mak
64656024
JQ
2949 ;;
2950 microblaze)
25be210f 2951 echo "CONFIG_MICROBLAZE_DIS=y" >> $config_target_mak
4d904533 2952 echo "CONFIG_MICROBLAZE_DIS=y" >> $libdis_config_mak
64656024
JQ
2953 ;;
2954 mips*)
25be210f 2955 echo "CONFIG_MIPS_DIS=y" >> $config_target_mak
4d904533 2956 echo "CONFIG_MIPS_DIS=y" >> $libdis_config_mak
64656024
JQ
2957 ;;
2958 ppc*)
25be210f 2959 echo "CONFIG_PPC_DIS=y" >> $config_target_mak
4d904533 2960 echo "CONFIG_PPC_DIS=y" >> $libdis_config_mak
64656024 2961 ;;
24e804ec 2962 s390*)
25be210f 2963 echo "CONFIG_S390_DIS=y" >> $config_target_mak
4d904533 2964 echo "CONFIG_S390_DIS=y" >> $libdis_config_mak
64656024
JQ
2965 ;;
2966 sh4)
25be210f 2967 echo "CONFIG_SH4_DIS=y" >> $config_target_mak
4d904533 2968 echo "CONFIG_SH4_DIS=y" >> $libdis_config_mak
64656024
JQ
2969 ;;
2970 sparc*)
25be210f 2971 echo "CONFIG_SPARC_DIS=y" >> $config_target_mak
4d904533 2972 echo "CONFIG_SPARC_DIS=y" >> $libdis_config_mak
64656024
JQ
2973 ;;
2974 esac
2975done
2976
6ee7126f
JQ
2977case "$ARCH" in
2978alpha)
2979 # Ensure there's only a single GP
2980 cflags="-msmall-data $cflags"
2981;;
2982esac
2983
55d9c04b
JQ
2984if test "$target_softmmu" = "yes" ; then
2985 case "$TARGET_BASE_ARCH" in
2986 arm)
2987 cflags="-DHAS_AUDIO $cflags"
2988 ;;
2989 i386|mips|ppc)
2990 cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags"
2991 ;;
2992 esac
2993fi
2994
34005a00 2995if test "$target_user_only" = "yes" -a "$static" = "no" -a \
50108930 2996 "$user_pie" = "yes" ; then
34005a00
KS
2997 cflags="-fpie $cflags"
2998 ldflags="-pie $ldflags"
2999fi
3000
471857dd
JQ
3001if test "$target_softmmu" = "yes" -a \( \
3002 "$TARGET_ARCH" = "microblaze" -o \
3003 "$TARGET_ARCH" = "cris" \) ; then
25be210f 3004 echo "CONFIG_NEED_MMU=y" >> $config_target_mak
471857dd
JQ
3005fi
3006
d02c1db3 3007if test "$gprof" = "yes" ; then
25be210f 3008 echo "TARGET_GPROF=yes" >> $config_target_mak
d02c1db3
JQ
3009 if test "$target_linux_user" = "yes" ; then
3010 cflags="-p $cflags"
3011 ldflags="-p $ldflags"
3012 fi
3013 if test "$target_softmmu" = "yes" ; then
3014 ldflags="-p $ldflags"
25be210f 3015 echo "GPROF_CFLAGS=-p" >> $config_target_mak
d02c1db3
JQ
3016 fi
3017fi
3018
6ee7126f 3019linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
9b8e111f 3020if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
fa282484 3021 case "$ARCH" in
fa282484
JQ
3022 sparc)
3023 # -static is used to avoid g1/g3 usage by the dynamic linker
322e5878 3024 ldflags="$linker_script -static $ldflags"
fa282484 3025 ;;
4d58be06
RH
3026 alpha | s390x)
3027 # The default placement of the application is fine.
3028 ;;
fd76e73a 3029 *)
322e5878 3030 ldflags="$linker_script $ldflags"
fa282484
JQ
3031 ;;
3032 esac
3033fi
fa282484 3034
25be210f
JQ
3035echo "LDFLAGS+=$ldflags" >> $config_target_mak
3036echo "QEMU_CFLAGS+=$cflags" >> $config_target_mak
fa282484 3037
97a847bc 3038done # for target in $targets
7d13299d
FB
3039
3040# build tree in object directory if source path is different from current one
3041if test "$source_path_used" = "yes" ; then
e1144d00 3042 DIRS="tests tests/cris slirp audio block net pc-bios/optionrom"
2d9f27d2 3043 DIRS="$DIRS roms/seabios roms/vgabios"
3e230dd2 3044 DIRS="$DIRS fsdev ui"
7d13299d 3045 FILES="Makefile tests/Makefile"
e7daa605 3046 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
e1ffb0f1 3047 FILES="$FILES tests/test-mmap.c"
7ea78b74 3048 FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps pc-bios/video.x"
2d9f27d2 3049 FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
7ea78b74
JK
3050 for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do
3051 FILES="$FILES pc-bios/`basename $bios_file`"
3052 done
7d13299d
FB
3053 for dir in $DIRS ; do
3054 mkdir -p $dir
3055 done
ec530c81 3056 # remove the link and recreate it, as not all "ln -sf" overwrite the link
7d13299d 3057 for f in $FILES ; do
ec530c81
FB
3058 rm -f $f
3059 ln -s $source_path/$f $f
7d13299d
FB
3060 done
3061fi
1ad2134f 3062
c34ebfdc 3063# temporary config to build submodules
2d9f27d2 3064for rom in seabios vgabios ; do
c34ebfdc 3065 config_mak=roms/$rom/config.mak
37116c89 3066 echo "# Automatically generated by configure - do not modify" > $config_mak
c34ebfdc
AL
3067 echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
3068 echo "CC=$cc" >> $config_mak
3069 echo "BCC=bcc" >> $config_mak
3070 echo "CPP=${cross_prefix}cpp" >> $config_mak
3071 echo "OBJCOPY=objcopy" >> $config_mak
3072 echo "IASL=iasl" >> $config_mak
3073 echo "HOST_CC=$host_cc" >> $config_mak
3074 echo "LD=$ld" >> $config_mak
3075done
3076
1ad2134f
PB
3077for hwlib in 32 64; do
3078 d=libhw$hwlib
3079 mkdir -p $d
9953b2fc 3080 mkdir -p $d/ide
1ad2134f
PB
3081 rm -f $d/Makefile
3082 ln -s $source_path/Makefile.hw $d/Makefile
37116c89 3083 echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak
1ad2134f 3084done
add16157
BS
3085
3086d=libuser
3087mkdir -p $d
3088rm -f $d/Makefile
3089ln -s $source_path/Makefile.user $d/Makefile
299060a0
KS
3090if test "$static" = "no" -a "$user_pie" = "yes" ; then
3091 echo "QEMU_CFLAGS+=-fpie" > $d/config.mak
3092fi
b40292e7
JK
3093
3094if test "$docs" = "yes" ; then
3095 mkdir -p QMP
3096fi