]> git.proxmox.com Git - qemu.git/blame - configure
Introduce qemu_madvise()
[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
VJJ
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
VJJ
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
VJJ
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 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 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
e78815a5
AF
2074##########################################
2075# check if we have madvise
2076
2077madvise=no
2078cat > $TMPC << EOF
2079#include <sys/types.h>
2080#include <sys/mman.h>
2081int main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
2082EOF
2083if compile_prog "" "" ; then
2084 madvise=yes
2085fi
2086
2087##########################################
2088# check if we have posix_madvise
2089
2090posix_madvise=no
2091cat > $TMPC << EOF
2092#include <sys/mman.h>
2093int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
2094EOF
2095if compile_prog "" "" ; then
2096 posix_madvise=yes
2097fi
2098
94a420b1
SH
2099##########################################
2100# check if trace backend exists
2101
2102sh "$source_path/tracetool" "--$trace_backend" --check-backend > /dev/null 2> /dev/null
2103if test "$?" -ne 0 ; then
2104 echo
2105 echo "Error: invalid trace backend"
2106 echo "Please choose a supported trace backend."
2107 echo
2108 exit 1
2109fi
2110
7e24e92a
SH
2111##########################################
2112# For 'ust' backend, test if ust headers are present
2113if test "$trace_backend" = "ust"; then
2114 cat > $TMPC << EOF
2115#include <ust/tracepoint.h>
2116#include <ust/marker.h>
2117int main(void) { return 0; }
2118EOF
2119 if compile_prog "" "" ; then
2120 LIBS="-lust $LIBS"
2121 else
2122 echo
2123 echo "Error: Trace backend 'ust' missing libust header files"
2124 echo
2125 exit 1
2126 fi
2127fi
2128##########################################
e86ecd4b
JQ
2129# End of CC checks
2130# After here, no more $cc or $ld runs
2131
e86ecd4b 2132if test "$debug" = "no" ; then
1156c669 2133 CFLAGS="-O2 $CFLAGS"
e86ecd4b 2134fi
a316e378 2135
e86ecd4b
JQ
2136# Consult white-list to determine whether to enable werror
2137# by default. Only enable by default for git builds
20ff6c80
AL
2138z_version=`cut -f3 -d. $source_path/VERSION`
2139
e86ecd4b 2140if test -z "$werror" ; then
e86ecd4b
JQ
2141 if test "$z_version" = "50" -a \
2142 "$linux" = "yes" ; then
2143 werror="yes"
2144 else
2145 werror="no"
2146 fi
2147fi
2148
20ff6c80
AL
2149# Disable zero malloc errors for official releases unless explicitly told to
2150# enable/disable
2151if test -z "$zero_malloc" ; then
2152 if test "$z_version" = "50" ; then
2153 zero_malloc="no"
2154 else
2155 zero_malloc="yes"
2156 fi
2157fi
2158
e86ecd4b 2159if test "$werror" = "yes" ; then
a558ee17 2160 QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
e86ecd4b
JQ
2161fi
2162
2163if test "$solaris" = "no" ; then
2164 if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
1156c669 2165 LDFLAGS="-Wl,--warn-common $LDFLAGS"
e86ecd4b
JQ
2166 fi
2167fi
2168
952afb71
BS
2169# Use ASLR, no-SEH and DEP if available
2170if test "$mingw32" = "yes" ; then
2171 for flag in --dynamicbase --no-seh --nxcompat; do
2172 if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
2173 LDFLAGS="-Wl,$flag $LDFLAGS"
2174 fi
2175 done
2176fi
2177
190e9c59 2178confdir=$sysconfdir$confsuffix
e7b45cc4 2179
ca35f780
PB
2180tools=
2181if test "$softmmu" = yes ; then
2182 tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
2183 if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
2184 tools="qemu-nbd\$(EXESUF) $tools"
2185 if [ "$check_utests" = "yes" ]; then
2186 tools="check-qint check-qstring check-qdict check-qlist $tools"
2187 tools="check-qfloat check-qjson $tools"
2188 fi
2189 fi
2190fi
2191
2192# Mac OS X ships with a broken assembler
2193roms=
2194if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
2195 "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
2196 "$softmmu" = yes ; then
2197 roms="optionrom"
2198fi
2199
2200
43ce4dfe 2201echo "Install prefix $prefix"
f2b9e1e3
PB
2202echo "BIOS directory `eval echo $datadir`"
2203echo "binary directory `eval echo $bindir`"
1c0fd160 2204echo "config directory `eval echo $sysconfdir`"
11d9f695 2205if test "$mingw32" = "no" ; then
f2b9e1e3 2206echo "Manual directory `eval echo $mandir`"
43ce4dfe 2207echo "ELF interp prefix $interp_prefix"
11d9f695 2208fi
5a67135a 2209echo "Source path $source_path"
43ce4dfe 2210echo "C compiler $cc"
83469015 2211echo "Host C compiler $host_cc"
0c439cbf 2212echo "CFLAGS $CFLAGS"
a558ee17 2213echo "QEMU_CFLAGS $QEMU_CFLAGS"
0c439cbf 2214echo "LDFLAGS $LDFLAGS"
43ce4dfe 2215echo "make $make"
6a882643 2216echo "install $install"
43ce4dfe 2217echo "host CPU $cpu"
de83cd02 2218echo "host big endian $bigendian"
97a847bc 2219echo "target list $target_list"
ade25b0d 2220echo "tcg debug enabled $debug_tcg"
b4475aa2 2221echo "Mon debug enabled $debug_mon"
43ce4dfe 2222echo "gprof enabled $gprof"
03b4fe7d 2223echo "sparse enabled $sparse"
1625af87 2224echo "strip binaries $strip_opt"
05c2a3e7 2225echo "profiler $profiler"
43ce4dfe 2226echo "static build $static"
85aa5189 2227echo "-Werror enabled $werror"
5b0753e0
FB
2228if test "$darwin" = "yes" ; then
2229 echo "Cocoa support $cocoa"
2230fi
97a847bc 2231echo "SDL support $sdl"
4d3b6f6e 2232echo "curses support $curses"
769ce76d 2233echo "curl support $curl"
5495ed11 2234echo "check support $check_utests"
67b915a5 2235echo "mingw32 support $mingw32"
0c58ac1c 2236echo "Audio drivers $audio_drv_list"
2237echo "Extra audio cards $audio_card_list"
eb852011 2238echo "Block whitelist $block_drv_whitelist"
8ff9cbf7 2239echo "Mixer emulation $mixemu"
8d5d2d4c 2240echo "VNC TLS support $vnc_tls"
2f9606b3 2241echo "VNC SASL support $vnc_sasl"
2f6f5c7a 2242echo "VNC JPEG support $vnc_jpeg"
efe556ad 2243echo "VNC PNG support $vnc_png"
bd023f95 2244echo "VNC thread $vnc_thread"
3142255c
BS
2245if test -n "$sparc_cpu"; then
2246 echo "Target Sparc Arch $sparc_cpu"
2247fi
e37630ca 2248echo "xen support $xen"
2e4d9fb1 2249echo "brlapi support $brlapi"
a20a6f46 2250echo "bluez support $bluez"
a25dba17 2251echo "Documentation $docs"
c5937220
PB
2252[ ! -z "$uname_release" ] && \
2253echo "uname -r $uname_release"
bd0c5661 2254echo "NPTL support $nptl"
379f6698 2255echo "GUEST_BASE $guest_base"
34005a00 2256echo "PIE user targets $user_pie"
8a16d273 2257echo "vde support $vde"
e5d355d1 2258echo "IO thread $io_thread"
5c6c3a6c 2259echo "Linux AIO support $linux_aio"
758e8e38 2260echo "ATTR/XATTR support $attr"
77755340 2261echo "Install blobs $blobs"
b31a0277 2262echo "KVM support $kvm"
f652e6af 2263echo "fdt support $fdt"
ceb42de8 2264echo "preadv support $preadv"
5f6b9e8f 2265echo "fdatasync $fdatasync"
e78815a5
AF
2266echo "madvise $madvise"
2267echo "posix_madvise $posix_madvise"
ee682d27 2268echo "uuid support $uuid"
d5970055 2269echo "vhost-net support $vhost_net"
94a420b1 2270echo "Trace backend $trace_backend"
9410b56c 2271echo "Trace output file $trace_file-<pid>"
67b915a5 2272
97a847bc 2273if test $sdl_too_old = "yes"; then
24b55b96 2274echo "-> Your SDL version is too old - please upgrade to have SDL support"
7c1f25b4 2275fi
7d13299d 2276
98ec69ac 2277config_host_mak="config-host.mak"
4bf6b55b 2278config_host_ld="config-host.ld"
98ec69ac 2279
98ec69ac
JQ
2280echo "# Automatically generated by configure - do not modify" > $config_host_mak
2281printf "# Configured with:" >> $config_host_mak
2282printf " '%s'" "$0" "$@" >> $config_host_mak
2283echo >> $config_host_mak
98ec69ac 2284
99d7cc75
PB
2285echo "prefix=$prefix" >> $config_host_mak
2286echo "bindir=$bindir" >> $config_host_mak
2287echo "mandir=$mandir" >> $config_host_mak
2288echo "datadir=$datadir" >> $config_host_mak
2289echo "sysconfdir=$sysconfdir" >> $config_host_mak
2290echo "docdir=$docdir" >> $config_host_mak
1dabe05c 2291echo "confdir=$confdir" >> $config_host_mak
804edf29 2292
2408a527 2293case "$cpu" in
24e804ec 2294 i386|x86_64|alpha|cris|hppa|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
e0da9dd3 2295 ARCH=$cpu
2408a527 2296 ;;
a302c32d 2297 armv4b|armv4l)
16dbd14f 2298 ARCH=arm
2408a527 2299 ;;
2408a527 2300esac
98ec69ac 2301echo "ARCH=$ARCH" >> $config_host_mak
f8393946 2302if test "$debug_tcg" = "yes" ; then
2358a494 2303 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
f8393946 2304fi
b4475aa2
LC
2305if test "$debug_mon" = "yes" ; then
2306 echo "CONFIG_DEBUG_MONITOR=y" >> $config_host_mak
2307fi
f3d08ee6 2308if test "$debug" = "yes" ; then
2358a494 2309 echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak
f3d08ee6 2310fi
1625af87 2311if test "$strip_opt" = "yes" ; then
52ba784d 2312 echo "STRIP=${strip}" >> $config_host_mak
1625af87 2313fi
7d13299d 2314if test "$bigendian" = "yes" ; then
e2542fe2 2315 echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
97a847bc 2316fi
2358a494 2317echo "HOST_LONG_BITS=$hostlongbits" >> $config_host_mak
67b915a5 2318if test "$mingw32" = "yes" ; then
98ec69ac 2319 echo "CONFIG_WIN32=y" >> $config_host_mak
210fa556 2320else
35f4df27 2321 echo "CONFIG_POSIX=y" >> $config_host_mak
dffcb71c
MM
2322fi
2323
2324if test "$linux" = "yes" ; then
2325 echo "CONFIG_LINUX=y" >> $config_host_mak
67b915a5 2326fi
128ab2ff 2327
83fb7adf 2328if test "$darwin" = "yes" ; then
98ec69ac 2329 echo "CONFIG_DARWIN=y" >> $config_host_mak
83fb7adf 2330fi
b29fe3ed 2331
2332if test "$aix" = "yes" ; then
98ec69ac 2333 echo "CONFIG_AIX=y" >> $config_host_mak
b29fe3ed 2334fi
2335
ec530c81 2336if test "$solaris" = "yes" ; then
98ec69ac 2337 echo "CONFIG_SOLARIS=y" >> $config_host_mak
2358a494 2338 echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
0475a5ca 2339 if test "$needs_libsunmath" = "yes" ; then
75b5a697 2340 echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
0475a5ca 2341 fi
ec530c81 2342fi
97a847bc 2343if test "$static" = "yes" ; then
98ec69ac 2344 echo "CONFIG_STATIC=y" >> $config_host_mak
7d13299d 2345fi
05c2a3e7 2346if test $profiler = "yes" ; then
2358a494 2347 echo "CONFIG_PROFILER=y" >> $config_host_mak
05c2a3e7 2348fi
c20709aa 2349if test "$slirp" = "yes" ; then
98ec69ac 2350 echo "CONFIG_SLIRP=y" >> $config_host_mak
b6e31c12 2351 QEMU_CFLAGS="-I\$(SRC_PATH)/slirp $QEMU_CFLAGS"
c20709aa 2352fi
8a16d273 2353if test "$vde" = "yes" ; then
98ec69ac 2354 echo "CONFIG_VDE=y" >> $config_host_mak
8a16d273 2355fi
0c58ac1c 2356for card in $audio_card_list; do
f6e5889e 2357 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
98ec69ac 2358 echo "$def=y" >> $config_host_mak
0c58ac1c 2359done
2358a494 2360echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
0c58ac1c 2361for drv in $audio_drv_list; do
f6e5889e 2362 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
98ec69ac 2363 echo "$def=y" >> $config_host_mak
923e4521 2364 if test "$drv" = "fmod"; then
7aac6cb1 2365 echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
0c58ac1c 2366 fi
2367done
67f86e8e
JQ
2368if test "$audio_pt_int" = "yes" ; then
2369 echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
2370fi
d5631638 2371if test "$audio_win_int" = "yes" ; then
2372 echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
2373fi
eb852011 2374echo "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak
8ff9cbf7 2375if test "$mixemu" = "yes" ; then
98ec69ac 2376 echo "CONFIG_MIXEMU=y" >> $config_host_mak
8ff9cbf7 2377fi
8d5d2d4c 2378if test "$vnc_tls" = "yes" ; then
98ec69ac 2379 echo "CONFIG_VNC_TLS=y" >> $config_host_mak
525061bf 2380 echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
8d5d2d4c 2381fi
2f9606b3 2382if test "$vnc_sasl" = "yes" ; then
98ec69ac 2383 echo "CONFIG_VNC_SASL=y" >> $config_host_mak
60ddf533 2384 echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
2f9606b3 2385fi
96763cf9 2386if test "$vnc_jpeg" != "no" ; then
2f6f5c7a
CC
2387 echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
2388 echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak
2389fi
96763cf9 2390if test "$vnc_png" != "no" ; then
efe556ad
CC
2391 echo "CONFIG_VNC_PNG=y" >> $config_host_mak
2392 echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak
2393fi
96763cf9 2394if test "$vnc_thread" != "no" ; then
bd023f95
CC
2395 echo "CONFIG_VNC_THREAD=y" >> $config_host_mak
2396 echo "CONFIG_THREAD=y" >> $config_host_mak
2397fi
76655d6d 2398if test "$fnmatch" = "yes" ; then
2358a494 2399 echo "CONFIG_FNMATCH=y" >> $config_host_mak
76655d6d 2400fi
ee682d27
SW
2401if test "$uuid" = "yes" ; then
2402 echo "CONFIG_UUID=y" >> $config_host_mak
2403fi
b1a550a0 2404qemu_version=`head $source_path/VERSION`
98ec69ac 2405echo "VERSION=$qemu_version" >>$config_host_mak
2358a494 2406echo "PKGVERSION=$pkgversion" >>$config_host_mak
98ec69ac 2407echo "SRC_PATH=$source_path" >> $config_host_mak
98ec69ac 2408echo "TARGET_DIRS=$target_list" >> $config_host_mak
a25dba17 2409if [ "$docs" = "yes" ] ; then
98ec69ac 2410 echo "BUILD_DOCS=yes" >> $config_host_mak
cc8ae6de 2411fi
1ac88f28 2412if test "$sdl" = "yes" ; then
98ec69ac 2413 echo "CONFIG_SDL=y" >> $config_host_mak
1ac88f28 2414 echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
49ecc3fa
FB
2415fi
2416if test "$cocoa" = "yes" ; then
98ec69ac 2417 echo "CONFIG_COCOA=y" >> $config_host_mak
4d3b6f6e
AZ
2418fi
2419if test "$curses" = "yes" ; then
98ec69ac 2420 echo "CONFIG_CURSES=y" >> $config_host_mak
49ecc3fa 2421fi
3b3f24ad 2422if test "$atfile" = "yes" ; then
2358a494 2423 echo "CONFIG_ATFILE=y" >> $config_host_mak
3b3f24ad 2424fi
ebc996f3 2425if test "$utimens" = "yes" ; then
2358a494 2426 echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
ebc996f3 2427fi
099d6b0f 2428if test "$pipe2" = "yes" ; then
2358a494 2429 echo "CONFIG_PIPE2=y" >> $config_host_mak
099d6b0f 2430fi
40ff6d7e
KW
2431if test "$accept4" = "yes" ; then
2432 echo "CONFIG_ACCEPT4=y" >> $config_host_mak
2433fi
3ce34dfb 2434if test "$splice" = "yes" ; then
2358a494 2435 echo "CONFIG_SPLICE=y" >> $config_host_mak
3ce34dfb 2436fi
c2882b96
RV
2437if test "$eventfd" = "yes" ; then
2438 echo "CONFIG_EVENTFD=y" >> $config_host_mak
2439fi
d0927938
UH
2440if test "$fallocate" = "yes" ; then
2441 echo "CONFIG_FALLOCATE=y" >> $config_host_mak
2442fi
2443if test "$dup3" = "yes" ; then
2444 echo "CONFIG_DUP3=y" >> $config_host_mak
2445fi
3b3f24ad 2446if test "$inotify" = "yes" ; then
2358a494 2447 echo "CONFIG_INOTIFY=y" >> $config_host_mak
3b3f24ad 2448fi
c05c7a73
RV
2449if test "$inotify1" = "yes" ; then
2450 echo "CONFIG_INOTIFY1=y" >> $config_host_mak
2451fi
6ae9a1f4
JQ
2452if test "$byteswap_h" = "yes" ; then
2453 echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
2454fi
2455if test "$bswap_h" = "yes" ; then
2456 echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
2457fi
769ce76d 2458if test "$curl" = "yes" ; then
98ec69ac 2459 echo "CONFIG_CURL=y" >> $config_host_mak
b1d5a277 2460 echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
769ce76d 2461fi
2e4d9fb1 2462if test "$brlapi" = "yes" ; then
98ec69ac 2463 echo "CONFIG_BRLAPI=y" >> $config_host_mak
2e4d9fb1 2464fi
fb599c9a 2465if test "$bluez" = "yes" ; then
98ec69ac 2466 echo "CONFIG_BLUEZ=y" >> $config_host_mak
ef7635ec 2467 echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
fb599c9a 2468fi
e37630ca 2469if test "$xen" = "yes" ; then
5647eb74 2470 echo "CONFIG_XEN=y" >> $config_host_mak
e37630ca 2471fi
e5d355d1 2472if test "$io_thread" = "yes" ; then
98ec69ac 2473 echo "CONFIG_IOTHREAD=y" >> $config_host_mak
bd023f95 2474 echo "CONFIG_THREAD=y" >> $config_host_mak
e5d355d1 2475fi
5c6c3a6c
CH
2476if test "$linux_aio" = "yes" ; then
2477 echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
2478fi
758e8e38
VJJ
2479if test "$attr" = "yes" ; then
2480 echo "CONFIG_ATTR=y" >> $config_host_mak
2481fi
2482if test "$linux" = "yes" ; then
2483 if test "$attr" = "yes" ; then
2484 echo "CONFIG_VIRTFS=y" >> $config_host_mak
2485 fi
2486fi
77755340 2487if test "$blobs" = "yes" ; then
98ec69ac 2488 echo "INSTALL_BLOBS=yes" >> $config_host_mak
77755340 2489fi
bf9298b9 2490if test "$iovec" = "yes" ; then
2358a494 2491 echo "CONFIG_IOVEC=y" >> $config_host_mak
bf9298b9 2492fi
ceb42de8 2493if test "$preadv" = "yes" ; then
2358a494 2494 echo "CONFIG_PREADV=y" >> $config_host_mak
ceb42de8 2495fi
f652e6af 2496if test "$fdt" = "yes" ; then
3f0855b1 2497 echo "CONFIG_FDT=y" >> $config_host_mak
f652e6af 2498fi
de5071c5
BS
2499if test "$need_offsetof" = "yes" ; then
2500 echo "CONFIG_NEED_OFFSETOF=y" >> $config_host_mak
2501fi
747bbdf7
BS
2502if test "$gcc_attribute_warn_unused_result" = "yes" ; then
2503 echo "CONFIG_GCC_ATTRIBUTE_WARN_UNUSED_RESULT=y" >> $config_host_mak
2504fi
5f6b9e8f
BS
2505if test "$fdatasync" = "yes" ; then
2506 echo "CONFIG_FDATASYNC=y" >> $config_host_mak
2507fi
e78815a5
AF
2508if test "$madvise" = "yes" ; then
2509 echo "CONFIG_MADVISE=y" >> $config_host_mak
2510fi
2511if test "$posix_madvise" = "yes" ; then
2512 echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
2513fi
97a847bc 2514
83fb7adf 2515# XXX: suppress that
7d3505c5 2516if [ "$bsd" = "yes" ] ; then
2358a494 2517 echo "CONFIG_BSD=y" >> $config_host_mak
7d3505c5
FB
2518fi
2519
2358a494 2520echo "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak
c5937220 2521
20ff6c80
AL
2522if test "$zero_malloc" = "yes" ; then
2523 echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak
2524fi
2525
68063649
BS
2526# USB host support
2527case "$usb" in
2528linux)
98ec69ac 2529 echo "HOST_USB=linux" >> $config_host_mak
68063649
BS
2530;;
2531bsd)
98ec69ac 2532 echo "HOST_USB=bsd" >> $config_host_mak
68063649
BS
2533;;
2534*)
98ec69ac 2535 echo "HOST_USB=stub" >> $config_host_mak
68063649
BS
2536;;
2537esac
2538
94a420b1 2539echo "TRACE_BACKEND=$trace_backend" >> $config_host_mak
22890ab5
PS
2540if test "$trace_backend" = "simple"; then
2541 echo "CONFIG_SIMPLE_TRACE=y" >> $config_host_mak
2542fi
9410b56c
PS
2543# Set the appropriate trace file.
2544if test "$trace_backend" = "simple"; then
2545 trace_file="\"$trace_file-%u\""
2546fi
2547echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
2548
98ec69ac 2549echo "TOOLS=$tools" >> $config_host_mak
98ec69ac 2550echo "ROMS=$roms" >> $config_host_mak
804edf29
JQ
2551echo "MAKE=$make" >> $config_host_mak
2552echo "INSTALL=$install" >> $config_host_mak
2553echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak
2554echo "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak
2555echo "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak
2556echo "CC=$cc" >> $config_host_mak
2557echo "HOST_CC=$host_cc" >> $config_host_mak
2558if test "$sparse" = "yes" ; then
2559 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak
2560 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak
a558ee17 2561 echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
804edf29
JQ
2562fi
2563echo "AR=$ar" >> $config_host_mak
2564echo "OBJCOPY=$objcopy" >> $config_host_mak
2565echo "LD=$ld" >> $config_host_mak
e2a2ed06 2566echo "CFLAGS=$CFLAGS" >> $config_host_mak
a558ee17 2567echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
c81da56e 2568echo "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak
e2a2ed06 2569echo "LDFLAGS=$LDFLAGS" >> $config_host_mak
a36abbbb
JQ
2570echo "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak
2571echo "ARLIBS_END=$arlibs_end" >> $config_host_mak
73da375e 2572echo "LIBS+=$LIBS" >> $config_host_mak
3e2e0e6b 2573echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
804edf29 2574echo "EXESUF=$EXESUF" >> $config_host_mak
804edf29 2575
4bf6b55b
JQ
2576# generate list of library paths for linker script
2577
2578$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld}
2579
2580if test -f ${config_host_ld}~ ; then
2581 if cmp -s $config_host_ld ${config_host_ld}~ ; then
2582 mv ${config_host_ld}~ $config_host_ld
2583 else
2584 rm ${config_host_ld}~
2585 fi
2586fi
2587
4d904533
BS
2588for d in libdis libdis-user; do
2589 mkdir -p $d
2590 rm -f $d/Makefile
2591 ln -s $source_path/Makefile.dis $d/Makefile
2592 echo > $d/config.mak
2593done
d44cff22
RH
2594if test "$static" = "no" -a "$user_pie" = "yes" ; then
2595 echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak
2596fi
4d904533 2597
1d14ffa9 2598for target in $target_list; do
97a847bc 2599target_dir="$target"
25be210f 2600config_target_mak=$target_dir/config-target.mak
600309b6 2601target_arch2=`echo $target | cut -d '-' -f 1`
97a847bc 2602target_bigendian="no"
1f3d3c8f 2603
ea2d6a39 2604case "$target_arch2" in
24e804ec 2605 armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus)
ea2d6a39
JQ
2606 target_bigendian=yes
2607 ;;
2608esac
97a847bc 2609target_softmmu="no"
997344f3 2610target_user_only="no"
831b7825 2611target_linux_user="no"
831b7825 2612target_darwin_user="no"
84778508 2613target_bsd_user="no"
9e407a85 2614case "$target" in
600309b6 2615 ${target_arch2}-softmmu)
9e407a85
PB
2616 target_softmmu="yes"
2617 ;;
600309b6 2618 ${target_arch2}-linux-user)
9c7a4202
BS
2619 if test "$linux" != "yes" ; then
2620 echo "ERROR: Target '$target' is only available on a Linux host"
2621 exit 1
2622 fi
9e407a85
PB
2623 target_user_only="yes"
2624 target_linux_user="yes"
2625 ;;
600309b6 2626 ${target_arch2}-darwin-user)
9c7a4202
BS
2627 if test "$darwin" != "yes" ; then
2628 echo "ERROR: Target '$target' is only available on a Darwin host"
2629 exit 1
2630 fi
9e407a85
PB
2631 target_user_only="yes"
2632 target_darwin_user="yes"
2633 ;;
600309b6 2634 ${target_arch2}-bsd-user)
9cf55765 2635 if test "$bsd" != "yes" ; then
9c7a4202
BS
2636 echo "ERROR: Target '$target' is only available on a BSD host"
2637 exit 1
2638 fi
84778508
BS
2639 target_user_only="yes"
2640 target_bsd_user="yes"
2641 ;;
9e407a85
PB
2642 *)
2643 echo "ERROR: Target '$target' not recognised"
2644 exit 1
2645 ;;
2646esac
831b7825 2647
97a847bc 2648mkdir -p $target_dir
158142c2 2649mkdir -p $target_dir/fpu
57fec1fe 2650mkdir -p $target_dir/tcg
59f2a787 2651mkdir -p $target_dir/ide
84778508 2652if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
69de927c
FB
2653 mkdir -p $target_dir/nwfpe
2654fi
2655
ec530c81
FB
2656#
2657# don't use ln -sf as not all "ln -sf" over write the file/link
2658#
2659rm -f $target_dir/Makefile
2660ln -s $source_path/Makefile.target $target_dir/Makefile
2661
97a847bc 2662
25be210f 2663echo "# Automatically generated by configure - do not modify" > $config_target_mak
de83cd02 2664
e5fe0c52 2665bflt="no"
bd0c5661 2666target_nptl="no"
600309b6 2667interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
7ee2822c 2668echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
56aebc89 2669gdb_xml_files=""
7ba1e619 2670
938b1edd 2671TARGET_ARCH="$target_arch2"
6acff7da 2672TARGET_BASE_ARCH=""
e6e91b9c 2673TARGET_ABI_DIR=""
e73aae67 2674
600309b6 2675case "$target_arch2" in
2408a527 2676 i386)
1ad2134f 2677 target_phys_bits=32
2408a527
AJ
2678 ;;
2679 x86_64)
6acff7da 2680 TARGET_BASE_ARCH=i386
1ad2134f 2681 target_phys_bits=64
2408a527
AJ
2682 ;;
2683 alpha)
1ad2134f 2684 target_phys_bits=64
a4b388ff 2685 target_nptl="yes"
2408a527
AJ
2686 ;;
2687 arm|armeb)
b498c8a0 2688 TARGET_ARCH=arm
2408a527 2689 bflt="yes"
bd0c5661 2690 target_nptl="yes"
56aebc89 2691 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1ad2134f 2692 target_phys_bits=32
2408a527
AJ
2693 ;;
2694 cris)
253bd7f8 2695 target_nptl="yes"
1ad2134f 2696 target_phys_bits=32
2408a527
AJ
2697 ;;
2698 m68k)
2408a527 2699 bflt="yes"
56aebc89 2700 gdb_xml_files="cf-core.xml cf-fp.xml"
1ad2134f 2701 target_phys_bits=32
2408a527 2702 ;;
72b675ca 2703 microblaze)
72b675ca
EI
2704 bflt="yes"
2705 target_nptl="yes"
2706 target_phys_bits=32
2707 ;;
0adcffb1 2708 mips|mipsel)
b498c8a0 2709 TARGET_ARCH=mips
25be210f 2710 echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
f04dc72f 2711 target_nptl="yes"
1ad2134f 2712 target_phys_bits=64
2408a527
AJ
2713 ;;
2714 mipsn32|mipsn32el)
b498c8a0 2715 TARGET_ARCH=mipsn32
6acff7da 2716 TARGET_BASE_ARCH=mips
25be210f 2717 echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
1ad2134f 2718 target_phys_bits=64
2408a527
AJ
2719 ;;
2720 mips64|mips64el)
b498c8a0 2721 TARGET_ARCH=mips64
6acff7da 2722 TARGET_BASE_ARCH=mips
25be210f 2723 echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
1ad2134f 2724 target_phys_bits=64
2408a527
AJ
2725 ;;
2726 ppc)
c8b3532d 2727 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2728 target_phys_bits=32
d6630708 2729 target_nptl="yes"
2408a527
AJ
2730 ;;
2731 ppcemb)
6acff7da 2732 TARGET_BASE_ARCH=ppc
e6e91b9c 2733 TARGET_ABI_DIR=ppc
c8b3532d 2734 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2735 target_phys_bits=64
d6630708 2736 target_nptl="yes"
2408a527
AJ
2737 ;;
2738 ppc64)
6acff7da 2739 TARGET_BASE_ARCH=ppc
e6e91b9c 2740 TARGET_ABI_DIR=ppc
c8b3532d 2741 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2742 target_phys_bits=64
2408a527
AJ
2743 ;;
2744 ppc64abi32)
b498c8a0 2745 TARGET_ARCH=ppc64
6acff7da 2746 TARGET_BASE_ARCH=ppc
e6e91b9c 2747 TARGET_ABI_DIR=ppc
25be210f 2748 echo "TARGET_ABI32=y" >> $config_target_mak
c8b3532d 2749 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2750 target_phys_bits=64
2408a527
AJ
2751 ;;
2752 sh4|sh4eb)
b498c8a0 2753 TARGET_ARCH=sh4
2408a527 2754 bflt="yes"
0b6d3ae0 2755 target_nptl="yes"
1ad2134f 2756 target_phys_bits=32
2408a527
AJ
2757 ;;
2758 sparc)
1ad2134f 2759 target_phys_bits=64
2408a527
AJ
2760 ;;
2761 sparc64)
6acff7da 2762 TARGET_BASE_ARCH=sparc
1ad2134f 2763 target_phys_bits=64
2408a527
AJ
2764 ;;
2765 sparc32plus)
b498c8a0 2766 TARGET_ARCH=sparc64
6acff7da 2767 TARGET_BASE_ARCH=sparc
e6e91b9c 2768 TARGET_ABI_DIR=sparc
25be210f 2769 echo "TARGET_ABI32=y" >> $config_target_mak
1ad2134f 2770 target_phys_bits=64
2408a527 2771 ;;
24e804ec
AG
2772 s390x)
2773 target_phys_bits=64
2774 ;;
2408a527
AJ
2775 *)
2776 echo "Unsupported target CPU"
2777 exit 1
2778 ;;
2779esac
25be210f 2780echo "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak
053dd92e 2781target_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`"
25be210f
JQ
2782echo "TARGET_$target_arch_name=y" >> $config_target_mak
2783echo "TARGET_ARCH2=$target_arch2" >> $config_target_mak
42bc608b 2784# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
6acff7da
JQ
2785if [ "$TARGET_BASE_ARCH" = "" ]; then
2786 TARGET_BASE_ARCH=$TARGET_ARCH
6acff7da 2787fi
25be210f 2788echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
e6e91b9c
JQ
2789if [ "$TARGET_ABI_DIR" = "" ]; then
2790 TARGET_ABI_DIR=$TARGET_ARCH
2791fi
25be210f 2792echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
1b0c87fc
JQ
2793case "$target_arch2" in
2794 i386|x86_64)
2795 if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
25be210f 2796 echo "CONFIG_XEN=y" >> $config_target_mak
1b0c87fc
JQ
2797 fi
2798esac
c59249f9 2799case "$target_arch2" in
0e60a699 2800 i386|x86_64|ppcemb|ppc|ppc64|s390x)
c59249f9
JQ
2801 # Make sure the target and host cpus are compatible
2802 if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
2803 \( "$target_arch2" = "$cpu" -o \
2804 \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
5f114bc6 2805 \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \
c59249f9
JQ
2806 \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \
2807 \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then
25be210f
JQ
2808 echo "CONFIG_KVM=y" >> $config_target_mak
2809 echo "KVM_CFLAGS=$kvm_cflags" >> $config_target_mak
dae5079a
JK
2810 if test "$kvm_para" = "yes"; then
2811 echo "CONFIG_KVM_PARA=y" >> $config_target_mak
2812 fi
d5970055
MT
2813 if test $vhost_net = "yes" ; then
2814 echo "CONFIG_VHOST_NET=y" >> $config_target_mak
2815 fi
c59249f9
JQ
2816 fi
2817esac
de83cd02 2818if test "$target_bigendian" = "yes" ; then
25be210f 2819 echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
de83cd02 2820fi
97a847bc 2821if test "$target_softmmu" = "yes" ; then
b1aa27c4 2822 echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak
25be210f
JQ
2823 echo "CONFIG_SOFTMMU=y" >> $config_target_mak
2824 echo "LIBS+=$libs_softmmu" >> $config_target_mak
0e8c9214 2825 echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak
5791f45b 2826 echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
43ce4dfe 2827fi
997344f3 2828if test "$target_user_only" = "yes" ; then
25be210f 2829 echo "CONFIG_USER_ONLY=y" >> $config_target_mak
997344f3 2830fi
831b7825 2831if test "$target_linux_user" = "yes" ; then
25be210f 2832 echo "CONFIG_LINUX_USER=y" >> $config_target_mak
831b7825
TS
2833fi
2834if test "$target_darwin_user" = "yes" ; then
25be210f 2835 echo "CONFIG_DARWIN_USER=y" >> $config_target_mak
831b7825 2836fi
56aebc89
PB
2837list=""
2838if test ! -z "$gdb_xml_files" ; then
2839 for x in $gdb_xml_files; do
2840 list="$list $source_path/gdb-xml/$x"
2841 done
3d0f1517 2842 echo "TARGET_XML_FILES=$list" >> $config_target_mak
56aebc89 2843fi
97a847bc 2844
f57975fb 2845case "$target_arch2" in
990b3e19 2846 alpha|arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|s390x|sparc|sparc64|sparc32plus)
25be210f 2847 echo "CONFIG_SOFTFLOAT=y" >> $config_target_mak
f57975fb 2848 ;;
d6b38939 2849 *)
25be210f 2850 echo "CONFIG_NOSOFTFLOAT=y" >> $config_target_mak
d6b38939 2851 ;;
f57975fb
JQ
2852esac
2853
e5fe0c52 2854if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
25be210f 2855 echo "TARGET_HAS_BFLT=y" >> $config_target_mak
e5fe0c52 2856fi
bd0c5661
PB
2857if test "$target_user_only" = "yes" \
2858 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
25be210f 2859 echo "CONFIG_USE_NPTL=y" >> $config_target_mak
bd0c5661 2860fi
379f6698 2861if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
25be210f 2862 echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak
379f6698 2863fi
84778508 2864if test "$target_bsd_user" = "yes" ; then
25be210f 2865 echo "CONFIG_BSD_USER=y" >> $config_target_mak
84778508 2866fi
5b0753e0 2867
4afddb55 2868# generate QEMU_CFLAGS/LDFLAGS for targets
fa282484 2869
4afddb55 2870cflags=""
fa282484 2871ldflags=""
9b8e111f 2872
57ddfbf7
JQ
2873if test "$ARCH" = "sparc64" ; then
2874 cflags="-I\$(SRC_PATH)/tcg/sparc $cflags"
24e804ec
AG
2875elif test "$ARCH" = "s390x" ; then
2876 cflags="-I\$(SRC_PATH)/tcg/s390 $cflags"
5d8a4f8f
RH
2877elif test "$ARCH" = "x86_64" ; then
2878 cflags="-I\$(SRC_PATH)/tcg/i386 $cflags"
57ddfbf7
JQ
2879else
2880 cflags="-I\$(SRC_PATH)/tcg/\$(ARCH) $cflags"
2881fi
2882cflags="-I\$(SRC_PATH)/tcg $cflags"
2883cflags="-I\$(SRC_PATH)/fpu $cflags"
2884
4d904533
BS
2885if test "$target_user_only" = "yes" ; then
2886 libdis_config_mak=libdis-user/config.mak
2887else
2888 libdis_config_mak=libdis/config.mak
2889fi
2890
64656024
JQ
2891for i in $ARCH $TARGET_BASE_ARCH ; do
2892 case "$i" in
2893 alpha)
25be210f 2894 echo "CONFIG_ALPHA_DIS=y" >> $config_target_mak
4d904533 2895 echo "CONFIG_ALPHA_DIS=y" >> $libdis_config_mak
64656024
JQ
2896 ;;
2897 arm)
25be210f 2898 echo "CONFIG_ARM_DIS=y" >> $config_target_mak
4d904533 2899 echo "CONFIG_ARM_DIS=y" >> $libdis_config_mak
64656024
JQ
2900 ;;
2901 cris)
25be210f 2902 echo "CONFIG_CRIS_DIS=y" >> $config_target_mak
4d904533 2903 echo "CONFIG_CRIS_DIS=y" >> $libdis_config_mak
64656024
JQ
2904 ;;
2905 hppa)
25be210f 2906 echo "CONFIG_HPPA_DIS=y" >> $config_target_mak
4d904533 2907 echo "CONFIG_HPPA_DIS=y" >> $libdis_config_mak
64656024
JQ
2908 ;;
2909 i386|x86_64)
25be210f 2910 echo "CONFIG_I386_DIS=y" >> $config_target_mak
4d904533 2911 echo "CONFIG_I386_DIS=y" >> $libdis_config_mak
64656024 2912 ;;
903ec55c
AJ
2913 ia64*)
2914 echo "CONFIG_IA64_DIS=y" >> $config_target_mak
2915 echo "CONFIG_IA64_DIS=y" >> $libdis_config_mak
2916 ;;
64656024 2917 m68k)
25be210f 2918 echo "CONFIG_M68K_DIS=y" >> $config_target_mak
4d904533 2919 echo "CONFIG_M68K_DIS=y" >> $libdis_config_mak
64656024
JQ
2920 ;;
2921 microblaze)
25be210f 2922 echo "CONFIG_MICROBLAZE_DIS=y" >> $config_target_mak
4d904533 2923 echo "CONFIG_MICROBLAZE_DIS=y" >> $libdis_config_mak
64656024
JQ
2924 ;;
2925 mips*)
25be210f 2926 echo "CONFIG_MIPS_DIS=y" >> $config_target_mak
4d904533 2927 echo "CONFIG_MIPS_DIS=y" >> $libdis_config_mak
64656024
JQ
2928 ;;
2929 ppc*)
25be210f 2930 echo "CONFIG_PPC_DIS=y" >> $config_target_mak
4d904533 2931 echo "CONFIG_PPC_DIS=y" >> $libdis_config_mak
64656024 2932 ;;
24e804ec 2933 s390*)
25be210f 2934 echo "CONFIG_S390_DIS=y" >> $config_target_mak
4d904533 2935 echo "CONFIG_S390_DIS=y" >> $libdis_config_mak
64656024
JQ
2936 ;;
2937 sh4)
25be210f 2938 echo "CONFIG_SH4_DIS=y" >> $config_target_mak
4d904533 2939 echo "CONFIG_SH4_DIS=y" >> $libdis_config_mak
64656024
JQ
2940 ;;
2941 sparc*)
25be210f 2942 echo "CONFIG_SPARC_DIS=y" >> $config_target_mak
4d904533 2943 echo "CONFIG_SPARC_DIS=y" >> $libdis_config_mak
64656024
JQ
2944 ;;
2945 esac
2946done
2947
6ee7126f
JQ
2948case "$ARCH" in
2949alpha)
2950 # Ensure there's only a single GP
2951 cflags="-msmall-data $cflags"
2952;;
2953esac
2954
55d9c04b
JQ
2955if test "$target_softmmu" = "yes" ; then
2956 case "$TARGET_BASE_ARCH" in
2957 arm)
2958 cflags="-DHAS_AUDIO $cflags"
2959 ;;
2960 i386|mips|ppc)
2961 cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags"
2962 ;;
2963 esac
2964fi
2965
34005a00 2966if test "$target_user_only" = "yes" -a "$static" = "no" -a \
50108930 2967 "$user_pie" = "yes" ; then
34005a00
KS
2968 cflags="-fpie $cflags"
2969 ldflags="-pie $ldflags"
2970fi
2971
471857dd
JQ
2972if test "$target_softmmu" = "yes" -a \( \
2973 "$TARGET_ARCH" = "microblaze" -o \
2974 "$TARGET_ARCH" = "cris" \) ; then
25be210f 2975 echo "CONFIG_NEED_MMU=y" >> $config_target_mak
471857dd
JQ
2976fi
2977
d02c1db3 2978if test "$gprof" = "yes" ; then
25be210f 2979 echo "TARGET_GPROF=yes" >> $config_target_mak
d02c1db3
JQ
2980 if test "$target_linux_user" = "yes" ; then
2981 cflags="-p $cflags"
2982 ldflags="-p $ldflags"
2983 fi
2984 if test "$target_softmmu" = "yes" ; then
2985 ldflags="-p $ldflags"
25be210f 2986 echo "GPROF_CFLAGS=-p" >> $config_target_mak
d02c1db3
JQ
2987 fi
2988fi
2989
6ee7126f 2990linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
9b8e111f 2991if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
fa282484 2992 case "$ARCH" in
fa282484
JQ
2993 sparc)
2994 # -static is used to avoid g1/g3 usage by the dynamic linker
322e5878 2995 ldflags="$linker_script -static $ldflags"
fa282484 2996 ;;
4d58be06
RH
2997 alpha | s390x)
2998 # The default placement of the application is fine.
2999 ;;
fd76e73a 3000 *)
322e5878 3001 ldflags="$linker_script $ldflags"
fa282484
JQ
3002 ;;
3003 esac
3004fi
fa282484 3005
25be210f
JQ
3006echo "LDFLAGS+=$ldflags" >> $config_target_mak
3007echo "QEMU_CFLAGS+=$cflags" >> $config_target_mak
fa282484 3008
97a847bc 3009done # for target in $targets
7d13299d
FB
3010
3011# build tree in object directory if source path is different from current one
3012if test "$source_path_used" = "yes" ; then
e1144d00 3013 DIRS="tests tests/cris slirp audio block net pc-bios/optionrom"
2d9f27d2 3014 DIRS="$DIRS roms/seabios roms/vgabios"
3e230dd2 3015 DIRS="$DIRS fsdev ui"
7d13299d 3016 FILES="Makefile tests/Makefile"
e7daa605 3017 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
e1ffb0f1 3018 FILES="$FILES tests/test-mmap.c"
7ea78b74 3019 FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps pc-bios/video.x"
2d9f27d2 3020 FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
7ea78b74
JK
3021 for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do
3022 FILES="$FILES pc-bios/`basename $bios_file`"
3023 done
7d13299d
FB
3024 for dir in $DIRS ; do
3025 mkdir -p $dir
3026 done
ec530c81 3027 # remove the link and recreate it, as not all "ln -sf" overwrite the link
7d13299d 3028 for f in $FILES ; do
ec530c81
FB
3029 rm -f $f
3030 ln -s $source_path/$f $f
7d13299d
FB
3031 done
3032fi
1ad2134f 3033
c34ebfdc 3034# temporary config to build submodules
2d9f27d2 3035for rom in seabios vgabios ; do
c34ebfdc 3036 config_mak=roms/$rom/config.mak
37116c89 3037 echo "# Automatically generated by configure - do not modify" > $config_mak
c34ebfdc
AL
3038 echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
3039 echo "CC=$cc" >> $config_mak
3040 echo "BCC=bcc" >> $config_mak
3041 echo "CPP=${cross_prefix}cpp" >> $config_mak
3042 echo "OBJCOPY=objcopy" >> $config_mak
3043 echo "IASL=iasl" >> $config_mak
3044 echo "HOST_CC=$host_cc" >> $config_mak
3045 echo "LD=$ld" >> $config_mak
3046done
3047
1ad2134f
PB
3048for hwlib in 32 64; do
3049 d=libhw$hwlib
3050 mkdir -p $d
9953b2fc 3051 mkdir -p $d/ide
1ad2134f
PB
3052 rm -f $d/Makefile
3053 ln -s $source_path/Makefile.hw $d/Makefile
37116c89 3054 echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak
1ad2134f 3055done
add16157
BS
3056
3057d=libuser
3058mkdir -p $d
3059rm -f $d/Makefile
3060ln -s $source_path/Makefile.user $d/Makefile
299060a0
KS
3061if test "$static" = "no" -a "$user_pie" = "yes" ; then
3062 echo "QEMU_CFLAGS+=-fpie" > $d/config.mak
3063fi
b40292e7
JK
3064
3065if test "$docs" = "yes" ; then
3066 mkdir -p QMP
3067fi