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