Add missing test for 'singlestep'
[qemu/hppa.git] / configure
blob507074aec4d68e78ad7685ba11acddfe632a2a72
1 #!/bin/sh
3 # qemu configure script (c) 2003 Fabrice Bellard
5 # set temporary file name
6 if test ! -z "$TMPDIR" ; then
7 TMPDIR1="${TMPDIR}"
8 elif test ! -z "$TEMPDIR" ; then
9 TMPDIR1="${TEMPDIR}"
10 else
11 TMPDIR1="/tmp"
14 TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
15 TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
16 TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}"
17 TMPS="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.S"
18 TMPI="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.i"
19 TMPSDLLOG="${TMPDIR1}/qemu-conf-sdl-$$-${RANDOM}.log"
21 trap "rm -f $TMPC $TMPO $TMPE $TMPS $TMPI $TMPSDLLOG; exit" 0 2 3 15
23 # default parameters
24 prefix=""
25 interp_prefix="/usr/gnemul/qemu-%M"
26 static="no"
27 cross_prefix=""
28 cc="gcc"
29 audio_drv_list=""
30 audio_card_list="ac97 es1370 sb16"
31 audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus"
32 host_cc="gcc"
33 ar="ar"
34 make="make"
35 install="install"
36 strip="strip"
38 # parse CC options first
39 for opt do
40 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
41 case "$opt" in
42 --cross-prefix=*) cross_prefix="$optarg"
44 --cc=*) cc="$optarg"
46 esac
47 done
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
53 cc="${cross_prefix}${cc}"
54 ar="${cross_prefix}${ar}"
55 strip="${cross_prefix}${strip}"
57 # check that the C compiler works.
58 cat > $TMPC <<EOF
59 int main(void) {}
60 EOF
62 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
63 : C compiler works ok
64 else
65 echo "ERROR: \"$cc\" either does not exist or does not work"
66 exit 1
69 check_define() {
70 cat > $TMPC <<EOF
71 #if !defined($1)
72 #error Not defined
73 #endif
74 int main(void) { return 0; }
75 EOF
76 $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
79 if check_define __i386__ ; then
80 cpu="i386"
81 elif check_define __x86_64__ ; then
82 cpu="x86_64"
83 elif 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"
91 elif check_define _ARCH_PPC ; then
92 if check_define _ARCH_PPC64 ; then
93 cpu="ppc64"
94 else
95 cpu="ppc"
97 else
98 cpu=`uname -m`
101 target_list=""
102 case "$cpu" in
103 i386|i486|i586|i686|i86pc|BePC)
104 cpu="i386"
106 x86_64|amd64)
107 cpu="x86_64"
109 alpha)
110 cpu="alpha"
112 armv*b)
113 cpu="armv4b"
115 armv*l)
116 cpu="armv4l"
118 cris)
119 cpu="cris"
121 parisc|parisc64)
122 cpu="hppa"
124 ia64)
125 cpu="ia64"
127 m68k)
128 cpu="m68k"
130 mips)
131 cpu="mips"
133 mips64)
134 cpu="mips64"
136 ppc)
137 cpu="ppc"
139 ppc64)
140 cpu="ppc64"
142 s390*)
143 cpu="s390"
145 sparc|sun4[cdmuv])
146 cpu="sparc"
148 sparc64)
149 cpu="sparc64"
152 cpu="unknown"
154 esac
155 gprof="no"
156 debug_tcg="no"
157 sparse="no"
158 strip_opt="yes"
159 bigendian="no"
160 mingw32="no"
161 EXESUF=""
162 gdbstub="yes"
163 slirp="yes"
164 vde="yes"
165 fmod_lib=""
166 fmod_inc=""
167 oss_lib=""
168 vnc_tls="yes"
169 vnc_sasl="yes"
170 bsd="no"
171 linux="no"
172 solaris="no"
173 kqemu="no"
174 profiler="no"
175 cocoa="no"
176 check_gfx="yes"
177 softmmu="yes"
178 linux_user="no"
179 darwin_user="no"
180 bsd_user="no"
181 build_docs="no"
182 uname_release=""
183 curses="yes"
184 pthread="yes"
185 aio="yes"
186 io_thread="no"
187 nptl="yes"
188 mixemu="no"
189 bluez="yes"
190 kvm="yes"
191 kerneldir=""
192 aix="no"
193 blobs="yes"
194 fdt="yes"
195 sdl_x11="no"
196 xen="yes"
197 pkgversion=""
199 # OS specific
200 if check_define __linux__ ; then
201 targetos="Linux"
202 elif check_define _WIN32 ; then
203 targetos='MINGW32'
204 elif check_define __OpenBSD__ ; then
205 targetos='OpenBSD'
206 elif check_define __sun__ ; then
207 targetos='SunOS'
208 else
209 targetos=`uname -s`
211 case $targetos in
212 CYGWIN*)
213 mingw32="yes"
214 OS_CFLAGS="-mno-cygwin"
215 if [ "$cpu" = "i386" ] ; then
216 kqemu="yes"
218 audio_possible_drivers="sdl"
220 MINGW32*)
221 mingw32="yes"
222 if [ "$cpu" = "i386" ] ; then
223 kqemu="yes"
225 audio_possible_drivers="dsound sdl fmod"
227 GNU/kFreeBSD)
228 audio_drv_list="oss"
229 audio_possible_drivers="oss sdl esd pa"
230 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
231 kqemu="yes"
234 FreeBSD)
235 bsd="yes"
236 audio_drv_list="oss"
237 audio_possible_drivers="oss sdl esd pa"
238 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
239 kqemu="yes"
242 DragonFly)
243 bsd="yes"
244 audio_drv_list="oss"
245 audio_possible_drivers="oss sdl esd pa"
246 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
247 kqemu="yes"
249 aio="no"
251 NetBSD)
252 bsd="yes"
253 audio_drv_list="oss"
254 audio_possible_drivers="oss sdl esd"
255 oss_lib="-lossaudio"
257 OpenBSD)
258 bsd="yes"
259 openbsd="yes"
260 audio_drv_list="oss"
261 audio_possible_drivers="oss sdl esd"
262 oss_lib="-lossaudio"
264 Darwin)
265 bsd="yes"
266 darwin="yes"
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
268 if [ "$cpu" = "i386" ] ; then
269 is_x86_64=`sysctl -n hw.optional.x86_64`
270 [ "$is_x86_64" = "1" ] && cpu=x86_64
272 if [ "$cpu" = "x86_64" ] ; then
273 OS_CFLAGS="-arch x86_64"
274 LDFLAGS="-arch x86_64"
275 else
276 OS_CFLAGS="-mdynamic-no-pic"
278 darwin_user="yes"
279 cocoa="yes"
280 audio_drv_list="coreaudio"
281 audio_possible_drivers="coreaudio sdl fmod"
282 OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
284 SunOS)
285 solaris="yes"
286 make="gmake"
287 install="ginstall"
288 needs_libsunmath="no"
289 kvm="no"
290 solarisrev=`uname -r | cut -f2 -d.`
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"
297 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
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
309 if test "$solarisrev" -ge 9 ; then
310 kqemu="yes"
313 if test -f /usr/include/sys/soundcard.h ; then
314 audio_drv_list="oss"
316 audio_possible_drivers="oss sdl"
317 OS_CFLAGS=-std=gnu99
319 AIX)
320 aix="yes"
321 make="gmake"
324 audio_drv_list="oss"
325 audio_possible_drivers="oss alsa sdl esd pa"
326 linux="yes"
327 linux_user="yes"
328 usb="linux"
329 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
330 kqemu="yes"
331 audio_possible_drivers="$audio_possible_drivers fmod"
334 esac
336 if [ "$bsd" = "yes" ] ; then
337 if [ "$darwin" != "yes" ] ; then
338 make="gmake"
339 usb="bsd"
341 bsd_user="yes"
344 # find source path
345 source_path=`dirname "$0"`
346 source_path_used="no"
347 workdir=`pwd`
348 if [ -z "$source_path" ]; then
349 source_path=$workdir
350 else
351 source_path=`cd "$source_path"; pwd`
353 [ -f "$workdir/vl.c" ] || source_path_used="yes"
355 werror="no"
356 # generate compile errors on warnings for development builds
357 #if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
358 #werror="yes";
361 for opt do
362 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
363 case "$opt" in
364 --help|-h) show_help=yes
366 --prefix=*) prefix="$optarg"
368 --interp-prefix=*) interp_prefix="$optarg"
370 --source-path=*) source_path="$optarg"
371 source_path_used="yes"
373 --cross-prefix=*)
375 --cc=*)
377 --host-cc=*) host_cc="$optarg"
379 --make=*) make="$optarg"
381 --install=*) install="$optarg"
383 --extra-cflags=*) CFLAGS="$optarg"
385 --extra-ldflags=*) LDFLAGS="$optarg"
387 --cpu=*) cpu="$optarg"
389 --target-list=*) target_list="$optarg"
391 --enable-gprof) gprof="yes"
393 --static) static="yes"
395 --disable-sdl) sdl="no"
397 --fmod-lib=*) fmod_lib="$optarg"
399 --fmod-inc=*) fmod_inc="$optarg"
401 --oss-lib=*) oss_lib="$optarg"
403 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
405 --audio-drv-list=*) audio_drv_list="$optarg"
407 --enable-debug-tcg) debug_tcg="yes"
409 --disable-debug-tcg) debug_tcg="no"
411 --enable-sparse) sparse="yes"
413 --disable-sparse) sparse="no"
415 --disable-strip) strip_opt="no"
417 --disable-vnc-tls) vnc_tls="no"
419 --disable-vnc-sasl) vnc_sasl="no"
421 --disable-slirp) slirp="no"
423 --disable-vde) vde="no"
425 --disable-kqemu) kqemu="no"
427 --disable-xen) xen="no"
429 --disable-brlapi) brlapi="no"
431 --disable-bluez) bluez="no"
433 --disable-kvm) kvm="no"
435 --enable-profiler) profiler="yes"
437 --enable-cocoa)
438 cocoa="yes" ;
439 sdl="no" ;
440 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
442 --disable-gfx-check) check_gfx="no"
444 --disable-system) softmmu="no"
446 --enable-system) softmmu="yes"
448 --disable-linux-user) linux_user="no"
450 --enable-linux-user) linux_user="yes"
452 --disable-darwin-user) darwin_user="no"
454 --enable-darwin-user) darwin_user="yes"
456 --disable-bsd-user) bsd_user="no"
458 --enable-bsd-user) bsd_user="yes"
460 --enable-uname-release=*) uname_release="$optarg"
462 --sparc_cpu=*)
463 sparc_cpu="$optarg"
464 case $sparc_cpu in
465 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
466 target_cpu="sparc"; cpu="sparc" ;;
467 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
468 target_cpu="sparc"; cpu="sparc" ;;
469 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
470 target_cpu="sparc64"; cpu="sparc64" ;;
471 *) echo "undefined SPARC architecture. Exiting";exit 1;;
472 esac
474 --enable-werror) werror="yes"
476 --disable-werror) werror="no"
478 --disable-curses) curses="no"
480 --disable-nptl) nptl="no"
482 --enable-mixemu) mixemu="yes"
484 --disable-pthread) pthread="no"
486 --disable-aio) aio="no"
488 --enable-io-thread) io_thread="yes"
490 --disable-blobs) blobs="no"
492 --kerneldir=*) kerneldir="$optarg"
494 --with-pkgversion=*) pkgversion=" ($optarg)"
496 *) echo "ERROR: unknown option $opt"; show_help="yes"
498 esac
499 done
501 # default flags for all hosts
502 CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
503 CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
504 LDFLAGS="$LDFLAGS -g"
505 if test "$werror" = "yes" ; then
506 CFLAGS="$CFLAGS -Werror"
509 if test "$solaris" = "no" ; then
510 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
511 LDFLAGS="$LDFLAGS -Wl,--warn-common"
516 # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
517 # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
519 case "$cpu" in
520 sparc) if test -z "$sparc_cpu" ; then
521 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
522 ARCH_LDFLAGS="-m32"
523 else
524 ARCH_CFLAGS="${SP_CFLAGS}"
525 ARCH_LDFLAGS="${SP_LDFLAGS}"
527 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g2 -ffixed-g3"
528 if test "$solaris" = "no" ; then
529 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g6"
532 sparc64) if test -z "$sparc_cpu" ; then
533 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
534 ARCH_LDFLAGS="-m64"
535 else
536 ARCH_CFLAGS="${SP_CFLAGS}"
537 ARCH_LDFLAGS="${SP_LDFLAGS}"
539 if test "$solaris" = "no" ; then
540 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g5 -ffixed-g6 -ffixed-g7"
541 else
542 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g5 -ffixed-g6 -ffixed-g7"
545 s390)
546 ARCH_CFLAGS="-march=z900"
548 i386)
549 ARCH_CFLAGS="-m32"
550 ARCH_LDFLAGS="-m32"
552 x86_64)
553 ARCH_CFLAGS="-m64"
554 ARCH_LDFLAGS="-m64"
556 esac
558 if test x"$show_help" = x"yes" ; then
559 cat << EOF
561 Usage: configure [options]
562 Options: [defaults in brackets after descriptions]
565 echo "Standard options:"
566 echo " --help print this message"
567 echo " --prefix=PREFIX install in PREFIX [$prefix]"
568 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
569 echo " use %M for cpu name [$interp_prefix]"
570 echo " --target-list=LIST set target list [$target_list]"
571 echo ""
572 echo "kqemu kernel acceleration support:"
573 echo " --disable-kqemu disable kqemu support"
574 echo ""
575 echo "Advanced options (experts only):"
576 echo " --source-path=PATH path of source code [$source_path]"
577 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
578 echo " --cc=CC use C compiler CC [$cc]"
579 echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
580 echo " --extra-cflags=CFLAGS add C compiler flags CFLAGS"
581 echo " --extra-ldflags=LDFLAGS add linker flags LDFLAGS"
582 echo " --make=MAKE use specified make [$make]"
583 echo " --install=INSTALL use specified install [$install]"
584 echo " --static enable static build [$static]"
585 echo " --enable-debug-tcg enable TCG debugging"
586 echo " --disable-debug-tcg disable TCG debugging (default)"
587 echo " --enable-sparse enable sparse checker"
588 echo " --disable-sparse disable sparse checker (default)"
589 echo " --disable-strip disable stripping binaries"
590 echo " --disable-werror disable compilation abort on warning"
591 echo " --disable-sdl disable SDL"
592 echo " --enable-cocoa enable COCOA (Mac OS X only)"
593 echo " --audio-drv-list=LIST set audio drivers list:"
594 echo " Available drivers: $audio_possible_drivers"
595 echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
596 echo " Available cards: $audio_possible_cards"
597 echo " --enable-mixemu enable mixer emulation"
598 echo " --disable-xen disable xen backend driver support"
599 echo " --disable-brlapi disable BrlAPI"
600 echo " --disable-vnc-tls disable TLS encryption for VNC server"
601 echo " --disable-vnc-sasl disable SASL encryption for VNC server"
602 echo " --disable-curses disable curses output"
603 echo " --disable-bluez disable bluez stack connectivity"
604 echo " --disable-kvm disable KVM acceleration support"
605 echo " --disable-nptl disable usermode NPTL support"
606 echo " --enable-system enable all system emulation targets"
607 echo " --disable-system disable all system emulation targets"
608 echo " --enable-linux-user enable all linux usermode emulation targets"
609 echo " --disable-linux-user disable all linux usermode emulation targets"
610 echo " --enable-darwin-user enable all darwin usermode emulation targets"
611 echo " --disable-darwin-user disable all darwin usermode emulation targets"
612 echo " --enable-bsd-user enable all BSD usermode emulation targets"
613 echo " --disable-bsd-user disable all BSD usermode emulation targets"
614 echo " --fmod-lib path to FMOD library"
615 echo " --fmod-inc path to FMOD includes"
616 echo " --oss-lib path to OSS library"
617 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
618 echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
619 echo " --disable-vde disable support for vde network"
620 echo " --disable-pthread disable pthread support"
621 echo " --disable-aio disable AIO support"
622 echo " --enable-io-thread enable IO thread"
623 echo " --disable-blobs disable installing provided firmware blobs"
624 echo " --kerneldir=PATH look for kernel includes in PATH"
625 echo ""
626 echo "NOTE: The object files are built at the place where configure is launched"
627 exit 1
630 if test "$mingw32" = "yes" ; then
631 linux="no"
632 EXESUF=".exe"
633 oss="no"
634 linux_user="no"
635 bsd_user="no"
636 OS_CFLAGS="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501"
639 if test ! -x "$(which cgcc 2>/dev/null)"; then
640 sparse="no"
644 # Solaris specific configure tool chain decisions
646 if test "$solaris" = "yes" ; then
647 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
648 if test -z "$solinst" ; then
649 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
650 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
651 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
652 exit 1
654 if test "$solinst" = "/usr/sbin/install" ; then
655 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
656 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
657 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
658 exit 1
660 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
661 if test -z "$sol_ar" ; then
662 echo "Error: No path includes ar"
663 if test -f /usr/ccs/bin/ar ; then
664 echo "Add /usr/ccs/bin to your path and rerun configure"
666 exit 1
671 if test -z "$target_list" ; then
672 # these targets are portable
673 if [ "$softmmu" = "yes" ] ; then
674 target_list="\
675 i386-softmmu \
676 x86_64-softmmu \
677 arm-softmmu \
678 cris-softmmu \
679 hppa-softmmu \
680 hppa64-softmmu \
681 m68k-softmmu \
682 mips-softmmu \
683 mipsel-softmmu \
684 mips64-softmmu \
685 mips64el-softmmu \
686 ppc-softmmu \
687 ppcemb-softmmu \
688 ppc64-softmmu \
689 sh4-softmmu \
690 sh4eb-softmmu \
691 sparc-softmmu \
694 # the following are Linux specific
695 if [ "$linux_user" = "yes" ] ; then
696 target_list="${target_list}\
697 i386-linux-user \
698 x86_64-linux-user \
699 alpha-linux-user \
700 arm-linux-user \
701 armeb-linux-user \
702 cris-linux-user \
703 hppa-linux-user \
704 m68k-linux-user \
705 mips-linux-user \
706 mipsel-linux-user \
707 ppc-linux-user \
708 ppc64-linux-user \
709 ppc64abi32-linux-user \
710 sh4-linux-user \
711 sh4eb-linux-user \
712 sparc-linux-user \
713 sparc64-linux-user \
714 sparc32plus-linux-user \
717 # the following are Darwin specific
718 if [ "$darwin_user" = "yes" ] ; then
719 target_list="$target_list i386-darwin-user ppc-darwin-user "
721 # the following are BSD specific
722 if [ "$bsd_user" = "yes" ] ; then
723 target_list="${target_list}\
724 i386-bsd-user \
725 x86_64-bsd-user \
726 sparc-bsd-user \
727 sparc64-bsd-user \
730 else
731 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
733 if test -z "$target_list" ; then
734 echo "No targets enabled"
735 exit 1
738 if test -z "$cross_prefix" ; then
740 # ---
741 # big/little endian test
742 cat > $TMPC << EOF
743 #include <inttypes.h>
744 int main(int argc, char ** argv){
745 volatile uint32_t i=0x01234567;
746 return (*((uint8_t*)(&i))) == 0x67;
750 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
751 $TMPE && bigendian="yes"
752 else
753 echo big/little test failed
756 else
758 # if cross compiling, cannot launch a program, so make a static guess
759 if test "$cpu" = "armv4b" \
760 -o "$cpu" = "hppa" \
761 -o "$cpu" = "m68k" \
762 -o "$cpu" = "mips" \
763 -o "$cpu" = "mips64" \
764 -o "$cpu" = "ppc" \
765 -o "$cpu" = "ppc64" \
766 -o "$cpu" = "s390" \
767 -o "$cpu" = "sparc" \
768 -o "$cpu" = "sparc64"; then
769 bigendian="yes"
774 # host long bits test
775 hostlongbits="32"
776 if test "$cpu" = "x86_64" \
777 -o "$cpu" = "alpha" \
778 -o "$cpu" = "ia64" \
779 -o "$cpu" = "sparc64" \
780 -o "$cpu" = "ppc64"; then
781 hostlongbits="64"
784 # Check host NPTL support
785 cat > $TMPC <<EOF
786 #include <sched.h>
787 #include <linux/futex.h>
788 void foo()
790 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
791 #error bork
792 #endif
796 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
798 else
799 nptl="no"
802 ##########################################
803 # zlib check
805 cat > $TMPC << EOF
806 #include <zlib.h>
807 int main(void) { zlibVersion(); return 0; }
809 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
811 else
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
819 ##########################################
820 # xen probe
822 if test "$xen" = "yes" ; then
823 cat > $TMPC <<EOF
824 #include <xenctrl.h>
825 #include <xs.h>
826 int main(void) { xs_daemon_open; xc_interface_open; }
828 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC -lxenstore -lxenctrl 2> /dev/null ; then
830 else
831 xen="no"
835 ##########################################
836 # SDL probe
838 sdl_too_old=no
840 if test -z "$sdl" ; then
841 sdl_config="sdl-config"
842 sdl=no
843 sdl_static=no
845 cat > $TMPC << EOF
846 #include <SDL.h>
847 #undef main /* We don't want SDL to override our main() */
848 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
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
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
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`"
869 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then
870 sdl_static=yes
872 fi # static link
873 fi # sdl compile test
874 else
875 # Make sure to disable cocoa if sdl was set
876 if test "$sdl" = "yes" ; then
877 cocoa="no"
878 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
880 fi # -z $sdl
882 if test "$sdl" = "yes" ; then
883 cat > $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
890 int main(void) { return 0; }
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"
897 ##########################################
898 # VNC TLS detection
899 if test "$vnc_tls" = "yes" ; then
900 cat > $TMPC <<EOF
901 #include <gnutls/gnutls.h>
902 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
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 \
907 $vnc_tls_libs > /dev/null 2> /dev/null ; then
909 else
910 vnc_tls="no"
914 ##########################################
915 # VNC SASL detection
916 if test "$vnc_sasl" = "yes" ; then
917 cat > $TMPC <<EOF
918 #include <sasl/sasl.h>
919 #include <stdio.h>
920 int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
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 \
926 $vnc_sasl_libs 2> /dev/null ; then
928 else
929 vnc_sasl="no"
933 ##########################################
934 # fnmatch() probe, used for ACL routines
935 fnmatch="no"
936 cat > $TMPC << EOF
937 #include <fnmatch.h>
938 int main(void)
940 fnmatch("foo", "foo", 0);
941 return 0;
944 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
945 fnmatch="yes"
948 ##########################################
949 # vde libraries probe
950 if test "$vde" = "yes" ; then
951 cat > $TMPC << EOF
952 #include <libvdeplug.h>
953 int main(void)
955 struct vde_open_args a = {0, 0, 0};
956 vde_open("", "", &a);
957 return 0;
960 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
962 else
963 vde="no"
967 ##########################################
968 # Sound support libraries probe
970 audio_drv_probe()
972 drv=$1
973 hdr=$2
974 lib=$3
975 exp=$4
976 cfl=$5
977 cat > $TMPC << EOF
978 #include <$hdr>
979 int main(void) { $exp }
981 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
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
992 audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
993 for 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);"
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
1008 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1011 esd)
1012 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
1016 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
1017 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
1020 oss|sdl|core|wav|dsound)
1021 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1025 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
1026 echo
1027 echo "Error: Unknown driver '$drv' selected"
1028 echo "Possible drivers are: $audio_possible_drivers"
1029 echo
1030 exit 1
1033 esac
1034 done
1036 ##########################################
1037 # BrlAPI probe
1039 if test -z "$brlapi" ; then
1040 brlapi=no
1041 cat > $TMPC << EOF
1042 #include <brlapi.h>
1043 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1045 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
1046 brlapi=yes
1047 fi # brlapi compile test
1048 fi # -z $brlapi
1050 ##########################################
1051 # curses probe
1053 if test "$curses" = "yes" ; then
1054 curses=no
1055 cat > $TMPC << EOF
1056 #include <curses.h>
1057 #ifdef __OpenBSD__
1058 #define resize_term resizeterm
1059 #endif
1060 int main(void) { resize_term(0, 0); return curses_version(); }
1062 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
1063 curses=yes
1065 fi # test "$curses"
1067 ##########################################
1068 # bluez support probe
1069 if test "$bluez" = "yes" ; then
1070 `pkg-config bluez` || bluez="no"
1072 if test "$bluez" = "yes" ; then
1073 cat > $TMPC << EOF
1074 #include <bluetooth/bluetooth.h>
1075 int main(void) { return bt_error(0); }
1077 bluez_cflags=`pkg-config --cflags bluez`
1078 bluez_libs=`pkg-config --libs bluez`
1079 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
1080 $bluez_libs > /dev/null 2> /dev/null ; then
1082 else
1083 bluez="no"
1087 ##########################################
1088 # kvm probe
1089 if test "$kvm" = "yes" ; then
1090 cat > $TMPC <<EOF
1091 #include <linux/kvm.h>
1092 #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
1093 #error Invalid KVM version
1094 #endif
1095 #if !defined(KVM_CAP_USER_MEMORY)
1096 #error Missing KVM capability KVM_CAP_USER_MEMORY
1097 #endif
1098 #if !defined(KVM_CAP_SET_TSS_ADDR)
1099 #error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1100 #endif
1101 #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1102 #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1103 #endif
1104 int main(void) { return 0; }
1106 if test "$kerneldir" != "" ; then
1107 kvm_cflags=-I"$kerneldir"/include
1108 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1109 -a -d "$kerneldir/arch/x86/include" ; then
1110 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
1111 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1112 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
1113 elif test -d "$kerneldir/arch/$cpu/include" ; then
1114 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1116 else
1117 kvm_cflags=""
1119 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
1120 > /dev/null 2>/dev/null ; then
1122 else
1123 kvm="no";
1124 if [ -x "`which awk 2>/dev/null`" ] && \
1125 [ -x "`which grep 2>/dev/null`" ]; then
1126 kvmerr=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1127 | grep "error: " \
1128 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1129 if test "$kvmerr" != "" ; then
1130 kvm="no - (${kvmerr})"
1136 ##########################################
1137 # pthread probe
1138 PTHREADLIBS=""
1140 if test "$pthread" = yes; then
1141 pthread=no
1142 cat > $TMPC << EOF
1143 #include <pthread.h>
1144 int main(void) { pthread_mutex_t lock; return 0; }
1146 if $cc $ARCH_CFLAGS -o $TMPE $PTHREADLIBS $TMPC 2> /dev/null ; then
1147 pthread=yes
1148 PTHREADLIBS="-lpthread"
1152 if test "$pthread" = no; then
1153 aio=no
1154 io_thread=no
1157 ##########################################
1158 # iovec probe
1159 cat > $TMPC <<EOF
1160 #include <sys/types.h>
1161 #include <sys/uio.h>
1162 #include <unistd.h>
1163 int main(void) { struct iovec iov; return 0; }
1165 iovec=no
1166 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1167 iovec=yes
1170 ##########################################
1171 # preadv probe
1172 cat > $TMPC <<EOF
1173 #include <sys/types.h>
1174 #include <sys/uio.h>
1175 #include <unistd.h>
1176 int main(void) { preadv; }
1178 preadv=no
1179 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1180 preadv=yes
1183 ##########################################
1184 # fdt probe
1185 if test "$fdt" = "yes" ; then
1186 fdt=no
1187 cat > $TMPC << EOF
1188 int main(void) { return 0; }
1190 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1191 fdt=yes
1196 # Check for xxxat() functions when we are building linux-user
1197 # emulator. This is done because older glibc versions don't
1198 # have syscall stubs for these implemented.
1200 atfile=no
1201 if [ "$linux_user" = "yes" ] ; then
1202 cat > $TMPC << EOF
1203 #define _ATFILE_SOURCE
1204 #include <sys/types.h>
1205 #include <fcntl.h>
1206 #include <unistd.h>
1209 main(void)
1211 /* try to unlink nonexisting file */
1212 return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1215 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1216 atfile=yes
1220 # Check for inotify 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. In that case we
1223 # don't provide them even if kernel supports them.
1225 inotify=no
1226 if [ "$linux_user" = "yes" ] ; then
1227 cat > $TMPC << EOF
1228 #include <sys/inotify.h>
1231 main(void)
1233 /* try to start inotify */
1234 return inotify_init();
1237 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1238 inotify=yes
1242 # Check if tools are available to build documentation.
1243 if [ -x "`which texi2html 2>/dev/null`" ] && \
1244 [ -x "`which pod2man 2>/dev/null`" ]; then
1245 build_docs="yes"
1248 ##########################################
1249 # Do we need librt
1250 CLOCKLIBS=""
1251 cat > $TMPC <<EOF
1252 #include <signal.h>
1253 #include <time.h>
1254 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1257 rt=no
1258 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1260 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
1261 rt=yes
1264 if test "$rt" = "yes" ; then
1265 CLOCKLIBS="-lrt"
1268 if test "$mingw32" = "yes" ; then
1269 if test -z "$prefix" ; then
1270 prefix="c:\\\\Program Files\\\\Qemu"
1272 mansuffix=""
1273 datasuffix=""
1274 docsuffix=""
1275 binsuffix=""
1276 else
1277 if test -z "$prefix" ; then
1278 prefix="/usr/local"
1280 mansuffix="/share/man"
1281 datasuffix="/share/qemu"
1282 docsuffix="/share/doc/qemu"
1283 binsuffix="/bin"
1286 echo "Install prefix $prefix"
1287 echo "BIOS directory $prefix$datasuffix"
1288 echo "binary directory $prefix$binsuffix"
1289 if test "$mingw32" = "no" ; then
1290 echo "Manual directory $prefix$mansuffix"
1291 echo "ELF interp prefix $interp_prefix"
1293 echo "Source path $source_path"
1294 echo "C compiler $cc"
1295 echo "Host C compiler $host_cc"
1296 echo "ARCH_CFLAGS $ARCH_CFLAGS"
1297 echo "make $make"
1298 echo "install $install"
1299 echo "host CPU $cpu"
1300 echo "host big endian $bigendian"
1301 echo "target list $target_list"
1302 echo "tcg debug enabled $debug_tcg"
1303 echo "gprof enabled $gprof"
1304 echo "sparse enabled $sparse"
1305 echo "strip binaries $strip_opt"
1306 echo "profiler $profiler"
1307 echo "static build $static"
1308 echo "-Werror enabled $werror"
1309 if test "$darwin" = "yes" ; then
1310 echo "Cocoa support $cocoa"
1312 echo "SDL support $sdl"
1313 if test "$sdl" != "no" ; then
1314 echo "SDL static link $sdl_static"
1316 echo "curses support $curses"
1317 echo "mingw32 support $mingw32"
1318 echo "Audio drivers $audio_drv_list"
1319 echo "Extra audio cards $audio_card_list"
1320 echo "Mixer emulation $mixemu"
1321 echo "VNC TLS support $vnc_tls"
1322 if test "$vnc_tls" = "yes" ; then
1323 echo " TLS CFLAGS $vnc_tls_cflags"
1324 echo " TLS LIBS $vnc_tls_libs"
1326 echo "VNC SASL support $vnc_sasl"
1327 if test "$vnc_sasl" = "yes" ; then
1328 echo " SASL CFLAGS $vnc_sasl_cflags"
1329 echo " SASL LIBS $vnc_sasl_libs"
1331 if test -n "$sparc_cpu"; then
1332 echo "Target Sparc Arch $sparc_cpu"
1334 echo "kqemu support $kqemu"
1335 echo "xen support $xen"
1336 echo "brlapi support $brlapi"
1337 echo "Documentation $build_docs"
1338 [ ! -z "$uname_release" ] && \
1339 echo "uname -r $uname_release"
1340 echo "NPTL support $nptl"
1341 echo "vde support $vde"
1342 echo "AIO support $aio"
1343 echo "IO thread $io_thread"
1344 echo "Install blobs $blobs"
1345 echo "KVM support $kvm"
1346 echo "fdt support $fdt"
1347 echo "preadv support $preadv"
1349 if test $sdl_too_old = "yes"; then
1350 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1352 if [ -s $TMPSDLLOG ]; then
1353 echo "The error log from compiling the libSDL test is: "
1354 cat $TMPSDLLOG
1356 #if test "$sdl_static" = "no"; then
1357 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1359 config_mak="config-host.mak"
1360 config_h="config-host.h"
1362 #echo "Creating $config_mak and $config_h"
1364 test -f $config_h && mv $config_h ${config_h}~
1366 echo "# Automatically generated by configure - do not modify" > $config_mak
1367 printf "# Configured with:" >> $config_mak
1368 printf " '%s'" "$0" "$@" >> $config_mak
1369 echo >> $config_mak
1370 echo "/* Automatically generated by configure - do not modify */" > $config_h
1372 echo "prefix=$prefix" >> $config_mak
1373 echo "bindir=\${prefix}$binsuffix" >> $config_mak
1374 echo "mandir=\${prefix}$mansuffix" >> $config_mak
1375 echo "datadir=\${prefix}$datasuffix" >> $config_mak
1376 echo "docdir=\${prefix}$docsuffix" >> $config_mak
1377 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1378 echo "MAKE=$make" >> $config_mak
1379 echo "INSTALL=$install" >> $config_mak
1380 echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_mak
1381 echo "INSTALL_DATA=$install -m0644 -p" >> $config_mak
1382 echo "INSTALL_PROG=$install -m0755 -p" >> $config_mak
1383 echo "CC=$cc" >> $config_mak
1384 echo "HOST_CC=$host_cc" >> $config_mak
1385 echo "AR=$ar" >> $config_mak
1386 # XXX: only use CFLAGS and LDFLAGS ?
1387 # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1388 # compilation of dyngen tool (useful for win32 build on Linux host)
1389 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1390 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1391 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1392 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1393 echo "CFLAGS=$CFLAGS" >> $config_mak
1394 echo "LDFLAGS=$LDFLAGS" >> $config_mak
1395 echo "EXESUF=$EXESUF" >> $config_mak
1396 echo "PTHREADLIBS=$PTHREADLIBS" >> $config_mak
1397 echo "CLOCKLIBS=$CLOCKLIBS" >> $config_mak
1398 case "$cpu" in
1399 i386)
1400 echo "ARCH=i386" >> $config_mak
1401 echo "#define HOST_I386 1" >> $config_h
1403 x86_64)
1404 echo "ARCH=x86_64" >> $config_mak
1405 echo "#define HOST_X86_64 1" >> $config_h
1407 alpha)
1408 echo "ARCH=alpha" >> $config_mak
1409 echo "#define HOST_ALPHA 1" >> $config_h
1411 armv4b)
1412 echo "ARCH=arm" >> $config_mak
1413 echo "#define HOST_ARM 1" >> $config_h
1415 armv4l)
1416 echo "ARCH=arm" >> $config_mak
1417 echo "#define HOST_ARM 1" >> $config_h
1419 cris)
1420 echo "ARCH=cris" >> $config_mak
1421 echo "#define HOST_CRIS 1" >> $config_h
1423 hppa)
1424 echo "ARCH=hppa" >> $config_mak
1425 echo "#define HOST_HPPA 1" >> $config_h
1427 ia64)
1428 echo "ARCH=ia64" >> $config_mak
1429 echo "#define HOST_IA64 1" >> $config_h
1431 m68k)
1432 echo "ARCH=m68k" >> $config_mak
1433 echo "#define HOST_M68K 1" >> $config_h
1435 mips)
1436 echo "ARCH=mips" >> $config_mak
1437 echo "#define HOST_MIPS 1" >> $config_h
1439 mips64)
1440 echo "ARCH=mips64" >> $config_mak
1441 echo "#define HOST_MIPS64 1" >> $config_h
1443 ppc)
1444 echo "ARCH=ppc" >> $config_mak
1445 echo "#define HOST_PPC 1" >> $config_h
1447 ppc64)
1448 echo "ARCH=ppc64" >> $config_mak
1449 echo "#define HOST_PPC64 1" >> $config_h
1451 s390)
1452 echo "ARCH=s390" >> $config_mak
1453 echo "#define HOST_S390 1" >> $config_h
1455 sparc)
1456 echo "ARCH=sparc" >> $config_mak
1457 echo "#define HOST_SPARC 1" >> $config_h
1459 sparc64)
1460 echo "ARCH=sparc64" >> $config_mak
1461 echo "#define HOST_SPARC64 1" >> $config_h
1464 echo "Unsupported CPU = $cpu"
1465 exit 1
1467 esac
1468 if test "$debug_tcg" = "yes" ; then
1469 echo "#define DEBUG_TCG 1" >> $config_h
1471 if test "$sparse" = "yes" ; then
1472 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1473 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1474 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1476 if test "$strip_opt" = "yes" ; then
1477 echo "STRIP_OPT=-s" >> $config_mak
1479 if test "$bigendian" = "yes" ; then
1480 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1481 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1483 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1484 if test "$mingw32" = "yes" ; then
1485 echo "CONFIG_WIN32=yes" >> $config_mak
1486 echo "#define CONFIG_WIN32 1" >> $config_h
1487 else
1488 cat > $TMPC << EOF
1489 #include <byteswap.h>
1490 int main(void) { return bswap_32(0); }
1492 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1493 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1495 cat > $TMPC << EOF
1496 #include <sys/endian.h>
1497 #include <sys/types.h>
1498 #include <machine/bswap.h>
1499 int main(void) { return bswap32(0); }
1501 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1502 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1506 if [ "$openbsd" = "yes" ] ; then
1507 echo "#define ENOTSUP 4096" >> $config_h
1510 if test "$darwin" = "yes" ; then
1511 echo "CONFIG_DARWIN=yes" >> $config_mak
1512 echo "#define CONFIG_DARWIN 1" >> $config_h
1515 if test "$aix" = "yes" ; then
1516 echo "CONFIG_AIX=yes" >> $config_mak
1517 echo "#define CONFIG_AIX 1" >> $config_h
1520 if test "$solaris" = "yes" ; then
1521 echo "CONFIG_SOLARIS=yes" >> $config_mak
1522 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1523 if test "$needs_libsunmath" = "yes" ; then
1524 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1525 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1528 if test -n "$sparc_cpu"; then
1529 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1530 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1532 if test "$gdbstub" = "yes" ; then
1533 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1534 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1536 if test "$gprof" = "yes" ; then
1537 echo "TARGET_GPROF=yes" >> $config_mak
1538 echo "#define HAVE_GPROF 1" >> $config_h
1540 if test "$static" = "yes" ; then
1541 echo "CONFIG_STATIC=yes" >> $config_mak
1542 echo "#define CONFIG_STATIC 1" >> $config_h
1544 if test $profiler = "yes" ; then
1545 echo "#define CONFIG_PROFILER 1" >> $config_h
1547 if test "$slirp" = "yes" ; then
1548 echo "CONFIG_SLIRP=yes" >> $config_mak
1549 echo "#define CONFIG_SLIRP 1" >> $config_h
1551 if test "$vde" = "yes" ; then
1552 echo "CONFIG_VDE=yes" >> $config_mak
1553 echo "#define CONFIG_VDE 1" >> $config_h
1554 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1556 for card in $audio_card_list; do
1557 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
1558 echo "$def=yes" >> $config_mak
1559 echo "#define $def 1" >> $config_h
1560 done
1561 echo "#define AUDIO_DRIVERS \\" >> $config_h
1562 for drv in $audio_drv_list; do
1563 echo " &${drv}_audio_driver, \\" >>$config_h
1564 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
1565 echo "$def=yes" >> $config_mak
1566 if test "$drv" = "fmod"; then
1567 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1568 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1569 elif test "$drv" = "oss"; then
1570 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1572 done
1573 echo "" >>$config_h
1574 if test "$mixemu" = "yes" ; then
1575 echo "CONFIG_MIXEMU=yes" >> $config_mak
1576 echo "#define CONFIG_MIXEMU 1" >> $config_h
1578 if test "$vnc_tls" = "yes" ; then
1579 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1580 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1581 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1582 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1584 if test "$vnc_sasl" = "yes" ; then
1585 echo "CONFIG_VNC_SASL=yes" >> $config_mak
1586 echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak
1587 echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak
1588 echo "#define CONFIG_VNC_SASL 1" >> $config_h
1590 if test "$fnmatch" = "yes" ; then
1591 echo "#define HAVE_FNMATCH_H 1" >> $config_h
1593 qemu_version=`head $source_path/VERSION`
1594 echo "VERSION=$qemu_version" >>$config_mak
1595 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1597 echo "#define QEMU_PKGVERSION \"$pkgversion\"" >> $config_h
1599 echo "SRC_PATH=$source_path" >> $config_mak
1600 if [ "$source_path_used" = "yes" ]; then
1601 echo "VPATH=$source_path" >> $config_mak
1603 echo "TARGET_DIRS=$target_list" >> $config_mak
1604 if [ "$build_docs" = "yes" ] ; then
1605 echo "BUILD_DOCS=yes" >> $config_mak
1607 if test "$static" = "yes"; then
1608 sdl1=$sdl_static
1609 else
1610 sdl1=$sdl
1612 if test "$sdl1" = "yes" ; then
1613 echo "#define CONFIG_SDL 1" >> $config_h
1614 echo "CONFIG_SDL=yes" >> $config_mak
1615 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1616 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1617 elif test "$sdl_x11" = "yes" ; then
1618 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
1619 else
1620 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1622 if [ "${aa}" = "yes" ] ; then
1623 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1624 else
1625 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1628 if test "$cocoa" = "yes" ; then
1629 echo "#define CONFIG_COCOA 1" >> $config_h
1630 echo "CONFIG_COCOA=yes" >> $config_mak
1632 if test "$curses" = "yes" ; then
1633 echo "#define CONFIG_CURSES 1" >> $config_h
1634 echo "CONFIG_CURSES=yes" >> $config_mak
1635 echo "CURSES_LIBS=-lcurses" >> $config_mak
1637 if test "$atfile" = "yes" ; then
1638 echo "#define CONFIG_ATFILE 1" >> $config_h
1640 if test "$inotify" = "yes" ; then
1641 echo "#define CONFIG_INOTIFY 1" >> $config_h
1643 if test "$brlapi" = "yes" ; then
1644 echo "CONFIG_BRLAPI=yes" >> $config_mak
1645 echo "#define CONFIG_BRLAPI 1" >> $config_h
1646 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1648 if test "$bluez" = "yes" ; then
1649 echo "CONFIG_BLUEZ=yes" >> $config_mak
1650 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1651 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1652 echo "#define CONFIG_BLUEZ 1" >> $config_h
1654 if test "$xen" = "yes" ; then
1655 echo "XEN_LIBS=-lxenstore -lxenctrl -lxenguest" >> $config_mak
1657 if test "$aio" = "yes" ; then
1658 echo "#define CONFIG_AIO 1" >> $config_h
1659 echo "CONFIG_AIO=yes" >> $config_mak
1661 if test "$io_thread" = "yes" ; then
1662 echo "CONFIG_IOTHREAD=yes" >> $config_mak
1663 echo "#define CONFIG_IOTHREAD 1" >> $config_h
1665 if test "$blobs" = "yes" ; then
1666 echo "INSTALL_BLOBS=yes" >> $config_mak
1668 if test "$iovec" = "yes" ; then
1669 echo "#define HAVE_IOVEC 1" >> $config_h
1671 if test "$preadv" = "yes" ; then
1672 echo "#define HAVE_PREADV 1" >> $config_h
1674 if test "$fdt" = "yes" ; then
1675 echo "#define HAVE_FDT 1" >> $config_h
1676 echo "FDT_LIBS=-lfdt" >> $config_mak
1679 # XXX: suppress that
1680 if [ "$bsd" = "yes" ] ; then
1681 echo "#define O_LARGEFILE 0" >> $config_h
1682 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1683 echo "#define HOST_BSD 1" >> $config_h
1686 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1688 # USB host support
1689 case "$usb" in
1690 linux)
1691 echo "HOST_USB=linux" >> $config_mak
1693 bsd)
1694 echo "HOST_USB=bsd" >> $config_mak
1697 echo "HOST_USB=stub" >> $config_mak
1699 esac
1701 tools=
1702 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1703 tools="qemu-img\$(EXESUF) $tools"
1704 if [ "$linux" = "yes" ] ; then
1705 tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
1708 echo "TOOLS=$tools" >> $config_mak
1710 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1712 for target in $target_list; do
1713 target_dir="$target"
1714 config_mak=$target_dir/config.mak
1715 config_h=$target_dir/config.h
1716 target_cpu=`echo $target | cut -d '-' -f 1`
1717 target_bigendian="no"
1718 [ "$target_cpu" = "armeb" ] && target_bigendian=yes
1719 [ "$target_cpu" = "hppa" ] && target_bigendian=yes
1720 [ "$target_cpu" = "hppa64" ] && target_bigendian=yes
1721 [ "$target_cpu" = "m68k" ] && target_bigendian=yes
1722 [ "$target_cpu" = "mips" ] && target_bigendian=yes
1723 [ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1724 [ "$target_cpu" = "mips64" ] && target_bigendian=yes
1725 [ "$target_cpu" = "ppc" ] && target_bigendian=yes
1726 [ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
1727 [ "$target_cpu" = "ppc64" ] && target_bigendian=yes
1728 [ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
1729 [ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
1730 [ "$target_cpu" = "sparc" ] && target_bigendian=yes
1731 [ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1732 [ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
1733 target_softmmu="no"
1734 target_user_only="no"
1735 target_linux_user="no"
1736 target_darwin_user="no"
1737 target_bsd_user="no"
1738 case "$target" in
1739 ${target_cpu}-softmmu)
1740 target_softmmu="yes"
1742 ${target_cpu}-linux-user)
1743 target_user_only="yes"
1744 target_linux_user="yes"
1746 ${target_cpu}-darwin-user)
1747 target_user_only="yes"
1748 target_darwin_user="yes"
1750 ${target_cpu}-bsd-user)
1751 target_user_only="yes"
1752 target_bsd_user="yes"
1755 echo "ERROR: Target '$target' not recognised"
1756 exit 1
1758 esac
1760 if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1761 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
1762 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
1763 echo "To build QEMU without graphical output configure with --disable-gfx-check"
1764 echo "Note that this will disable all output from the virtual graphics card"
1765 echo "except through VNC or curses."
1766 exit 1;
1769 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1771 test -f $config_h && mv $config_h ${config_h}~
1773 mkdir -p $target_dir
1774 mkdir -p $target_dir/fpu
1775 mkdir -p $target_dir/tcg
1776 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1777 mkdir -p $target_dir/nwfpe
1781 # don't use ln -sf as not all "ln -sf" over write the file/link
1783 rm -f $target_dir/Makefile
1784 ln -s $source_path/Makefile.target $target_dir/Makefile
1787 echo "# Automatically generated by configure - do not modify" > $config_mak
1788 echo "/* Automatically generated by configure - do not modify */" > $config_h
1791 echo "include ../config-host.mak" >> $config_mak
1792 echo "#include \"../config-host.h\"" >> $config_h
1794 bflt="no"
1795 elfload32="no"
1796 target_nptl="no"
1797 interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1798 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1799 gdb_xml_files=""
1801 # Make sure the target and host cpus are compatible
1802 if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
1803 \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \
1804 \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \
1805 \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then
1806 kvm="no"
1808 # Disable KVM for linux-user
1809 if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1810 kvm="no"
1813 case "$target_cpu" in
1814 i386)
1815 echo "TARGET_ARCH=i386" >> $config_mak
1816 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1817 echo "#define TARGET_I386 1" >> $config_h
1818 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1819 then
1820 echo "CONFIG_KQEMU=yes" >> $config_mak
1821 echo "#define CONFIG_KQEMU 1" >> $config_h
1823 if test "$kvm" = "yes" ; then
1824 echo "CONFIG_KVM=yes" >> $config_mak
1825 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1826 echo "#define CONFIG_KVM 1" >> $config_h
1828 if test "$xen" = "yes" -a "$target_softmmu" = "yes";
1829 then
1830 echo "CONFIG_XEN=yes" >> $config_mak
1831 echo "#define CONFIG_XEN 1" >> $config_h
1834 x86_64)
1835 echo "TARGET_ARCH=x86_64" >> $config_mak
1836 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1837 echo "#define TARGET_I386 1" >> $config_h
1838 echo "#define TARGET_X86_64 1" >> $config_h
1839 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1840 then
1841 echo "CONFIG_KQEMU=yes" >> $config_mak
1842 echo "#define CONFIG_KQEMU 1" >> $config_h
1844 if test "$kvm" = "yes" ; then
1845 echo "CONFIG_KVM=yes" >> $config_mak
1846 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1847 echo "#define CONFIG_KVM 1" >> $config_h
1849 if test "$xen" = "yes" -a "$target_softmmu" = "yes"
1850 then
1851 echo "CONFIG_XEN=yes" >> $config_mak
1852 echo "#define CONFIG_XEN 1" >> $config_h
1855 alpha)
1856 echo "TARGET_ARCH=alpha" >> $config_mak
1857 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1858 echo "#define TARGET_ALPHA 1" >> $config_h
1860 arm|armeb)
1861 echo "TARGET_ARCH=arm" >> $config_mak
1862 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1863 echo "#define TARGET_ARM 1" >> $config_h
1864 bflt="yes"
1865 target_nptl="yes"
1866 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1868 cris)
1869 echo "TARGET_ARCH=cris" >> $config_mak
1870 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1871 echo "#define TARGET_CRIS 1" >> $config_h
1872 target_nptl="yes"
1874 hppa)
1875 echo "TARGET_ARCH=hppa" >> $config_mak
1876 echo "#define TARGET_ARCH \"hppa\"" >> $config_h
1877 echo "#define TARGET_HPPA 1" >> $config_h
1879 hppa64)
1880 echo "TARGET_ARCH=hppa64" >> $config_mak
1881 echo "#define TARGET_ARCH \"hppa64\"" >> $config_h
1882 echo "#define TARGET_HPPA 1" >> $config_h
1883 echo "#define TARGET_HPPA64 1" >> $config_h
1885 m68k)
1886 echo "TARGET_ARCH=m68k" >> $config_mak
1887 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1888 echo "#define TARGET_M68K 1" >> $config_h
1889 bflt="yes"
1890 gdb_xml_files="cf-core.xml cf-fp.xml"
1892 mips|mipsel)
1893 echo "TARGET_ARCH=mips" >> $config_mak
1894 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1895 echo "#define TARGET_MIPS 1" >> $config_h
1896 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1898 mipsn32|mipsn32el)
1899 echo "TARGET_ARCH=mipsn32" >> $config_mak
1900 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1901 echo "#define TARGET_MIPS 1" >> $config_h
1902 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1904 mips64|mips64el)
1905 echo "TARGET_ARCH=mips64" >> $config_mak
1906 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1907 echo "#define TARGET_MIPS 1" >> $config_h
1908 echo "#define TARGET_MIPS64 1" >> $config_h
1909 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1911 ppc)
1912 echo "TARGET_ARCH=ppc" >> $config_mak
1913 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1914 echo "#define TARGET_PPC 1" >> $config_h
1915 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1917 ppcemb)
1918 echo "TARGET_ARCH=ppcemb" >> $config_mak
1919 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1920 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1921 echo "#define TARGET_PPC 1" >> $config_h
1922 echo "#define TARGET_PPCEMB 1" >> $config_h
1923 if test "$kvm" = "yes" ; then
1924 echo "CONFIG_KVM=yes" >> $config_mak
1925 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1926 echo "#define CONFIG_KVM 1" >> $config_h
1928 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1930 ppc64)
1931 echo "TARGET_ARCH=ppc64" >> $config_mak
1932 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1933 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1934 echo "#define TARGET_PPC 1" >> $config_h
1935 echo "#define TARGET_PPC64 1" >> $config_h
1936 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1938 ppc64abi32)
1939 echo "TARGET_ARCH=ppc64" >> $config_mak
1940 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1941 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1942 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1943 echo "#define TARGET_PPC 1" >> $config_h
1944 echo "#define TARGET_PPC64 1" >> $config_h
1945 echo "#define TARGET_ABI32 1" >> $config_h
1946 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1948 sh4|sh4eb)
1949 echo "TARGET_ARCH=sh4" >> $config_mak
1950 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1951 echo "#define TARGET_SH4 1" >> $config_h
1952 bflt="yes"
1953 target_nptl="yes"
1955 sparc)
1956 echo "TARGET_ARCH=sparc" >> $config_mak
1957 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1958 echo "#define TARGET_SPARC 1" >> $config_h
1960 sparc64)
1961 echo "TARGET_ARCH=sparc64" >> $config_mak
1962 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1963 echo "#define TARGET_SPARC 1" >> $config_h
1964 echo "#define TARGET_SPARC64 1" >> $config_h
1965 elfload32="yes"
1967 sparc32plus)
1968 echo "TARGET_ARCH=sparc64" >> $config_mak
1969 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1970 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1971 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1972 echo "#define TARGET_SPARC 1" >> $config_h
1973 echo "#define TARGET_SPARC64 1" >> $config_h
1974 echo "#define TARGET_ABI32 1" >> $config_h
1977 echo "Unsupported target CPU"
1978 exit 1
1980 esac
1981 if test "$target_bigendian" = "yes" ; then
1982 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1983 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1985 if test "$target_softmmu" = "yes" ; then
1986 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1987 echo "#define CONFIG_SOFTMMU 1" >> $config_h
1989 if test "$target_user_only" = "yes" ; then
1990 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1991 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1993 if test "$target_linux_user" = "yes" ; then
1994 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1995 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1997 if test "$target_darwin_user" = "yes" ; then
1998 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1999 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
2001 list=""
2002 if test ! -z "$gdb_xml_files" ; then
2003 for x in $gdb_xml_files; do
2004 list="$list $source_path/gdb-xml/$x"
2005 done
2007 echo "TARGET_XML_FILES=$list" >> $config_mak
2009 if test "$target_cpu" = "arm" \
2010 -o "$target_cpu" = "armeb" \
2011 -o "$target_cpu" = "m68k" \
2012 -o "$target_cpu" = "hppa" \
2013 -o "$target_cpu" = "hppa64" \
2014 -o "$target_cpu" = "mips" \
2015 -o "$target_cpu" = "mipsel" \
2016 -o "$target_cpu" = "mipsn32" \
2017 -o "$target_cpu" = "mipsn32el" \
2018 -o "$target_cpu" = "mips64" \
2019 -o "$target_cpu" = "mips64el" \
2020 -o "$target_cpu" = "ppc" \
2021 -o "$target_cpu" = "ppc64" \
2022 -o "$target_cpu" = "ppc64abi32" \
2023 -o "$target_cpu" = "ppcemb" \
2024 -o "$target_cpu" = "sparc" \
2025 -o "$target_cpu" = "sparc64" \
2026 -o "$target_cpu" = "sparc32plus"; then
2027 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
2028 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
2030 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
2031 echo "TARGET_HAS_BFLT=yes" >> $config_mak
2032 echo "#define TARGET_HAS_BFLT 1" >> $config_h
2034 if test "$target_user_only" = "yes" \
2035 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
2036 echo "#define USE_NPTL 1" >> $config_h
2038 # 32 bit ELF loader in addition to native 64 bit loader?
2039 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
2040 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
2041 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
2043 if test "$target_bsd_user" = "yes" ; then
2044 echo "CONFIG_BSD_USER=yes" >> $config_mak
2045 echo "#define CONFIG_BSD_USER 1" >> $config_h
2048 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
2050 done # for target in $targets
2052 # build tree in object directory if source path is different from current one
2053 if test "$source_path_used" = "yes" ; then
2054 DIRS="tests tests/cris slirp audio"
2055 FILES="Makefile tests/Makefile"
2056 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
2057 FILES="$FILES tests/test-mmap.c"
2058 for dir in $DIRS ; do
2059 mkdir -p $dir
2060 done
2061 # remove the link and recreate it, as not all "ln -sf" overwrite the link
2062 for f in $FILES ; do
2063 rm -f $f
2064 ln -s $source_path/$f $f
2065 done