Update maintainer list.
[qemu/edde.git] / configure
blob21c0633b204e460c2c5100c895a50ddf0d0071a1
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 microblaze)
131 cpu="microblaze"
133 mips)
134 cpu="mips"
136 mips64)
137 cpu="mips64"
139 ppc)
140 cpu="ppc"
142 ppc64)
143 cpu="ppc64"
145 s390*)
146 cpu="s390"
148 sparc|sun4[cdmuv])
149 cpu="sparc"
151 sparc64)
152 cpu="sparc64"
155 cpu="unknown"
157 esac
158 gprof="no"
159 debug_tcg="no"
160 sparse="no"
161 strip_opt="yes"
162 bigendian="no"
163 mingw32="no"
164 EXESUF=""
165 slirp="yes"
166 vde="yes"
167 fmod_lib=""
168 fmod_inc=""
169 oss_lib=""
170 vnc_tls="yes"
171 vnc_sasl="yes"
172 bsd="no"
173 linux="no"
174 solaris="no"
175 kqemu="no"
176 profiler="no"
177 cocoa="no"
178 softmmu="yes"
179 linux_user="no"
180 darwin_user="no"
181 bsd_user="no"
182 build_docs="yes"
183 uname_release=""
184 curses="yes"
185 curl="yes"
186 pthread="yes"
187 aio="yes"
188 io_thread="no"
189 nptl="yes"
190 mixemu="no"
191 bluez="yes"
192 kvm="yes"
193 kerneldir=""
194 aix="no"
195 blobs="yes"
196 fdt="yes"
197 sdl="yes"
198 sdl_x11="no"
199 xen="yes"
200 pkgversion=""
202 # OS specific
203 if check_define __linux__ ; then
204 targetos="Linux"
205 elif check_define _WIN32 ; then
206 targetos='MINGW32'
207 elif check_define __OpenBSD__ ; then
208 targetos='OpenBSD'
209 elif check_define __sun__ ; then
210 targetos='SunOS'
211 else
212 targetos=`uname -s`
214 case $targetos in
215 CYGWIN*)
216 mingw32="yes"
217 OS_CFLAGS="-mno-cygwin"
218 if [ "$cpu" = "i386" ] ; then
219 kqemu="yes"
221 audio_possible_drivers="sdl"
223 MINGW32*)
224 mingw32="yes"
225 if [ "$cpu" = "i386" ] ; then
226 kqemu="yes"
228 audio_possible_drivers="dsound sdl fmod"
230 GNU/kFreeBSD)
231 audio_drv_list="oss"
232 audio_possible_drivers="oss sdl esd pa"
233 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
234 kqemu="yes"
237 FreeBSD)
238 bsd="yes"
239 audio_drv_list="oss"
240 audio_possible_drivers="oss sdl esd pa"
241 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
242 kqemu="yes"
245 DragonFly)
246 bsd="yes"
247 audio_drv_list="oss"
248 audio_possible_drivers="oss sdl esd pa"
249 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
250 kqemu="yes"
252 aio="no"
254 NetBSD)
255 bsd="yes"
256 audio_drv_list="oss"
257 audio_possible_drivers="oss sdl esd"
258 oss_lib="-lossaudio"
260 OpenBSD)
261 bsd="yes"
262 openbsd="yes"
263 audio_drv_list="oss"
264 audio_possible_drivers="oss sdl esd"
265 oss_lib="-lossaudio"
267 Darwin)
268 bsd="yes"
269 darwin="yes"
270 # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can run 64-bit userspace code
271 if [ "$cpu" = "i386" ] ; then
272 is_x86_64=`sysctl -n hw.optional.x86_64`
273 [ "$is_x86_64" = "1" ] && cpu=x86_64
275 if [ "$cpu" = "x86_64" ] ; then
276 OS_CFLAGS="-arch x86_64"
277 LDFLAGS="-arch x86_64"
278 else
279 OS_CFLAGS="-mdynamic-no-pic"
281 darwin_user="yes"
282 cocoa="yes"
283 audio_drv_list="coreaudio"
284 audio_possible_drivers="coreaudio sdl fmod"
285 OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
287 SunOS)
288 solaris="yes"
289 make="gmake"
290 install="ginstall"
291 needs_libsunmath="no"
292 kvm="no"
293 solarisrev=`uname -r | cut -f2 -d.`
294 # have to select again, because `uname -m` returns i86pc
295 # even on an x86_64 box.
296 solariscpu=`isainfo -k`
297 if test "${solariscpu}" = "amd64" ; then
298 cpu="x86_64"
300 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
301 if test "$solarisrev" -le 9 ; then
302 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
303 needs_libsunmath="yes"
304 else
305 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
306 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
307 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
308 echo "Studio 11 can be downloaded from www.sun.com."
309 exit 1
312 if test "$solarisrev" -ge 9 ; then
313 kqemu="yes"
316 if test -f /usr/include/sys/soundcard.h ; then
317 audio_drv_list="oss"
319 audio_possible_drivers="oss sdl"
320 OS_CFLAGS=-std=gnu99
322 AIX)
323 aix="yes"
324 make="gmake"
327 audio_drv_list="oss"
328 audio_possible_drivers="oss alsa sdl esd pa"
329 linux="yes"
330 linux_user="yes"
331 usb="linux"
332 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
333 kqemu="yes"
334 audio_possible_drivers="$audio_possible_drivers fmod"
337 esac
339 if [ "$bsd" = "yes" ] ; then
340 if [ "$darwin" != "yes" ] ; then
341 make="gmake"
342 usb="bsd"
344 bsd_user="yes"
347 # find source path
348 source_path=`dirname "$0"`
349 source_path_used="no"
350 workdir=`pwd`
351 if [ -z "$source_path" ]; then
352 source_path=$workdir
353 else
354 source_path=`cd "$source_path"; pwd`
356 [ -f "$workdir/vl.c" ] || source_path_used="yes"
358 werror="no"
359 # generate compile errors on warnings for development builds
360 #if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
361 #werror="yes";
364 for opt do
365 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
366 case "$opt" in
367 --help|-h) show_help=yes
369 --prefix=*) prefix="$optarg"
371 --interp-prefix=*) interp_prefix="$optarg"
373 --source-path=*) source_path="$optarg"
374 source_path_used="yes"
376 --cross-prefix=*)
378 --cc=*)
380 --host-cc=*) host_cc="$optarg"
382 --make=*) make="$optarg"
384 --install=*) install="$optarg"
386 --extra-cflags=*) CFLAGS="$optarg"
388 --extra-ldflags=*) LDFLAGS="$optarg"
390 --cpu=*) cpu="$optarg"
392 --target-list=*) target_list="$optarg"
394 --enable-gprof) gprof="yes"
396 --static) static="yes"
398 --disable-sdl) sdl="no"
400 --fmod-lib=*) fmod_lib="$optarg"
402 --fmod-inc=*) fmod_inc="$optarg"
404 --oss-lib=*) oss_lib="$optarg"
406 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
408 --audio-drv-list=*) audio_drv_list="$optarg"
410 --enable-debug-tcg) debug_tcg="yes"
412 --disable-debug-tcg) debug_tcg="no"
414 --enable-sparse) sparse="yes"
416 --disable-sparse) sparse="no"
418 --disable-strip) strip_opt="no"
420 --disable-vnc-tls) vnc_tls="no"
422 --disable-vnc-sasl) vnc_sasl="no"
424 --disable-slirp) slirp="no"
426 --disable-vde) vde="no"
428 --disable-kqemu) kqemu="no"
430 --disable-xen) xen="no"
432 --disable-brlapi) brlapi="no"
434 --disable-bluez) bluez="no"
436 --disable-kvm) kvm="no"
438 --enable-profiler) profiler="yes"
440 --enable-cocoa)
441 cocoa="yes" ;
442 sdl="no" ;
443 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
445 --disable-system) softmmu="no"
447 --enable-system) softmmu="yes"
449 --disable-linux-user) linux_user="no"
451 --enable-linux-user) linux_user="yes"
453 --disable-darwin-user) darwin_user="no"
455 --enable-darwin-user) darwin_user="yes"
457 --disable-bsd-user) bsd_user="no"
459 --enable-bsd-user) bsd_user="yes"
461 --enable-uname-release=*) uname_release="$optarg"
463 --sparc_cpu=*)
464 sparc_cpu="$optarg"
465 case $sparc_cpu in
466 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
467 target_cpu="sparc"; cpu="sparc" ;;
468 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
469 target_cpu="sparc"; cpu="sparc" ;;
470 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
471 target_cpu="sparc64"; cpu="sparc64" ;;
472 *) echo "undefined SPARC architecture. Exiting";exit 1;;
473 esac
475 --enable-werror) werror="yes"
477 --disable-werror) werror="no"
479 --disable-curses) curses="no"
481 --disable-curl) curl="no"
483 --disable-nptl) nptl="no"
485 --enable-mixemu) mixemu="yes"
487 --disable-pthread) pthread="no"
489 --disable-aio) aio="no"
491 --enable-io-thread) io_thread="yes"
493 --disable-blobs) blobs="no"
495 --kerneldir=*) kerneldir="$optarg"
497 --with-pkgversion=*) pkgversion=" ($optarg)"
499 --disable-docs) build_docs="no"
501 *) echo "ERROR: unknown option $opt"; show_help="yes"
503 esac
504 done
506 # default flags for all hosts
507 CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
508 CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
509 LDFLAGS="$LDFLAGS -g"
510 if test "$werror" = "yes" ; then
511 CFLAGS="$CFLAGS -Werror"
514 if test "$solaris" = "no" ; then
515 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
516 LDFLAGS="$LDFLAGS -Wl,--warn-common"
521 # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
522 # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
524 case "$cpu" in
525 sparc) if test -z "$sparc_cpu" ; then
526 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
527 ARCH_LDFLAGS="-m32"
528 else
529 ARCH_CFLAGS="${SP_CFLAGS}"
530 ARCH_LDFLAGS="${SP_LDFLAGS}"
532 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g2 -ffixed-g3"
533 if test "$solaris" = "no" ; then
534 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g6"
537 sparc64) if test -z "$sparc_cpu" ; then
538 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
539 ARCH_LDFLAGS="-m64"
540 else
541 ARCH_CFLAGS="${SP_CFLAGS}"
542 ARCH_LDFLAGS="${SP_LDFLAGS}"
544 if test "$solaris" = "no" ; then
545 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g5 -ffixed-g6 -ffixed-g7"
546 else
547 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g5 -ffixed-g6 -ffixed-g7"
550 s390)
551 ARCH_CFLAGS="-march=z900"
553 i386)
554 ARCH_CFLAGS="-m32"
555 ARCH_LDFLAGS="-m32"
557 x86_64)
558 ARCH_CFLAGS="-m64"
559 ARCH_LDFLAGS="-m64"
561 esac
563 if test x"$show_help" = x"yes" ; then
564 cat << EOF
566 Usage: configure [options]
567 Options: [defaults in brackets after descriptions]
570 echo "Standard options:"
571 echo " --help print this message"
572 echo " --prefix=PREFIX install in PREFIX [$prefix]"
573 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
574 echo " use %M for cpu name [$interp_prefix]"
575 echo " --target-list=LIST set target list [$target_list]"
576 echo ""
577 echo "kqemu kernel acceleration support:"
578 echo " --disable-kqemu disable kqemu support"
579 echo ""
580 echo "Advanced options (experts only):"
581 echo " --source-path=PATH path of source code [$source_path]"
582 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
583 echo " --cc=CC use C compiler CC [$cc]"
584 echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
585 echo " --extra-cflags=CFLAGS add C compiler flags CFLAGS"
586 echo " --extra-ldflags=LDFLAGS add linker flags LDFLAGS"
587 echo " --make=MAKE use specified make [$make]"
588 echo " --install=INSTALL use specified install [$install]"
589 echo " --static enable static build [$static]"
590 echo " --enable-debug-tcg enable TCG debugging"
591 echo " --disable-debug-tcg disable TCG debugging (default)"
592 echo " --enable-sparse enable sparse checker"
593 echo " --disable-sparse disable sparse checker (default)"
594 echo " --disable-strip disable stripping binaries"
595 echo " --disable-werror disable compilation abort on warning"
596 echo " --disable-sdl disable SDL"
597 echo " --enable-cocoa enable COCOA (Mac OS X only)"
598 echo " --audio-drv-list=LIST set audio drivers list:"
599 echo " Available drivers: $audio_possible_drivers"
600 echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
601 echo " Available cards: $audio_possible_cards"
602 echo " --enable-mixemu enable mixer emulation"
603 echo " --disable-xen disable xen backend driver support"
604 echo " --disable-brlapi disable BrlAPI"
605 echo " --disable-vnc-tls disable TLS encryption for VNC server"
606 echo " --disable-vnc-sasl disable SASL encryption for VNC server"
607 echo " --disable-curses disable curses output"
608 echo " --disable-curl disable curl connectivity"
609 echo " --disable-bluez disable bluez stack connectivity"
610 echo " --disable-kvm disable KVM acceleration support"
611 echo " --disable-nptl disable usermode NPTL support"
612 echo " --enable-system enable all system emulation targets"
613 echo " --disable-system disable all system emulation targets"
614 echo " --enable-linux-user enable all linux usermode emulation targets"
615 echo " --disable-linux-user disable all linux usermode emulation targets"
616 echo " --enable-darwin-user enable all darwin usermode emulation targets"
617 echo " --disable-darwin-user disable all darwin usermode emulation targets"
618 echo " --enable-bsd-user enable all BSD usermode emulation targets"
619 echo " --disable-bsd-user disable all BSD usermode emulation targets"
620 echo " --fmod-lib path to FMOD library"
621 echo " --fmod-inc path to FMOD includes"
622 echo " --oss-lib path to OSS library"
623 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
624 echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
625 echo " --disable-vde disable support for vde network"
626 echo " --disable-pthread disable pthread support"
627 echo " --disable-aio disable AIO support"
628 echo " --enable-io-thread enable IO thread"
629 echo " --disable-blobs disable installing provided firmware blobs"
630 echo " --kerneldir=PATH look for kernel includes in PATH"
631 echo ""
632 echo "NOTE: The object files are built at the place where configure is launched"
633 exit 1
636 if test "$mingw32" = "yes" ; then
637 linux="no"
638 EXESUF=".exe"
639 oss="no"
640 linux_user="no"
641 bsd_user="no"
642 OS_CFLAGS="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501"
645 if test ! -x "$(which cgcc 2>/dev/null)"; then
646 sparse="no"
650 # Solaris specific configure tool chain decisions
652 if test "$solaris" = "yes" ; then
653 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
654 if test -z "$solinst" ; then
655 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
656 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
657 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
658 exit 1
660 if test "$solinst" = "/usr/sbin/install" ; then
661 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
662 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
663 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
664 exit 1
666 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
667 if test -z "$sol_ar" ; then
668 echo "Error: No path includes ar"
669 if test -f /usr/ccs/bin/ar ; then
670 echo "Add /usr/ccs/bin to your path and rerun configure"
672 exit 1
677 if test -z "$target_list" ; then
678 # these targets are portable
679 if [ "$softmmu" = "yes" ] ; then
680 target_list="\
681 i386-softmmu \
682 x86_64-softmmu \
683 arm-softmmu \
684 cris-softmmu \
685 m68k-softmmu \
686 microblaze-softmmu \
687 mips-softmmu \
688 mipsel-softmmu \
689 mips64-softmmu \
690 mips64el-softmmu \
691 ppc-softmmu \
692 ppcemb-softmmu \
693 ppc64-softmmu \
694 sh4-softmmu \
695 sh4eb-softmmu \
696 sparc-softmmu \
699 # the following are Linux specific
700 if [ "$linux_user" = "yes" ] ; then
701 target_list="${target_list}\
702 i386-linux-user \
703 x86_64-linux-user \
704 alpha-linux-user \
705 arm-linux-user \
706 armeb-linux-user \
707 cris-linux-user \
708 m68k-linux-user \
709 microblaze-linux-user \
710 mips-linux-user \
711 mipsel-linux-user \
712 ppc-linux-user \
713 ppc64-linux-user \
714 ppc64abi32-linux-user \
715 sh4-linux-user \
716 sh4eb-linux-user \
717 sparc-linux-user \
718 sparc64-linux-user \
719 sparc32plus-linux-user \
722 # the following are Darwin specific
723 if [ "$darwin_user" = "yes" ] ; then
724 target_list="$target_list i386-darwin-user ppc-darwin-user "
726 # the following are BSD specific
727 if [ "$bsd_user" = "yes" ] ; then
728 target_list="${target_list}\
729 i386-bsd-user \
730 x86_64-bsd-user \
731 sparc-bsd-user \
732 sparc64-bsd-user \
735 else
736 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
738 if test -z "$target_list" ; then
739 echo "No targets enabled"
740 exit 1
743 if test -z "$cross_prefix" ; then
745 # ---
746 # big/little endian test
747 cat > $TMPC << EOF
748 #include <inttypes.h>
749 int main(int argc, char ** argv){
750 volatile uint32_t i=0x01234567;
751 return (*((uint8_t*)(&i))) == 0x67;
755 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
756 $TMPE && bigendian="yes"
757 else
758 echo big/little test failed
761 else
763 # if cross compiling, cannot launch a program, so make a static guess
764 if test "$cpu" = "armv4b" \
765 -o "$cpu" = "hppa" \
766 -o "$cpu" = "m68k" \
767 -o "$cpu" = "mips" \
768 -o "$cpu" = "mips64" \
769 -o "$cpu" = "ppc" \
770 -o "$cpu" = "ppc64" \
771 -o "$cpu" = "s390" \
772 -o "$cpu" = "sparc" \
773 -o "$cpu" = "sparc64"; then
774 bigendian="yes"
779 # host long bits test
780 hostlongbits="32"
781 if test "$cpu" = "x86_64" \
782 -o "$cpu" = "alpha" \
783 -o "$cpu" = "ia64" \
784 -o "$cpu" = "sparc64" \
785 -o "$cpu" = "ppc64"; then
786 hostlongbits="64"
789 # Check host NPTL support
790 cat > $TMPC <<EOF
791 #include <sched.h>
792 #include <linux/futex.h>
793 void foo()
795 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
796 #error bork
797 #endif
801 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
803 else
804 nptl="no"
807 ##########################################
808 # zlib check
810 cat > $TMPC << EOF
811 #include <zlib.h>
812 int main(void) { zlibVersion(); return 0; }
814 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
816 else
817 echo
818 echo "Error: zlib check failed"
819 echo "Make sure to have the zlib libs and headers installed."
820 echo
821 exit 1
824 ##########################################
825 # xen probe
827 if test "$xen" = "yes" ; then
828 cat > $TMPC <<EOF
829 #include <xenctrl.h>
830 #include <xs.h>
831 int main(void) { xs_daemon_open; xc_interface_open; }
833 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC -lxenstore -lxenctrl 2> /dev/null > /dev/null ; then
835 else
836 xen="no"
840 ##########################################
841 # SDL probe
843 sdl_too_old=no
845 if test "$sdl" = "yes" ; then
846 sdl_config="sdl-config"
847 sdl=no
848 sdl_static=no
850 cat > $TMPC << EOF
851 #include <SDL.h>
852 #undef main /* We don't want SDL to override our main() */
853 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
855 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` > $TMPSDLLOG 2>&1 ; then
856 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
857 if test "$_sdlversion" -lt 121 ; then
858 sdl_too_old=yes
859 else
860 if test "$cocoa" = "no" ; then
861 sdl=yes
865 # static link with sdl ?
866 if test "$sdl" = "yes" ; then
867 aa="no"
868 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
869 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
870 if [ "$aa" = "yes" ] ; then
871 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
874 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then
875 sdl_static=yes
877 fi # static link
878 fi # sdl compile test
879 else
880 # Make sure to disable cocoa if sdl was set
881 if test "$sdl" = "yes" ; then
882 cocoa="no"
883 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
885 fi # -z $sdl
887 if test "$sdl" = "yes" ; then
888 cat > $TMPC <<EOF
889 #include <SDL.h>
890 #if defined(SDL_VIDEO_DRIVER_X11)
891 #include <X11/XKBlib.h>
892 #else
893 #error No x11 support
894 #endif
895 int main(void) { return 0; }
897 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` > /dev/null 2>&1 ; then
898 sdl_x11="yes"
902 ##########################################
903 # VNC TLS detection
904 if test "$vnc_tls" = "yes" ; then
905 cat > $TMPC <<EOF
906 #include <gnutls/gnutls.h>
907 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
909 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
910 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
911 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
912 $vnc_tls_libs > /dev/null 2> /dev/null ; then
914 else
915 vnc_tls="no"
919 ##########################################
920 # VNC SASL detection
921 if test "$vnc_sasl" = "yes" ; then
922 cat > $TMPC <<EOF
923 #include <sasl/sasl.h>
924 #include <stdio.h>
925 int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
927 # Assuming Cyrus-SASL installed in /usr prefix
928 vnc_sasl_cflags=""
929 vnc_sasl_libs="-lsasl2"
930 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \
931 $vnc_sasl_libs 2> /dev/null > /dev/null ; then
933 else
934 vnc_sasl="no"
938 ##########################################
939 # fnmatch() probe, used for ACL routines
940 fnmatch="no"
941 cat > $TMPC << EOF
942 #include <fnmatch.h>
943 int main(void)
945 fnmatch("foo", "foo", 0);
946 return 0;
949 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
950 fnmatch="yes"
953 ##########################################
954 # vde libraries probe
955 if test "$vde" = "yes" ; then
956 cat > $TMPC << EOF
957 #include <libvdeplug.h>
958 int main(void)
960 struct vde_open_args a = {0, 0, 0};
961 vde_open("", "", &a);
962 return 0;
965 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
967 else
968 vde="no"
972 ##########################################
973 # Sound support libraries probe
975 audio_drv_probe()
977 drv=$1
978 hdr=$2
979 lib=$3
980 exp=$4
981 cfl=$5
982 cat > $TMPC << EOF
983 #include <$hdr>
984 int main(void) { $exp }
986 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
988 else
989 echo
990 echo "Error: $drv check failed"
991 echo "Make sure to have the $drv libs and headers installed."
992 echo
993 exit 1
997 audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
998 for drv in $audio_drv_list; do
999 case $drv in
1000 alsa)
1001 audio_drv_probe $drv alsa/asoundlib.h -lasound \
1002 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
1005 fmod)
1006 if test -z $fmod_lib || test -z $fmod_inc; then
1007 echo
1008 echo "Error: You must specify path to FMOD library and headers"
1009 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1010 echo
1011 exit 1
1013 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1016 esd)
1017 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
1021 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
1022 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
1025 oss|sdl|core|wav|dsound)
1026 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1030 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
1031 echo
1032 echo "Error: Unknown driver '$drv' selected"
1033 echo "Possible drivers are: $audio_possible_drivers"
1034 echo
1035 exit 1
1038 esac
1039 done
1041 ##########################################
1042 # BrlAPI probe
1044 if test -z "$brlapi" ; then
1045 brlapi=no
1046 cat > $TMPC << EOF
1047 #include <brlapi.h>
1048 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1050 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
1051 brlapi=yes
1052 fi # brlapi compile test
1053 fi # -z $brlapi
1055 ##########################################
1056 # curses probe
1058 if test "$curses" = "yes" ; then
1059 curses=no
1060 cat > $TMPC << EOF
1061 #include <curses.h>
1062 #ifdef __OpenBSD__
1063 #define resize_term resizeterm
1064 #endif
1065 int main(void) { resize_term(0, 0); return curses_version(); }
1067 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
1068 curses=yes
1070 fi # test "$curses"
1072 ##########################################
1073 # curl probe
1075 if test "$curl" = "yes" ; then
1076 curl=no
1077 cat > $TMPC << EOF
1078 #include <curl/curl.h>
1079 int main(void) { return curl_easy_init(); }
1081 curl_libs=`curl-config --libs 2>/dev/null`
1082 if $cc $ARCH_CFLAGS $curl_libs -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1083 curl=yes
1085 fi # test "$curl"
1087 ##########################################
1088 # bluez support probe
1089 if test "$bluez" = "yes" ; then
1090 `pkg-config bluez 2> /dev/null` || bluez="no"
1092 if test "$bluez" = "yes" ; then
1093 cat > $TMPC << EOF
1094 #include <bluetooth/bluetooth.h>
1095 int main(void) { return bt_error(0); }
1097 bluez_cflags=`pkg-config --cflags bluez 2> /dev/null`
1098 bluez_libs=`pkg-config --libs bluez 2> /dev/null`
1099 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
1100 $bluez_libs > /dev/null 2> /dev/null ; then
1102 else
1103 bluez="no"
1107 ##########################################
1108 # kvm probe
1109 if test "$kvm" = "yes" ; then
1110 cat > $TMPC <<EOF
1111 #include <linux/kvm.h>
1112 #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
1113 #error Invalid KVM version
1114 #endif
1115 #if !defined(KVM_CAP_USER_MEMORY)
1116 #error Missing KVM capability KVM_CAP_USER_MEMORY
1117 #endif
1118 #if !defined(KVM_CAP_SET_TSS_ADDR)
1119 #error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1120 #endif
1121 #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1122 #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1123 #endif
1124 int main(void) { return 0; }
1126 if test "$kerneldir" != "" ; then
1127 kvm_cflags=-I"$kerneldir"/include
1128 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1129 -a -d "$kerneldir/arch/x86/include" ; then
1130 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
1131 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1132 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
1133 elif test -d "$kerneldir/arch/$cpu/include" ; then
1134 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1136 else
1137 kvm_cflags=""
1139 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
1140 > /dev/null 2>/dev/null ; then
1142 else
1143 kvm="no";
1144 if [ -x "`which awk 2>/dev/null`" ] && \
1145 [ -x "`which grep 2>/dev/null`" ]; then
1146 kvmerr=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1147 | grep "error: " \
1148 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1149 if test "$kvmerr" != "" ; then
1150 kvm="no - (${kvmerr})"
1156 ##########################################
1157 # pthread probe
1158 PTHREADLIBS_LIST="-lpthread -lpthreadGC2"
1159 PTHREADLIBS=""
1161 if test "$pthread" = yes; then
1162 pthread=no
1163 cat > $TMPC << EOF
1164 #include <pthread.h>
1165 int main(void) { pthread_create(0,0,0,0); return 0; }
1167 for pthread_lib in $PTHREADLIBS_LIST; do
1168 if $cc $ARCH_CFLAGS -o $TMPE $TMPC $pthread_lib 2> /dev/null > /dev/null ; then
1169 pthread=yes
1170 PTHREADLIBS="$pthread_lib"
1171 break
1173 done
1176 if test "$pthread" = no; then
1177 aio=no
1178 io_thread=no
1181 ##########################################
1182 # iovec probe
1183 cat > $TMPC <<EOF
1184 #include <sys/types.h>
1185 #include <sys/uio.h>
1186 #include <unistd.h>
1187 int main(void) { struct iovec iov; return 0; }
1189 iovec=no
1190 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1191 iovec=yes
1194 ##########################################
1195 # preadv probe
1196 cat > $TMPC <<EOF
1197 #include <sys/types.h>
1198 #include <sys/uio.h>
1199 #include <unistd.h>
1200 int main(void) { preadv; }
1202 preadv=no
1203 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1204 preadv=yes
1207 ##########################################
1208 # fdt probe
1209 if test "$fdt" = "yes" ; then
1210 fdt=no
1211 cat > $TMPC << EOF
1212 int main(void) { return 0; }
1214 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null > /dev/null ; then
1215 fdt=yes
1220 # Check for xxxat() functions when we are building linux-user
1221 # emulator. This is done because older glibc versions don't
1222 # have syscall stubs for these implemented.
1224 atfile=no
1225 if [ "$linux_user" = "yes" ] ; then
1226 cat > $TMPC << EOF
1227 #define _ATFILE_SOURCE
1228 #include <sys/types.h>
1229 #include <fcntl.h>
1230 #include <unistd.h>
1233 main(void)
1235 /* try to unlink nonexisting file */
1236 return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1239 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null > /dev/null ; then
1240 atfile=yes
1244 # Check for inotify functions when we are building linux-user
1245 # emulator. This is done because older glibc versions don't
1246 # have syscall stubs for these implemented. In that case we
1247 # don't provide them even if kernel supports them.
1249 inotify=no
1250 if [ "$linux_user" = "yes" ] ; then
1251 cat > $TMPC << EOF
1252 #include <sys/inotify.h>
1255 main(void)
1257 /* try to start inotify */
1258 return inotify_init();
1261 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null > /dev/null ; then
1262 inotify=yes
1266 # Check if tools are available to build documentation.
1267 if test "$build_docs" = "yes" -a \( ! -x "`which texi2html 2>/dev/null`" -o ! -x "`which pod2man 2>/dev/null`" \) ; then
1268 build_docs="no"
1271 ##########################################
1272 # Do we need librt
1273 CLOCKLIBS=""
1274 cat > $TMPC <<EOF
1275 #include <signal.h>
1276 #include <time.h>
1277 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1280 rt=no
1281 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1283 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
1284 rt=yes
1287 if test "$rt" = "yes" ; then
1288 CLOCKLIBS="-lrt"
1291 if test "$mingw32" = "yes" ; then
1292 if test -z "$prefix" ; then
1293 prefix="c:\\\\Program Files\\\\Qemu"
1295 mansuffix=""
1296 datasuffix=""
1297 docsuffix=""
1298 binsuffix=""
1299 else
1300 if test -z "$prefix" ; then
1301 prefix="/usr/local"
1303 mansuffix="/share/man"
1304 datasuffix="/share/qemu"
1305 docsuffix="/share/doc/qemu"
1306 binsuffix="/bin"
1309 echo "Install prefix $prefix"
1310 echo "BIOS directory $prefix$datasuffix"
1311 echo "binary directory $prefix$binsuffix"
1312 if test "$mingw32" = "no" ; then
1313 echo "Manual directory $prefix$mansuffix"
1314 echo "ELF interp prefix $interp_prefix"
1316 echo "Source path $source_path"
1317 echo "C compiler $cc"
1318 echo "Host C compiler $host_cc"
1319 echo "ARCH_CFLAGS $ARCH_CFLAGS"
1320 echo "make $make"
1321 echo "install $install"
1322 echo "host CPU $cpu"
1323 echo "host big endian $bigendian"
1324 echo "target list $target_list"
1325 echo "tcg debug enabled $debug_tcg"
1326 echo "gprof enabled $gprof"
1327 echo "sparse enabled $sparse"
1328 echo "strip binaries $strip_opt"
1329 echo "profiler $profiler"
1330 echo "static build $static"
1331 echo "-Werror enabled $werror"
1332 if test "$darwin" = "yes" ; then
1333 echo "Cocoa support $cocoa"
1335 echo "SDL support $sdl"
1336 if test "$sdl" != "no" ; then
1337 echo "SDL static link $sdl_static"
1339 echo "curses support $curses"
1340 echo "curl support $curl"
1341 echo "mingw32 support $mingw32"
1342 echo "Audio drivers $audio_drv_list"
1343 echo "Extra audio cards $audio_card_list"
1344 echo "Mixer emulation $mixemu"
1345 echo "VNC TLS support $vnc_tls"
1346 if test "$vnc_tls" = "yes" ; then
1347 echo " TLS CFLAGS $vnc_tls_cflags"
1348 echo " TLS LIBS $vnc_tls_libs"
1350 echo "VNC SASL support $vnc_sasl"
1351 if test "$vnc_sasl" = "yes" ; then
1352 echo " SASL CFLAGS $vnc_sasl_cflags"
1353 echo " SASL LIBS $vnc_sasl_libs"
1355 if test -n "$sparc_cpu"; then
1356 echo "Target Sparc Arch $sparc_cpu"
1358 echo "kqemu support $kqemu"
1359 echo "xen support $xen"
1360 echo "brlapi support $brlapi"
1361 echo "Documentation $build_docs"
1362 [ ! -z "$uname_release" ] && \
1363 echo "uname -r $uname_release"
1364 echo "NPTL support $nptl"
1365 echo "vde support $vde"
1366 echo "AIO support $aio"
1367 echo "IO thread $io_thread"
1368 echo "Install blobs $blobs"
1369 echo "KVM support $kvm"
1370 echo "fdt support $fdt"
1371 echo "preadv support $preadv"
1373 if test $sdl_too_old = "yes"; then
1374 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1376 #if test "$sdl_static" = "no"; then
1377 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1379 config_mak="config-host.mak"
1380 config_h="config-host.h"
1382 #echo "Creating $config_mak and $config_h"
1384 test -f $config_h && mv $config_h ${config_h}~
1386 echo "# Automatically generated by configure - do not modify" > $config_mak
1387 printf "# Configured with:" >> $config_mak
1388 printf " '%s'" "$0" "$@" >> $config_mak
1389 echo >> $config_mak
1390 echo "/* Automatically generated by configure - do not modify */" > $config_h
1392 echo "prefix=$prefix" >> $config_mak
1393 echo "bindir=\${prefix}$binsuffix" >> $config_mak
1394 echo "mandir=\${prefix}$mansuffix" >> $config_mak
1395 echo "datadir=\${prefix}$datasuffix" >> $config_mak
1396 echo "docdir=\${prefix}$docsuffix" >> $config_mak
1397 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1398 echo "MAKE=$make" >> $config_mak
1399 echo "INSTALL=$install" >> $config_mak
1400 echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_mak
1401 echo "INSTALL_DATA=$install -m0644 -p" >> $config_mak
1402 echo "INSTALL_PROG=$install -m0755 -p" >> $config_mak
1403 echo "CC=$cc" >> $config_mak
1404 echo "HOST_CC=$host_cc" >> $config_mak
1405 echo "AR=$ar" >> $config_mak
1406 # XXX: only use CFLAGS and LDFLAGS ?
1407 # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1408 # compilation of dyngen tool (useful for win32 build on Linux host)
1409 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1410 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1411 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1412 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1413 echo "CFLAGS=$CFLAGS" >> $config_mak
1414 echo "LDFLAGS=$LDFLAGS" >> $config_mak
1415 echo "EXESUF=$EXESUF" >> $config_mak
1416 echo "PTHREADLIBS=$PTHREADLIBS" >> $config_mak
1417 echo "CLOCKLIBS=$CLOCKLIBS" >> $config_mak
1418 case "$cpu" in
1419 i386)
1420 echo "ARCH=i386" >> $config_mak
1421 echo "#define HOST_I386 1" >> $config_h
1423 x86_64)
1424 echo "ARCH=x86_64" >> $config_mak
1425 echo "#define HOST_X86_64 1" >> $config_h
1427 alpha)
1428 echo "ARCH=alpha" >> $config_mak
1429 echo "#define HOST_ALPHA 1" >> $config_h
1431 armv4b)
1432 echo "ARCH=arm" >> $config_mak
1433 echo "#define HOST_ARM 1" >> $config_h
1435 armv4l)
1436 echo "ARCH=arm" >> $config_mak
1437 echo "#define HOST_ARM 1" >> $config_h
1439 cris)
1440 echo "ARCH=cris" >> $config_mak
1441 echo "#define HOST_CRIS 1" >> $config_h
1443 hppa)
1444 echo "ARCH=hppa" >> $config_mak
1445 echo "#define HOST_HPPA 1" >> $config_h
1447 ia64)
1448 echo "ARCH=ia64" >> $config_mak
1449 echo "#define HOST_IA64 1" >> $config_h
1451 m68k)
1452 echo "ARCH=m68k" >> $config_mak
1453 echo "#define HOST_M68K 1" >> $config_h
1455 microblaze)
1456 echo "ARCH=microblaze" >> $config_mak
1457 echo "#define HOST_MICROBLAZE 1" >> $config_h
1459 mips)
1460 echo "ARCH=mips" >> $config_mak
1461 echo "#define HOST_MIPS 1" >> $config_h
1463 mips64)
1464 echo "ARCH=mips64" >> $config_mak
1465 echo "#define HOST_MIPS64 1" >> $config_h
1467 ppc)
1468 echo "ARCH=ppc" >> $config_mak
1469 echo "#define HOST_PPC 1" >> $config_h
1471 ppc64)
1472 echo "ARCH=ppc64" >> $config_mak
1473 echo "#define HOST_PPC64 1" >> $config_h
1475 s390)
1476 echo "ARCH=s390" >> $config_mak
1477 echo "#define HOST_S390 1" >> $config_h
1479 sparc)
1480 echo "ARCH=sparc" >> $config_mak
1481 echo "#define HOST_SPARC 1" >> $config_h
1483 sparc64)
1484 echo "ARCH=sparc64" >> $config_mak
1485 echo "#define HOST_SPARC64 1" >> $config_h
1488 echo "Unsupported CPU = $cpu"
1489 exit 1
1491 esac
1492 if test "$debug_tcg" = "yes" ; then
1493 echo "#define DEBUG_TCG 1" >> $config_h
1495 if test "$sparse" = "yes" ; then
1496 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1497 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1498 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1500 if test "$strip_opt" = "yes" ; then
1501 echo "STRIP_OPT=-s" >> $config_mak
1503 if test "$bigendian" = "yes" ; then
1504 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1505 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1507 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1508 if test "$mingw32" = "yes" ; then
1509 echo "CONFIG_WIN32=yes" >> $config_mak
1510 echo "#define CONFIG_WIN32 1" >> $config_h
1511 else
1512 cat > $TMPC << EOF
1513 #include <byteswap.h>
1514 int main(void) { return bswap_32(0); }
1516 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1517 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1519 cat > $TMPC << EOF
1520 #include <sys/endian.h>
1521 #include <sys/types.h>
1522 #include <machine/bswap.h>
1523 int main(void) { return bswap32(0); }
1525 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1526 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1530 if [ "$openbsd" = "yes" ] ; then
1531 echo "#define ENOTSUP 4096" >> $config_h
1534 if test "$darwin" = "yes" ; then
1535 echo "CONFIG_DARWIN=yes" >> $config_mak
1536 echo "#define CONFIG_DARWIN 1" >> $config_h
1539 if test "$aix" = "yes" ; then
1540 echo "CONFIG_AIX=yes" >> $config_mak
1541 echo "#define CONFIG_AIX 1" >> $config_h
1544 if test "$solaris" = "yes" ; then
1545 echo "CONFIG_SOLARIS=yes" >> $config_mak
1546 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1547 if test "$needs_libsunmath" = "yes" ; then
1548 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1549 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1552 if test -n "$sparc_cpu"; then
1553 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1554 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1556 if test "$gprof" = "yes" ; then
1557 echo "TARGET_GPROF=yes" >> $config_mak
1558 echo "#define HAVE_GPROF 1" >> $config_h
1560 if test "$static" = "yes" ; then
1561 echo "CONFIG_STATIC=yes" >> $config_mak
1562 echo "#define CONFIG_STATIC 1" >> $config_h
1564 if test $profiler = "yes" ; then
1565 echo "#define CONFIG_PROFILER 1" >> $config_h
1567 if test "$slirp" = "yes" ; then
1568 echo "CONFIG_SLIRP=yes" >> $config_mak
1569 echo "#define CONFIG_SLIRP 1" >> $config_h
1571 if test "$vde" = "yes" ; then
1572 echo "CONFIG_VDE=yes" >> $config_mak
1573 echo "#define CONFIG_VDE 1" >> $config_h
1574 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1576 for card in $audio_card_list; do
1577 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
1578 echo "$def=yes" >> $config_mak
1579 echo "#define $def 1" >> $config_h
1580 done
1581 echo "#define AUDIO_DRIVERS \\" >> $config_h
1582 for drv in $audio_drv_list; do
1583 echo " &${drv}_audio_driver, \\" >>$config_h
1584 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
1585 echo "$def=yes" >> $config_mak
1586 if test "$drv" = "fmod"; then
1587 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1588 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1589 elif test "$drv" = "oss"; then
1590 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1592 done
1593 echo "" >>$config_h
1594 if test "$mixemu" = "yes" ; then
1595 echo "CONFIG_MIXEMU=yes" >> $config_mak
1596 echo "#define CONFIG_MIXEMU 1" >> $config_h
1598 if test "$vnc_tls" = "yes" ; then
1599 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1600 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1601 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1602 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1604 if test "$vnc_sasl" = "yes" ; then
1605 echo "CONFIG_VNC_SASL=yes" >> $config_mak
1606 echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak
1607 echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak
1608 echo "#define CONFIG_VNC_SASL 1" >> $config_h
1610 if test "$fnmatch" = "yes" ; then
1611 echo "#define HAVE_FNMATCH_H 1" >> $config_h
1613 qemu_version=`head $source_path/VERSION`
1614 echo "VERSION=$qemu_version" >>$config_mak
1615 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1617 echo "#define QEMU_PKGVERSION \"$pkgversion\"" >> $config_h
1619 echo "SRC_PATH=$source_path" >> $config_mak
1620 if [ "$source_path_used" = "yes" ]; then
1621 echo "VPATH=$source_path" >> $config_mak
1623 echo "TARGET_DIRS=$target_list" >> $config_mak
1624 if [ "$build_docs" = "yes" ] ; then
1625 echo "BUILD_DOCS=yes" >> $config_mak
1627 if test "$static" = "yes"; then
1628 sdl1=$sdl_static
1629 else
1630 sdl1=$sdl
1632 if test "$sdl1" = "yes" ; then
1633 echo "#define CONFIG_SDL 1" >> $config_h
1634 echo "CONFIG_SDL=yes" >> $config_mak
1635 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1636 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1637 elif test "$sdl_x11" = "yes" ; then
1638 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
1639 else
1640 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1642 if [ "${aa}" = "yes" ] ; then
1643 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1644 else
1645 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1648 if test "$cocoa" = "yes" ; then
1649 echo "#define CONFIG_COCOA 1" >> $config_h
1650 echo "CONFIG_COCOA=yes" >> $config_mak
1652 if test "$curses" = "yes" ; then
1653 echo "#define CONFIG_CURSES 1" >> $config_h
1654 echo "CONFIG_CURSES=yes" >> $config_mak
1655 echo "CURSES_LIBS=-lcurses" >> $config_mak
1657 if test "$atfile" = "yes" ; then
1658 echo "#define CONFIG_ATFILE 1" >> $config_h
1660 if test "$inotify" = "yes" ; then
1661 echo "#define CONFIG_INOTIFY 1" >> $config_h
1663 if test "$curl" = "yes" ; then
1664 echo "CONFIG_CURL=yes" >> $config_mak
1665 echo "CURL_LIBS=$curl_libs" >> $config_mak
1666 echo "#define CONFIG_CURL 1" >> $config_h
1668 if test "$brlapi" = "yes" ; then
1669 echo "CONFIG_BRLAPI=yes" >> $config_mak
1670 echo "#define CONFIG_BRLAPI 1" >> $config_h
1671 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1673 if test "$bluez" = "yes" ; then
1674 echo "CONFIG_BLUEZ=yes" >> $config_mak
1675 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1676 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1677 echo "#define CONFIG_BLUEZ 1" >> $config_h
1679 if test "$xen" = "yes" ; then
1680 echo "XEN_LIBS=-lxenstore -lxenctrl -lxenguest" >> $config_mak
1682 if test "$aio" = "yes" ; then
1683 echo "#define CONFIG_AIO 1" >> $config_h
1684 echo "CONFIG_AIO=yes" >> $config_mak
1686 if test "$io_thread" = "yes" ; then
1687 echo "CONFIG_IOTHREAD=yes" >> $config_mak
1688 echo "#define CONFIG_IOTHREAD 1" >> $config_h
1690 if test "$blobs" = "yes" ; then
1691 echo "INSTALL_BLOBS=yes" >> $config_mak
1693 if test "$iovec" = "yes" ; then
1694 echo "#define HAVE_IOVEC 1" >> $config_h
1696 if test "$preadv" = "yes" ; then
1697 echo "#define HAVE_PREADV 1" >> $config_h
1699 if test "$fdt" = "yes" ; then
1700 echo "#define HAVE_FDT 1" >> $config_h
1701 echo "FDT_LIBS=-lfdt" >> $config_mak
1704 # XXX: suppress that
1705 if [ "$bsd" = "yes" ] ; then
1706 echo "#define O_LARGEFILE 0" >> $config_h
1707 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1708 echo "#define HOST_BSD 1" >> $config_h
1711 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1713 # USB host support
1714 case "$usb" in
1715 linux)
1716 echo "HOST_USB=linux" >> $config_mak
1718 bsd)
1719 echo "HOST_USB=bsd" >> $config_mak
1722 echo "HOST_USB=stub" >> $config_mak
1724 esac
1726 # Determine what linker flags to use to force archive inclusion
1727 check_linker_flags()
1729 $cc $ARCH_CFLAGS -o $TMPE $OS_CFLAGS $TMPC -Wl,$1 -Wl,$2 >/dev/null 2>/dev/null
1732 cat > $TMPC << EOF
1733 int main(void) { }
1735 if check_linker_flags --whole-archive --no-whole-archive ; then
1736 # GNU ld
1737 echo "ARLIBS_BEGIN=-Wl,--whole-archive" >> $config_mak
1738 echo "ARLIBS_END=-Wl,--no-whole-archive" >> $config_mak
1739 elif check_linker_flags -z,allextract -z,defaultextract ; then
1740 # Solaris ld
1741 echo "ARLIBS_BEGIN=-Wl,-z,allextract" >> $config_mak
1742 echo "ARLIBS_END=-Wl,-z,defaultextract" >> $config_mak
1743 else
1744 echo "Error: your linker does not support --whole-archive or -z."
1745 echo "Please report to qemu-devel@nongnu.org"
1746 exit 1
1749 if test "$xen" = "yes" ;
1750 then
1751 echo "CONFIG_XEN=yes" >> $config_mak
1754 tools=
1755 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1756 tools="qemu-img\$(EXESUF) $tools"
1757 if [ "$linux" = "yes" ] ; then
1758 tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
1761 echo "TOOLS=$tools" >> $config_mak
1763 if test -f ${config_h}~ ; then
1764 if cmp -s $config_h ${config_h}~ ; then
1765 mv ${config_h}~ $config_h
1766 else
1767 rm ${config_h}~
1771 config_host_mak=${config_mak}
1773 for target in $target_list; do
1774 target_dir="$target"
1775 config_mak=$target_dir/config.mak
1776 config_h=$target_dir/config.h
1777 target_cpu=`echo $target | cut -d '-' -f 1`
1778 target_bigendian="no"
1779 [ "$target_cpu" = "armeb" ] && target_bigendian=yes
1780 [ "$target_cpu" = "m68k" ] && target_bigendian=yes
1781 [ "$target_cpu" = "microblaze" ] && target_bigendian=yes
1782 [ "$target_cpu" = "mips" ] && target_bigendian=yes
1783 [ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1784 [ "$target_cpu" = "mips64" ] && target_bigendian=yes
1785 [ "$target_cpu" = "ppc" ] && target_bigendian=yes
1786 [ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
1787 [ "$target_cpu" = "ppc64" ] && target_bigendian=yes
1788 [ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
1789 [ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
1790 [ "$target_cpu" = "sparc" ] && target_bigendian=yes
1791 [ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1792 [ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
1793 target_softmmu="no"
1794 target_user_only="no"
1795 target_linux_user="no"
1796 target_darwin_user="no"
1797 target_bsd_user="no"
1798 case "$target" in
1799 ${target_cpu}-softmmu)
1800 target_softmmu="yes"
1802 ${target_cpu}-linux-user)
1803 target_user_only="yes"
1804 target_linux_user="yes"
1806 ${target_cpu}-darwin-user)
1807 target_user_only="yes"
1808 target_darwin_user="yes"
1810 ${target_cpu}-bsd-user)
1811 target_user_only="yes"
1812 target_bsd_user="yes"
1815 echo "ERROR: Target '$target' not recognised"
1816 exit 1
1818 esac
1820 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1822 test -f $config_h && mv $config_h ${config_h}~
1824 mkdir -p $target_dir
1825 mkdir -p $target_dir/fpu
1826 mkdir -p $target_dir/tcg
1827 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1828 mkdir -p $target_dir/nwfpe
1832 # don't use ln -sf as not all "ln -sf" over write the file/link
1834 rm -f $target_dir/Makefile
1835 ln -s $source_path/Makefile.target $target_dir/Makefile
1838 echo "# Automatically generated by configure - do not modify" > $config_mak
1839 echo "/* Automatically generated by configure - do not modify */" > $config_h
1842 echo "include ../config-host.mak" >> $config_mak
1843 echo "#include \"../config-host.h\"" >> $config_h
1845 bflt="no"
1846 elfload32="no"
1847 target_nptl="no"
1848 interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1849 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1850 gdb_xml_files=""
1852 # Make sure the target and host cpus are compatible
1853 if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
1854 \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \
1855 \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \
1856 \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then
1857 kvm="no"
1859 # Disable KVM for linux-user
1860 if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1861 kvm="no"
1864 case "$target_cpu" in
1865 i386)
1866 echo "TARGET_ARCH=i386" >> $config_mak
1867 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1868 echo "#define TARGET_I386 1" >> $config_h
1869 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1870 then
1871 echo "CONFIG_KQEMU=yes" >> $config_mak
1872 echo "#define CONFIG_KQEMU 1" >> $config_h
1874 if test "$kvm" = "yes" ; then
1875 echo "CONFIG_KVM=yes" >> $config_mak
1876 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1877 echo "#define CONFIG_KVM 1" >> $config_h
1879 if test "$xen" = "yes" -a "$target_softmmu" = "yes";
1880 then
1881 echo "CONFIG_XEN=yes" >> $config_mak
1882 echo "#define CONFIG_XEN 1" >> $config_h
1884 target_phys_bits=32
1886 x86_64)
1887 echo "TARGET_ARCH=x86_64" >> $config_mak
1888 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1889 echo "#define TARGET_I386 1" >> $config_h
1890 echo "#define TARGET_X86_64 1" >> $config_h
1891 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1892 then
1893 echo "CONFIG_KQEMU=yes" >> $config_mak
1894 echo "#define CONFIG_KQEMU 1" >> $config_h
1896 if test "$kvm" = "yes" ; then
1897 echo "CONFIG_KVM=yes" >> $config_mak
1898 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1899 echo "#define CONFIG_KVM 1" >> $config_h
1901 if test "$xen" = "yes" -a "$target_softmmu" = "yes"
1902 then
1903 echo "CONFIG_XEN=yes" >> $config_mak
1904 echo "#define CONFIG_XEN 1" >> $config_h
1906 target_phys_bits=64
1908 alpha)
1909 echo "TARGET_ARCH=alpha" >> $config_mak
1910 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1911 echo "#define TARGET_ALPHA 1" >> $config_h
1912 target_phys_bits=64
1914 arm|armeb)
1915 echo "TARGET_ARCH=arm" >> $config_mak
1916 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1917 echo "#define TARGET_ARM 1" >> $config_h
1918 bflt="yes"
1919 target_nptl="yes"
1920 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1921 target_phys_bits=32
1923 cris)
1924 echo "TARGET_ARCH=cris" >> $config_mak
1925 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1926 echo "#define TARGET_CRIS 1" >> $config_h
1927 target_nptl="yes"
1928 target_phys_bits=32
1930 m68k)
1931 echo "TARGET_ARCH=m68k" >> $config_mak
1932 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1933 echo "#define TARGET_M68K 1" >> $config_h
1934 bflt="yes"
1935 gdb_xml_files="cf-core.xml cf-fp.xml"
1936 target_phys_bits=32
1938 microblaze)
1939 echo "TARGET_ARCH=microblaze" >> $config_mak
1940 echo "#define TARGET_ARCH \"microblaze\"" >> $config_h
1941 echo "#define TARGET_MICROBLAZE 1" >> $config_h
1942 bflt="yes"
1943 target_nptl="yes"
1944 target_phys_bits=32
1946 mips|mipsel)
1947 echo "TARGET_ARCH=mips" >> $config_mak
1948 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1949 echo "#define TARGET_MIPS 1" >> $config_h
1950 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1951 target_phys_bits=64
1953 mipsn32|mipsn32el)
1954 echo "TARGET_ARCH=mipsn32" >> $config_mak
1955 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1956 echo "#define TARGET_MIPS 1" >> $config_h
1957 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1958 target_phys_bits=64
1960 mips64|mips64el)
1961 echo "TARGET_ARCH=mips64" >> $config_mak
1962 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1963 echo "#define TARGET_MIPS 1" >> $config_h
1964 echo "#define TARGET_MIPS64 1" >> $config_h
1965 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1966 target_phys_bits=64
1968 ppc)
1969 echo "TARGET_ARCH=ppc" >> $config_mak
1970 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1971 echo "#define TARGET_PPC 1" >> $config_h
1972 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1973 target_phys_bits=32
1975 ppcemb)
1976 echo "TARGET_ARCH=ppcemb" >> $config_mak
1977 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1978 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1979 echo "#define TARGET_PPC 1" >> $config_h
1980 echo "#define TARGET_PPCEMB 1" >> $config_h
1981 if test "$kvm" = "yes" ; then
1982 echo "CONFIG_KVM=yes" >> $config_mak
1983 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1984 echo "#define CONFIG_KVM 1" >> $config_h
1986 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1987 target_phys_bits=64
1989 ppc64)
1990 echo "TARGET_ARCH=ppc64" >> $config_mak
1991 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1992 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1993 echo "#define TARGET_PPC 1" >> $config_h
1994 echo "#define TARGET_PPC64 1" >> $config_h
1995 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1996 target_phys_bits=64
1998 ppc64abi32)
1999 echo "TARGET_ARCH=ppc64" >> $config_mak
2000 echo "TARGET_ABI_DIR=ppc" >> $config_mak
2001 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
2002 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
2003 echo "#define TARGET_PPC 1" >> $config_h
2004 echo "#define TARGET_PPC64 1" >> $config_h
2005 echo "#define TARGET_ABI32 1" >> $config_h
2006 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2007 target_phys_bits=64
2009 sh4|sh4eb)
2010 echo "TARGET_ARCH=sh4" >> $config_mak
2011 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
2012 echo "#define TARGET_SH4 1" >> $config_h
2013 bflt="yes"
2014 target_nptl="yes"
2015 target_phys_bits=32
2017 sparc)
2018 echo "TARGET_ARCH=sparc" >> $config_mak
2019 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
2020 echo "#define TARGET_SPARC 1" >> $config_h
2021 target_phys_bits=64
2023 sparc64)
2024 echo "TARGET_ARCH=sparc64" >> $config_mak
2025 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
2026 echo "#define TARGET_SPARC 1" >> $config_h
2027 echo "#define TARGET_SPARC64 1" >> $config_h
2028 elfload32="yes"
2029 target_phys_bits=64
2031 sparc32plus)
2032 echo "TARGET_ARCH=sparc64" >> $config_mak
2033 echo "TARGET_ABI_DIR=sparc" >> $config_mak
2034 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
2035 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
2036 echo "#define TARGET_SPARC 1" >> $config_h
2037 echo "#define TARGET_SPARC64 1" >> $config_h
2038 echo "#define TARGET_ABI32 1" >> $config_h
2039 target_phys_bits=64
2042 echo "Unsupported target CPU"
2043 exit 1
2045 esac
2046 if [ $target_phys_bits -lt $hostlongbits ] ; then
2047 target_phys_bits=$hostlongbits
2049 echo "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak
2050 echo "#define TARGET_PHYS_ADDR_BITS $target_phys_bits" >> $config_h
2051 echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
2052 if test "$target_bigendian" = "yes" ; then
2053 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
2054 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
2056 if test "$target_softmmu" = "yes" ; then
2057 echo "CONFIG_SOFTMMU=yes" >> $config_mak
2058 echo "#define CONFIG_SOFTMMU 1" >> $config_h
2060 if test "$target_user_only" = "yes" ; then
2061 echo "CONFIG_USER_ONLY=yes" >> $config_mak
2062 echo "#define CONFIG_USER_ONLY 1" >> $config_h
2064 if test "$target_linux_user" = "yes" ; then
2065 echo "CONFIG_LINUX_USER=yes" >> $config_mak
2066 echo "#define CONFIG_LINUX_USER 1" >> $config_h
2068 if test "$target_darwin_user" = "yes" ; then
2069 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
2070 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
2072 list=""
2073 if test ! -z "$gdb_xml_files" ; then
2074 for x in $gdb_xml_files; do
2075 list="$list $source_path/gdb-xml/$x"
2076 done
2078 echo "TARGET_XML_FILES=$list" >> $config_mak
2080 if test "$target_cpu" = "arm" \
2081 -o "$target_cpu" = "armeb" \
2082 -o "$target_cpu" = "m68k" \
2083 -o "$target_cpu" = "microblaze" \
2084 -o "$target_cpu" = "mips" \
2085 -o "$target_cpu" = "mipsel" \
2086 -o "$target_cpu" = "mipsn32" \
2087 -o "$target_cpu" = "mipsn32el" \
2088 -o "$target_cpu" = "mips64" \
2089 -o "$target_cpu" = "mips64el" \
2090 -o "$target_cpu" = "ppc" \
2091 -o "$target_cpu" = "ppc64" \
2092 -o "$target_cpu" = "ppc64abi32" \
2093 -o "$target_cpu" = "ppcemb" \
2094 -o "$target_cpu" = "sparc" \
2095 -o "$target_cpu" = "sparc64" \
2096 -o "$target_cpu" = "sparc32plus"; then
2097 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
2098 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
2100 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
2101 echo "TARGET_HAS_BFLT=yes" >> $config_mak
2102 echo "#define TARGET_HAS_BFLT 1" >> $config_h
2104 if test "$target_user_only" = "yes" \
2105 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
2106 echo "#define USE_NPTL 1" >> $config_h
2108 # 32 bit ELF loader in addition to native 64 bit loader?
2109 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
2110 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
2111 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
2113 if test "$target_bsd_user" = "yes" ; then
2114 echo "CONFIG_BSD_USER=yes" >> $config_mak
2115 echo "#define CONFIG_BSD_USER 1" >> $config_h
2118 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
2120 done # for target in $targets
2122 # build tree in object directory if source path is different from current one
2123 if test "$source_path_used" = "yes" ; then
2124 DIRS="tests tests/cris slirp audio block"
2125 FILES="Makefile tests/Makefile"
2126 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
2127 FILES="$FILES tests/test-mmap.c"
2128 for dir in $DIRS ; do
2129 mkdir -p $dir
2130 done
2131 # remove the link and recreate it, as not all "ln -sf" overwrite the link
2132 for f in $FILES ; do
2133 rm -f $f
2134 ln -s $source_path/$f $f
2135 done
2138 for hwlib in 32 64; do
2139 d=libhw$hwlib
2140 mkdir -p $d
2141 rm -f $d/Makefile
2142 ln -s $source_path/Makefile.hw $d/Makefile
2143 echo "HWLIB=libqemuhw$hwlib.a" > $d/config.mak
2144 echo "CPPFLAGS=-DTARGET_PHYS_ADDR_BITS=$hwlib" >> $d/config.mak
2145 done