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