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