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