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