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