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