3 # qemu configure script (c) 2003 Fabrice Bellard
5 # set temporary file name
6 if test ! -z "$TMPDIR" ; then
8 elif test ! -z "$TEMPDIR" ; then
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
25 interp_prefix
="/usr/gnemul/qemu-%M"
30 audio_card_list
="ac97 es1370 sb16"
31 audio_possible_cards
="ac97 es1370 sb16 cs4231a adlib gus"
38 # parse CC options first
40 optarg
=`expr "x$opt" : 'x[^=]*=\(.*\)'`
42 --cross-prefix=*) cross_prefix
="$optarg"
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.
62 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev
/null
2> /dev
/null
; then
65 echo "ERROR: \"$cc\" either does not exist or does not work"
74 int main(void) { return 0; }
76 $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev
/null
2> /dev
/null
79 if check_define __i386__
; then
81 elif check_define __x86_64__
; then
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
91 elif check_define _ARCH_PPC
; then
92 if check_define _ARCH_PPC64
; then
103 i386|i486|i586|i686|i86pc|BePC
)
194 if check_define __linux__
; then
196 elif check_define _WIN32
; then
204 OS_CFLAGS
="-mno-cygwin"
205 if [ "$cpu" = "i386" ] ; then
208 audio_possible_drivers
="sdl"
212 if [ "$cpu" = "i386" ] ; then
215 audio_possible_drivers
="dsound sdl fmod"
219 audio_possible_drivers
="oss sdl esd pa"
220 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
227 audio_possible_drivers
="oss sdl esd pa"
228 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
235 audio_possible_drivers
="oss sdl esd pa"
236 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
244 audio_possible_drivers
="oss sdl esd"
251 audio_possible_drivers
="oss sdl esd"
257 # 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
258 if [ "$cpu" = "i386" ] ; then
259 is_x86_64
=`sysctl -n hw.optional.x86_64`
260 [ "$is_x86_64" = "1" ] && cpu
=x86_64
262 if [ "$cpu" = "x86_64" ] ; then
263 OS_CFLAGS
="-arch x86_64"
264 LDFLAGS
="-arch x86_64"
266 OS_CFLAGS
="-mdynamic-no-pic"
270 audio_drv_list
="coreaudio"
271 audio_possible_drivers
="coreaudio sdl fmod"
272 OS_LDFLAGS
="-framework CoreFoundation -framework IOKit"
278 needs_libsunmath
="no"
279 solarisrev
=`uname -r | cut -f2 -d.`
280 # have to select again, because `uname -m` returns i86pc
281 # even on an x86_64 box.
282 solariscpu
=`isainfo -k`
283 if test "${solariscpu}" = "amd64" ; then
286 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
287 if test "$solarisrev" -le 9 ; then
288 if test -f /opt
/SUNWspro
/prod
/lib
/libsunmath.so
.1; then
289 needs_libsunmath
="yes"
291 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
292 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
293 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
294 echo "Studio 11 can be downloaded from www.sun.com."
298 if test "$solarisrev" -ge 9 ; then
302 if test -f /usr
/include
/sys
/soundcard.h
; then
305 audio_possible_drivers
="oss sdl"
313 audio_possible_drivers
="oss alsa sdl esd pa"
317 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
319 audio_possible_drivers
="$audio_possible_drivers fmod"
324 if [ "$bsd" = "yes" ] ; then
325 if [ "$darwin" != "yes" ] ; then
333 source_path
=`dirname "$0"`
334 source_path_used
="no"
336 if [ -z "$source_path" ]; then
339 source_path
=`cd "$source_path"; pwd`
341 [ -f "$workdir/vl.c" ] || source_path_used
="yes"
344 # generate compile errors on warnings for development builds
345 #if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
350 optarg
=`expr "x$opt" : 'x[^=]*=\(.*\)'`
352 --help|
-h) show_help
=yes
354 --prefix=*) prefix
="$optarg"
356 --interp-prefix=*) interp_prefix
="$optarg"
358 --source-path=*) source_path
="$optarg"
359 source_path_used
="yes"
365 --host-cc=*) host_cc
="$optarg"
367 --make=*) make="$optarg"
369 --install=*) install="$optarg"
371 --extra-cflags=*) CFLAGS
="$optarg"
373 --extra-ldflags=*) LDFLAGS
="$optarg"
375 --cpu=*) cpu
="$optarg"
377 --target-list=*) target_list
="$optarg"
379 --enable-gprof) gprof
="yes"
381 --static) static
="yes"
383 --disable-sdl) sdl
="no"
385 --fmod-lib=*) fmod_lib
="$optarg"
387 --fmod-inc=*) fmod_inc
="$optarg"
389 --oss-lib=*) oss_lib
="$optarg"
391 --audio-card-list=*) audio_card_list
=`echo "$optarg" | sed -e 's/,/ /g'`
393 --audio-drv-list=*) audio_drv_list
="$optarg"
395 --enable-sparse) sparse
="yes"
397 --disable-sparse) sparse
="no"
399 --disable-vnc-tls) vnc_tls
="no"
401 --disable-vnc-sasl) vnc_sasl
="no"
403 --disable-slirp) slirp
="no"
405 --disable-vde) vde
="no"
407 --disable-kqemu) kqemu
="no"
409 --disable-brlapi) brlapi
="no"
411 --disable-bluez) bluez
="no"
413 --disable-kvm) kvm
="no"
415 --enable-profiler) profiler
="yes"
420 audio_drv_list
="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
422 --disable-gfx-check) check_gfx
="no"
424 --disable-system) softmmu
="no"
426 --enable-system) softmmu
="yes"
428 --disable-linux-user) linux_user
="no"
430 --enable-linux-user) linux_user
="yes"
432 --disable-darwin-user) darwin_user
="no"
434 --enable-darwin-user) darwin_user
="yes"
436 --disable-bsd-user) bsd_user
="no"
438 --enable-bsd-user) bsd_user
="yes"
440 --enable-uname-release=*) uname_release
="$optarg"
445 v7|v8
) SP_CFLAGS
="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
446 target_cpu
="sparc"; cpu
="sparc" ;;
447 v8plus|v8plusa
) SP_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
448 target_cpu
="sparc"; cpu
="sparc" ;;
449 v9
) SP_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m64"
450 target_cpu
="sparc64"; cpu
="sparc64" ;;
451 *) echo "undefined SPARC architecture. Exiting";exit 1;;
454 --enable-werror) werror
="yes"
456 --disable-werror) werror
="no"
458 --disable-curses) curses
="no"
460 --disable-nptl) nptl
="no"
462 --enable-mixemu) mixemu
="yes"
464 --disable-aio) aio
="no"
466 --disable-blobs) blobs
="no"
468 --kerneldir=*) kerneldir
="$optarg"
470 *) echo "ERROR: unknown option $opt"; show_help
="yes"
475 # default flags for all hosts
476 CFLAGS
="$CFLAGS -O2 -g -fno-strict-aliasing"
477 CFLAGS
="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
478 LDFLAGS
="$LDFLAGS -g"
479 if test "$werror" = "yes" ; then
480 CFLAGS
="$CFLAGS -Werror"
483 if test "$solaris" = "no" ; then
484 if ld
--version 2>/dev
/null |
grep "GNU ld" >/dev
/null
2>/dev
/null
; then
485 LDFLAGS
="$LDFLAGS -Wl,--warn-common"
490 # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
491 # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
494 sparc
) if test -z "$sparc_cpu" ; then
495 ARCH_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
498 ARCH_CFLAGS
="${SP_CFLAGS}"
499 ARCH_LDFLAGS
="${SP_LDFLAGS}"
502 sparc64
) if test -z "$sparc_cpu" ; then
503 ARCH_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_v9__"
506 ARCH_CFLAGS
="${SP_CFLAGS}"
507 ARCH_LDFLAGS
="${SP_LDFLAGS}"
511 ARCH_CFLAGS
="-march=z900"
523 if test x
"$show_help" = x
"yes" ; then
526 Usage: configure [options]
527 Options: [defaults in brackets after descriptions]
530 echo "Standard options:"
531 echo " --help print this message"
532 echo " --prefix=PREFIX install in PREFIX [$prefix]"
533 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
534 echo " use %M for cpu name [$interp_prefix]"
535 echo " --target-list=LIST set target list [$target_list]"
537 echo "kqemu kernel acceleration support:"
538 echo " --disable-kqemu disable kqemu support"
540 echo "Advanced options (experts only):"
541 echo " --source-path=PATH path of source code [$source_path]"
542 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
543 echo " --cc=CC use C compiler CC [$cc]"
544 echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
545 echo " --make=MAKE use specified make [$make]"
546 echo " --install=INSTALL use specified install [$install]"
547 echo " --static enable static build [$static]"
548 echo " --enable-sparse enable sparse checker"
549 echo " --disable-sparse disable sparse checker (default)"
550 echo " --disable-werror disable compilation abort on warning"
551 echo " --disable-sdl disable SDL"
552 echo " --enable-cocoa enable COCOA (Mac OS X only)"
553 echo " --audio-drv-list=LIST set audio drivers list:"
554 echo " Available drivers: $audio_possible_drivers"
555 echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
556 echo " Available cards: $audio_possible_cards"
557 echo " --enable-mixemu enable mixer emulation"
558 echo " --disable-brlapi disable BrlAPI"
559 echo " --disable-vnc-tls disable TLS encryption for VNC server"
560 echo " --disable-vnc-sasl disable SASL encryption for VNC server"
561 echo " --disable-curses disable curses output"
562 echo " --disable-bluez disable bluez stack connectivity"
563 echo " --disable-kvm disable KVM acceleration support"
564 echo " --disable-nptl disable usermode NPTL support"
565 echo " --enable-system enable all system emulation targets"
566 echo " --disable-system disable all system emulation targets"
567 echo " --enable-linux-user enable all linux usermode emulation targets"
568 echo " --disable-linux-user disable all linux usermode emulation targets"
569 echo " --enable-darwin-user enable all darwin usermode emulation targets"
570 echo " --disable-darwin-user disable all darwin usermode emulation targets"
571 echo " --enable-bsd-user enable all BSD usermode emulation targets"
572 echo " --disable-bsd-user disable all BSD usermode emulation targets"
573 echo " --fmod-lib path to FMOD library"
574 echo " --fmod-inc path to FMOD includes"
575 echo " --oss-lib path to OSS library"
576 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
577 echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
578 echo " --disable-vde disable support for vde network"
579 echo " --disable-aio disable AIO support"
580 echo " --disable-blobs disable installing provided firmware blobs"
581 echo " --kerneldir=PATH look for kernel includes in PATH"
583 echo "NOTE: The object files are built at the place where configure is launched"
587 if test "$mingw32" = "yes" ; then
593 OS_CFLAGS
="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501"
596 if test ! -x "$(which cgcc 2>/dev/null)"; then
601 # Solaris specific configure tool chain decisions
603 if test "$solaris" = "yes" ; then
604 solinst
=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
605 if test -z "$solinst" ; then
606 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
607 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
608 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
611 if test "$solinst" = "/usr/sbin/install" ; then
612 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
613 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
614 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
617 sol_ar
=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
618 if test -z "$sol_ar" ; then
619 echo "Error: No path includes ar"
620 if test -f /usr
/ccs
/bin
/ar ; then
621 echo "Add /usr/ccs/bin to your path and rerun configure"
628 if test -z "$target_list" ; then
629 # these targets are portable
630 if [ "$softmmu" = "yes" ] ; then
649 # the following are Linux specific
650 if [ "$linux_user" = "yes" ] ; then
651 target_list
="${target_list}\
663 ppc64abi32-linux-user \
668 sparc32plus-linux-user \
671 # the following are Darwin specific
672 if [ "$darwin_user" = "yes" ] ; then
673 target_list
="$target_list i386-darwin-user ppc-darwin-user "
675 # the following are BSD specific
676 if [ "$bsd_user" = "yes" ] ; then
677 target_list
="${target_list}\
682 target_list
=`echo "$target_list" | sed -e 's/,/ /g'`
684 if test -z "$target_list" ; then
685 echo "No targets enabled"
689 if test -z "$cross_prefix" ; then
692 # big/little endian test
694 #include <inttypes.h>
695 int main(int argc, char ** argv){
696 volatile uint32_t i=0x01234567;
697 return (*((uint8_t*)(&i))) == 0x67;
701 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
702 $TMPE && bigendian
="yes"
704 echo big
/little
test failed
709 # if cross compiling, cannot launch a program, so make a static guess
710 if test "$cpu" = "armv4b" \
714 -o "$cpu" = "mips64" \
716 -o "$cpu" = "ppc64" \
718 -o "$cpu" = "sparc" \
719 -o "$cpu" = "sparc64"; then
725 # host long bits test
727 if test "$cpu" = "x86_64" \
728 -o "$cpu" = "alpha" \
730 -o "$cpu" = "sparc64" \
731 -o "$cpu" = "ppc64"; then
735 # check gcc options support
741 # Check host NPTL support
744 #include <linux/futex.h>
747 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
753 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev
/null
2> /dev
/null
; then
759 ##########################################
764 int main(void) { zlibVersion(); return 0; }
766 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev
/null
2> /dev
/null
; then
770 echo "Error: zlib check failed"
771 echo "Make sure to have the zlib libs and headers installed."
776 ##########################################
781 if test -z "$sdl" ; then
782 sdl_config
="sdl-config"
788 #undef main /* We don't want SDL to override our main() */
789 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
791 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
792 _sdlversion
=`$sdl_config --version | sed 's/[^0-9]//g'`
793 if test "$_sdlversion" -lt 121 ; then
796 if test "$cocoa" = "no" ; then
801 # static link with sdl ?
802 if test "$sdl" = "yes" ; then
804 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa
="yes"
805 sdl_static_libs
=`$sdl_config --static-libs 2>/dev/null`
806 if [ "$aa" = "yes" ] ; then
807 sdl_static_libs
="$sdl_static_libs `aalib-config --static-libs`"
810 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev
/null
2> /dev
/null
; then
814 fi # sdl compile test
816 # Make sure to disable cocoa if sdl was set
817 if test "$sdl" = "yes" ; then
819 audio_drv_list
="`echo $audio_drv_list | sed s,coreaudio,,g`"
823 if test "$sdl" = "yes" ; then
826 #if defined(SDL_VIDEO_DRIVER_X11)
827 #include <X11/XKBlib.h>
829 #error No x11 support
831 int main(void) { return 0; }
833 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
838 ##########################################
840 if test "$vnc_tls" = "yes" ; then
842 #include <gnutls/gnutls.h>
843 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
845 vnc_tls_cflags
=`pkg-config --cflags gnutls 2> /dev/null`
846 vnc_tls_libs
=`pkg-config --libs gnutls 2> /dev/null`
847 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
848 $vnc_tls_libs > /dev
/null
2> /dev
/null
; then
855 ##########################################
857 if test "$vnc_sasl" = "yes" ; then
859 #include <sasl/sasl.h>
861 int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
863 # Assuming Cyrus-SASL installed in /usr prefix
865 vnc_sasl_libs
="-lsasl2"
866 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \
867 $vnc_sasl_libs 2> /dev
/null
; then
874 ##########################################
875 # fnmatch() probe, used for ACL routines
881 fnmatch("foo", "foo", 0);
885 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
889 ##########################################
890 # vde libraries probe
891 if test "$vde" = "yes" ; then
893 #include <libvdeplug.h>
896 struct vde_open_args a = {0, 0, 0};
897 vde_open("", "", &a);
901 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev
/null
2> /dev
/null
; then
908 ##########################################
909 # Sound support libraries probe
920 int main(void) { $exp }
922 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev
/null
2> /dev
/null
; then
926 echo "Error: $drv check failed"
927 echo "Make sure to have the $drv libs and headers installed."
933 audio_drv_list
=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
934 for drv
in $audio_drv_list; do
937 audio_drv_probe
$drv alsa
/asoundlib.h
-lasound \
938 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
942 if test -z $fmod_lib ||
test -z $fmod_inc; then
944 echo "Error: You must specify path to FMOD library and headers"
945 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
949 audio_drv_probe
$drv fmod.h
$fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
953 audio_drv_probe
$drv esd.h
-lesd 'return esd_play_stream(0, 0, "", 0);'
957 audio_drv_probe
$drv pulse
/simple.h
-lpulse-simple \
958 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
961 oss|sdl|core|wav|dsound
)
962 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
966 echo "$audio_possible_drivers" |
grep -q "\<$drv\>" ||
{
968 echo "Error: Unknown driver '$drv' selected"
969 echo "Possible drivers are: $audio_possible_drivers"
977 ##########################################
980 if test -z "$brlapi" ; then
984 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
986 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev
/null
2> /dev
/null
; then
988 fi # brlapi compile test
991 ##########################################
994 if test "$curses" = "yes" ; then
998 int main(void) { return curses_version(); }
1000 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev
/null
2> /dev
/null
; then
1005 ##########################################
1006 # bluez support probe
1007 if test "$bluez" = "yes" ; then
1008 `pkg-config bluez` || bluez
="no"
1010 if test "$bluez" = "yes" ; then
1012 #include <bluetooth/bluetooth.h>
1013 int main(void) { return bt_error(0); }
1015 bluez_cflags
=`pkg-config --cflags bluez`
1016 bluez_libs
=`pkg-config --libs bluez`
1017 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
1018 $bluez_libs > /dev
/null
2> /dev
/null
; then
1025 ##########################################
1027 if test "$kvm" = "yes" ; then
1029 #include <linux/kvm.h>
1030 #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
1031 #error Invalid KVM version
1033 #if !defined(KVM_CAP_USER_MEMORY)
1034 #error Missing KVM capability KVM_CAP_USER_MEMORY
1036 #if !defined(KVM_CAP_SET_TSS_ADDR)
1037 #error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1039 #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1040 #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1042 int main(void) { return 0; }
1044 if test "$kerneldir" != "" ; then
1045 kvm_cflags
=-I"$kerneldir"/include
1046 if test \
( "$cpu" = "i386" -o "$cpu" = "x86_64" \
) \
1047 -a -d "$kerneldir/arch/x86/include" ; then
1048 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/x86/include"
1049 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1050 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/powerpc/include"
1051 elif test -d "$kerneldir/arch/$cpu/include" ; then
1052 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1057 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
1058 > /dev
/null
2>/dev
/null
; then
1062 if [ -x "`which awk 2>/dev/null`" ] && \
1063 [ -x "`which grep 2>/dev/null`" ]; then
1064 kvmerr
=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1066 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1067 if test "$kvmerr" != "" ; then
1068 kvm
="no - (${kvmerr})"
1074 ##########################################
1078 if test "$aio" = "yes" ; then
1081 #include <pthread.h>
1082 int main(void) { pthread_mutex_t lock; return 0; }
1084 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev
/null
; then
1090 ##########################################
1093 #include <sys/types.h>
1094 #include <sys/uio.h>
1096 int main(void) { struct iovec iov; return 0; }
1099 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1103 ##########################################
1105 if test "$fdt" = "yes" ; then
1108 int main(void) { return 0; }
1110 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev
/null
; then
1115 # Check if tools are available to build documentation.
1116 if [ -x "`which texi2html 2>/dev/null`" ] && \
1117 [ -x "`which pod2man 2>/dev/null`" ]; then
1121 ##########################################
1126 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1130 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1132 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev
/null
2> /dev
/null
; then
1136 if test "$rt" = "yes" ; then
1137 # Hack, we should have a general purpose LIBS for this sort of thing
1138 AIOLIBS
="$AIOLIBS -lrt"
1141 if test "$mingw32" = "yes" ; then
1142 if test -z "$prefix" ; then
1143 prefix
="c:\\\\Program Files\\\\Qemu"
1150 if test -z "$prefix" ; then
1153 mansuffix
="/share/man"
1154 datasuffix
="/share/qemu"
1155 docsuffix
="/share/doc/qemu"
1159 echo "Install prefix $prefix"
1160 echo "BIOS directory $prefix$datasuffix"
1161 echo "binary directory $prefix$binsuffix"
1162 if test "$mingw32" = "no" ; then
1163 echo "Manual directory $prefix$mansuffix"
1164 echo "ELF interp prefix $interp_prefix"
1166 echo "Source path $source_path"
1167 echo "C compiler $cc"
1168 echo "Host C compiler $host_cc"
1169 echo "ARCH_CFLAGS $ARCH_CFLAGS"
1171 echo "install $install"
1172 echo "host CPU $cpu"
1173 echo "host big endian $bigendian"
1174 echo "target list $target_list"
1175 echo "gprof enabled $gprof"
1176 echo "sparse enabled $sparse"
1177 echo "profiler $profiler"
1178 echo "static build $static"
1179 echo "-Werror enabled $werror"
1180 if test "$darwin" = "yes" ; then
1181 echo "Cocoa support $cocoa"
1183 echo "SDL support $sdl"
1184 if test "$sdl" != "no" ; then
1185 echo "SDL static link $sdl_static"
1187 echo "curses support $curses"
1188 echo "mingw32 support $mingw32"
1189 echo "Audio drivers $audio_drv_list"
1190 echo "Extra audio cards $audio_card_list"
1191 echo "Mixer emulation $mixemu"
1192 echo "VNC TLS support $vnc_tls"
1193 if test "$vnc_tls" = "yes" ; then
1194 echo " TLS CFLAGS $vnc_tls_cflags"
1195 echo " TLS LIBS $vnc_tls_libs"
1197 echo "VNC SASL support $vnc_sasl"
1198 if test "$vnc_sasl" = "yes" ; then
1199 echo " SASL CFLAGS $vnc_sasl_cflags"
1200 echo " SASL LIBS $vnc_sasl_libs"
1202 if test -n "$sparc_cpu"; then
1203 echo "Target Sparc Arch $sparc_cpu"
1205 echo "kqemu support $kqemu"
1206 echo "brlapi support $brlapi"
1207 echo "Documentation $build_docs"
1208 [ ! -z "$uname_release" ] && \
1209 echo "uname -r $uname_release"
1210 echo "NPTL support $nptl"
1211 echo "vde support $vde"
1212 echo "AIO support $aio"
1213 echo "Install blobs $blobs"
1214 echo "KVM support $kvm"
1215 echo "fdt support $fdt"
1217 if test $sdl_too_old = "yes"; then
1218 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1220 if [ -s $TMPSDLLOG ]; then
1221 echo "The error log from compiling the libSDL test is: "
1224 #if test "$sdl_static" = "no"; then
1225 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1227 config_mak
="config-host.mak"
1228 config_h
="config-host.h"
1230 #echo "Creating $config_mak and $config_h"
1232 test -f $config_h && mv $config_h ${config_h}~
1234 echo "# Automatically generated by configure - do not modify" > $config_mak
1235 printf "# Configured with:" >> $config_mak
1236 printf " '%s'" "$0" "$@" >> $config_mak
1238 echo "/* Automatically generated by configure - do not modify */" > $config_h
1240 echo "prefix=$prefix" >> $config_mak
1241 echo "bindir=\${prefix}$binsuffix" >> $config_mak
1242 echo "mandir=\${prefix}$mansuffix" >> $config_mak
1243 echo "datadir=\${prefix}$datasuffix" >> $config_mak
1244 echo "docdir=\${prefix}$docsuffix" >> $config_mak
1245 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1246 echo "MAKE=$make" >> $config_mak
1247 echo "INSTALL=$install" >> $config_mak
1248 echo "CC=$cc" >> $config_mak
1249 echo "HOST_CC=$host_cc" >> $config_mak
1250 echo "AR=$ar" >> $config_mak
1251 echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
1252 # XXX: only use CFLAGS and LDFLAGS ?
1253 # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1254 # compilation of dyngen tool (useful for win32 build on Linux host)
1255 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1256 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1257 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1258 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1259 echo "CFLAGS=$CFLAGS" >> $config_mak
1260 echo "LDFLAGS=$LDFLAGS" >> $config_mak
1261 echo "EXESUF=$EXESUF" >> $config_mak
1262 echo "AIOLIBS=$AIOLIBS" >> $config_mak
1265 echo "ARCH=i386" >> $config_mak
1266 echo "#define HOST_I386 1" >> $config_h
1269 echo "ARCH=x86_64" >> $config_mak
1270 echo "#define HOST_X86_64 1" >> $config_h
1273 echo "ARCH=alpha" >> $config_mak
1274 echo "#define HOST_ALPHA 1" >> $config_h
1277 echo "ARCH=arm" >> $config_mak
1278 echo "#define HOST_ARM 1" >> $config_h
1281 echo "ARCH=arm" >> $config_mak
1282 echo "#define HOST_ARM 1" >> $config_h
1285 echo "ARCH=cris" >> $config_mak
1286 echo "#define HOST_CRIS 1" >> $config_h
1289 echo "ARCH=hppa" >> $config_mak
1290 echo "#define HOST_HPPA 1" >> $config_h
1293 echo "ARCH=ia64" >> $config_mak
1294 echo "#define HOST_IA64 1" >> $config_h
1297 echo "ARCH=m68k" >> $config_mak
1298 echo "#define HOST_M68K 1" >> $config_h
1301 echo "ARCH=mips" >> $config_mak
1302 echo "#define HOST_MIPS 1" >> $config_h
1305 echo "ARCH=mips64" >> $config_mak
1306 echo "#define HOST_MIPS64 1" >> $config_h
1309 echo "ARCH=ppc" >> $config_mak
1310 echo "#define HOST_PPC 1" >> $config_h
1313 echo "ARCH=ppc64" >> $config_mak
1314 echo "#define HOST_PPC64 1" >> $config_h
1317 echo "ARCH=s390" >> $config_mak
1318 echo "#define HOST_S390 1" >> $config_h
1321 echo "ARCH=sparc" >> $config_mak
1322 echo "#define HOST_SPARC 1" >> $config_h
1325 echo "ARCH=sparc64" >> $config_mak
1326 echo "#define HOST_SPARC64 1" >> $config_h
1329 echo "Unsupported CPU = $cpu"
1333 if test "$sparse" = "yes" ; then
1334 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1335 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1336 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1338 if test "$bigendian" = "yes" ; then
1339 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1340 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1342 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1343 if test "$mingw32" = "yes" ; then
1344 echo "CONFIG_WIN32=yes" >> $config_mak
1345 echo "#define CONFIG_WIN32 1" >> $config_h
1348 #include <byteswap.h>
1349 int main(void) { return bswap_32(0); }
1351 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1352 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1355 #include <sys/endian.h>
1356 #include <sys/types.h>
1357 #include <machine/bswap.h>
1358 int main(void) { return bswap32(0); }
1360 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1361 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1365 if [ "$openbsd" = "yes" ] ; then
1366 echo "#define ENOTSUP 4096" >> $config_h
1369 if test "$darwin" = "yes" ; then
1370 echo "CONFIG_DARWIN=yes" >> $config_mak
1371 echo "#define CONFIG_DARWIN 1" >> $config_h
1374 if test "$aix" = "yes" ; then
1375 echo "CONFIG_AIX=yes" >> $config_mak
1376 echo "#define CONFIG_AIX 1" >> $config_h
1379 if test "$solaris" = "yes" ; then
1380 echo "CONFIG_SOLARIS=yes" >> $config_mak
1381 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1382 if test "$needs_libsunmath" = "yes" ; then
1383 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1384 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1387 if test -n "$sparc_cpu"; then
1388 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1389 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1391 if test "$gdbstub" = "yes" ; then
1392 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1393 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1395 if test "$gprof" = "yes" ; then
1396 echo "TARGET_GPROF=yes" >> $config_mak
1397 echo "#define HAVE_GPROF 1" >> $config_h
1399 if test "$static" = "yes" ; then
1400 echo "CONFIG_STATIC=yes" >> $config_mak
1401 echo "#define CONFIG_STATIC 1" >> $config_h
1403 if test $profiler = "yes" ; then
1404 echo "#define CONFIG_PROFILER 1" >> $config_h
1406 if test "$slirp" = "yes" ; then
1407 echo "CONFIG_SLIRP=yes" >> $config_mak
1408 echo "#define CONFIG_SLIRP 1" >> $config_h
1410 if test "$vde" = "yes" ; then
1411 echo "CONFIG_VDE=yes" >> $config_mak
1412 echo "#define CONFIG_VDE 1" >> $config_h
1413 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1415 for card
in $audio_card_list; do
1416 def
=CONFIG_
`echo $card | tr '[:lower:]' '[:upper:]'`
1417 echo "$def=yes" >> $config_mak
1418 echo "#define $def 1" >> $config_h
1420 echo "#define AUDIO_DRIVERS \\" >> $config_h
1421 for drv
in $audio_drv_list; do
1422 echo " &${drv}_audio_driver, \\" >>$config_h
1423 def
=CONFIG_
`echo $drv | tr '[:lower:]' '[:upper:]'`
1424 echo "$def=yes" >> $config_mak
1425 if test "$drv" = "fmod"; then
1426 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1427 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1428 elif test "$drv" = "oss"; then
1429 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1433 if test "$mixemu" = "yes" ; then
1434 echo "CONFIG_MIXEMU=yes" >> $config_mak
1435 echo "#define CONFIG_MIXEMU 1" >> $config_h
1437 if test "$vnc_tls" = "yes" ; then
1438 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1439 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1440 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1441 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1443 if test "$vnc_sasl" = "yes" ; then
1444 echo "CONFIG_VNC_SASL=yes" >> $config_mak
1445 echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak
1446 echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak
1447 echo "#define CONFIG_VNC_SASL 1" >> $config_h
1449 if test "$fnmatch" = "yes" ; then
1450 echo "#define HAVE_FNMATCH_H 1" >> $config_h
1452 qemu_version
=`head $source_path/VERSION`
1453 echo "VERSION=$qemu_version" >>$config_mak
1454 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1456 echo "SRC_PATH=$source_path" >> $config_mak
1457 if [ "$source_path_used" = "yes" ]; then
1458 echo "VPATH=$source_path" >> $config_mak
1460 echo "TARGET_DIRS=$target_list" >> $config_mak
1461 if [ "$build_docs" = "yes" ] ; then
1462 echo "BUILD_DOCS=yes" >> $config_mak
1464 if test "$static" = "yes"; then
1469 if test "$sdl1" = "yes" ; then
1470 echo "#define CONFIG_SDL 1" >> $config_h
1471 echo "CONFIG_SDL=yes" >> $config_mak
1472 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1473 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1474 elif test "$sdl_x11" = "yes" ; then
1475 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
1477 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1479 if [ "${aa}" = "yes" ] ; then
1480 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1482 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1485 if test "$cocoa" = "yes" ; then
1486 echo "#define CONFIG_COCOA 1" >> $config_h
1487 echo "CONFIG_COCOA=yes" >> $config_mak
1489 if test "$curses" = "yes" ; then
1490 echo "#define CONFIG_CURSES 1" >> $config_h
1491 echo "CONFIG_CURSES=yes" >> $config_mak
1492 echo "CURSES_LIBS=-lcurses" >> $config_mak
1494 if test "$brlapi" = "yes" ; then
1495 echo "CONFIG_BRLAPI=yes" >> $config_mak
1496 echo "#define CONFIG_BRLAPI 1" >> $config_h
1497 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1499 if test "$bluez" = "yes" ; then
1500 echo "CONFIG_BLUEZ=yes" >> $config_mak
1501 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1502 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1503 echo "#define CONFIG_BLUEZ 1" >> $config_h
1505 if test "$aio" = "yes" ; then
1506 echo "#define CONFIG_AIO 1" >> $config_h
1507 echo "CONFIG_AIO=yes" >> $config_mak
1509 if test "$blobs" = "yes" ; then
1510 echo "INSTALL_BLOBS=yes" >> $config_mak
1512 if test "$iovec" = "yes" ; then
1513 echo "#define HAVE_IOVEC 1" >> $config_h
1515 if test "$fdt" = "yes" ; then
1516 echo "#define HAVE_FDT 1" >> $config_h
1517 echo "FDT_LIBS=-lfdt" >> $config_mak
1520 # XXX: suppress that
1521 if [ "$bsd" = "yes" ] ; then
1522 echo "#define O_LARGEFILE 0" >> $config_h
1523 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1524 echo "#define HOST_BSD 1" >> $config_h
1527 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1532 echo "HOST_USB=linux" >> $config_mak
1535 echo "HOST_USB=bsd" >> $config_mak
1538 echo "HOST_USB=stub" >> $config_mak
1543 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1544 tools
="qemu-img\$(EXESUF) $tools"
1545 if [ "$linux" = "yes" ] ; then
1546 tools
="qemu-nbd\$(EXESUF) $tools"
1549 echo "TOOLS=$tools" >> $config_mak
1551 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~
$config_h
1553 for target
in $target_list; do
1554 target_dir
="$target"
1555 config_mak
=$target_dir/config.mak
1556 config_h
=$target_dir/config.h
1557 target_cpu
=`echo $target | cut -d '-' -f 1`
1558 target_bigendian
="no"
1559 [ "$target_cpu" = "armeb" ] && target_bigendian
=yes
1560 [ "$target_cpu" = "m68k" ] && target_bigendian
=yes
1561 [ "$target_cpu" = "mips" ] && target_bigendian
=yes
1562 [ "$target_cpu" = "mipsn32" ] && target_bigendian
=yes
1563 [ "$target_cpu" = "mips64" ] && target_bigendian
=yes
1564 [ "$target_cpu" = "ppc" ] && target_bigendian
=yes
1565 [ "$target_cpu" = "ppcemb" ] && target_bigendian
=yes
1566 [ "$target_cpu" = "ppc64" ] && target_bigendian
=yes
1567 [ "$target_cpu" = "ppc64abi32" ] && target_bigendian
=yes
1568 [ "$target_cpu" = "sh4eb" ] && target_bigendian
=yes
1569 [ "$target_cpu" = "sparc" ] && target_bigendian
=yes
1570 [ "$target_cpu" = "sparc64" ] && target_bigendian
=yes
1571 [ "$target_cpu" = "sparc32plus" ] && target_bigendian
=yes
1573 target_user_only
="no"
1574 target_linux_user
="no"
1575 target_darwin_user
="no"
1576 target_bsd_user
="no"
1578 ${target_cpu}-softmmu)
1579 target_softmmu
="yes"
1581 ${target_cpu}-linux-user)
1582 target_user_only
="yes"
1583 target_linux_user
="yes"
1585 ${target_cpu}-darwin-user)
1586 target_user_only
="yes"
1587 target_darwin_user
="yes"
1589 ${target_cpu}-bsd-user)
1590 target_user_only
="yes"
1591 target_bsd_user
="yes"
1594 echo "ERROR: Target '$target' not recognised"
1599 if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1600 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
1601 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
1602 echo "To build QEMU without graphical output configure with --disable-gfx-check"
1603 echo "Note that this will disable all output from the virtual graphics card"
1604 echo "except through VNC or curses."
1608 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1610 test -f $config_h && mv $config_h ${config_h}~
1612 mkdir
-p $target_dir
1613 mkdir
-p $target_dir/fpu
1614 mkdir
-p $target_dir/tcg
1615 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1616 mkdir
-p $target_dir/nwfpe
1620 # don't use ln -sf as not all "ln -sf" over write the file/link
1622 rm -f $target_dir/Makefile
1623 ln -s $source_path/Makefile.target
$target_dir/Makefile
1626 echo "# Automatically generated by configure - do not modify" > $config_mak
1627 echo "/* Automatically generated by configure - do not modify */" > $config_h
1630 echo "include ../config-host.mak" >> $config_mak
1631 echo "#include \"../config-host.h\"" >> $config_h
1636 interp_prefix1
=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1637 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1640 # Make sure the target and host cpus are compatible
1641 if test "$kvm" = "yes" -a ! \
( "$target_cpu" = "$cpu" -o \
1642 \
( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \
) -o \
1643 \
( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \
) -o \
1644 \
( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \
) \
) ; then
1647 # Disable KVM for linux-user
1648 if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1652 case "$target_cpu" in
1654 echo "TARGET_ARCH=i386" >> $config_mak
1655 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1656 echo "#define TARGET_I386 1" >> $config_h
1657 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1659 echo "#define USE_KQEMU 1" >> $config_h
1661 if test "$kvm" = "yes" ; then
1662 echo "CONFIG_KVM=yes" >> $config_mak
1663 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1664 echo "#define CONFIG_KVM 1" >> $config_h
1668 echo "TARGET_ARCH=x86_64" >> $config_mak
1669 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1670 echo "#define TARGET_I386 1" >> $config_h
1671 echo "#define TARGET_X86_64 1" >> $config_h
1672 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1674 echo "#define USE_KQEMU 1" >> $config_h
1676 if test "$kvm" = "yes" ; then
1677 echo "CONFIG_KVM=yes" >> $config_mak
1678 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1679 echo "#define CONFIG_KVM 1" >> $config_h
1683 echo "TARGET_ARCH=alpha" >> $config_mak
1684 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1685 echo "#define TARGET_ALPHA 1" >> $config_h
1688 echo "TARGET_ARCH=arm" >> $config_mak
1689 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1690 echo "#define TARGET_ARM 1" >> $config_h
1693 gdb_xml_files
="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1696 echo "TARGET_ARCH=cris" >> $config_mak
1697 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1698 echo "#define TARGET_CRIS 1" >> $config_h
1702 echo "TARGET_ARCH=m68k" >> $config_mak
1703 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1704 echo "#define TARGET_M68K 1" >> $config_h
1706 gdb_xml_files
="cf-core.xml cf-fp.xml"
1709 echo "TARGET_ARCH=mips" >> $config_mak
1710 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1711 echo "#define TARGET_MIPS 1" >> $config_h
1712 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1715 echo "TARGET_ARCH=mipsn32" >> $config_mak
1716 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1717 echo "#define TARGET_MIPS 1" >> $config_h
1718 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1721 echo "TARGET_ARCH=mips64" >> $config_mak
1722 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1723 echo "#define TARGET_MIPS 1" >> $config_h
1724 echo "#define TARGET_MIPS64 1" >> $config_h
1725 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1728 echo "TARGET_ARCH=ppc" >> $config_mak
1729 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1730 echo "#define TARGET_PPC 1" >> $config_h
1731 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1734 echo "TARGET_ARCH=ppcemb" >> $config_mak
1735 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1736 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1737 echo "#define TARGET_PPC 1" >> $config_h
1738 echo "#define TARGET_PPCEMB 1" >> $config_h
1739 if test "$kvm" = "yes" ; then
1740 echo "CONFIG_KVM=yes" >> $config_mak
1741 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1742 echo "#define CONFIG_KVM 1" >> $config_h
1744 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1747 echo "TARGET_ARCH=ppc64" >> $config_mak
1748 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1749 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1750 echo "#define TARGET_PPC 1" >> $config_h
1751 echo "#define TARGET_PPC64 1" >> $config_h
1752 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1755 echo "TARGET_ARCH=ppc64" >> $config_mak
1756 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1757 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1758 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1759 echo "#define TARGET_PPC 1" >> $config_h
1760 echo "#define TARGET_PPC64 1" >> $config_h
1761 echo "#define TARGET_ABI32 1" >> $config_h
1762 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1765 echo "TARGET_ARCH=sh4" >> $config_mak
1766 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1767 echo "#define TARGET_SH4 1" >> $config_h
1772 echo "TARGET_ARCH=sparc" >> $config_mak
1773 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1774 echo "#define TARGET_SPARC 1" >> $config_h
1777 echo "TARGET_ARCH=sparc64" >> $config_mak
1778 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1779 echo "#define TARGET_SPARC 1" >> $config_h
1780 echo "#define TARGET_SPARC64 1" >> $config_h
1784 echo "TARGET_ARCH=sparc64" >> $config_mak
1785 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1786 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1787 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1788 echo "#define TARGET_SPARC 1" >> $config_h
1789 echo "#define TARGET_SPARC64 1" >> $config_h
1790 echo "#define TARGET_ABI32 1" >> $config_h
1793 echo "Unsupported target CPU"
1797 if test "$target_bigendian" = "yes" ; then
1798 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1799 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1801 if test "$target_softmmu" = "yes" ; then
1802 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1803 echo "#define CONFIG_SOFTMMU 1" >> $config_h
1805 if test "$target_user_only" = "yes" ; then
1806 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1807 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1809 if test "$target_linux_user" = "yes" ; then
1810 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1811 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1813 if test "$target_darwin_user" = "yes" ; then
1814 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1815 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1818 if test ! -z "$gdb_xml_files" ; then
1819 for x
in $gdb_xml_files; do
1820 list
="$list $source_path/gdb-xml/$x"
1823 echo "TARGET_XML_FILES=$list" >> $config_mak
1825 if test "$target_cpu" = "arm" \
1826 -o "$target_cpu" = "armeb" \
1827 -o "$target_cpu" = "m68k" \
1828 -o "$target_cpu" = "mips" \
1829 -o "$target_cpu" = "mipsel" \
1830 -o "$target_cpu" = "mipsn32" \
1831 -o "$target_cpu" = "mipsn32el" \
1832 -o "$target_cpu" = "mips64" \
1833 -o "$target_cpu" = "mips64el" \
1834 -o "$target_cpu" = "ppc" \
1835 -o "$target_cpu" = "ppc64" \
1836 -o "$target_cpu" = "ppc64abi32" \
1837 -o "$target_cpu" = "ppcemb" \
1838 -o "$target_cpu" = "sparc" \
1839 -o "$target_cpu" = "sparc64" \
1840 -o "$target_cpu" = "sparc32plus"; then
1841 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1842 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1844 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1845 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1846 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1848 if test "$target_user_only" = "yes" \
1849 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1850 echo "#define USE_NPTL 1" >> $config_h
1852 # 32 bit ELF loader in addition to native 64 bit loader?
1853 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1854 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1855 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1857 if test "$target_bsd_user" = "yes" ; then
1858 echo "CONFIG_BSD_USER=yes" >> $config_mak
1859 echo "#define CONFIG_BSD_USER 1" >> $config_h
1862 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~
$config_h
1864 done # for target in $targets
1866 # build tree in object directory if source path is different from current one
1867 if test "$source_path_used" = "yes" ; then
1868 DIRS
="tests tests/cris slirp audio"
1869 FILES
="Makefile tests/Makefile"
1870 FILES
="$FILES tests/cris/Makefile tests/cris/.gdbinit"
1871 FILES
="$FILES tests/test-mmap.c"
1872 for dir
in $DIRS ; do
1875 # remove the link and recreate it, as not all "ln -sf" overwrite the link
1876 for f
in $FILES ; do
1878 ln -s $source_path/$f $f