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