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"
40 # parse CC options first
42 optarg
=`expr "x$opt" : 'x[^=]*=\(.*\)'`
44 --cross-prefix=*) cross_prefix
="$optarg"
52 # Using uname is really, really broken. Once we have the right set of checks
53 # we can eliminate it's usage altogether
55 cc
="${cross_prefix}${cc}"
56 ar="${cross_prefix}${ar}"
57 strip
="${cross_prefix}${strip}"
58 objcopy
="${cross_prefix}${objcopy}"
59 ld
="${cross_prefix}${ld}"
61 # check that the C compiler works.
66 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev
/null
2> /dev
/null
; then
69 echo "ERROR: \"$cc\" either does not exist or does not work"
78 int main(void) { return 0; }
80 $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev
/null
2> /dev
/null
83 if check_define __i386__
; then
85 elif check_define __x86_64__
; then
87 elif check_define __sparc__
; then
88 # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
89 # They must be specified using --sparc_cpu
90 if check_define __arch64__
; then
95 elif check_define _ARCH_PPC
; then
96 if check_define _ARCH_PPC64
; then
107 i386|i486|i586|i686|i86pc|BePC
)
209 if check_define __linux__
; then
211 elif check_define _WIN32
; then
213 elif check_define __OpenBSD__
; then
215 elif check_define __sun__
; then
223 OS_CFLAGS
="-mno-cygwin"
224 if [ "$cpu" = "i386" ] ; then
227 audio_possible_drivers
="sdl"
231 if [ "$cpu" = "i386" ] ; then
234 audio_possible_drivers
="dsound sdl fmod"
238 audio_possible_drivers
="oss sdl esd pa"
239 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
246 audio_possible_drivers
="oss sdl esd pa"
247 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
254 audio_possible_drivers
="oss sdl esd pa"
255 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
263 audio_possible_drivers
="oss sdl esd"
270 audio_possible_drivers
="oss sdl esd"
276 # 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
277 if [ "$cpu" = "i386" ] ; then
278 is_x86_64
=`sysctl -n hw.optional.x86_64`
279 [ "$is_x86_64" = "1" ] && cpu
=x86_64
281 if [ "$cpu" = "x86_64" ] ; then
282 OS_CFLAGS
="-arch x86_64"
283 LDFLAGS
="-arch x86_64"
285 OS_CFLAGS
="-mdynamic-no-pic"
289 audio_drv_list
="coreaudio"
290 audio_possible_drivers
="coreaudio sdl fmod"
291 OS_LDFLAGS
="-framework CoreFoundation -framework IOKit"
297 needs_libsunmath
="no"
298 solarisrev
=`uname -r | cut -f2 -d.`
299 # have to select again, because `uname -m` returns i86pc
300 # even on an x86_64 box.
301 solariscpu
=`isainfo -k`
302 if test "${solariscpu}" = "amd64" ; then
305 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
306 if test "$solarisrev" -le 9 ; then
307 if test -f /opt
/SUNWspro
/prod
/lib
/libsunmath.so
.1; then
308 needs_libsunmath
="yes"
310 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
311 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
312 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
313 echo "Studio 11 can be downloaded from www.sun.com."
317 if test "$solarisrev" -ge 9 ; then
321 if test -f /usr
/include
/sys
/soundcard.h
; then
324 audio_possible_drivers
="oss sdl"
333 audio_possible_drivers
="oss alsa sdl esd pa"
338 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
340 audio_possible_drivers
="$audio_possible_drivers fmod"
345 if [ "$bsd" = "yes" ] ; then
346 if [ "$darwin" != "yes" ] ; then
354 source_path
=`dirname "$0"`
355 source_path_used
="no"
357 if [ -z "$source_path" ]; then
360 source_path
=`cd "$source_path"; pwd`
362 [ -f "$workdir/vl.c" ] || source_path_used
="yes"
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=*) EXTRA_CFLAGS
="$optarg"
390 --extra-ldflags=*) EXTRA_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-debug-tcg) debug_tcg
="yes"
414 --disable-debug-tcg) debug_tcg
="no"
417 # Enable debugging options that aren't excessively noisy
422 --enable-sparse) sparse
="yes"
424 --disable-sparse) sparse
="no"
426 --disable-strip) strip_opt
="no"
428 --disable-vnc-tls) vnc_tls
="no"
430 --disable-vnc-sasl) vnc_sasl
="no"
432 --disable-slirp) slirp
="no"
434 --disable-vde) vde
="no"
436 --disable-kqemu) kqemu
="no"
438 --disable-xen) xen
="no"
440 --disable-brlapi) brlapi
="no"
442 --disable-bluez) bluez
="no"
444 --disable-kvm) kvm
="no"
446 --enable-profiler) profiler
="yes"
451 audio_drv_list
="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
453 --disable-system) softmmu
="no"
455 --enable-system) softmmu
="yes"
457 --disable-linux-user) linux_user
="no"
459 --enable-linux-user) linux_user
="yes"
461 --disable-darwin-user) darwin_user
="no"
463 --enable-darwin-user) darwin_user
="yes"
465 --disable-bsd-user) bsd_user
="no"
467 --enable-bsd-user) bsd_user
="yes"
469 --enable-guest-base) guest_base
="yes"
471 --disable-guest-base) guest_base
="no"
473 --enable-uname-release=*) uname_release
="$optarg"
478 v7|v8
) SP_CFLAGS
="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
479 target_arch2
="sparc"; cpu
="sparc" ;;
480 v8plus|v8plusa
) SP_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
481 target_arch2
="sparc"; cpu
="sparc" ;;
482 v9
) SP_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m64"
483 target_arch2
="sparc64"; cpu
="sparc64" ;;
484 *) echo "undefined SPARC architecture. Exiting";exit 1;;
487 --enable-werror) werror
="yes"
489 --disable-werror) werror
="no"
491 --disable-curses) curses
="no"
493 --disable-curl) curl
="no"
495 --disable-nptl) nptl
="no"
497 --enable-mixemu) mixemu
="yes"
499 --disable-pthread) pthread
="no"
501 --disable-aio) aio
="no"
503 --enable-io-thread) io_thread
="yes"
505 --disable-blobs) blobs
="no"
507 --kerneldir=*) kerneldir
="$optarg"
509 --with-pkgversion=*) pkgversion
=" ($optarg)"
511 --disable-docs) build_docs
="no"
513 *) echo "ERROR: unknown option $opt"; show_help
="yes"
518 # default flags for all hosts
519 CFLAGS
="$CFLAGS -g -fno-strict-aliasing"
520 if test "$debug" = "no" ; then
523 CFLAGS
="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
524 LDFLAGS
="$LDFLAGS -g"
526 # Consult white-list to determine whether to enable werror
527 # by default. Only enable by default for git builds
528 if test -z "$werror" ; then
529 z_version
=`cut -f3 -d. $source_path/VERSION`
530 if test "$z_version" = "50" -a \
531 "$linux" = "yes" ; then
538 if test "$werror" = "yes" ; then
539 CFLAGS
="$CFLAGS -Werror"
542 if test "$solaris" = "no" ; then
543 if ld
--version 2>/dev
/null |
grep "GNU ld" >/dev
/null
2>/dev
/null
; then
544 LDFLAGS
="$LDFLAGS -Wl,--warn-common"
549 # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
550 # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
554 sparc
) if test -z "$sparc_cpu" ; then
555 ARCH_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
558 ARCH_CFLAGS
="${SP_CFLAGS}"
559 ARCH_LDFLAGS
="${SP_LDFLAGS}"
561 ARCH_CFLAGS
="$ARCH_CFLAGS -ffixed-g2 -ffixed-g3"
562 if test "$solaris" = "no" ; then
563 ARCH_CFLAGS
="$ARCH_CFLAGS -ffixed-g1 -ffixed-g6"
566 sparc64
) if test -z "$sparc_cpu" ; then
567 ARCH_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_v9__"
570 ARCH_CFLAGS
="${SP_CFLAGS}"
571 ARCH_LDFLAGS
="${SP_LDFLAGS}"
573 if test "$solaris" = "no" ; then
574 ARCH_CFLAGS
="$ARCH_CFLAGS -ffixed-g5 -ffixed-g6 -ffixed-g7"
576 ARCH_CFLAGS
="$ARCH_CFLAGS -ffixed-g1 -ffixed-g5 -ffixed-g6 -ffixed-g7"
580 ARCH_CFLAGS
="-march=z900"
585 host_guest_base
="yes"
590 host_guest_base
="yes"
593 host_guest_base
="yes"
596 host_guest_base
="yes"
600 [ -z "$guest_base" ] && guest_base
="$host_guest_base"
602 if test x
"$show_help" = x
"yes" ; then
605 Usage: configure [options]
606 Options: [defaults in brackets after descriptions]
609 echo "Standard options:"
610 echo " --help print this message"
611 echo " --prefix=PREFIX install in PREFIX [$prefix]"
612 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
613 echo " use %M for cpu name [$interp_prefix]"
614 echo " --target-list=LIST set target list [$target_list]"
616 echo "kqemu kernel acceleration support:"
617 echo " --disable-kqemu disable kqemu support"
619 echo "Advanced options (experts only):"
620 echo " --source-path=PATH path of source code [$source_path]"
621 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
622 echo " --cc=CC use C compiler CC [$cc]"
623 echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
624 echo " --extra-cflags=CFLAGS append extra C compiler flags CFLAGS"
625 echo " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS"
626 echo " --make=MAKE use specified make [$make]"
627 echo " --install=INSTALL use specified install [$install]"
628 echo " --static enable static build [$static]"
629 echo " --enable-debug-tcg enable TCG debugging"
630 echo " --disable-debug-tcg disable TCG debugging (default)"
631 echo " --enable-debug enable common debug build options"
632 echo " --enable-sparse enable sparse checker"
633 echo " --disable-sparse disable sparse checker (default)"
634 echo " --disable-strip disable stripping binaries"
635 echo " --disable-werror disable compilation abort on warning"
636 echo " --disable-sdl disable SDL"
637 echo " --enable-cocoa enable COCOA (Mac OS X only)"
638 echo " --audio-drv-list=LIST set audio drivers list:"
639 echo " Available drivers: $audio_possible_drivers"
640 echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
641 echo " Available cards: $audio_possible_cards"
642 echo " --enable-mixemu enable mixer emulation"
643 echo " --disable-xen disable xen backend driver support"
644 echo " --disable-brlapi disable BrlAPI"
645 echo " --disable-vnc-tls disable TLS encryption for VNC server"
646 echo " --disable-vnc-sasl disable SASL encryption for VNC server"
647 echo " --disable-curses disable curses output"
648 echo " --disable-curl disable curl connectivity"
649 echo " --disable-bluez disable bluez stack connectivity"
650 echo " --disable-kvm disable KVM acceleration support"
651 echo " --disable-nptl disable usermode NPTL support"
652 echo " --enable-system enable all system emulation targets"
653 echo " --disable-system disable all system emulation targets"
654 echo " --enable-linux-user enable all linux usermode emulation targets"
655 echo " --disable-linux-user disable all linux usermode emulation targets"
656 echo " --enable-darwin-user enable all darwin usermode emulation targets"
657 echo " --disable-darwin-user disable all darwin usermode emulation targets"
658 echo " --enable-bsd-user enable all BSD usermode emulation targets"
659 echo " --disable-bsd-user disable all BSD usermode emulation targets"
660 echo " --enable-guest-base enable GUEST_BASE support for usermode"
661 echo " emulation targets"
662 echo " --disable-guest-base disable GUEST_BASE support"
663 echo " --fmod-lib path to FMOD library"
664 echo " --fmod-inc path to FMOD includes"
665 echo " --oss-lib path to OSS library"
666 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
667 echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
668 echo " --disable-vde disable support for vde network"
669 echo " --disable-pthread disable pthread support"
670 echo " --disable-aio disable AIO support"
671 echo " --enable-io-thread enable IO thread"
672 echo " --disable-blobs disable installing provided firmware blobs"
673 echo " --kerneldir=PATH look for kernel includes in PATH"
675 echo "NOTE: The object files are built at the place where configure is launched"
679 if test "$mingw32" = "yes" ; then
685 OS_CFLAGS
="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501"
688 if test ! -x "$(which cgcc 2>/dev/null)"; then
693 # Solaris specific configure tool chain decisions
695 if test "$solaris" = "yes" ; then
696 solinst
=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
697 if test -z "$solinst" ; then
698 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
699 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
700 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
703 if test "$solinst" = "/usr/sbin/install" ; then
704 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
705 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
706 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
709 sol_ar
=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
710 if test -z "$sol_ar" ; then
711 echo "Error: No path includes ar"
712 if test -f /usr
/ccs
/bin
/ar ; then
713 echo "Add /usr/ccs/bin to your path and rerun configure"
720 if test -z "$target_list" ; then
721 # these targets are portable
722 if [ "$softmmu" = "yes" ] ; then
743 # the following are Linux specific
744 if [ "$linux_user" = "yes" ] ; then
745 target_list
="${target_list}\
753 microblaze-linux-user \
758 ppc64abi32-linux-user \
763 sparc32plus-linux-user \
766 # the following are Darwin specific
767 if [ "$darwin_user" = "yes" ] ; then
768 target_list
="$target_list i386-darwin-user ppc-darwin-user "
770 # the following are BSD specific
771 if [ "$bsd_user" = "yes" ] ; then
772 target_list
="${target_list}\
780 target_list
=`echo "$target_list" | sed -e 's/,/ /g'`
782 if test -z "$target_list" ; then
783 echo "No targets enabled"
787 if test -z "$cross_prefix" ; then
790 # big/little endian test
792 #include <inttypes.h>
793 int main(int argc, char ** argv){
794 volatile uint32_t i=0x01234567;
795 return (*((uint8_t*)(&i))) == 0x67;
799 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
800 $TMPE && bigendian
="yes"
802 echo big
/little
test failed
807 # if cross compiling, cannot launch a program, so make a static guess
808 if test "$cpu" = "armv4b" \
812 -o "$cpu" = "mips64" \
814 -o "$cpu" = "ppc64" \
816 -o "$cpu" = "sparc" \
817 -o "$cpu" = "sparc64"; then
823 # host long bits test
825 if test "$cpu" = "x86_64" \
826 -o "$cpu" = "alpha" \
828 -o "$cpu" = "sparc64" \
829 -o "$cpu" = "ppc64"; then
833 # Check host NPTL support
836 #include <linux/futex.h>
839 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
845 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev
/null
2> /dev
/null
; then
851 ##########################################
856 int main(void) { zlibVersion(); return 0; }
858 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev
/null
2> /dev
/null
; then
862 echo "Error: zlib check failed"
863 echo "Make sure to have the zlib libs and headers installed."
868 ##########################################
871 if test "$xen" = "yes" ; then
875 int main(void) { xs_daemon_open(); xc_interface_open(); return 0; }
877 if $cc $CFLAGS $ARCH_CFLAGS -c -o $TMPO $TMPC $LDFLAGS -lxenstore -lxenctrl 2> /dev
/null
> /dev
/null
; then
884 ##########################################
889 if test "$sdl" = "yes" ; then
890 sdl_config
="sdl-config"
896 #undef main /* We don't want SDL to override our main() */
897 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
899 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
900 _sdlversion
=`$sdl_config --version | sed 's/[^0-9]//g'`
901 if test "$_sdlversion" -lt 121 ; then
904 if test "$cocoa" = "no" ; then
909 # static link with sdl ?
910 if test "$sdl" = "yes" ; then
912 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa
="yes"
913 sdl_static_libs
=`$sdl_config --static-libs 2>/dev/null`
914 if [ "$aa" = "yes" ] ; then
915 sdl_static_libs
="$sdl_static_libs `aalib-config --static-libs`"
918 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev
/null
2> /dev
/null
; then
922 fi # sdl compile test
924 # Make sure to disable cocoa if sdl was set
925 if test "$sdl" = "yes" ; then
927 audio_drv_list
="`echo $audio_drv_list | sed s,coreaudio,,g`"
931 if test "$sdl" = "yes" ; then
934 #if defined(SDL_VIDEO_DRIVER_X11)
935 #include <X11/XKBlib.h>
937 #error No x11 support
939 int main(void) { return 0; }
941 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
946 ##########################################
948 if test "$vnc_tls" = "yes" ; then
950 #include <gnutls/gnutls.h>
951 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
953 vnc_tls_cflags
=`pkg-config --cflags gnutls 2> /dev/null`
954 vnc_tls_libs
=`pkg-config --libs gnutls 2> /dev/null`
955 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
956 $vnc_tls_libs > /dev
/null
2> /dev
/null
; then
963 ##########################################
965 if test "$vnc_sasl" = "yes" ; then
967 #include <sasl/sasl.h>
969 int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
971 # Assuming Cyrus-SASL installed in /usr prefix
973 vnc_sasl_libs
="-lsasl2"
974 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \
975 $vnc_sasl_libs 2> /dev
/null
> /dev
/null
; then
982 ##########################################
983 # fnmatch() probe, used for ACL routines
989 fnmatch("foo", "foo", 0);
993 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
997 ##########################################
998 # vde libraries probe
999 if test "$vde" = "yes" ; then
1001 #include <libvdeplug.h>
1004 struct vde_open_args a = {0, 0, 0};
1005 vde_open("", "", &a);
1009 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev
/null
2> /dev
/null
; then
1016 ##########################################
1017 # Sound support libraries probe
1028 int main(void) { $exp }
1030 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev
/null
2> /dev
/null
; then
1034 echo "Error: $drv check failed"
1035 echo "Make sure to have the $drv libs and headers installed."
1041 audio_drv_list
=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
1042 for drv
in $audio_drv_list; do
1045 audio_drv_probe
$drv alsa
/asoundlib.h
-lasound \
1046 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
1050 if test -z $fmod_lib ||
test -z $fmod_inc; then
1052 echo "Error: You must specify path to FMOD library and headers"
1053 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1057 audio_drv_probe
$drv fmod.h
$fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1061 audio_drv_probe
$drv esd.h
-lesd 'return esd_play_stream(0, 0, "", 0);'
1065 audio_drv_probe
$drv pulse
/simple.h
-lpulse-simple \
1066 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
1069 oss|sdl|core|wav|dsound
)
1070 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1074 echo "$audio_possible_drivers" |
grep -q "\<$drv\>" ||
{
1076 echo "Error: Unknown driver '$drv' selected"
1077 echo "Possible drivers are: $audio_possible_drivers"
1085 ##########################################
1088 if test -z "$brlapi" ; then
1092 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1094 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev
/null
2> /dev
/null
; then
1096 fi # brlapi compile test
1099 ##########################################
1102 if test "$curses" = "yes" ; then
1108 #define resize_term resizeterm
1110 int main(void) { resize_term(0, 0); return curses_version(); }
1112 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lncurses > /dev
/null
2> /dev
/null
; then
1115 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev
/null
2> /dev
/null
; then
1120 ##########################################
1123 if test "$curl" = "yes" ; then
1126 #include <curl/curl.h>
1127 int main(void) { return curl_easy_init(); }
1129 curl_libs
=`curl-config --libs 2>/dev/null`
1130 if $cc $ARCH_CFLAGS $curl_libs -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1135 ##########################################
1136 # bluez support probe
1137 if test "$bluez" = "yes" ; then
1138 `pkg-config bluez 2> /dev/null` || bluez
="no"
1140 if test "$bluez" = "yes" ; then
1142 #include <bluetooth/bluetooth.h>
1143 int main(void) { return bt_error(0); }
1145 bluez_cflags
=`pkg-config --cflags bluez 2> /dev/null`
1146 bluez_libs
=`pkg-config --libs bluez 2> /dev/null`
1147 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
1148 $bluez_libs > /dev
/null
2> /dev
/null
; then
1155 ##########################################
1157 if test "$kvm" = "yes" ; then
1159 #include <linux/kvm.h>
1160 #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
1161 #error Invalid KVM version
1163 #if !defined(KVM_CAP_USER_MEMORY)
1164 #error Missing KVM capability KVM_CAP_USER_MEMORY
1166 #if !defined(KVM_CAP_SET_TSS_ADDR)
1167 #error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1169 #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1170 #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1172 int main(void) { return 0; }
1174 if test "$kerneldir" != "" ; then
1175 kvm_cflags
=-I"$kerneldir"/include
1176 if test \
( "$cpu" = "i386" -o "$cpu" = "x86_64" \
) \
1177 -a -d "$kerneldir/arch/x86/include" ; then
1178 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/x86/include"
1179 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1180 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/powerpc/include"
1181 elif test -d "$kerneldir/arch/$cpu/include" ; then
1182 kvm_cflags
="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1187 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
1188 > /dev
/null
2>/dev
/null
; then
1192 if [ -x "`which awk 2>/dev/null`" ] && \
1193 [ -x "`which grep 2>/dev/null`" ]; then
1194 kvmerr
=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1196 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1197 if test "$kvmerr" != "" ; then
1198 kvm
="no - (${kvmerr})\n\
1199 NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \
1200 recent kvm-kmod from http://sourceforge.net/projects/kvm."
1206 ##########################################
1208 PTHREADLIBS_LIST
="-lpthread -lpthreadGC2"
1211 if test "$pthread" = yes; then
1214 #include <pthread.h>
1215 int main(void) { pthread_create(0,0,0,0); return 0; }
1217 for pthread_lib
in $PTHREADLIBS_LIST; do
1218 if $cc $ARCH_CFLAGS -o $TMPE $TMPC $pthread_lib 2> /dev
/null
> /dev
/null
; then
1220 PTHREADLIBS
="$pthread_lib"
1226 if test "$pthread" = no
; then
1231 ##########################################
1234 #include <sys/types.h>
1235 #include <sys/uio.h>
1237 int main(void) { struct iovec iov; return 0; }
1240 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1244 ##########################################
1247 #include <sys/types.h>
1248 #include <sys/uio.h>
1250 int main(void) { preadv; }
1253 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1257 ##########################################
1259 if test "$fdt" = "yes" ; then
1262 int main(void) { return 0; }
1264 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev
/null
> /dev
/null
; then
1270 # Check for xxxat() functions when we are building linux-user
1271 # emulator. This is done because older glibc versions don't
1272 # have syscall stubs for these implemented.
1276 #define _ATFILE_SOURCE
1277 #include <sys/types.h>
1284 /* try to unlink nonexisting file */
1285 return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1288 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
> /dev
/null
; then
1292 # Check for inotify functions when we are building linux-user
1293 # emulator. This is done because older glibc versions don't
1294 # have syscall stubs for these implemented. In that case we
1295 # don't provide them even if kernel supports them.
1299 #include <sys/inotify.h>
1304 /* try to start inotify */
1305 return inotify_init();
1308 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
> /dev
/null
; then
1312 # check if utimensat and futimens are supported
1315 #define _ATFILE_SOURCE
1322 utimensat(AT_FDCWD, "foo", NULL, 0);
1327 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1331 # check if pipe2 is there
1341 pipe2(pipefd, O_CLOEXEC);
1345 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1349 # check if tee/splice is there. vmsplice was added same time.
1360 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
1361 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
1365 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1369 # Check if tools are available to build documentation.
1370 if test "$build_docs" = "yes" -a \
( ! -x "`which texi2html 2>/dev/null`" -o ! -x "`which pod2man 2>/dev/null`" \
) ; then
1374 ##########################################
1380 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1384 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1386 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev
/null
2> /dev
/null
; then
1390 if test "$rt" = "yes" ; then
1394 if test "$mingw32" = "yes" ; then
1395 if test -z "$prefix" ; then
1396 prefix
="c:\\\\Program Files\\\\Qemu"
1403 if test -z "$prefix" ; then
1406 mansuffix
="/share/man"
1407 datasuffix
="/share/qemu"
1408 docsuffix
="/share/doc/qemu"
1412 echo "Install prefix $prefix"
1413 echo "BIOS directory $prefix$datasuffix"
1414 echo "binary directory $prefix$binsuffix"
1415 if test "$mingw32" = "no" ; then
1416 echo "Manual directory $prefix$mansuffix"
1417 echo "ELF interp prefix $interp_prefix"
1419 echo "Source path $source_path"
1420 echo "C compiler $cc"
1421 echo "Host C compiler $host_cc"
1422 echo "ARCH_CFLAGS $ARCH_CFLAGS"
1424 echo "install $install"
1425 echo "host CPU $cpu"
1426 echo "host big endian $bigendian"
1427 echo "target list $target_list"
1428 echo "tcg debug enabled $debug_tcg"
1429 echo "gprof enabled $gprof"
1430 echo "sparse enabled $sparse"
1431 echo "strip binaries $strip_opt"
1432 echo "profiler $profiler"
1433 echo "static build $static"
1434 echo "-Werror enabled $werror"
1435 if test "$darwin" = "yes" ; then
1436 echo "Cocoa support $cocoa"
1438 echo "SDL support $sdl"
1439 if test "$sdl" != "no" ; then
1440 echo "SDL static link $sdl_static"
1442 echo "curses support $curses"
1443 echo "curl support $curl"
1444 echo "mingw32 support $mingw32"
1445 echo "Audio drivers $audio_drv_list"
1446 echo "Extra audio cards $audio_card_list"
1447 echo "Mixer emulation $mixemu"
1448 echo "VNC TLS support $vnc_tls"
1449 if test "$vnc_tls" = "yes" ; then
1450 echo " TLS CFLAGS $vnc_tls_cflags"
1451 echo " TLS LIBS $vnc_tls_libs"
1453 echo "VNC SASL support $vnc_sasl"
1454 if test "$vnc_sasl" = "yes" ; then
1455 echo " SASL CFLAGS $vnc_sasl_cflags"
1456 echo " SASL LIBS $vnc_sasl_libs"
1458 if test -n "$sparc_cpu"; then
1459 echo "Target Sparc Arch $sparc_cpu"
1461 echo "kqemu support $kqemu"
1462 echo "xen support $xen"
1463 echo "brlapi support $brlapi"
1464 echo "Documentation $build_docs"
1465 [ ! -z "$uname_release" ] && \
1466 echo "uname -r $uname_release"
1467 echo "NPTL support $nptl"
1468 echo "GUEST_BASE $guest_base"
1469 echo "vde support $vde"
1470 echo "AIO support $aio"
1471 echo "IO thread $io_thread"
1472 echo "Install blobs $blobs"
1473 echo -e "KVM support $kvm"
1474 echo "fdt support $fdt"
1475 echo "preadv support $preadv"
1477 if test $sdl_too_old = "yes"; then
1478 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1480 #if test "$sdl_static" = "no"; then
1481 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1484 config_host_mak
="config-host.mak"
1485 config_host_h
="config-host.h"
1487 #echo "Creating $config_host_mak and $config_host_h"
1489 test -f $config_host_h && mv $config_host_h ${config_host_h}~
1491 echo "# Automatically generated by configure - do not modify" > $config_host_mak
1492 printf "# Configured with:" >> $config_host_mak
1493 printf " '%s'" "$0" "$@" >> $config_host_mak
1494 echo >> $config_host_mak
1495 echo "/* Automatically generated by configure - do not modify */" > $config_host_h
1497 echo "prefix=$prefix" >> $config_host_mak
1498 echo "bindir=\${prefix}$binsuffix" >> $config_host_mak
1499 echo "mandir=\${prefix}$mansuffix" >> $config_host_mak
1500 echo "datadir=\${prefix}$datasuffix" >> $config_host_mak
1501 echo "docdir=\${prefix}$docsuffix" >> $config_host_mak
1502 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_host_h
1503 echo "MAKE=$make" >> $config_host_mak
1504 echo "INSTALL=$install" >> $config_host_mak
1505 echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak
1506 echo "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak
1507 echo "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak
1508 echo "CC=$cc" >> $config_host_mak
1509 echo "HOST_CC=$host_cc" >> $config_host_mak
1510 echo "AR=$ar" >> $config_host_mak
1511 echo "OBJCOPY=$objcopy" >> $config_host_mak
1512 echo "LD=$ld" >> $config_host_mak
1513 echo "CFLAGS=$CFLAGS $OS_CFLAGS $ARCH_CFLAGS $EXTRA_CFLAGS" >> $config_host_mak
1514 echo "LDFLAGS=$LDFLAGS $OS_LDFLAGS $ARCH_LDFLAGS $EXTRA_LDFLAGS" >> $config_host_mak
1515 echo "EXESUF=$EXESUF" >> $config_host_mak
1516 echo "PTHREADLIBS=$PTHREADLIBS" >> $config_host_mak
1517 echo "CLOCKLIBS=$CLOCKLIBS" >> $config_host_mak
1519 i386|x86_64|alpha|cris|hppa|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|s390|sparc|sparc64
)
1526 echo "Unsupported CPU = $cpu"
1530 echo "ARCH=$ARCH" >> $config_host_mak
1531 arch_name
=`echo $ARCH | tr '[:lower:]' '[:upper:]'`
1532 echo "#define HOST_$arch_name 1" >> $config_host_h
1534 if test "$debug_tcg" = "yes" ; then
1535 echo "#define DEBUG_TCG 1" >> $config_host_h
1537 if test "$debug" = "yes" ; then
1538 echo "#define DEBUG_EXEC 1" >> $config_host_h
1540 if test "$sparse" = "yes" ; then
1541 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak
1542 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak
1543 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
1545 if test "$strip_opt" = "yes" ; then
1546 echo "STRIP_OPT=-s" >> $config_host_mak
1548 if test "$bigendian" = "yes" ; then
1549 echo "WORDS_BIGENDIAN=yes" >> $config_host_mak
1550 echo "#define WORDS_BIGENDIAN 1" >> $config_host_h
1552 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_host_h
1553 if test "$mingw32" = "yes" ; then
1554 echo "CONFIG_WIN32=y" >> $config_host_mak
1555 echo "#define CONFIG_WIN32 1" >> $config_host_h
1558 #include <byteswap.h>
1559 int main(void) { return bswap_32(0); }
1561 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1562 echo "#define HAVE_BYTESWAP_H 1" >> $config_host_h
1565 #include <sys/endian.h>
1566 #include <sys/types.h>
1567 #include <machine/bswap.h>
1568 int main(void) { return bswap32(0); }
1570 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1571 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_host_h
1575 if [ "$openbsd" = "yes" ] ; then
1576 echo "#define ENOTSUP 4096" >> $config_host_h
1579 if test "$darwin" = "yes" ; then
1580 echo "CONFIG_DARWIN=y" >> $config_host_mak
1581 echo "#define CONFIG_DARWIN 1" >> $config_host_h
1584 if test "$aix" = "yes" ; then
1585 echo "CONFIG_AIX=y" >> $config_host_mak
1586 echo "#define CONFIG_AIX 1" >> $config_host_h
1589 if test "$solaris" = "yes" ; then
1590 echo "CONFIG_SOLARIS=y" >> $config_host_mak
1591 echo "#define HOST_SOLARIS $solarisrev" >> $config_host_h
1592 if test "$needs_libsunmath" = "yes" ; then
1593 echo "NEEDS_LIBSUNMATH=yes" >> $config_host_mak
1594 echo "#define NEEDS_LIBSUNMATH 1" >> $config_host_h
1597 if test -n "$sparc_cpu"; then
1598 echo "CONFIG__sparc_${sparc_cpu}__=y" >> $config_host_mak
1599 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_host_h
1601 if test "$gprof" = "yes" ; then
1602 echo "TARGET_GPROF=yes" >> $config_host_mak
1603 echo "#define HAVE_GPROF 1" >> $config_host_h
1605 if test "$static" = "yes" ; then
1606 echo "CONFIG_STATIC=y" >> $config_host_mak
1607 echo "#define CONFIG_STATIC 1" >> $config_host_h
1609 if test $profiler = "yes" ; then
1610 echo "#define CONFIG_PROFILER 1" >> $config_host_h
1612 if test "$slirp" = "yes" ; then
1613 echo "CONFIG_SLIRP=y" >> $config_host_mak
1614 echo "#define CONFIG_SLIRP 1" >> $config_host_h
1616 if test "$vde" = "yes" ; then
1617 echo "CONFIG_VDE=y" >> $config_host_mak
1618 echo "#define CONFIG_VDE 1" >> $config_host_h
1619 echo "VDE_LIBS=-lvdeplug" >> $config_host_mak
1621 for card
in $audio_card_list; do
1622 def
=CONFIG_
`echo $card | tr '[:lower:]' '[:upper:]'`
1623 echo "$def=y" >> $config_host_mak
1624 echo "#define $def 1" >> $config_host_h
1626 echo "#define AUDIO_DRIVERS \\" >> $config_host_h
1627 for drv
in $audio_drv_list; do
1628 echo " &${drv}_audio_driver, \\" >>$config_host_h
1629 def
=CONFIG_
`echo $drv | tr '[:lower:]' '[:upper:]'`
1630 echo "$def=y" >> $config_host_mak
1631 if test "$drv" = "fmod"; then
1632 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_host_mak
1633 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_host_mak
1634 elif test "$drv" = "oss"; then
1635 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_host_mak
1638 echo "" >>$config_host_h
1639 if test "$mixemu" = "yes" ; then
1640 echo "CONFIG_MIXEMU=y" >> $config_host_mak
1641 echo "#define CONFIG_MIXEMU 1" >> $config_host_h
1643 if test "$vnc_tls" = "yes" ; then
1644 echo "CONFIG_VNC_TLS=y" >> $config_host_mak
1645 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
1646 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_host_mak
1647 echo "#define CONFIG_VNC_TLS 1" >> $config_host_h
1649 if test "$vnc_sasl" = "yes" ; then
1650 echo "CONFIG_VNC_SASL=y" >> $config_host_mak
1651 echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
1652 echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_host_mak
1653 echo "#define CONFIG_VNC_SASL 1" >> $config_host_h
1655 if test "$fnmatch" = "yes" ; then
1656 echo "#define HAVE_FNMATCH_H 1" >> $config_host_h
1658 qemu_version
=`head $source_path/VERSION`
1659 echo "VERSION=$qemu_version" >>$config_host_mak
1660 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_host_h
1662 echo "#define QEMU_PKGVERSION \"$pkgversion\"" >> $config_host_h
1664 echo "SRC_PATH=$source_path" >> $config_host_mak
1665 if [ "$source_path_used" = "yes" ]; then
1666 echo "VPATH=$source_path" >> $config_host_mak
1668 echo "TARGET_DIRS=$target_list" >> $config_host_mak
1669 if [ "$build_docs" = "yes" ] ; then
1670 echo "BUILD_DOCS=yes" >> $config_host_mak
1672 if test "$static" = "yes"; then
1677 if test "$sdl1" = "yes" ; then
1678 echo "#define CONFIG_SDL 1" >> $config_host_h
1679 echo "CONFIG_SDL=y" >> $config_host_mak
1680 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1681 echo "SDL_LIBS=$sdl_static_libs" >> $config_host_mak
1682 elif test "$sdl_x11" = "yes" ; then
1683 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_host_mak
1685 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_host_mak
1687 if [ "${aa}" = "yes" ] ; then
1688 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_host_mak
1690 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_host_mak
1693 if test "$cocoa" = "yes" ; then
1694 echo "#define CONFIG_COCOA 1" >> $config_host_h
1695 echo "CONFIG_COCOA=y" >> $config_host_mak
1697 if test "$curses" = "yes" ; then
1698 echo "#define CONFIG_CURSES 1" >> $config_host_h
1699 echo "CONFIG_CURSES=y" >> $config_host_mak
1700 if test "$ncurses" = "yes" ; then
1701 echo "CURSES_LIBS=-lncurses" >> $config_host_mak
1703 echo "CURSES_LIBS=-lcurses" >> $config_host_mak
1706 if test "$atfile" = "yes" ; then
1707 echo "#define CONFIG_ATFILE 1" >> $config_host_h
1709 if test "$utimens" = "yes" ; then
1710 echo "#define CONFIG_UTIMENSAT 1" >> $config_host_h
1712 if test "$pipe2" = "yes" ; then
1713 echo "#define CONFIG_PIPE2 1" >> $config_host_h
1715 if test "$splice" = "yes" ; then
1716 echo "#define CONFIG_SPLICE 1" >> $config_host_h
1718 if test "$inotify" = "yes" ; then
1719 echo "#define CONFIG_INOTIFY 1" >> $config_host_h
1721 if test "$curl" = "yes" ; then
1722 echo "CONFIG_CURL=y" >> $config_host_mak
1723 echo "CURL_LIBS=$curl_libs" >> $config_host_mak
1724 echo "#define CONFIG_CURL 1" >> $config_host_h
1726 if test "$brlapi" = "yes" ; then
1727 echo "CONFIG_BRLAPI=y" >> $config_host_mak
1728 echo "#define CONFIG_BRLAPI 1" >> $config_host_h
1729 echo "BRLAPI_LIBS=-lbrlapi" >> $config_host_mak
1731 if test "$bluez" = "yes" ; then
1732 echo "CONFIG_BLUEZ=y" >> $config_host_mak
1733 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
1734 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_host_mak
1735 echo "#define CONFIG_BLUEZ 1" >> $config_host_h
1737 if test "$xen" = "yes" ; then
1738 echo "XEN_LIBS=-lxenstore -lxenctrl -lxenguest" >> $config_host_mak
1740 if test "$aio" = "yes" ; then
1741 echo "#define CONFIG_AIO 1" >> $config_host_h
1742 echo "CONFIG_AIO=y" >> $config_host_mak
1744 if test "$io_thread" = "yes" ; then
1745 echo "CONFIG_IOTHREAD=y" >> $config_host_mak
1746 echo "#define CONFIG_IOTHREAD 1" >> $config_host_h
1748 if test "$blobs" = "yes" ; then
1749 echo "INSTALL_BLOBS=yes" >> $config_host_mak
1751 if test "$iovec" = "yes" ; then
1752 echo "#define HAVE_IOVEC 1" >> $config_host_h
1754 if test "$preadv" = "yes" ; then
1755 echo "#define HAVE_PREADV 1" >> $config_host_h
1757 if test "$fdt" = "yes" ; then
1758 echo "#define HAVE_FDT 1" >> $config_host_h
1759 echo "FDT_LIBS=-lfdt" >> $config_host_mak
1762 # XXX: suppress that
1763 if [ "$bsd" = "yes" ] ; then
1764 echo "#define O_LARGEFILE 0" >> $config_host_h
1765 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_host_h
1766 echo "#define HOST_BSD 1" >> $config_host_h
1769 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_host_h
1774 echo "HOST_USB=linux" >> $config_host_mak
1777 echo "HOST_USB=bsd" >> $config_host_mak
1780 echo "HOST_USB=stub" >> $config_host_mak
1784 # Determine what linker flags to use to force archive inclusion
1785 check_linker_flags
()
1791 $cc $ARCH_CFLAGS -o $TMPE $OS_CFLAGS $TMPC -Wl,$1 ${w2} >/dev
/null
2>/dev
/null
1797 if check_linker_flags
--whole-archive --no-whole-archive ; then
1799 echo "ARLIBS_BEGIN=-Wl,--whole-archive" >> $config_host_mak
1800 echo "ARLIBS_END=-Wl,--no-whole-archive" >> $config_host_mak
1801 elif check_linker_flags
-z,allextract
-z,defaultextract
; then
1803 echo "ARLIBS_BEGIN=-Wl,-z,allextract" >> $config_host_mak
1804 echo "ARLIBS_END=-Wl,-z,defaultextract" >> $config_host_mak
1805 elif check_linker_flags
-all_load ; then
1807 echo "ARLIBS_BEGIN=-all_load" >> $config_host_mak
1808 echo "ARLIBS_END=" >> $config_host_mak
1810 echo "Error: your linker does not support --whole-archive or -z."
1811 echo "Please report to qemu-devel@nongnu.org"
1815 if test "$xen" = "yes" ;
1817 echo "CONFIG_XEN=y" >> $config_host_mak
1821 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1822 tools
="qemu-img\$(EXESUF) $tools"
1823 if [ "$linux" = "yes" ] ; then
1824 tools
="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
1827 echo "TOOLS=$tools" >> $config_host_mak
1830 if test "$cpu" = "i386" -o "$cpu" = "x86_64" ; then
1831 roms
="pc-bios/optionrom"
1833 echo "ROMS=$roms" >> $config_host_mak
1835 if test -f ${config_host_h}~
; then
1836 if cmp -s $config_host_h ${config_host_h}~
; then
1837 mv ${config_host_h}~
$config_host_h
1839 rm ${config_host_h}~
1843 for target
in $target_list; do
1844 target_dir
="$target"
1845 config_mak
=$target_dir/config.mak
1846 config_h
=$target_dir/config.h
1847 target_arch2
=`echo $target | cut -d '-' -f 1`
1848 target_bigendian
="no"
1849 case "$target_arch2" in
1850 armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|sh4eb|sparc|sparc64|sparc32plus
)
1851 target_bigendian
=yes
1855 target_user_only
="no"
1856 target_linux_user
="no"
1857 target_darwin_user
="no"
1858 target_bsd_user
="no"
1860 ${target_arch2}-softmmu)
1861 target_softmmu
="yes"
1863 ${target_arch2}-linux-user)
1864 target_user_only
="yes"
1865 target_linux_user
="yes"
1867 ${target_arch2}-darwin-user)
1868 target_user_only
="yes"
1869 target_darwin_user
="yes"
1871 ${target_arch2}-bsd-user)
1872 target_user_only
="yes"
1873 target_bsd_user
="yes"
1876 echo "ERROR: Target '$target' not recognised"
1881 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1883 test -f $config_h && mv $config_h ${config_h}~
1885 mkdir
-p $target_dir
1886 mkdir
-p $target_dir/fpu
1887 mkdir
-p $target_dir/tcg
1888 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1889 mkdir
-p $target_dir/nwfpe
1893 # don't use ln -sf as not all "ln -sf" over write the file/link
1895 rm -f $target_dir/Makefile
1896 ln -s $source_path/Makefile.target
$target_dir/Makefile
1899 echo "# Automatically generated by configure - do not modify" > $config_mak
1901 echo "include ../config-host.mak" >> $config_mak
1906 interp_prefix1
=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
1907 echo "CONFIG_QEMU_PREFIX=\"$interp_prefix1\"" >> $config_mak
1910 TARGET_ARCH
="$target_arch2"
1914 case "$target_arch2" in
1919 TARGET_BASE_ARCH
=i386
1929 gdb_xml_files
="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1938 gdb_xml_files
="cf-core.xml cf-fp.xml"
1948 echo "TARGET_ABI_MIPSO32=y" >> $config_mak
1954 TARGET_BASE_ARCH
=mips
1955 echo "TARGET_ABI_MIPSN32=y" >> $config_mak
1960 TARGET_BASE_ARCH
=mips
1961 echo "TARGET_ABI_MIPSN64=y" >> $config_mak
1965 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1969 TARGET_BASE_ARCH
=ppc
1971 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1975 TARGET_BASE_ARCH
=ppc
1977 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1982 TARGET_BASE_ARCH
=ppc
1984 echo "TARGET_ABI32=y" >> $config_mak
1985 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1998 TARGET_BASE_ARCH
=sparc
2004 TARGET_BASE_ARCH
=sparc
2005 TARGET_ABI_DIR
=sparc
2006 echo "TARGET_ABI32=y" >> $config_mak
2010 echo "Unsupported target CPU"
2014 echo "TARGET_ARCH=$TARGET_ARCH" >> $config_mak
2015 echo "TARGET_ARCH2=$target_arch2" >> $config_mak
2016 # TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
2017 if [ "$TARGET_BASE_ARCH" = "" ]; then
2018 TARGET_BASE_ARCH
=$TARGET_ARCH
2020 echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_mak
2021 if [ "$TARGET_ABI_DIR" = "" ]; then
2022 TARGET_ABI_DIR
=$TARGET_ARCH
2024 echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_mak
2025 if [ $target_phys_bits -lt $hostlongbits ] ; then
2026 target_phys_bits
=$hostlongbits
2028 case "$target_arch2" in
2030 if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
2031 echo "CONFIG_XEN=y" >> $config_mak
2033 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
2035 echo "CONFIG_KQEMU=y" >> $config_mak
2038 case "$target_arch2" in
2039 i386|x86_64|ppcemb|ppc|ppc64
)
2040 # Make sure the target and host cpus are compatible
2041 if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
2042 \
( "$target_arch2" = "$cpu" -o \
2043 \
( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \
) -o \
2044 \
( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \
) -o \
2045 \
( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \
) -o \
2046 \
( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \
) \
) ; then
2047 echo "CONFIG_KVM=y" >> $config_mak
2048 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2051 echo "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak
2052 echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_mak
2053 echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
2054 if test "$target_bigendian" = "yes" ; then
2055 echo "TARGET_WORDS_BIGENDIAN=y" >> $config_mak
2057 if test "$target_softmmu" = "yes" ; then
2058 echo "CONFIG_SOFTMMU=y" >> $config_mak
2060 if test "$target_user_only" = "yes" ; then
2061 echo "CONFIG_USER_ONLY=y" >> $config_mak
2063 if test "$target_linux_user" = "yes" ; then
2064 echo "CONFIG_LINUX_USER=y" >> $config_mak
2066 if test "$target_darwin_user" = "yes" ; then
2067 echo "CONFIG_DARWIN_USER=y" >> $config_mak
2070 if test ! -z "$gdb_xml_files" ; then
2071 for x
in $gdb_xml_files; do
2072 list
="$list $source_path/gdb-xml/$x"
2075 echo "TARGET_XML_FILES=$list" >> $config_mak
2077 case "$target_arch2" in
2078 arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|sparc|sparc64|sparc32plus
)
2079 echo "CONFIG_SOFTFLOAT=y" >> $config_mak
2083 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
2084 echo "TARGET_HAS_BFLT=y" >> $config_mak
2086 if test "$target_user_only" = "yes" \
2087 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
2088 echo "USE_NPTL=y" >> $config_mak
2090 # 32 bit ELF loader in addition to native 64 bit loader?
2091 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
2092 echo "TARGET_HAS_ELFLOAD32=y" >> $config_mak
2094 if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
2095 echo "CONFIG_USE_GUEST_BASE=y" >> $config_mak
2097 if test "$target_bsd_user" = "yes" ; then
2098 echo "CONFIG_BSD_USER=y" >> $config_mak
2101 $source_path/create_config
< $config_mak > $config_h
2103 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~
$config_h
2105 done # for target in $targets
2107 # build tree in object directory if source path is different from current one
2108 if test "$source_path_used" = "yes" ; then
2109 DIRS
="tests tests/cris slirp audio block pc-bios/optionrom"
2110 FILES
="Makefile tests/Makefile"
2111 FILES
="$FILES tests/cris/Makefile tests/cris/.gdbinit"
2112 FILES
="$FILES tests/test-mmap.c"
2113 FILES
="$FILES pc-bios/optionrom/Makefile"
2114 for dir
in $DIRS ; do
2117 # remove the link and recreate it, as not all "ln -sf" overwrite the link
2118 for f
in $FILES ; do
2120 ln -s $source_path/$f $f
2124 for hwlib
in 32 64; do
2128 ln -s $source_path/Makefile.hw
$d/Makefile
2129 echo "HWLIB=libqemuhw$hwlib.a" > $d/config.mak
2130 echo "CPPFLAGS=-DTARGET_PHYS_ADDR_BITS=$hwlib" >> $d/config.mak