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