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