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"
242 audio_possible_drivers
="oss sdl esd"
248 # 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
249 if [ "$cpu" = "i386" ] ; then
250 is_x86_64
=`sysctl -n hw.optional.x86_64`
251 [ "$is_x86_64" = "1" ] && cpu
=x86_64
253 if [ "$cpu" = "x86_64" ] ; then
254 OS_CFLAGS
="-arch x86_64"
255 LDFLAGS
="-arch x86_64"
257 OS_CFLAGS
="-mdynamic-no-pic"
261 audio_drv_list
="coreaudio"
262 audio_possible_drivers
="coreaudio sdl fmod"
263 OS_LDFLAGS
="-framework CoreFoundation -framework IOKit"
269 needs_libsunmath
="no"
270 solarisrev
=`uname -r | cut -f2 -d.`
271 # have to select again, because `uname -m` returns i86pc
272 # even on an x86_64 box.
273 solariscpu
=`isainfo -k`
274 if test "${solariscpu}" = "amd64" ; then
277 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
278 if test "$solarisrev" -le 9 ; then
279 if test -f /opt
/SUNWspro
/prod
/lib
/libsunmath.so
.1; then
280 needs_libsunmath
="yes"
282 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
283 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
284 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
285 echo "Studio 11 can be downloaded from www.sun.com."
289 if test "$solarisrev" -ge 9 ; then
293 if test -f /usr
/include
/sys
/soundcard.h
; then
296 audio_possible_drivers
="oss sdl"
304 audio_possible_drivers
="oss alsa sdl esd pa"
308 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
310 audio_possible_drivers
="$audio_possible_drivers fmod"
315 if [ "$bsd" = "yes" ] ; then
316 if [ "$darwin" != "yes" ] ; then
324 source_path
=`dirname "$0"`
325 source_path_used
="no"
327 if [ -z "$source_path" ]; then
330 source_path
=`cd "$source_path"; pwd`
332 [ -f "$workdir/vl.c" ] || source_path_used
="yes"
335 # generate compile errors on warnings for development builds
336 #if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
341 optarg
=`expr "x$opt" : 'x[^=]*=\(.*\)'`
343 --help|
-h) show_help
=yes
345 --prefix=*) prefix
="$optarg"
347 --interp-prefix=*) interp_prefix
="$optarg"
349 --source-path=*) source_path
="$optarg"
350 source_path_used
="yes"
356 --host-cc=*) host_cc
="$optarg"
358 --make=*) make="$optarg"
360 --install=*) install="$optarg"
362 --extra-cflags=*) CFLAGS
="$optarg"
364 --extra-ldflags=*) LDFLAGS
="$optarg"
366 --cpu=*) cpu
="$optarg"
368 --target-list=*) target_list
="$optarg"
370 --enable-gprof) gprof
="yes"
372 --static) static
="yes"
374 --disable-sdl) sdl
="no"
376 --fmod-lib=*) fmod_lib
="$optarg"
378 --fmod-inc=*) fmod_inc
="$optarg"
380 --oss-lib=*) oss_lib
="$optarg"
382 --audio-card-list=*) audio_card_list
=`echo "$optarg" | sed -e 's/,/ /g'`
384 --audio-drv-list=*) audio_drv_list
="$optarg"
386 --enable-sparse) sparse
="yes"
388 --disable-sparse) sparse
="no"
390 --disable-vnc-tls) vnc_tls
="no"
392 --disable-vnc-sasl) vnc_sasl
="no"
394 --disable-slirp) slirp
="no"
396 --disable-vde) vde
="no"
398 --disable-kqemu) kqemu
="no"
400 --disable-brlapi) brlapi
="no"
402 --disable-bluez) bluez
="no"
404 --disable-kvm) kvm
="no"
406 --enable-profiler) profiler
="yes"
411 audio_drv_list
="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
413 --disable-gfx-check) check_gfx
="no"
415 --disable-system) softmmu
="no"
417 --enable-system) softmmu
="yes"
419 --disable-linux-user) linux_user
="no"
421 --enable-linux-user) linux_user
="yes"
423 --disable-darwin-user) darwin_user
="no"
425 --enable-darwin-user) darwin_user
="yes"
427 --disable-bsd-user) bsd_user
="no"
429 --enable-bsd-user) bsd_user
="yes"
431 --enable-uname-release=*) uname_release
="$optarg"
436 v7|v8
) SP_CFLAGS
="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
437 target_cpu
="sparc"; cpu
="sparc" ;;
438 v8plus|v8plusa
) SP_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
439 target_cpu
="sparc"; cpu
="sparc" ;;
440 v9
) SP_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m64"
441 target_cpu
="sparc64"; cpu
="sparc64" ;;
442 *) echo "undefined SPARC architecture. Exiting";exit 1;;
445 --enable-werror) werror
="yes"
447 --disable-werror) werror
="no"
449 --disable-curses) curses
="no"
451 --disable-nptl) nptl
="no"
453 --enable-mixemu) mixemu
="yes"
455 --disable-aio) aio
="no"
457 --disable-blobs) blobs
="no"
459 --kerneldir=*) kerneldir
="$optarg"
461 *) echo "ERROR: unknown option $opt"; show_help
="yes"
466 # default flags for all hosts
467 CFLAGS
="$CFLAGS -O2 -g -fno-strict-aliasing"
468 CFLAGS
="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
469 LDFLAGS
="$LDFLAGS -g"
470 if test "$werror" = "yes" ; then
471 CFLAGS
="$CFLAGS -Werror"
474 if test "$solaris" = "no" ; then
475 if ld
--version 2>/dev
/null |
grep "GNU ld" >/dev
/null
2>/dev
/null
; then
476 LDFLAGS
="$LDFLAGS -Wl,--warn-common"
481 # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
482 # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
485 sparc
) if test -z "$sparc_cpu" ; then
486 ARCH_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
489 ARCH_CFLAGS
="${SP_CFLAGS}"
490 ARCH_LDFLAGS
="${SP_LDFLAGS}"
493 sparc64
) if test -z "$sparc_cpu" ; then
494 ARCH_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_v9__"
497 ARCH_CFLAGS
="${SP_CFLAGS}"
498 ARCH_LDFLAGS
="${SP_LDFLAGS}"
502 ARCH_CFLAGS
="-march=z900"
514 if test x
"$show_help" = x
"yes" ; then
517 Usage: configure [options]
518 Options: [defaults in brackets after descriptions]
521 echo "Standard options:"
522 echo " --help print this message"
523 echo " --prefix=PREFIX install in PREFIX [$prefix]"
524 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
525 echo " use %M for cpu name [$interp_prefix]"
526 echo " --target-list=LIST set target list [$target_list]"
528 echo "kqemu kernel acceleration support:"
529 echo " --disable-kqemu disable kqemu support"
531 echo "Advanced options (experts only):"
532 echo " --source-path=PATH path of source code [$source_path]"
533 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
534 echo " --cc=CC use C compiler CC [$cc]"
535 echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
536 echo " --make=MAKE use specified make [$make]"
537 echo " --install=INSTALL use specified install [$install]"
538 echo " --static enable static build [$static]"
539 echo " --enable-sparse enable sparse checker"
540 echo " --disable-sparse disable sparse checker (default)"
541 echo " --disable-werror disable compilation abort on warning"
542 echo " --disable-sdl disable SDL"
543 echo " --enable-cocoa enable COCOA (Mac OS X only)"
544 echo " --audio-drv-list=LIST set audio drivers list:"
545 echo " Available drivers: $audio_possible_drivers"
546 echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
547 echo " Available cards: $audio_possible_cards"
548 echo " --enable-mixemu enable mixer emulation"
549 echo " --disable-brlapi disable BrlAPI"
550 echo " --disable-vnc-tls disable TLS encryption for VNC server"
551 echo " --disable-vnc-sasl disable SASL encryption for VNC server"
552 echo " --disable-curses disable curses output"
553 echo " --disable-bluez disable bluez stack connectivity"
554 echo " --disable-kvm disable KVM acceleration support"
555 echo " --disable-nptl disable usermode NPTL support"
556 echo " --enable-system enable all system emulation targets"
557 echo " --disable-system disable all system emulation targets"
558 echo " --enable-linux-user enable all linux usermode emulation targets"
559 echo " --disable-linux-user disable all linux usermode emulation targets"
560 echo " --enable-darwin-user enable all darwin usermode emulation targets"
561 echo " --disable-darwin-user disable all darwin usermode emulation targets"
562 echo " --enable-bsd-user enable all BSD usermode emulation targets"
563 echo " --disable-bsd-user disable all BSD usermode emulation targets"
564 echo " --fmod-lib path to FMOD library"
565 echo " --fmod-inc path to FMOD includes"
566 echo " --oss-lib path to OSS library"
567 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
568 echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
569 echo " --disable-vde disable support for vde network"
570 echo " --disable-aio disable AIO support"
571 echo " --disable-blobs disable installing provided firmware blobs"
572 echo " --kerneldir=PATH look for kernel includes in PATH"
574 echo "NOTE: The object files are built at the place where configure is launched"
578 if test "$mingw32" = "yes" ; then
586 if test ! -x "$(which cgcc 2>/dev/null)"; then
591 # Solaris specific configure tool chain decisions
593 if test "$solaris" = "yes" ; then
594 solinst
=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
595 if test -z "$solinst" ; then
596 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
597 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
598 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
601 if test "$solinst" = "/usr/sbin/install" ; then
602 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
603 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
604 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
607 sol_ar
=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
608 if test -z "$sol_ar" ; then
609 echo "Error: No path includes ar"
610 if test -f /usr
/ccs
/bin
/ar ; then
611 echo "Add /usr/ccs/bin to your path and rerun configure"
618 if test -z "$target_list" ; then
619 # these targets are portable
620 if [ "$softmmu" = "yes" ] ; then
639 # the following are Linux specific
640 if [ "$linux_user" = "yes" ] ; then
641 target_list
="${target_list}\
653 ppc64abi32-linux-user \
658 sparc32plus-linux-user \
661 # the following are Darwin specific
662 if [ "$darwin_user" = "yes" ] ; then
663 target_list
="$target_list i386-darwin-user ppc-darwin-user "
665 # the following are BSD specific
666 if [ "$bsd_user" = "yes" ] ; then
667 target_list
="${target_list}\
672 target_list
=`echo "$target_list" | sed -e 's/,/ /g'`
674 if test -z "$target_list" ; then
675 echo "No targets enabled"
679 if test -z "$cross_prefix" ; then
682 # big/little endian test
684 #include <inttypes.h>
685 int main(int argc, char ** argv){
686 volatile uint32_t i=0x01234567;
687 return (*((uint8_t*)(&i))) == 0x67;
691 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
692 $TMPE && bigendian
="yes"
694 echo big
/little
test failed
699 # if cross compiling, cannot launch a program, so make a static guess
700 if test "$cpu" = "armv4b" \
704 -o "$cpu" = "mips64" \
706 -o "$cpu" = "ppc64" \
708 -o "$cpu" = "sparc" \
709 -o "$cpu" = "sparc64"; then
715 # host long bits test
717 if test "$cpu" = "x86_64" \
718 -o "$cpu" = "alpha" \
720 -o "$cpu" = "sparc64" \
721 -o "$cpu" = "ppc64"; then
725 # check gcc options support
731 # Check host NPTL support
734 #include <linux/futex.h>
737 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
743 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev
/null
2> /dev
/null
; then
749 ##########################################
754 int main(void) { zlibVersion(); return 0; }
756 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev
/null
2> /dev
/null
; then
760 echo "Error: zlib check failed"
761 echo "Make sure to have the zlib libs and headers installed."
766 ##########################################
771 if test -z "$sdl" ; then
772 sdl_config
="sdl-config"
778 #undef main /* We don't want SDL to override our main() */
779 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
781 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
782 _sdlversion
=`$sdl_config --version | sed 's/[^0-9]//g'`
783 if test "$_sdlversion" -lt 121 ; then
786 if test "$cocoa" = "no" ; then
791 # static link with sdl ?
792 if test "$sdl" = "yes" ; then
794 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa
="yes"
795 sdl_static_libs
=`$sdl_config --static-libs 2>/dev/null`
796 if [ "$aa" = "yes" ] ; then
797 sdl_static_libs
="$sdl_static_libs `aalib-config --static-libs`"
800 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev
/null
2> /dev
/null
; then
804 fi # sdl compile test
806 # Make sure to disable cocoa if sdl was set
807 if test "$sdl" = "yes" ; then
809 audio_drv_list
="`echo $audio_drv_list | sed s,coreaudio,,g`"
813 if test "$sdl" = "yes" ; then
816 #if defined(SDL_VIDEO_DRIVER_X11)
817 #include <X11/XKBlib.h>
819 #error No x11 support
821 int main(void) { return 0; }
823 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
828 ##########################################
830 if test "$vnc_tls" = "yes" ; then
832 #include <gnutls/gnutls.h>
833 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
835 vnc_tls_cflags
=`pkg-config --cflags gnutls 2> /dev/null`
836 vnc_tls_libs
=`pkg-config --libs gnutls 2> /dev/null`
837 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
838 $vnc_tls_libs > /dev
/null
2> /dev
/null
; then
845 ##########################################
847 if test "$vnc_sasl" = "yes" ; then
849 #include <sasl/sasl.h>
851 int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
853 # Assuming Cyrus-SASL installed in /usr prefix
855 vnc_sasl_libs
="-lsasl2"
856 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \
857 $vnc_sasl_libs 2> /dev
/null
; then
864 ##########################################
865 # fnmatch() probe, used for ACL routines
871 fnmatch("foo", "foo", 0);
875 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
879 ##########################################
880 # vde libraries probe
881 if test "$vde" = "yes" ; then
883 #include <libvdeplug.h>
886 struct vde_open_args a = {0, 0, 0};
887 vde_open("", "", &a);
891 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev
/null
2> /dev
/null
; then
898 ##########################################
899 # Sound support libraries probe
910 int main(void) { $exp }
912 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev
/null
2> /dev
/null
; then
916 echo "Error: $drv check failed"
917 echo "Make sure to have the $drv libs and headers installed."
923 audio_drv_list
=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
924 for drv
in $audio_drv_list; do
927 audio_drv_probe
$drv alsa
/asoundlib.h
-lasound \
928 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
932 if test -z $fmod_lib ||
test -z $fmod_inc; then
934 echo "Error: You must specify path to FMOD library and headers"
935 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
939 audio_drv_probe
$drv fmod.h
$fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
943 audio_drv_probe
$drv esd.h
-lesd 'return esd_play_stream(0, 0, "", 0);'
947 audio_drv_probe
$drv pulse
/simple.h
-lpulse-simple \
948 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
951 oss|sdl|core|wav|dsound
)
952 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
956 echo "$audio_possible_drivers" |
grep -q "\<$drv\>" ||
{
958 echo "Error: Unknown driver '$drv' selected"
959 echo "Possible drivers are: $audio_possible_drivers"
967 ##########################################
970 if test -z "$brlapi" ; then
974 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
976 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev
/null
2> /dev
/null
; then
978 fi # brlapi compile test
981 ##########################################
984 if test "$curses" = "yes" ; then
988 int main(void) { return curses_version(); }
990 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev
/null
2> /dev
/null
; then
995 ##########################################
996 # bluez support probe
997 if test "$bluez" = "yes" ; then
998 `pkg-config bluez` || bluez
="no"
1000 if test "$bluez" = "yes" ; then
1002 #include <bluetooth/bluetooth.h>
1003 int main(void) { return bt_error(0); }
1005 bluez_cflags
=`pkg-config --cflags bluez`
1006 bluez_libs
=`pkg-config --libs bluez`
1007 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
1008 $bluez_libs > /dev
/null
2> /dev
/null
; then
1015 ##########################################
1017 if test "$kvm" = "yes" ; then
1019 #include <linux/kvm.h>
1020 #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
1021 #error Invalid KVM version
1023 #if !defined(KVM_CAP_USER_MEMORY)
1024 #error Missing KVM capability KVM_CAP_USER_MEMORY
1026 #if !defined(KVM_CAP_SET_TSS_ADDR)
1027 #error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1029 #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1030 #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1032 int main(void) { return 0; }
1034 if test "$kerneldir" != "" ; then
1035 kvm_cflags
=-I"$kerneldir"/include
1036 if test \
( "$cpu" = "i386" -o "$cpu" = "x86_64" \
) \
1037 -a -d "$kerneldir/arch/x86/include" ; then
1038 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/x86/include"
1039 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1040 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/powerpc/include"
1041 elif test -d "$kerneldir/arch/$cpu/include" ; then
1042 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1047 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
1048 > /dev
/null
2>/dev
/null
; then
1052 if [ -x "`which awk 2>/dev/null`" ] && \
1053 [ -x "`which grep 2>/dev/null`" ]; then
1054 kvmerr
=`$cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1056 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1057 if test "$kvmerr" != "" ; then
1058 kvm
="no - (${kvmerr})"
1064 ##########################################
1068 if test "$aio" = "yes" ; then
1071 #include <pthread.h>
1072 int main(void) { pthread_mutex_t lock; return 0; }
1074 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev
/null
; then
1080 ##########################################
1083 #include <sys/types.h>
1084 #include <sys/uio.h>
1086 int main(void) { struct iovec iov; return 0; }
1089 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1093 ##########################################
1095 if test "$fdt" = "yes" ; then
1098 int main(void) { return 0; }
1100 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev
/null
; then
1105 # Check if tools are available to build documentation.
1106 if [ -x "`which texi2html 2>/dev/null`" ] && \
1107 [ -x "`which pod2man 2>/dev/null`" ]; then
1111 ##########################################
1116 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1120 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1122 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev
/null
2> /dev
/null
; then
1126 if test "$rt" = "yes" ; then
1127 # Hack, we should have a general purpose LIBS for this sort of thing
1128 AIOLIBS
="$AIOLIBS -lrt"
1131 if test "$mingw32" = "yes" ; then
1132 if test -z "$prefix" ; then
1133 prefix
="c:\\\\Program Files\\\\Qemu"
1140 if test -z "$prefix" ; then
1143 mansuffix
="/share/man"
1144 datasuffix
="/share/qemu"
1145 docsuffix
="/share/doc/qemu"
1149 echo "Install prefix $prefix"
1150 echo "BIOS directory $prefix$datasuffix"
1151 echo "binary directory $prefix$binsuffix"
1152 if test "$mingw32" = "no" ; then
1153 echo "Manual directory $prefix$mansuffix"
1154 echo "ELF interp prefix $interp_prefix"
1156 echo "Source path $source_path"
1157 echo "C compiler $cc"
1158 echo "Host C compiler $host_cc"
1159 echo "ARCH_CFLAGS $ARCH_CFLAGS"
1161 echo "install $install"
1162 echo "host CPU $cpu"
1163 echo "host big endian $bigendian"
1164 echo "target list $target_list"
1165 echo "gprof enabled $gprof"
1166 echo "sparse enabled $sparse"
1167 echo "profiler $profiler"
1168 echo "static build $static"
1169 echo "-Werror enabled $werror"
1170 if test "$darwin" = "yes" ; then
1171 echo "Cocoa support $cocoa"
1173 echo "SDL support $sdl"
1174 if test "$sdl" != "no" ; then
1175 echo "SDL static link $sdl_static"
1177 echo "curses support $curses"
1178 echo "mingw32 support $mingw32"
1179 echo "Audio drivers $audio_drv_list"
1180 echo "Extra audio cards $audio_card_list"
1181 echo "Mixer emulation $mixemu"
1182 echo "VNC TLS support $vnc_tls"
1183 if test "$vnc_tls" = "yes" ; then
1184 echo " TLS CFLAGS $vnc_tls_cflags"
1185 echo " TLS LIBS $vnc_tls_libs"
1187 echo "VNC SASL support $vnc_sasl"
1188 if test "$vnc_sasl" = "yes" ; then
1189 echo " SASL CFLAGS $vnc_sasl_cflags"
1190 echo " SASL LIBS $vnc_sasl_libs"
1192 if test -n "$sparc_cpu"; then
1193 echo "Target Sparc Arch $sparc_cpu"
1195 echo "kqemu support $kqemu"
1196 echo "brlapi support $brlapi"
1197 echo "Documentation $build_docs"
1198 [ ! -z "$uname_release" ] && \
1199 echo "uname -r $uname_release"
1200 echo "NPTL support $nptl"
1201 echo "vde support $vde"
1202 echo "AIO support $aio"
1203 echo "Install blobs $blobs"
1204 echo "KVM support $kvm"
1205 echo "fdt support $fdt"
1207 if test $sdl_too_old = "yes"; then
1208 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1210 if [ -s $TMPSDLLOG ]; then
1211 echo "The error log from compiling the libSDL test is: "
1214 #if test "$sdl_static" = "no"; then
1215 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1217 config_mak
="config-host.mak"
1218 config_h
="config-host.h"
1220 #echo "Creating $config_mak and $config_h"
1222 test -f $config_h && mv $config_h ${config_h}~
1224 echo "# Automatically generated by configure - do not modify" > $config_mak
1225 printf "# Configured with:" >> $config_mak
1226 printf " '%s'" "$0" "$@" >> $config_mak
1228 echo "/* Automatically generated by configure - do not modify */" > $config_h
1230 echo "prefix=$prefix" >> $config_mak
1231 echo "bindir=\${prefix}$binsuffix" >> $config_mak
1232 echo "mandir=\${prefix}$mansuffix" >> $config_mak
1233 echo "datadir=\${prefix}$datasuffix" >> $config_mak
1234 echo "docdir=\${prefix}$docsuffix" >> $config_mak
1235 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1236 echo "MAKE=$make" >> $config_mak
1237 echo "INSTALL=$install" >> $config_mak
1238 echo "CC=$cc" >> $config_mak
1239 echo "HOST_CC=$host_cc" >> $config_mak
1240 echo "AR=$ar" >> $config_mak
1241 echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
1242 # XXX: only use CFLAGS and LDFLAGS ?
1243 # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1244 # compilation of dyngen tool (useful for win32 build on Linux host)
1245 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1246 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1247 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1248 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1249 echo "CFLAGS=$CFLAGS" >> $config_mak
1250 echo "LDFLAGS=$LDFLAGS" >> $config_mak
1251 echo "EXESUF=$EXESUF" >> $config_mak
1252 echo "AIOLIBS=$AIOLIBS" >> $config_mak
1255 echo "ARCH=i386" >> $config_mak
1256 echo "#define HOST_I386 1" >> $config_h
1259 echo "ARCH=x86_64" >> $config_mak
1260 echo "#define HOST_X86_64 1" >> $config_h
1263 echo "ARCH=alpha" >> $config_mak
1264 echo "#define HOST_ALPHA 1" >> $config_h
1267 echo "ARCH=arm" >> $config_mak
1268 echo "#define HOST_ARM 1" >> $config_h
1271 echo "ARCH=arm" >> $config_mak
1272 echo "#define HOST_ARM 1" >> $config_h
1275 echo "ARCH=cris" >> $config_mak
1276 echo "#define HOST_CRIS 1" >> $config_h
1279 echo "ARCH=hppa" >> $config_mak
1280 echo "#define HOST_HPPA 1" >> $config_h
1283 echo "ARCH=ia64" >> $config_mak
1284 echo "#define HOST_IA64 1" >> $config_h
1287 echo "ARCH=m68k" >> $config_mak
1288 echo "#define HOST_M68K 1" >> $config_h
1291 echo "ARCH=mips" >> $config_mak
1292 echo "#define HOST_MIPS 1" >> $config_h
1295 echo "ARCH=mips64" >> $config_mak
1296 echo "#define HOST_MIPS64 1" >> $config_h
1299 echo "ARCH=ppc" >> $config_mak
1300 echo "#define HOST_PPC 1" >> $config_h
1303 echo "ARCH=ppc64" >> $config_mak
1304 echo "#define HOST_PPC64 1" >> $config_h
1307 echo "ARCH=s390" >> $config_mak
1308 echo "#define HOST_S390 1" >> $config_h
1311 echo "ARCH=sparc" >> $config_mak
1312 echo "#define HOST_SPARC 1" >> $config_h
1315 echo "ARCH=sparc64" >> $config_mak
1316 echo "#define HOST_SPARC64 1" >> $config_h
1319 echo "Unsupported CPU = $cpu"
1323 if test "$sparse" = "yes" ; then
1324 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1325 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1326 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1328 if test "$bigendian" = "yes" ; then
1329 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1330 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1332 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1333 if test "$mingw32" = "yes" ; then
1334 echo "CONFIG_WIN32=yes" >> $config_mak
1335 echo "#define CONFIG_WIN32 1" >> $config_h
1338 #include <byteswap.h>
1339 int main(void) { return bswap_32(0); }
1341 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1342 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1345 #include <sys/endian.h>
1346 #include <sys/types.h>
1347 #include <machine/bswap.h>
1348 int main(void) { return bswap32(0); }
1350 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1351 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1355 if [ "$openbsd" = "yes" ] ; then
1356 echo "#define ENOTSUP 4096" >> $config_h
1359 if test "$darwin" = "yes" ; then
1360 echo "CONFIG_DARWIN=yes" >> $config_mak
1361 echo "#define CONFIG_DARWIN 1" >> $config_h
1364 if test "$aix" = "yes" ; then
1365 echo "CONFIG_AIX=yes" >> $config_mak
1366 echo "#define CONFIG_AIX 1" >> $config_h
1369 if test "$solaris" = "yes" ; then
1370 echo "CONFIG_SOLARIS=yes" >> $config_mak
1371 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1372 if test "$needs_libsunmath" = "yes" ; then
1373 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1374 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1377 if test -n "$sparc_cpu"; then
1378 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1379 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1381 if test "$gdbstub" = "yes" ; then
1382 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1383 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1385 if test "$gprof" = "yes" ; then
1386 echo "TARGET_GPROF=yes" >> $config_mak
1387 echo "#define HAVE_GPROF 1" >> $config_h
1389 if test "$static" = "yes" ; then
1390 echo "CONFIG_STATIC=yes" >> $config_mak
1391 echo "#define CONFIG_STATIC 1" >> $config_h
1393 if test $profiler = "yes" ; then
1394 echo "#define CONFIG_PROFILER 1" >> $config_h
1396 if test "$slirp" = "yes" ; then
1397 echo "CONFIG_SLIRP=yes" >> $config_mak
1398 echo "#define CONFIG_SLIRP 1" >> $config_h
1400 if test "$vde" = "yes" ; then
1401 echo "CONFIG_VDE=yes" >> $config_mak
1402 echo "#define CONFIG_VDE 1" >> $config_h
1403 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1405 for card
in $audio_card_list; do
1406 def
=CONFIG_
`echo $card | tr '[:lower:]' '[:upper:]'`
1407 echo "$def=yes" >> $config_mak
1408 echo "#define $def 1" >> $config_h
1410 echo "#define AUDIO_DRIVERS \\" >> $config_h
1411 for drv
in $audio_drv_list; do
1412 echo " &${drv}_audio_driver, \\" >>$config_h
1413 def
=CONFIG_
`echo $drv | tr '[:lower:]' '[:upper:]'`
1414 echo "$def=yes" >> $config_mak
1415 if test "$drv" = "fmod"; then
1416 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1417 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1418 elif test "$drv" = "oss"; then
1419 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1423 if test "$mixemu" = "yes" ; then
1424 echo "CONFIG_MIXEMU=yes" >> $config_mak
1425 echo "#define CONFIG_MIXEMU 1" >> $config_h
1427 if test "$vnc_tls" = "yes" ; then
1428 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1429 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1430 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1431 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1433 if test "$vnc_sasl" = "yes" ; then
1434 echo "CONFIG_VNC_SASL=yes" >> $config_mak
1435 echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak
1436 echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak
1437 echo "#define CONFIG_VNC_SASL 1" >> $config_h
1439 if test "$fnmatch" = "yes" ; then
1440 echo "#define HAVE_FNMATCH_H 1" >> $config_h
1442 qemu_version
=`head $source_path/VERSION`
1443 echo "VERSION=$qemu_version" >>$config_mak
1444 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1446 echo "SRC_PATH=$source_path" >> $config_mak
1447 if [ "$source_path_used" = "yes" ]; then
1448 echo "VPATH=$source_path" >> $config_mak
1450 echo "TARGET_DIRS=$target_list" >> $config_mak
1451 if [ "$build_docs" = "yes" ] ; then
1452 echo "BUILD_DOCS=yes" >> $config_mak
1454 if test "$static" = "yes"; then
1459 if test "$sdl1" = "yes" ; then
1460 echo "#define CONFIG_SDL 1" >> $config_h
1461 echo "CONFIG_SDL=yes" >> $config_mak
1462 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1463 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1464 elif test "$sdl_x11" = "yes" ; then
1465 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
1467 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1469 if [ "${aa}" = "yes" ] ; then
1470 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1472 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1475 if test "$cocoa" = "yes" ; then
1476 echo "#define CONFIG_COCOA 1" >> $config_h
1477 echo "CONFIG_COCOA=yes" >> $config_mak
1479 if test "$curses" = "yes" ; then
1480 echo "#define CONFIG_CURSES 1" >> $config_h
1481 echo "CONFIG_CURSES=yes" >> $config_mak
1482 echo "CURSES_LIBS=-lcurses" >> $config_mak
1484 if test "$brlapi" = "yes" ; then
1485 echo "CONFIG_BRLAPI=yes" >> $config_mak
1486 echo "#define CONFIG_BRLAPI 1" >> $config_h
1487 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1489 if test "$bluez" = "yes" ; then
1490 echo "CONFIG_BLUEZ=yes" >> $config_mak
1491 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1492 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1493 echo "#define CONFIG_BLUEZ 1" >> $config_h
1495 if test "$aio" = "yes" ; then
1496 echo "#define CONFIG_AIO 1" >> $config_h
1497 echo "CONFIG_AIO=yes" >> $config_mak
1499 if test "$blobs" = "yes" ; then
1500 echo "INSTALL_BLOBS=yes" >> $config_mak
1502 if test "$iovec" = "yes" ; then
1503 echo "#define HAVE_IOVEC 1" >> $config_h
1505 if test "$fdt" = "yes" ; then
1506 echo "#define HAVE_FDT 1" >> $config_h
1507 echo "FDT_LIBS=-lfdt" >> $config_mak
1510 # XXX: suppress that
1511 if [ "$bsd" = "yes" ] ; then
1512 echo "#define O_LARGEFILE 0" >> $config_h
1513 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1514 echo "#define _BSD 1" >> $config_h
1517 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1522 echo "HOST_USB=linux" >> $config_mak
1525 echo "HOST_USB=bsd" >> $config_mak
1528 echo "HOST_USB=stub" >> $config_mak
1533 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1534 tools
="qemu-img\$(EXESUF) $tools"
1535 if [ "$linux" = "yes" ] ; then
1536 tools
="qemu-nbd\$(EXESUF) $tools"
1539 echo "TOOLS=$tools" >> $config_mak
1541 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~
$config_h
1543 for target
in $target_list; do
1544 target_dir
="$target"
1545 config_mak
=$target_dir/config.mak
1546 config_h
=$target_dir/config.h
1547 target_cpu
=`echo $target | cut -d '-' -f 1`
1548 target_bigendian
="no"
1549 [ "$target_cpu" = "armeb" ] && target_bigendian
=yes
1550 [ "$target_cpu" = "m68k" ] && target_bigendian
=yes
1551 [ "$target_cpu" = "mips" ] && target_bigendian
=yes
1552 [ "$target_cpu" = "mipsn32" ] && target_bigendian
=yes
1553 [ "$target_cpu" = "mips64" ] && target_bigendian
=yes
1554 [ "$target_cpu" = "ppc" ] && target_bigendian
=yes
1555 [ "$target_cpu" = "ppcemb" ] && target_bigendian
=yes
1556 [ "$target_cpu" = "ppc64" ] && target_bigendian
=yes
1557 [ "$target_cpu" = "ppc64abi32" ] && target_bigendian
=yes
1558 [ "$target_cpu" = "sh4eb" ] && target_bigendian
=yes
1559 [ "$target_cpu" = "sparc" ] && target_bigendian
=yes
1560 [ "$target_cpu" = "sparc64" ] && target_bigendian
=yes
1561 [ "$target_cpu" = "sparc32plus" ] && target_bigendian
=yes
1563 target_user_only
="no"
1564 target_linux_user
="no"
1565 target_darwin_user
="no"
1566 target_bsd_user
="no"
1568 ${target_cpu}-softmmu)
1569 target_softmmu
="yes"
1571 ${target_cpu}-linux-user)
1572 target_user_only
="yes"
1573 target_linux_user
="yes"
1575 ${target_cpu}-darwin-user)
1576 target_user_only
="yes"
1577 target_darwin_user
="yes"
1579 ${target_cpu}-bsd-user)
1580 target_user_only
="yes"
1581 target_bsd_user
="yes"
1584 echo "ERROR: Target '$target' not recognised"
1589 if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1590 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
1591 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
1592 echo "To build QEMU without graphical output configure with --disable-gfx-check"
1593 echo "Note that this will disable all output from the virtual graphics card"
1594 echo "except through VNC or curses."
1598 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1600 test -f $config_h && mv $config_h ${config_h}~
1602 mkdir
-p $target_dir
1603 mkdir
-p $target_dir/fpu
1604 mkdir
-p $target_dir/tcg
1605 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1606 mkdir
-p $target_dir/nwfpe
1610 # don't use ln -sf as not all "ln -sf" over write the file/link
1612 rm -f $target_dir/Makefile
1613 ln -s $source_path/Makefile.target
$target_dir/Makefile
1616 echo "# Automatically generated by configure - do not modify" > $config_mak
1617 echo "/* Automatically generated by configure - do not modify */" > $config_h
1620 echo "include ../config-host.mak" >> $config_mak
1621 echo "#include \"../config-host.h\"" >> $config_h
1626 interp_prefix1
=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1627 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1630 # Make sure the target and host cpus are compatible
1631 if test "$kvm" = "yes" -a ! \
( "$target_cpu" = "$cpu" -o \
1632 \
( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \
) -o \
1633 \
( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \
) -o \
1634 \
( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \
) \
) ; then
1637 # Disable KVM for linux-user
1638 if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1642 case "$target_cpu" in
1644 echo "TARGET_ARCH=i386" >> $config_mak
1645 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1646 echo "#define TARGET_I386 1" >> $config_h
1647 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1649 echo "#define USE_KQEMU 1" >> $config_h
1651 if test "$kvm" = "yes" ; then
1652 echo "CONFIG_KVM=yes" >> $config_mak
1653 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1654 echo "#define CONFIG_KVM 1" >> $config_h
1658 echo "TARGET_ARCH=x86_64" >> $config_mak
1659 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1660 echo "#define TARGET_I386 1" >> $config_h
1661 echo "#define TARGET_X86_64 1" >> $config_h
1662 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1664 echo "#define USE_KQEMU 1" >> $config_h
1666 if test "$kvm" = "yes" ; then
1667 echo "CONFIG_KVM=yes" >> $config_mak
1668 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1669 echo "#define CONFIG_KVM 1" >> $config_h
1673 echo "TARGET_ARCH=alpha" >> $config_mak
1674 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1675 echo "#define TARGET_ALPHA 1" >> $config_h
1678 echo "TARGET_ARCH=arm" >> $config_mak
1679 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1680 echo "#define TARGET_ARM 1" >> $config_h
1683 gdb_xml_files
="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1686 echo "TARGET_ARCH=cris" >> $config_mak
1687 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1688 echo "#define TARGET_CRIS 1" >> $config_h
1692 echo "TARGET_ARCH=m68k" >> $config_mak
1693 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1694 echo "#define TARGET_M68K 1" >> $config_h
1696 gdb_xml_files
="cf-core.xml cf-fp.xml"
1699 echo "TARGET_ARCH=mips" >> $config_mak
1700 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1701 echo "#define TARGET_MIPS 1" >> $config_h
1702 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1705 echo "TARGET_ARCH=mipsn32" >> $config_mak
1706 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1707 echo "#define TARGET_MIPS 1" >> $config_h
1708 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1711 echo "TARGET_ARCH=mips64" >> $config_mak
1712 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1713 echo "#define TARGET_MIPS 1" >> $config_h
1714 echo "#define TARGET_MIPS64 1" >> $config_h
1715 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1718 echo "TARGET_ARCH=ppc" >> $config_mak
1719 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1720 echo "#define TARGET_PPC 1" >> $config_h
1721 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1724 echo "TARGET_ARCH=ppcemb" >> $config_mak
1725 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1726 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1727 echo "#define TARGET_PPC 1" >> $config_h
1728 echo "#define TARGET_PPCEMB 1" >> $config_h
1729 if test "$kvm" = "yes" ; then
1730 echo "CONFIG_KVM=yes" >> $config_mak
1731 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1732 echo "#define CONFIG_KVM 1" >> $config_h
1734 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1737 echo "TARGET_ARCH=ppc64" >> $config_mak
1738 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1739 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1740 echo "#define TARGET_PPC 1" >> $config_h
1741 echo "#define TARGET_PPC64 1" >> $config_h
1742 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1745 echo "TARGET_ARCH=ppc64" >> $config_mak
1746 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1747 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1748 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1749 echo "#define TARGET_PPC 1" >> $config_h
1750 echo "#define TARGET_PPC64 1" >> $config_h
1751 echo "#define TARGET_ABI32 1" >> $config_h
1752 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1755 echo "TARGET_ARCH=sh4" >> $config_mak
1756 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1757 echo "#define TARGET_SH4 1" >> $config_h
1762 echo "TARGET_ARCH=sparc" >> $config_mak
1763 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1764 echo "#define TARGET_SPARC 1" >> $config_h
1767 echo "TARGET_ARCH=sparc64" >> $config_mak
1768 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1769 echo "#define TARGET_SPARC 1" >> $config_h
1770 echo "#define TARGET_SPARC64 1" >> $config_h
1774 echo "TARGET_ARCH=sparc64" >> $config_mak
1775 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1776 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1777 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1778 echo "#define TARGET_SPARC 1" >> $config_h
1779 echo "#define TARGET_SPARC64 1" >> $config_h
1780 echo "#define TARGET_ABI32 1" >> $config_h
1783 echo "Unsupported target CPU"
1787 if test "$target_bigendian" = "yes" ; then
1788 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1789 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1791 if test "$target_softmmu" = "yes" ; then
1792 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1793 echo "#define CONFIG_SOFTMMU 1" >> $config_h
1795 if test "$target_user_only" = "yes" ; then
1796 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1797 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1799 if test "$target_linux_user" = "yes" ; then
1800 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1801 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1803 if test "$target_darwin_user" = "yes" ; then
1804 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1805 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1808 if test ! -z "$gdb_xml_files" ; then
1809 for x
in $gdb_xml_files; do
1810 list
="$list $source_path/gdb-xml/$x"
1813 echo "TARGET_XML_FILES=$list" >> $config_mak
1815 if test "$target_cpu" = "arm" \
1816 -o "$target_cpu" = "armeb" \
1817 -o "$target_cpu" = "m68k" \
1818 -o "$target_cpu" = "mips" \
1819 -o "$target_cpu" = "mipsel" \
1820 -o "$target_cpu" = "mipsn32" \
1821 -o "$target_cpu" = "mipsn32el" \
1822 -o "$target_cpu" = "mips64" \
1823 -o "$target_cpu" = "mips64el" \
1824 -o "$target_cpu" = "ppc" \
1825 -o "$target_cpu" = "ppc64" \
1826 -o "$target_cpu" = "ppc64abi32" \
1827 -o "$target_cpu" = "ppcemb" \
1828 -o "$target_cpu" = "sparc" \
1829 -o "$target_cpu" = "sparc64" \
1830 -o "$target_cpu" = "sparc32plus"; then
1831 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1832 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1834 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1835 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1836 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1838 if test "$target_user_only" = "yes" \
1839 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1840 echo "#define USE_NPTL 1" >> $config_h
1842 # 32 bit ELF loader in addition to native 64 bit loader?
1843 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1844 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1845 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1847 if test "$target_bsd_user" = "yes" ; then
1848 echo "CONFIG_BSD_USER=yes" >> $config_mak
1849 echo "#define CONFIG_BSD_USER 1" >> $config_h
1852 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~
$config_h
1854 done # for target in $targets
1856 # build tree in object directory if source path is different from current one
1857 if test "$source_path_used" = "yes" ; then
1858 DIRS
="tests tests/cris slirp audio"
1859 FILES
="Makefile tests/Makefile"
1860 FILES
="$FILES tests/cris/Makefile tests/cris/.gdbinit"
1861 FILES
="$FILES tests/test-mmap.c"
1862 for dir
in $DIRS ; do
1865 # remove the link and recreate it, as not all "ln -sf" overwrite the link
1866 for f
in $FILES ; do
1868 ln -s $source_path/$f $f