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