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