]> git.proxmox.com Git - qemu.git/blame - configure
Userspace guest address offsetting
[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"
16TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}"
17TMPS="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.S"
9d56d2dc 18TMPI="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.i"
d4742de8 19TMPSDLLOG="${TMPDIR1}/qemu-conf-sdl-$$-${RANDOM}.log"
7d13299d 20
d4742de8 21trap "rm -f $TMPC $TMPO $TMPE $TMPS $TMPI $TMPSDLLOG; exit" 0 2 3 15
9ac81bbb 22
7d13299d 23# default parameters
11d9f695 24prefix=""
1e43adfc 25interp_prefix="/usr/gnemul/qemu-%M"
43ce4dfe 26static="no"
7d13299d
FB
27cross_prefix=""
28cc="gcc"
0c58ac1c 29audio_drv_list=""
4c9b53e3 30audio_card_list="ac97 es1370 sb16"
31audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus"
7d13299d
FB
32host_cc="gcc"
33ar="ar"
34make="make"
6a882643 35install="install"
7d13299d 36strip="strip"
7aa486fe
AL
37objcopy="objcopy"
38ld="ld"
ac0df51d
AL
39
40# parse CC options first
41for opt do
42 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
43 case "$opt" in
44 --cross-prefix=*) cross_prefix="$optarg"
45 ;;
46 --cc=*) cc="$optarg"
47 ;;
48 esac
49done
50
51# OS specific
52# Using uname is really, really broken. Once we have the right set of checks
53# we can eliminate it's usage altogether
54
55cc="${cross_prefix}${cc}"
56ar="${cross_prefix}${ar}"
57strip="${cross_prefix}${strip}"
7aa486fe
AL
58objcopy="${cross_prefix}${objcopy}"
59ld="${cross_prefix}${ld}"
ac0df51d
AL
60
61# check that the C compiler works.
62cat > $TMPC <<EOF
63int main(void) {}
64EOF
65
66if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
67 : C compiler works ok
68else
69 echo "ERROR: \"$cc\" either does not exist or does not work"
70 exit 1
71fi
72
73check_define() {
74cat > $TMPC <<EOF
75#if !defined($1)
76#error Not defined
77#endif
78int main(void) { return 0; }
79EOF
80 $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
81}
82
83if check_define __i386__ ; then
84 cpu="i386"
85elif check_define __x86_64__ ; then
86 cpu="x86_64"
3aa9bd6c
BS
87elif check_define __sparc__ ; then
88 # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
89 # They must be specified using --sparc_cpu
90 if check_define __arch64__ ; then
91 cpu="sparc64"
92 else
93 cpu="sparc"
94 fi
fdf7ed96 95elif check_define _ARCH_PPC ; then
96 if check_define _ARCH_PPC64 ; then
97 cpu="ppc64"
98 else
99 cpu="ppc"
100 fi
ac0df51d 101else
fdf7ed96 102 cpu=`uname -m`
ac0df51d
AL
103fi
104
5327cf48 105target_list=""
7d13299d
FB
106case "$cpu" in
107 i386|i486|i586|i686|i86pc|BePC)
97a847bc 108 cpu="i386"
7d13299d 109 ;;
aaa5fa14
AJ
110 x86_64|amd64)
111 cpu="x86_64"
112 ;;
113 alpha)
114 cpu="alpha"
115 ;;
ba68055e 116 armv*b)
808c4954
FB
117 cpu="armv4b"
118 ;;
ba68055e 119 armv*l)
7d13299d
FB
120 cpu="armv4l"
121 ;;
aaa5fa14
AJ
122 cris)
123 cpu="cris"
7d13299d 124 ;;
f54b3f92
AJ
125 parisc|parisc64)
126 cpu="hppa"
127 ;;
aaa5fa14
AJ
128 ia64)
129 cpu="ia64"
130 ;;
131 m68k)
132 cpu="m68k"
7d13299d 133 ;;
72b675ca
EI
134 microblaze)
135 cpu="microblaze"
136 ;;
7d13299d
FB
137 mips)
138 cpu="mips"
139 ;;
fbe4f65b
TS
140 mips64)
141 cpu="mips64"
142 ;;
fdf7ed96 143 ppc)
144 cpu="ppc"
145 ;;
146 ppc64)
147 cpu="ppc64"
e7daa605 148 ;;
0e7b8a9f 149 s390*)
fb3e5849
FB
150 cpu="s390"
151 ;;
3142255c 152 sparc|sun4[cdmuv])
ae228531
FB
153 cpu="sparc"
154 ;;
155 sparc64)
156 cpu="sparc64"
157 ;;
7d13299d
FB
158 *)
159 cpu="unknown"
160 ;;
161esac
162gprof="no"
f8393946 163debug_tcg="no"
f3d08ee6 164debug="no"
03b4fe7d 165sparse="no"
1625af87 166strip_opt="yes"
7d13299d 167bigendian="no"
67b915a5
FB
168mingw32="no"
169EXESUF=""
443f1376 170slirp="yes"
e0e6c8c0 171vde="yes"
102a52e4
FB
172fmod_lib=""
173fmod_inc=""
2f6a1ab0 174oss_lib=""
8d5d2d4c 175vnc_tls="yes"
2f9606b3 176vnc_sasl="yes"
b1a550a0 177bsd="no"
5327cf48 178linux="no"
d2c7c9b8 179solaris="no"
c9ec1fe4 180kqemu="no"
05c2a3e7 181profiler="no"
5b0753e0 182cocoa="no"
0a8e90f4 183softmmu="yes"
831b7825
TS
184linux_user="no"
185darwin_user="no"
84778508 186bsd_user="no"
379f6698 187guest_base=""
70ec5dc0 188build_docs="yes"
c5937220 189uname_release=""
4d3b6f6e 190curses="yes"
769ce76d 191curl="yes"
e5d355d1 192pthread="yes"
414f0dab 193aio="yes"
e5d355d1 194io_thread="no"
bd0c5661 195nptl="yes"
8ff9cbf7 196mixemu="no"
fb599c9a 197bluez="yes"
dff84034 198kvm="no"
eac30262 199kerneldir=""
b29fe3ed 200aix="no"
77755340 201blobs="yes"
f652e6af 202fdt="yes"
f92f8afe 203sdl="yes"
5368a422 204sdl_x11="no"
e37630ca 205xen="yes"
4a19f1ec 206pkgversion=""
7d13299d
FB
207
208# OS specific
ac0df51d
AL
209if check_define __linux__ ; then
210 targetos="Linux"
211elif check_define _WIN32 ; then
212 targetos='MINGW32'
169dc5d3
BS
213elif check_define __OpenBSD__ ; then
214 targetos='OpenBSD'
215elif check_define __sun__ ; then
216 targetos='SunOS'
ac0df51d
AL
217else
218 targetos=`uname -s`
219fi
7d13299d 220case $targetos in
c326e0af
FB
221CYGWIN*)
222mingw32="yes"
6f30fa85 223OS_CFLAGS="-mno-cygwin"
db8d7dd1
TS
224if [ "$cpu" = "i386" ] ; then
225 kqemu="yes"
226fi
c2de5c91 227audio_possible_drivers="sdl"
c326e0af 228;;
67b915a5
FB
229MINGW32*)
230mingw32="yes"
db8d7dd1
TS
231if [ "$cpu" = "i386" ] ; then
232 kqemu="yes"
233fi
c2de5c91 234audio_possible_drivers="dsound sdl fmod"
67b915a5 235;;
5c40d2bd 236GNU/kFreeBSD)
0c58ac1c 237audio_drv_list="oss"
f34af52c 238audio_possible_drivers="oss sdl esd pa"
5c40d2bd
TS
239if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
240 kqemu="yes"
241fi
242;;
7d3505c5
FB
243FreeBSD)
244bsd="yes"
0c58ac1c 245audio_drv_list="oss"
f34af52c 246audio_possible_drivers="oss sdl esd pa"
e99f9060 247if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
07f4ddbf
FB
248 kqemu="yes"
249fi
7d3505c5 250;;
c5e97233
BS
251DragonFly)
252bsd="yes"
253audio_drv_list="oss"
254audio_possible_drivers="oss sdl esd pa"
255if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
256 kqemu="yes"
257fi
258aio="no"
259;;
7d3505c5
FB
260NetBSD)
261bsd="yes"
0c58ac1c 262audio_drv_list="oss"
c2de5c91 263audio_possible_drivers="oss sdl esd"
8ef92a88 264oss_lib="-lossaudio"
7d3505c5
FB
265;;
266OpenBSD)
267bsd="yes"
128ab2ff 268openbsd="yes"
0c58ac1c 269audio_drv_list="oss"
c2de5c91 270audio_possible_drivers="oss sdl esd"
2f6a1ab0 271oss_lib="-lossaudio"
7d3505c5 272;;
83fb7adf
FB
273Darwin)
274bsd="yes"
275darwin="yes"
1b0f9cc2 276# on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can run 64-bit userspace code
aab8588a 277if [ "$cpu" = "i386" ] ; then
278 is_x86_64=`sysctl -n hw.optional.x86_64`
279 [ "$is_x86_64" = "1" ] && cpu=x86_64
1b0f9cc2
AL
280fi
281if [ "$cpu" = "x86_64" ] ; then
282 OS_CFLAGS="-arch x86_64"
283 LDFLAGS="-arch x86_64"
284else
285 OS_CFLAGS="-mdynamic-no-pic"
286fi
831b7825 287darwin_user="yes"
fd677642 288cocoa="yes"
0c58ac1c 289audio_drv_list="coreaudio"
c2de5c91 290audio_possible_drivers="coreaudio sdl fmod"
c2c59c3e 291OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
83fb7adf 292;;
ec530c81 293SunOS)
c2b84fab
TS
294 solaris="yes"
295 make="gmake"
296 install="ginstall"
0475a5ca 297 needs_libsunmath="no"
c2b84fab 298 solarisrev=`uname -r | cut -f2 -d.`
ef18c883
TS
299 # have to select again, because `uname -m` returns i86pc
300 # even on an x86_64 box.
301 solariscpu=`isainfo -k`
302 if test "${solariscpu}" = "amd64" ; then
303 cpu="x86_64"
304 fi
c2b84fab 305 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
0475a5ca
TS
306 if test "$solarisrev" -le 9 ; then
307 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
308 needs_libsunmath="yes"
309 else
310 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
311 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
312 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
313 echo "Studio 11 can be downloaded from www.sun.com."
314 exit 1
315 fi
316 fi
317 if test "$solarisrev" -ge 9 ; then
c2b84fab
TS
318 kqemu="yes"
319 fi
86b2bd93 320 fi
6b4d2ba1 321 if test -f /usr/include/sys/soundcard.h ; then
0c58ac1c 322 audio_drv_list="oss"
6b4d2ba1 323 fi
c2de5c91 324 audio_possible_drivers="oss sdl"
14d483ec 325 OS_CFLAGS=-std=gnu99
86b2bd93 326;;
b29fe3ed 327AIX)
328aix="yes"
329make="gmake"
330;;
1d14ffa9 331*)
0c58ac1c 332audio_drv_list="oss"
b8e59f18 333audio_possible_drivers="oss alsa sdl esd pa"
5327cf48 334linux="yes"
831b7825 335linux_user="yes"
68063649 336usb="linux"
dff84034 337kvm="yes"
07f4ddbf 338if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
c9ec1fe4 339 kqemu="yes"
c2de5c91 340 audio_possible_drivers="$audio_possible_drivers fmod"
c9ec1fe4 341fi
fb065187 342;;
7d13299d
FB
343esac
344
7d3505c5 345if [ "$bsd" = "yes" ] ; then
b1a550a0 346 if [ "$darwin" != "yes" ] ; then
83fb7adf 347 make="gmake"
68063649 348 usb="bsd"
83fb7adf 349 fi
84778508 350 bsd_user="yes"
7d3505c5
FB
351fi
352
7d13299d 353# find source path
ad064840 354source_path=`dirname "$0"`
59faef3a
AZ
355source_path_used="no"
356workdir=`pwd`
ad064840 357if [ -z "$source_path" ]; then
59faef3a 358 source_path=$workdir
ad064840
PB
359else
360 source_path=`cd "$source_path"; pwd`
7d13299d 361fi
724db118 362[ -f "$workdir/vl.c" ] || source_path_used="yes"
7d13299d 363
487fefdb 364werror=""
85aa5189 365
7d13299d 366for opt do
a46e4035 367 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
7d13299d 368 case "$opt" in
2efc3265
FB
369 --help|-h) show_help=yes
370 ;;
b1a550a0 371 --prefix=*) prefix="$optarg"
7d13299d 372 ;;
b1a550a0 373 --interp-prefix=*) interp_prefix="$optarg"
32ce6337 374 ;;
b1a550a0 375 --source-path=*) source_path="$optarg"
ad064840 376 source_path_used="yes"
7d13299d 377 ;;
ac0df51d 378 --cross-prefix=*)
7d13299d 379 ;;
ac0df51d 380 --cc=*)
7d13299d 381 ;;
b1a550a0 382 --host-cc=*) host_cc="$optarg"
83469015 383 ;;
b1a550a0 384 --make=*) make="$optarg"
7d13299d 385 ;;
6a882643
PB
386 --install=*) install="$optarg"
387 ;;
e3fc14c3 388 --extra-cflags=*) EXTRA_CFLAGS="$optarg"
7d13299d 389 ;;
e3fc14c3 390 --extra-ldflags=*) EXTRA_LDFLAGS="$optarg"
7d13299d 391 ;;
b1a550a0 392 --cpu=*) cpu="$optarg"
7d13299d 393 ;;
b1a550a0 394 --target-list=*) target_list="$optarg"
de83cd02 395 ;;
7d13299d
FB
396 --enable-gprof) gprof="yes"
397 ;;
43ce4dfe
FB
398 --static) static="yes"
399 ;;
97a847bc
FB
400 --disable-sdl) sdl="no"
401 ;;
0c58ac1c 402 --fmod-lib=*) fmod_lib="$optarg"
1d14ffa9 403 ;;
c2de5c91 404 --fmod-inc=*) fmod_inc="$optarg"
405 ;;
2f6a1ab0
BS
406 --oss-lib=*) oss_lib="$optarg"
407 ;;
2fa7d3bf 408 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
102a52e4 409 ;;
0c58ac1c 410 --audio-drv-list=*) audio_drv_list="$optarg"
102a52e4 411 ;;
f8393946
AJ
412 --enable-debug-tcg) debug_tcg="yes"
413 ;;
414 --disable-debug-tcg) debug_tcg="no"
415 ;;
f3d08ee6
PB
416 --enable-debug)
417 # Enable debugging options that aren't excessively noisy
418 debug_tcg="yes"
419 debug="yes"
420 strip_opt="no"
421 ;;
03b4fe7d
AL
422 --enable-sparse) sparse="yes"
423 ;;
424 --disable-sparse) sparse="no"
425 ;;
1625af87
AL
426 --disable-strip) strip_opt="no"
427 ;;
8d5d2d4c
TS
428 --disable-vnc-tls) vnc_tls="no"
429 ;;
2f9606b3
AL
430 --disable-vnc-sasl) vnc_sasl="no"
431 ;;
443f1376 432 --disable-slirp) slirp="no"
1d14ffa9 433 ;;
e0e6c8c0 434 --disable-vde) vde="no"
8a16d273 435 ;;
c9ec1fe4 436 --disable-kqemu) kqemu="no"
1d14ffa9 437 ;;
e37630ca
AL
438 --disable-xen) xen="no"
439 ;;
2e4d9fb1
AJ
440 --disable-brlapi) brlapi="no"
441 ;;
fb599c9a
AZ
442 --disable-bluez) bluez="no"
443 ;;
7ba1e619
AL
444 --disable-kvm) kvm="no"
445 ;;
05c2a3e7
FB
446 --enable-profiler) profiler="yes"
447 ;;
c2de5c91 448 --enable-cocoa)
449 cocoa="yes" ;
450 sdl="no" ;
451 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
1d14ffa9 452 ;;
cad25d69 453 --disable-system) softmmu="no"
0a8e90f4 454 ;;
cad25d69 455 --enable-system) softmmu="yes"
0a8e90f4 456 ;;
831b7825 457 --disable-linux-user) linux_user="no"
0a8e90f4 458 ;;
831b7825
TS
459 --enable-linux-user) linux_user="yes"
460 ;;
461 --disable-darwin-user) darwin_user="no"
462 ;;
463 --enable-darwin-user) darwin_user="yes"
0a8e90f4 464 ;;
84778508
BS
465 --disable-bsd-user) bsd_user="no"
466 ;;
467 --enable-bsd-user) bsd_user="yes"
468 ;;
379f6698
PB
469 --enable-guest-base) guest_base="yes"
470 ;;
471 --disable-guest-base) guest_base="no"
472 ;;
c5937220
PB
473 --enable-uname-release=*) uname_release="$optarg"
474 ;;
3142255c
BS
475 --sparc_cpu=*)
476 sparc_cpu="$optarg"
477 case $sparc_cpu in
478 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
600309b6 479 target_arch2="sparc"; cpu="sparc" ;;
3142255c 480 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
600309b6 481 target_arch2="sparc"; cpu="sparc" ;;
3142255c 482 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
600309b6 483 target_arch2="sparc64"; cpu="sparc64" ;;
3142255c
BS
484 *) echo "undefined SPARC architecture. Exiting";exit 1;;
485 esac
486 ;;
85aa5189
FB
487 --enable-werror) werror="yes"
488 ;;
489 --disable-werror) werror="no"
490 ;;
4d3b6f6e
AZ
491 --disable-curses) curses="no"
492 ;;
769ce76d
AG
493 --disable-curl) curl="no"
494 ;;
bd0c5661
PB
495 --disable-nptl) nptl="no"
496 ;;
8ff9cbf7 497 --enable-mixemu) mixemu="yes"
498 ;;
e5d355d1
AL
499 --disable-pthread) pthread="no"
500 ;;
414f0dab
BS
501 --disable-aio) aio="no"
502 ;;
e5d355d1
AL
503 --enable-io-thread) io_thread="yes"
504 ;;
77755340
TS
505 --disable-blobs) blobs="no"
506 ;;
eac30262
AL
507 --kerneldir=*) kerneldir="$optarg"
508 ;;
4a19f1ec
PB
509 --with-pkgversion=*) pkgversion=" ($optarg)"
510 ;;
70ec5dc0
AL
511 --disable-docs) build_docs="no"
512 ;;
7f1559c6
AZ
513 *) echo "ERROR: unknown option $opt"; show_help="yes"
514 ;;
7d13299d
FB
515 esac
516done
517
6f30fa85 518# default flags for all hosts
f3d08ee6
PB
519CFLAGS="$CFLAGS -g -fno-strict-aliasing"
520if test "$debug" = "no" ; then
521 CFLAGS="$CFLAGS -O2"
522fi
e0e36fe9 523CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
6f30fa85 524LDFLAGS="$LDFLAGS -g"
1172f653
BS
525
526# Consult white-list to determine whether to enable werror
527# by default. Only enable by default for git builds
528if test -z "$werror" ; then
529 z_version=`cut -f3 -d. $source_path/VERSION`
530 if test "$z_version" = "50" -a \
531 "$linux" = "yes" ; then
532 werror="yes"
533 else
534 werror="no"
535 fi
536fi
537
85aa5189 538if test "$werror" = "yes" ; then
1172f653 539 CFLAGS="$CFLAGS -Werror"
85aa5189 540fi
6f30fa85 541
d2c7c9b8
BS
542if test "$solaris" = "no" ; then
543 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
544 LDFLAGS="$LDFLAGS -Wl,--warn-common"
545 fi
49237acd
BS
546fi
547
3142255c
BS
548#
549# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
550# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
551#
379f6698 552host_guest_base="no"
40293e58 553case "$cpu" in
3142255c
BS
554 sparc) if test -z "$sparc_cpu" ; then
555 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
556 ARCH_LDFLAGS="-m32"
557 else
558 ARCH_CFLAGS="${SP_CFLAGS}"
559 ARCH_LDFLAGS="${SP_LDFLAGS}"
560 fi
762e8230
BS
561 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g2 -ffixed-g3"
562 if test "$solaris" = "no" ; then
563 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g6"
564 fi
3142255c
BS
565 ;;
566 sparc64) if test -z "$sparc_cpu" ; then
567 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
568 ARCH_LDFLAGS="-m64"
569 else
570 ARCH_CFLAGS="${SP_CFLAGS}"
571 ARCH_LDFLAGS="${SP_LDFLAGS}"
572 fi
762e8230
BS
573 if test "$solaris" = "no" ; then
574 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g5 -ffixed-g6 -ffixed-g7"
575 else
576 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g5 -ffixed-g6 -ffixed-g7"
577 fi
3142255c 578 ;;
76d83bde
TS
579 s390)
580 ARCH_CFLAGS="-march=z900"
581 ;;
40293e58
FB
582 i386)
583 ARCH_CFLAGS="-m32"
584 ARCH_LDFLAGS="-m32"
379f6698 585 host_guest_base="yes"
40293e58
FB
586 ;;
587 x86_64)
588 ARCH_CFLAGS="-m64"
589 ARCH_LDFLAGS="-m64"
379f6698
PB
590 host_guest_base="yes"
591 ;;
592 arm*)
593 host_guest_base="yes"
40293e58 594 ;;
3142255c
BS
595esac
596
379f6698
PB
597[ -z "$guest_base" ] && guest_base="$host_guest_base"
598
af5db58e
PB
599if test x"$show_help" = x"yes" ; then
600cat << EOF
601
602Usage: configure [options]
603Options: [defaults in brackets after descriptions]
604
605EOF
606echo "Standard options:"
607echo " --help print this message"
608echo " --prefix=PREFIX install in PREFIX [$prefix]"
609echo " --interp-prefix=PREFIX where to find shared libraries, etc."
610echo " use %M for cpu name [$interp_prefix]"
611echo " --target-list=LIST set target list [$target_list]"
612echo ""
613echo "kqemu kernel acceleration support:"
614echo " --disable-kqemu disable kqemu support"
af5db58e
PB
615echo ""
616echo "Advanced options (experts only):"
617echo " --source-path=PATH path of source code [$source_path]"
618echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
619echo " --cc=CC use C compiler CC [$cc]"
620echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
e3fc14c3
JK
621echo " --extra-cflags=CFLAGS append extra C compiler flags CFLAGS"
622echo " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS"
af5db58e 623echo " --make=MAKE use specified make [$make]"
6a882643 624echo " --install=INSTALL use specified install [$install]"
af5db58e 625echo " --static enable static build [$static]"
f8393946
AJ
626echo " --enable-debug-tcg enable TCG debugging"
627echo " --disable-debug-tcg disable TCG debugging (default)"
09695a4a 628echo " --enable-debug enable common debug build options"
890b1658
AL
629echo " --enable-sparse enable sparse checker"
630echo " --disable-sparse disable sparse checker (default)"
1625af87 631echo " --disable-strip disable stripping binaries"
85aa5189 632echo " --disable-werror disable compilation abort on warning"
fe8f78e4 633echo " --disable-sdl disable SDL"
af5db58e 634echo " --enable-cocoa enable COCOA (Mac OS X only)"
c2de5c91 635echo " --audio-drv-list=LIST set audio drivers list:"
636echo " Available drivers: $audio_possible_drivers"
4c9b53e3 637echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
638echo " Available cards: $audio_possible_cards"
8ff9cbf7 639echo " --enable-mixemu enable mixer emulation"
e37630ca 640echo " --disable-xen disable xen backend driver support"
2e4d9fb1 641echo " --disable-brlapi disable BrlAPI"
8d5d2d4c 642echo " --disable-vnc-tls disable TLS encryption for VNC server"
2f9606b3 643echo " --disable-vnc-sasl disable SASL encryption for VNC server"
af896aaa 644echo " --disable-curses disable curses output"
769ce76d 645echo " --disable-curl disable curl connectivity"
fb599c9a 646echo " --disable-bluez disable bluez stack connectivity"
7ba1e619 647echo " --disable-kvm disable KVM acceleration support"
bd0c5661 648echo " --disable-nptl disable usermode NPTL support"
af5db58e
PB
649echo " --enable-system enable all system emulation targets"
650echo " --disable-system disable all system emulation targets"
831b7825
TS
651echo " --enable-linux-user enable all linux usermode emulation targets"
652echo " --disable-linux-user disable all linux usermode emulation targets"
653echo " --enable-darwin-user enable all darwin usermode emulation targets"
654echo " --disable-darwin-user disable all darwin usermode emulation targets"
84778508
BS
655echo " --enable-bsd-user enable all BSD usermode emulation targets"
656echo " --disable-bsd-user disable all BSD usermode emulation targets"
379f6698
PB
657echo " --enable-guest-base enable GUEST_BASE support for usermode"
658echo " emulation targets"
659echo " --disable-guest-base disable GUEST_BASE support"
af5db58e
PB
660echo " --fmod-lib path to FMOD library"
661echo " --fmod-inc path to FMOD includes"
2f6a1ab0 662echo " --oss-lib path to OSS library"
c5937220 663echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
3142255c 664echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
e0e6c8c0 665echo " --disable-vde disable support for vde network"
e5d355d1 666echo " --disable-pthread disable pthread support"
414f0dab 667echo " --disable-aio disable AIO support"
e5d355d1 668echo " --enable-io-thread enable IO thread"
77755340 669echo " --disable-blobs disable installing provided firmware blobs"
eac30262 670echo " --kerneldir=PATH look for kernel includes in PATH"
af5db58e 671echo ""
5bf08934 672echo "NOTE: The object files are built at the place where configure is launched"
af5db58e
PB
673exit 1
674fi
675
67b915a5 676if test "$mingw32" = "yes" ; then
5327cf48 677 linux="no"
67b915a5 678 EXESUF=".exe"
9f059eca 679 oss="no"
cd01b4a3 680 linux_user="no"
84778508 681 bsd_user="no"
49dc768d 682 OS_CFLAGS="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501"
cd01b4a3
AL
683fi
684
03b4fe7d
AL
685if test ! -x "$(which cgcc 2>/dev/null)"; then
686 sparse="no"
687fi
688
ec530c81
FB
689#
690# Solaris specific configure tool chain decisions
691#
692if test "$solaris" = "yes" ; then
ec530c81
FB
693 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
694 if test -z "$solinst" ; then
695 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
696 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
697 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
698 exit 1
699 fi
700 if test "$solinst" = "/usr/sbin/install" ; then
701 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
702 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
703 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
704 exit 1
705 fi
ec530c81
FB
706 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
707 if test -z "$sol_ar" ; then
708 echo "Error: No path includes ar"
709 if test -f /usr/ccs/bin/ar ; then
710 echo "Add /usr/ccs/bin to your path and rerun configure"
711 fi
712 exit 1
713 fi
5fafdf24 714fi
ec530c81
FB
715
716
5327cf48
FB
717if test -z "$target_list" ; then
718# these targets are portable
0a8e90f4 719 if [ "$softmmu" = "yes" ] ; then
2408a527
AJ
720 target_list="\
721i386-softmmu \
722x86_64-softmmu \
723arm-softmmu \
724cris-softmmu \
725m68k-softmmu \
72b675ca 726microblaze-softmmu \
2408a527
AJ
727mips-softmmu \
728mipsel-softmmu \
729mips64-softmmu \
730mips64el-softmmu \
731ppc-softmmu \
732ppcemb-softmmu \
733ppc64-softmmu \
734sh4-softmmu \
735sh4eb-softmmu \
736sparc-softmmu \
1b64fcae 737sparc64-softmmu \
2408a527 738"
0a8e90f4 739 fi
5327cf48 740# the following are Linux specific
831b7825 741 if [ "$linux_user" = "yes" ] ; then
2408a527
AJ
742 target_list="${target_list}\
743i386-linux-user \
744x86_64-linux-user \
745alpha-linux-user \
746arm-linux-user \
747armeb-linux-user \
748cris-linux-user \
749m68k-linux-user \
72b675ca 750microblaze-linux-user \
2408a527
AJ
751mips-linux-user \
752mipsel-linux-user \
753ppc-linux-user \
754ppc64-linux-user \
755ppc64abi32-linux-user \
756sh4-linux-user \
757sh4eb-linux-user \
758sparc-linux-user \
759sparc64-linux-user \
760sparc32plus-linux-user \
761"
831b7825
TS
762 fi
763# the following are Darwin specific
764 if [ "$darwin_user" = "yes" ] ; then
6cdc7375 765 target_list="$target_list i386-darwin-user ppc-darwin-user "
5327cf48 766 fi
84778508
BS
767# the following are BSD specific
768 if [ "$bsd_user" = "yes" ] ; then
769 target_list="${target_list}\
31fc12df
BS
770i386-bsd-user \
771x86_64-bsd-user \
772sparc-bsd-user \
84778508
BS
773sparc64-bsd-user \
774"
775 fi
6e20a45f 776else
b1a550a0 777 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
5327cf48 778fi
0a8e90f4
PB
779if test -z "$target_list" ; then
780 echo "No targets enabled"
781 exit 1
782fi
5327cf48 783
7d13299d
FB
784if test -z "$cross_prefix" ; then
785
786# ---
787# big/little endian test
788cat > $TMPC << EOF
789#include <inttypes.h>
790int main(int argc, char ** argv){
1d14ffa9
FB
791 volatile uint32_t i=0x01234567;
792 return (*((uint8_t*)(&i))) == 0x67;
7d13299d
FB
793}
794EOF
795
178baee6 796if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
7d13299d
FB
797$TMPE && bigendian="yes"
798else
799echo big/little test failed
800fi
801
802else
803
804# if cross compiling, cannot launch a program, so make a static guess
0938cda5 805if test "$cpu" = "armv4b" \
f54b3f92 806 -o "$cpu" = "hppa" \
0938cda5
AJ
807 -o "$cpu" = "m68k" \
808 -o "$cpu" = "mips" \
809 -o "$cpu" = "mips64" \
fdf7ed96 810 -o "$cpu" = "ppc" \
811 -o "$cpu" = "ppc64" \
0938cda5
AJ
812 -o "$cpu" = "s390" \
813 -o "$cpu" = "sparc" \
814 -o "$cpu" = "sparc64"; then
7d13299d
FB
815 bigendian="yes"
816fi
817
818fi
819
b6853697
FB
820# host long bits test
821hostlongbits="32"
0938cda5
AJ
822if test "$cpu" = "x86_64" \
823 -o "$cpu" = "alpha" \
824 -o "$cpu" = "ia64" \
fdf7ed96 825 -o "$cpu" = "sparc64" \
826 -o "$cpu" = "ppc64"; then
b6853697
FB
827 hostlongbits="64"
828fi
829
bd0c5661
PB
830# Check host NPTL support
831cat > $TMPC <<EOF
832#include <sched.h>
30813cea 833#include <linux/futex.h>
bd0c5661
PB
834void foo()
835{
836#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
837#error bork
838#endif
839}
840EOF
841
8c7f7574 842if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
bd0c5661
PB
843 :
844else
845 nptl="no"
846fi
847
ac62922e
AZ
848##########################################
849# zlib check
850
851cat > $TMPC << EOF
852#include <zlib.h>
853int main(void) { zlibVersion(); return 0; }
854EOF
8c7f7574 855if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
ac62922e
AZ
856 :
857else
858 echo
859 echo "Error: zlib check failed"
860 echo "Make sure to have the zlib libs and headers installed."
861 echo
862 exit 1
863fi
864
e37630ca
AL
865##########################################
866# xen probe
867
868if test "$xen" = "yes" ; then
869cat > $TMPC <<EOF
870#include <xenctrl.h>
871#include <xs.h>
df7a607b 872int main(void) { xs_daemon_open(); xc_interface_open(); return 0; }
e37630ca 873EOF
df7a607b 874 if $cc $CFLAGS $ARCH_CFLAGS -c -o $TMPO $TMPC $LDFLAGS -lxenstore -lxenctrl 2> /dev/null > /dev/null ; then
e37630ca
AL
875 :
876 else
877 xen="no"
878 fi
879fi
880
11d9f695
FB
881##########################################
882# SDL probe
883
884sdl_too_old=no
885
f92f8afe 886if test "$sdl" = "yes" ; then
069b0bda
TS
887 sdl_config="sdl-config"
888 sdl=no
889 sdl_static=no
890
11d9f695
FB
891cat > $TMPC << EOF
892#include <SDL.h>
893#undef main /* We don't want SDL to override our main() */
894int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
895EOF
8c7f7574 896 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` > $TMPSDLLOG 2>&1 ; then
cd01b4a3
AL
897 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
898 if test "$_sdlversion" -lt 121 ; then
899 sdl_too_old=yes
900 else
901 if test "$cocoa" = "no" ; then
902 sdl=yes
069b0bda 903 fi
cd01b4a3 904 fi
11d9f695 905
cd01b4a3
AL
906 # static link with sdl ?
907 if test "$sdl" = "yes" ; then
908 aa="no"
909 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
910 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
911 if [ "$aa" = "yes" ] ; then
912 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
913 fi
914
8c7f7574 915 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then
cd01b4a3
AL
916 sdl_static=yes
917 fi
918 fi # static link
919 fi # sdl compile test
fd677642 920else
069b0bda
TS
921 # Make sure to disable cocoa if sdl was set
922 if test "$sdl" = "yes" ; then
923 cocoa="no"
c2de5c91 924 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
069b0bda 925 fi
a6e022ad 926fi # -z $sdl
11d9f695 927
5368a422
AL
928if test "$sdl" = "yes" ; then
929cat > $TMPC <<EOF
930#include <SDL.h>
931#if defined(SDL_VIDEO_DRIVER_X11)
932#include <X11/XKBlib.h>
933#else
934#error No x11 support
935#endif
936int main(void) { return 0; }
937EOF
938 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` > /dev/null 2>&1 ; then
939 sdl_x11="yes"
940 fi
941fi
942
8d5d2d4c
TS
943##########################################
944# VNC TLS detection
945if test "$vnc_tls" = "yes" ; then
ae6b5e5a
AL
946cat > $TMPC <<EOF
947#include <gnutls/gnutls.h>
948int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
949EOF
950 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
951 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
952 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
8c7f7574 953 $vnc_tls_libs > /dev/null 2> /dev/null ; then
ae6b5e5a
AL
954 :
955 else
956 vnc_tls="no"
957 fi
8d5d2d4c
TS
958fi
959
2f9606b3
AL
960##########################################
961# VNC SASL detection
962if test "$vnc_sasl" = "yes" ; then
963cat > $TMPC <<EOF
964#include <sasl/sasl.h>
965#include <stdio.h>
966int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
967EOF
968 # Assuming Cyrus-SASL installed in /usr prefix
969 vnc_sasl_cflags=""
970 vnc_sasl_libs="-lsasl2"
971 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \
918a608b 972 $vnc_sasl_libs 2> /dev/null > /dev/null ; then
2f9606b3
AL
973 :
974 else
975 vnc_sasl="no"
976 fi
977fi
978
76655d6d
AL
979##########################################
980# fnmatch() probe, used for ACL routines
981fnmatch="no"
982cat > $TMPC << EOF
983#include <fnmatch.h>
984int main(void)
985{
986 fnmatch("foo", "foo", 0);
987 return 0;
988}
989EOF
990if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
991 fnmatch="yes"
992fi
993
8a16d273
TS
994##########################################
995# vde libraries probe
996if test "$vde" = "yes" ; then
997 cat > $TMPC << EOF
998#include <libvdeplug.h>
4a7f0e06
PB
999int main(void)
1000{
1001 struct vde_open_args a = {0, 0, 0};
1002 vde_open("", "", &a);
1003 return 0;
1004}
8a16d273 1005EOF
8c7f7574 1006 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
8a16d273
TS
1007 :
1008 else
e0e6c8c0 1009 vde="no"
8a16d273
TS
1010 fi
1011fi
1012
8f28f3fb 1013##########################################
c2de5c91 1014# Sound support libraries probe
8f28f3fb 1015
c2de5c91 1016audio_drv_probe()
1017{
1018 drv=$1
1019 hdr=$2
1020 lib=$3
1021 exp=$4
1022 cfl=$5
1023 cat > $TMPC << EOF
1024#include <$hdr>
1025int main(void) { $exp }
8f28f3fb 1026EOF
8c7f7574 1027 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
c2de5c91 1028 :
1029 else
1030 echo
1031 echo "Error: $drv check failed"
1032 echo "Make sure to have the $drv libs and headers installed."
1033 echo
1034 exit 1
1035 fi
1036}
1037
2fa7d3bf 1038audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
c2de5c91 1039for drv in $audio_drv_list; do
1040 case $drv in
1041 alsa)
1042 audio_drv_probe $drv alsa/asoundlib.h -lasound \
1043 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
1044 ;;
1045
1046 fmod)
1047 if test -z $fmod_lib || test -z $fmod_inc; then
1048 echo
1049 echo "Error: You must specify path to FMOD library and headers"
1050 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1051 echo
1052 exit 1
1053 fi
1054 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1055 ;;
1056
1057 esd)
1058 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
1059 ;;
b8e59f18 1060
1061 pa)
1062 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
1063 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
1064 ;;
1065
2f6a1ab0
BS
1066 oss|sdl|core|wav|dsound)
1067 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1068 ;;
1069
e4c63a6a 1070 *)
1c9b2a52 1071 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
e4c63a6a 1072 echo
1073 echo "Error: Unknown driver '$drv' selected"
1074 echo "Possible drivers are: $audio_possible_drivers"
1075 echo
1076 exit 1
1077 }
1078 ;;
c2de5c91 1079 esac
1080done
8f28f3fb 1081
2e4d9fb1
AJ
1082##########################################
1083# BrlAPI probe
1084
1085if test -z "$brlapi" ; then
1086 brlapi=no
1087cat > $TMPC << EOF
1088#include <brlapi.h>
1089int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1090EOF
178baee6 1091 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
2e4d9fb1
AJ
1092 brlapi=yes
1093 fi # brlapi compile test
1094fi # -z $brlapi
1095
4d3b6f6e
AZ
1096##########################################
1097# curses probe
1098
1099if test "$curses" = "yes" ; then
1100 curses=no
ab4e5602 1101 ncurses=no
4d3b6f6e
AZ
1102 cat > $TMPC << EOF
1103#include <curses.h>
5a8ff3aa
BS
1104#ifdef __OpenBSD__
1105#define resize_term resizeterm
1106#endif
1107int main(void) { resize_term(0, 0); return curses_version(); }
4d3b6f6e 1108EOF
ab4e5602
JK
1109 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lncurses > /dev/null 2> /dev/null ; then
1110 curses=yes
1111 ncurses=yes
1112 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
4d3b6f6e
AZ
1113 curses=yes
1114 fi
1115fi # test "$curses"
1116
769ce76d
AG
1117##########################################
1118# curl probe
1119
1120if test "$curl" = "yes" ; then
1121 curl=no
1122 cat > $TMPC << EOF
1123#include <curl/curl.h>
1124int main(void) { return curl_easy_init(); }
1125EOF
52368552 1126 curl_libs=`curl-config --libs 2>/dev/null`
769ce76d
AG
1127 if $cc $ARCH_CFLAGS $curl_libs -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1128 curl=yes
1129 fi
1130fi # test "$curl"
1131
fb599c9a
AZ
1132##########################################
1133# bluez support probe
1134if test "$bluez" = "yes" ; then
efcfd0c5 1135 `pkg-config bluez 2> /dev/null` || bluez="no"
fb599c9a
AZ
1136fi
1137if test "$bluez" = "yes" ; then
e820e3f4
AZ
1138 cat > $TMPC << EOF
1139#include <bluetooth/bluetooth.h>
1140int main(void) { return bt_error(0); }
1141EOF
efcfd0c5
BS
1142 bluez_cflags=`pkg-config --cflags bluez 2> /dev/null`
1143 bluez_libs=`pkg-config --libs bluez 2> /dev/null`
17e1592d 1144 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
8c7f7574 1145 $bluez_libs > /dev/null 2> /dev/null ; then
e820e3f4
AZ
1146 :
1147 else
1148 bluez="no"
1149 fi
fb599c9a
AZ
1150fi
1151
7ba1e619
AL
1152##########################################
1153# kvm probe
1154if test "$kvm" = "yes" ; then
1155 cat > $TMPC <<EOF
1156#include <linux/kvm.h>
9fd8d8d7 1157#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
7ba1e619
AL
1158#error Invalid KVM version
1159#endif
9fd8d8d7
AL
1160#if !defined(KVM_CAP_USER_MEMORY)
1161#error Missing KVM capability KVM_CAP_USER_MEMORY
1162#endif
1163#if !defined(KVM_CAP_SET_TSS_ADDR)
1164#error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1165#endif
1166#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1167#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1168#endif
7ba1e619
AL
1169int main(void) { return 0; }
1170EOF
eac30262
AL
1171 if test "$kerneldir" != "" ; then
1172 kvm_cflags=-I"$kerneldir"/include
8444eb6e
AL
1173 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1174 -a -d "$kerneldir/arch/x86/include" ; then
1175 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
406b430d
AL
1176 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1177 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
8444eb6e
AL
1178 elif test -d "$kerneldir/arch/$cpu/include" ; then
1179 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1180 fi
eac30262
AL
1181 else
1182 kvm_cflags=""
1183 fi
7ba1e619 1184 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
8c7f7574 1185 > /dev/null 2>/dev/null ; then
7ba1e619
AL
1186 :
1187 else
9fd8d8d7
AL
1188 kvm="no";
1189 if [ -x "`which awk 2>/dev/null`" ] && \
1190 [ -x "`which grep 2>/dev/null`" ]; then
e4f5100c 1191 kvmerr=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
9fd8d8d7
AL
1192 | grep "error: " \
1193 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1194 if test "$kvmerr" != "" ; then
168ccc11
JK
1195 kvm="no - (${kvmerr})\n\
1196 NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \
1197recent kvm-kmod from http://sourceforge.net/projects/kvm."
9fd8d8d7
AL
1198 fi
1199 fi
7ba1e619
AL
1200 fi
1201fi
1202
414f0dab 1203##########################################
e5d355d1 1204# pthread probe
de65fe0f 1205PTHREADLIBS_LIST="-lpthread -lpthreadGC2"
e5d355d1 1206PTHREADLIBS=""
3c529d93 1207
e5d355d1
AL
1208if test "$pthread" = yes; then
1209 pthread=no
1210cat > $TMPC << EOF
3c529d93 1211#include <pthread.h>
de65fe0f 1212int main(void) { pthread_create(0,0,0,0); return 0; }
414f0dab 1213EOF
de65fe0f
SH
1214 for pthread_lib in $PTHREADLIBS_LIST; do
1215 if $cc $ARCH_CFLAGS -o $TMPE $TMPC $pthread_lib 2> /dev/null > /dev/null ; then
1216 pthread=yes
1217 PTHREADLIBS="$pthread_lib"
1218 break
1219 fi
1220 done
414f0dab
BS
1221fi
1222
e5d355d1
AL
1223if test "$pthread" = no; then
1224 aio=no
1225 io_thread=no
1226fi
1227
bf9298b9
AL
1228##########################################
1229# iovec probe
1230cat > $TMPC <<EOF
db34f0b3 1231#include <sys/types.h>
bf9298b9 1232#include <sys/uio.h>
db34f0b3 1233#include <unistd.h>
bf9298b9
AL
1234int main(void) { struct iovec iov; return 0; }
1235EOF
1236iovec=no
8c7f7574 1237if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
bf9298b9
AL
1238 iovec=yes
1239fi
1240
ceb42de8
AL
1241##########################################
1242# preadv probe
1243cat > $TMPC <<EOF
1244#include <sys/types.h>
1245#include <sys/uio.h>
1246#include <unistd.h>
1247int main(void) { preadv; }
1248EOF
1249preadv=no
1250if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1251 preadv=yes
1252fi
1253
f652e6af
AJ
1254##########################################
1255# fdt probe
1256if test "$fdt" = "yes" ; then
1257 fdt=no
1258 cat > $TMPC << EOF
1259int main(void) { return 0; }
1260EOF
918a608b 1261 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null > /dev/null ; then
f652e6af
AJ
1262 fdt=yes
1263 fi
1264fi
1265
3b3f24ad
AJ
1266#
1267# Check for xxxat() functions when we are building linux-user
1268# emulator. This is done because older glibc versions don't
1269# have syscall stubs for these implemented.
1270#
1271atfile=no
67ba57f6 1272cat > $TMPC << EOF
3b3f24ad
AJ
1273#define _ATFILE_SOURCE
1274#include <sys/types.h>
1275#include <fcntl.h>
1276#include <unistd.h>
1277
1278int
1279main(void)
1280{
1281 /* try to unlink nonexisting file */
1282 return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1283}
1284EOF
67ba57f6
RV
1285if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null > /dev/null ; then
1286 atfile=yes
3b3f24ad
AJ
1287fi
1288
39386ac7 1289# Check for inotify functions when we are building linux-user
3b3f24ad
AJ
1290# emulator. This is done because older glibc versions don't
1291# have syscall stubs for these implemented. In that case we
1292# don't provide them even if kernel supports them.
1293#
1294inotify=no
67ba57f6 1295cat > $TMPC << EOF
3b3f24ad
AJ
1296#include <sys/inotify.h>
1297
1298int
1299main(void)
1300{
1301 /* try to start inotify */
8690e420 1302 return inotify_init();
3b3f24ad
AJ
1303}
1304EOF
67ba57f6
RV
1305if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null > /dev/null ; then
1306 inotify=yes
3b3f24ad
AJ
1307fi
1308
ebc996f3
RV
1309# check if utimensat and futimens are supported
1310utimens=no
1311cat > $TMPC << EOF
1312#define _ATFILE_SOURCE
1313#define _GNU_SOURCE
1314#include <stddef.h>
1315#include <fcntl.h>
1316
1317int main(void)
1318{
1319 utimensat(AT_FDCWD, "foo", NULL, 0);
1320 futimens(0, NULL);
1321 return 0;
1322}
1323EOF
1324if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1325 utimens=yes
1326fi
1327
099d6b0f
RV
1328# check if pipe2 is there
1329pipe2=no
1330cat > $TMPC << EOF
1331#define _GNU_SOURCE
1332#include <unistd.h>
1333#include <fcntl.h>
1334
1335int main(void)
1336{
1337 int pipefd[2];
1338 pipe2(pipefd, O_CLOEXEC);
1339 return 0;
1340}
1341EOF
1342if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1343 pipe2=yes
1344fi
1345
3ce34dfb 1346# check if tee/splice is there. vmsplice was added same time.
1347splice=no
1348cat > $TMPC << EOF
1349#define _GNU_SOURCE
1350#include <unistd.h>
1351#include <fcntl.h>
1352#include <limits.h>
1353
1354int main(void)
1355{
1356 int len, fd;
1357 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
1358 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
1359 return 0;
1360}
1361EOF
1362if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1363 splice=yes
1364fi
1365
cc8ae6de 1366# Check if tools are available to build documentation.
70ec5dc0
AL
1367if test "$build_docs" = "yes" -a \( ! -x "`which texi2html 2>/dev/null`" -o ! -x "`which pod2man 2>/dev/null`" \) ; then
1368 build_docs="no"
cc8ae6de
PB
1369fi
1370
da93a1fd
AL
1371##########################################
1372# Do we need librt
e5d355d1 1373CLOCKLIBS=""
da93a1fd
AL
1374cat > $TMPC <<EOF
1375#include <signal.h>
1376#include <time.h>
1377int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1378EOF
1379
1380rt=no
8c7f7574 1381if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
da93a1fd 1382 :
8c7f7574 1383elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
da93a1fd
AL
1384 rt=yes
1385fi
1386
1387if test "$rt" = "yes" ; then
e5d355d1 1388 CLOCKLIBS="-lrt"
da93a1fd
AL
1389fi
1390
11d9f695 1391if test "$mingw32" = "yes" ; then
308c3593 1392 if test -z "$prefix" ; then
17e90973 1393 prefix="c:\\\\Program Files\\\\Qemu"
308c3593
PB
1394 fi
1395 mansuffix=""
1396 datasuffix=""
1397 docsuffix=""
1398 binsuffix=""
11d9f695 1399else
308c3593
PB
1400 if test -z "$prefix" ; then
1401 prefix="/usr/local"
1402 fi
1403 mansuffix="/share/man"
1404 datasuffix="/share/qemu"
1405 docsuffix="/share/doc/qemu"
1406 binsuffix="/bin"
11d9f695 1407fi
5a67135a 1408
43ce4dfe 1409echo "Install prefix $prefix"
308c3593
PB
1410echo "BIOS directory $prefix$datasuffix"
1411echo "binary directory $prefix$binsuffix"
11d9f695 1412if test "$mingw32" = "no" ; then
308c3593 1413echo "Manual directory $prefix$mansuffix"
43ce4dfe 1414echo "ELF interp prefix $interp_prefix"
11d9f695 1415fi
5a67135a 1416echo "Source path $source_path"
43ce4dfe 1417echo "C compiler $cc"
83469015 1418echo "Host C compiler $host_cc"
db7287ed 1419echo "ARCH_CFLAGS $ARCH_CFLAGS"
43ce4dfe 1420echo "make $make"
6a882643 1421echo "install $install"
43ce4dfe 1422echo "host CPU $cpu"
de83cd02 1423echo "host big endian $bigendian"
97a847bc 1424echo "target list $target_list"
ade25b0d 1425echo "tcg debug enabled $debug_tcg"
43ce4dfe 1426echo "gprof enabled $gprof"
03b4fe7d 1427echo "sparse enabled $sparse"
1625af87 1428echo "strip binaries $strip_opt"
05c2a3e7 1429echo "profiler $profiler"
43ce4dfe 1430echo "static build $static"
85aa5189 1431echo "-Werror enabled $werror"
5b0753e0
FB
1432if test "$darwin" = "yes" ; then
1433 echo "Cocoa support $cocoa"
1434fi
97a847bc 1435echo "SDL support $sdl"
e4afee97
FB
1436if test "$sdl" != "no" ; then
1437 echo "SDL static link $sdl_static"
1438fi
4d3b6f6e 1439echo "curses support $curses"
769ce76d 1440echo "curl support $curl"
67b915a5 1441echo "mingw32 support $mingw32"
0c58ac1c 1442echo "Audio drivers $audio_drv_list"
1443echo "Extra audio cards $audio_card_list"
8ff9cbf7 1444echo "Mixer emulation $mixemu"
8d5d2d4c
TS
1445echo "VNC TLS support $vnc_tls"
1446if test "$vnc_tls" = "yes" ; then
1447 echo " TLS CFLAGS $vnc_tls_cflags"
1448 echo " TLS LIBS $vnc_tls_libs"
1449fi
2f9606b3
AL
1450echo "VNC SASL support $vnc_sasl"
1451if test "$vnc_sasl" = "yes" ; then
1452 echo " SASL CFLAGS $vnc_sasl_cflags"
1453 echo " SASL LIBS $vnc_sasl_libs"
1454fi
3142255c
BS
1455if test -n "$sparc_cpu"; then
1456 echo "Target Sparc Arch $sparc_cpu"
1457fi
07f4ddbf 1458echo "kqemu support $kqemu"
e37630ca 1459echo "xen support $xen"
2e4d9fb1 1460echo "brlapi support $brlapi"
cc8ae6de 1461echo "Documentation $build_docs"
c5937220
PB
1462[ ! -z "$uname_release" ] && \
1463echo "uname -r $uname_release"
bd0c5661 1464echo "NPTL support $nptl"
379f6698 1465echo "GUEST_BASE $guest_base"
8a16d273 1466echo "vde support $vde"
414f0dab 1467echo "AIO support $aio"
e5d355d1 1468echo "IO thread $io_thread"
77755340 1469echo "Install blobs $blobs"
168ccc11 1470echo -e "KVM support $kvm"
f652e6af 1471echo "fdt support $fdt"
ceb42de8 1472echo "preadv support $preadv"
67b915a5 1473
97a847bc 1474if test $sdl_too_old = "yes"; then
24b55b96 1475echo "-> Your SDL version is too old - please upgrade to have SDL support"
7c1f25b4 1476fi
24b55b96
FB
1477#if test "$sdl_static" = "no"; then
1478# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1479#fi
7d13299d 1480
98ec69ac
JQ
1481config_host_mak="config-host.mak"
1482config_host_h="config-host.h"
1483
1484#echo "Creating $config_host_mak and $config_host_h"
1485
1486test -f $config_host_h && mv $config_host_h ${config_host_h}~
1487
1488echo "# Automatically generated by configure - do not modify" > $config_host_mak
1489printf "# Configured with:" >> $config_host_mak
1490printf " '%s'" "$0" "$@" >> $config_host_mak
1491echo >> $config_host_mak
1492echo "/* Automatically generated by configure - do not modify */" > $config_host_h
1493
1494echo "prefix=$prefix" >> $config_host_mak
1495echo "bindir=\${prefix}$binsuffix" >> $config_host_mak
1496echo "mandir=\${prefix}$mansuffix" >> $config_host_mak
1497echo "datadir=\${prefix}$datasuffix" >> $config_host_mak
1498echo "docdir=\${prefix}$docsuffix" >> $config_host_mak
1499echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_host_h
1500echo "MAKE=$make" >> $config_host_mak
1501echo "INSTALL=$install" >> $config_host_mak
1502echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak
1503echo "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak
1504echo "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak
1505echo "CC=$cc" >> $config_host_mak
1506echo "HOST_CC=$host_cc" >> $config_host_mak
1507echo "AR=$ar" >> $config_host_mak
1508echo "OBJCOPY=$objcopy" >> $config_host_mak
1509echo "LD=$ld" >> $config_host_mak
1510echo "CFLAGS=$CFLAGS $OS_CFLAGS $ARCH_CFLAGS $EXTRA_CFLAGS" >> $config_host_mak
1511echo "LDFLAGS=$LDFLAGS $OS_LDFLAGS $ARCH_LDFLAGS $EXTRA_LDFLAGS" >> $config_host_mak
1512echo "EXESUF=$EXESUF" >> $config_host_mak
1513echo "PTHREADLIBS=$PTHREADLIBS" >> $config_host_mak
1514echo "CLOCKLIBS=$CLOCKLIBS" >> $config_host_mak
2408a527 1515case "$cpu" in
e0da9dd3
JQ
1516 i386|x86_64|alpha|cris|hppa|ia64|m68k|microbaze|mips|mips64|ppc|ppc64|s390|sparc|sparc64)
1517 ARCH=$cpu
2408a527 1518 ;;
e0da9dd3 1519 armv4b|arm4l)
16dbd14f 1520 ARCH=arm
2408a527 1521 ;;
2408a527
AJ
1522 *)
1523 echo "Unsupported CPU = $cpu"
1524 exit 1
1525 ;;
1526esac
98ec69ac 1527echo "ARCH=$ARCH" >> $config_host_mak
16dbd14f 1528arch_name=`echo $ARCH | tr '[:lower:]' '[:upper:]'`
98ec69ac 1529echo "#define HOST_$arch_name 1" >> $config_host_h
16dbd14f 1530
f8393946 1531if test "$debug_tcg" = "yes" ; then
98ec69ac 1532 echo "#define DEBUG_TCG 1" >> $config_host_h
f8393946 1533fi
f3d08ee6 1534if test "$debug" = "yes" ; then
98ec69ac 1535 echo "#define DEBUG_EXEC 1" >> $config_host_h
f3d08ee6 1536fi
03b4fe7d 1537if test "$sparse" = "yes" ; then
98ec69ac
JQ
1538 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak
1539 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak
1540 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
03b4fe7d 1541fi
1625af87 1542if test "$strip_opt" = "yes" ; then
98ec69ac 1543 echo "STRIP_OPT=-s" >> $config_host_mak
1625af87 1544fi
7d13299d 1545if test "$bigendian" = "yes" ; then
98ec69ac
JQ
1546 echo "WORDS_BIGENDIAN=yes" >> $config_host_mak
1547 echo "#define WORDS_BIGENDIAN 1" >> $config_host_h
97a847bc 1548fi
98ec69ac 1549echo "#define HOST_LONG_BITS $hostlongbits" >> $config_host_h
67b915a5 1550if test "$mingw32" = "yes" ; then
98ec69ac
JQ
1551 echo "CONFIG_WIN32=y" >> $config_host_mak
1552 echo "#define CONFIG_WIN32 1" >> $config_host_h
210fa556
PB
1553else
1554 cat > $TMPC << EOF
1555#include <byteswap.h>
1556int main(void) { return bswap_32(0); }
1557EOF
178baee6 1558 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
98ec69ac 1559 echo "#define HAVE_BYTESWAP_H 1" >> $config_host_h
210fa556 1560 fi
1360677c
BS
1561 cat > $TMPC << EOF
1562#include <sys/endian.h>
1563#include <sys/types.h>
1564#include <machine/bswap.h>
1565int main(void) { return bswap32(0); }
1566EOF
178baee6 1567 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
98ec69ac 1568 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_host_h
1360677c 1569 fi
67b915a5 1570fi
128ab2ff
BS
1571
1572if [ "$openbsd" = "yes" ] ; then
98ec69ac 1573 echo "#define ENOTSUP 4096" >> $config_host_h
128ab2ff
BS
1574fi
1575
83fb7adf 1576if test "$darwin" = "yes" ; then
98ec69ac
JQ
1577 echo "CONFIG_DARWIN=y" >> $config_host_mak
1578 echo "#define CONFIG_DARWIN 1" >> $config_host_h
83fb7adf 1579fi
b29fe3ed 1580
1581if test "$aix" = "yes" ; then
98ec69ac
JQ
1582 echo "CONFIG_AIX=y" >> $config_host_mak
1583 echo "#define CONFIG_AIX 1" >> $config_host_h
b29fe3ed 1584fi
1585
ec530c81 1586if test "$solaris" = "yes" ; then
98ec69ac
JQ
1587 echo "CONFIG_SOLARIS=y" >> $config_host_mak
1588 echo "#define HOST_SOLARIS $solarisrev" >> $config_host_h
0475a5ca 1589 if test "$needs_libsunmath" = "yes" ; then
98ec69ac
JQ
1590 echo "NEEDS_LIBSUNMATH=yes" >> $config_host_mak
1591 echo "#define NEEDS_LIBSUNMATH 1" >> $config_host_h
0475a5ca 1592 fi
ec530c81 1593fi
3142255c 1594if test -n "$sparc_cpu"; then
98ec69ac
JQ
1595 echo "CONFIG__sparc_${sparc_cpu}__=y" >> $config_host_mak
1596 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_host_h
3142255c 1597fi
97a847bc 1598if test "$gprof" = "yes" ; then
98ec69ac
JQ
1599 echo "TARGET_GPROF=yes" >> $config_host_mak
1600 echo "#define HAVE_GPROF 1" >> $config_host_h
97a847bc
FB
1601fi
1602if test "$static" = "yes" ; then
98ec69ac
JQ
1603 echo "CONFIG_STATIC=y" >> $config_host_mak
1604 echo "#define CONFIG_STATIC 1" >> $config_host_h
7d13299d 1605fi
05c2a3e7 1606if test $profiler = "yes" ; then
98ec69ac 1607 echo "#define CONFIG_PROFILER 1" >> $config_host_h
05c2a3e7 1608fi
c20709aa 1609if test "$slirp" = "yes" ; then
98ec69ac
JQ
1610 echo "CONFIG_SLIRP=y" >> $config_host_mak
1611 echo "#define CONFIG_SLIRP 1" >> $config_host_h
c20709aa 1612fi
8a16d273 1613if test "$vde" = "yes" ; then
98ec69ac
JQ
1614 echo "CONFIG_VDE=y" >> $config_host_mak
1615 echo "#define CONFIG_VDE 1" >> $config_host_h
1616 echo "VDE_LIBS=-lvdeplug" >> $config_host_mak
8a16d273 1617fi
0c58ac1c 1618for card in $audio_card_list; do
f6e5889e 1619 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
98ec69ac
JQ
1620 echo "$def=y" >> $config_host_mak
1621 echo "#define $def 1" >> $config_host_h
0c58ac1c 1622done
98ec69ac 1623echo "#define AUDIO_DRIVERS \\" >> $config_host_h
0c58ac1c 1624for drv in $audio_drv_list; do
98ec69ac 1625 echo " &${drv}_audio_driver, \\" >>$config_host_h
f6e5889e 1626 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
98ec69ac 1627 echo "$def=y" >> $config_host_mak
923e4521 1628 if test "$drv" = "fmod"; then
98ec69ac
JQ
1629 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_host_mak
1630 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_host_mak
2f6a1ab0 1631 elif test "$drv" = "oss"; then
98ec69ac 1632 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_host_mak
0c58ac1c 1633 fi
1634done
98ec69ac 1635echo "" >>$config_host_h
8ff9cbf7 1636if test "$mixemu" = "yes" ; then
98ec69ac
JQ
1637 echo "CONFIG_MIXEMU=y" >> $config_host_mak
1638 echo "#define CONFIG_MIXEMU 1" >> $config_host_h
8ff9cbf7 1639fi
8d5d2d4c 1640if test "$vnc_tls" = "yes" ; then
98ec69ac
JQ
1641 echo "CONFIG_VNC_TLS=y" >> $config_host_mak
1642 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
1643 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_host_mak
1644 echo "#define CONFIG_VNC_TLS 1" >> $config_host_h
8d5d2d4c 1645fi
2f9606b3 1646if test "$vnc_sasl" = "yes" ; then
98ec69ac
JQ
1647 echo "CONFIG_VNC_SASL=y" >> $config_host_mak
1648 echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
1649 echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_host_mak
1650 echo "#define CONFIG_VNC_SASL 1" >> $config_host_h
2f9606b3 1651fi
76655d6d 1652if test "$fnmatch" = "yes" ; then
98ec69ac 1653 echo "#define HAVE_FNMATCH_H 1" >> $config_host_h
76655d6d 1654fi
b1a550a0 1655qemu_version=`head $source_path/VERSION`
98ec69ac
JQ
1656echo "VERSION=$qemu_version" >>$config_host_mak
1657echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_host_h
97a847bc 1658
98ec69ac 1659echo "#define QEMU_PKGVERSION \"$pkgversion\"" >> $config_host_h
4a19f1ec 1660
98ec69ac 1661echo "SRC_PATH=$source_path" >> $config_host_mak
ad064840 1662if [ "$source_path_used" = "yes" ]; then
98ec69ac 1663 echo "VPATH=$source_path" >> $config_host_mak
ad064840 1664fi
98ec69ac 1665echo "TARGET_DIRS=$target_list" >> $config_host_mak
cc8ae6de 1666if [ "$build_docs" = "yes" ] ; then
98ec69ac 1667 echo "BUILD_DOCS=yes" >> $config_host_mak
cc8ae6de 1668fi
49ecc3fa
FB
1669if test "$static" = "yes"; then
1670 sdl1=$sdl_static
1671else
1672 sdl1=$sdl
1673fi
1674if test "$sdl1" = "yes" ; then
98ec69ac
JQ
1675 echo "#define CONFIG_SDL 1" >> $config_host_h
1676 echo "CONFIG_SDL=y" >> $config_host_mak
49ecc3fa 1677 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
98ec69ac 1678 echo "SDL_LIBS=$sdl_static_libs" >> $config_host_mak
5368a422 1679 elif test "$sdl_x11" = "yes" ; then
98ec69ac 1680 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_host_mak
49ecc3fa 1681 else
98ec69ac 1682 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_host_mak
49ecc3fa
FB
1683 fi
1684 if [ "${aa}" = "yes" ] ; then
98ec69ac 1685 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_host_mak
49ecc3fa 1686 else
98ec69ac 1687 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_host_mak
49ecc3fa
FB
1688 fi
1689fi
1690if test "$cocoa" = "yes" ; then
98ec69ac
JQ
1691 echo "#define CONFIG_COCOA 1" >> $config_host_h
1692 echo "CONFIG_COCOA=y" >> $config_host_mak
4d3b6f6e
AZ
1693fi
1694if test "$curses" = "yes" ; then
98ec69ac
JQ
1695 echo "#define CONFIG_CURSES 1" >> $config_host_h
1696 echo "CONFIG_CURSES=y" >> $config_host_mak
ab4e5602 1697 if test "$ncurses" = "yes" ; then
98ec69ac 1698 echo "CURSES_LIBS=-lncurses" >> $config_host_mak
ab4e5602 1699 else
98ec69ac 1700 echo "CURSES_LIBS=-lcurses" >> $config_host_mak
ab4e5602 1701 fi
49ecc3fa 1702fi
3b3f24ad 1703if test "$atfile" = "yes" ; then
98ec69ac 1704 echo "#define CONFIG_ATFILE 1" >> $config_host_h
3b3f24ad 1705fi
ebc996f3 1706if test "$utimens" = "yes" ; then
98ec69ac 1707 echo "#define CONFIG_UTIMENSAT 1" >> $config_host_h
ebc996f3 1708fi
099d6b0f 1709if test "$pipe2" = "yes" ; then
98ec69ac 1710 echo "#define CONFIG_PIPE2 1" >> $config_host_h
099d6b0f 1711fi
3ce34dfb 1712if test "$splice" = "yes" ; then
98ec69ac 1713 echo "#define CONFIG_SPLICE 1" >> $config_host_h
3ce34dfb 1714fi
3b3f24ad 1715if test "$inotify" = "yes" ; then
98ec69ac 1716 echo "#define CONFIG_INOTIFY 1" >> $config_host_h
3b3f24ad 1717fi
769ce76d 1718if test "$curl" = "yes" ; then
98ec69ac
JQ
1719 echo "CONFIG_CURL=y" >> $config_host_mak
1720 echo "CURL_LIBS=$curl_libs" >> $config_host_mak
1721 echo "#define CONFIG_CURL 1" >> $config_host_h
769ce76d 1722fi
2e4d9fb1 1723if test "$brlapi" = "yes" ; then
98ec69ac
JQ
1724 echo "CONFIG_BRLAPI=y" >> $config_host_mak
1725 echo "#define CONFIG_BRLAPI 1" >> $config_host_h
1726 echo "BRLAPI_LIBS=-lbrlapi" >> $config_host_mak
2e4d9fb1 1727fi
fb599c9a 1728if test "$bluez" = "yes" ; then
98ec69ac
JQ
1729 echo "CONFIG_BLUEZ=y" >> $config_host_mak
1730 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
1731 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_host_mak
1732 echo "#define CONFIG_BLUEZ 1" >> $config_host_h
fb599c9a 1733fi
e37630ca 1734if test "$xen" = "yes" ; then
98ec69ac 1735 echo "XEN_LIBS=-lxenstore -lxenctrl -lxenguest" >> $config_host_mak
e37630ca 1736fi
414f0dab 1737if test "$aio" = "yes" ; then
98ec69ac
JQ
1738 echo "#define CONFIG_AIO 1" >> $config_host_h
1739 echo "CONFIG_AIO=y" >> $config_host_mak
414f0dab 1740fi
e5d355d1 1741if test "$io_thread" = "yes" ; then
98ec69ac
JQ
1742 echo "CONFIG_IOTHREAD=y" >> $config_host_mak
1743 echo "#define CONFIG_IOTHREAD 1" >> $config_host_h
e5d355d1 1744fi
77755340 1745if test "$blobs" = "yes" ; then
98ec69ac 1746 echo "INSTALL_BLOBS=yes" >> $config_host_mak
77755340 1747fi
bf9298b9 1748if test "$iovec" = "yes" ; then
98ec69ac 1749 echo "#define HAVE_IOVEC 1" >> $config_host_h
bf9298b9 1750fi
ceb42de8 1751if test "$preadv" = "yes" ; then
98ec69ac 1752 echo "#define HAVE_PREADV 1" >> $config_host_h
ceb42de8 1753fi
f652e6af 1754if test "$fdt" = "yes" ; then
98ec69ac
JQ
1755 echo "#define HAVE_FDT 1" >> $config_host_h
1756 echo "FDT_LIBS=-lfdt" >> $config_host_mak
f652e6af 1757fi
97a847bc 1758
83fb7adf 1759# XXX: suppress that
7d3505c5 1760if [ "$bsd" = "yes" ] ; then
98ec69ac
JQ
1761 echo "#define O_LARGEFILE 0" >> $config_host_h
1762 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_host_h
1763 echo "#define HOST_BSD 1" >> $config_host_h
7d3505c5
FB
1764fi
1765
98ec69ac 1766echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_host_h
c5937220 1767
68063649
BS
1768# USB host support
1769case "$usb" in
1770linux)
98ec69ac 1771 echo "HOST_USB=linux" >> $config_host_mak
68063649
BS
1772;;
1773bsd)
98ec69ac 1774 echo "HOST_USB=bsd" >> $config_host_mak
68063649
BS
1775;;
1776*)
98ec69ac 1777 echo "HOST_USB=stub" >> $config_host_mak
68063649
BS
1778;;
1779esac
1780
9abbdbfe
AL
1781# Determine what linker flags to use to force archive inclusion
1782check_linker_flags()
1783{
08b9d66b
AL
1784 w2=
1785 if test "$2" ; then
1786 w2=-Wl,$2
1787 fi
1788 $cc $ARCH_CFLAGS -o $TMPE $OS_CFLAGS $TMPC -Wl,$1 ${w2} >/dev/null 2>/dev/null
9abbdbfe
AL
1789}
1790
1791cat > $TMPC << EOF
1792int main(void) { }
1793EOF
1794if check_linker_flags --whole-archive --no-whole-archive ; then
1795 # GNU ld
98ec69ac
JQ
1796 echo "ARLIBS_BEGIN=-Wl,--whole-archive" >> $config_host_mak
1797 echo "ARLIBS_END=-Wl,--no-whole-archive" >> $config_host_mak
9abbdbfe
AL
1798elif check_linker_flags -z,allextract -z,defaultextract ; then
1799 # Solaris ld
98ec69ac
JQ
1800 echo "ARLIBS_BEGIN=-Wl,-z,allextract" >> $config_host_mak
1801 echo "ARLIBS_END=-Wl,-z,defaultextract" >> $config_host_mak
08b9d66b
AL
1802elif check_linker_flags -all_load ; then
1803 # Mac OS X
98ec69ac
JQ
1804 echo "ARLIBS_BEGIN=-all_load" >> $config_host_mak
1805 echo "ARLIBS_END=" >> $config_host_mak
9abbdbfe
AL
1806else
1807 echo "Error: your linker does not support --whole-archive or -z."
1808 echo "Please report to qemu-devel@nongnu.org"
1809 exit 1
1810fi
1811
2567f579
BS
1812if test "$xen" = "yes" ;
1813 then
98ec69ac 1814 echo "CONFIG_XEN=y" >> $config_host_mak
2567f579
BS
1815fi
1816
c39e3338
PB
1817tools=
1818if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
3dd1f8ef 1819 tools="qemu-img\$(EXESUF) $tools"
7a5ca864 1820 if [ "$linux" = "yes" ] ; then
3dd1f8ef 1821 tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
7a5ca864 1822 fi
c39e3338 1823fi
98ec69ac 1824echo "TOOLS=$tools" >> $config_host_mak
c39e3338 1825
253d0942
AG
1826roms=
1827if test "$cpu" = "i386" -o "$cpu" = "x86_64" ; then
1828 roms="pc-bios/optionrom"
1829fi
98ec69ac 1830echo "ROMS=$roms" >> $config_host_mak
253d0942 1831
98ec69ac
JQ
1832if test -f ${config_host_h}~ ; then
1833 if cmp -s $config_host_h ${config_host_h}~ ; then
1834 mv ${config_host_h}~ $config_host_h
370ab986 1835 else
98ec69ac 1836 rm ${config_host_h}~
370ab986
PB
1837 fi
1838fi
1839
1d14ffa9 1840for target in $target_list; do
97a847bc
FB
1841target_dir="$target"
1842config_mak=$target_dir/config.mak
1843config_h=$target_dir/config.h
600309b6 1844target_arch2=`echo $target | cut -d '-' -f 1`
97a847bc 1845target_bigendian="no"
ea2d6a39
JQ
1846case "$target_arch2" in
1847 armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|sh4eb|sparc|sparc64|sparc32plus)
1848 target_bigendian=yes
1849 ;;
1850esac
97a847bc 1851target_softmmu="no"
997344f3 1852target_user_only="no"
831b7825 1853target_linux_user="no"
831b7825 1854target_darwin_user="no"
84778508 1855target_bsd_user="no"
9e407a85 1856case "$target" in
600309b6 1857 ${target_arch2}-softmmu)
9e407a85
PB
1858 target_softmmu="yes"
1859 ;;
600309b6 1860 ${target_arch2}-linux-user)
9e407a85
PB
1861 target_user_only="yes"
1862 target_linux_user="yes"
1863 ;;
600309b6 1864 ${target_arch2}-darwin-user)
9e407a85
PB
1865 target_user_only="yes"
1866 target_darwin_user="yes"
1867 ;;
600309b6 1868 ${target_arch2}-bsd-user)
84778508
BS
1869 target_user_only="yes"
1870 target_bsd_user="yes"
1871 ;;
9e407a85
PB
1872 *)
1873 echo "ERROR: Target '$target' not recognised"
1874 exit 1
1875 ;;
1876esac
831b7825 1877
7c1f25b4 1878#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
97a847bc 1879
15d9ca0f
TS
1880test -f $config_h && mv $config_h ${config_h}~
1881
97a847bc 1882mkdir -p $target_dir
158142c2 1883mkdir -p $target_dir/fpu
57fec1fe 1884mkdir -p $target_dir/tcg
84778508 1885if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
69de927c
FB
1886 mkdir -p $target_dir/nwfpe
1887fi
1888
ec530c81
FB
1889#
1890# don't use ln -sf as not all "ln -sf" over write the file/link
1891#
1892rm -f $target_dir/Makefile
1893ln -s $source_path/Makefile.target $target_dir/Makefile
1894
97a847bc
FB
1895
1896echo "# Automatically generated by configure - do not modify" > $config_mak
de83cd02 1897
97a847bc 1898echo "include ../config-host.mak" >> $config_mak
1e43adfc 1899
e5fe0c52 1900bflt="no"
cb33da57 1901elfload32="no"
bd0c5661 1902target_nptl="no"
600309b6 1903interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
42bc608b 1904echo "CONFIG_QEMU_PREFIX=\"$interp_prefix1\"" >> $config_mak
56aebc89 1905gdb_xml_files=""
7ba1e619 1906
938b1edd 1907TARGET_ARCH="$target_arch2"
6acff7da 1908TARGET_BASE_ARCH=""
e6e91b9c 1909TARGET_ABI_DIR=""
e73aae67 1910
600309b6 1911case "$target_arch2" in
2408a527 1912 i386)
1ad2134f 1913 target_phys_bits=32
2408a527
AJ
1914 ;;
1915 x86_64)
6acff7da 1916 TARGET_BASE_ARCH=i386
1ad2134f 1917 target_phys_bits=64
2408a527
AJ
1918 ;;
1919 alpha)
1ad2134f 1920 target_phys_bits=64
2408a527
AJ
1921 ;;
1922 arm|armeb)
b498c8a0 1923 TARGET_ARCH=arm
2408a527 1924 bflt="yes"
bd0c5661 1925 target_nptl="yes"
56aebc89 1926 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1ad2134f 1927 target_phys_bits=32
2408a527
AJ
1928 ;;
1929 cris)
253bd7f8 1930 target_nptl="yes"
1ad2134f 1931 target_phys_bits=32
2408a527
AJ
1932 ;;
1933 m68k)
2408a527 1934 bflt="yes"
56aebc89 1935 gdb_xml_files="cf-core.xml cf-fp.xml"
1ad2134f 1936 target_phys_bits=32
2408a527 1937 ;;
72b675ca 1938 microblaze)
72b675ca
EI
1939 bflt="yes"
1940 target_nptl="yes"
1941 target_phys_bits=32
1942 ;;
0adcffb1 1943 mips|mipsel)
b498c8a0 1944 TARGET_ARCH=mips
42bc608b 1945 echo "TARGET_ABI_MIPSO32=y" >> $config_mak
f04dc72f 1946 target_nptl="yes"
1ad2134f 1947 target_phys_bits=64
2408a527
AJ
1948 ;;
1949 mipsn32|mipsn32el)
b498c8a0 1950 TARGET_ARCH=mipsn32
6acff7da 1951 TARGET_BASE_ARCH=mips
42bc608b 1952 echo "TARGET_ABI_MIPSN32=y" >> $config_mak
1ad2134f 1953 target_phys_bits=64
2408a527
AJ
1954 ;;
1955 mips64|mips64el)
b498c8a0 1956 TARGET_ARCH=mips64
6acff7da 1957 TARGET_BASE_ARCH=mips
42bc608b 1958 echo "TARGET_ABI_MIPSN64=y" >> $config_mak
1ad2134f 1959 target_phys_bits=64
2408a527
AJ
1960 ;;
1961 ppc)
c8b3532d 1962 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 1963 target_phys_bits=32
2408a527
AJ
1964 ;;
1965 ppcemb)
6acff7da 1966 TARGET_BASE_ARCH=ppc
e6e91b9c 1967 TARGET_ABI_DIR=ppc
c8b3532d 1968 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 1969 target_phys_bits=64
2408a527
AJ
1970 ;;
1971 ppc64)
6acff7da 1972 TARGET_BASE_ARCH=ppc
e6e91b9c 1973 TARGET_ABI_DIR=ppc
c8b3532d 1974 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 1975 target_phys_bits=64
2408a527
AJ
1976 ;;
1977 ppc64abi32)
b498c8a0 1978 TARGET_ARCH=ppc64
6acff7da 1979 TARGET_BASE_ARCH=ppc
e6e91b9c 1980 TARGET_ABI_DIR=ppc
42bc608b 1981 echo "TARGET_ABI32=y" >> $config_mak
c8b3532d 1982 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 1983 target_phys_bits=64
2408a527
AJ
1984 ;;
1985 sh4|sh4eb)
b498c8a0 1986 TARGET_ARCH=sh4
2408a527 1987 bflt="yes"
0b6d3ae0 1988 target_nptl="yes"
1ad2134f 1989 target_phys_bits=32
2408a527
AJ
1990 ;;
1991 sparc)
1ad2134f 1992 target_phys_bits=64
2408a527
AJ
1993 ;;
1994 sparc64)
6acff7da 1995 TARGET_BASE_ARCH=sparc
2408a527 1996 elfload32="yes"
1ad2134f 1997 target_phys_bits=64
2408a527
AJ
1998 ;;
1999 sparc32plus)
b498c8a0 2000 TARGET_ARCH=sparc64
6acff7da 2001 TARGET_BASE_ARCH=sparc
e6e91b9c 2002 TARGET_ABI_DIR=sparc
42bc608b 2003 echo "TARGET_ABI32=y" >> $config_mak
1ad2134f 2004 target_phys_bits=64
2408a527
AJ
2005 ;;
2006 *)
2007 echo "Unsupported target CPU"
2008 exit 1
2009 ;;
2010esac
b498c8a0 2011echo "TARGET_ARCH=$TARGET_ARCH" >> $config_mak
0adcffb1 2012echo "TARGET_ARCH2=$target_arch2" >> $config_mak
42bc608b 2013# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
6acff7da
JQ
2014if [ "$TARGET_BASE_ARCH" = "" ]; then
2015 TARGET_BASE_ARCH=$TARGET_ARCH
6acff7da
JQ
2016fi
2017echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_mak
e6e91b9c
JQ
2018if [ "$TARGET_ABI_DIR" = "" ]; then
2019 TARGET_ABI_DIR=$TARGET_ARCH
2020fi
2021echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_mak
1ad2134f
PB
2022if [ $target_phys_bits -lt $hostlongbits ] ; then
2023 target_phys_bits=$hostlongbits
2024fi
1b0c87fc
JQ
2025case "$target_arch2" in
2026 i386|x86_64)
2027 if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
2028 echo "CONFIG_XEN=y" >> $config_mak
1b0c87fc 2029 fi
0d46b7ed
JQ
2030 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
2031 then
2032 echo "CONFIG_KQEMU=y" >> $config_mak
0d46b7ed 2033 fi
1b0c87fc 2034esac
c59249f9
JQ
2035case "$target_arch2" in
2036 i386|x86_64|ppcemb)
2037 # Make sure the target and host cpus are compatible
2038 if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
2039 \( "$target_arch2" = "$cpu" -o \
2040 \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
2041 \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \
2042 \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then
2043 echo "CONFIG_KVM=y" >> $config_mak
2044 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
c59249f9
JQ
2045 fi
2046esac
1ad2134f 2047echo "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak
42bc608b 2048echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_mak
1ad2134f 2049echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
de83cd02 2050if test "$target_bigendian" = "yes" ; then
42bc608b 2051 echo "TARGET_WORDS_BIGENDIAN=y" >> $config_mak
de83cd02 2052fi
97a847bc 2053if test "$target_softmmu" = "yes" ; then
e34af2ce 2054 echo "CONFIG_SOFTMMU=y" >> $config_mak
43ce4dfe 2055fi
997344f3 2056if test "$target_user_only" = "yes" ; then
e34af2ce 2057 echo "CONFIG_USER_ONLY=y" >> $config_mak
997344f3 2058fi
831b7825 2059if test "$target_linux_user" = "yes" ; then
e34af2ce 2060 echo "CONFIG_LINUX_USER=y" >> $config_mak
831b7825
TS
2061fi
2062if test "$target_darwin_user" = "yes" ; then
e34af2ce 2063 echo "CONFIG_DARWIN_USER=y" >> $config_mak
831b7825 2064fi
56aebc89
PB
2065list=""
2066if test ! -z "$gdb_xml_files" ; then
2067 for x in $gdb_xml_files; do
2068 list="$list $source_path/gdb-xml/$x"
2069 done
2070fi
2071echo "TARGET_XML_FILES=$list" >> $config_mak
97a847bc 2072
f57975fb
JQ
2073case "$target_arch2" in
2074 arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|sparc|sparc64|sparc32plus)
2075 echo "CONFIG_SOFTFLOAT=y" >> $config_mak
f57975fb
JQ
2076 ;;
2077esac
2078
e5fe0c52 2079if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
e34af2ce 2080 echo "TARGET_HAS_BFLT=y" >> $config_mak
e5fe0c52 2081fi
bd0c5661
PB
2082if test "$target_user_only" = "yes" \
2083 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
42bc608b 2084 echo "USE_NPTL=y" >> $config_mak
bd0c5661 2085fi
cb33da57
BS
2086# 32 bit ELF loader in addition to native 64 bit loader?
2087if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
e34af2ce 2088 echo "TARGET_HAS_ELFLOAD32=y" >> $config_mak
cb33da57 2089fi
379f6698
PB
2090if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
2091 echo "CONFIG_USE_GUEST_BASE=y" >> $config_mak
2092fi
84778508 2093if test "$target_bsd_user" = "yes" ; then
e34af2ce 2094 echo "CONFIG_BSD_USER=y" >> $config_mak
84778508 2095fi
5b0753e0 2096
42bc608b
JQ
2097$source_path/create_config < $config_mak > $config_h
2098
15d9ca0f
TS
2099test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
2100
97a847bc 2101done # for target in $targets
7d13299d
FB
2102
2103# build tree in object directory if source path is different from current one
2104if test "$source_path_used" = "yes" ; then
253d0942 2105 DIRS="tests tests/cris slirp audio block pc-bios/optionrom"
7d13299d 2106 FILES="Makefile tests/Makefile"
e7daa605 2107 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
e1ffb0f1 2108 FILES="$FILES tests/test-mmap.c"
253d0942 2109 FILES="$FILES pc-bios/optionrom/Makefile"
7d13299d
FB
2110 for dir in $DIRS ; do
2111 mkdir -p $dir
2112 done
ec530c81 2113 # remove the link and recreate it, as not all "ln -sf" overwrite the link
7d13299d 2114 for f in $FILES ; do
ec530c81
FB
2115 rm -f $f
2116 ln -s $source_path/$f $f
7d13299d
FB
2117 done
2118fi
1ad2134f
PB
2119
2120for hwlib in 32 64; do
2121 d=libhw$hwlib
2122 mkdir -p $d
2123 rm -f $d/Makefile
2124 ln -s $source_path/Makefile.hw $d/Makefile
2125 echo "HWLIB=libqemuhw$hwlib.a" > $d/config.mak
2126 echo "CPPFLAGS=-DTARGET_PHYS_ADDR_BITS=$hwlib" >> $d/config.mak
2127done