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