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