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