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