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