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