]> git.proxmox.com Git - qemu.git/blame - configure
hw/omap_dma: add matching {} in if 0
[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}"
7d13299d 17
9784cde5 18trap "rm -f $TMPC $TMPO $TMPE ; exit" 0 2 3 15
9ac81bbb 19
52166aa0 20compile_object() {
a558ee17 21 $cc $QEMU_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
52166aa0
JQ
22}
23
24compile_prog() {
25 local_cflags="$1"
26 local_ldflags="$2"
a558ee17 27 $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags > /dev/null 2> /dev/null
52166aa0
JQ
28}
29
7d13299d 30# default parameters
2ff6b91e 31cpu=""
11d9f695 32prefix=""
1e43adfc 33interp_prefix="/usr/gnemul/qemu-%M"
43ce4dfe 34static="no"
ed968ff1 35sparc_cpu=""
7d13299d
FB
36cross_prefix=""
37cc="gcc"
0c58ac1c 38audio_drv_list=""
4c9b53e3 39audio_card_list="ac97 es1370 sb16"
40audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus"
7d13299d
FB
41host_cc="gcc"
42ar="ar"
43make="make"
6a882643 44install="install"
7aa486fe
AL
45objcopy="objcopy"
46ld="ld"
c81da56e 47helper_cflags=""
73da375e 48libs_softmmu=""
3e2e0e6b 49libs_tools=""
67f86e8e 50audio_pt_int=""
ac0df51d
AL
51
52# parse CC options first
53for opt do
54 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
55 case "$opt" in
56 --cross-prefix=*) cross_prefix="$optarg"
57 ;;
58 --cc=*) cc="$optarg"
59 ;;
2ff6b91e
JQ
60 --cpu=*) cpu="$optarg"
61 ;;
a558ee17 62 --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS"
e2a2ed06
JQ
63 ;;
64 --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS"
65 ;;
50e7b1a0
JQ
66 --sparc_cpu=*)
67 sparc_cpu="$optarg"
68 case $sparc_cpu in
ed968ff1 69 v7|v8|v8plus|v8plusa)
50e7b1a0
JQ
70 cpu="sparc"
71 ;;
72 v9)
50e7b1a0
JQ
73 cpu="sparc64"
74 ;;
75 *)
76 echo "undefined SPARC architecture. Exiting";
77 exit 1
78 ;;
79 esac
80 ;;
ac0df51d
AL
81 esac
82done
ac0df51d
AL
83# OS specific
84# Using uname is really, really broken. Once we have the right set of checks
85# we can eliminate it's usage altogether
86
87cc="${cross_prefix}${cc}"
88ar="${cross_prefix}${ar}"
7aa486fe
AL
89objcopy="${cross_prefix}${objcopy}"
90ld="${cross_prefix}${ld}"
ac0df51d
AL
91
92# check that the C compiler works.
93cat > $TMPC <<EOF
94int main(void) {}
95EOF
96
52166aa0 97if compile_object ; then
ac0df51d
AL
98 : C compiler works ok
99else
100 echo "ERROR: \"$cc\" either does not exist or does not work"
101 exit 1
102fi
103
104check_define() {
105cat > $TMPC <<EOF
106#if !defined($1)
107#error Not defined
108#endif
109int main(void) { return 0; }
110EOF
52166aa0 111 compile_object
ac0df51d
AL
112}
113
2ff6b91e
JQ
114if test ! -z "$cpu" ; then
115 # command line argument
116 :
117elif check_define __i386__ ; then
ac0df51d
AL
118 cpu="i386"
119elif check_define __x86_64__ ; then
120 cpu="x86_64"
3aa9bd6c
BS
121elif check_define __sparc__ ; then
122 # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
123 # They must be specified using --sparc_cpu
124 if check_define __arch64__ ; then
125 cpu="sparc64"
126 else
127 cpu="sparc"
128 fi
fdf7ed96 129elif check_define _ARCH_PPC ; then
130 if check_define _ARCH_PPC64 ; then
131 cpu="ppc64"
132 else
133 cpu="ppc"
134 fi
ac0df51d 135else
fdf7ed96 136 cpu=`uname -m`
ac0df51d
AL
137fi
138
5327cf48 139target_list=""
7d13299d 140case "$cpu" in
ea8f20f8
JQ
141 alpha|cris|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|sparc64)
142 cpu="$cpu"
143 ;;
7d13299d 144 i386|i486|i586|i686|i86pc|BePC)
97a847bc 145 cpu="i386"
7d13299d 146 ;;
aaa5fa14
AJ
147 x86_64|amd64)
148 cpu="x86_64"
149 ;;
ba68055e 150 armv*b)
808c4954
FB
151 cpu="armv4b"
152 ;;
ba68055e 153 armv*l)
7d13299d
FB
154 cpu="armv4l"
155 ;;
f54b3f92
AJ
156 parisc|parisc64)
157 cpu="hppa"
158 ;;
0e7b8a9f 159 s390*)
fb3e5849
FB
160 cpu="s390"
161 ;;
3142255c 162 sparc|sun4[cdmuv])
ae228531
FB
163 cpu="sparc"
164 ;;
7d13299d
FB
165 *)
166 cpu="unknown"
167 ;;
168esac
e2d52ad3
JQ
169
170# Default value for a variable defining feature "foo"
171# * foo="no", feature will only be used if --enable-foo arg is given
172# * foo="", feature will be searched for, and if found, will be used
173# * foo="yes", this value vill only be set by --enable-foo flag.
174# feature will searched for, if not found, configure exits with error
175#
176# Always add --enable-foo and --disable-foo command line args. Distributions want
177# to ensure that several features are compiled in, and it is impossible without a
178# --enable-foo that exits if feature is not found
179
a20a6f46 180bluez=""
4ffcedb6 181brlapi=""
788c8196 182curl=""
c584a6d0 183curses=""
a25dba17 184docs=""
2df87df7 185fdt=""
b31a0277 186kvm=""
b0a47e79 187nptl=""
c4198157 188sdl=""
dfffc653 189sparse="no"
dfb278bd 190vde=""
1be10ad2 191vnc_tls=""
ea784e3b 192vnc_sasl=""
fc321b4b 193xen=""
5c6c3a6c 194linux_aio=""
dfb278bd 195
7d13299d 196gprof="no"
f8393946 197debug_tcg="no"
f3d08ee6 198debug="no"
1625af87 199strip_opt="yes"
7d13299d 200bigendian="no"
67b915a5
FB
201mingw32="no"
202EXESUF=""
443f1376 203slirp="yes"
102a52e4
FB
204fmod_lib=""
205fmod_inc=""
2f6a1ab0 206oss_lib=""
b1a550a0 207bsd="no"
5327cf48 208linux="no"
d2c7c9b8 209solaris="no"
05c2a3e7 210profiler="no"
5b0753e0 211cocoa="no"
0a8e90f4 212softmmu="yes"
831b7825
TS
213linux_user="no"
214darwin_user="no"
84778508 215bsd_user="no"
379f6698 216guest_base=""
c5937220 217uname_release=""
e5d355d1 218io_thread="no"
8ff9cbf7 219mixemu="no"
eac30262 220kerneldir=""
b29fe3ed 221aix="no"
77755340 222blobs="yes"
4a19f1ec 223pkgversion=""
5495ed11 224check_utests="no"
34005a00 225user_pie="no"
7d13299d
FB
226
227# OS specific
ac0df51d
AL
228if check_define __linux__ ; then
229 targetos="Linux"
230elif check_define _WIN32 ; then
231 targetos='MINGW32'
169dc5d3
BS
232elif check_define __OpenBSD__ ; then
233 targetos='OpenBSD'
234elif check_define __sun__ ; then
235 targetos='SunOS'
ac0df51d
AL
236else
237 targetos=`uname -s`
238fi
0dbfc675 239
7d13299d 240case $targetos in
c326e0af 241CYGWIN*)
0dbfc675 242 mingw32="yes"
a558ee17 243 QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
0dbfc675 244 audio_possible_drivers="sdl"
c326e0af 245;;
67b915a5 246MINGW32*)
0dbfc675
JQ
247 mingw32="yes"
248 audio_possible_drivers="dsound sdl fmod"
67b915a5 249;;
5c40d2bd 250GNU/kFreeBSD)
0dbfc675
JQ
251 audio_drv_list="oss"
252 audio_possible_drivers="oss sdl esd pa"
5c40d2bd 253;;
7d3505c5 254FreeBSD)
0dbfc675
JQ
255 bsd="yes"
256 audio_drv_list="oss"
257 audio_possible_drivers="oss sdl esd pa"
7d3505c5 258;;
c5e97233 259DragonFly)
0dbfc675
JQ
260 bsd="yes"
261 audio_drv_list="oss"
262 audio_possible_drivers="oss sdl esd pa"
c5e97233 263;;
7d3505c5 264NetBSD)
0dbfc675
JQ
265 bsd="yes"
266 audio_drv_list="oss"
267 audio_possible_drivers="oss sdl esd"
268 oss_lib="-lossaudio"
7d3505c5
FB
269;;
270OpenBSD)
0dbfc675
JQ
271 bsd="yes"
272 audio_drv_list="oss"
273 audio_possible_drivers="oss sdl esd"
274 oss_lib="-lossaudio"
7d3505c5 275;;
83fb7adf 276Darwin)
0dbfc675
JQ
277 bsd="yes"
278 darwin="yes"
279 # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can
280 # run 64-bit userspace code
281 if [ "$cpu" = "i386" ] ; then
aab8588a 282 is_x86_64=`sysctl -n hw.optional.x86_64`
283 [ "$is_x86_64" = "1" ] && cpu=x86_64
0dbfc675
JQ
284 fi
285 if [ "$cpu" = "x86_64" ] ; then
a558ee17 286 QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
0c439cbf 287 LDFLAGS="-arch x86_64 $LDFLAGS"
0dbfc675 288 else
a558ee17 289 QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS"
0dbfc675
JQ
290 fi
291 darwin_user="yes"
292 cocoa="yes"
293 audio_drv_list="coreaudio"
294 audio_possible_drivers="coreaudio sdl fmod"
295 LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
7973f21c 296 libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
83fb7adf 297;;
ec530c81 298SunOS)
0dbfc675
JQ
299 solaris="yes"
300 make="gmake"
301 install="ginstall"
fa58948d 302 ld="gld"
0dbfc675
JQ
303 needs_libsunmath="no"
304 solarisrev=`uname -r | cut -f2 -d.`
305 # have to select again, because `uname -m` returns i86pc
306 # even on an x86_64 box.
307 solariscpu=`isainfo -k`
308 if test "${solariscpu}" = "amd64" ; then
309 cpu="x86_64"
310 fi
311 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
312 if test "$solarisrev" -le 9 ; then
313 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
314 needs_libsunmath="yes"
f14bfdf9
JQ
315 QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS"
316 LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS"
317 LIBS="-lsunmath $LIBS"
0dbfc675
JQ
318 else
319 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
320 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
321 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
322 echo "Studio 11 can be downloaded from www.sun.com."
323 exit 1
324 fi
86b2bd93 325 fi
0dbfc675
JQ
326 fi
327 if test -f /usr/include/sys/soundcard.h ; then
328 audio_drv_list="oss"
329 fi
330 audio_possible_drivers="oss sdl"
d741429a
BS
331# needed for CMSG_ macros in sys/socket.h
332 QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
333# needed for TIOCWIN* defines in termios.h
334 QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
a558ee17 335 QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
e174c0bb 336 LIBS="-lsocket -lnsl -lresolv $LIBS"
86b2bd93 337;;
b29fe3ed 338AIX)
0dbfc675
JQ
339 aix="yes"
340 make="gmake"
b29fe3ed 341;;
1d14ffa9 342*)
0dbfc675
JQ
343 audio_drv_list="oss"
344 audio_possible_drivers="oss alsa sdl esd pa"
345 linux="yes"
346 linux_user="yes"
347 usb="linux"
0dbfc675 348 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
c2de5c91 349 audio_possible_drivers="$audio_possible_drivers fmod"
0dbfc675 350 fi
fb065187 351;;
7d13299d
FB
352esac
353
7d3505c5 354if [ "$bsd" = "yes" ] ; then
b1a550a0 355 if [ "$darwin" != "yes" ] ; then
83fb7adf 356 make="gmake"
68063649 357 usb="bsd"
83fb7adf 358 fi
84778508 359 bsd_user="yes"
7d3505c5
FB
360fi
361
3457a3f8 362if test "$mingw32" = "yes" ; then
3457a3f8 363 EXESUF=".exe"
a558ee17 364 QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
884044aa 365 LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
3457a3f8
JQ
366fi
367
7d13299d 368# find source path
ad064840 369source_path=`dirname "$0"`
59faef3a
AZ
370source_path_used="no"
371workdir=`pwd`
ad064840 372if [ -z "$source_path" ]; then
59faef3a 373 source_path=$workdir
ad064840
PB
374else
375 source_path=`cd "$source_path"; pwd`
7d13299d 376fi
724db118 377[ -f "$workdir/vl.c" ] || source_path_used="yes"
7d13299d 378
487fefdb 379werror=""
85aa5189 380
7d13299d 381for opt do
a46e4035 382 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
7d13299d 383 case "$opt" in
2efc3265
FB
384 --help|-h) show_help=yes
385 ;;
b1a550a0 386 --prefix=*) prefix="$optarg"
7d13299d 387 ;;
b1a550a0 388 --interp-prefix=*) interp_prefix="$optarg"
32ce6337 389 ;;
b1a550a0 390 --source-path=*) source_path="$optarg"
ad064840 391 source_path_used="yes"
7d13299d 392 ;;
ac0df51d 393 --cross-prefix=*)
7d13299d 394 ;;
ac0df51d 395 --cc=*)
7d13299d 396 ;;
b1a550a0 397 --host-cc=*) host_cc="$optarg"
83469015 398 ;;
b1a550a0 399 --make=*) make="$optarg"
7d13299d 400 ;;
6a882643
PB
401 --install=*) install="$optarg"
402 ;;
e2a2ed06 403 --extra-cflags=*)
7d13299d 404 ;;
e2a2ed06 405 --extra-ldflags=*)
7d13299d 406 ;;
2ff6b91e 407 --cpu=*)
7d13299d 408 ;;
b1a550a0 409 --target-list=*) target_list="$optarg"
de83cd02 410 ;;
7d13299d
FB
411 --enable-gprof) gprof="yes"
412 ;;
43ce4dfe
FB
413 --static) static="yes"
414 ;;
97a847bc
FB
415 --disable-sdl) sdl="no"
416 ;;
c4198157
JQ
417 --enable-sdl) sdl="yes"
418 ;;
0c58ac1c 419 --fmod-lib=*) fmod_lib="$optarg"
1d14ffa9 420 ;;
c2de5c91 421 --fmod-inc=*) fmod_inc="$optarg"
422 ;;
2f6a1ab0
BS
423 --oss-lib=*) oss_lib="$optarg"
424 ;;
2fa7d3bf 425 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
102a52e4 426 ;;
0c58ac1c 427 --audio-drv-list=*) audio_drv_list="$optarg"
102a52e4 428 ;;
f8393946
AJ
429 --enable-debug-tcg) debug_tcg="yes"
430 ;;
431 --disable-debug-tcg) debug_tcg="no"
432 ;;
f3d08ee6
PB
433 --enable-debug)
434 # Enable debugging options that aren't excessively noisy
435 debug_tcg="yes"
436 debug="yes"
437 strip_opt="no"
438 ;;
03b4fe7d
AL
439 --enable-sparse) sparse="yes"
440 ;;
441 --disable-sparse) sparse="no"
442 ;;
1625af87
AL
443 --disable-strip) strip_opt="no"
444 ;;
8d5d2d4c
TS
445 --disable-vnc-tls) vnc_tls="no"
446 ;;
1be10ad2
JQ
447 --enable-vnc-tls) vnc_tls="yes"
448 ;;
2f9606b3
AL
449 --disable-vnc-sasl) vnc_sasl="no"
450 ;;
ea784e3b
JQ
451 --enable-vnc-sasl) vnc_sasl="yes"
452 ;;
443f1376 453 --disable-slirp) slirp="no"
1d14ffa9 454 ;;
e0e6c8c0 455 --disable-vde) vde="no"
8a16d273 456 ;;
dfb278bd
JQ
457 --enable-vde) vde="yes"
458 ;;
e37630ca
AL
459 --disable-xen) xen="no"
460 ;;
fc321b4b
JQ
461 --enable-xen) xen="yes"
462 ;;
2e4d9fb1
AJ
463 --disable-brlapi) brlapi="no"
464 ;;
4ffcedb6
JQ
465 --enable-brlapi) brlapi="yes"
466 ;;
fb599c9a
AZ
467 --disable-bluez) bluez="no"
468 ;;
a20a6f46
JQ
469 --enable-bluez) bluez="yes"
470 ;;
7ba1e619
AL
471 --disable-kvm) kvm="no"
472 ;;
b31a0277
JQ
473 --enable-kvm) kvm="yes"
474 ;;
05c2a3e7
FB
475 --enable-profiler) profiler="yes"
476 ;;
c2de5c91 477 --enable-cocoa)
478 cocoa="yes" ;
479 sdl="no" ;
480 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
1d14ffa9 481 ;;
cad25d69 482 --disable-system) softmmu="no"
0a8e90f4 483 ;;
cad25d69 484 --enable-system) softmmu="yes"
0a8e90f4 485 ;;
0953a80f
ZA
486 --disable-user)
487 linux_user="no" ;
488 bsd_user="no" ;
489 darwin_user="no"
490 ;;
491 --enable-user) ;;
831b7825 492 --disable-linux-user) linux_user="no"
0a8e90f4 493 ;;
831b7825
TS
494 --enable-linux-user) linux_user="yes"
495 ;;
496 --disable-darwin-user) darwin_user="no"
497 ;;
498 --enable-darwin-user) darwin_user="yes"
0a8e90f4 499 ;;
84778508
BS
500 --disable-bsd-user) bsd_user="no"
501 ;;
502 --enable-bsd-user) bsd_user="yes"
503 ;;
379f6698
PB
504 --enable-guest-base) guest_base="yes"
505 ;;
506 --disable-guest-base) guest_base="no"
507 ;;
34005a00
KS
508 --enable-user-pie) user_pie="yes"
509 ;;
510 --disable-user-pie) user_pie="no"
511 ;;
c5937220
PB
512 --enable-uname-release=*) uname_release="$optarg"
513 ;;
3142255c 514 --sparc_cpu=*)
3142255c 515 ;;
85aa5189
FB
516 --enable-werror) werror="yes"
517 ;;
518 --disable-werror) werror="no"
519 ;;
4d3b6f6e
AZ
520 --disable-curses) curses="no"
521 ;;
c584a6d0
JQ
522 --enable-curses) curses="yes"
523 ;;
769ce76d
AG
524 --disable-curl) curl="no"
525 ;;
788c8196
JQ
526 --enable-curl) curl="yes"
527 ;;
2df87df7
JQ
528 --disable-fdt) fdt="no"
529 ;;
530 --enable-fdt) fdt="yes"
531 ;;
5495ed11
LC
532 --disable-check-utests) check_utests="no"
533 ;;
534 --enable-check-utests) check_utests="yes"
535 ;;
bd0c5661
PB
536 --disable-nptl) nptl="no"
537 ;;
b0a47e79
JQ
538 --enable-nptl) nptl="yes"
539 ;;
8ff9cbf7 540 --enable-mixemu) mixemu="yes"
541 ;;
5c6c3a6c
CH
542 --disable-linux-aio) linux_aio="no"
543 ;;
544 --enable-linux-aio) linux_aio="yes"
545 ;;
e5d355d1
AL
546 --enable-io-thread) io_thread="yes"
547 ;;
77755340
TS
548 --disable-blobs) blobs="no"
549 ;;
eac30262
AL
550 --kerneldir=*) kerneldir="$optarg"
551 ;;
4a19f1ec
PB
552 --with-pkgversion=*) pkgversion=" ($optarg)"
553 ;;
a25dba17 554 --disable-docs) docs="no"
70ec5dc0 555 ;;
a25dba17 556 --enable-docs) docs="yes"
83a3ab8b 557 ;;
7f1559c6
AZ
558 *) echo "ERROR: unknown option $opt"; show_help="yes"
559 ;;
7d13299d
FB
560 esac
561done
562
3142255c
BS
563#
564# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
a558ee17 565# QEMU_CFLAGS/LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
3142255c 566#
379f6698 567host_guest_base="no"
40293e58 568case "$cpu" in
ed968ff1
JQ
569 sparc) case $sparc_cpu in
570 v7|v8)
a558ee17 571 QEMU_CFLAGS="-mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
ed968ff1
JQ
572 ;;
573 v8plus|v8plusa)
a558ee17 574 QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
ed968ff1
JQ
575 ;;
576 *) # sparc_cpu not defined in the command line
a558ee17 577 QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_v8plus__ $QEMU_CFLAGS"
ed968ff1
JQ
578 esac
579 LDFLAGS="-m32 $LDFLAGS"
a558ee17 580 QEMU_CFLAGS="-m32 -ffixed-g2 -ffixed-g3 $QEMU_CFLAGS"
762e8230 581 if test "$solaris" = "no" ; then
a558ee17 582 QEMU_CFLAGS="-ffixed-g1 -ffixed-g6 $QEMU_CFLAGS"
c81da56e 583 helper_cflags="-ffixed-i0"
762e8230 584 fi
3142255c 585 ;;
ed968ff1 586 sparc64)
a558ee17 587 QEMU_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__ $QEMU_CFLAGS"
ed968ff1 588 LDFLAGS="-m64 $LDFLAGS"
a558ee17 589 QEMU_CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $QEMU_CFLAGS"
ed968ff1 590 if test "$solaris" != "no" ; then
a558ee17 591 QEMU_CFLAGS="-ffixed-g1 $QEMU_CFLAGS"
762e8230 592 fi
3142255c 593 ;;
76d83bde 594 s390)
a558ee17 595 QEMU_CFLAGS="-march=z900 $QEMU_CFLAGS"
76d83bde 596 ;;
40293e58 597 i386)
a558ee17 598 QEMU_CFLAGS="-m32 $QEMU_CFLAGS"
0c439cbf 599 LDFLAGS="-m32 $LDFLAGS"
c81da56e 600 helper_cflags="-fomit-frame-pointer"
379f6698 601 host_guest_base="yes"
40293e58
FB
602 ;;
603 x86_64)
a558ee17 604 QEMU_CFLAGS="-m64 $QEMU_CFLAGS"
0c439cbf 605 LDFLAGS="-m64 $LDFLAGS"
379f6698
PB
606 host_guest_base="yes"
607 ;;
608 arm*)
609 host_guest_base="yes"
40293e58 610 ;;
f6548c0a 611 ppc*)
612 host_guest_base="yes"
613 ;;
3142255c
BS
614esac
615
379f6698
PB
616[ -z "$guest_base" ] && guest_base="$host_guest_base"
617
af5db58e
PB
618if test x"$show_help" = x"yes" ; then
619cat << EOF
620
621Usage: configure [options]
622Options: [defaults in brackets after descriptions]
623
624EOF
625echo "Standard options:"
626echo " --help print this message"
627echo " --prefix=PREFIX install in PREFIX [$prefix]"
628echo " --interp-prefix=PREFIX where to find shared libraries, etc."
629echo " use %M for cpu name [$interp_prefix]"
630echo " --target-list=LIST set target list [$target_list]"
631echo ""
af5db58e
PB
632echo "Advanced options (experts only):"
633echo " --source-path=PATH path of source code [$source_path]"
634echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
635echo " --cc=CC use C compiler CC [$cc]"
636echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
a558ee17 637echo " --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS"
e3fc14c3 638echo " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS"
af5db58e 639echo " --make=MAKE use specified make [$make]"
6a882643 640echo " --install=INSTALL use specified install [$install]"
af5db58e 641echo " --static enable static build [$static]"
f8393946
AJ
642echo " --enable-debug-tcg enable TCG debugging"
643echo " --disable-debug-tcg disable TCG debugging (default)"
09695a4a 644echo " --enable-debug enable common debug build options"
890b1658
AL
645echo " --enable-sparse enable sparse checker"
646echo " --disable-sparse disable sparse checker (default)"
1625af87 647echo " --disable-strip disable stripping binaries"
85aa5189 648echo " --disable-werror disable compilation abort on warning"
fe8f78e4 649echo " --disable-sdl disable SDL"
c4198157 650echo " --enable-sdl enable SDL"
af5db58e 651echo " --enable-cocoa enable COCOA (Mac OS X only)"
c2de5c91 652echo " --audio-drv-list=LIST set audio drivers list:"
653echo " Available drivers: $audio_possible_drivers"
4c9b53e3 654echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
655echo " Available cards: $audio_possible_cards"
8ff9cbf7 656echo " --enable-mixemu enable mixer emulation"
e37630ca 657echo " --disable-xen disable xen backend driver support"
fc321b4b 658echo " --enable-xen enable xen backend driver support"
2e4d9fb1 659echo " --disable-brlapi disable BrlAPI"
4ffcedb6 660echo " --enable-brlapi enable BrlAPI"
8d5d2d4c 661echo " --disable-vnc-tls disable TLS encryption for VNC server"
1be10ad2 662echo " --enable-vnc-tls enable TLS encryption for VNC server"
2f9606b3 663echo " --disable-vnc-sasl disable SASL encryption for VNC server"
ea784e3b 664echo " --enable-vnc-sasl enable SASL encryption for VNC server"
af896aaa 665echo " --disable-curses disable curses output"
c584a6d0 666echo " --enable-curses enable curses output"
769ce76d 667echo " --disable-curl disable curl connectivity"
788c8196 668echo " --enable-curl enable curl connectivity"
2df87df7
JQ
669echo " --disable-fdt disable fdt device tree"
670echo " --enable-fdt enable fdt device tree"
5495ed11
LC
671echo " --disable-check-utests disable check unit-tests"
672echo " --enable-check-utests enable check unit-tests"
fb599c9a 673echo " --disable-bluez disable bluez stack connectivity"
a20a6f46 674echo " --enable-bluez enable bluez stack connectivity"
7ba1e619 675echo " --disable-kvm disable KVM acceleration support"
b31a0277 676echo " --enable-kvm enable KVM acceleration support"
bd0c5661 677echo " --disable-nptl disable usermode NPTL support"
e5934d33 678echo " --enable-nptl enable usermode NPTL support"
af5db58e
PB
679echo " --enable-system enable all system emulation targets"
680echo " --disable-system disable all system emulation targets"
0953a80f
ZA
681echo " --enable-user enable supported user emulation targets"
682echo " --disable-user disable all user emulation targets"
831b7825
TS
683echo " --enable-linux-user enable all linux usermode emulation targets"
684echo " --disable-linux-user disable all linux usermode emulation targets"
685echo " --enable-darwin-user enable all darwin usermode emulation targets"
686echo " --disable-darwin-user disable all darwin usermode emulation targets"
84778508
BS
687echo " --enable-bsd-user enable all BSD usermode emulation targets"
688echo " --disable-bsd-user disable all BSD usermode emulation targets"
379f6698
PB
689echo " --enable-guest-base enable GUEST_BASE support for usermode"
690echo " emulation targets"
691echo " --disable-guest-base disable GUEST_BASE support"
34005a00
KS
692echo " --enable-user-pie build usermode emulation targets as PIE"
693echo " --disable-user-pie do not build usermode emulation targets as PIE"
af5db58e
PB
694echo " --fmod-lib path to FMOD library"
695echo " --fmod-inc path to FMOD includes"
2f6a1ab0 696echo " --oss-lib path to OSS library"
c5937220 697echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
3142255c 698echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
e0e6c8c0 699echo " --disable-vde disable support for vde network"
dfb278bd 700echo " --enable-vde enable support for vde network"
5c6c3a6c
CH
701echo " --disable-linux-aio disable Linux AIO support"
702echo " --enable-linux-aio enable Linux AIO support"
e5d355d1 703echo " --enable-io-thread enable IO thread"
77755340 704echo " --disable-blobs disable installing provided firmware blobs"
eac30262 705echo " --kerneldir=PATH look for kernel includes in PATH"
af5db58e 706echo ""
5bf08934 707echo "NOTE: The object files are built at the place where configure is launched"
af5db58e
PB
708exit 1
709fi
710
ec530c81
FB
711#
712# Solaris specific configure tool chain decisions
713#
714if test "$solaris" = "yes" ; then
ec530c81
FB
715 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
716 if test -z "$solinst" ; then
717 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
718 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
719 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
720 exit 1
721 fi
722 if test "$solinst" = "/usr/sbin/install" ; then
723 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
724 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
725 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
726 exit 1
727 fi
ec530c81
FB
728 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
729 if test -z "$sol_ar" ; then
730 echo "Error: No path includes ar"
731 if test -f /usr/ccs/bin/ar ; then
732 echo "Add /usr/ccs/bin to your path and rerun configure"
733 fi
734 exit 1
735 fi
5fafdf24 736fi
ec530c81
FB
737
738
5327cf48
FB
739if test -z "$target_list" ; then
740# these targets are portable
0a8e90f4 741 if [ "$softmmu" = "yes" ] ; then
2408a527
AJ
742 target_list="\
743i386-softmmu \
744x86_64-softmmu \
745arm-softmmu \
746cris-softmmu \
747m68k-softmmu \
72b675ca 748microblaze-softmmu \
2408a527
AJ
749mips-softmmu \
750mipsel-softmmu \
751mips64-softmmu \
752mips64el-softmmu \
753ppc-softmmu \
754ppcemb-softmmu \
755ppc64-softmmu \
756sh4-softmmu \
757sh4eb-softmmu \
758sparc-softmmu \
1b64fcae 759sparc64-softmmu \
2408a527 760"
0a8e90f4 761 fi
5327cf48 762# the following are Linux specific
831b7825 763 if [ "$linux_user" = "yes" ] ; then
2408a527
AJ
764 target_list="${target_list}\
765i386-linux-user \
766x86_64-linux-user \
767alpha-linux-user \
768arm-linux-user \
769armeb-linux-user \
770cris-linux-user \
771m68k-linux-user \
72b675ca 772microblaze-linux-user \
2408a527
AJ
773mips-linux-user \
774mipsel-linux-user \
775ppc-linux-user \
776ppc64-linux-user \
777ppc64abi32-linux-user \
778sh4-linux-user \
779sh4eb-linux-user \
780sparc-linux-user \
781sparc64-linux-user \
782sparc32plus-linux-user \
783"
831b7825
TS
784 fi
785# the following are Darwin specific
786 if [ "$darwin_user" = "yes" ] ; then
6cdc7375 787 target_list="$target_list i386-darwin-user ppc-darwin-user "
5327cf48 788 fi
84778508
BS
789# the following are BSD specific
790 if [ "$bsd_user" = "yes" ] ; then
791 target_list="${target_list}\
31fc12df
BS
792i386-bsd-user \
793x86_64-bsd-user \
794sparc-bsd-user \
84778508
BS
795sparc64-bsd-user \
796"
797 fi
6e20a45f 798else
b1a550a0 799 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
5327cf48 800fi
0a8e90f4
PB
801if test -z "$target_list" ; then
802 echo "No targets enabled"
803 exit 1
804fi
5327cf48 805
249247c9
JQ
806feature_not_found() {
807 feature=$1
808
809 echo "ERROR"
810 echo "ERROR: User requested feature $feature"
9332f6a2 811 echo "ERROR: configure was not able to find it"
249247c9
JQ
812 echo "ERROR"
813 exit 1;
814}
815
7d13299d
FB
816if test -z "$cross_prefix" ; then
817
818# ---
819# big/little endian test
820cat > $TMPC << EOF
821#include <inttypes.h>
822int main(int argc, char ** argv){
1d14ffa9
FB
823 volatile uint32_t i=0x01234567;
824 return (*((uint8_t*)(&i))) == 0x67;
7d13299d
FB
825}
826EOF
827
52166aa0 828if compile_prog "" "" ; then
7d13299d
FB
829$TMPE && bigendian="yes"
830else
831echo big/little test failed
832fi
833
834else
835
836# if cross compiling, cannot launch a program, so make a static guess
ea8f20f8
JQ
837case "$cpu" in
838 armv4b|hppa|m68k|mips|mips64|ppc|ppc64|s390|sparc|sparc64)
839 bigendian=yes
840 ;;
841esac
7d13299d
FB
842
843fi
844
b6853697
FB
845# host long bits test
846hostlongbits="32"
ea8f20f8
JQ
847case "$cpu" in
848 x86_64|alpha|ia64|sparc64|ppc64)
849 hostlongbits=64
850 ;;
851esac
b6853697 852
b0a47e79
JQ
853
854##########################################
855# NPTL probe
856
857if test "$nptl" != "no" ; then
858 cat > $TMPC <<EOF
bd0c5661 859#include <sched.h>
30813cea 860#include <linux/futex.h>
bd0c5661
PB
861void foo()
862{
863#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
864#error bork
865#endif
866}
867EOF
868
b0a47e79
JQ
869 if compile_object ; then
870 nptl=yes
871 else
872 if test "$nptl" = "yes" ; then
873 feature_not_found "nptl"
874 fi
875 nptl=no
876 fi
bd0c5661
PB
877fi
878
ac62922e
AZ
879##########################################
880# zlib check
881
882cat > $TMPC << EOF
883#include <zlib.h>
884int main(void) { zlibVersion(); return 0; }
885EOF
52166aa0 886if compile_prog "" "-lz" ; then
ac62922e
AZ
887 :
888else
889 echo
890 echo "Error: zlib check failed"
891 echo "Make sure to have the zlib libs and headers installed."
892 echo
893 exit 1
894fi
895
e37630ca
AL
896##########################################
897# xen probe
898
fc321b4b 899if test "$xen" != "no" ; then
b2266bee
JQ
900 xen_libs="-lxenstore -lxenctrl -lxenguest"
901 cat > $TMPC <<EOF
e37630ca
AL
902#include <xenctrl.h>
903#include <xs.h>
df7a607b 904int main(void) { xs_daemon_open(); xc_interface_open(); return 0; }
e37630ca 905EOF
52166aa0 906 if compile_prog "" "$xen_libs" ; then
fc321b4b 907 xen=yes
3efd632b 908 libs_softmmu="$xen_libs $libs_softmmu"
b2266bee 909 else
fc321b4b
JQ
910 if test "$xen" = "yes" ; then
911 feature_not_found "xen"
912 fi
913 xen=no
b2266bee 914 fi
e37630ca
AL
915fi
916
dfffc653
JQ
917##########################################
918# Sparse probe
919if test "$sparse" != "no" ; then
920 if test -x "$(which cgcc 2>/dev/null)"; then
921 sparse=yes
922 else
923 if test "$sparse" = "yes" ; then
924 feature_not_found "sparse"
925 fi
926 sparse=no
927 fi
928fi
929
11d9f695
FB
930##########################################
931# SDL probe
932
933sdl_too_old=no
934
c4198157 935if test "$sdl" != "no" ; then
ac119f9d 936 cat > $TMPC << EOF
11d9f695
FB
937#include <SDL.h>
938#undef main /* We don't want SDL to override our main() */
939int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
940EOF
ac119f9d
JQ
941 sdl_cflags=`sdl-config --cflags 2> /dev/null`
942 sdl_libs=`sdl-config --libs 2> /dev/null`
52166aa0 943 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
ac119f9d
JQ
944 _sdlversion=`sdl-config --version | sed 's/[^0-9]//g'`
945 if test "$_sdlversion" -lt 121 ; then
946 sdl_too_old=yes
947 else
948 if test "$cocoa" = "no" ; then
949 sdl=yes
950 fi
951 fi
cd01b4a3 952
ac119f9d
JQ
953 # static link with sdl ?
954 if test "$sdl" = "yes" -a "$static" = "yes" ; then
955 sdl_libs=`sdl-config --static-libs 2>/dev/null`
956 if test `sdl-config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` ; then
957 sdl_libs="$sdl_libs `aalib-config --static-libs >2 /dev/null`"
958 sdl_cflags="$sd_cflags `aalib-config --cflags >2 /dev/null`"
959 fi
52166aa0 960 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
ac119f9d
JQ
961 :
962 else
963 sdl=no
964 fi
965 fi # static link
c4198157
JQ
966 else # sdl not found
967 if test "$sdl" = "yes" ; then
968 feature_not_found "sdl"
969 fi
970 sdl=no
ac119f9d 971 fi # sdl compile test
a68551bc 972fi
11d9f695 973
5368a422 974if test "$sdl" = "yes" ; then
ac119f9d 975 cat > $TMPC <<EOF
5368a422
AL
976#include <SDL.h>
977#if defined(SDL_VIDEO_DRIVER_X11)
978#include <X11/XKBlib.h>
979#else
980#error No x11 support
981#endif
982int main(void) { return 0; }
983EOF
52166aa0 984 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
ac119f9d
JQ
985 sdl_libs="$sdl_libs -lX11"
986 fi
07d9ac44
JQ
987 if test "$mingw32" = "yes" ; then
988 sdl_libs="`echo $sdl_libs | sed s/-mwindows//g` -mconsole"
989 fi
0705667e 990 libs_softmmu="$sdl_libs $libs_softmmu"
5368a422
AL
991fi
992
8d5d2d4c
TS
993##########################################
994# VNC TLS detection
1be10ad2
JQ
995if test "$vnc_tls" != "no" ; then
996 cat > $TMPC <<EOF
ae6b5e5a
AL
997#include <gnutls/gnutls.h>
998int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
999EOF
1be10ad2
JQ
1000 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
1001 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
1002 if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
1003 vnc_tls=yes
1004 libs_softmmu="$vnc_tls_libs $libs_softmmu"
1005 else
1006 if test "$vnc_tls" = "yes" ; then
1007 feature_not_found "vnc-tls"
ae6b5e5a 1008 fi
1be10ad2
JQ
1009 vnc_tls=no
1010 fi
8d5d2d4c
TS
1011fi
1012
2f9606b3
AL
1013##########################################
1014# VNC SASL detection
3aefa744 1015if test "$vnc_sasl" != "no" ; then
ea784e3b 1016 cat > $TMPC <<EOF
2f9606b3
AL
1017#include <sasl/sasl.h>
1018#include <stdio.h>
1019int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
1020EOF
ea784e3b
JQ
1021 # Assuming Cyrus-SASL installed in /usr prefix
1022 vnc_sasl_cflags=""
1023 vnc_sasl_libs="-lsasl2"
1024 if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
1025 vnc_sasl=yes
1026 libs_softmmu="$vnc_sasl_libs $libs_softmmu"
1027 else
1028 if test "$vnc_sasl" = "yes" ; then
1029 feature_not_found "vnc-sasl"
2f9606b3 1030 fi
ea784e3b
JQ
1031 vnc_sasl=no
1032 fi
2f9606b3
AL
1033fi
1034
76655d6d
AL
1035##########################################
1036# fnmatch() probe, used for ACL routines
1037fnmatch="no"
1038cat > $TMPC << EOF
1039#include <fnmatch.h>
1040int main(void)
1041{
1042 fnmatch("foo", "foo", 0);
1043 return 0;
1044}
1045EOF
52166aa0 1046if compile_prog "" "" ; then
76655d6d
AL
1047 fnmatch="yes"
1048fi
1049
8a16d273
TS
1050##########################################
1051# vde libraries probe
dfb278bd 1052if test "$vde" != "no" ; then
4baae0ac 1053 vde_libs="-lvdeplug"
8a16d273
TS
1054 cat > $TMPC << EOF
1055#include <libvdeplug.h>
4a7f0e06
PB
1056int main(void)
1057{
1058 struct vde_open_args a = {0, 0, 0};
1059 vde_open("", "", &a);
1060 return 0;
1061}
8a16d273 1062EOF
52166aa0 1063 if compile_prog "" "$vde_libs" ; then
4baae0ac 1064 vde=yes
8e02e54c
JQ
1065 libs_softmmu="$vde_libs $libs_softmmu"
1066 libs_tools="$vde_libs $libs_tools"
dfb278bd
JQ
1067 else
1068 if test "$vde" = "yes" ; then
1069 feature_not_found "vde"
1070 fi
1071 vde=no
4baae0ac 1072 fi
8a16d273
TS
1073fi
1074
8f28f3fb 1075##########################################
c2de5c91 1076# Sound support libraries probe
8f28f3fb 1077
c2de5c91 1078audio_drv_probe()
1079{
1080 drv=$1
1081 hdr=$2
1082 lib=$3
1083 exp=$4
1084 cfl=$5
1085 cat > $TMPC << EOF
1086#include <$hdr>
1087int main(void) { $exp }
8f28f3fb 1088EOF
52166aa0 1089 if compile_prog "$cfl" "$lib" ; then
c2de5c91 1090 :
1091 else
1092 echo
1093 echo "Error: $drv check failed"
1094 echo "Make sure to have the $drv libs and headers installed."
1095 echo
1096 exit 1
1097 fi
1098}
1099
2fa7d3bf 1100audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
c2de5c91 1101for drv in $audio_drv_list; do
1102 case $drv in
1103 alsa)
1104 audio_drv_probe $drv alsa/asoundlib.h -lasound \
1105 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
a4bf6780 1106 libs_softmmu="-lasound $libs_softmmu"
c2de5c91 1107 ;;
1108
1109 fmod)
1110 if test -z $fmod_lib || test -z $fmod_inc; then
1111 echo
1112 echo "Error: You must specify path to FMOD library and headers"
1113 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1114 echo
1115 exit 1
1116 fi
1117 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
a4bf6780 1118 libs_softmmu="$fmod_lib $libs_softmmu"
c2de5c91 1119 ;;
1120
1121 esd)
1122 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
a4bf6780 1123 libs_softmmu="-lesd $libs_softmmu"
67f86e8e 1124 audio_pt_int="yes"
c2de5c91 1125 ;;
b8e59f18 1126
1127 pa)
1128 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
1129 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
a4bf6780 1130 libs_softmmu="-lpulse-simple $libs_softmmu"
67f86e8e 1131 audio_pt_int="yes"
b8e59f18 1132 ;;
1133
997e690a
JQ
1134 coreaudio)
1135 libs_softmmu="-framework CoreAudio $libs_softmmu"
1136 ;;
1137
a4bf6780
JQ
1138 dsound)
1139 libs_softmmu="-lole32 -ldxguid $libs_softmmu"
1140 ;;
1141
1142 oss)
1143 libs_softmmu="$oss_lib $libs_softmmu"
1144 ;;
1145
1146 sdl|wav)
2f6a1ab0
BS
1147 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1148 ;;
1149
e4c63a6a 1150 *)
1c9b2a52 1151 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
e4c63a6a 1152 echo
1153 echo "Error: Unknown driver '$drv' selected"
1154 echo "Possible drivers are: $audio_possible_drivers"
1155 echo
1156 exit 1
1157 }
1158 ;;
c2de5c91 1159 esac
1160done
8f28f3fb 1161
2e4d9fb1
AJ
1162##########################################
1163# BrlAPI probe
1164
4ffcedb6 1165if test "$brlapi" != "no" ; then
eb82284f
JQ
1166 brlapi_libs="-lbrlapi"
1167 cat > $TMPC << EOF
2e4d9fb1
AJ
1168#include <brlapi.h>
1169int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1170EOF
52166aa0 1171 if compile_prog "" "$brlapi_libs" ; then
eb82284f 1172 brlapi=yes
264606b3 1173 libs_softmmu="$brlapi_libs $libs_softmmu"
4ffcedb6
JQ
1174 else
1175 if test "$brlapi" = "yes" ; then
1176 feature_not_found "brlapi"
1177 fi
1178 brlapi=no
eb82284f
JQ
1179 fi
1180fi
2e4d9fb1 1181
4d3b6f6e
AZ
1182##########################################
1183# curses probe
4f78ef9a 1184curses_list="-lncurses -lcurses"
4d3b6f6e 1185
c584a6d0
JQ
1186if test "$curses" != "no" ; then
1187 curses_found=no
4d3b6f6e
AZ
1188 cat > $TMPC << EOF
1189#include <curses.h>
5a8ff3aa
BS
1190#ifdef __OpenBSD__
1191#define resize_term resizeterm
1192#endif
1193int main(void) { resize_term(0, 0); return curses_version(); }
4d3b6f6e 1194EOF
4f78ef9a
JQ
1195 for curses_lib in $curses_list; do
1196 if compile_prog "" "$curses_lib" ; then
c584a6d0 1197 curses_found=yes
4f78ef9a
JQ
1198 libs_softmmu="$curses_lib $libs_softmmu"
1199 break
1200 fi
1201 done
c584a6d0
JQ
1202 if test "$curses_found" = "yes" ; then
1203 curses=yes
1204 else
1205 if test "$curses" = "yes" ; then
1206 feature_not_found "curses"
1207 fi
1208 curses=no
1209 fi
4f78ef9a 1210fi
4d3b6f6e 1211
769ce76d
AG
1212##########################################
1213# curl probe
1214
788c8196 1215if test "$curl" != "no" ; then
769ce76d
AG
1216 cat > $TMPC << EOF
1217#include <curl/curl.h>
1218int main(void) { return curl_easy_init(); }
1219EOF
b1d5a277 1220 curl_cflags=`curl-config --cflags 2>/dev/null`
52368552 1221 curl_libs=`curl-config --libs 2>/dev/null`
b1d5a277 1222 if compile_prog "$curl_cflags" "$curl_libs" ; then
769ce76d 1223 curl=yes
f0302935
JQ
1224 libs_tools="$curl_libs $libs_tools"
1225 libs_softmmu="$curl_libs $libs_softmmu"
788c8196
JQ
1226 else
1227 if test "$curl" = "yes" ; then
1228 feature_not_found "curl"
1229 fi
1230 curl=no
769ce76d
AG
1231 fi
1232fi # test "$curl"
1233
5495ed11
LC
1234##########################################
1235# check framework probe
1236
1237if test "$check_utests" != "no" ; then
1238 cat > $TMPC << EOF
1239#include <check.h>
1240int main(void) { suite_create("qemu test"); return 0; }
1241EOF
1242 check_libs=`pkg-config --libs check`
1243 if compile_prog "" $check_libs ; then
1244 check_utests=yes
1245 libs_tools="$check_libs $libs_tools"
1246 else
1247 if test "$check_utests" = "yes" ; then
1248 feature_not_found "check"
1249 fi
1250 check_utests=no
1251 fi
1252fi # test "$check_utests"
1253
fb599c9a
AZ
1254##########################################
1255# bluez support probe
a20a6f46 1256if test "$bluez" != "no" ; then
e820e3f4
AZ
1257 cat > $TMPC << EOF
1258#include <bluetooth/bluetooth.h>
1259int main(void) { return bt_error(0); }
1260EOF
efcfd0c5
BS
1261 bluez_cflags=`pkg-config --cflags bluez 2> /dev/null`
1262 bluez_libs=`pkg-config --libs bluez 2> /dev/null`
52166aa0 1263 if compile_prog "$bluez_cflags" "$bluez_libs" ; then
a20a6f46 1264 bluez=yes
e482d56a 1265 libs_softmmu="$bluez_libs $libs_softmmu"
e820e3f4 1266 else
a20a6f46
JQ
1267 if test "$bluez" = "yes" ; then
1268 feature_not_found "bluez"
1269 fi
e820e3f4
AZ
1270 bluez="no"
1271 fi
fb599c9a
AZ
1272fi
1273
7ba1e619
AL
1274##########################################
1275# kvm probe
b31a0277 1276if test "$kvm" != "no" ; then
7ba1e619
AL
1277 cat > $TMPC <<EOF
1278#include <linux/kvm.h>
9fd8d8d7 1279#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
7ba1e619
AL
1280#error Invalid KVM version
1281#endif
9fd8d8d7
AL
1282#if !defined(KVM_CAP_USER_MEMORY)
1283#error Missing KVM capability KVM_CAP_USER_MEMORY
1284#endif
1285#if !defined(KVM_CAP_SET_TSS_ADDR)
1286#error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1287#endif
1288#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1289#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1290#endif
7ba1e619
AL
1291int main(void) { return 0; }
1292EOF
eac30262
AL
1293 if test "$kerneldir" != "" ; then
1294 kvm_cflags=-I"$kerneldir"/include
8444eb6e
AL
1295 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1296 -a -d "$kerneldir/arch/x86/include" ; then
1297 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
406b430d
AL
1298 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1299 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
8444eb6e
AL
1300 elif test -d "$kerneldir/arch/$cpu/include" ; then
1301 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1302 fi
eac30262
AL
1303 else
1304 kvm_cflags=""
1305 fi
52166aa0 1306 if compile_prog "$kvm_cflags" "" ; then
b31a0277 1307 kvm=yes
7ba1e619 1308 else
b31a0277
JQ
1309 if test "$kvm" = "yes" ; then
1310 if [ -x "`which awk 2>/dev/null`" ] && \
1311 [ -x "`which grep 2>/dev/null`" ]; then
1312 kvmerr=`LANG=C $cc $QEMU_CFLAGS -o $TMPE $kvm_cflags $TMPC 2>&1 \
9fd8d8d7
AL
1313 | grep "error: " \
1314 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
b31a0277
JQ
1315 if test "$kvmerr" != "" ; then
1316 echo -e "${kvmerr}\n\
1317 NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \
1318 recent kvm-kmod from http://sourceforge.net/projects/kvm."
1319 fi
9fd8d8d7 1320 fi
b31a0277 1321 feature_not_found "kvm"
9fd8d8d7 1322 fi
b31a0277 1323 kvm=no
7ba1e619
AL
1324 fi
1325fi
1326
414f0dab 1327##########################################
e5d355d1 1328# pthread probe
de65fe0f 1329PTHREADLIBS_LIST="-lpthread -lpthreadGC2"
3c529d93 1330
4dd75c70 1331pthread=no
e5d355d1 1332cat > $TMPC << EOF
3c529d93 1333#include <pthread.h>
de65fe0f 1334int main(void) { pthread_create(0,0,0,0); return 0; }
414f0dab 1335EOF
4dd75c70
CH
1336for pthread_lib in $PTHREADLIBS_LIST; do
1337 if compile_prog "" "$pthread_lib" ; then
1338 pthread=yes
1339 LIBS="$pthread_lib $LIBS"
1340 break
1341 fi
1342done
414f0dab 1343
4617e593 1344if test "$mingw32" != yes -a "$pthread" = no; then
4dd75c70
CH
1345 echo
1346 echo "Error: pthread check failed"
1347 echo "Make sure to have the pthread libs and headers installed."
1348 echo
1349 exit 1
e5d355d1
AL
1350fi
1351
5c6c3a6c
CH
1352##########################################
1353# linux-aio probe
1354AIOLIBS=""
1355
1356if test "$linux_aio" != "no" ; then
1357 cat > $TMPC <<EOF
1358#include <libaio.h>
1359#include <sys/eventfd.h>
1360int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
1361EOF
1362 if compile_prog "" "-laio" ; then
1363 linux_aio=yes
1364 LIBS="$LIBS -laio"
1365 else
1366 if test "$linux_aio" = "yes" ; then
1367 feature_not_found "linux AIO"
1368 fi
3cfcae3c 1369 linux_aio=no
5c6c3a6c
CH
1370 fi
1371fi
1372
bf9298b9
AL
1373##########################################
1374# iovec probe
1375cat > $TMPC <<EOF
db34f0b3 1376#include <sys/types.h>
bf9298b9 1377#include <sys/uio.h>
db34f0b3 1378#include <unistd.h>
bf9298b9
AL
1379int main(void) { struct iovec iov; return 0; }
1380EOF
1381iovec=no
52166aa0 1382if compile_prog "" "" ; then
bf9298b9
AL
1383 iovec=yes
1384fi
1385
ceb42de8
AL
1386##########################################
1387# preadv probe
1388cat > $TMPC <<EOF
1389#include <sys/types.h>
1390#include <sys/uio.h>
1391#include <unistd.h>
1392int main(void) { preadv; }
1393EOF
1394preadv=no
52166aa0 1395if compile_prog "" "" ; then
ceb42de8
AL
1396 preadv=yes
1397fi
1398
f652e6af
AJ
1399##########################################
1400# fdt probe
2df87df7 1401if test "$fdt" != "no" ; then
b41af4ba
JQ
1402 fdt_libs="-lfdt"
1403 cat > $TMPC << EOF
f652e6af
AJ
1404int main(void) { return 0; }
1405EOF
52166aa0 1406 if compile_prog "" "$fdt_libs" ; then
f652e6af 1407 fdt=yes
e4782985 1408 libs_softmmu="$fdt_libs $libs_softmmu"
2df87df7
JQ
1409 else
1410 if test "$fdt" = "yes" ; then
1411 feature_not_found "fdt"
1412 fi
1413 fdt=no
f652e6af
AJ
1414 fi
1415fi
1416
3b3f24ad
AJ
1417#
1418# Check for xxxat() functions when we are building linux-user
1419# emulator. This is done because older glibc versions don't
1420# have syscall stubs for these implemented.
1421#
1422atfile=no
67ba57f6 1423cat > $TMPC << EOF
3b3f24ad
AJ
1424#define _ATFILE_SOURCE
1425#include <sys/types.h>
1426#include <fcntl.h>
1427#include <unistd.h>
1428
1429int
1430main(void)
1431{
1432 /* try to unlink nonexisting file */
1433 return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1434}
1435EOF
52166aa0 1436if compile_prog "" "" ; then
67ba57f6 1437 atfile=yes
3b3f24ad
AJ
1438fi
1439
39386ac7 1440# Check for inotify functions when we are building linux-user
3b3f24ad
AJ
1441# emulator. This is done because older glibc versions don't
1442# have syscall stubs for these implemented. In that case we
1443# don't provide them even if kernel supports them.
1444#
1445inotify=no
67ba57f6 1446cat > $TMPC << EOF
3b3f24ad
AJ
1447#include <sys/inotify.h>
1448
1449int
1450main(void)
1451{
1452 /* try to start inotify */
8690e420 1453 return inotify_init();
3b3f24ad
AJ
1454}
1455EOF
52166aa0 1456if compile_prog "" "" ; then
67ba57f6 1457 inotify=yes
3b3f24ad
AJ
1458fi
1459
ebc996f3
RV
1460# check if utimensat and futimens are supported
1461utimens=no
1462cat > $TMPC << EOF
1463#define _ATFILE_SOURCE
1464#define _GNU_SOURCE
1465#include <stddef.h>
1466#include <fcntl.h>
1467
1468int main(void)
1469{
1470 utimensat(AT_FDCWD, "foo", NULL, 0);
1471 futimens(0, NULL);
1472 return 0;
1473}
1474EOF
52166aa0 1475if compile_prog "" "" ; then
ebc996f3
RV
1476 utimens=yes
1477fi
1478
099d6b0f
RV
1479# check if pipe2 is there
1480pipe2=no
1481cat > $TMPC << EOF
1482#define _GNU_SOURCE
1483#include <unistd.h>
1484#include <fcntl.h>
1485
1486int main(void)
1487{
1488 int pipefd[2];
1489 pipe2(pipefd, O_CLOEXEC);
1490 return 0;
1491}
1492EOF
52166aa0 1493if compile_prog "" "" ; then
099d6b0f
RV
1494 pipe2=yes
1495fi
1496
3ce34dfb 1497# check if tee/splice is there. vmsplice was added same time.
1498splice=no
1499cat > $TMPC << EOF
1500#define _GNU_SOURCE
1501#include <unistd.h>
1502#include <fcntl.h>
1503#include <limits.h>
1504
1505int main(void)
1506{
1507 int len, fd;
1508 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
1509 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
1510 return 0;
1511}
1512EOF
52166aa0 1513if compile_prog "" "" ; then
3ce34dfb 1514 splice=yes
1515fi
1516
c2882b96
RV
1517# check if eventfd is supported
1518eventfd=no
1519cat > $TMPC << EOF
1520#include <sys/eventfd.h>
1521
1522int main(void)
1523{
1524 int efd = eventfd(0, 0);
1525 return 0;
1526}
1527EOF
1528if compile_prog "" "" ; then
1529 eventfd=yes
1530fi
1531
cc8ae6de 1532# Check if tools are available to build documentation.
a25dba17 1533if test "$docs" != "no" ; then
83a3ab8b
JQ
1534 if test -x "`which texi2html 2>/dev/null`" -a \
1535 -x "`which pod2man 2>/dev/null`" ; then
a25dba17 1536 docs=yes
83a3ab8b 1537 else
a25dba17
JQ
1538 if test "$docs" = "yes" ; then
1539 feature_not_found "docs"
83a3ab8b 1540 fi
a25dba17 1541 docs=no
83a3ab8b 1542 fi
cc8ae6de
PB
1543fi
1544
6ae9a1f4
JQ
1545# Search for bsawp_32 function
1546byteswap_h=no
1547cat > $TMPC << EOF
1548#include <byteswap.h>
1549int main(void) { return bswap_32(0); }
1550EOF
52166aa0 1551if compile_prog "" "" ; then
6ae9a1f4
JQ
1552 byteswap_h=yes
1553fi
1554
1555# Search for bsawp_32 function
1556bswap_h=no
1557cat > $TMPC << EOF
1558#include <sys/endian.h>
1559#include <sys/types.h>
1560#include <machine/bswap.h>
1561int main(void) { return bswap32(0); }
1562EOF
52166aa0 1563if compile_prog "" "" ; then
6ae9a1f4
JQ
1564 bswap_h=yes
1565fi
1566
da93a1fd
AL
1567##########################################
1568# Do we need librt
1569cat > $TMPC <<EOF
1570#include <signal.h>
1571#include <time.h>
1572int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1573EOF
1574
52166aa0 1575if compile_prog "" "" ; then
07ffa4bd 1576 :
52166aa0 1577elif compile_prog "" "-lrt" ; then
07ffa4bd 1578 LIBS="-lrt $LIBS"
da93a1fd
AL
1579fi
1580
a36abbbb
JQ
1581# Determine what linker flags to use to force archive inclusion
1582check_linker_flags()
1583{
1584 w2=
1585 if test "$2" ; then
1586 w2=-Wl,$2
1587 fi
52166aa0 1588 compile_prog "" "-Wl,$1 ${w2}"
a36abbbb
JQ
1589}
1590
1591cat > $TMPC << EOF
1592int main(void) { }
1593EOF
1594if check_linker_flags --whole-archive --no-whole-archive ; then
1595 # GNU ld
1596 arlibs_begin="-Wl,--whole-archive"
1597 arlibs_end="-Wl,--no-whole-archive"
1598elif check_linker_flags -z,allextract -z,defaultextract ; then
1599 # Solaris ld
31ff504d 1600 arlibs_begin="-Wl,-z,allextract"
a36abbbb
JQ
1601 arlibs_end="-Wl,-z,defaultextract"
1602elif check_linker_flags -all_load ; then
1603 # Mac OS X
1604 arlibs_begin="-all_load"
1605 arlibs_end=""
1606else
1607 echo "Error: your linker does not support --whole-archive or -z."
1608 echo "Please report to qemu-devel@nongnu.org"
1609 exit 1
1610fi
1611
31ff504d 1612if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
6362a53f
JQ
1613 "$aix" != "yes" ; then
1614 libs_softmmu="-lutil $libs_softmmu"
1615fi
1616
de5071c5
BS
1617##########################################
1618# check if the compiler defines offsetof
1619
1620need_offsetof=yes
1621cat > $TMPC << EOF
1622#include <stddef.h>
1623int main(void) { struct s { int f; }; return offsetof(struct s, f); }
1624EOF
1625if compile_prog "" "" ; then
1626 need_offsetof=no
1627fi
1628
5f6b9e8f
BS
1629##########################################
1630# check if we have fdatasync
1631
1632fdatasync=no
1633cat > $TMPC << EOF
1634#include <unistd.h>
1635int main(void) { return fdatasync(0); }
1636EOF
1637if compile_prog "" "" ; then
1638 fdatasync=yes
1639fi
1640
e86ecd4b
JQ
1641# End of CC checks
1642# After here, no more $cc or $ld runs
1643
1644# default flags for all hosts
a558ee17
JQ
1645QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
1646CFLAGS="-g $CFLAGS"
e86ecd4b 1647if test "$debug" = "no" ; then
1156c669 1648 CFLAGS="-O2 $CFLAGS"
e86ecd4b 1649fi
867c16fd
JQ
1650QEMU_CFLAGS="-Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
1651QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
6c90361a
JQ
1652QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
1653QEMU_CFLAGS="-U_FORTIFY_SOURCE $QEMU_CFLAGS"
1654QEMU_CFLAGS="-I. -I\$(SRC_PATH) -MMD -MP -MT \$@ $QEMU_CFLAGS"
1156c669 1655LDFLAGS="-g $LDFLAGS"
e86ecd4b
JQ
1656
1657# Consult white-list to determine whether to enable werror
1658# by default. Only enable by default for git builds
1659if test -z "$werror" ; then
1660 z_version=`cut -f3 -d. $source_path/VERSION`
1661 if test "$z_version" = "50" -a \
1662 "$linux" = "yes" ; then
1663 werror="yes"
1664 else
1665 werror="no"
1666 fi
1667fi
1668
1669if test "$werror" = "yes" ; then
a558ee17 1670 QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
e86ecd4b
JQ
1671fi
1672
1673if test "$solaris" = "no" ; then
1674 if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
1156c669 1675 LDFLAGS="-Wl,--warn-common $LDFLAGS"
e86ecd4b
JQ
1676 fi
1677fi
1678
11d9f695 1679if test "$mingw32" = "yes" ; then
308c3593 1680 if test -z "$prefix" ; then
55418b96 1681 prefix="c:/Program Files/Qemu"
308c3593
PB
1682 fi
1683 mansuffix=""
1684 datasuffix=""
1685 docsuffix=""
1686 binsuffix=""
11d9f695 1687else
308c3593
PB
1688 if test -z "$prefix" ; then
1689 prefix="/usr/local"
1690 fi
1691 mansuffix="/share/man"
1692 datasuffix="/share/qemu"
1693 docsuffix="/share/doc/qemu"
1694 binsuffix="/bin"
11d9f695 1695fi
5a67135a 1696
43ce4dfe 1697echo "Install prefix $prefix"
308c3593
PB
1698echo "BIOS directory $prefix$datasuffix"
1699echo "binary directory $prefix$binsuffix"
11d9f695 1700if test "$mingw32" = "no" ; then
308c3593 1701echo "Manual directory $prefix$mansuffix"
43ce4dfe 1702echo "ELF interp prefix $interp_prefix"
11d9f695 1703fi
5a67135a 1704echo "Source path $source_path"
43ce4dfe 1705echo "C compiler $cc"
83469015 1706echo "Host C compiler $host_cc"
0c439cbf 1707echo "CFLAGS $CFLAGS"
a558ee17 1708echo "QEMU_CFLAGS $QEMU_CFLAGS"
0c439cbf 1709echo "LDFLAGS $LDFLAGS"
43ce4dfe 1710echo "make $make"
6a882643 1711echo "install $install"
43ce4dfe 1712echo "host CPU $cpu"
de83cd02 1713echo "host big endian $bigendian"
97a847bc 1714echo "target list $target_list"
ade25b0d 1715echo "tcg debug enabled $debug_tcg"
43ce4dfe 1716echo "gprof enabled $gprof"
03b4fe7d 1717echo "sparse enabled $sparse"
1625af87 1718echo "strip binaries $strip_opt"
05c2a3e7 1719echo "profiler $profiler"
43ce4dfe 1720echo "static build $static"
85aa5189 1721echo "-Werror enabled $werror"
5b0753e0
FB
1722if test "$darwin" = "yes" ; then
1723 echo "Cocoa support $cocoa"
1724fi
97a847bc 1725echo "SDL support $sdl"
4d3b6f6e 1726echo "curses support $curses"
769ce76d 1727echo "curl support $curl"
5495ed11 1728echo "check support $check_utests"
67b915a5 1729echo "mingw32 support $mingw32"
0c58ac1c 1730echo "Audio drivers $audio_drv_list"
1731echo "Extra audio cards $audio_card_list"
8ff9cbf7 1732echo "Mixer emulation $mixemu"
8d5d2d4c 1733echo "VNC TLS support $vnc_tls"
2f9606b3 1734echo "VNC SASL support $vnc_sasl"
3142255c
BS
1735if test -n "$sparc_cpu"; then
1736 echo "Target Sparc Arch $sparc_cpu"
1737fi
e37630ca 1738echo "xen support $xen"
2e4d9fb1 1739echo "brlapi support $brlapi"
a20a6f46 1740echo "bluez support $bluez"
a25dba17 1741echo "Documentation $docs"
c5937220
PB
1742[ ! -z "$uname_release" ] && \
1743echo "uname -r $uname_release"
bd0c5661 1744echo "NPTL support $nptl"
379f6698 1745echo "GUEST_BASE $guest_base"
34005a00 1746echo "PIE user targets $user_pie"
8a16d273 1747echo "vde support $vde"
e5d355d1 1748echo "IO thread $io_thread"
5c6c3a6c 1749echo "Linux AIO support $linux_aio"
77755340 1750echo "Install blobs $blobs"
b31a0277 1751echo "KVM support $kvm"
f652e6af 1752echo "fdt support $fdt"
ceb42de8 1753echo "preadv support $preadv"
5f6b9e8f 1754echo "fdatasync $fdatasync"
67b915a5 1755
97a847bc 1756if test $sdl_too_old = "yes"; then
24b55b96 1757echo "-> Your SDL version is too old - please upgrade to have SDL support"
7c1f25b4 1758fi
7d13299d 1759
98ec69ac
JQ
1760config_host_mak="config-host.mak"
1761config_host_h="config-host.h"
4bf6b55b 1762config_host_ld="config-host.ld"
98ec69ac
JQ
1763
1764#echo "Creating $config_host_mak and $config_host_h"
1765
1766test -f $config_host_h && mv $config_host_h ${config_host_h}~
1767
1768echo "# Automatically generated by configure - do not modify" > $config_host_mak
1769printf "# Configured with:" >> $config_host_mak
1770printf " '%s'" "$0" "$@" >> $config_host_mak
1771echo >> $config_host_mak
98ec69ac 1772
2358a494 1773echo "CONFIG_QEMU_SHAREDIR=\"$prefix$datasuffix\"" >> $config_host_mak
804edf29 1774
2408a527 1775case "$cpu" in
c62bbcd3 1776 i386|x86_64|alpha|cris|hppa|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|s390|sparc|sparc64)
e0da9dd3 1777 ARCH=$cpu
2408a527 1778 ;;
a302c32d 1779 armv4b|armv4l)
16dbd14f 1780 ARCH=arm
2408a527 1781 ;;
2408a527
AJ
1782 *)
1783 echo "Unsupported CPU = $cpu"
1784 exit 1
1785 ;;
1786esac
98ec69ac 1787echo "ARCH=$ARCH" >> $config_host_mak
f8393946 1788if test "$debug_tcg" = "yes" ; then
2358a494 1789 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
f8393946 1790fi
f3d08ee6 1791if test "$debug" = "yes" ; then
2358a494 1792 echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak
f3d08ee6 1793fi
1625af87 1794if test "$strip_opt" = "yes" ; then
98ec69ac 1795 echo "STRIP_OPT=-s" >> $config_host_mak
1625af87 1796fi
7d13299d 1797if test "$bigendian" = "yes" ; then
e2542fe2 1798 echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
97a847bc 1799fi
2358a494 1800echo "HOST_LONG_BITS=$hostlongbits" >> $config_host_mak
67b915a5 1801if test "$mingw32" = "yes" ; then
98ec69ac 1802 echo "CONFIG_WIN32=y" >> $config_host_mak
210fa556 1803else
35f4df27 1804 echo "CONFIG_POSIX=y" >> $config_host_mak
67b915a5 1805fi
128ab2ff 1806
83fb7adf 1807if test "$darwin" = "yes" ; then
98ec69ac 1808 echo "CONFIG_DARWIN=y" >> $config_host_mak
83fb7adf 1809fi
b29fe3ed 1810
1811if test "$aix" = "yes" ; then
98ec69ac 1812 echo "CONFIG_AIX=y" >> $config_host_mak
b29fe3ed 1813fi
1814
ec530c81 1815if test "$solaris" = "yes" ; then
98ec69ac 1816 echo "CONFIG_SOLARIS=y" >> $config_host_mak
2358a494 1817 echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
0475a5ca 1818 if test "$needs_libsunmath" = "yes" ; then
75b5a697 1819 echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
0475a5ca 1820 fi
ec530c81 1821fi
97a847bc 1822if test "$static" = "yes" ; then
98ec69ac 1823 echo "CONFIG_STATIC=y" >> $config_host_mak
1156c669 1824 LDFLAGS="-static $LDFLAGS"
7d13299d 1825fi
05c2a3e7 1826if test $profiler = "yes" ; then
2358a494 1827 echo "CONFIG_PROFILER=y" >> $config_host_mak
05c2a3e7 1828fi
c20709aa 1829if test "$slirp" = "yes" ; then
98ec69ac 1830 echo "CONFIG_SLIRP=y" >> $config_host_mak
4de67f2f 1831 CFLAGS="-I\$(SRC_PATH)/slirp $CFLAGS"
c20709aa 1832fi
8a16d273 1833if test "$vde" = "yes" ; then
98ec69ac 1834 echo "CONFIG_VDE=y" >> $config_host_mak
8a16d273 1835fi
0c58ac1c 1836for card in $audio_card_list; do
f6e5889e 1837 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
98ec69ac 1838 echo "$def=y" >> $config_host_mak
0c58ac1c 1839done
2358a494 1840echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
0c58ac1c 1841for drv in $audio_drv_list; do
f6e5889e 1842 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
98ec69ac 1843 echo "$def=y" >> $config_host_mak
923e4521 1844 if test "$drv" = "fmod"; then
7aac6cb1 1845 echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
0c58ac1c 1846 fi
1847done
67f86e8e
JQ
1848if test "$audio_pt_int" = "yes" ; then
1849 echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
1850fi
8ff9cbf7 1851if test "$mixemu" = "yes" ; then
98ec69ac 1852 echo "CONFIG_MIXEMU=y" >> $config_host_mak
8ff9cbf7 1853fi
8d5d2d4c 1854if test "$vnc_tls" = "yes" ; then
98ec69ac 1855 echo "CONFIG_VNC_TLS=y" >> $config_host_mak
525061bf 1856 echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
8d5d2d4c 1857fi
2f9606b3 1858if test "$vnc_sasl" = "yes" ; then
98ec69ac 1859 echo "CONFIG_VNC_SASL=y" >> $config_host_mak
60ddf533 1860 echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
2f9606b3 1861fi
76655d6d 1862if test "$fnmatch" = "yes" ; then
2358a494 1863 echo "CONFIG_FNMATCH=y" >> $config_host_mak
76655d6d 1864fi
b1a550a0 1865qemu_version=`head $source_path/VERSION`
98ec69ac 1866echo "VERSION=$qemu_version" >>$config_host_mak
2358a494 1867echo "PKGVERSION=$pkgversion" >>$config_host_mak
98ec69ac 1868echo "SRC_PATH=$source_path" >> $config_host_mak
ad064840 1869if [ "$source_path_used" = "yes" ]; then
98ec69ac 1870 echo "VPATH=$source_path" >> $config_host_mak
ad064840 1871fi
98ec69ac 1872echo "TARGET_DIRS=$target_list" >> $config_host_mak
a25dba17 1873if [ "$docs" = "yes" ] ; then
98ec69ac 1874 echo "BUILD_DOCS=yes" >> $config_host_mak
cc8ae6de 1875fi
1ac88f28 1876if test "$sdl" = "yes" ; then
98ec69ac 1877 echo "CONFIG_SDL=y" >> $config_host_mak
1ac88f28 1878 echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
49ecc3fa
FB
1879fi
1880if test "$cocoa" = "yes" ; then
98ec69ac 1881 echo "CONFIG_COCOA=y" >> $config_host_mak
4d3b6f6e
AZ
1882fi
1883if test "$curses" = "yes" ; then
98ec69ac 1884 echo "CONFIG_CURSES=y" >> $config_host_mak
49ecc3fa 1885fi
3b3f24ad 1886if test "$atfile" = "yes" ; then
2358a494 1887 echo "CONFIG_ATFILE=y" >> $config_host_mak
3b3f24ad 1888fi
ebc996f3 1889if test "$utimens" = "yes" ; then
2358a494 1890 echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
ebc996f3 1891fi
099d6b0f 1892if test "$pipe2" = "yes" ; then
2358a494 1893 echo "CONFIG_PIPE2=y" >> $config_host_mak
099d6b0f 1894fi
3ce34dfb 1895if test "$splice" = "yes" ; then
2358a494 1896 echo "CONFIG_SPLICE=y" >> $config_host_mak
3ce34dfb 1897fi
c2882b96
RV
1898if test "$eventfd" = "yes" ; then
1899 echo "CONFIG_EVENTFD=y" >> $config_host_mak
1900fi
3b3f24ad 1901if test "$inotify" = "yes" ; then
2358a494 1902 echo "CONFIG_INOTIFY=y" >> $config_host_mak
3b3f24ad 1903fi
6ae9a1f4
JQ
1904if test "$byteswap_h" = "yes" ; then
1905 echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
1906fi
1907if test "$bswap_h" = "yes" ; then
1908 echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
1909fi
769ce76d 1910if test "$curl" = "yes" ; then
98ec69ac 1911 echo "CONFIG_CURL=y" >> $config_host_mak
b1d5a277 1912 echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
769ce76d 1913fi
2e4d9fb1 1914if test "$brlapi" = "yes" ; then
98ec69ac 1915 echo "CONFIG_BRLAPI=y" >> $config_host_mak
2e4d9fb1 1916fi
fb599c9a 1917if test "$bluez" = "yes" ; then
98ec69ac 1918 echo "CONFIG_BLUEZ=y" >> $config_host_mak
ef7635ec 1919 echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
fb599c9a 1920fi
e37630ca 1921if test "$xen" = "yes" ; then
5647eb74 1922 echo "CONFIG_XEN=y" >> $config_host_mak
e37630ca 1923fi
e5d355d1 1924if test "$io_thread" = "yes" ; then
98ec69ac 1925 echo "CONFIG_IOTHREAD=y" >> $config_host_mak
e5d355d1 1926fi
5c6c3a6c
CH
1927if test "$linux_aio" = "yes" ; then
1928 echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
1929fi
77755340 1930if test "$blobs" = "yes" ; then
98ec69ac 1931 echo "INSTALL_BLOBS=yes" >> $config_host_mak
77755340 1932fi
bf9298b9 1933if test "$iovec" = "yes" ; then
2358a494 1934 echo "CONFIG_IOVEC=y" >> $config_host_mak
bf9298b9 1935fi
ceb42de8 1936if test "$preadv" = "yes" ; then
2358a494 1937 echo "CONFIG_PREADV=y" >> $config_host_mak
ceb42de8 1938fi
f652e6af 1939if test "$fdt" = "yes" ; then
3f0855b1 1940 echo "CONFIG_FDT=y" >> $config_host_mak
f652e6af 1941fi
de5071c5
BS
1942if test "$need_offsetof" = "yes" ; then
1943 echo "CONFIG_NEED_OFFSETOF=y" >> $config_host_mak
1944fi
5f6b9e8f
BS
1945if test "$fdatasync" = "yes" ; then
1946 echo "CONFIG_FDATASYNC=y" >> $config_host_mak
1947fi
97a847bc 1948
83fb7adf 1949# XXX: suppress that
7d3505c5 1950if [ "$bsd" = "yes" ] ; then
2358a494 1951 echo "CONFIG_BSD=y" >> $config_host_mak
7d3505c5
FB
1952fi
1953
2358a494 1954echo "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak
c5937220 1955
68063649
BS
1956# USB host support
1957case "$usb" in
1958linux)
98ec69ac 1959 echo "HOST_USB=linux" >> $config_host_mak
68063649
BS
1960;;
1961bsd)
98ec69ac 1962 echo "HOST_USB=bsd" >> $config_host_mak
68063649
BS
1963;;
1964*)
98ec69ac 1965 echo "HOST_USB=stub" >> $config_host_mak
68063649
BS
1966;;
1967esac
1968
c39e3338
PB
1969tools=
1970if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
3dd1f8ef 1971 tools="qemu-img\$(EXESUF) $tools"
7a5ca864 1972 if [ "$linux" = "yes" ] ; then
3dd1f8ef 1973 tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
5495ed11 1974 if [ "$check_utests" = "yes" ]; then
7b8c51ad 1975 tools="check-qint check-qstring check-qdict $tools"
5495ed11 1976 fi
c32d766a
SW
1977 elif test "$mingw32" = "yes" ; then
1978 tools="qemu-io\$(EXESUF) $tools"
7a5ca864 1979 fi
c39e3338 1980fi
98ec69ac 1981echo "TOOLS=$tools" >> $config_host_mak
c39e3338 1982
161294d8 1983# Mac OS X ships with a broken assembler
253d0942 1984roms=
161294d8 1985if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
b461cdc9
BS
1986 "$targetos" != "Darwin" -a \
1987 `expr "$target_list" : ".*softmmu.*"` != 0 ; then
c05ac895 1988 roms="optionrom"
253d0942 1989fi
98ec69ac 1990echo "ROMS=$roms" >> $config_host_mak
253d0942 1991
804edf29
JQ
1992echo "prefix=$prefix" >> $config_host_mak
1993echo "bindir=\${prefix}$binsuffix" >> $config_host_mak
1994echo "mandir=\${prefix}$mansuffix" >> $config_host_mak
1995echo "datadir=\${prefix}$datasuffix" >> $config_host_mak
1996echo "docdir=\${prefix}$docsuffix" >> $config_host_mak
1997echo "MAKE=$make" >> $config_host_mak
1998echo "INSTALL=$install" >> $config_host_mak
1999echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak
2000echo "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak
2001echo "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak
2002echo "CC=$cc" >> $config_host_mak
2003echo "HOST_CC=$host_cc" >> $config_host_mak
2004if test "$sparse" = "yes" ; then
2005 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak
2006 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak
a558ee17 2007 echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
804edf29
JQ
2008fi
2009echo "AR=$ar" >> $config_host_mak
2010echo "OBJCOPY=$objcopy" >> $config_host_mak
2011echo "LD=$ld" >> $config_host_mak
e2a2ed06 2012echo "CFLAGS=$CFLAGS" >> $config_host_mak
a558ee17 2013echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
c81da56e 2014echo "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak
e2a2ed06 2015echo "LDFLAGS=$LDFLAGS" >> $config_host_mak
a36abbbb
JQ
2016echo "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak
2017echo "ARLIBS_END=$arlibs_end" >> $config_host_mak
73da375e 2018echo "LIBS+=$LIBS" >> $config_host_mak
3e2e0e6b 2019echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
804edf29 2020echo "EXESUF=$EXESUF" >> $config_host_mak
804edf29 2021
2358a494
JQ
2022echo "/* Automatically generated by configure - do not modify */" > $config_host_h
2023
aa0cba4a 2024/bin/sh $source_path/create_config < $config_host_mak >> $config_host_h
2358a494 2025
98ec69ac
JQ
2026if test -f ${config_host_h}~ ; then
2027 if cmp -s $config_host_h ${config_host_h}~ ; then
2028 mv ${config_host_h}~ $config_host_h
370ab986 2029 else
98ec69ac 2030 rm ${config_host_h}~
370ab986
PB
2031 fi
2032fi
2033
4bf6b55b
JQ
2034# generate list of library paths for linker script
2035
2036$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld}
2037
2038if test -f ${config_host_ld}~ ; then
2039 if cmp -s $config_host_ld ${config_host_ld}~ ; then
2040 mv ${config_host_ld}~ $config_host_ld
2041 else
2042 rm ${config_host_ld}~
2043 fi
2044fi
2045
1d14ffa9 2046for target in $target_list; do
97a847bc
FB
2047target_dir="$target"
2048config_mak=$target_dir/config.mak
2049config_h=$target_dir/config.h
600309b6 2050target_arch2=`echo $target | cut -d '-' -f 1`
97a847bc 2051target_bigendian="no"
ea2d6a39
JQ
2052case "$target_arch2" in
2053 armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|sh4eb|sparc|sparc64|sparc32plus)
2054 target_bigendian=yes
2055 ;;
2056esac
97a847bc 2057target_softmmu="no"
997344f3 2058target_user_only="no"
831b7825 2059target_linux_user="no"
831b7825 2060target_darwin_user="no"
84778508 2061target_bsd_user="no"
9e407a85 2062case "$target" in
600309b6 2063 ${target_arch2}-softmmu)
9e407a85
PB
2064 target_softmmu="yes"
2065 ;;
600309b6 2066 ${target_arch2}-linux-user)
9e407a85
PB
2067 target_user_only="yes"
2068 target_linux_user="yes"
2069 ;;
600309b6 2070 ${target_arch2}-darwin-user)
9e407a85
PB
2071 target_user_only="yes"
2072 target_darwin_user="yes"
2073 ;;
600309b6 2074 ${target_arch2}-bsd-user)
84778508
BS
2075 target_user_only="yes"
2076 target_bsd_user="yes"
2077 ;;
9e407a85
PB
2078 *)
2079 echo "ERROR: Target '$target' not recognised"
2080 exit 1
2081 ;;
2082esac
831b7825 2083
7c1f25b4 2084#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
97a847bc 2085
15d9ca0f
TS
2086test -f $config_h && mv $config_h ${config_h}~
2087
97a847bc 2088mkdir -p $target_dir
158142c2 2089mkdir -p $target_dir/fpu
57fec1fe 2090mkdir -p $target_dir/tcg
59f2a787 2091mkdir -p $target_dir/ide
84778508 2092if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
69de927c
FB
2093 mkdir -p $target_dir/nwfpe
2094fi
2095
ec530c81
FB
2096#
2097# don't use ln -sf as not all "ln -sf" over write the file/link
2098#
2099rm -f $target_dir/Makefile
2100ln -s $source_path/Makefile.target $target_dir/Makefile
2101
97a847bc
FB
2102
2103echo "# Automatically generated by configure - do not modify" > $config_mak
de83cd02 2104
97a847bc 2105echo "include ../config-host.mak" >> $config_mak
1e43adfc 2106
e5fe0c52 2107bflt="no"
cb33da57 2108elfload32="no"
bd0c5661 2109target_nptl="no"
600309b6 2110interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
42bc608b 2111echo "CONFIG_QEMU_PREFIX=\"$interp_prefix1\"" >> $config_mak
56aebc89 2112gdb_xml_files=""
7ba1e619 2113
938b1edd 2114TARGET_ARCH="$target_arch2"
6acff7da 2115TARGET_BASE_ARCH=""
e6e91b9c 2116TARGET_ABI_DIR=""
e73aae67 2117
600309b6 2118case "$target_arch2" in
2408a527 2119 i386)
1ad2134f 2120 target_phys_bits=32
2408a527
AJ
2121 ;;
2122 x86_64)
6acff7da 2123 TARGET_BASE_ARCH=i386
1ad2134f 2124 target_phys_bits=64
2408a527
AJ
2125 ;;
2126 alpha)
1ad2134f 2127 target_phys_bits=64
2408a527
AJ
2128 ;;
2129 arm|armeb)
b498c8a0 2130 TARGET_ARCH=arm
2408a527 2131 bflt="yes"
bd0c5661 2132 target_nptl="yes"
56aebc89 2133 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1ad2134f 2134 target_phys_bits=32
2408a527
AJ
2135 ;;
2136 cris)
253bd7f8 2137 target_nptl="yes"
1ad2134f 2138 target_phys_bits=32
2408a527
AJ
2139 ;;
2140 m68k)
2408a527 2141 bflt="yes"
56aebc89 2142 gdb_xml_files="cf-core.xml cf-fp.xml"
1ad2134f 2143 target_phys_bits=32
2408a527 2144 ;;
72b675ca 2145 microblaze)
72b675ca
EI
2146 bflt="yes"
2147 target_nptl="yes"
2148 target_phys_bits=32
2149 ;;
0adcffb1 2150 mips|mipsel)
b498c8a0 2151 TARGET_ARCH=mips
42bc608b 2152 echo "TARGET_ABI_MIPSO32=y" >> $config_mak
f04dc72f 2153 target_nptl="yes"
1ad2134f 2154 target_phys_bits=64
2408a527
AJ
2155 ;;
2156 mipsn32|mipsn32el)
b498c8a0 2157 TARGET_ARCH=mipsn32
6acff7da 2158 TARGET_BASE_ARCH=mips
42bc608b 2159 echo "TARGET_ABI_MIPSN32=y" >> $config_mak
1ad2134f 2160 target_phys_bits=64
2408a527
AJ
2161 ;;
2162 mips64|mips64el)
b498c8a0 2163 TARGET_ARCH=mips64
6acff7da 2164 TARGET_BASE_ARCH=mips
42bc608b 2165 echo "TARGET_ABI_MIPSN64=y" >> $config_mak
1ad2134f 2166 target_phys_bits=64
2408a527
AJ
2167 ;;
2168 ppc)
c8b3532d 2169 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2170 target_phys_bits=32
d6630708 2171 target_nptl="yes"
2408a527
AJ
2172 ;;
2173 ppcemb)
6acff7da 2174 TARGET_BASE_ARCH=ppc
e6e91b9c 2175 TARGET_ABI_DIR=ppc
c8b3532d 2176 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2177 target_phys_bits=64
d6630708 2178 target_nptl="yes"
2408a527
AJ
2179 ;;
2180 ppc64)
6acff7da 2181 TARGET_BASE_ARCH=ppc
e6e91b9c 2182 TARGET_ABI_DIR=ppc
c8b3532d 2183 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2184 target_phys_bits=64
2408a527
AJ
2185 ;;
2186 ppc64abi32)
b498c8a0 2187 TARGET_ARCH=ppc64
6acff7da 2188 TARGET_BASE_ARCH=ppc
e6e91b9c 2189 TARGET_ABI_DIR=ppc
42bc608b 2190 echo "TARGET_ABI32=y" >> $config_mak
c8b3532d 2191 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2192 target_phys_bits=64
2408a527
AJ
2193 ;;
2194 sh4|sh4eb)
b498c8a0 2195 TARGET_ARCH=sh4
2408a527 2196 bflt="yes"
0b6d3ae0 2197 target_nptl="yes"
1ad2134f 2198 target_phys_bits=32
2408a527
AJ
2199 ;;
2200 sparc)
1ad2134f 2201 target_phys_bits=64
2408a527
AJ
2202 ;;
2203 sparc64)
6acff7da 2204 TARGET_BASE_ARCH=sparc
2408a527 2205 elfload32="yes"
1ad2134f 2206 target_phys_bits=64
2408a527
AJ
2207 ;;
2208 sparc32plus)
b498c8a0 2209 TARGET_ARCH=sparc64
6acff7da 2210 TARGET_BASE_ARCH=sparc
e6e91b9c 2211 TARGET_ABI_DIR=sparc
42bc608b 2212 echo "TARGET_ABI32=y" >> $config_mak
1ad2134f 2213 target_phys_bits=64
2408a527
AJ
2214 ;;
2215 *)
2216 echo "Unsupported target CPU"
2217 exit 1
2218 ;;
2219esac
b498c8a0 2220echo "TARGET_ARCH=$TARGET_ARCH" >> $config_mak
053dd92e
JQ
2221target_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`"
2222echo "TARGET_$target_arch_name=y" >> $config_mak
0adcffb1 2223echo "TARGET_ARCH2=$target_arch2" >> $config_mak
42bc608b 2224# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
6acff7da
JQ
2225if [ "$TARGET_BASE_ARCH" = "" ]; then
2226 TARGET_BASE_ARCH=$TARGET_ARCH
6acff7da
JQ
2227fi
2228echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_mak
e6e91b9c
JQ
2229if [ "$TARGET_ABI_DIR" = "" ]; then
2230 TARGET_ABI_DIR=$TARGET_ARCH
2231fi
2232echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_mak
1ad2134f
PB
2233if [ $target_phys_bits -lt $hostlongbits ] ; then
2234 target_phys_bits=$hostlongbits
2235fi
1b0c87fc
JQ
2236case "$target_arch2" in
2237 i386|x86_64)
2238 if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
2239 echo "CONFIG_XEN=y" >> $config_mak
1b0c87fc
JQ
2240 fi
2241esac
c59249f9 2242case "$target_arch2" in
5f114bc6 2243 i386|x86_64|ppcemb|ppc|ppc64)
c59249f9
JQ
2244 # Make sure the target and host cpus are compatible
2245 if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
2246 \( "$target_arch2" = "$cpu" -o \
2247 \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
5f114bc6 2248 \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \
c59249f9
JQ
2249 \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \
2250 \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then
2251 echo "CONFIG_KVM=y" >> $config_mak
2252 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
c59249f9
JQ
2253 fi
2254esac
42bc608b 2255echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_mak
de83cd02 2256if test "$target_bigendian" = "yes" ; then
42bc608b 2257 echo "TARGET_WORDS_BIGENDIAN=y" >> $config_mak
de83cd02 2258fi
97a847bc 2259if test "$target_softmmu" = "yes" ; then
e34af2ce 2260 echo "CONFIG_SOFTMMU=y" >> $config_mak
73da375e 2261 echo "LIBS+=$libs_softmmu" >> $config_mak
5791f45b
KS
2262 echo "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak
2263 echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
43ce4dfe 2264fi
997344f3 2265if test "$target_user_only" = "yes" ; then
e34af2ce 2266 echo "CONFIG_USER_ONLY=y" >> $config_mak
997344f3 2267fi
831b7825 2268if test "$target_linux_user" = "yes" ; then
e34af2ce 2269 echo "CONFIG_LINUX_USER=y" >> $config_mak
831b7825
TS
2270fi
2271if test "$target_darwin_user" = "yes" ; then
e34af2ce 2272 echo "CONFIG_DARWIN_USER=y" >> $config_mak
831b7825 2273fi
56aebc89
PB
2274list=""
2275if test ! -z "$gdb_xml_files" ; then
2276 for x in $gdb_xml_files; do
2277 list="$list $source_path/gdb-xml/$x"
2278 done
2279fi
2280echo "TARGET_XML_FILES=$list" >> $config_mak
97a847bc 2281
f57975fb
JQ
2282case "$target_arch2" in
2283 arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|sparc|sparc64|sparc32plus)
2284 echo "CONFIG_SOFTFLOAT=y" >> $config_mak
f57975fb 2285 ;;
d6b38939
JQ
2286 *)
2287 echo "CONFIG_NOSOFTFLOAT=y" >> $config_mak
2288 ;;
f57975fb
JQ
2289esac
2290
e5fe0c52 2291if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
e34af2ce 2292 echo "TARGET_HAS_BFLT=y" >> $config_mak
e5fe0c52 2293fi
bd0c5661
PB
2294if test "$target_user_only" = "yes" \
2295 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
2f7bb878 2296 echo "CONFIG_USE_NPTL=y" >> $config_mak
bd0c5661 2297fi
cb33da57
BS
2298# 32 bit ELF loader in addition to native 64 bit loader?
2299if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
e34af2ce 2300 echo "TARGET_HAS_ELFLOAD32=y" >> $config_mak
cb33da57 2301fi
379f6698
PB
2302if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
2303 echo "CONFIG_USE_GUEST_BASE=y" >> $config_mak
2304fi
84778508 2305if test "$target_bsd_user" = "yes" ; then
e34af2ce 2306 echo "CONFIG_BSD_USER=y" >> $config_mak
84778508 2307fi
5b0753e0 2308
4afddb55 2309# generate QEMU_CFLAGS/LDFLAGS for targets
fa282484 2310
4afddb55 2311cflags=""
fa282484 2312ldflags=""
9b8e111f 2313
57ddfbf7
JQ
2314if test "$ARCH" = "sparc64" ; then
2315 cflags="-I\$(SRC_PATH)/tcg/sparc $cflags"
2316else
2317 cflags="-I\$(SRC_PATH)/tcg/\$(ARCH) $cflags"
2318fi
2319cflags="-I\$(SRC_PATH)/tcg $cflags"
2320cflags="-I\$(SRC_PATH)/fpu $cflags"
2321
64656024
JQ
2322for i in $ARCH $TARGET_BASE_ARCH ; do
2323 case "$i" in
2324 alpha)
2325 echo "CONFIG_ALPHA_DIS=y" >> $config_mak
2326 ;;
2327 arm)
2328 echo "CONFIG_ARM_DIS=y" >> $config_mak
2329 ;;
2330 cris)
2331 echo "CONFIG_CRIS_DIS=y" >> $config_mak
2332 ;;
2333 hppa)
2334 echo "CONFIG_HPPA_DIS=y" >> $config_mak
2335 ;;
2336 i386|x86_64)
2337 echo "CONFIG_I386_DIS=y" >> $config_mak
2338 ;;
2339 m68k)
2340 echo "CONFIG_M68K_DIS=y" >> $config_mak
2341 ;;
2342 microblaze)
2343 echo "CONFIG_MICROBLAZE_DIS=y" >> $config_mak
2344 ;;
2345 mips*)
2346 echo "CONFIG_MIPS_DIS=y" >> $config_mak
2347 ;;
2348 ppc*)
2349 echo "CONFIG_PPC_DIS=y" >> $config_mak
2350 ;;
2351 s390)
2352 echo "CONFIG_S390_DIS=y" >> $config_mak
2353 ;;
2354 sh4)
2355 echo "CONFIG_SH4_DIS=y" >> $config_mak
2356 ;;
2357 sparc*)
2358 echo "CONFIG_SPARC_DIS=y" >> $config_mak
2359 ;;
2360 esac
2361done
2362
6ee7126f
JQ
2363case "$ARCH" in
2364alpha)
2365 # Ensure there's only a single GP
2366 cflags="-msmall-data $cflags"
2367;;
c60d0afa
JQ
2368ia64)
2369 cflags="-mno-sdata $cflags"
2370;;
6ee7126f
JQ
2371esac
2372
55d9c04b
JQ
2373if test "$target_softmmu" = "yes" ; then
2374 case "$TARGET_BASE_ARCH" in
2375 arm)
2376 cflags="-DHAS_AUDIO $cflags"
2377 ;;
2378 i386|mips|ppc)
2379 cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags"
2380 ;;
2381 esac
2382fi
2383
34005a00 2384if test "$target_user_only" = "yes" -a "$static" = "no" -a \
50108930 2385 "$user_pie" = "yes" ; then
34005a00
KS
2386 cflags="-fpie $cflags"
2387 ldflags="-pie $ldflags"
2388fi
2389
471857dd
JQ
2390if test "$target_softmmu" = "yes" -a \( \
2391 "$TARGET_ARCH" = "microblaze" -o \
2392 "$TARGET_ARCH" = "cris" \) ; then
2393 echo "CONFIG_NEED_MMU=y" >> $config_mak
2394fi
2395
d02c1db3
JQ
2396if test "$gprof" = "yes" ; then
2397 echo "TARGET_GPROF=yes" >> $config_mak
2398 if test "$target_linux_user" = "yes" ; then
2399 cflags="-p $cflags"
2400 ldflags="-p $ldflags"
2401 fi
2402 if test "$target_softmmu" = "yes" ; then
2403 ldflags="-p $ldflags"
f622d8a3 2404 echo "GPROF_CFLAGS=-p" >> $config_mak
d02c1db3
JQ
2405 fi
2406fi
2407
6ee7126f 2408linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
9b8e111f 2409if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
fa282484 2410 case "$ARCH" in
fa282484
JQ
2411 sparc)
2412 # -static is used to avoid g1/g3 usage by the dynamic linker
322e5878 2413 ldflags="$linker_script -static $ldflags"
fa282484
JQ
2414 ;;
2415 ia64)
322e5878 2416 ldflags="-Wl,-G0 $linker_script -static $ldflags"
fa282484 2417 ;;
df70204d 2418 i386|x86_64|ppc|ppc64|s390|sparc64|alpha|arm|m68k|mips|mips64)
322e5878 2419 ldflags="$linker_script $ldflags"
fa282484
JQ
2420 ;;
2421 esac
2422fi
2423if test "$target_softmmu" = "yes" ; then
2424 case "$ARCH" in
2425 ia64)
322e5878 2426 ldflags="-Wl,-G0 $linker_script -static $ldflags"
fa282484
JQ
2427 ;;
2428 esac
2429fi
2430
07dac55d 2431echo "LDFLAGS+=$ldflags" >> $config_mak
4afddb55 2432echo "QEMU_CFLAGS+=$cflags" >> $config_mak
fa282484 2433
2358a494
JQ
2434echo "/* Automatically generated by configure - do not modify */" > $config_h
2435echo "#include \"../config-host.h\"" >> $config_h
2436
aa0cba4a 2437/bin/sh $source_path/create_config < $config_mak >> $config_h
42bc608b 2438
a900c002
JQ
2439if test -f ${config_h}~ ; then
2440 if cmp -s $config_h ${config_h}~ ; then
2441 mv ${config_h}~ $config_h
2442 else
2443 rm ${config_h}~
2444 fi
2445fi
15d9ca0f 2446
97a847bc 2447done # for target in $targets
7d13299d
FB
2448
2449# build tree in object directory if source path is different from current one
2450if test "$source_path_used" = "yes" ; then
253d0942 2451 DIRS="tests tests/cris slirp audio block pc-bios/optionrom"
c34ebfdc 2452 DIRS="$DIRS roms/pcbios roms/seabios roms/vgabios"
7d13299d 2453 FILES="Makefile tests/Makefile"
e7daa605 2454 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
e1ffb0f1 2455 FILES="$FILES tests/test-mmap.c"
7ea78b74 2456 FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps pc-bios/video.x"
c34ebfdc 2457 FILES="$FILES roms/pcbios/Makefile roms/seabios/Makefile roms/vgabios/Makefile"
7ea78b74
JK
2458 for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do
2459 FILES="$FILES pc-bios/`basename $bios_file`"
2460 done
7d13299d
FB
2461 for dir in $DIRS ; do
2462 mkdir -p $dir
2463 done
ec530c81 2464 # remove the link and recreate it, as not all "ln -sf" overwrite the link
7d13299d 2465 for f in $FILES ; do
ec530c81
FB
2466 rm -f $f
2467 ln -s $source_path/$f $f
7d13299d
FB
2468 done
2469fi
1ad2134f 2470
c34ebfdc
AL
2471# temporary config to build submodules
2472for rom in seabios vgabios pcbios; do
2473 config_mak=roms/$rom/config.mak
2474 echo "# Automatically generated by configure - do not modify" >> $config_mak
2475 echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
2476 echo "CC=$cc" >> $config_mak
2477 echo "BCC=bcc" >> $config_mak
2478 echo "CPP=${cross_prefix}cpp" >> $config_mak
2479 echo "OBJCOPY=objcopy" >> $config_mak
2480 echo "IASL=iasl" >> $config_mak
2481 echo "HOST_CC=$host_cc" >> $config_mak
2482 echo "LD=$ld" >> $config_mak
2483done
2484
1ad2134f
PB
2485for hwlib in 32 64; do
2486 d=libhw$hwlib
2487 mkdir -p $d
2488 rm -f $d/Makefile
2489 ln -s $source_path/Makefile.hw $d/Makefile
2490 echo "HWLIB=libqemuhw$hwlib.a" > $d/config.mak
a558ee17 2491 echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" >> $d/config.mak
1ad2134f 2492done
add16157
BS
2493
2494d=libuser
2495mkdir -p $d
2496rm -f $d/Makefile
2497ln -s $source_path/Makefile.user $d/Makefile