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