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
)
193 if check_define __linux__
; then
195 elif check_define _WIN32
; then
203 OS_CFLAGS
="-mno-cygwin"
204 if [ "$cpu" = "i386" ] ; then
207 audio_possible_drivers
="sdl"
211 if [ "$cpu" = "i386" ] ; then
214 audio_possible_drivers
="dsound sdl fmod"
218 audio_possible_drivers
="oss sdl esd pa"
219 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
226 audio_possible_drivers
="oss sdl esd pa"
227 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
234 audio_possible_drivers
="oss sdl esd"
241 audio_possible_drivers
="oss sdl esd"
247 # 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
248 if [ "$cpu" = "i386" ] ; then
249 is_x86_64
=`sysctl -n hw.optional.x86_64`
250 [ "$is_x86_64" = "1" ] && cpu
=x86_64
252 if [ "$cpu" = "x86_64" ] ; then
253 OS_CFLAGS
="-arch x86_64"
254 LDFLAGS
="-arch x86_64"
256 OS_CFLAGS
="-mdynamic-no-pic"
260 audio_drv_list
="coreaudio"
261 audio_possible_drivers
="coreaudio sdl fmod"
262 OS_LDFLAGS
="-framework CoreFoundation -framework IOKit"
268 needs_libsunmath
="no"
269 solarisrev
=`uname -r | cut -f2 -d.`
270 # have to select again, because `uname -m` returns i86pc
271 # even on an x86_64 box.
272 solariscpu
=`isainfo -k`
273 if test "${solariscpu}" = "amd64" ; then
276 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
277 if test "$solarisrev" -le 9 ; then
278 if test -f /opt
/SUNWspro
/prod
/lib
/libsunmath.so
.1; then
279 needs_libsunmath
="yes"
281 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
282 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
283 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
284 echo "Studio 11 can be downloaded from www.sun.com."
288 if test "$solarisrev" -ge 9 ; then
292 if test -f /usr
/include
/sys
/soundcard.h
; then
295 audio_possible_drivers
="oss sdl"
303 audio_possible_drivers
="oss alsa sdl esd pa"
307 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
309 audio_possible_drivers
="$audio_possible_drivers fmod"
314 if [ "$bsd" = "yes" ] ; then
315 if [ "$darwin" != "yes" ] ; then
323 source_path
=`dirname "$0"`
324 source_path_used
="no"
326 if [ -z "$source_path" ]; then
329 source_path
=`cd "$source_path"; pwd`
331 [ -f "$workdir/vl.c" ] || source_path_used
="yes"
334 # generate compile errors on warnings for development builds
335 #if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
340 optarg
=`expr "x$opt" : 'x[^=]*=\(.*\)'`
342 --help|
-h) show_help
=yes
344 --prefix=*) prefix
="$optarg"
346 --interp-prefix=*) interp_prefix
="$optarg"
348 --source-path=*) source_path
="$optarg"
349 source_path_used
="yes"
355 --host-cc=*) host_cc
="$optarg"
357 --make=*) make="$optarg"
359 --install=*) install="$optarg"
361 --extra-cflags=*) CFLAGS
="$optarg"
363 --extra-ldflags=*) LDFLAGS
="$optarg"
365 --cpu=*) cpu
="$optarg"
367 --target-list=*) target_list
="$optarg"
369 --enable-gprof) gprof
="yes"
371 --static) static
="yes"
373 --disable-sdl) sdl
="no"
375 --fmod-lib=*) fmod_lib
="$optarg"
377 --fmod-inc=*) fmod_inc
="$optarg"
379 --oss-lib=*) oss_lib
="$optarg"
381 --audio-card-list=*) audio_card_list
=`echo "$optarg" | sed -e 's/,/ /g'`
383 --audio-drv-list=*) audio_drv_list
="$optarg"
385 --enable-sparse) sparse
="yes"
387 --disable-sparse) sparse
="no"
389 --disable-vnc-tls) vnc_tls
="no"
391 --disable-slirp) slirp
="no"
393 --disable-vde) vde
="no"
395 --disable-kqemu) kqemu
="no"
397 --disable-brlapi) brlapi
="no"
399 --disable-bluez) bluez
="no"
401 --disable-kvm) kvm
="no"
403 --enable-profiler) profiler
="yes"
408 audio_drv_list
="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
410 --disable-gfx-check) check_gfx
="no"
412 --disable-system) softmmu
="no"
414 --enable-system) softmmu
="yes"
416 --disable-linux-user) linux_user
="no"
418 --enable-linux-user) linux_user
="yes"
420 --disable-darwin-user) darwin_user
="no"
422 --enable-darwin-user) darwin_user
="yes"
424 --disable-bsd-user) bsd_user
="no"
426 --enable-bsd-user) bsd_user
="yes"
428 --enable-uname-release=*) uname_release
="$optarg"
433 v7|v8
) SP_CFLAGS
="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
434 target_cpu
="sparc"; cpu
="sparc" ;;
435 v8plus|v8plusa
) SP_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
436 target_cpu
="sparc"; cpu
="sparc" ;;
437 v9
) SP_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m64"
438 target_cpu
="sparc64"; cpu
="sparc64" ;;
439 *) echo "undefined SPARC architecture. Exiting";exit 1;;
442 --enable-werror) werror
="yes"
444 --disable-werror) werror
="no"
446 --disable-curses) curses
="no"
448 --disable-nptl) nptl
="no"
450 --enable-mixemu) mixemu
="yes"
452 --disable-aio) aio
="no"
454 --disable-blobs) blobs
="no"
456 --kerneldir=*) kerneldir
="$optarg"
458 *) echo "ERROR: unknown option $opt"; show_help
="yes"
463 # default flags for all hosts
464 CFLAGS
="$CFLAGS -O2 -g -fno-strict-aliasing"
465 CFLAGS
="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
466 LDFLAGS
="$LDFLAGS -g"
467 if test "$werror" = "yes" ; then
468 CFLAGS
="$CFLAGS -Werror"
471 if test "$solaris" = "no" ; then
472 if ld
--version 2>/dev
/null |
grep "GNU ld" >/dev
/null
2>/dev
/null
; then
473 LDFLAGS
="$LDFLAGS -Wl,--warn-common"
478 # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
479 # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
482 sparc
) if test -z "$sparc_cpu" ; then
483 ARCH_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
486 ARCH_CFLAGS
="${SP_CFLAGS}"
487 ARCH_LDFLAGS
="${SP_LDFLAGS}"
490 sparc64
) if test -z "$sparc_cpu" ; then
491 ARCH_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_v9__"
494 ARCH_CFLAGS
="${SP_CFLAGS}"
495 ARCH_LDFLAGS
="${SP_LDFLAGS}"
499 ARCH_CFLAGS
="-march=z900"
511 if test x
"$show_help" = x
"yes" ; then
514 Usage: configure [options]
515 Options: [defaults in brackets after descriptions]
518 echo "Standard options:"
519 echo " --help print this message"
520 echo " --prefix=PREFIX install in PREFIX [$prefix]"
521 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
522 echo " use %M for cpu name [$interp_prefix]"
523 echo " --target-list=LIST set target list [$target_list]"
525 echo "kqemu kernel acceleration support:"
526 echo " --disable-kqemu disable kqemu support"
528 echo "Advanced options (experts only):"
529 echo " --source-path=PATH path of source code [$source_path]"
530 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
531 echo " --cc=CC use C compiler CC [$cc]"
532 echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
533 echo " --make=MAKE use specified make [$make]"
534 echo " --install=INSTALL use specified install [$install]"
535 echo " --static enable static build [$static]"
536 echo " --enable-sparse enable sparse checker"
537 echo " --disable-sparse disable sparse checker (default)"
538 echo " --disable-werror disable compilation abort on warning"
539 echo " --disable-sdl disable SDL"
540 echo " --enable-cocoa enable COCOA (Mac OS X only)"
541 echo " --audio-drv-list=LIST set audio drivers list:"
542 echo " Available drivers: $audio_possible_drivers"
543 echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
544 echo " Available cards: $audio_possible_cards"
545 echo " --enable-mixemu enable mixer emulation"
546 echo " --disable-brlapi disable BrlAPI"
547 echo " --disable-vnc-tls disable TLS encryption for VNC server"
548 echo " --disable-curses disable curses output"
549 echo " --disable-bluez disable bluez stack connectivity"
550 echo " --disable-kvm disable KVM acceleration support"
551 echo " --disable-nptl disable usermode NPTL support"
552 echo " --enable-system enable all system emulation targets"
553 echo " --disable-system disable all system emulation targets"
554 echo " --enable-linux-user enable all linux usermode emulation targets"
555 echo " --disable-linux-user disable all linux usermode emulation targets"
556 echo " --enable-darwin-user enable all darwin usermode emulation targets"
557 echo " --disable-darwin-user disable all darwin usermode emulation targets"
558 echo " --enable-bsd-user enable all BSD usermode emulation targets"
559 echo " --disable-bsd-user disable all BSD usermode emulation targets"
560 echo " --fmod-lib path to FMOD library"
561 echo " --fmod-inc path to FMOD includes"
562 echo " --oss-lib path to OSS library"
563 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
564 echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
565 echo " --disable-vde disable support for vde network"
566 echo " --disable-aio disable AIO support"
567 echo " --disable-blobs disable installing provided firmware blobs"
568 echo " --kerneldir=PATH look for kernel includes in PATH"
570 echo "NOTE: The object files are built at the place where configure is launched"
574 if test "$mingw32" = "yes" ; then
582 if test ! -x "$(which cgcc 2>/dev/null)"; then
587 # Solaris specific configure tool chain decisions
589 if test "$solaris" = "yes" ; then
590 solinst
=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
591 if test -z "$solinst" ; then
592 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
593 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
594 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
597 if test "$solinst" = "/usr/sbin/install" ; then
598 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
599 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
600 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
603 sol_ar
=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
604 if test -z "$sol_ar" ; then
605 echo "Error: No path includes ar"
606 if test -f /usr
/ccs
/bin
/ar ; then
607 echo "Add /usr/ccs/bin to your path and rerun configure"
614 if test -z "$target_list" ; then
615 # these targets are portable
616 if [ "$softmmu" = "yes" ] ; then
635 # the following are Linux specific
636 if [ "$linux_user" = "yes" ] ; then
637 target_list
="${target_list}\
649 ppc64abi32-linux-user \
654 sparc32plus-linux-user \
657 # the following are Darwin specific
658 if [ "$darwin_user" = "yes" ] ; then
659 target_list
="$target_list i386-darwin-user ppc-darwin-user "
661 # the following are BSD specific
662 if [ "$bsd_user" = "yes" ] ; then
663 target_list
="${target_list}\
668 target_list
=`echo "$target_list" | sed -e 's/,/ /g'`
670 if test -z "$target_list" ; then
671 echo "No targets enabled"
675 if test -z "$cross_prefix" ; then
678 # big/little endian test
680 #include <inttypes.h>
681 int main(int argc, char ** argv){
682 volatile uint32_t i=0x01234567;
683 return (*((uint8_t*)(&i))) == 0x67;
687 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
688 $TMPE && bigendian
="yes"
690 echo big
/little
test failed
695 # if cross compiling, cannot launch a program, so make a static guess
696 if test "$cpu" = "armv4b" \
700 -o "$cpu" = "mips64" \
702 -o "$cpu" = "ppc64" \
704 -o "$cpu" = "sparc" \
705 -o "$cpu" = "sparc64"; then
711 # host long bits test
713 if test "$cpu" = "x86_64" \
714 -o "$cpu" = "alpha" \
716 -o "$cpu" = "sparc64" \
717 -o "$cpu" = "ppc64"; then
721 # check gcc options support
727 # Check host NPTL support
730 #include <linux/futex.h>
733 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
739 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev
/null
2> /dev
/null
; then
745 ##########################################
750 int main(void) { zlibVersion(); return 0; }
752 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev
/null
2> /dev
/null
; then
756 echo "Error: zlib check failed"
757 echo "Make sure to have the zlib libs and headers installed."
762 ##########################################
767 if test -z "$sdl" ; then
768 sdl_config
="sdl-config"
774 #undef main /* We don't want SDL to override our main() */
775 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
777 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
778 _sdlversion
=`$sdl_config --version | sed 's/[^0-9]//g'`
779 if test "$_sdlversion" -lt 121 ; then
782 if test "$cocoa" = "no" ; then
787 # static link with sdl ?
788 if test "$sdl" = "yes" ; then
790 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa
="yes"
791 sdl_static_libs
=`$sdl_config --static-libs 2>/dev/null`
792 if [ "$aa" = "yes" ] ; then
793 sdl_static_libs
="$sdl_static_libs `aalib-config --static-libs`"
796 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev
/null
2> /dev
/null
; then
800 fi # sdl compile test
802 # Make sure to disable cocoa if sdl was set
803 if test "$sdl" = "yes" ; then
805 audio_drv_list
="`echo $audio_drv_list | sed s,coreaudio,,g`"
809 if test "$sdl" = "yes" ; then
812 #if defined(SDL_VIDEO_DRIVER_X11)
813 #include <X11/XKBlib.h>
815 #error No x11 support
817 int main(void) { return 0; }
819 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
824 ##########################################
826 if test "$vnc_tls" = "yes" ; then
828 #include <gnutls/gnutls.h>
829 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
831 vnc_tls_cflags
=`pkg-config --cflags gnutls 2> /dev/null`
832 vnc_tls_libs
=`pkg-config --libs gnutls 2> /dev/null`
833 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
834 $vnc_tls_libs > /dev
/null
2> /dev
/null
; then
841 ##########################################
842 # vde libraries probe
843 if test "$vde" = "yes" ; then
845 #include <libvdeplug.h>
848 struct vde_open_args a = {0, 0, 0};
849 vde_open("", "", &a);
853 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev
/null
2> /dev
/null
; then
860 ##########################################
861 # Sound support libraries probe
872 int main(void) { $exp }
874 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev
/null
2> /dev
/null
; then
878 echo "Error: $drv check failed"
879 echo "Make sure to have the $drv libs and headers installed."
885 audio_drv_list
=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
886 for drv
in $audio_drv_list; do
889 audio_drv_probe
$drv alsa
/asoundlib.h
-lasound \
890 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
894 if test -z $fmod_lib ||
test -z $fmod_inc; then
896 echo "Error: You must specify path to FMOD library and headers"
897 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
901 audio_drv_probe
$drv fmod.h
$fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
905 audio_drv_probe
$drv esd.h
-lesd 'return esd_play_stream(0, 0, "", 0);'
909 audio_drv_probe
$drv pulse
/simple.h
-lpulse-simple \
910 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
913 oss|sdl|core|wav|dsound
)
914 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
918 echo "$audio_possible_drivers" |
grep -q "\<$drv\>" ||
{
920 echo "Error: Unknown driver '$drv' selected"
921 echo "Possible drivers are: $audio_possible_drivers"
929 ##########################################
932 if test -z "$brlapi" ; then
936 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
938 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev
/null
2> /dev
/null
; then
940 fi # brlapi compile test
943 ##########################################
946 if test "$curses" = "yes" ; then
950 int main(void) { return curses_version(); }
952 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev
/null
2> /dev
/null
; then
957 ##########################################
958 # bluez support probe
959 if test "$bluez" = "yes" ; then
960 `pkg-config bluez` || bluez
="no"
962 if test "$bluez" = "yes" ; then
964 #include <bluetooth/bluetooth.h>
965 int main(void) { return bt_error(0); }
967 bluez_cflags
=`pkg-config --cflags bluez`
968 bluez_libs
=`pkg-config --libs bluez`
969 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
970 $bluez_libs > /dev
/null
2> /dev
/null
; then
977 ##########################################
979 if test "$kvm" = "yes" ; then
981 #include <linux/kvm.h>
982 #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
983 #error Invalid KVM version
985 #if !defined(KVM_CAP_USER_MEMORY)
986 #error Missing KVM capability KVM_CAP_USER_MEMORY
988 #if !defined(KVM_CAP_SET_TSS_ADDR)
989 #error Missing KVM capability KVM_CAP_SET_TSS_ADDR
991 #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
992 #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
994 int main(void) { return 0; }
996 if test "$kerneldir" != "" ; then
997 kvm_cflags
=-I"$kerneldir"/include
998 if test \
( "$cpu" = "i386" -o "$cpu" = "x86_64" \
) \
999 -a -d "$kerneldir/arch/x86/include" ; then
1000 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/x86/include"
1001 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1002 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/powerpc/include"
1003 elif test -d "$kerneldir/arch/$cpu/include" ; then
1004 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1009 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
1010 > /dev
/null
2>/dev
/null
; then
1014 if [ -x "`which awk 2>/dev/null`" ] && \
1015 [ -x "`which grep 2>/dev/null`" ]; then
1016 kvmerr
=`$cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1018 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1019 if test "$kvmerr" != "" ; then
1020 kvm
="no - (${kvmerr})"
1026 ##########################################
1030 if test "$aio" = "yes" ; then
1033 #include <pthread.h>
1034 int main(void) { pthread_mutex_t lock; return 0; }
1036 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev
/null
; then
1042 ##########################################
1045 #include <sys/types.h>
1046 #include <sys/uio.h>
1048 int main(void) { struct iovec iov; return 0; }
1051 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1055 ##########################################
1057 if test "$fdt" = "yes" ; then
1060 int main(void) { return 0; }
1062 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev
/null
; then
1067 # Check if tools are available to build documentation.
1068 if [ -x "`which texi2html 2>/dev/null`" ] && \
1069 [ -x "`which pod2man 2>/dev/null`" ]; then
1073 ##########################################
1078 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1082 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1084 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev
/null
2> /dev
/null
; then
1088 if test "$rt" = "yes" ; then
1089 # Hack, we should have a general purpose LIBS for this sort of thing
1090 AIOLIBS
="$AIOLIBS -lrt"
1093 if test "$mingw32" = "yes" ; then
1094 if test -z "$prefix" ; then
1095 prefix
="c:\\\\Program Files\\\\Qemu"
1102 if test -z "$prefix" ; then
1105 mansuffix
="/share/man"
1106 datasuffix
="/share/qemu"
1107 docsuffix
="/share/doc/qemu"
1111 echo "Install prefix $prefix"
1112 echo "BIOS directory $prefix$datasuffix"
1113 echo "binary directory $prefix$binsuffix"
1114 if test "$mingw32" = "no" ; then
1115 echo "Manual directory $prefix$mansuffix"
1116 echo "ELF interp prefix $interp_prefix"
1118 echo "Source path $source_path"
1119 echo "C compiler $cc"
1120 echo "Host C compiler $host_cc"
1121 echo "ARCH_CFLAGS $ARCH_CFLAGS"
1123 echo "install $install"
1124 echo "host CPU $cpu"
1125 echo "host big endian $bigendian"
1126 echo "target list $target_list"
1127 echo "gprof enabled $gprof"
1128 echo "sparse enabled $sparse"
1129 echo "profiler $profiler"
1130 echo "static build $static"
1131 echo "-Werror enabled $werror"
1132 if test "$darwin" = "yes" ; then
1133 echo "Cocoa support $cocoa"
1135 echo "SDL support $sdl"
1136 if test "$sdl" != "no" ; then
1137 echo "SDL static link $sdl_static"
1139 echo "curses support $curses"
1140 echo "mingw32 support $mingw32"
1141 echo "Audio drivers $audio_drv_list"
1142 echo "Extra audio cards $audio_card_list"
1143 echo "Mixer emulation $mixemu"
1144 echo "VNC TLS support $vnc_tls"
1145 if test "$vnc_tls" = "yes" ; then
1146 echo " TLS CFLAGS $vnc_tls_cflags"
1147 echo " TLS LIBS $vnc_tls_libs"
1149 if test -n "$sparc_cpu"; then
1150 echo "Target Sparc Arch $sparc_cpu"
1152 echo "kqemu support $kqemu"
1153 echo "brlapi support $brlapi"
1154 echo "Documentation $build_docs"
1155 [ ! -z "$uname_release" ] && \
1156 echo "uname -r $uname_release"
1157 echo "NPTL support $nptl"
1158 echo "vde support $vde"
1159 echo "AIO support $aio"
1160 echo "Install blobs $blobs"
1161 echo "KVM support $kvm"
1162 echo "fdt support $fdt"
1164 if test $sdl_too_old = "yes"; then
1165 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1167 if [ -s $TMPSDLLOG ]; then
1168 echo "The error log from compiling the libSDL test is: "
1171 #if test "$sdl_static" = "no"; then
1172 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1174 config_mak
="config-host.mak"
1175 config_h
="config-host.h"
1177 #echo "Creating $config_mak and $config_h"
1179 test -f $config_h && mv $config_h ${config_h}~
1181 echo "# Automatically generated by configure - do not modify" > $config_mak
1182 printf "# Configured with:" >> $config_mak
1183 printf " '%s'" "$0" "$@" >> $config_mak
1185 echo "/* Automatically generated by configure - do not modify */" > $config_h
1187 echo "prefix=$prefix" >> $config_mak
1188 echo "bindir=\${prefix}$binsuffix" >> $config_mak
1189 echo "mandir=\${prefix}$mansuffix" >> $config_mak
1190 echo "datadir=\${prefix}$datasuffix" >> $config_mak
1191 echo "docdir=\${prefix}$docsuffix" >> $config_mak
1192 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1193 echo "MAKE=$make" >> $config_mak
1194 echo "INSTALL=$install" >> $config_mak
1195 echo "CC=$cc" >> $config_mak
1196 echo "HOST_CC=$host_cc" >> $config_mak
1197 echo "AR=$ar" >> $config_mak
1198 echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
1199 # XXX: only use CFLAGS and LDFLAGS ?
1200 # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1201 # compilation of dyngen tool (useful for win32 build on Linux host)
1202 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1203 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1204 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1205 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1206 echo "CFLAGS=$CFLAGS" >> $config_mak
1207 echo "LDFLAGS=$LDFLAGS" >> $config_mak
1208 echo "EXESUF=$EXESUF" >> $config_mak
1209 echo "AIOLIBS=$AIOLIBS" >> $config_mak
1212 echo "ARCH=i386" >> $config_mak
1213 echo "#define HOST_I386 1" >> $config_h
1216 echo "ARCH=x86_64" >> $config_mak
1217 echo "#define HOST_X86_64 1" >> $config_h
1220 echo "ARCH=alpha" >> $config_mak
1221 echo "#define HOST_ALPHA 1" >> $config_h
1224 echo "ARCH=arm" >> $config_mak
1225 echo "#define HOST_ARM 1" >> $config_h
1228 echo "ARCH=arm" >> $config_mak
1229 echo "#define HOST_ARM 1" >> $config_h
1232 echo "ARCH=cris" >> $config_mak
1233 echo "#define HOST_CRIS 1" >> $config_h
1236 echo "ARCH=hppa" >> $config_mak
1237 echo "#define HOST_HPPA 1" >> $config_h
1240 echo "ARCH=ia64" >> $config_mak
1241 echo "#define HOST_IA64 1" >> $config_h
1244 echo "ARCH=m68k" >> $config_mak
1245 echo "#define HOST_M68K 1" >> $config_h
1248 echo "ARCH=mips" >> $config_mak
1249 echo "#define HOST_MIPS 1" >> $config_h
1252 echo "ARCH=mips64" >> $config_mak
1253 echo "#define HOST_MIPS64 1" >> $config_h
1256 echo "ARCH=ppc" >> $config_mak
1257 echo "#define HOST_PPC 1" >> $config_h
1260 echo "ARCH=ppc64" >> $config_mak
1261 echo "#define HOST_PPC64 1" >> $config_h
1264 echo "ARCH=s390" >> $config_mak
1265 echo "#define HOST_S390 1" >> $config_h
1268 echo "ARCH=sparc" >> $config_mak
1269 echo "#define HOST_SPARC 1" >> $config_h
1272 echo "ARCH=sparc64" >> $config_mak
1273 echo "#define HOST_SPARC64 1" >> $config_h
1276 echo "Unsupported CPU = $cpu"
1280 if test "$sparse" = "yes" ; then
1281 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1282 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1283 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1285 if test "$bigendian" = "yes" ; then
1286 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1287 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1289 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1290 if test "$mingw32" = "yes" ; then
1291 echo "CONFIG_WIN32=yes" >> $config_mak
1292 echo "#define CONFIG_WIN32 1" >> $config_h
1295 #include <byteswap.h>
1296 int main(void) { return bswap_32(0); }
1298 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1299 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1302 #include <sys/endian.h>
1303 #include <sys/types.h>
1304 #include <machine/bswap.h>
1305 int main(void) { return bswap32(0); }
1307 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1308 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1312 if [ "$openbsd" = "yes" ] ; then
1313 echo "#define ENOTSUP 4096" >> $config_h
1316 if test "$darwin" = "yes" ; then
1317 echo "CONFIG_DARWIN=yes" >> $config_mak
1318 echo "#define CONFIG_DARWIN 1" >> $config_h
1321 if test "$aix" = "yes" ; then
1322 echo "CONFIG_AIX=yes" >> $config_mak
1323 echo "#define CONFIG_AIX 1" >> $config_h
1326 if test "$solaris" = "yes" ; then
1327 echo "CONFIG_SOLARIS=yes" >> $config_mak
1328 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1329 if test "$needs_libsunmath" = "yes" ; then
1330 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1331 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1334 if test -n "$sparc_cpu"; then
1335 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1336 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1338 if test "$gdbstub" = "yes" ; then
1339 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1340 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1342 if test "$gprof" = "yes" ; then
1343 echo "TARGET_GPROF=yes" >> $config_mak
1344 echo "#define HAVE_GPROF 1" >> $config_h
1346 if test "$static" = "yes" ; then
1347 echo "CONFIG_STATIC=yes" >> $config_mak
1348 echo "#define CONFIG_STATIC 1" >> $config_h
1350 if test $profiler = "yes" ; then
1351 echo "#define CONFIG_PROFILER 1" >> $config_h
1353 if test "$slirp" = "yes" ; then
1354 echo "CONFIG_SLIRP=yes" >> $config_mak
1355 echo "#define CONFIG_SLIRP 1" >> $config_h
1357 if test "$vde" = "yes" ; then
1358 echo "CONFIG_VDE=yes" >> $config_mak
1359 echo "#define CONFIG_VDE 1" >> $config_h
1360 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1362 for card
in $audio_card_list; do
1363 def
=CONFIG_
`echo $card | tr '[:lower:]' '[:upper:]'`
1364 echo "$def=yes" >> $config_mak
1365 echo "#define $def 1" >> $config_h
1367 echo "#define AUDIO_DRIVERS \\" >> $config_h
1368 for drv
in $audio_drv_list; do
1369 echo " &${drv}_audio_driver, \\" >>$config_h
1370 def
=CONFIG_
`echo $drv | tr '[:lower:]' '[:upper:]'`
1371 echo "$def=yes" >> $config_mak
1372 if test "$drv" = "fmod"; then
1373 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1374 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1375 elif test "$drv" = "oss"; then
1376 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1380 if test "$mixemu" = "yes" ; then
1381 echo "CONFIG_MIXEMU=yes" >> $config_mak
1382 echo "#define CONFIG_MIXEMU 1" >> $config_h
1384 if test "$vnc_tls" = "yes" ; then
1385 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1386 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1387 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1388 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1390 qemu_version
=`head $source_path/VERSION`
1391 echo "VERSION=$qemu_version" >>$config_mak
1392 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1394 echo "SRC_PATH=$source_path" >> $config_mak
1395 if [ "$source_path_used" = "yes" ]; then
1396 echo "VPATH=$source_path" >> $config_mak
1398 echo "TARGET_DIRS=$target_list" >> $config_mak
1399 if [ "$build_docs" = "yes" ] ; then
1400 echo "BUILD_DOCS=yes" >> $config_mak
1402 if test "$static" = "yes"; then
1407 if test "$sdl1" = "yes" ; then
1408 echo "#define CONFIG_SDL 1" >> $config_h
1409 echo "CONFIG_SDL=yes" >> $config_mak
1410 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1411 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1412 elif test "$sdl_x11" = "yes" ; then
1413 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
1415 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1417 if [ "${aa}" = "yes" ] ; then
1418 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1420 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1423 if test "$cocoa" = "yes" ; then
1424 echo "#define CONFIG_COCOA 1" >> $config_h
1425 echo "CONFIG_COCOA=yes" >> $config_mak
1427 if test "$curses" = "yes" ; then
1428 echo "#define CONFIG_CURSES 1" >> $config_h
1429 echo "CONFIG_CURSES=yes" >> $config_mak
1430 echo "CURSES_LIBS=-lcurses" >> $config_mak
1432 if test "$brlapi" = "yes" ; then
1433 echo "CONFIG_BRLAPI=yes" >> $config_mak
1434 echo "#define CONFIG_BRLAPI 1" >> $config_h
1435 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1437 if test "$bluez" = "yes" ; then
1438 echo "CONFIG_BLUEZ=yes" >> $config_mak
1439 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1440 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1441 echo "#define CONFIG_BLUEZ 1" >> $config_h
1443 if test "$aio" = "yes" ; then
1444 echo "#define CONFIG_AIO 1" >> $config_h
1445 echo "CONFIG_AIO=yes" >> $config_mak
1447 if test "$blobs" = "yes" ; then
1448 echo "INSTALL_BLOBS=yes" >> $config_mak
1450 if test "$iovec" = "yes" ; then
1451 echo "#define HAVE_IOVEC 1" >> $config_h
1453 if test "$fdt" = "yes" ; then
1454 echo "#define HAVE_FDT 1" >> $config_h
1455 echo "FDT_LIBS=-lfdt" >> $config_mak
1458 # XXX: suppress that
1459 if [ "$bsd" = "yes" ] ; then
1460 echo "#define O_LARGEFILE 0" >> $config_h
1461 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1462 echo "#define _BSD 1" >> $config_h
1465 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1470 echo "HOST_USB=linux" >> $config_mak
1473 echo "HOST_USB=bsd" >> $config_mak
1476 echo "HOST_USB=stub" >> $config_mak
1481 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1482 tools
="qemu-img\$(EXESUF) $tools"
1483 if [ "$linux" = "yes" ] ; then
1484 tools
="qemu-nbd\$(EXESUF) $tools"
1487 echo "TOOLS=$tools" >> $config_mak
1489 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~
$config_h
1491 for target
in $target_list; do
1492 target_dir
="$target"
1493 config_mak
=$target_dir/config.mak
1494 config_h
=$target_dir/config.h
1495 target_cpu
=`echo $target | cut -d '-' -f 1`
1496 target_bigendian
="no"
1497 [ "$target_cpu" = "armeb" ] && target_bigendian
=yes
1498 [ "$target_cpu" = "m68k" ] && target_bigendian
=yes
1499 [ "$target_cpu" = "mips" ] && target_bigendian
=yes
1500 [ "$target_cpu" = "mipsn32" ] && target_bigendian
=yes
1501 [ "$target_cpu" = "mips64" ] && target_bigendian
=yes
1502 [ "$target_cpu" = "ppc" ] && target_bigendian
=yes
1503 [ "$target_cpu" = "ppcemb" ] && target_bigendian
=yes
1504 [ "$target_cpu" = "ppc64" ] && target_bigendian
=yes
1505 [ "$target_cpu" = "ppc64abi32" ] && target_bigendian
=yes
1506 [ "$target_cpu" = "sh4eb" ] && target_bigendian
=yes
1507 [ "$target_cpu" = "sparc" ] && target_bigendian
=yes
1508 [ "$target_cpu" = "sparc64" ] && target_bigendian
=yes
1509 [ "$target_cpu" = "sparc32plus" ] && target_bigendian
=yes
1511 target_user_only
="no"
1512 target_linux_user
="no"
1513 target_darwin_user
="no"
1514 target_bsd_user
="no"
1516 ${target_cpu}-softmmu)
1517 target_softmmu
="yes"
1519 ${target_cpu}-linux-user)
1520 target_user_only
="yes"
1521 target_linux_user
="yes"
1523 ${target_cpu}-darwin-user)
1524 target_user_only
="yes"
1525 target_darwin_user
="yes"
1527 ${target_cpu}-bsd-user)
1528 target_user_only
="yes"
1529 target_bsd_user
="yes"
1532 echo "ERROR: Target '$target' not recognised"
1537 if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1538 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
1539 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
1540 echo "To build QEMU without graphical output configure with --disable-gfx-check"
1541 echo "Note that this will disable all output from the virtual graphics card"
1542 echo "except through VNC or curses."
1546 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1548 test -f $config_h && mv $config_h ${config_h}~
1550 mkdir
-p $target_dir
1551 mkdir
-p $target_dir/fpu
1552 mkdir
-p $target_dir/tcg
1553 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1554 mkdir
-p $target_dir/nwfpe
1558 # don't use ln -sf as not all "ln -sf" over write the file/link
1560 rm -f $target_dir/Makefile
1561 ln -s $source_path/Makefile.target
$target_dir/Makefile
1564 echo "# Automatically generated by configure - do not modify" > $config_mak
1565 echo "/* Automatically generated by configure - do not modify */" > $config_h
1568 echo "include ../config-host.mak" >> $config_mak
1569 echo "#include \"../config-host.h\"" >> $config_h
1574 interp_prefix1
=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1575 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1578 # Make sure the target and host cpus are compatible
1579 if test "$kvm" = "yes" -a ! \
( "$target_cpu" = "$cpu" -o \
1580 \
( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \
) -o \
1581 \
( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \
) -o \
1582 \
( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \
) \
) ; then
1585 # Disable KVM for linux-user
1586 if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1590 case "$target_cpu" in
1592 echo "TARGET_ARCH=i386" >> $config_mak
1593 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1594 echo "#define TARGET_I386 1" >> $config_h
1595 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1597 echo "#define USE_KQEMU 1" >> $config_h
1599 if test "$kvm" = "yes" ; then
1600 echo "CONFIG_KVM=yes" >> $config_mak
1601 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1602 echo "#define CONFIG_KVM 1" >> $config_h
1606 echo "TARGET_ARCH=x86_64" >> $config_mak
1607 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1608 echo "#define TARGET_I386 1" >> $config_h
1609 echo "#define TARGET_X86_64 1" >> $config_h
1610 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1612 echo "#define USE_KQEMU 1" >> $config_h
1614 if test "$kvm" = "yes" ; then
1615 echo "CONFIG_KVM=yes" >> $config_mak
1616 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1617 echo "#define CONFIG_KVM 1" >> $config_h
1621 echo "TARGET_ARCH=alpha" >> $config_mak
1622 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1623 echo "#define TARGET_ALPHA 1" >> $config_h
1626 echo "TARGET_ARCH=arm" >> $config_mak
1627 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1628 echo "#define TARGET_ARM 1" >> $config_h
1631 gdb_xml_files
="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1634 echo "TARGET_ARCH=cris" >> $config_mak
1635 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1636 echo "#define TARGET_CRIS 1" >> $config_h
1640 echo "TARGET_ARCH=m68k" >> $config_mak
1641 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1642 echo "#define TARGET_M68K 1" >> $config_h
1644 gdb_xml_files
="cf-core.xml cf-fp.xml"
1647 echo "TARGET_ARCH=mips" >> $config_mak
1648 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1649 echo "#define TARGET_MIPS 1" >> $config_h
1650 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1653 echo "TARGET_ARCH=mipsn32" >> $config_mak
1654 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1655 echo "#define TARGET_MIPS 1" >> $config_h
1656 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1659 echo "TARGET_ARCH=mips64" >> $config_mak
1660 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1661 echo "#define TARGET_MIPS 1" >> $config_h
1662 echo "#define TARGET_MIPS64 1" >> $config_h
1663 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1666 echo "TARGET_ARCH=ppc" >> $config_mak
1667 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1668 echo "#define TARGET_PPC 1" >> $config_h
1669 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1672 echo "TARGET_ARCH=ppcemb" >> $config_mak
1673 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1674 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1675 echo "#define TARGET_PPC 1" >> $config_h
1676 echo "#define TARGET_PPCEMB 1" >> $config_h
1677 if test "$kvm" = "yes" ; then
1678 echo "CONFIG_KVM=yes" >> $config_mak
1679 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1680 echo "#define CONFIG_KVM 1" >> $config_h
1682 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1685 echo "TARGET_ARCH=ppc64" >> $config_mak
1686 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1687 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1688 echo "#define TARGET_PPC 1" >> $config_h
1689 echo "#define TARGET_PPC64 1" >> $config_h
1690 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1693 echo "TARGET_ARCH=ppc64" >> $config_mak
1694 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1695 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1696 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1697 echo "#define TARGET_PPC 1" >> $config_h
1698 echo "#define TARGET_PPC64 1" >> $config_h
1699 echo "#define TARGET_ABI32 1" >> $config_h
1700 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1703 echo "TARGET_ARCH=sh4" >> $config_mak
1704 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1705 echo "#define TARGET_SH4 1" >> $config_h
1710 echo "TARGET_ARCH=sparc" >> $config_mak
1711 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1712 echo "#define TARGET_SPARC 1" >> $config_h
1715 echo "TARGET_ARCH=sparc64" >> $config_mak
1716 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1717 echo "#define TARGET_SPARC 1" >> $config_h
1718 echo "#define TARGET_SPARC64 1" >> $config_h
1722 echo "TARGET_ARCH=sparc64" >> $config_mak
1723 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1724 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1725 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1726 echo "#define TARGET_SPARC 1" >> $config_h
1727 echo "#define TARGET_SPARC64 1" >> $config_h
1728 echo "#define TARGET_ABI32 1" >> $config_h
1731 echo "Unsupported target CPU"
1735 if test "$target_bigendian" = "yes" ; then
1736 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1737 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1739 if test "$target_softmmu" = "yes" ; then
1740 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1741 echo "#define CONFIG_SOFTMMU 1" >> $config_h
1743 if test "$target_user_only" = "yes" ; then
1744 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1745 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1747 if test "$target_linux_user" = "yes" ; then
1748 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1749 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1751 if test "$target_darwin_user" = "yes" ; then
1752 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1753 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1756 if test ! -z "$gdb_xml_files" ; then
1757 for x
in $gdb_xml_files; do
1758 list
="$list $source_path/gdb-xml/$x"
1761 echo "TARGET_XML_FILES=$list" >> $config_mak
1763 if test "$target_cpu" = "arm" \
1764 -o "$target_cpu" = "armeb" \
1765 -o "$target_cpu" = "m68k" \
1766 -o "$target_cpu" = "mips" \
1767 -o "$target_cpu" = "mipsel" \
1768 -o "$target_cpu" = "mipsn32" \
1769 -o "$target_cpu" = "mipsn32el" \
1770 -o "$target_cpu" = "mips64" \
1771 -o "$target_cpu" = "mips64el" \
1772 -o "$target_cpu" = "ppc" \
1773 -o "$target_cpu" = "ppc64" \
1774 -o "$target_cpu" = "ppc64abi32" \
1775 -o "$target_cpu" = "ppcemb" \
1776 -o "$target_cpu" = "sparc" \
1777 -o "$target_cpu" = "sparc64" \
1778 -o "$target_cpu" = "sparc32plus"; then
1779 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1780 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1782 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1783 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1784 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1786 if test "$target_user_only" = "yes" \
1787 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1788 echo "#define USE_NPTL 1" >> $config_h
1790 # 32 bit ELF loader in addition to native 64 bit loader?
1791 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1792 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1793 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1795 if test "$target_bsd_user" = "yes" ; then
1796 echo "CONFIG_BSD_USER=yes" >> $config_mak
1797 echo "#define CONFIG_BSD_USER 1" >> $config_h
1800 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~
$config_h
1802 done # for target in $targets
1804 # build tree in object directory if source path is different from current one
1805 if test "$source_path_used" = "yes" ; then
1806 DIRS
="tests tests/cris slirp audio"
1807 FILES
="Makefile tests/Makefile"
1808 FILES
="$FILES tests/cris/Makefile tests/cris/.gdbinit"
1809 FILES
="$FILES tests/test-mmap.c"
1810 for dir
in $DIRS ; do
1813 # remove the link and recreate it, as not all "ln -sf" overwrite the link
1814 for f
in $FILES ; do
1816 ln -s $source_path/$f $f