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