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
)
187 kvm_cap_device_assignment
="no"
197 if check_define __linux__
; then
199 elif check_define _WIN32
; then
207 OS_CFLAGS
="-mno-cygwin"
208 if [ "$cpu" = "i386" ] ; then
211 audio_possible_drivers
="sdl"
215 if [ "$cpu" = "i386" ] ; then
218 audio_possible_drivers
="dsound sdl fmod"
222 audio_possible_drivers
="oss sdl esd pa"
223 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
230 audio_possible_drivers
="oss sdl esd pa"
231 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
239 audio_possible_drivers
="oss sdl esd"
246 audio_possible_drivers
="oss sdl esd"
252 # 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
253 is_x86_64
=`sysctl -n hw.optional.x86_64`
254 if [ "$is_x86_64" = "1" ]; then
257 if [ "$cpu" = "x86_64" ] ; then
258 OS_CFLAGS
="-arch x86_64"
259 LDFLAGS
="-arch x86_64"
261 OS_CFLAGS
="-mdynamic-no-pic"
265 audio_drv_list
="coreaudio"
266 audio_possible_drivers
="coreaudio sdl fmod"
267 OS_LDFLAGS
="-framework CoreFoundation -framework IOKit"
273 needs_libsunmath
="no"
274 solarisrev
=`uname -r | cut -f2 -d.`
275 # have to select again, because `uname -m` returns i86pc
276 # even on an x86_64 box.
277 solariscpu
=`isainfo -k`
278 if test "${solariscpu}" = "amd64" ; then
281 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
282 if test "$solarisrev" -le 9 ; then
283 if test -f /opt
/SUNWspro
/prod
/lib
/libsunmath.so
.1; then
284 needs_libsunmath
="yes"
286 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
287 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
288 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
289 echo "Studio 11 can be downloaded from www.sun.com."
293 if test "$solarisrev" -ge 9 ; then
297 if test -f /usr
/include
/sys
/soundcard.h
; then
300 audio_possible_drivers
="oss sdl"
308 audio_possible_drivers
="oss alsa sdl esd pa"
312 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
314 audio_possible_drivers
="$audio_possible_drivers fmod"
317 if [ "$cpu" = "ia64" ] ; then
323 if [ "$cpu" = "powerpc" ]; then
329 if [ "$bsd" = "yes" ] ; then
330 if [ "$darwin" != "yes" ] ; then
338 source_path
=`dirname "$0"`
339 source_path_used
="no"
341 if [ -z "$source_path" ]; then
344 source_path
=`cd "$source_path"; pwd`
346 [ -f "$workdir/vl.c" ] || source_path_used
="yes"
349 # generate compile errors on warnings for development builds
350 #if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
355 optarg
=`expr "x$opt" : 'x[^=]*=\(.*\)'`
357 --help|
-h) show_help
=yes
359 --prefix=*) prefix
="$optarg"
361 --interp-prefix=*) interp_prefix
="$optarg"
363 --source-path=*) source_path
="$optarg"
364 source_path_used
="yes"
370 --host-cc=*) host_cc
="$optarg"
372 --make=*) make="$optarg"
374 --install=*) install="$optarg"
376 --extra-cflags=*) CFLAGS
="$optarg"
378 --extra-ldflags=*) LDFLAGS
="$optarg"
380 --cpu=*) cpu
="$optarg"
382 --target-list=*) target_list
="$optarg"
384 --enable-gprof) gprof
="yes"
386 --static) static
="yes"
388 --disable-sdl) sdl
="no"
390 --fmod-lib=*) fmod_lib
="$optarg"
392 --fmod-inc=*) fmod_inc
="$optarg"
394 --oss-lib=*) oss_lib
="$optarg"
396 --audio-card-list=*) audio_card_list
=`echo "$optarg" | sed -e 's/,/ /g'`
398 --audio-drv-list=*) audio_drv_list
="$optarg"
400 --enable-sparse) sparse
="yes"
402 --disable-sparse) sparse
="no"
404 --disable-vnc-tls) vnc_tls
="no"
406 --disable-slirp) slirp
="no"
408 --disable-vde) vde
="no"
410 --disable-kqemu) kqemu
="no"
412 --disable-brlapi) brlapi
="no"
414 --disable-bluez) bluez
="no"
416 --disable-kvm) kvm
="no"
418 --enable-profiler) profiler
="yes"
423 audio_drv_list
="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
425 --disable-gfx-check) check_gfx
="no"
427 --disable-system) softmmu
="no"
429 --enable-system) softmmu
="yes"
431 --disable-linux-user) linux_user
="no"
433 --enable-linux-user) linux_user
="yes"
435 --disable-darwin-user) darwin_user
="no"
437 --enable-darwin-user) darwin_user
="yes"
439 --disable-bsd-user) bsd_user
="no"
441 --enable-bsd-user) bsd_user
="yes"
443 --enable-uname-release=*) uname_release
="$optarg"
448 v7|v8
) SP_CFLAGS
="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
449 target_cpu
="sparc"; cpu
="sparc" ;;
450 v8plus|v8plusa
) SP_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
451 target_cpu
="sparc"; cpu
="sparc" ;;
452 v9
) SP_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m64"
453 target_cpu
="sparc64"; cpu
="sparc64" ;;
454 *) echo "undefined SPARC architecture. Exiting";exit 1;;
457 --enable-werror) werror
="yes"
459 --disable-werror) werror
="no"
461 --disable-curses) curses
="no"
463 --disable-nptl) nptl
="no"
465 --enable-mixemu) mixemu
="yes"
467 --disable-aio) aio
="no"
469 --disable-blobs) blobs
="no"
471 --kerneldir=*) kerneldir
="$optarg"
473 --disable-cpu-emulation) cpu_emulation
="no"
475 *) echo "ERROR: unknown option $opt"; exit 1
480 # default flags for all hosts
481 CFLAGS
="$CFLAGS -O2 -g -fno-strict-aliasing"
482 CFLAGS
="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
483 LDFLAGS
="$LDFLAGS -g"
484 if test "$werror" = "yes" ; then
485 CFLAGS
="$CFLAGS -Werror"
488 if test "$solaris" = "no" ; then
489 if ld
--version 2>/dev
/null |
grep "GNU ld" >/dev
/null
2>/dev
/null
; then
490 LDFLAGS
="$LDFLAGS -Wl,--warn-common"
495 # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
496 # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
499 sparc
) if test -z "$sparc_cpu" ; then
500 ARCH_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
503 ARCH_CFLAGS
="${SP_CFLAGS}"
504 ARCH_LDFLAGS
="${SP_LDFLAGS}"
507 sparc64
) if test -z "$sparc_cpu" ; then
508 ARCH_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_v9__"
511 ARCH_CFLAGS
="${SP_CFLAGS}"
512 ARCH_LDFLAGS
="${SP_LDFLAGS}"
516 ARCH_CFLAGS
="-march=z900"
528 if test x
"$show_help" = x
"yes" ; then
531 Usage: configure [options]
532 Options: [defaults in brackets after descriptions]
535 echo "Standard options:"
536 echo " --help print this message"
537 echo " --prefix=PREFIX install in PREFIX [$prefix]"
538 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
539 echo " use %M for cpu name [$interp_prefix]"
540 echo " --target-list=LIST set target list [$target_list]"
542 echo "kqemu kernel acceleration support:"
543 echo " --disable-kqemu disable kqemu support"
545 echo "Advanced options (experts only):"
546 echo " --source-path=PATH path of source code [$source_path]"
547 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
548 echo " --cc=CC use C compiler CC [$cc]"
549 echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
550 echo " --make=MAKE use specified make [$make]"
551 echo " --install=INSTALL use specified install [$install]"
552 echo " --static enable static build [$static]"
553 echo " --enable-sparse enable sparse checker"
554 echo " --disable-sparse disable sparse checker (default)"
555 echo " --disable-werror disable compilation abort on warning"
556 echo " --disable-sdl disable SDL"
557 echo " --enable-cocoa enable COCOA (Mac OS X only)"
558 echo " --audio-drv-list=LIST set audio drivers list:"
559 echo " Available drivers: $audio_possible_drivers"
560 echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
561 echo " Available cards: $audio_possible_cards"
562 echo " --enable-mixemu enable mixer emulation"
563 echo " --disable-brlapi disable BrlAPI"
564 echo " --disable-vnc-tls disable TLS encryption for VNC server"
565 echo " --disable-curses disable curses output"
566 echo " --disable-bluez disable bluez stack connectivity"
567 echo " --disable-kvm disable KVM acceleration support"
568 echo " --disable-nptl disable usermode NPTL support"
569 echo " --enable-system enable all system emulation targets"
570 echo " --disable-system disable all system emulation targets"
571 echo " --enable-linux-user enable all linux usermode emulation targets"
572 echo " --disable-linux-user disable all linux usermode emulation targets"
573 echo " --enable-darwin-user enable all darwin usermode emulation targets"
574 echo " --disable-darwin-user disable all darwin usermode emulation targets"
575 echo " --enable-bsd-user enable all BSD usermode emulation targets"
576 echo " --disable-bsd-user disable all BSD usermode emulation targets"
577 echo " --fmod-lib path to FMOD library"
578 echo " --fmod-inc path to FMOD includes"
579 echo " --oss-lib path to OSS library"
580 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
581 echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
582 echo " --disable-vde disable support for vde network"
583 echo " --disable-aio disable AIO support"
584 echo " --disable-blobs disable installing provided firmware blobs"
585 echo " --kerneldir=PATH look for kernel includes in PATH"
586 echo " --disable-cpu-emulation disables use of qemu cpu emulation code"
588 echo "NOTE: The object files are built at the place where configure is launched"
592 if test "$mingw32" = "yes" ; then
600 if test ! -x "$(which cgcc 2>/dev/null)"; then
605 # Solaris specific configure tool chain decisions
607 if test "$solaris" = "yes" ; then
608 solinst
=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
609 if test -z "$solinst" ; then
610 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
611 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
612 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
615 if test "$solinst" = "/usr/sbin/install" ; then
616 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
617 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
618 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
621 sol_ar
=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
622 if test -z "$sol_ar" ; then
623 echo "Error: No path includes ar"
624 if test -f /usr
/ccs
/bin
/ar ; then
625 echo "Add /usr/ccs/bin to your path and rerun configure"
632 if test -z "$target_list" ; then
633 # these targets are portable
634 if [ "$softmmu" = "yes" ] ; then
653 # the following are Linux specific
654 if [ "$linux_user" = "yes" ] ; then
655 target_list
="${target_list}\
667 ppc64abi32-linux-user \
672 sparc32plus-linux-user \
675 # the following are Darwin specific
676 if [ "$darwin_user" = "yes" ] ; then
677 target_list
="$target_list i386-darwin-user ppc-darwin-user "
679 # the following are BSD specific
680 if [ "$bsd_user" = "yes" ] ; then
681 target_list
="${target_list}\
686 target_list
=`echo "$target_list" | sed -e 's/,/ /g'`
688 if test -z "$target_list" ; then
689 echo "No targets enabled"
693 if test -z "$cross_prefix" ; then
696 # big/little endian test
698 #include <inttypes.h>
699 int main(int argc, char ** argv){
700 volatile uint32_t i=0x01234567;
701 return (*((uint8_t*)(&i))) == 0x67;
705 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
706 $TMPE && bigendian
="yes"
708 echo big
/little
test failed
713 # if cross compiling, cannot launch a program, so make a static guess
714 if test "$cpu" = "armv4b" \
718 -o "$cpu" = "mips64" \
720 -o "$cpu" = "ppc64" \
722 -o "$cpu" = "sparc" \
723 -o "$cpu" = "sparc64"; then
729 # host long bits test
731 if test "$cpu" = "x86_64" \
732 -o "$cpu" = "alpha" \
734 -o "$cpu" = "sparc64" \
735 -o "$cpu" = "ppc64"; then
739 # check gcc options support
745 # Check host NPTL support
748 #include <linux/futex.h>
751 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
757 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev
/null
2> /dev
/null
; then
763 ##########################################
766 if test "$kvm" = "yes" ; then
768 # test for KVM_CAP_PIT
773 #error "kvm no pit capability"
775 int main(void) { return 0; }
777 if $cc $ARCH_CFLAGS $CFLAGS -I"$kerneldir"/include
-o $TMPE ${OS_CFLAGS} $TMPC 2> /dev
/null
; then
781 # test for KVM_CAP_DEVICE_ASSIGNMENT
785 #ifndef KVM_CAP_DEVICE_ASSIGNMENT
786 #error "kvm no device assignment capability"
788 int main(void) { return 0; }
790 if $cc $ARCH_CFLAGS $CFLAGS -I"$kerneldir"/include
-o $TMPE ${OS_CFLAGS} $TMPC 2> /dev
/null
; then
791 kvm_cap_device_assignment
="yes"
795 ##########################################
800 int main(void) { zlibVersion(); return 0; }
802 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev
/null
2> /dev
/null
; then
806 echo "Error: zlib check failed"
807 echo "Make sure to have the zlib libs and headers installed."
812 ##########################################
817 if test -z "$sdl" ; then
818 sdl_config
="sdl-config"
824 #undef main /* We don't want SDL to override our main() */
825 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
827 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
828 _sdlversion
=`$sdl_config --version | sed 's/[^0-9]//g'`
829 if test "$_sdlversion" -lt 121 ; then
832 if test "$cocoa" = "no" ; then
837 # static link with sdl ?
838 if test "$sdl" = "yes" ; then
840 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa
="yes"
841 sdl_static_libs
=`$sdl_config --static-libs 2>/dev/null`
842 if [ "$aa" = "yes" ] ; then
843 sdl_static_libs
="$sdl_static_libs `aalib-config --static-libs`"
846 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev
/null
2> /dev
/null
; then
850 fi # sdl compile test
852 # Make sure to disable cocoa if sdl was set
853 if test "$sdl" = "yes" ; then
855 audio_drv_list
="`echo $audio_drv_list | sed s,coreaudio,,g`"
859 ##########################################
861 if test "$vnc_tls" = "yes" ; then
863 #include <gnutls/gnutls.h>
864 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
866 vnc_tls_cflags
=`pkg-config --cflags gnutls 2> /dev/null`
867 vnc_tls_libs
=`pkg-config --libs gnutls 2> /dev/null`
868 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
869 $vnc_tls_libs > /dev
/null
2> /dev
/null
; then
876 ##########################################
877 # vde libraries probe
878 if test "$vde" = "yes" ; then
880 #include <libvdeplug.h>
883 struct vde_open_args a = {0, 0, 0};
884 vde_open("", "", &a);
888 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev
/null
2> /dev
/null
; then
895 ##########################################
896 # Sound support libraries probe
907 int main(void) { $exp }
909 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev
/null
2> /dev
/null
; then
913 echo "Error: $drv check failed"
914 echo "Make sure to have the $drv libs and headers installed."
920 audio_drv_list
=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
921 for drv
in $audio_drv_list; do
924 audio_drv_probe
$drv alsa
/asoundlib.h
-lasound \
925 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
929 if test -z $fmod_lib ||
test -z $fmod_inc; then
931 echo "Error: You must specify path to FMOD library and headers"
932 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
936 audio_drv_probe
$drv fmod.h
$fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
940 audio_drv_probe
$drv esd.h
-lesd 'return esd_play_stream(0, 0, "", 0);'
944 audio_drv_probe
$drv pulse
/simple.h
-lpulse-simple \
945 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
948 oss|sdl|core|wav|dsound
)
949 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
953 echo "$audio_possible_drivers" |
grep -q "\<$drv\>" ||
{
955 echo "Error: Unknown driver '$drv' selected"
956 echo "Possible drivers are: $audio_possible_drivers"
964 ##########################################
967 if test -z "$brlapi" ; then
971 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
973 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev
/null
2> /dev
/null
; then
975 fi # brlapi compile test
978 ##########################################
981 if test "$curses" = "yes" ; then
985 int main(void) { return curses_version(); }
987 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev
/null
2> /dev
/null
; then
992 ##########################################
993 # bluez support probe
994 if test "$bluez" = "yes" ; then
995 `pkg-config bluez` || bluez
="no"
997 if test "$bluez" = "yes" ; then
999 #include <bluetooth/bluetooth.h>
1000 int main(void) { return bt_error(0); }
1002 bluez_cflags
=`pkg-config --cflags bluez`
1003 bluez_libs
=`pkg-config --libs bluez`
1004 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
1005 $bluez_libs > /dev
/null
2> /dev
/null
; then
1012 ##########################################
1014 if test "$kvm" = "yes" ; then
1016 #include <linux/kvm.h>
1017 #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
1018 #error Invalid KVM version
1020 #if !defined(KVM_CAP_USER_MEMORY)
1021 #error Missing KVM capability KVM_CAP_USER_MEMORY
1023 #if !defined(KVM_CAP_SET_TSS_ADDR)
1024 #error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1026 #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1027 #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1029 int main(void) { return 0; }
1031 if test "$kerneldir" != "" ; then
1032 kvm_cflags
=-I"$kerneldir"/include
1033 if test \
( "$cpu" = "i386" -o "$cpu" = "x86_64" \
) \
1034 -a -d "$kerneldir/arch/x86/include" ; then
1035 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/x86/include"
1036 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1037 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/powerpc/include"
1038 elif test -d "$kerneldir/arch/$cpu/include" ; then
1039 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1044 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
1045 > /dev
/null
2>/dev
/null
; then
1049 if [ -x "`which awk 2>/dev/null`" ] && \
1050 [ -x "`which grep 2>/dev/null`" ]; then
1051 kvmerr
=`$cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1053 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1054 if test "$kvmerr" != "" ; then
1055 kvm
="no - (${kvmerr})"
1061 ##########################################
1065 if test "$aio" = "yes" ; then
1068 #include <pthread.h>
1069 int main(void) { pthread_mutex_t lock; return 0; }
1071 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev
/null
; then
1077 ##########################################
1080 #include <sys/types.h>
1081 #include <sys/uio.h>
1083 int main(void) { struct iovec iov; return 0; }
1086 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1090 ##########################################
1092 if test "$fdt" = "yes" ; then
1095 int main(void) { return 0; }
1097 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev
/null
; then
1102 ##########################################
1107 #include <sys/syscall.h>
1109 int main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
1112 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1116 ##########################################
1121 #include <sys/syscall.h>
1122 int main(void) { return syscall(SYS_eventfd, 0); }
1125 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1129 # Check if tools are available to build documentation.
1130 if [ -x "`which texi2html 2>/dev/null`" ] && \
1131 [ -x "`which pod2man 2>/dev/null`" ]; then
1135 ##########################################
1140 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1144 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1146 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev
/null
2> /dev
/null
; then
1150 if test "$rt" = "yes" ; then
1151 # Hack, we should have a general purpose LIBS for this sort of thing
1152 AIOLIBS
="$AIOLIBS -lrt"
1155 if test "$mingw32" = "yes" ; then
1156 if test -z "$prefix" ; then
1157 prefix
="c:\\\\Program Files\\\\Qemu"
1164 if test -z "$prefix" ; then
1167 mansuffix
="/share/man"
1168 datasuffix
="/share/qemu"
1169 docsuffix
="/share/doc/qemu"
1173 echo "Install prefix $prefix"
1174 echo "BIOS directory $prefix$datasuffix"
1175 echo "binary directory $prefix$binsuffix"
1176 if test "$mingw32" = "no" ; then
1177 echo "Manual directory $prefix$mansuffix"
1178 echo "ELF interp prefix $interp_prefix"
1180 echo "Source path $source_path"
1181 echo "C compiler $cc"
1182 echo "Host C compiler $host_cc"
1183 echo "ARCH_CFLAGS $ARCH_CFLAGS"
1185 echo "install $install"
1186 echo "host CPU $cpu"
1187 echo "host big endian $bigendian"
1188 echo "target list $target_list"
1189 echo "gprof enabled $gprof"
1190 echo "sparse enabled $sparse"
1191 echo "profiler $profiler"
1192 echo "static build $static"
1193 echo "-Werror enabled $werror"
1194 if test "$darwin" = "yes" ; then
1195 echo "Cocoa support $cocoa"
1197 echo "SDL support $sdl"
1198 if test "$sdl" != "no" ; then
1199 echo "SDL static link $sdl_static"
1201 echo "curses support $curses"
1202 echo "mingw32 support $mingw32"
1203 echo "Audio drivers $audio_drv_list"
1204 echo "Extra audio cards $audio_card_list"
1205 echo "Mixer emulation $mixemu"
1206 echo "VNC TLS support $vnc_tls"
1207 if test "$vnc_tls" = "yes" ; then
1208 echo " TLS CFLAGS $vnc_tls_cflags"
1209 echo " TLS LIBS $vnc_tls_libs"
1211 if test -n "$sparc_cpu"; then
1212 echo "Target Sparc Arch $sparc_cpu"
1214 echo "kqemu support $kqemu"
1215 echo "kvm support $kvm"
1216 echo "CPU emulation $cpu_emulation"
1217 echo "brlapi support $brlapi"
1218 echo "Documentation $build_docs"
1219 [ ! -z "$uname_release" ] && \
1220 echo "uname -r $uname_release"
1221 echo "NPTL support $nptl"
1222 echo "vde support $vde"
1223 echo "AIO support $aio"
1224 echo "Install blobs $blobs"
1225 echo "KVM support $kvm"
1226 echo "fdt support $fdt"
1228 if test $sdl_too_old = "yes"; then
1229 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1231 if [ -s $TMPSDLLOG ]; then
1232 echo "The error log from compiling the libSDL test is: "
1235 #if test "$sdl_static" = "no"; then
1236 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1238 config_mak
="config-host.mak"
1239 config_h
="config-host.h"
1241 #echo "Creating $config_mak and $config_h"
1243 test -f $config_h && mv $config_h ${config_h}~
1245 echo "# Automatically generated by configure - do not modify" > $config_mak
1246 printf "# Configured with:" >> $config_mak
1247 printf " '%s'" "$0" "$@" >> $config_mak
1249 echo "/* Automatically generated by configure - do not modify */" > $config_h
1251 echo "prefix=$prefix" >> $config_mak
1252 echo "bindir=\${prefix}$binsuffix" >> $config_mak
1253 echo "mandir=\${prefix}$mansuffix" >> $config_mak
1254 echo "datadir=\${prefix}$datasuffix" >> $config_mak
1255 echo "docdir=\${prefix}$docsuffix" >> $config_mak
1256 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1257 echo "MAKE=$make" >> $config_mak
1258 echo "INSTALL=$install" >> $config_mak
1259 echo "CC=$cc" >> $config_mak
1260 echo "HOST_CC=$host_cc" >> $config_mak
1261 echo "AR=$ar" >> $config_mak
1262 echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
1263 # XXX: only use CFLAGS and LDFLAGS ?
1264 # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1265 # compilation of dyngen tool (useful for win32 build on Linux host)
1266 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1267 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1268 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1269 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1270 echo "CFLAGS=$CFLAGS" >> $config_mak
1271 echo "LDFLAGS=$LDFLAGS" >> $config_mak
1272 echo "EXESUF=$EXESUF" >> $config_mak
1273 echo "AIOLIBS=$AIOLIBS" >> $config_mak
1276 echo "ARCH=i386" >> $config_mak
1277 echo "#define HOST_I386 1" >> $config_h
1280 echo "ARCH=x86_64" >> $config_mak
1281 echo "#define HOST_X86_64 1" >> $config_h
1284 echo "ARCH=alpha" >> $config_mak
1285 echo "#define HOST_ALPHA 1" >> $config_h
1288 echo "ARCH=arm" >> $config_mak
1289 echo "#define HOST_ARM 1" >> $config_h
1292 echo "ARCH=arm" >> $config_mak
1293 echo "#define HOST_ARM 1" >> $config_h
1296 echo "ARCH=cris" >> $config_mak
1297 echo "#define HOST_CRIS 1" >> $config_h
1300 echo "ARCH=hppa" >> $config_mak
1301 echo "#define HOST_HPPA 1" >> $config_h
1304 echo "ARCH=ia64" >> $config_mak
1305 echo "#define HOST_IA64 1" >> $config_h
1308 echo "ARCH=m68k" >> $config_mak
1309 echo "#define HOST_M68K 1" >> $config_h
1312 echo "ARCH=mips" >> $config_mak
1313 echo "#define HOST_MIPS 1" >> $config_h
1316 echo "ARCH=mips64" >> $config_mak
1317 echo "#define HOST_MIPS64 1" >> $config_h
1320 echo "ARCH=ppc" >> $config_mak
1321 echo "#define HOST_PPC 1" >> $config_h
1324 echo "ARCH=ppc64" >> $config_mak
1325 echo "#define HOST_PPC64 1" >> $config_h
1328 echo "ARCH=s390" >> $config_mak
1329 echo "#define HOST_S390 1" >> $config_h
1332 echo "ARCH=sparc" >> $config_mak
1333 echo "#define HOST_SPARC 1" >> $config_h
1336 echo "ARCH=sparc64" >> $config_mak
1337 echo "#define HOST_SPARC64 1" >> $config_h
1340 echo "Unsupported CPU = $cpu"
1344 if test "$sparse" = "yes" ; then
1345 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1346 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1347 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1349 if test "$bigendian" = "yes" ; then
1350 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1351 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1353 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1354 if test "$mingw32" = "yes" ; then
1355 echo "CONFIG_WIN32=yes" >> $config_mak
1356 echo "#define CONFIG_WIN32 1" >> $config_h
1359 #include <byteswap.h>
1360 int main(void) { return bswap_32(0); }
1362 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1363 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1366 #include <sys/endian.h>
1367 #include <sys/types.h>
1368 #include <machine/bswap.h>
1369 int main(void) { return bswap32(0); }
1371 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1372 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1376 if [ "$openbsd" = "yes" ] ; then
1377 echo "#define ENOTSUP 4096" >> $config_h
1380 if test "$darwin" = "yes" ; then
1381 echo "CONFIG_DARWIN=yes" >> $config_mak
1382 echo "#define CONFIG_DARWIN 1" >> $config_h
1385 if test "$aix" = "yes" ; then
1386 echo "CONFIG_AIX=yes" >> $config_mak
1387 echo "#define CONFIG_AIX 1" >> $config_h
1390 if test "$solaris" = "yes" ; then
1391 echo "CONFIG_SOLARIS=yes" >> $config_mak
1392 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1393 if test "$needs_libsunmath" = "yes" ; then
1394 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1395 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1398 if test -n "$sparc_cpu"; then
1399 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1400 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1402 if test "$gdbstub" = "yes" ; then
1403 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1404 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1406 if test "$gprof" = "yes" ; then
1407 echo "TARGET_GPROF=yes" >> $config_mak
1408 echo "#define HAVE_GPROF 1" >> $config_h
1410 if test "$static" = "yes" ; then
1411 echo "CONFIG_STATIC=yes" >> $config_mak
1412 echo "#define CONFIG_STATIC 1" >> $config_h
1414 if test $profiler = "yes" ; then
1415 echo "#define CONFIG_PROFILER 1" >> $config_h
1417 if test "$slirp" = "yes" ; then
1418 echo "CONFIG_SLIRP=yes" >> $config_mak
1419 echo "#define CONFIG_SLIRP 1" >> $config_h
1421 if test "$vde" = "yes" ; then
1422 echo "CONFIG_VDE=yes" >> $config_mak
1423 echo "#define CONFIG_VDE 1" >> $config_h
1424 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1426 for card
in $audio_card_list; do
1427 def
=CONFIG_
`echo $card | tr '[:lower:]' '[:upper:]'`
1428 echo "$def=yes" >> $config_mak
1429 echo "#define $def 1" >> $config_h
1431 echo "#define AUDIO_DRIVERS \\" >> $config_h
1432 for drv
in $audio_drv_list; do
1433 echo " &${drv}_audio_driver, \\" >>$config_h
1434 def
=CONFIG_
`echo $drv | tr '[:lower:]' '[:upper:]'`
1435 echo "$def=yes" >> $config_mak
1436 if test "$drv" = "fmod"; then
1437 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1438 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1439 elif test "$drv" = "oss"; then
1440 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1444 if test "$mixemu" = "yes" ; then
1445 echo "CONFIG_MIXEMU=yes" >> $config_mak
1446 echo "#define CONFIG_MIXEMU 1" >> $config_h
1448 if test "$vnc_tls" = "yes" ; then
1449 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1450 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1451 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1452 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1454 qemu_version
=`head $source_path/VERSION`
1455 echo "VERSION=$qemu_version" >>$config_mak
1456 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1457 echo "#define KVM_VERSION \"kvm-devel\"" >> $config_h
1459 echo "SRC_PATH=$source_path" >> $config_mak
1460 if [ "$source_path_used" = "yes" ]; then
1461 echo "VPATH=$source_path" >> $config_mak
1463 echo "TARGET_DIRS=$target_list" >> $config_mak
1464 if [ "$build_docs" = "yes" ] ; then
1465 echo "BUILD_DOCS=yes" >> $config_mak
1467 if test "$static" = "yes"; then
1472 if test "$sdl1" = "yes" ; then
1473 echo "#define CONFIG_SDL 1" >> $config_h
1474 echo "CONFIG_SDL=yes" >> $config_mak
1475 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1476 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1478 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1480 if [ "${aa}" = "yes" ] ; then
1481 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1483 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1486 if test "$cocoa" = "yes" ; then
1487 echo "#define CONFIG_COCOA 1" >> $config_h
1488 echo "CONFIG_COCOA=yes" >> $config_mak
1490 if test "$curses" = "yes" ; then
1491 echo "#define CONFIG_CURSES 1" >> $config_h
1492 echo "CONFIG_CURSES=yes" >> $config_mak
1493 echo "CURSES_LIBS=-lcurses" >> $config_mak
1495 if test "$brlapi" = "yes" ; then
1496 echo "CONFIG_BRLAPI=yes" >> $config_mak
1497 echo "#define CONFIG_BRLAPI 1" >> $config_h
1498 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1500 if test "$bluez" = "yes" ; then
1501 echo "CONFIG_BLUEZ=yes" >> $config_mak
1502 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1503 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1504 echo "#define CONFIG_BLUEZ 1" >> $config_h
1506 if test "$aio" = "yes" ; then
1507 echo "#define CONFIG_AIO 1" >> $config_h
1508 echo "CONFIG_AIO=yes" >> $config_mak
1510 if test "$blobs" = "yes" ; then
1511 echo "INSTALL_BLOBS=yes" >> $config_mak
1513 if test "$iovec" = "yes" ; then
1514 echo "#define HAVE_IOVEC 1" >> $config_h
1516 if test "$fdt" = "yes" ; then
1517 echo "#define HAVE_FDT 1" >> $config_h
1518 echo "FDT_LIBS=-lfdt" >> $config_mak
1520 if test "$signalfd" = "yes" ; then
1521 echo "#define CONFIG_signalfd 1" >> $config_h
1523 if test "$eventfd" = "yes" ; then
1524 echo "#define CONFIG_eventfd 1" >> $config_h
1527 # XXX: suppress that
1528 if [ "$bsd" = "yes" ] ; then
1529 echo "#define O_LARGEFILE 0" >> $config_h
1530 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1531 echo "#define _BSD 1" >> $config_h
1534 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1539 echo "HOST_USB=linux" >> $config_mak
1542 echo "HOST_USB=bsd" >> $config_mak
1545 echo "HOST_USB=stub" >> $config_mak
1550 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1551 tools
="qemu-img\$(EXESUF) $tools"
1552 if [ "$linux" = "yes" ] ; then
1553 tools
="qemu-nbd\$(EXESUF) $tools"
1556 echo "TOOLS=$tools" >> $config_mak
1558 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~
$config_h
1560 for target
in $target_list; do
1561 target_dir
="$target"
1562 config_mak
=$target_dir/config.mak
1563 config_h
=$target_dir/config.h
1564 target_cpu
=`echo $target | cut -d '-' -f 1`
1565 target_bigendian
="no"
1566 [ "$target_cpu" = "armeb" ] && target_bigendian
=yes
1567 [ "$target_cpu" = "m68k" ] && target_bigendian
=yes
1568 [ "$target_cpu" = "mips" ] && target_bigendian
=yes
1569 [ "$target_cpu" = "mipsn32" ] && target_bigendian
=yes
1570 [ "$target_cpu" = "mips64" ] && target_bigendian
=yes
1571 [ "$target_cpu" = "ppc" ] && target_bigendian
=yes
1572 [ "$target_cpu" = "ppcemb" ] && target_bigendian
=yes
1573 [ "$target_cpu" = "ppc64" ] && target_bigendian
=yes
1574 [ "$target_cpu" = "ppc64abi32" ] && target_bigendian
=yes
1575 [ "$target_cpu" = "sh4eb" ] && target_bigendian
=yes
1576 [ "$target_cpu" = "sparc" ] && target_bigendian
=yes
1577 [ "$target_cpu" = "sparc64" ] && target_bigendian
=yes
1578 [ "$target_cpu" = "sparc32plus" ] && target_bigendian
=yes
1580 target_user_only
="no"
1581 target_linux_user
="no"
1582 target_darwin_user
="no"
1583 target_bsd_user
="no"
1585 ${target_cpu}-softmmu)
1586 target_softmmu
="yes"
1588 ${target_cpu}-linux-user)
1589 target_user_only
="yes"
1590 target_linux_user
="yes"
1592 ${target_cpu}-darwin-user)
1593 target_user_only
="yes"
1594 target_darwin_user
="yes"
1596 ${target_cpu}-bsd-user)
1597 target_user_only
="yes"
1598 target_bsd_user
="yes"
1601 echo "ERROR: Target '$target' not recognised"
1606 if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1607 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
1608 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
1609 echo "To build QEMU without graphical output configure with --disable-gfx-check"
1610 echo "Note that this will disable all output from the virtual graphics card"
1611 echo "except through VNC or curses."
1615 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1617 test -f $config_h && mv $config_h ${config_h}~
1619 mkdir
-p $target_dir
1620 mkdir
-p $target_dir/fpu
1621 mkdir
-p $target_dir/tcg
1622 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1623 mkdir
-p $target_dir/nwfpe
1627 # don't use ln -sf as not all "ln -sf" over write the file/link
1629 rm -f $target_dir/Makefile
1630 ln -s $source_path/Makefile.target
$target_dir/Makefile
1633 echo "# Automatically generated by configure - do not modify" > $config_mak
1634 echo "/* Automatically generated by configure - do not modify */" > $config_h
1637 echo "include ../config-host.mak" >> $config_mak
1638 echo "#include \"../config-host.h\"" >> $config_h
1643 interp_prefix1
=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1644 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1647 disable_cpu_emulation
() {
1648 if test $cpu_emulation = "no"; then
1649 echo "#define NO_CPU_EMULATION 1" >> $config_h
1650 echo "NO_CPU_EMULATION=1" >> $config_mak
1655 if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
1656 \
( "$cpu" = "i386" -o "$cpu" = "x86_64" -o "$cpu" = "ia64" -o "$cpu" = "powerpc" \
); then
1657 echo "#define USE_KVM 1" >> $config_h
1658 echo "USE_KVM=1" >> $config_mak
1659 echo "CONFIG_KVM_KERNEL_INC=$kerneldir/include" >> $config_mak
1660 if test $kvm_cap_pit = "yes" ; then
1661 echo "USE_KVM_PIT=1" >> $config_mak
1662 echo "#define USE_KVM_PIT 1" >> $config_h
1664 if test $kvm_cap_device_assignment = "yes" ; then
1665 echo "USE_KVM_DEVICE_ASSIGNMENT=1" >> $config_mak
1666 echo "#define USE_KVM_DEVICE_ASSIGNMENT 1" >> $config_h
1668 disable_cpu_emulation
1672 if [ use_upstream_kvm
= yes ]; then
1674 # Make sure the target and host cpus are compatible
1675 if test "$kvm" = "yes" -a ! \
( "$target_cpu" = "$cpu" -o \
1676 \
( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \
) -o \
1677 \
( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \
) -o \
1678 \
( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \
) \
) ; then
1681 # Disable KVM for linux-user
1682 if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1688 case "$target_cpu" in
1690 echo "TARGET_ARCH=i386" >> $config_mak
1691 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1692 echo "#define TARGET_I386 1" >> $config_h
1693 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1695 echo "#define USE_KQEMU 1" >> $config_h
1697 if test "$kvm" = "yes" ; then
1698 echo "CONFIG_KVM=yes" >> $config_mak
1699 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1700 echo "#define CONFIG_KVM 1" >> $config_h
1705 echo "TARGET_ARCH=x86_64" >> $config_mak
1706 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1707 echo "#define TARGET_I386 1" >> $config_h
1708 echo "#define TARGET_X86_64 1" >> $config_h
1709 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1711 echo "#define USE_KQEMU 1" >> $config_h
1716 echo "TARGET_ARCH=ia64" >> $config_mak
1717 echo "#define TARGET_ARCH \"ia64\"" >> $config_h
1718 echo "#define TARGET_IA64 1" >> $config_h
1720 if [ use_upstream_kvm
= yes ]; then
1721 if test "$kvm" = "yes" ; then
1722 echo "CONFIG_KVM=yes" >> $config_mak
1723 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1724 echo "#define CONFIG_KVM 1" >> $config_h
1729 echo "TARGET_ARCH=alpha" >> $config_mak
1730 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1731 echo "#define TARGET_ALPHA 1" >> $config_h
1734 echo "TARGET_ARCH=arm" >> $config_mak
1735 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1736 echo "#define TARGET_ARM 1" >> $config_h
1739 gdb_xml_files
="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1742 echo "TARGET_ARCH=cris" >> $config_mak
1743 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1744 echo "#define TARGET_CRIS 1" >> $config_h
1748 echo "TARGET_ARCH=m68k" >> $config_mak
1749 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1750 echo "#define TARGET_M68K 1" >> $config_h
1752 gdb_xml_files
="cf-core.xml cf-fp.xml"
1755 echo "TARGET_ARCH=mips" >> $config_mak
1756 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1757 echo "#define TARGET_MIPS 1" >> $config_h
1758 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1761 echo "TARGET_ARCH=mipsn32" >> $config_mak
1762 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1763 echo "#define TARGET_MIPS 1" >> $config_h
1764 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1767 echo "TARGET_ARCH=mips64" >> $config_mak
1768 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1769 echo "#define TARGET_MIPS 1" >> $config_h
1770 echo "#define TARGET_MIPS64 1" >> $config_h
1771 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1774 echo "TARGET_ARCH=ppc" >> $config_mak
1775 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1776 echo "#define TARGET_PPC 1" >> $config_h
1777 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1780 echo "TARGET_ARCH=ppcemb" >> $config_mak
1781 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1782 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1783 echo "#define TARGET_PPC 1" >> $config_h
1784 echo "#define TARGET_PPCEMB 1" >> $config_h
1785 if test "$kvm" = "yes" ; then
1786 echo "CONFIG_KVM=yes" >> $config_mak
1787 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1788 echo "#define CONFIG_KVM 1" >> $config_h
1790 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1793 echo "TARGET_ARCH=ppc64" >> $config_mak
1794 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1795 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1796 echo "#define TARGET_PPC 1" >> $config_h
1797 echo "#define TARGET_PPC64 1" >> $config_h
1798 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1801 echo "TARGET_ARCH=ppc64" >> $config_mak
1802 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1803 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1804 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1805 echo "#define TARGET_PPC 1" >> $config_h
1806 echo "#define TARGET_PPC64 1" >> $config_h
1807 echo "#define TARGET_ABI32 1" >> $config_h
1808 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1811 echo "TARGET_ARCH=sh4" >> $config_mak
1812 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1813 echo "#define TARGET_SH4 1" >> $config_h
1818 echo "TARGET_ARCH=sparc" >> $config_mak
1819 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1820 echo "#define TARGET_SPARC 1" >> $config_h
1823 echo "TARGET_ARCH=sparc64" >> $config_mak
1824 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1825 echo "#define TARGET_SPARC 1" >> $config_h
1826 echo "#define TARGET_SPARC64 1" >> $config_h
1830 echo "TARGET_ARCH=sparc64" >> $config_mak
1831 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1832 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1833 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1834 echo "#define TARGET_SPARC 1" >> $config_h
1835 echo "#define TARGET_SPARC64 1" >> $config_h
1836 echo "#define TARGET_ABI32 1" >> $config_h
1839 echo "Unsupported target CPU"
1843 if test "$target_bigendian" = "yes" ; then
1844 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1845 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1847 if test "$target_softmmu" = "yes" ; then
1848 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1849 echo "#define CONFIG_SOFTMMU 1" >> $config_h
1851 if test "$target_user_only" = "yes" ; then
1852 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1853 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1855 if test "$target_linux_user" = "yes" ; then
1856 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1857 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1859 if test "$target_darwin_user" = "yes" ; then
1860 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1861 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1864 if test ! -z "$gdb_xml_files" ; then
1865 for x
in $gdb_xml_files; do
1866 list
="$list $source_path/gdb-xml/$x"
1869 echo "TARGET_XML_FILES=$list" >> $config_mak
1871 if test "$target_cpu" = "arm" \
1872 -o "$target_cpu" = "armeb" \
1873 -o "$target_cpu" = "m68k" \
1874 -o "$target_cpu" = "mips" \
1875 -o "$target_cpu" = "mipsel" \
1876 -o "$target_cpu" = "mipsn32" \
1877 -o "$target_cpu" = "mipsn32el" \
1878 -o "$target_cpu" = "mips64" \
1879 -o "$target_cpu" = "mips64el" \
1880 -o "$target_cpu" = "ppc" \
1881 -o "$target_cpu" = "ppc64" \
1882 -o "$target_cpu" = "ppc64abi32" \
1883 -o "$target_cpu" = "ppcemb" \
1884 -o "$target_cpu" = "sparc" \
1885 -o "$target_cpu" = "sparc64" \
1886 -o "$target_cpu" = "sparc32plus"; then
1887 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1888 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1890 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1891 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1892 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1894 if test "$target_user_only" = "yes" \
1895 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1896 echo "#define USE_NPTL 1" >> $config_h
1898 # 32 bit ELF loader in addition to native 64 bit loader?
1899 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1900 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1901 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1903 if test "$target_bsd_user" = "yes" ; then
1904 echo "CONFIG_BSD_USER=yes" >> $config_mak
1905 echo "#define CONFIG_BSD_USER 1" >> $config_h
1908 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~
$config_h
1910 done # for target in $targets
1912 # build tree in object directory if source path is different from current one
1913 if test "$source_path_used" = "yes" ; then
1914 DIRS
="tests tests/cris slirp audio"
1915 FILES
="Makefile tests/Makefile"
1916 FILES
="$FILES tests/cris/Makefile tests/cris/.gdbinit"
1917 FILES
="$FILES tests/test-mmap.c"
1918 for dir
in $DIRS ; do
1921 # remove the link and recreate it, as not all "ln -sf" overwrite the link
1922 for f
in $FILES ; do
1924 ln -s $source_path/$f $f