]> git.proxmox.com Git - mirror_qemu.git/blame - configure
Remove all traces of __powerpc__
[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
ac0df51d
AL
91else
92 cpu=`test $(uname -s) = AIX && uname -p || uname -m`
93fi
94
5327cf48 95target_list=""
7d13299d
FB
96case "$cpu" in
97 i386|i486|i586|i686|i86pc|BePC)
97a847bc 98 cpu="i386"
7d13299d 99 ;;
aaa5fa14
AJ
100 x86_64|amd64)
101 cpu="x86_64"
102 ;;
103 alpha)
104 cpu="alpha"
105 ;;
ba68055e 106 armv*b)
808c4954
FB
107 cpu="armv4b"
108 ;;
ba68055e 109 armv*l)
7d13299d
FB
110 cpu="armv4l"
111 ;;
aaa5fa14
AJ
112 cris)
113 cpu="cris"
7d13299d 114 ;;
f54b3f92
AJ
115 parisc|parisc64)
116 cpu="hppa"
117 ;;
aaa5fa14
AJ
118 ia64)
119 cpu="ia64"
120 ;;
121 m68k)
122 cpu="m68k"
7d13299d
FB
123 ;;
124 mips)
125 cpu="mips"
126 ;;
fbe4f65b
TS
127 mips64)
128 cpu="mips64"
129 ;;
b29fe3ed 130 "Power Macintosh"|ppc|ppc64|powerpc)
aaa5fa14 131 cpu="powerpc"
e7daa605 132 ;;
0e7b8a9f 133 s390*)
fb3e5849
FB
134 cpu="s390"
135 ;;
3142255c 136 sparc|sun4[cdmuv])
ae228531
FB
137 cpu="sparc"
138 ;;
139 sparc64)
140 cpu="sparc64"
141 ;;
7d13299d
FB
142 *)
143 cpu="unknown"
144 ;;
145esac
146gprof="no"
03b4fe7d 147sparse="no"
7d13299d 148bigendian="no"
67b915a5
FB
149mingw32="no"
150EXESUF=""
151gdbstub="yes"
443f1376 152slirp="yes"
e0e6c8c0 153vde="yes"
102a52e4
FB
154fmod_lib=""
155fmod_inc=""
2f6a1ab0 156oss_lib=""
8d5d2d4c 157vnc_tls="yes"
b1a550a0 158bsd="no"
5327cf48 159linux="no"
d2c7c9b8 160solaris="no"
c9ec1fe4 161kqemu="no"
05c2a3e7 162profiler="no"
5b0753e0 163cocoa="no"
97ccc689 164check_gfx="yes"
0a8e90f4 165softmmu="yes"
831b7825
TS
166linux_user="no"
167darwin_user="no"
84778508 168bsd_user="no"
cc8ae6de 169build_docs="no"
c5937220 170uname_release=""
4d3b6f6e 171curses="yes"
414f0dab 172aio="yes"
bd0c5661 173nptl="yes"
8ff9cbf7 174mixemu="no"
fb599c9a 175bluez="yes"
7ba1e619 176kvm="yes"
eac30262 177kerneldir=""
b29fe3ed 178aix="no"
77755340 179blobs="yes"
f652e6af 180fdt="yes"
7d13299d
FB
181
182# OS specific
ac0df51d
AL
183if check_define __linux__ ; then
184 targetos="Linux"
185elif check_define _WIN32 ; then
186 targetos='MINGW32'
187else
188 targetos=`uname -s`
189fi
7d13299d 190case $targetos in
c326e0af
FB
191CYGWIN*)
192mingw32="yes"
6f30fa85 193OS_CFLAGS="-mno-cygwin"
db8d7dd1
TS
194if [ "$cpu" = "i386" ] ; then
195 kqemu="yes"
196fi
c2de5c91 197audio_possible_drivers="sdl"
c326e0af 198;;
67b915a5
FB
199MINGW32*)
200mingw32="yes"
db8d7dd1
TS
201if [ "$cpu" = "i386" ] ; then
202 kqemu="yes"
203fi
c2de5c91 204audio_possible_drivers="dsound sdl fmod"
67b915a5 205;;
5c40d2bd 206GNU/kFreeBSD)
0c58ac1c 207audio_drv_list="oss"
f34af52c 208audio_possible_drivers="oss sdl esd pa"
5c40d2bd
TS
209if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
210 kqemu="yes"
211fi
212;;
7d3505c5
FB
213FreeBSD)
214bsd="yes"
0c58ac1c 215audio_drv_list="oss"
f34af52c 216audio_possible_drivers="oss sdl esd pa"
e99f9060 217if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
07f4ddbf
FB
218 kqemu="yes"
219fi
7d3505c5
FB
220;;
221NetBSD)
222bsd="yes"
0c58ac1c 223audio_drv_list="oss"
c2de5c91 224audio_possible_drivers="oss sdl esd"
8ef92a88 225oss_lib="-lossaudio"
7d3505c5
FB
226;;
227OpenBSD)
228bsd="yes"
128ab2ff 229openbsd="yes"
0c58ac1c 230audio_drv_list="oss"
c2de5c91 231audio_possible_drivers="oss sdl esd"
2f6a1ab0 232oss_lib="-lossaudio"
7d3505c5 233;;
83fb7adf
FB
234Darwin)
235bsd="yes"
236darwin="yes"
831b7825 237darwin_user="yes"
fd677642 238cocoa="yes"
0c58ac1c 239audio_drv_list="coreaudio"
c2de5c91 240audio_possible_drivers="coreaudio sdl fmod"
6f30fa85 241OS_CFLAGS="-mdynamic-no-pic"
c2c59c3e 242OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
83fb7adf 243;;
ec530c81 244SunOS)
c2b84fab
TS
245 solaris="yes"
246 make="gmake"
247 install="ginstall"
0475a5ca 248 needs_libsunmath="no"
c2b84fab 249 solarisrev=`uname -r | cut -f2 -d.`
ef18c883
TS
250 # have to select again, because `uname -m` returns i86pc
251 # even on an x86_64 box.
252 solariscpu=`isainfo -k`
253 if test "${solariscpu}" = "amd64" ; then
254 cpu="x86_64"
255 fi
c2b84fab 256 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
0475a5ca
TS
257 if test "$solarisrev" -le 9 ; then
258 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
259 needs_libsunmath="yes"
260 else
261 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
262 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
263 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
264 echo "Studio 11 can be downloaded from www.sun.com."
265 exit 1
266 fi
267 fi
268 if test "$solarisrev" -ge 9 ; then
c2b84fab
TS
269 kqemu="yes"
270 fi
86b2bd93 271 fi
6b4d2ba1 272 if test -f /usr/include/sys/soundcard.h ; then
0c58ac1c 273 audio_drv_list="oss"
6b4d2ba1 274 fi
c2de5c91 275 audio_possible_drivers="oss sdl"
86b2bd93 276;;
b29fe3ed 277AIX)
278aix="yes"
279make="gmake"
280;;
1d14ffa9 281*)
0c58ac1c 282audio_drv_list="oss"
b8e59f18 283audio_possible_drivers="oss alsa sdl esd pa"
5327cf48 284linux="yes"
831b7825 285linux_user="yes"
68063649 286usb="linux"
07f4ddbf 287if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
c9ec1fe4 288 kqemu="yes"
c2de5c91 289 audio_possible_drivers="$audio_possible_drivers fmod"
c9ec1fe4 290fi
fb065187 291;;
7d13299d
FB
292esac
293
7d3505c5 294if [ "$bsd" = "yes" ] ; then
b1a550a0 295 if [ "$darwin" != "yes" ] ; then
83fb7adf 296 make="gmake"
68063649 297 usb="bsd"
83fb7adf 298 fi
84778508 299 bsd_user="yes"
7d3505c5
FB
300fi
301
7d13299d 302# find source path
ad064840 303source_path=`dirname "$0"`
59faef3a
AZ
304source_path_used="no"
305workdir=`pwd`
ad064840 306if [ -z "$source_path" ]; then
59faef3a 307 source_path=$workdir
ad064840
PB
308else
309 source_path=`cd "$source_path"; pwd`
7d13299d 310fi
724db118 311[ -f "$workdir/vl.c" ] || source_path_used="yes"
7d13299d 312
85aa5189 313werror="no"
0d1e2394
FB
314# generate compile errors on warnings for development builds
315#if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
316#werror="yes";
317#fi
85aa5189 318
7d13299d 319for opt do
a46e4035 320 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
7d13299d 321 case "$opt" in
2efc3265
FB
322 --help|-h) show_help=yes
323 ;;
b1a550a0 324 --prefix=*) prefix="$optarg"
7d13299d 325 ;;
b1a550a0 326 --interp-prefix=*) interp_prefix="$optarg"
32ce6337 327 ;;
b1a550a0 328 --source-path=*) source_path="$optarg"
ad064840 329 source_path_used="yes"
7d13299d 330 ;;
ac0df51d 331 --cross-prefix=*)
7d13299d 332 ;;
ac0df51d 333 --cc=*)
7d13299d 334 ;;
b1a550a0 335 --host-cc=*) host_cc="$optarg"
83469015 336 ;;
b1a550a0 337 --make=*) make="$optarg"
7d13299d 338 ;;
6a882643
PB
339 --install=*) install="$optarg"
340 ;;
b1a550a0 341 --extra-cflags=*) CFLAGS="$optarg"
7d13299d 342 ;;
b1a550a0 343 --extra-ldflags=*) LDFLAGS="$optarg"
7d13299d 344 ;;
b1a550a0 345 --cpu=*) cpu="$optarg"
7d13299d 346 ;;
b1a550a0 347 --target-list=*) target_list="$optarg"
de83cd02 348 ;;
7d13299d
FB
349 --enable-gprof) gprof="yes"
350 ;;
43ce4dfe
FB
351 --static) static="yes"
352 ;;
97a847bc
FB
353 --disable-sdl) sdl="no"
354 ;;
0c58ac1c 355 --fmod-lib=*) fmod_lib="$optarg"
1d14ffa9 356 ;;
c2de5c91 357 --fmod-inc=*) fmod_inc="$optarg"
358 ;;
2f6a1ab0
BS
359 --oss-lib=*) oss_lib="$optarg"
360 ;;
2fa7d3bf 361 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
102a52e4 362 ;;
0c58ac1c 363 --audio-drv-list=*) audio_drv_list="$optarg"
102a52e4 364 ;;
03b4fe7d
AL
365 --enable-sparse) sparse="yes"
366 ;;
367 --disable-sparse) sparse="no"
368 ;;
8d5d2d4c
TS
369 --disable-vnc-tls) vnc_tls="no"
370 ;;
443f1376 371 --disable-slirp) slirp="no"
1d14ffa9 372 ;;
e0e6c8c0 373 --disable-vde) vde="no"
8a16d273 374 ;;
c9ec1fe4 375 --disable-kqemu) kqemu="no"
1d14ffa9 376 ;;
2e4d9fb1
AJ
377 --disable-brlapi) brlapi="no"
378 ;;
fb599c9a
AZ
379 --disable-bluez) bluez="no"
380 ;;
7ba1e619
AL
381 --disable-kvm) kvm="no"
382 ;;
05c2a3e7
FB
383 --enable-profiler) profiler="yes"
384 ;;
c2de5c91 385 --enable-cocoa)
386 cocoa="yes" ;
387 sdl="no" ;
388 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
1d14ffa9 389 ;;
97ccc689
FB
390 --disable-gfx-check) check_gfx="no"
391 ;;
cad25d69 392 --disable-system) softmmu="no"
0a8e90f4 393 ;;
cad25d69 394 --enable-system) softmmu="yes"
0a8e90f4 395 ;;
831b7825 396 --disable-linux-user) linux_user="no"
0a8e90f4 397 ;;
831b7825
TS
398 --enable-linux-user) linux_user="yes"
399 ;;
400 --disable-darwin-user) darwin_user="no"
401 ;;
402 --enable-darwin-user) darwin_user="yes"
0a8e90f4 403 ;;
84778508
BS
404 --disable-bsd-user) bsd_user="no"
405 ;;
406 --enable-bsd-user) bsd_user="yes"
407 ;;
c5937220
PB
408 --enable-uname-release=*) uname_release="$optarg"
409 ;;
3142255c
BS
410 --sparc_cpu=*)
411 sparc_cpu="$optarg"
412 case $sparc_cpu in
413 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
414 target_cpu="sparc"; cpu="sparc" ;;
415 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
416 target_cpu="sparc"; cpu="sparc" ;;
417 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
418 target_cpu="sparc64"; cpu="sparc64" ;;
419 *) echo "undefined SPARC architecture. Exiting";exit 1;;
420 esac
421 ;;
85aa5189
FB
422 --enable-werror) werror="yes"
423 ;;
424 --disable-werror) werror="no"
425 ;;
4d3b6f6e
AZ
426 --disable-curses) curses="no"
427 ;;
bd0c5661
PB
428 --disable-nptl) nptl="no"
429 ;;
8ff9cbf7 430 --enable-mixemu) mixemu="yes"
431 ;;
414f0dab
BS
432 --disable-aio) aio="no"
433 ;;
77755340
TS
434 --disable-blobs) blobs="no"
435 ;;
eac30262
AL
436 --kerneldir=*) kerneldir="$optarg"
437 ;;
7f1559c6
AZ
438 *) echo "ERROR: unknown option $opt"; show_help="yes"
439 ;;
7d13299d
FB
440 esac
441done
442
6f30fa85 443# default flags for all hosts
ac41a620 444CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
e0e36fe9 445CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
6f30fa85 446LDFLAGS="$LDFLAGS -g"
85aa5189
FB
447if test "$werror" = "yes" ; then
448CFLAGS="$CFLAGS -Werror"
449fi
6f30fa85 450
d2c7c9b8
BS
451if test "$solaris" = "no" ; then
452 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
453 LDFLAGS="$LDFLAGS -Wl,--warn-common"
454 fi
49237acd
BS
455fi
456
3142255c
BS
457#
458# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
459# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
460#
40293e58 461case "$cpu" in
3142255c
BS
462 sparc) if test -z "$sparc_cpu" ; then
463 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
464 ARCH_LDFLAGS="-m32"
465 else
466 ARCH_CFLAGS="${SP_CFLAGS}"
467 ARCH_LDFLAGS="${SP_LDFLAGS}"
468 fi
469 ;;
470 sparc64) if test -z "$sparc_cpu" ; then
471 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
472 ARCH_LDFLAGS="-m64"
473 else
474 ARCH_CFLAGS="${SP_CFLAGS}"
475 ARCH_LDFLAGS="${SP_LDFLAGS}"
476 fi
477 ;;
76d83bde
TS
478 s390)
479 ARCH_CFLAGS="-march=z900"
480 ;;
40293e58
FB
481 i386)
482 ARCH_CFLAGS="-m32"
483 ARCH_LDFLAGS="-m32"
484 ;;
485 x86_64)
486 ARCH_CFLAGS="-m64"
487 ARCH_LDFLAGS="-m64"
488 ;;
3142255c
BS
489esac
490
af5db58e
PB
491if test x"$show_help" = x"yes" ; then
492cat << EOF
493
494Usage: configure [options]
495Options: [defaults in brackets after descriptions]
496
497EOF
498echo "Standard options:"
499echo " --help print this message"
500echo " --prefix=PREFIX install in PREFIX [$prefix]"
501echo " --interp-prefix=PREFIX where to find shared libraries, etc."
502echo " use %M for cpu name [$interp_prefix]"
503echo " --target-list=LIST set target list [$target_list]"
504echo ""
505echo "kqemu kernel acceleration support:"
506echo " --disable-kqemu disable kqemu support"
af5db58e
PB
507echo ""
508echo "Advanced options (experts only):"
509echo " --source-path=PATH path of source code [$source_path]"
510echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
511echo " --cc=CC use C compiler CC [$cc]"
512echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
513echo " --make=MAKE use specified make [$make]"
6a882643 514echo " --install=INSTALL use specified install [$install]"
af5db58e 515echo " --static enable static build [$static]"
890b1658
AL
516echo " --enable-sparse enable sparse checker"
517echo " --disable-sparse disable sparse checker (default)"
85aa5189 518echo " --disable-werror disable compilation abort on warning"
fe8f78e4 519echo " --disable-sdl disable SDL"
af5db58e 520echo " --enable-cocoa enable COCOA (Mac OS X only)"
c2de5c91 521echo " --audio-drv-list=LIST set audio drivers list:"
522echo " Available drivers: $audio_possible_drivers"
4c9b53e3 523echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
524echo " Available cards: $audio_possible_cards"
8ff9cbf7 525echo " --enable-mixemu enable mixer emulation"
2e4d9fb1 526echo " --disable-brlapi disable BrlAPI"
8d5d2d4c 527echo " --disable-vnc-tls disable TLS encryption for VNC server"
af896aaa 528echo " --disable-curses disable curses output"
fb599c9a 529echo " --disable-bluez disable bluez stack connectivity"
7ba1e619 530echo " --disable-kvm disable KVM acceleration support"
bd0c5661 531echo " --disable-nptl disable usermode NPTL support"
af5db58e
PB
532echo " --enable-system enable all system emulation targets"
533echo " --disable-system disable all system emulation targets"
831b7825
TS
534echo " --enable-linux-user enable all linux usermode emulation targets"
535echo " --disable-linux-user disable all linux usermode emulation targets"
536echo " --enable-darwin-user enable all darwin usermode emulation targets"
537echo " --disable-darwin-user disable all darwin usermode emulation targets"
84778508
BS
538echo " --enable-bsd-user enable all BSD usermode emulation targets"
539echo " --disable-bsd-user disable all BSD usermode emulation targets"
af5db58e
PB
540echo " --fmod-lib path to FMOD library"
541echo " --fmod-inc path to FMOD includes"
2f6a1ab0 542echo " --oss-lib path to OSS library"
c5937220 543echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
3142255c 544echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
e0e6c8c0 545echo " --disable-vde disable support for vde network"
414f0dab 546echo " --disable-aio disable AIO support"
77755340 547echo " --disable-blobs disable installing provided firmware blobs"
eac30262 548echo " --kerneldir=PATH look for kernel includes in PATH"
af5db58e 549echo ""
5bf08934 550echo "NOTE: The object files are built at the place where configure is launched"
af5db58e
PB
551exit 1
552fi
553
67b915a5 554if test "$mingw32" = "yes" ; then
5327cf48 555 linux="no"
67b915a5 556 EXESUF=".exe"
9f059eca 557 oss="no"
cd01b4a3 558 linux_user="no"
84778508 559 bsd_user="no"
cd01b4a3
AL
560fi
561
03b4fe7d
AL
562if test ! -x "$(which cgcc 2>/dev/null)"; then
563 sparse="no"
564fi
565
ec530c81
FB
566#
567# Solaris specific configure tool chain decisions
568#
569if test "$solaris" = "yes" ; then
ec530c81
FB
570 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
571 if test -z "$solinst" ; then
572 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
573 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
574 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
575 exit 1
576 fi
577 if test "$solinst" = "/usr/sbin/install" ; then
578 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
579 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
580 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
581 exit 1
582 fi
ec530c81
FB
583 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
584 if test -z "$sol_ar" ; then
585 echo "Error: No path includes ar"
586 if test -f /usr/ccs/bin/ar ; then
587 echo "Add /usr/ccs/bin to your path and rerun configure"
588 fi
589 exit 1
590 fi
5fafdf24 591fi
ec530c81
FB
592
593
5327cf48
FB
594if test -z "$target_list" ; then
595# these targets are portable
0a8e90f4 596 if [ "$softmmu" = "yes" ] ; then
2408a527
AJ
597 target_list="\
598i386-softmmu \
599x86_64-softmmu \
600arm-softmmu \
601cris-softmmu \
602m68k-softmmu \
603mips-softmmu \
604mipsel-softmmu \
605mips64-softmmu \
606mips64el-softmmu \
607ppc-softmmu \
608ppcemb-softmmu \
609ppc64-softmmu \
610sh4-softmmu \
611sh4eb-softmmu \
612sparc-softmmu \
613"
0a8e90f4 614 fi
5327cf48 615# the following are Linux specific
831b7825 616 if [ "$linux_user" = "yes" ] ; then
2408a527
AJ
617 target_list="${target_list}\
618i386-linux-user \
619x86_64-linux-user \
620alpha-linux-user \
621arm-linux-user \
622armeb-linux-user \
623cris-linux-user \
624m68k-linux-user \
625mips-linux-user \
626mipsel-linux-user \
627ppc-linux-user \
628ppc64-linux-user \
629ppc64abi32-linux-user \
630sh4-linux-user \
631sh4eb-linux-user \
632sparc-linux-user \
633sparc64-linux-user \
634sparc32plus-linux-user \
635"
831b7825
TS
636 fi
637# the following are Darwin specific
638 if [ "$darwin_user" = "yes" ] ; then
6cdc7375 639 target_list="$target_list i386-darwin-user ppc-darwin-user "
5327cf48 640 fi
84778508
BS
641# the following are BSD specific
642 if [ "$bsd_user" = "yes" ] ; then
643 target_list="${target_list}\
644sparc64-bsd-user \
645"
646 fi
6e20a45f 647else
b1a550a0 648 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
5327cf48 649fi
0a8e90f4
PB
650if test -z "$target_list" ; then
651 echo "No targets enabled"
652 exit 1
653fi
5327cf48 654
7d13299d
FB
655if test -z "$cross_prefix" ; then
656
657# ---
658# big/little endian test
659cat > $TMPC << EOF
660#include <inttypes.h>
661int main(int argc, char ** argv){
1d14ffa9
FB
662 volatile uint32_t i=0x01234567;
663 return (*((uint8_t*)(&i))) == 0x67;
7d13299d
FB
664}
665EOF
666
178baee6 667if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
7d13299d
FB
668$TMPE && bigendian="yes"
669else
670echo big/little test failed
671fi
672
673else
674
675# if cross compiling, cannot launch a program, so make a static guess
0938cda5 676if test "$cpu" = "armv4b" \
f54b3f92 677 -o "$cpu" = "hppa" \
0938cda5
AJ
678 -o "$cpu" = "m68k" \
679 -o "$cpu" = "mips" \
680 -o "$cpu" = "mips64" \
681 -o "$cpu" = "powerpc" \
682 -o "$cpu" = "s390" \
683 -o "$cpu" = "sparc" \
684 -o "$cpu" = "sparc64"; then
7d13299d
FB
685 bigendian="yes"
686fi
687
688fi
689
b6853697
FB
690# host long bits test
691hostlongbits="32"
0938cda5
AJ
692if test "$cpu" = "x86_64" \
693 -o "$cpu" = "alpha" \
694 -o "$cpu" = "ia64" \
695 -o "$cpu" = "sparc64"; then
b6853697
FB
696 hostlongbits="64"
697fi
698
810260a8 699# ppc specific hostlongbits selection
700if test "$cpu" = "powerpc" ; then
9d56d2dc 701 if $cc $ARCH_CFLAGS -dM -E - -o $TMPI 2>/dev/null </dev/null; then
702 grep -q __powerpc64__ $TMPI && hostlongbits=64
810260a8 703 else
704 echo hostlongbits test failed
ba69a08a 705 exit 1
810260a8 706 fi
707fi
708
e8cd23de 709# check gcc options support
04369ff2
FB
710cat > $TMPC <<EOF
711int main(void) {
04369ff2
FB
712}
713EOF
714
bd0c5661
PB
715# Check host NPTL support
716cat > $TMPC <<EOF
717#include <sched.h>
30813cea 718#include <linux/futex.h>
bd0c5661
PB
719void foo()
720{
721#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
722#error bork
723#endif
724}
725EOF
726
8c7f7574 727if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
bd0c5661
PB
728 :
729else
730 nptl="no"
731fi
732
ac62922e
AZ
733##########################################
734# zlib check
735
736cat > $TMPC << EOF
737#include <zlib.h>
738int main(void) { zlibVersion(); return 0; }
739EOF
8c7f7574 740if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
ac62922e
AZ
741 :
742else
743 echo
744 echo "Error: zlib check failed"
745 echo "Make sure to have the zlib libs and headers installed."
746 echo
747 exit 1
748fi
749
11d9f695
FB
750##########################################
751# SDL probe
752
753sdl_too_old=no
754
755if test -z "$sdl" ; then
069b0bda
TS
756 sdl_config="sdl-config"
757 sdl=no
758 sdl_static=no
759
11d9f695
FB
760cat > $TMPC << EOF
761#include <SDL.h>
762#undef main /* We don't want SDL to override our main() */
763int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
764EOF
8c7f7574 765 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
766 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
767 if test "$_sdlversion" -lt 121 ; then
768 sdl_too_old=yes
769 else
770 if test "$cocoa" = "no" ; then
771 sdl=yes
069b0bda 772 fi
cd01b4a3 773 fi
11d9f695 774
cd01b4a3
AL
775 # static link with sdl ?
776 if test "$sdl" = "yes" ; then
777 aa="no"
778 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
779 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
780 if [ "$aa" = "yes" ] ; then
781 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
782 fi
783
8c7f7574 784 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then
cd01b4a3
AL
785 sdl_static=yes
786 fi
787 fi # static link
788 fi # sdl compile test
fd677642 789else
069b0bda
TS
790 # Make sure to disable cocoa if sdl was set
791 if test "$sdl" = "yes" ; then
792 cocoa="no"
c2de5c91 793 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
069b0bda 794 fi
a6e022ad 795fi # -z $sdl
11d9f695 796
8d5d2d4c
TS
797##########################################
798# VNC TLS detection
799if test "$vnc_tls" = "yes" ; then
ae6b5e5a
AL
800cat > $TMPC <<EOF
801#include <gnutls/gnutls.h>
802int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
803EOF
804 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
805 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
806 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
8c7f7574 807 $vnc_tls_libs > /dev/null 2> /dev/null ; then
ae6b5e5a
AL
808 :
809 else
810 vnc_tls="no"
811 fi
8d5d2d4c
TS
812fi
813
8a16d273
TS
814##########################################
815# vde libraries probe
816if test "$vde" = "yes" ; then
817 cat > $TMPC << EOF
818#include <libvdeplug.h>
4a7f0e06
PB
819int main(void)
820{
821 struct vde_open_args a = {0, 0, 0};
822 vde_open("", "", &a);
823 return 0;
824}
8a16d273 825EOF
8c7f7574 826 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
8a16d273
TS
827 :
828 else
e0e6c8c0 829 vde="no"
8a16d273
TS
830 fi
831fi
832
8f28f3fb 833##########################################
c2de5c91 834# Sound support libraries probe
8f28f3fb 835
c2de5c91 836audio_drv_probe()
837{
838 drv=$1
839 hdr=$2
840 lib=$3
841 exp=$4
842 cfl=$5
843 cat > $TMPC << EOF
844#include <$hdr>
845int main(void) { $exp }
8f28f3fb 846EOF
8c7f7574 847 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
c2de5c91 848 :
849 else
850 echo
851 echo "Error: $drv check failed"
852 echo "Make sure to have the $drv libs and headers installed."
853 echo
854 exit 1
855 fi
856}
857
2fa7d3bf 858audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
c2de5c91 859for drv in $audio_drv_list; do
860 case $drv in
861 alsa)
862 audio_drv_probe $drv alsa/asoundlib.h -lasound \
863 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
864 ;;
865
866 fmod)
867 if test -z $fmod_lib || test -z $fmod_inc; then
868 echo
869 echo "Error: You must specify path to FMOD library and headers"
870 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
871 echo
872 exit 1
873 fi
874 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
875 ;;
876
877 esd)
878 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
879 ;;
b8e59f18 880
881 pa)
882 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
883 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
884 ;;
885
2f6a1ab0
BS
886 oss|sdl|core|wav|dsound)
887 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
888 ;;
889
e4c63a6a 890 *)
1c9b2a52 891 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
e4c63a6a 892 echo
893 echo "Error: Unknown driver '$drv' selected"
894 echo "Possible drivers are: $audio_possible_drivers"
895 echo
896 exit 1
897 }
898 ;;
c2de5c91 899 esac
900done
8f28f3fb 901
2e4d9fb1
AJ
902##########################################
903# BrlAPI probe
904
905if test -z "$brlapi" ; then
906 brlapi=no
907cat > $TMPC << EOF
908#include <brlapi.h>
909int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
910EOF
178baee6 911 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
2e4d9fb1
AJ
912 brlapi=yes
913 fi # brlapi compile test
914fi # -z $brlapi
915
4d3b6f6e
AZ
916##########################################
917# curses probe
918
919if test "$curses" = "yes" ; then
920 curses=no
921 cat > $TMPC << EOF
922#include <curses.h>
923int main(void) { return curses_version(); }
924EOF
178baee6 925 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
4d3b6f6e
AZ
926 curses=yes
927 fi
928fi # test "$curses"
929
fb599c9a
AZ
930##########################################
931# bluez support probe
932if test "$bluez" = "yes" ; then
933 `pkg-config bluez` || bluez="no"
934fi
935if test "$bluez" = "yes" ; then
e820e3f4
AZ
936 cat > $TMPC << EOF
937#include <bluetooth/bluetooth.h>
938int main(void) { return bt_error(0); }
939EOF
fb599c9a
AZ
940 bluez_cflags=`pkg-config --cflags bluez`
941 bluez_libs=`pkg-config --libs bluez`
17e1592d 942 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
8c7f7574 943 $bluez_libs > /dev/null 2> /dev/null ; then
e820e3f4
AZ
944 :
945 else
946 bluez="no"
947 fi
fb599c9a
AZ
948fi
949
7ba1e619
AL
950##########################################
951# kvm probe
952if test "$kvm" = "yes" ; then
953 cat > $TMPC <<EOF
954#include <linux/kvm.h>
955#if !defined(KVM_API_VERSION) || \
956 KVM_API_VERSION < 12 || \
957 KVM_API_VERSION > 12 || \
958 !defined(KVM_CAP_USER_MEMORY) || \
d85dc283
AL
959 !defined(KVM_CAP_SET_TSS_ADDR) || \
960 !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
7ba1e619
AL
961#error Invalid KVM version
962#endif
963int main(void) { return 0; }
964EOF
eac30262
AL
965 if test "$kerneldir" != "" ; then
966 kvm_cflags=-I"$kerneldir"/include
8444eb6e
AL
967 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
968 -a -d "$kerneldir/arch/x86/include" ; then
969 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
970 elif test -d "$kerneldir/arch/$cpu/include" ; then
971 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
972 fi
eac30262
AL
973 else
974 kvm_cflags=""
975 fi
7ba1e619 976 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
8c7f7574 977 > /dev/null 2>/dev/null ; then
7ba1e619
AL
978 :
979 else
980 kvm="no"
981 fi
982fi
983
414f0dab
BS
984##########################################
985# AIO probe
3c529d93
AL
986AIOLIBS=""
987
414f0dab
BS
988if test "$aio" = "yes" ; then
989 aio=no
990 cat > $TMPC << EOF
3c529d93
AL
991#include <pthread.h>
992int main(void) { pthread_mutex_t lock; return 0; }
414f0dab
BS
993EOF
994 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
995 aio=yes
3c529d93 996 AIOLIBS="-lpthread"
414f0dab
BS
997 fi
998fi
999
bf9298b9
AL
1000##########################################
1001# iovec probe
1002cat > $TMPC <<EOF
db34f0b3 1003#include <sys/types.h>
bf9298b9 1004#include <sys/uio.h>
db34f0b3 1005#include <unistd.h>
bf9298b9
AL
1006int main(void) { struct iovec iov; return 0; }
1007EOF
1008iovec=no
8c7f7574 1009if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
bf9298b9
AL
1010 iovec=yes
1011fi
1012
f652e6af
AJ
1013##########################################
1014# fdt probe
1015if test "$fdt" = "yes" ; then
1016 fdt=no
1017 cat > $TMPC << EOF
1018int main(void) { return 0; }
1019EOF
1020 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1021 fdt=yes
1022 fi
1023fi
1024
cc8ae6de 1025# Check if tools are available to build documentation.
6c591867
TS
1026if [ -x "`which texi2html 2>/dev/null`" ] && \
1027 [ -x "`which pod2man 2>/dev/null`" ]; then
cc8ae6de
PB
1028 build_docs="yes"
1029fi
1030
da93a1fd
AL
1031##########################################
1032# Do we need librt
1033cat > $TMPC <<EOF
1034#include <signal.h>
1035#include <time.h>
1036int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1037EOF
1038
1039rt=no
8c7f7574 1040if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
da93a1fd 1041 :
8c7f7574 1042elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
da93a1fd
AL
1043 rt=yes
1044fi
1045
1046if test "$rt" = "yes" ; then
1047 # Hack, we should have a general purpose LIBS for this sort of thing
1048 AIOLIBS="$AIOLIBS -lrt"
1049fi
1050
11d9f695 1051if test "$mingw32" = "yes" ; then
308c3593 1052 if test -z "$prefix" ; then
17e90973 1053 prefix="c:\\\\Program Files\\\\Qemu"
308c3593
PB
1054 fi
1055 mansuffix=""
1056 datasuffix=""
1057 docsuffix=""
1058 binsuffix=""
11d9f695 1059else
308c3593
PB
1060 if test -z "$prefix" ; then
1061 prefix="/usr/local"
1062 fi
1063 mansuffix="/share/man"
1064 datasuffix="/share/qemu"
1065 docsuffix="/share/doc/qemu"
1066 binsuffix="/bin"
11d9f695 1067fi
5a67135a 1068
43ce4dfe 1069echo "Install prefix $prefix"
308c3593
PB
1070echo "BIOS directory $prefix$datasuffix"
1071echo "binary directory $prefix$binsuffix"
11d9f695 1072if test "$mingw32" = "no" ; then
308c3593 1073echo "Manual directory $prefix$mansuffix"
43ce4dfe 1074echo "ELF interp prefix $interp_prefix"
11d9f695 1075fi
5a67135a 1076echo "Source path $source_path"
43ce4dfe 1077echo "C compiler $cc"
83469015 1078echo "Host C compiler $host_cc"
db7287ed 1079echo "ARCH_CFLAGS $ARCH_CFLAGS"
43ce4dfe 1080echo "make $make"
6a882643 1081echo "install $install"
43ce4dfe 1082echo "host CPU $cpu"
de83cd02 1083echo "host big endian $bigendian"
97a847bc 1084echo "target list $target_list"
43ce4dfe 1085echo "gprof enabled $gprof"
03b4fe7d 1086echo "sparse enabled $sparse"
05c2a3e7 1087echo "profiler $profiler"
43ce4dfe 1088echo "static build $static"
85aa5189 1089echo "-Werror enabled $werror"
5b0753e0
FB
1090if test "$darwin" = "yes" ; then
1091 echo "Cocoa support $cocoa"
1092fi
97a847bc 1093echo "SDL support $sdl"
e4afee97
FB
1094if test "$sdl" != "no" ; then
1095 echo "SDL static link $sdl_static"
1096fi
4d3b6f6e 1097echo "curses support $curses"
67b915a5 1098echo "mingw32 support $mingw32"
0c58ac1c 1099echo "Audio drivers $audio_drv_list"
1100echo "Extra audio cards $audio_card_list"
8ff9cbf7 1101echo "Mixer emulation $mixemu"
8d5d2d4c
TS
1102echo "VNC TLS support $vnc_tls"
1103if test "$vnc_tls" = "yes" ; then
1104 echo " TLS CFLAGS $vnc_tls_cflags"
1105 echo " TLS LIBS $vnc_tls_libs"
1106fi
3142255c
BS
1107if test -n "$sparc_cpu"; then
1108 echo "Target Sparc Arch $sparc_cpu"
1109fi
07f4ddbf 1110echo "kqemu support $kqemu"
2e4d9fb1 1111echo "brlapi support $brlapi"
cc8ae6de 1112echo "Documentation $build_docs"
c5937220
PB
1113[ ! -z "$uname_release" ] && \
1114echo "uname -r $uname_release"
bd0c5661 1115echo "NPTL support $nptl"
8a16d273 1116echo "vde support $vde"
414f0dab 1117echo "AIO support $aio"
77755340 1118echo "Install blobs $blobs"
7ba1e619 1119echo "KVM support $kvm"
f652e6af 1120echo "fdt support $fdt"
67b915a5 1121
97a847bc 1122if test $sdl_too_old = "yes"; then
24b55b96 1123echo "-> Your SDL version is too old - please upgrade to have SDL support"
7c1f25b4 1124fi
d4742de8 1125if [ -s $TMPSDLLOG ]; then
20b40c6a 1126 echo "The error log from compiling the libSDL test is: "
d4742de8 1127 cat $TMPSDLLOG
20b40c6a 1128fi
24b55b96
FB
1129#if test "$sdl_static" = "no"; then
1130# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1131#fi
97a847bc
FB
1132config_mak="config-host.mak"
1133config_h="config-host.h"
7d13299d 1134
7c1f25b4 1135#echo "Creating $config_mak and $config_h"
7d13299d 1136
15d9ca0f
TS
1137test -f $config_h && mv $config_h ${config_h}~
1138
97a847bc 1139echo "# Automatically generated by configure - do not modify" > $config_mak
fc9902d9 1140printf "# Configured with:" >> $config_mak
fd69fe2b 1141printf " '%s'" "$0" "$@" >> $config_mak
1142echo >> $config_mak
97a847bc 1143echo "/* Automatically generated by configure - do not modify */" > $config_h
7d13299d 1144
97a847bc 1145echo "prefix=$prefix" >> $config_mak
308c3593
PB
1146echo "bindir=\${prefix}$binsuffix" >> $config_mak
1147echo "mandir=\${prefix}$mansuffix" >> $config_mak
1148echo "datadir=\${prefix}$datasuffix" >> $config_mak
4ad5b06d 1149echo "docdir=\${prefix}$docsuffix" >> $config_mak
308c3593 1150echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
97a847bc 1151echo "MAKE=$make" >> $config_mak
6a882643 1152echo "INSTALL=$install" >> $config_mak
97a847bc 1153echo "CC=$cc" >> $config_mak
97a847bc
FB
1154echo "HOST_CC=$host_cc" >> $config_mak
1155echo "AR=$ar" >> $config_mak
1156echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
40293e58
FB
1157# XXX: only use CFLAGS and LDFLAGS ?
1158# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1159# compilation of dyngen tool (useful for win32 build on Linux host)
6f30fa85 1160echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
3142255c
BS
1161echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1162echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1163echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
97a847bc
FB
1164echo "CFLAGS=$CFLAGS" >> $config_mak
1165echo "LDFLAGS=$LDFLAGS" >> $config_mak
67b915a5 1166echo "EXESUF=$EXESUF" >> $config_mak
70956b77 1167echo "AIOLIBS=$AIOLIBS" >> $config_mak
2408a527
AJ
1168case "$cpu" in
1169 i386)
1170 echo "ARCH=i386" >> $config_mak
1171 echo "#define HOST_I386 1" >> $config_h
1172 ;;
1173 x86_64)
1174 echo "ARCH=x86_64" >> $config_mak
1175 echo "#define HOST_X86_64 1" >> $config_h
1176 ;;
1177 alpha)
1178 echo "ARCH=alpha" >> $config_mak
1179 echo "#define HOST_ALPHA 1" >> $config_h
1180 ;;
1181 armv4b)
1182 echo "ARCH=arm" >> $config_mak
1183 echo "#define HOST_ARM 1" >> $config_h
1184 ;;
1185 armv4l)
1186 echo "ARCH=arm" >> $config_mak
1187 echo "#define HOST_ARM 1" >> $config_h
1188 ;;
1189 cris)
1190 echo "ARCH=cris" >> $config_mak
1191 echo "#define HOST_CRIS 1" >> $config_h
1192 ;;
1193 hppa)
1194 echo "ARCH=hppa" >> $config_mak
1195 echo "#define HOST_HPPA 1" >> $config_h
1196 ;;
1197 ia64)
1198 echo "ARCH=ia64" >> $config_mak
1199 echo "#define HOST_IA64 1" >> $config_h
1200 ;;
1201 m68k)
1202 echo "ARCH=m68k" >> $config_mak
1203 echo "#define HOST_M68K 1" >> $config_h
1204 ;;
1205 mips)
1206 echo "ARCH=mips" >> $config_mak
1207 echo "#define HOST_MIPS 1" >> $config_h
1208 ;;
1209 mips64)
1210 echo "ARCH=mips64" >> $config_mak
1211 echo "#define HOST_MIPS64 1" >> $config_h
1212 ;;
1213 powerpc)
810260a8 1214 if test "$hostlongbits" = "32"; then
1215 echo "ARCH=ppc" >> $config_mak
1216 echo "#define HOST_PPC 1" >> $config_h
1217 else
1218 echo "ARCH=ppc64" >> $config_mak
1219 echo "#define HOST_PPC64 1" >> $config_h
1220 fi
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 \
d76d1650 1537 \( "$target_cpu" = "ppcemb" -a "$cpu" = "powerpc" \) -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