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