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
)
189 kvm_cap_device_assignment
="no"
200 if check_define __linux__
; then
202 elif check_define _WIN32
; then
210 OS_CFLAGS
="-mno-cygwin"
211 if [ "$cpu" = "i386" ] ; then
214 audio_possible_drivers
="sdl"
218 if [ "$cpu" = "i386" ] ; then
221 audio_possible_drivers
="dsound sdl fmod"
225 audio_possible_drivers
="oss sdl esd pa"
226 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
233 audio_possible_drivers
="oss sdl esd pa"
234 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
242 audio_possible_drivers
="oss sdl esd pa"
243 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
251 audio_possible_drivers
="oss sdl esd"
258 audio_possible_drivers
="oss sdl esd"
264 # 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
265 if [ "$cpu" = "i386" ] ; then
266 is_x86_64
=`sysctl -n hw.optional.x86_64`
267 [ "$is_x86_64" = "1" ] && cpu
=x86_64
269 if [ "$cpu" = "x86_64" ] ; then
270 OS_CFLAGS
="-arch x86_64"
271 LDFLAGS
="-arch x86_64"
273 OS_CFLAGS
="-mdynamic-no-pic"
277 audio_drv_list
="coreaudio"
278 audio_possible_drivers
="coreaudio sdl fmod"
279 OS_LDFLAGS
="-framework CoreFoundation -framework IOKit"
285 needs_libsunmath
="no"
286 solarisrev
=`uname -r | cut -f2 -d.`
287 # have to select again, because `uname -m` returns i86pc
288 # even on an x86_64 box.
289 solariscpu
=`isainfo -k`
290 if test "${solariscpu}" = "amd64" ; then
293 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
294 if test "$solarisrev" -le 9 ; then
295 if test -f /opt
/SUNWspro
/prod
/lib
/libsunmath.so
.1; then
296 needs_libsunmath
="yes"
298 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
299 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
300 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
301 echo "Studio 11 can be downloaded from www.sun.com."
305 if test "$solarisrev" -ge 9 ; then
309 if test -f /usr
/include
/sys
/soundcard.h
; then
312 audio_possible_drivers
="oss sdl"
320 audio_possible_drivers
="oss alsa sdl esd pa"
324 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
326 audio_possible_drivers
="$audio_possible_drivers fmod"
329 if [ "$cpu" = "ia64" ] ; then
335 if [ "$cpu" = "powerpc" ]; then
341 if [ "$bsd" = "yes" ] ; then
342 if [ "$darwin" != "yes" ] ; then
350 source_path
=`dirname "$0"`
351 source_path_used
="no"
353 if [ -z "$source_path" ]; then
356 source_path
=`cd "$source_path"; pwd`
358 [ -f "$workdir/vl.c" ] || source_path_used
="yes"
361 # generate compile errors on warnings for development builds
362 #if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
367 optarg
=`expr "x$opt" : 'x[^=]*=\(.*\)'`
369 --help|
-h) show_help
=yes
371 --prefix=*) prefix
="$optarg"
373 --interp-prefix=*) interp_prefix
="$optarg"
375 --source-path=*) source_path
="$optarg"
376 source_path_used
="yes"
382 --host-cc=*) host_cc
="$optarg"
384 --make=*) make="$optarg"
386 --install=*) install="$optarg"
388 --extra-cflags=*) CFLAGS
="$optarg"
390 --extra-ldflags=*) LDFLAGS
="$optarg"
392 --cpu=*) cpu
="$optarg"
394 --target-list=*) target_list
="$optarg"
396 --enable-gprof) gprof
="yes"
398 --static) static
="yes"
400 --disable-sdl) sdl
="no"
402 --fmod-lib=*) fmod_lib
="$optarg"
404 --fmod-inc=*) fmod_inc
="$optarg"
406 --oss-lib=*) oss_lib
="$optarg"
408 --audio-card-list=*) audio_card_list
=`echo "$optarg" | sed -e 's/,/ /g'`
410 --audio-drv-list=*) audio_drv_list
="$optarg"
412 --enable-sparse) sparse
="yes"
414 --disable-sparse) sparse
="no"
416 --disable-strip) strip_opt
="no"
418 --disable-vnc-tls) vnc_tls
="no"
420 --disable-vnc-sasl) vnc_sasl
="no"
422 --disable-slirp) slirp
="no"
424 --disable-vde) vde
="no"
426 --disable-kqemu) kqemu
="no"
428 --disable-brlapi) brlapi
="no"
430 --disable-bluez) bluez
="no"
432 --disable-kvm) kvm
="no"
434 --enable-profiler) profiler
="yes"
439 audio_drv_list
="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
441 --disable-gfx-check) check_gfx
="no"
443 --disable-system) softmmu
="no"
445 --enable-system) softmmu
="yes"
447 --disable-linux-user) linux_user
="no"
449 --enable-linux-user) linux_user
="yes"
451 --disable-darwin-user) darwin_user
="no"
453 --enable-darwin-user) darwin_user
="yes"
455 --disable-bsd-user) bsd_user
="no"
457 --enable-bsd-user) bsd_user
="yes"
459 --enable-uname-release=*) uname_release
="$optarg"
464 v7|v8
) SP_CFLAGS
="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
465 target_cpu
="sparc"; cpu
="sparc" ;;
466 v8plus|v8plusa
) SP_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
467 target_cpu
="sparc"; cpu
="sparc" ;;
468 v9
) SP_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m64"
469 target_cpu
="sparc64"; cpu
="sparc64" ;;
470 *) echo "undefined SPARC architecture. Exiting";exit 1;;
473 --enable-werror) werror
="yes"
475 --disable-werror) werror
="no"
477 --disable-curses) curses
="no"
479 --disable-nptl) nptl
="no"
481 --enable-mixemu) mixemu
="yes"
483 --disable-aio) aio
="no"
485 --disable-blobs) blobs
="no"
487 --kerneldir=*) kerneldir
="$optarg"
489 --disable-cpu-emulation) cpu_emulation
="no"
491 *) echo "ERROR: unknown option $opt"; exit 1
496 # default flags for all hosts
497 CFLAGS
="$CFLAGS -O2 -g -fno-strict-aliasing"
498 CFLAGS
="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
499 LDFLAGS
="$LDFLAGS -g"
500 if test "$werror" = "yes" ; then
501 CFLAGS
="$CFLAGS -Werror"
504 if test "$solaris" = "no" ; then
505 if ld
--version 2>/dev
/null |
grep "GNU ld" >/dev
/null
2>/dev
/null
; then
506 LDFLAGS
="$LDFLAGS -Wl,--warn-common"
511 # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
512 # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
515 sparc
) if test -z "$sparc_cpu" ; then
516 ARCH_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
519 ARCH_CFLAGS
="${SP_CFLAGS}"
520 ARCH_LDFLAGS
="${SP_LDFLAGS}"
522 ARCH_CFLAGS
="$ARCH_CFLAGS -ffixed-g2 -ffixed-g3"
523 if test "$solaris" = "no" ; then
524 ARCH_CFLAGS
="$ARCH_CFLAGS -ffixed-g1 -ffixed-g6"
527 sparc64
) if test -z "$sparc_cpu" ; then
528 ARCH_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_v9__"
531 ARCH_CFLAGS
="${SP_CFLAGS}"
532 ARCH_LDFLAGS
="${SP_LDFLAGS}"
534 if test "$solaris" = "no" ; then
535 ARCH_CFLAGS
="$ARCH_CFLAGS -ffixed-g5 -ffixed-g6 -ffixed-g7"
537 ARCH_CFLAGS
="$ARCH_CFLAGS -ffixed-g1 -ffixed-g5 -ffixed-g6 -ffixed-g7"
541 ARCH_CFLAGS
="-march=z900"
553 if test x
"$show_help" = x
"yes" ; then
556 Usage: configure [options]
557 Options: [defaults in brackets after descriptions]
560 echo "Standard options:"
561 echo " --help print this message"
562 echo " --prefix=PREFIX install in PREFIX [$prefix]"
563 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
564 echo " use %M for cpu name [$interp_prefix]"
565 echo " --target-list=LIST set target list [$target_list]"
567 echo "kqemu kernel acceleration support:"
568 echo " --disable-kqemu disable kqemu support"
570 echo "Advanced options (experts only):"
571 echo " --source-path=PATH path of source code [$source_path]"
572 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
573 echo " --cc=CC use C compiler CC [$cc]"
574 echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
575 echo " --extra-cflags=CFLAGS add C compiler flags CFLAGS"
576 echo " --extra-ldflags=LDFLAGS add linker flags LDFLAGS"
577 echo " --make=MAKE use specified make [$make]"
578 echo " --install=INSTALL use specified install [$install]"
579 echo " --static enable static build [$static]"
580 echo " --enable-sparse enable sparse checker"
581 echo " --disable-sparse disable sparse checker (default)"
582 echo " --disable-strip disable stripping binaries"
583 echo " --disable-werror disable compilation abort on warning"
584 echo " --disable-sdl disable SDL"
585 echo " --enable-cocoa enable COCOA (Mac OS X only)"
586 echo " --audio-drv-list=LIST set audio drivers list:"
587 echo " Available drivers: $audio_possible_drivers"
588 echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
589 echo " Available cards: $audio_possible_cards"
590 echo " --enable-mixemu enable mixer emulation"
591 echo " --disable-brlapi disable BrlAPI"
592 echo " --disable-vnc-tls disable TLS encryption for VNC server"
593 echo " --disable-vnc-sasl disable SASL encryption for VNC server"
594 echo " --disable-curses disable curses output"
595 echo " --disable-bluez disable bluez stack connectivity"
596 echo " --disable-kvm disable KVM acceleration support"
597 echo " --disable-nptl disable usermode NPTL support"
598 echo " --enable-system enable all system emulation targets"
599 echo " --disable-system disable all system emulation targets"
600 echo " --enable-linux-user enable all linux usermode emulation targets"
601 echo " --disable-linux-user disable all linux usermode emulation targets"
602 echo " --enable-darwin-user enable all darwin usermode emulation targets"
603 echo " --disable-darwin-user disable all darwin usermode emulation targets"
604 echo " --enable-bsd-user enable all BSD usermode emulation targets"
605 echo " --disable-bsd-user disable all BSD usermode emulation targets"
606 echo " --fmod-lib path to FMOD library"
607 echo " --fmod-inc path to FMOD includes"
608 echo " --oss-lib path to OSS library"
609 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
610 echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
611 echo " --disable-vde disable support for vde network"
612 echo " --disable-aio disable AIO support"
613 echo " --disable-blobs disable installing provided firmware blobs"
614 echo " --kerneldir=PATH look for kernel includes in PATH"
615 echo " --disable-cpu-emulation disables use of qemu cpu emulation code"
617 echo "NOTE: The object files are built at the place where configure is launched"
621 if test "$mingw32" = "yes" ; then
627 OS_CFLAGS
="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501"
630 if test ! -x "$(which cgcc 2>/dev/null)"; then
635 # Solaris specific configure tool chain decisions
637 if test "$solaris" = "yes" ; then
638 solinst
=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
639 if test -z "$solinst" ; then
640 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
641 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
642 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
645 if test "$solinst" = "/usr/sbin/install" ; then
646 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
647 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
648 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
651 sol_ar
=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
652 if test -z "$sol_ar" ; then
653 echo "Error: No path includes ar"
654 if test -f /usr
/ccs
/bin
/ar ; then
655 echo "Add /usr/ccs/bin to your path and rerun configure"
662 if test -z "$target_list" ; then
663 # these targets are portable
664 if [ "$softmmu" = "yes" ] ; then
683 # the following are Linux specific
684 if [ "$linux_user" = "yes" ] ; then
685 target_list
="${target_list}\
697 ppc64abi32-linux-user \
702 sparc32plus-linux-user \
705 # the following are Darwin specific
706 if [ "$darwin_user" = "yes" ] ; then
707 target_list
="$target_list i386-darwin-user ppc-darwin-user "
709 # the following are BSD specific
710 if [ "$bsd_user" = "yes" ] ; then
711 target_list
="${target_list}\
716 target_list
=`echo "$target_list" | sed -e 's/,/ /g'`
718 if test -z "$target_list" ; then
719 echo "No targets enabled"
723 if test -z "$cross_prefix" ; then
726 # big/little endian test
728 #include <inttypes.h>
729 int main(int argc, char ** argv){
730 volatile uint32_t i=0x01234567;
731 return (*((uint8_t*)(&i))) == 0x67;
735 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
736 $TMPE && bigendian
="yes"
738 echo big
/little
test failed
743 # if cross compiling, cannot launch a program, so make a static guess
744 if test "$cpu" = "armv4b" \
748 -o "$cpu" = "mips64" \
750 -o "$cpu" = "ppc64" \
752 -o "$cpu" = "sparc" \
753 -o "$cpu" = "sparc64"; then
759 # host long bits test
761 if test "$cpu" = "x86_64" \
762 -o "$cpu" = "alpha" \
764 -o "$cpu" = "sparc64" \
765 -o "$cpu" = "ppc64"; then
769 # Check host NPTL support
772 #include <linux/futex.h>
775 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
781 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev
/null
2> /dev
/null
; then
787 ##########################################
790 if test "$kvm" = "yes" ; then
792 # test for KVM_CAP_PIT
797 #error "kvm no pit capability"
799 int main(void) { return 0; }
801 if $cc $ARCH_CFLAGS $CFLAGS -I"$kerneldir"/include
-o $TMPE ${OS_CFLAGS} $TMPC 2> /dev
/null
; then
805 # test for KVM_CAP_DEVICE_ASSIGNMENT
809 #ifndef KVM_CAP_DEVICE_ASSIGNMENT
810 #error "kvm no device assignment capability"
812 int main(void) { return 0; }
814 if $cc $ARCH_CFLAGS $CFLAGS -I"$kerneldir"/include
-o $TMPE ${OS_CFLAGS} $TMPC 2> /dev
/null
; then
815 kvm_cap_device_assignment
="yes"
819 # libpci probe for kvm_cap_device_assignment
820 if test $kvm_cap_device_assignment = "yes" ; then
823 #ifndef PCI_VENDOR_ID
826 int main(void) { return 0; }
828 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC 2>/dev
/null
; then
832 echo "Error: libpci check failed"
833 echo "Disable KVM Device Assignment capability."
835 kvm_cap_device_assignment
="no"
839 ##########################################
844 int main(void) { zlibVersion(); return 0; }
846 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev
/null
2> /dev
/null
; then
850 echo "Error: zlib check failed"
851 echo "Make sure to have the zlib libs and headers installed."
856 ##########################################
861 if test -z "$sdl" ; then
862 sdl_config
="sdl-config"
868 #undef main /* We don't want SDL to override our main() */
869 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
871 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
872 _sdlversion
=`$sdl_config --version | sed 's/[^0-9]//g'`
873 if test "$_sdlversion" -lt 121 ; then
876 if test "$cocoa" = "no" ; then
881 # static link with sdl ?
882 if test "$sdl" = "yes" ; then
884 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa
="yes"
885 sdl_static_libs
=`$sdl_config --static-libs 2>/dev/null`
886 if [ "$aa" = "yes" ] ; then
887 sdl_static_libs
="$sdl_static_libs `aalib-config --static-libs`"
890 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev
/null
2> /dev
/null
; then
894 fi # sdl compile test
896 # Make sure to disable cocoa if sdl was set
897 if test "$sdl" = "yes" ; then
899 audio_drv_list
="`echo $audio_drv_list | sed s,coreaudio,,g`"
903 if test "$sdl" = "yes" ; then
906 #if defined(SDL_VIDEO_DRIVER_X11)
907 #include <X11/XKBlib.h>
909 #error No x11 support
911 int main(void) { return 0; }
913 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
918 ##########################################
920 if test "$vnc_tls" = "yes" ; then
922 #include <gnutls/gnutls.h>
923 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
925 vnc_tls_cflags
=`pkg-config --cflags gnutls 2> /dev/null`
926 vnc_tls_libs
=`pkg-config --libs gnutls 2> /dev/null`
927 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
928 $vnc_tls_libs > /dev
/null
2> /dev
/null
; then
935 ##########################################
937 if test "$vnc_sasl" = "yes" ; then
939 #include <sasl/sasl.h>
941 int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
943 # Assuming Cyrus-SASL installed in /usr prefix
945 vnc_sasl_libs
="-lsasl2"
946 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \
947 $vnc_sasl_libs 2> /dev
/null
; then
954 ##########################################
955 # fnmatch() probe, used for ACL routines
961 fnmatch("foo", "foo", 0);
965 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
969 ##########################################
970 # vde libraries probe
971 if test "$vde" = "yes" ; then
973 #include <libvdeplug.h>
976 struct vde_open_args a = {0, 0, 0};
977 vde_open("", "", &a);
981 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev
/null
2> /dev
/null
; then
988 ##########################################
989 # Sound support libraries probe
1000 int main(void) { $exp }
1002 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev
/null
2> /dev
/null
; then
1006 echo "Error: $drv check failed"
1007 echo "Make sure to have the $drv libs and headers installed."
1013 audio_drv_list
=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
1014 for drv
in $audio_drv_list; do
1017 audio_drv_probe
$drv alsa
/asoundlib.h
-lasound \
1018 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
1022 if test -z $fmod_lib ||
test -z $fmod_inc; then
1024 echo "Error: You must specify path to FMOD library and headers"
1025 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1029 audio_drv_probe
$drv fmod.h
$fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1033 audio_drv_probe
$drv esd.h
-lesd 'return esd_play_stream(0, 0, "", 0);'
1037 audio_drv_probe
$drv pulse
/simple.h
-lpulse-simple \
1038 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
1041 oss|sdl|core|wav|dsound
)
1042 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1046 echo "$audio_possible_drivers" |
grep -q "\<$drv\>" ||
{
1048 echo "Error: Unknown driver '$drv' selected"
1049 echo "Possible drivers are: $audio_possible_drivers"
1057 ##########################################
1060 if test -z "$brlapi" ; then
1064 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1066 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev
/null
2> /dev
/null
; then
1068 fi # brlapi compile test
1071 ##########################################
1074 if test "$curses" = "yes" ; then
1078 int main(void) { return curses_version(); }
1080 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev
/null
2> /dev
/null
; then
1085 ##########################################
1086 # bluez support probe
1087 if test "$bluez" = "yes" ; then
1088 `pkg-config bluez` || bluez
="no"
1090 if test "$bluez" = "yes" ; then
1092 #include <bluetooth/bluetooth.h>
1093 int main(void) { return bt_error(0); }
1095 bluez_cflags
=`pkg-config --cflags bluez`
1096 bluez_libs
=`pkg-config --libs bluez`
1097 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
1098 $bluez_libs > /dev
/null
2> /dev
/null
; then
1105 ##########################################
1107 if test "$kvm" = "yes" ; then
1109 #include <linux/kvm.h>
1110 #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
1111 #error Invalid KVM version
1113 #if !defined(KVM_CAP_USER_MEMORY)
1114 #error Missing KVM capability KVM_CAP_USER_MEMORY
1116 #if !defined(KVM_CAP_SET_TSS_ADDR)
1117 #error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1119 #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1120 #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1122 int main(void) { return 0; }
1124 if test "$kerneldir" != "" ; then
1125 kvm_cflags
=-I"$kerneldir"/include
1126 if test \
( "$cpu" = "i386" -o "$cpu" = "x86_64" \
) \
1127 -a -d "$kerneldir/arch/x86/include" ; then
1128 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/x86/include"
1129 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1130 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/powerpc/include"
1131 elif test -d "$kerneldir/arch/$cpu/include" ; then
1132 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1137 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
1138 > /dev
/null
2>/dev
/null
; then
1142 if [ -x "`which awk 2>/dev/null`" ] && \
1143 [ -x "`which grep 2>/dev/null`" ]; then
1144 kvmerr
=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1146 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1147 if test "$kvmerr" != "" ; then
1148 kvm
="no - (${kvmerr})"
1154 ##########################################
1158 if test "$aio" = "yes" ; then
1161 #include <pthread.h>
1162 int main(void) { pthread_mutex_t lock; return 0; }
1164 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev
/null
; then
1170 ##########################################
1173 #include <sys/types.h>
1174 #include <sys/uio.h>
1176 int main(void) { struct iovec iov; return 0; }
1179 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1183 ##########################################
1186 #include <sys/types.h>
1187 #include <sys/uio.h>
1189 int main(void) { preadv; }
1192 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1196 ##########################################
1198 if test "$fdt" = "yes" ; then
1201 int main(void) { return 0; }
1203 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev
/null
; then
1208 ##########################################
1213 #include <sys/syscall.h>
1215 int main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
1218 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1222 ##########################################
1227 #include <sys/syscall.h>
1228 int main(void) { return syscall(SYS_eventfd, 0); }
1231 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1235 # Check if tools are available to build documentation.
1236 if [ -x "`which texi2html 2>/dev/null`" ] && \
1237 [ -x "`which pod2man 2>/dev/null`" ]; then
1241 ##########################################
1246 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1250 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1252 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev
/null
2> /dev
/null
; then
1256 if test "$rt" = "yes" ; then
1257 # Hack, we should have a general purpose LIBS for this sort of thing
1258 AIOLIBS
="$AIOLIBS -lrt"
1261 if test "$mingw32" = "yes" ; then
1262 if test -z "$prefix" ; then
1263 prefix
="c:\\\\Program Files\\\\Qemu"
1270 if test -z "$prefix" ; then
1273 mansuffix
="/share/man"
1274 datasuffix
="/share/qemu"
1275 docsuffix
="/share/doc/qemu"
1279 echo "Install prefix $prefix"
1280 echo "BIOS directory $prefix$datasuffix"
1281 echo "binary directory $prefix$binsuffix"
1282 if test "$mingw32" = "no" ; then
1283 echo "Manual directory $prefix$mansuffix"
1284 echo "ELF interp prefix $interp_prefix"
1286 echo "Source path $source_path"
1287 echo "C compiler $cc"
1288 echo "Host C compiler $host_cc"
1289 echo "ARCH_CFLAGS $ARCH_CFLAGS"
1291 echo "install $install"
1292 echo "host CPU $cpu"
1293 echo "host big endian $bigendian"
1294 echo "target list $target_list"
1295 echo "gprof enabled $gprof"
1296 echo "sparse enabled $sparse"
1297 echo "strip binaries $strip_opt"
1298 echo "profiler $profiler"
1299 echo "static build $static"
1300 echo "-Werror enabled $werror"
1301 if test "$darwin" = "yes" ; then
1302 echo "Cocoa support $cocoa"
1304 echo "SDL support $sdl"
1305 if test "$sdl" != "no" ; then
1306 echo "SDL static link $sdl_static"
1308 echo "curses support $curses"
1309 echo "mingw32 support $mingw32"
1310 echo "Audio drivers $audio_drv_list"
1311 echo "Extra audio cards $audio_card_list"
1312 echo "Mixer emulation $mixemu"
1313 echo "VNC TLS support $vnc_tls"
1314 if test "$vnc_tls" = "yes" ; then
1315 echo " TLS CFLAGS $vnc_tls_cflags"
1316 echo " TLS LIBS $vnc_tls_libs"
1318 echo "VNC SASL support $vnc_sasl"
1319 if test "$vnc_sasl" = "yes" ; then
1320 echo " SASL CFLAGS $vnc_sasl_cflags"
1321 echo " SASL LIBS $vnc_sasl_libs"
1323 if test -n "$sparc_cpu"; then
1324 echo "Target Sparc Arch $sparc_cpu"
1326 echo "kqemu support $kqemu"
1327 echo "kvm support $kvm"
1328 echo "CPU emulation $cpu_emulation"
1329 echo "brlapi support $brlapi"
1330 echo "Documentation $build_docs"
1331 [ ! -z "$uname_release" ] && \
1332 echo "uname -r $uname_release"
1333 echo "NPTL support $nptl"
1334 echo "vde support $vde"
1335 echo "AIO support $aio"
1336 echo "Install blobs $blobs"
1337 echo "KVM support $kvm"
1338 echo "fdt support $fdt"
1339 echo "preadv support $preadv"
1341 if test $sdl_too_old = "yes"; then
1342 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1344 if [ -s $TMPSDLLOG ]; then
1345 echo "The error log from compiling the libSDL test is: "
1348 #if test "$sdl_static" = "no"; then
1349 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1351 config_mak
="config-host.mak"
1352 config_h
="config-host.h"
1354 #echo "Creating $config_mak and $config_h"
1356 test -f $config_h && mv $config_h ${config_h}~
1358 echo "# Automatically generated by configure - do not modify" > $config_mak
1359 printf "# Configured with:" >> $config_mak
1360 printf " '%s'" "$0" "$@" >> $config_mak
1362 echo "/* Automatically generated by configure - do not modify */" > $config_h
1364 echo "prefix=$prefix" >> $config_mak
1365 echo "bindir=\${prefix}$binsuffix" >> $config_mak
1366 echo "mandir=\${prefix}$mansuffix" >> $config_mak
1367 echo "datadir=\${prefix}$datasuffix" >> $config_mak
1368 echo "docdir=\${prefix}$docsuffix" >> $config_mak
1369 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1370 echo "MAKE=$make" >> $config_mak
1371 echo "INSTALL=$install" >> $config_mak
1372 echo "CC=$cc" >> $config_mak
1373 echo "HOST_CC=$host_cc" >> $config_mak
1374 echo "AR=$ar" >> $config_mak
1375 # XXX: only use CFLAGS and LDFLAGS ?
1376 # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1377 # compilation of dyngen tool (useful for win32 build on Linux host)
1378 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1379 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1380 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1381 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1382 echo "CFLAGS=$CFLAGS" >> $config_mak
1383 echo "LDFLAGS=$LDFLAGS" >> $config_mak
1384 echo "EXESUF=$EXESUF" >> $config_mak
1385 echo "AIOLIBS=$AIOLIBS" >> $config_mak
1388 echo "ARCH=i386" >> $config_mak
1389 echo "#define HOST_I386 1" >> $config_h
1392 echo "ARCH=x86_64" >> $config_mak
1393 echo "#define HOST_X86_64 1" >> $config_h
1396 echo "ARCH=alpha" >> $config_mak
1397 echo "#define HOST_ALPHA 1" >> $config_h
1400 echo "ARCH=arm" >> $config_mak
1401 echo "#define HOST_ARM 1" >> $config_h
1404 echo "ARCH=arm" >> $config_mak
1405 echo "#define HOST_ARM 1" >> $config_h
1408 echo "ARCH=cris" >> $config_mak
1409 echo "#define HOST_CRIS 1" >> $config_h
1412 echo "ARCH=hppa" >> $config_mak
1413 echo "#define HOST_HPPA 1" >> $config_h
1416 echo "ARCH=ia64" >> $config_mak
1417 echo "#define HOST_IA64 1" >> $config_h
1420 echo "ARCH=m68k" >> $config_mak
1421 echo "#define HOST_M68K 1" >> $config_h
1424 echo "ARCH=mips" >> $config_mak
1425 echo "#define HOST_MIPS 1" >> $config_h
1428 echo "ARCH=mips64" >> $config_mak
1429 echo "#define HOST_MIPS64 1" >> $config_h
1432 echo "ARCH=ppc" >> $config_mak
1433 echo "#define HOST_PPC 1" >> $config_h
1436 echo "ARCH=ppc64" >> $config_mak
1437 echo "#define HOST_PPC64 1" >> $config_h
1440 echo "ARCH=s390" >> $config_mak
1441 echo "#define HOST_S390 1" >> $config_h
1444 echo "ARCH=sparc" >> $config_mak
1445 echo "#define HOST_SPARC 1" >> $config_h
1448 echo "ARCH=sparc64" >> $config_mak
1449 echo "#define HOST_SPARC64 1" >> $config_h
1452 echo "Unsupported CPU = $cpu"
1456 if test "$sparse" = "yes" ; then
1457 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1458 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1459 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1461 if test "$strip_opt" = "yes" ; then
1462 echo "STRIP_OPT=-s" >> $config_mak
1464 if test "$bigendian" = "yes" ; then
1465 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1466 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1468 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1469 if test "$mingw32" = "yes" ; then
1470 echo "CONFIG_WIN32=yes" >> $config_mak
1471 echo "#define CONFIG_WIN32 1" >> $config_h
1474 #include <byteswap.h>
1475 int main(void) { return bswap_32(0); }
1477 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1478 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1481 #include <sys/endian.h>
1482 #include <sys/types.h>
1483 #include <machine/bswap.h>
1484 int main(void) { return bswap32(0); }
1486 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1487 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1491 if [ "$openbsd" = "yes" ] ; then
1492 echo "#define ENOTSUP 4096" >> $config_h
1495 if test "$darwin" = "yes" ; then
1496 echo "CONFIG_DARWIN=yes" >> $config_mak
1497 echo "#define CONFIG_DARWIN 1" >> $config_h
1500 if test "$aix" = "yes" ; then
1501 echo "CONFIG_AIX=yes" >> $config_mak
1502 echo "#define CONFIG_AIX 1" >> $config_h
1505 if test "$solaris" = "yes" ; then
1506 echo "CONFIG_SOLARIS=yes" >> $config_mak
1507 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1508 if test "$needs_libsunmath" = "yes" ; then
1509 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1510 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1513 if test -n "$sparc_cpu"; then
1514 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1515 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1517 if test "$gdbstub" = "yes" ; then
1518 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1519 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1521 if test "$gprof" = "yes" ; then
1522 echo "TARGET_GPROF=yes" >> $config_mak
1523 echo "#define HAVE_GPROF 1" >> $config_h
1525 if test "$static" = "yes" ; then
1526 echo "CONFIG_STATIC=yes" >> $config_mak
1527 echo "#define CONFIG_STATIC 1" >> $config_h
1529 if test $profiler = "yes" ; then
1530 echo "#define CONFIG_PROFILER 1" >> $config_h
1532 if test "$slirp" = "yes" ; then
1533 echo "CONFIG_SLIRP=yes" >> $config_mak
1534 echo "#define CONFIG_SLIRP 1" >> $config_h
1536 if test "$vde" = "yes" ; then
1537 echo "CONFIG_VDE=yes" >> $config_mak
1538 echo "#define CONFIG_VDE 1" >> $config_h
1539 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1541 for card
in $audio_card_list; do
1542 def
=CONFIG_
`echo $card | tr '[:lower:]' '[:upper:]'`
1543 echo "$def=yes" >> $config_mak
1544 echo "#define $def 1" >> $config_h
1546 echo "#define AUDIO_DRIVERS \\" >> $config_h
1547 for drv
in $audio_drv_list; do
1548 echo " &${drv}_audio_driver, \\" >>$config_h
1549 def
=CONFIG_
`echo $drv | tr '[:lower:]' '[:upper:]'`
1550 echo "$def=yes" >> $config_mak
1551 if test "$drv" = "fmod"; then
1552 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1553 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1554 elif test "$drv" = "oss"; then
1555 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1559 if test "$mixemu" = "yes" ; then
1560 echo "CONFIG_MIXEMU=yes" >> $config_mak
1561 echo "#define CONFIG_MIXEMU 1" >> $config_h
1563 if test "$vnc_tls" = "yes" ; then
1564 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1565 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1566 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1567 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1569 if test "$vnc_sasl" = "yes" ; then
1570 echo "CONFIG_VNC_SASL=yes" >> $config_mak
1571 echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak
1572 echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak
1573 echo "#define CONFIG_VNC_SASL 1" >> $config_h
1575 if test "$fnmatch" = "yes" ; then
1576 echo "#define HAVE_FNMATCH_H 1" >> $config_h
1578 qemu_version
=`head $source_path/VERSION`
1579 echo "VERSION=$qemu_version" >>$config_mak
1580 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1581 echo "#define KVM_VERSION \"kvm-devel\"" >> $config_h
1583 echo "SRC_PATH=$source_path" >> $config_mak
1584 if [ "$source_path_used" = "yes" ]; then
1585 echo "VPATH=$source_path" >> $config_mak
1587 echo "TARGET_DIRS=$target_list" >> $config_mak
1588 if [ "$build_docs" = "yes" ] ; then
1589 echo "BUILD_DOCS=yes" >> $config_mak
1591 if test "$static" = "yes"; then
1596 if test "$sdl1" = "yes" ; then
1597 echo "#define CONFIG_SDL 1" >> $config_h
1598 echo "CONFIG_SDL=yes" >> $config_mak
1599 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1600 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1601 elif test "$sdl_x11" = "yes" ; then
1602 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
1604 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1606 if [ "${aa}" = "yes" ] ; then
1607 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1609 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1612 if test "$cocoa" = "yes" ; then
1613 echo "#define CONFIG_COCOA 1" >> $config_h
1614 echo "CONFIG_COCOA=yes" >> $config_mak
1616 if test "$curses" = "yes" ; then
1617 echo "#define CONFIG_CURSES 1" >> $config_h
1618 echo "CONFIG_CURSES=yes" >> $config_mak
1619 echo "CURSES_LIBS=-lcurses" >> $config_mak
1621 if test "$brlapi" = "yes" ; then
1622 echo "CONFIG_BRLAPI=yes" >> $config_mak
1623 echo "#define CONFIG_BRLAPI 1" >> $config_h
1624 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1626 if test "$bluez" = "yes" ; then
1627 echo "CONFIG_BLUEZ=yes" >> $config_mak
1628 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1629 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1630 echo "#define CONFIG_BLUEZ 1" >> $config_h
1632 if test "$aio" = "yes" ; then
1633 echo "#define CONFIG_AIO 1" >> $config_h
1634 echo "CONFIG_AIO=yes" >> $config_mak
1636 if test "$blobs" = "yes" ; then
1637 echo "INSTALL_BLOBS=yes" >> $config_mak
1639 if test "$iovec" = "yes" ; then
1640 echo "#define HAVE_IOVEC 1" >> $config_h
1642 if test "$preadv" = "yes" ; then
1643 echo "#define HAVE_PREADV 1" >> $config_h
1645 if test "$fdt" = "yes" ; then
1646 echo "#define HAVE_FDT 1" >> $config_h
1647 echo "FDT_LIBS=-lfdt" >> $config_mak
1649 if test "$signalfd" = "yes" ; then
1650 echo "#define CONFIG_signalfd 1" >> $config_h
1652 if test "$eventfd" = "yes" ; then
1653 echo "#define CONFIG_eventfd 1" >> $config_h
1656 # XXX: suppress that
1657 if [ "$bsd" = "yes" ] ; then
1658 echo "#define O_LARGEFILE 0" >> $config_h
1659 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1660 echo "#define HOST_BSD 1" >> $config_h
1663 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1668 echo "HOST_USB=linux" >> $config_mak
1671 echo "HOST_USB=bsd" >> $config_mak
1674 echo "HOST_USB=stub" >> $config_mak
1679 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1680 tools
="qemu-img\$(EXESUF) $tools"
1681 if [ "$linux" = "yes" ] ; then
1682 tools
="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
1685 echo "TOOLS=$tools" >> $config_mak
1687 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~
$config_h
1689 for target
in $target_list; do
1690 target_dir
="$target"
1691 config_mak
=$target_dir/config.mak
1692 config_h
=$target_dir/config.h
1693 target_cpu
=`echo $target | cut -d '-' -f 1`
1694 target_bigendian
="no"
1695 [ "$target_cpu" = "armeb" ] && target_bigendian
=yes
1696 [ "$target_cpu" = "m68k" ] && target_bigendian
=yes
1697 [ "$target_cpu" = "mips" ] && target_bigendian
=yes
1698 [ "$target_cpu" = "mipsn32" ] && target_bigendian
=yes
1699 [ "$target_cpu" = "mips64" ] && target_bigendian
=yes
1700 [ "$target_cpu" = "ppc" ] && target_bigendian
=yes
1701 [ "$target_cpu" = "ppcemb" ] && target_bigendian
=yes
1702 [ "$target_cpu" = "ppc64" ] && target_bigendian
=yes
1703 [ "$target_cpu" = "ppc64abi32" ] && target_bigendian
=yes
1704 [ "$target_cpu" = "sh4eb" ] && target_bigendian
=yes
1705 [ "$target_cpu" = "sparc" ] && target_bigendian
=yes
1706 [ "$target_cpu" = "sparc64" ] && target_bigendian
=yes
1707 [ "$target_cpu" = "sparc32plus" ] && target_bigendian
=yes
1709 target_user_only
="no"
1710 target_linux_user
="no"
1711 target_darwin_user
="no"
1712 target_bsd_user
="no"
1714 ${target_cpu}-softmmu)
1715 target_softmmu
="yes"
1717 ${target_cpu}-linux-user)
1718 target_user_only
="yes"
1719 target_linux_user
="yes"
1721 ${target_cpu}-darwin-user)
1722 target_user_only
="yes"
1723 target_darwin_user
="yes"
1725 ${target_cpu}-bsd-user)
1726 target_user_only
="yes"
1727 target_bsd_user
="yes"
1730 echo "ERROR: Target '$target' not recognised"
1735 if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1736 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
1737 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
1738 echo "To build QEMU without graphical output configure with --disable-gfx-check"
1739 echo "Note that this will disable all output from the virtual graphics card"
1740 echo "except through VNC or curses."
1744 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1746 test -f $config_h && mv $config_h ${config_h}~
1748 mkdir
-p $target_dir
1749 mkdir
-p $target_dir/fpu
1750 mkdir
-p $target_dir/tcg
1751 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1752 mkdir
-p $target_dir/nwfpe
1756 # don't use ln -sf as not all "ln -sf" over write the file/link
1758 rm -f $target_dir/Makefile
1759 ln -s $source_path/Makefile.target
$target_dir/Makefile
1762 echo "# Automatically generated by configure - do not modify" > $config_mak
1763 echo "/* Automatically generated by configure - do not modify */" > $config_h
1766 echo "include ../config-host.mak" >> $config_mak
1767 echo "#include \"../config-host.h\"" >> $config_h
1772 interp_prefix1
=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1773 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1776 disable_cpu_emulation
() {
1777 if test $cpu_emulation = "no"; then
1778 echo "#define NO_CPU_EMULATION 1" >> $config_h
1779 echo "NO_CPU_EMULATION=1" >> $config_mak
1784 if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
1785 \
( "$cpu" = "i386" -o "$cpu" = "x86_64" -o "$cpu" = "ia64" -o "$cpu" = "powerpc" \
); then
1786 echo "#define USE_KVM 1" >> $config_h
1787 echo "USE_KVM=1" >> $config_mak
1788 echo "CONFIG_KVM_KERNEL_INC=$kerneldir/include" >> $config_mak
1789 if test $kvm_cap_pit = "yes" ; then
1790 echo "USE_KVM_PIT=1" >> $config_mak
1791 echo "#define USE_KVM_PIT 1" >> $config_h
1793 if test $kvm_cap_device_assignment = "yes" ; then
1794 echo "USE_KVM_DEVICE_ASSIGNMENT=1" >> $config_mak
1795 echo "#define USE_KVM_DEVICE_ASSIGNMENT 1" >> $config_h
1797 disable_cpu_emulation
1801 if [ use_upstream_kvm
= yes ]; then
1803 # Make sure the target and host cpus are compatible
1804 if test "$kvm" = "yes" -a ! \
( "$target_cpu" = "$cpu" -o \
1805 \
( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \
) -o \
1806 \
( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \
) -o \
1807 \
( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \
) \
) ; then
1810 # Disable KVM for linux-user
1811 if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1817 case "$target_cpu" in
1819 echo "TARGET_ARCH=i386" >> $config_mak
1820 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1821 echo "#define TARGET_I386 1" >> $config_h
1822 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1824 echo "#define USE_KQEMU 1" >> $config_h
1826 if test "$kvm" = "yes" ; then
1827 echo "CONFIG_KVM=yes" >> $config_mak
1828 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1829 echo "#define CONFIG_KVM 1" >> $config_h
1834 echo "TARGET_ARCH=x86_64" >> $config_mak
1835 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1836 echo "#define TARGET_I386 1" >> $config_h
1837 echo "#define TARGET_X86_64 1" >> $config_h
1838 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1840 echo "#define USE_KQEMU 1" >> $config_h
1845 echo "TARGET_ARCH=ia64" >> $config_mak
1846 echo "#define TARGET_ARCH \"ia64\"" >> $config_h
1847 echo "#define TARGET_IA64 1" >> $config_h
1849 if [ use_upstream_kvm
= yes ]; then
1850 if test "$kvm" = "yes" ; then
1851 echo "CONFIG_KVM=yes" >> $config_mak
1852 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1853 echo "#define CONFIG_KVM 1" >> $config_h
1858 echo "TARGET_ARCH=alpha" >> $config_mak
1859 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1860 echo "#define TARGET_ALPHA 1" >> $config_h
1863 echo "TARGET_ARCH=arm" >> $config_mak
1864 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1865 echo "#define TARGET_ARM 1" >> $config_h
1868 gdb_xml_files
="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1871 echo "TARGET_ARCH=cris" >> $config_mak
1872 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1873 echo "#define TARGET_CRIS 1" >> $config_h
1877 echo "TARGET_ARCH=m68k" >> $config_mak
1878 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1879 echo "#define TARGET_M68K 1" >> $config_h
1881 gdb_xml_files
="cf-core.xml cf-fp.xml"
1884 echo "TARGET_ARCH=mips" >> $config_mak
1885 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1886 echo "#define TARGET_MIPS 1" >> $config_h
1887 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1890 echo "TARGET_ARCH=mipsn32" >> $config_mak
1891 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1892 echo "#define TARGET_MIPS 1" >> $config_h
1893 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1896 echo "TARGET_ARCH=mips64" >> $config_mak
1897 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1898 echo "#define TARGET_MIPS 1" >> $config_h
1899 echo "#define TARGET_MIPS64 1" >> $config_h
1900 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1903 echo "TARGET_ARCH=ppc" >> $config_mak
1904 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1905 echo "#define TARGET_PPC 1" >> $config_h
1906 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1909 echo "TARGET_ARCH=ppcemb" >> $config_mak
1910 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1911 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1912 echo "#define TARGET_PPC 1" >> $config_h
1913 echo "#define TARGET_PPCEMB 1" >> $config_h
1914 if test "$kvm" = "yes" ; then
1915 echo "CONFIG_KVM=yes" >> $config_mak
1916 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1917 echo "#define CONFIG_KVM 1" >> $config_h
1919 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1922 echo "TARGET_ARCH=ppc64" >> $config_mak
1923 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1924 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1925 echo "#define TARGET_PPC 1" >> $config_h
1926 echo "#define TARGET_PPC64 1" >> $config_h
1927 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1930 echo "TARGET_ARCH=ppc64" >> $config_mak
1931 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1932 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1933 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1934 echo "#define TARGET_PPC 1" >> $config_h
1935 echo "#define TARGET_PPC64 1" >> $config_h
1936 echo "#define TARGET_ABI32 1" >> $config_h
1937 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1940 echo "TARGET_ARCH=sh4" >> $config_mak
1941 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1942 echo "#define TARGET_SH4 1" >> $config_h
1947 echo "TARGET_ARCH=sparc" >> $config_mak
1948 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1949 echo "#define TARGET_SPARC 1" >> $config_h
1952 echo "TARGET_ARCH=sparc64" >> $config_mak
1953 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1954 echo "#define TARGET_SPARC 1" >> $config_h
1955 echo "#define TARGET_SPARC64 1" >> $config_h
1959 echo "TARGET_ARCH=sparc64" >> $config_mak
1960 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1961 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1962 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1963 echo "#define TARGET_SPARC 1" >> $config_h
1964 echo "#define TARGET_SPARC64 1" >> $config_h
1965 echo "#define TARGET_ABI32 1" >> $config_h
1968 echo "Unsupported target CPU"
1972 if test "$target_bigendian" = "yes" ; then
1973 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1974 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1976 if test "$target_softmmu" = "yes" ; then
1977 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1978 echo "#define CONFIG_SOFTMMU 1" >> $config_h
1980 if test "$target_user_only" = "yes" ; then
1981 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1982 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1984 if test "$target_linux_user" = "yes" ; then
1985 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1986 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1988 if test "$target_darwin_user" = "yes" ; then
1989 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1990 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1993 if test ! -z "$gdb_xml_files" ; then
1994 for x
in $gdb_xml_files; do
1995 list
="$list $source_path/gdb-xml/$x"
1998 echo "TARGET_XML_FILES=$list" >> $config_mak
2000 if test "$target_cpu" = "arm" \
2001 -o "$target_cpu" = "armeb" \
2002 -o "$target_cpu" = "m68k" \
2003 -o "$target_cpu" = "mips" \
2004 -o "$target_cpu" = "mipsel" \
2005 -o "$target_cpu" = "mipsn32" \
2006 -o "$target_cpu" = "mipsn32el" \
2007 -o "$target_cpu" = "mips64" \
2008 -o "$target_cpu" = "mips64el" \
2009 -o "$target_cpu" = "ppc" \
2010 -o "$target_cpu" = "ppc64" \
2011 -o "$target_cpu" = "ppc64abi32" \
2012 -o "$target_cpu" = "ppcemb" \
2013 -o "$target_cpu" = "sparc" \
2014 -o "$target_cpu" = "sparc64" \
2015 -o "$target_cpu" = "sparc32plus"; then
2016 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
2017 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
2019 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
2020 echo "TARGET_HAS_BFLT=yes" >> $config_mak
2021 echo "#define TARGET_HAS_BFLT 1" >> $config_h
2023 if test "$target_user_only" = "yes" \
2024 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
2025 echo "#define USE_NPTL 1" >> $config_h
2027 # 32 bit ELF loader in addition to native 64 bit loader?
2028 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
2029 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
2030 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
2032 if test "$target_bsd_user" = "yes" ; then
2033 echo "CONFIG_BSD_USER=yes" >> $config_mak
2034 echo "#define CONFIG_BSD_USER 1" >> $config_h
2037 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~
$config_h
2039 done # for target in $targets
2041 # build tree in object directory if source path is different from current one
2042 if test "$source_path_used" = "yes" ; then
2043 DIRS
="tests tests/cris slirp audio"
2044 FILES
="Makefile tests/Makefile"
2045 FILES
="$FILES tests/cris/Makefile tests/cris/.gdbinit"
2046 FILES
="$FILES tests/test-mmap.c"
2047 for dir
in $DIRS ; do
2050 # remove the link and recreate it, as not all "ln -sf" overwrite the link
2051 for f
in $FILES ; do
2053 ln -s $source_path/$f $f