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
101 target_list
="x86_64-softmmu"
103 i386|i486|i586|i686|i86pc|BePC
)
160 local fname
="$(dirname "$0")/KVM_VERSION"
162 if test -f "$fname"; then
207 kvm_cap_device_assignment
="no"
215 pkgversion
=" ($(kvm_version))"
222 if check_define __linux__
; then
224 elif check_define _WIN32
; then
226 elif check_define __OpenBSD__
; then
228 elif check_define __sun__
; then
236 OS_CFLAGS
="-mno-cygwin"
237 if [ "$cpu" = "i386" ] ; then
240 audio_possible_drivers
="sdl"
244 if [ "$cpu" = "i386" ] ; then
247 audio_possible_drivers
="dsound sdl fmod"
251 audio_possible_drivers
="oss sdl esd pa"
252 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
259 audio_possible_drivers
="oss sdl esd pa"
260 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
268 audio_possible_drivers
="oss sdl esd pa"
269 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
277 audio_possible_drivers
="oss sdl esd"
284 audio_possible_drivers
="oss sdl esd"
290 # 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
291 if [ "$cpu" = "i386" ] ; then
292 is_x86_64
=`sysctl -n hw.optional.x86_64`
293 [ "$is_x86_64" = "1" ] && cpu
=x86_64
295 if [ "$cpu" = "x86_64" ] ; then
296 OS_CFLAGS
="-arch x86_64"
297 LDFLAGS
="-arch x86_64"
299 OS_CFLAGS
="-mdynamic-no-pic"
303 audio_drv_list
="coreaudio"
304 audio_possible_drivers
="coreaudio sdl fmod"
305 OS_LDFLAGS
="-framework CoreFoundation -framework IOKit"
311 needs_libsunmath
="no"
312 solarisrev
=`uname -r | cut -f2 -d.`
313 # have to select again, because `uname -m` returns i86pc
314 # even on an x86_64 box.
315 solariscpu
=`isainfo -k`
316 if test "${solariscpu}" = "amd64" ; then
319 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
320 if test "$solarisrev" -le 9 ; then
321 if test -f /opt
/SUNWspro
/prod
/lib
/libsunmath.so
.1; then
322 needs_libsunmath
="yes"
324 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
325 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
326 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
327 echo "Studio 11 can be downloaded from www.sun.com."
331 if test "$solarisrev" -ge 9 ; then
335 if test -f /usr
/include
/sys
/soundcard.h
; then
338 audio_possible_drivers
="oss sdl"
347 audio_possible_drivers
="oss alsa sdl esd pa"
352 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
354 audio_possible_drivers
="$audio_possible_drivers fmod"
358 if [ "$cpu" = "ia64" ] ; then
361 target_list
="ia64-softmmu"
366 if [ "$cpu" = "powerpc" ]; then
372 if [ "$bsd" = "yes" ] ; then
373 if [ "$darwin" != "yes" ] ; then
381 source_path
=`dirname "$0"`
382 source_path_used
="no"
384 if [ -z "$source_path" ]; then
387 source_path
=`cd "$source_path"; pwd`
389 [ -f "$workdir/vl.c" ] || source_path_used
="yes"
394 optarg
=`expr "x$opt" : 'x[^=]*=\(.*\)'`
396 --help|
-h) show_help
=yes
398 --prefix=*) prefix
="$optarg"
400 --interp-prefix=*) interp_prefix
="$optarg"
402 --source-path=*) source_path
="$optarg"
403 source_path_used
="yes"
409 --host-cc=*) host_cc
="$optarg"
411 --make=*) make="$optarg"
413 --install=*) install="$optarg"
415 --extra-cflags=*) CFLAGS
="$optarg"
417 --extra-ldflags=*) LDFLAGS
="$optarg"
419 --cpu=*) cpu
="$optarg"
421 --target-list=*) target_list
="$optarg"
423 --enable-gprof) gprof
="yes"
425 --static) static
="yes"
427 --disable-sdl) sdl
="no"
429 --fmod-lib=*) fmod_lib
="$optarg"
431 --fmod-inc=*) fmod_inc
="$optarg"
433 --oss-lib=*) oss_lib
="$optarg"
435 --audio-card-list=*) audio_card_list
=`echo "$optarg" | sed -e 's/,/ /g'`
437 --audio-drv-list=*) audio_drv_list
="$optarg"
439 --enable-debug-tcg) debug_tcg
="yes"
441 --disable-debug-tcg) debug_tcg
="no"
444 # Enable debugging options that aren't excessively noisy
449 --enable-sparse) sparse
="yes"
451 --disable-sparse) sparse
="no"
453 --disable-strip) strip_opt
="no"
455 --disable-vnc-tls) vnc_tls
="no"
457 --disable-vnc-sasl) vnc_sasl
="no"
459 --disable-slirp) slirp
="no"
461 --disable-vde) vde
="no"
463 --disable-kqemu) kqemu
="no"
465 --disable-xen) xen
="no"
467 --disable-brlapi) brlapi
="no"
469 --disable-bluez) bluez
="no"
471 --disable-kvm) kvm
="no"
473 --enable-profiler) profiler
="yes"
478 audio_drv_list
="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
480 --disable-system) softmmu
="no"
482 --enable-system) softmmu
="yes"
484 --disable-linux-user) linux_user
="no"
486 --enable-linux-user) linux_user
="yes"
488 --disable-darwin-user) darwin_user
="no"
490 --enable-darwin-user) darwin_user
="yes"
492 --disable-bsd-user) bsd_user
="no"
494 --enable-bsd-user) bsd_user
="yes"
496 --enable-uname-release=*) uname_release
="$optarg"
501 v7|v8
) SP_CFLAGS
="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
502 target_arch2
="sparc"; cpu
="sparc" ;;
503 v8plus|v8plusa
) SP_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
504 target_arch2
="sparc"; cpu
="sparc" ;;
505 v9
) SP_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m64"
506 target_arch2
="sparc64"; cpu
="sparc64" ;;
507 *) echo "undefined SPARC architecture. Exiting";exit 1;;
510 --enable-werror) werror
="yes"
512 --disable-werror) werror
="no"
514 --disable-curses) curses
="no"
516 --disable-curl) curl
="no"
518 --disable-nptl) nptl
="no"
520 --enable-mixemu) mixemu
="yes"
522 --disable-pthread) pthread
="no"
524 --disable-aio) aio
="no"
526 --enable-io-thread) io_thread
="yes"
528 --disable-blobs) blobs
="no"
530 --kerneldir=*) kerneldir
="$optarg"
532 --with-kvm-trace) kvm_trace
="yes"
534 --with-pkgversion=*) pkgversion
=" ($optarg)"
536 --disable-docs) build_docs
="no"
538 --disable-cpu-emulation) cpu_emulation
="no"
540 *) echo "ERROR: unknown option $opt"; show_help
="yes"
545 # default flags for all hosts
546 CFLAGS
="$CFLAGS -g -fno-strict-aliasing"
547 if test "$debug" = "no" ; then
550 CFLAGS
="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
551 LDFLAGS
="$LDFLAGS -g"
553 # Consult white-list to determine whether to enable werror
554 # by default. Only enable by default for git builds
555 if test -z "$werror" ; then
556 z_version
=`cut -f3 -d. $source_path/VERSION`
557 if test "$z_version" = "50" -a \
558 "$linux" = "yes" ; then
563 # disable default werror for kvm
567 if test "$werror" = "yes" ; then
568 CFLAGS
="$CFLAGS -Werror"
571 if test "$solaris" = "no" ; then
572 if ld
--version 2>/dev
/null |
grep "GNU ld" >/dev
/null
2>/dev
/null
; then
573 LDFLAGS
="$LDFLAGS -Wl,--warn-common"
578 # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
579 # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
582 sparc
) if test -z "$sparc_cpu" ; then
583 ARCH_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
586 ARCH_CFLAGS
="${SP_CFLAGS}"
587 ARCH_LDFLAGS
="${SP_LDFLAGS}"
589 ARCH_CFLAGS
="$ARCH_CFLAGS -ffixed-g2 -ffixed-g3"
590 if test "$solaris" = "no" ; then
591 ARCH_CFLAGS
="$ARCH_CFLAGS -ffixed-g1 -ffixed-g6"
594 sparc64
) if test -z "$sparc_cpu" ; then
595 ARCH_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_v9__"
598 ARCH_CFLAGS
="${SP_CFLAGS}"
599 ARCH_LDFLAGS
="${SP_LDFLAGS}"
601 if test "$solaris" = "no" ; then
602 ARCH_CFLAGS
="$ARCH_CFLAGS -ffixed-g5 -ffixed-g6 -ffixed-g7"
604 ARCH_CFLAGS
="$ARCH_CFLAGS -ffixed-g1 -ffixed-g5 -ffixed-g6 -ffixed-g7"
608 ARCH_CFLAGS
="-march=z900"
620 if test x
"$show_help" = x
"yes" ; then
623 Usage: configure [options]
624 Options: [defaults in brackets after descriptions]
627 echo "Standard options:"
628 echo " --help print this message"
629 echo " --prefix=PREFIX install in PREFIX [$prefix]"
630 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
631 echo " use %M for cpu name [$interp_prefix]"
632 echo " --target-list=LIST set target list [$target_list]"
634 echo "kqemu kernel acceleration support:"
635 echo " --disable-kqemu disable kqemu support"
637 echo "Advanced options (experts only):"
638 echo " --source-path=PATH path of source code [$source_path]"
639 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
640 echo " --cc=CC use C compiler CC [$cc]"
641 echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
642 echo " --extra-cflags=CFLAGS add C compiler flags CFLAGS"
643 echo " --extra-ldflags=LDFLAGS add linker flags LDFLAGS"
644 echo " --make=MAKE use specified make [$make]"
645 echo " --install=INSTALL use specified install [$install]"
646 echo " --static enable static build [$static]"
647 echo " --enable-debug-tcg enable TCG debugging"
648 echo " --disable-debug-tcg disable TCG debugging (default)"
649 echo " --enable-debug enable common debug build options"
650 echo " --enable-sparse enable sparse checker"
651 echo " --disable-sparse disable sparse checker (default)"
652 echo " --disable-strip disable stripping binaries"
653 echo " --disable-werror disable compilation abort on warning"
654 echo " --disable-sdl disable SDL"
655 echo " --enable-cocoa enable COCOA (Mac OS X only)"
656 echo " --audio-drv-list=LIST set audio drivers list:"
657 echo " Available drivers: $audio_possible_drivers"
658 echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
659 echo " Available cards: $audio_possible_cards"
660 echo " --enable-mixemu enable mixer emulation"
661 echo " --disable-xen disable xen backend driver support"
662 echo " --disable-brlapi disable BrlAPI"
663 echo " --disable-vnc-tls disable TLS encryption for VNC server"
664 echo " --disable-vnc-sasl disable SASL encryption for VNC server"
665 echo " --disable-curses disable curses output"
666 echo " --disable-curl disable curl connectivity"
667 echo " --disable-bluez disable bluez stack connectivity"
668 echo " --disable-kvm disable KVM acceleration support"
669 echo " --disable-nptl disable usermode NPTL support"
670 echo " --enable-system enable all system emulation targets"
671 echo " --disable-system disable all system emulation targets"
672 echo " --enable-linux-user enable all linux usermode emulation targets"
673 echo " --disable-linux-user disable all linux usermode emulation targets"
674 echo " --enable-darwin-user enable all darwin usermode emulation targets"
675 echo " --disable-darwin-user disable all darwin usermode emulation targets"
676 echo " --enable-bsd-user enable all BSD usermode emulation targets"
677 echo " --disable-bsd-user disable all BSD usermode emulation targets"
678 echo " --fmod-lib path to FMOD library"
679 echo " --fmod-inc path to FMOD includes"
680 echo " --oss-lib path to OSS library"
681 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
682 echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
683 echo " --disable-vde disable support for vde network"
684 echo " --disable-pthread disable pthread support"
685 echo " --disable-aio disable AIO support"
686 echo " --enable-io-thread enable IO thread"
687 echo " --disable-blobs disable installing provided firmware blobs"
688 echo " --kerneldir=PATH look for kernel includes in PATH"
689 echo " --with-kvm-trace enable building the KVM module with the kvm trace option"
690 echo " --disable-cpu-emulation disables use of qemu cpu emulation code"
692 echo "NOTE: The object files are built at the place where configure is launched"
696 if test "$mingw32" = "yes" ; then
702 OS_CFLAGS
="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501"
705 if test ! -x "$(which cgcc 2>/dev/null)"; then
710 # Solaris specific configure tool chain decisions
712 if test "$solaris" = "yes" ; then
713 solinst
=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
714 if test -z "$solinst" ; then
715 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
716 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
717 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
720 if test "$solinst" = "/usr/sbin/install" ; then
721 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
722 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
723 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
726 sol_ar
=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
727 if test -z "$sol_ar" ; then
728 echo "Error: No path includes ar"
729 if test -f /usr
/ccs
/bin
/ar ; then
730 echo "Add /usr/ccs/bin to your path and rerun configure"
737 if test -z "$target_list" ; then
738 # these targets are portable
739 if [ "$softmmu" = "yes" ] ; then
760 # the following are Linux specific
761 if [ "$linux_user" = "yes" ] ; then
762 target_list
="${target_list}\
770 microblaze-linux-user \
775 ppc64abi32-linux-user \
780 sparc32plus-linux-user \
783 # the following are Darwin specific
784 if [ "$darwin_user" = "yes" ] ; then
785 target_list
="$target_list i386-darwin-user ppc-darwin-user "
787 # the following are BSD specific
788 if [ "$bsd_user" = "yes" ] ; then
789 target_list
="${target_list}\
797 target_list
=`echo "$target_list" | sed -e 's/,/ /g'`
799 if test -z "$target_list" ; then
800 echo "No targets enabled"
804 if test -z "$cross_prefix" ; then
807 # big/little endian test
809 #include <inttypes.h>
810 int main(int argc, char ** argv){
811 volatile uint32_t i=0x01234567;
812 return (*((uint8_t*)(&i))) == 0x67;
816 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
817 $TMPE && bigendian
="yes"
819 echo big
/little
test failed
824 # if cross compiling, cannot launch a program, so make a static guess
825 if test "$cpu" = "armv4b" \
829 -o "$cpu" = "mips64" \
831 -o "$cpu" = "ppc64" \
833 -o "$cpu" = "sparc" \
834 -o "$cpu" = "sparc64"; then
840 # host long bits test
842 if test "$cpu" = "x86_64" \
843 -o "$cpu" = "alpha" \
845 -o "$cpu" = "sparc64" \
846 -o "$cpu" = "ppc64"; then
850 # Check host NPTL support
853 #include <linux/futex.h>
856 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
862 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev
/null
2> /dev
/null
; then
868 ##########################################
885 if test "$kvm" = "yes" ; then
887 kvm_cflags
="-I$source_path/kvm/include"
888 kvm_cflags
="$kvm_cflags -I$source_path/kvm/include/$kvm_arch"
890 # test for KVM_CAP_PIT
893 #include <linux/kvm.h>
895 #error "kvm no pit capability"
897 int main(void) { return 0; }
899 if $cc $ARCH_CFLAGS $CFLAGS $kvm_cflags -o $TMPE ${OS_CFLAGS} $TMPC 2> /dev
/null
; then
903 # test for KVM_CAP_DEVICE_ASSIGNMENT
906 #include <linux/kvm.h>
907 #ifndef KVM_CAP_DEVICE_ASSIGNMENT
908 #error "kvm no device assignment capability"
910 int main(void) { return 0; }
912 if $cc $ARCH_CFLAGS $CFLAGS $kvm_cflags -o $TMPE ${OS_CFLAGS} $TMPC 2> /dev
/null
; then
913 kvm_cap_device_assignment
="yes"
917 # libpci probe for kvm_cap_device_assignment
918 if test $kvm_cap_device_assignment = "yes" ; then
921 #ifndef PCI_VENDOR_ID
924 int main(void) { return 0; }
926 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC 2>/dev
/null
; then
930 echo "Error: libpci check failed"
931 echo "Disable KVM Device Assignment capability."
933 kvm_cap_device_assignment
="no"
937 ##########################################
942 int main(void) { zlibVersion(); return 0; }
944 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev
/null
2> /dev
/null
; then
948 echo "Error: zlib check failed"
949 echo "Make sure to have the zlib libs and headers installed."
954 ##########################################
957 if test "$xen" = "yes" ; then
961 int main(void) { xs_daemon_open; xc_interface_open; }
963 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC -lxenstore -lxenctrl 2> /dev
/null
> /dev
/null
; then
970 ##########################################
975 if test "$sdl" = "yes" ; then
976 sdl_config
="sdl-config"
982 #undef main /* We don't want SDL to override our main() */
983 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
985 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
986 _sdlversion
=`$sdl_config --version | sed 's/[^0-9]//g'`
987 if test "$_sdlversion" -lt 121 ; then
990 if test "$cocoa" = "no" ; then
995 # static link with sdl ?
996 if test "$sdl" = "yes" ; then
998 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa
="yes"
999 sdl_static_libs
=`$sdl_config --static-libs 2>/dev/null`
1000 if [ "$aa" = "yes" ] ; then
1001 sdl_static_libs
="$sdl_static_libs `aalib-config --static-libs`"
1004 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev
/null
2> /dev
/null
; then
1008 fi # sdl compile test
1010 # Make sure to disable cocoa if sdl was set
1011 if test "$sdl" = "yes" ; then
1013 audio_drv_list
="`echo $audio_drv_list | sed s,coreaudio,,g`"
1017 if test "$sdl" = "yes" ; then
1020 #if defined(SDL_VIDEO_DRIVER_X11)
1021 #include <X11/XKBlib.h>
1023 #error No x11 support
1025 int main(void) { return 0; }
1027 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
1032 ##########################################
1034 if test "$vnc_tls" = "yes" ; then
1036 #include <gnutls/gnutls.h>
1037 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
1039 vnc_tls_cflags
=`pkg-config --cflags gnutls 2> /dev/null`
1040 vnc_tls_libs
=`pkg-config --libs gnutls 2> /dev/null`
1041 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
1042 $vnc_tls_libs > /dev
/null
2> /dev
/null
; then
1049 ##########################################
1050 # VNC SASL detection
1051 if test "$vnc_sasl" = "yes" ; then
1053 #include <sasl/sasl.h>
1055 int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
1057 # Assuming Cyrus-SASL installed in /usr prefix
1059 vnc_sasl_libs
="-lsasl2"
1060 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \
1061 $vnc_sasl_libs 2> /dev
/null
> /dev
/null
; then
1068 ##########################################
1069 # fnmatch() probe, used for ACL routines
1072 #include <fnmatch.h>
1075 fnmatch("foo", "foo", 0);
1079 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1083 ##########################################
1084 # vde libraries probe
1085 if test "$vde" = "yes" ; then
1087 #include <libvdeplug.h>
1090 struct vde_open_args a = {0, 0, 0};
1091 vde_open("", "", &a);
1095 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev
/null
2> /dev
/null
; then
1102 ##########################################
1103 # Sound support libraries probe
1114 int main(void) { $exp }
1116 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev
/null
2> /dev
/null
; then
1120 echo "Error: $drv check failed"
1121 echo "Make sure to have the $drv libs and headers installed."
1127 audio_drv_list
=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
1128 for drv
in $audio_drv_list; do
1131 audio_drv_probe
$drv alsa
/asoundlib.h
-lasound \
1132 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
1136 if test -z $fmod_lib ||
test -z $fmod_inc; then
1138 echo "Error: You must specify path to FMOD library and headers"
1139 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1143 audio_drv_probe
$drv fmod.h
$fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1147 audio_drv_probe
$drv esd.h
-lesd 'return esd_play_stream(0, 0, "", 0);'
1151 audio_drv_probe
$drv pulse
/simple.h
-lpulse-simple \
1152 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
1155 oss|sdl|core|wav|dsound
)
1156 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1160 echo "$audio_possible_drivers" |
grep -q "\<$drv\>" ||
{
1162 echo "Error: Unknown driver '$drv' selected"
1163 echo "Possible drivers are: $audio_possible_drivers"
1171 ##########################################
1174 if test -z "$brlapi" ; then
1178 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1180 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev
/null
2> /dev
/null
; then
1182 fi # brlapi compile test
1185 ##########################################
1188 if test "$curses" = "yes" ; then
1194 #define resize_term resizeterm
1196 int main(void) { resize_term(0, 0); return curses_version(); }
1198 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lncurses > /dev
/null
2> /dev
/null
; then
1201 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev
/null
2> /dev
/null
; then
1206 ##########################################
1209 if test "$curl" = "yes" ; then
1212 #include <curl/curl.h>
1213 int main(void) { return curl_easy_init(); }
1215 curl_libs
=`curl-config --libs 2>/dev/null`
1216 if $cc $ARCH_CFLAGS $curl_libs -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1221 ##########################################
1222 # bluez support probe
1223 if test "$bluez" = "yes" ; then
1224 `pkg-config bluez 2> /dev/null` || bluez
="no"
1226 if test "$bluez" = "yes" ; then
1228 #include <bluetooth/bluetooth.h>
1229 int main(void) { return bt_error(0); }
1231 bluez_cflags
=`pkg-config --cflags bluez 2> /dev/null`
1232 bluez_libs
=`pkg-config --libs bluez 2> /dev/null`
1233 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
1234 $bluez_libs > /dev
/null
2> /dev
/null
; then
1241 ##########################################
1243 if test "$kvm" = "yes" ; then
1245 #include <linux/kvm.h>
1246 #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
1247 #error Invalid KVM version
1249 #if !defined(KVM_CAP_USER_MEMORY)
1250 #error Missing KVM capability KVM_CAP_USER_MEMORY
1252 #if !defined(KVM_CAP_SET_TSS_ADDR)
1253 #error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1255 #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1256 #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1258 int main(void) { return 0; }
1260 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
1261 > /dev
/null
2>/dev
/null
; then
1265 if [ -x "`which awk 2>/dev/null`" ] && \
1266 [ -x "`which grep 2>/dev/null`" ]; then
1267 kvmerr
=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1269 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1270 if test "$kvmerr" != "" ; then
1271 kvm
="no - (${kvmerr})\n\
1272 NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \
1273 recent kvm-kmod from http://sourceforge.net/projects/kvm."
1279 ##########################################
1281 PTHREADLIBS_LIST
="-lpthread -lpthreadGC2"
1284 if test "$pthread" = yes; then
1287 #include <pthread.h>
1288 int main(void) { pthread_create(0,0,0,0); return 0; }
1290 for pthread_lib
in $PTHREADLIBS_LIST; do
1291 if $cc $ARCH_CFLAGS -o $TMPE $TMPC $pthread_lib 2> /dev
/null
> /dev
/null
; then
1293 PTHREADLIBS
="$pthread_lib"
1299 if test "$pthread" = no
; then
1304 ##########################################
1307 #include <sys/types.h>
1308 #include <sys/uio.h>
1310 int main(void) { struct iovec iov; return 0; }
1313 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1317 ##########################################
1320 #include <sys/types.h>
1321 #include <sys/uio.h>
1323 int main(void) { preadv; }
1326 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1330 ##########################################
1332 if test "$fdt" = "yes" ; then
1335 int main(void) { return 0; }
1337 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev
/null
> /dev
/null
; then
1343 # Check for xxxat() functions when we are building linux-user
1344 # emulator. This is done because older glibc versions don't
1345 # have syscall stubs for these implemented.
1348 if [ "$linux_user" = "yes" ] ; then
1350 #define _ATFILE_SOURCE
1351 #include <sys/types.h>
1358 /* try to unlink nonexisting file */
1359 return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1362 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
> /dev
/null
; then
1367 # Check for inotify functions when we are building linux-user
1368 # emulator. This is done because older glibc versions don't
1369 # have syscall stubs for these implemented. In that case we
1370 # don't provide them even if kernel supports them.
1373 if [ "$linux_user" = "yes" ] ; then
1375 #include <sys/inotify.h>
1380 /* try to start inotify */
1381 return inotify_init();
1384 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
> /dev
/null
; then
1389 # check if utimensat and futimens are supported
1392 #define _ATFILE_SOURCE
1399 utimensat(AT_FDCWD, "foo", NULL, 0);
1404 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1408 # check if pipe2 is there
1418 pipe2(pipefd, O_CLOEXEC);
1422 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1426 # check if tee/splice is there. vmsplice was added same time.
1437 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
1438 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
1442 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1446 ##########################################
1451 #include <sys/syscall.h>
1453 int main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
1456 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1460 ##########################################
1465 #include <sys/syscall.h>
1466 int main(void) { return syscall(SYS_eventfd, 0); }
1469 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1473 # Check if tools are available to build documentation.
1474 if test "$build_docs" = "yes" -a \
( ! -x "`which texi2html 2>/dev/null`" -o ! -x "`which pod2man 2>/dev/null`" \
) ; then
1478 ##########################################
1484 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1488 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1490 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev
/null
2> /dev
/null
; then
1494 if test "$rt" = "yes" ; then
1498 if test "$mingw32" = "yes" ; then
1499 if test -z "$prefix" ; then
1500 prefix
="c:\\\\Program Files\\\\Qemu"
1507 if test -z "$prefix" ; then
1510 mansuffix
="/share/man"
1511 datasuffix
="/share/qemu"
1512 docsuffix
="/share/doc/qemu"
1516 if test -f kvm
/kernel
/configure
; then
1519 if test -n "$kerneldir"; then
1520 kmod_args
="--kerneldir=$kerneldir"
1522 if test "$kvm_trace" = "yes"; then
1523 kmod_args
="$kmod_args --with-kvm-trace"
1525 # hope there are no spaces in kmod_args; can't use arrays because of
1527 (cd kvm
/kernel
; .
/configure
$kmod_args)
1530 echo "Install prefix $prefix"
1531 echo "BIOS directory $prefix$datasuffix"
1532 echo "binary directory $prefix$binsuffix"
1533 if test "$mingw32" = "no" ; then
1534 echo "Manual directory $prefix$mansuffix"
1535 echo "ELF interp prefix $interp_prefix"
1537 echo "Source path $source_path"
1538 echo "C compiler $cc"
1539 echo "Host C compiler $host_cc"
1540 echo "ARCH_CFLAGS $ARCH_CFLAGS"
1542 echo "install $install"
1543 echo "host CPU $cpu"
1544 echo "host big endian $bigendian"
1545 echo "target list $target_list"
1546 echo "tcg debug enabled $debug_tcg"
1547 echo "gprof enabled $gprof"
1548 echo "sparse enabled $sparse"
1549 echo "strip binaries $strip_opt"
1550 echo "profiler $profiler"
1551 echo "static build $static"
1552 echo "-Werror enabled $werror"
1553 if test "$darwin" = "yes" ; then
1554 echo "Cocoa support $cocoa"
1556 echo "SDL support $sdl"
1557 if test "$sdl" != "no" ; then
1558 echo "SDL static link $sdl_static"
1560 echo "curses support $curses"
1561 echo "curl support $curl"
1562 echo "mingw32 support $mingw32"
1563 echo "Audio drivers $audio_drv_list"
1564 echo "Extra audio cards $audio_card_list"
1565 echo "Mixer emulation $mixemu"
1566 echo "VNC TLS support $vnc_tls"
1567 if test "$vnc_tls" = "yes" ; then
1568 echo " TLS CFLAGS $vnc_tls_cflags"
1569 echo " TLS LIBS $vnc_tls_libs"
1571 echo "VNC SASL support $vnc_sasl"
1572 if test "$vnc_sasl" = "yes" ; then
1573 echo " SASL CFLAGS $vnc_sasl_cflags"
1574 echo " SASL LIBS $vnc_sasl_libs"
1576 if test -n "$sparc_cpu"; then
1577 echo "Target Sparc Arch $sparc_cpu"
1579 echo "kqemu support $kqemu"
1580 echo "xen support $xen"
1581 echo "CPU emulation $cpu_emulation"
1582 echo "brlapi support $brlapi"
1583 echo "Documentation $build_docs"
1584 [ ! -z "$uname_release" ] && \
1585 echo "uname -r $uname_release"
1586 echo "NPTL support $nptl"
1587 echo "vde support $vde"
1588 echo "AIO support $aio"
1589 echo "IO thread $io_thread"
1590 echo "Install blobs $blobs"
1591 echo -e "KVM support $kvm"
1592 echo "KVM trace support $kvm_trace"
1593 echo "fdt support $fdt"
1594 echo "preadv support $preadv"
1596 if test $sdl_too_old = "yes"; then
1597 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1599 #if test "$sdl_static" = "no"; then
1600 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1602 config_mak
="config-host.mak"
1603 config_h
="config-host.h"
1605 #echo "Creating $config_mak and $config_h"
1607 test -f $config_h && mv $config_h ${config_h}~
1609 echo "# Automatically generated by configure - do not modify" > $config_mak
1610 printf "# Configured with:" >> $config_mak
1611 printf " '%s'" "$0" "$@" >> $config_mak
1613 echo "/* Automatically generated by configure - do not modify */" > $config_h
1615 echo "prefix=$prefix" >> $config_mak
1616 echo "bindir=\${prefix}$binsuffix" >> $config_mak
1617 echo "mandir=\${prefix}$mansuffix" >> $config_mak
1618 echo "datadir=\${prefix}$datasuffix" >> $config_mak
1619 echo "docdir=\${prefix}$docsuffix" >> $config_mak
1620 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1621 echo "MAKE=$make" >> $config_mak
1622 echo "INSTALL=$install" >> $config_mak
1623 echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_mak
1624 echo "INSTALL_DATA=$install -m0644 -p" >> $config_mak
1625 echo "INSTALL_PROG=$install -m0755 -p" >> $config_mak
1626 echo "CC=$cc" >> $config_mak
1627 echo "HOST_CC=$host_cc" >> $config_mak
1628 echo "AR=$ar" >> $config_mak
1629 # XXX: only use CFLAGS and LDFLAGS ?
1630 # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1631 # compilation of dyngen tool (useful for win32 build on Linux host)
1632 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1633 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1634 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1635 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1636 echo "CFLAGS=$CFLAGS" >> $config_mak
1637 echo "LDFLAGS=$LDFLAGS" >> $config_mak
1638 echo "EXESUF=$EXESUF" >> $config_mak
1639 echo "PTHREADLIBS=$PTHREADLIBS" >> $config_mak
1640 echo "CLOCKLIBS=$CLOCKLIBS" >> $config_mak
1643 echo "ARCH=i386" >> $config_mak
1644 echo "#define HOST_I386 1" >> $config_h
1647 echo "ARCH=x86_64" >> $config_mak
1648 echo "#define HOST_X86_64 1" >> $config_h
1651 echo "ARCH=alpha" >> $config_mak
1652 echo "#define HOST_ALPHA 1" >> $config_h
1655 echo "ARCH=arm" >> $config_mak
1656 echo "#define HOST_ARM 1" >> $config_h
1659 echo "ARCH=arm" >> $config_mak
1660 echo "#define HOST_ARM 1" >> $config_h
1663 echo "ARCH=cris" >> $config_mak
1664 echo "#define HOST_CRIS 1" >> $config_h
1667 echo "ARCH=hppa" >> $config_mak
1668 echo "#define HOST_HPPA 1" >> $config_h
1671 echo "ARCH=ia64" >> $config_mak
1672 echo "#define HOST_IA64 1" >> $config_h
1675 echo "ARCH=m68k" >> $config_mak
1676 echo "#define HOST_M68K 1" >> $config_h
1679 echo "ARCH=microblaze" >> $config_mak
1680 echo "#define HOST_MICROBLAZE 1" >> $config_h
1683 echo "ARCH=mips" >> $config_mak
1684 echo "#define HOST_MIPS 1" >> $config_h
1687 echo "ARCH=mips64" >> $config_mak
1688 echo "#define HOST_MIPS64 1" >> $config_h
1691 echo "ARCH=ppc" >> $config_mak
1692 echo "#define HOST_PPC 1" >> $config_h
1695 echo "ARCH=ppc64" >> $config_mak
1696 echo "#define HOST_PPC64 1" >> $config_h
1699 echo "ARCH=s390" >> $config_mak
1700 echo "#define HOST_S390 1" >> $config_h
1703 echo "ARCH=sparc" >> $config_mak
1704 echo "#define HOST_SPARC 1" >> $config_h
1707 echo "ARCH=sparc64" >> $config_mak
1708 echo "#define HOST_SPARC64 1" >> $config_h
1711 echo "Unsupported CPU = $cpu"
1715 if test "$debug_tcg" = "yes" ; then
1716 echo "#define DEBUG_TCG 1" >> $config_h
1718 if test "$debug" = "yes" ; then
1719 echo "#define DEBUG_EXEC 1" >> $config_h
1721 if test "$sparse" = "yes" ; then
1722 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1723 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1724 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1726 if test "$strip_opt" = "yes" ; then
1727 echo "STRIP_OPT=-s" >> $config_mak
1729 if test "$bigendian" = "yes" ; then
1730 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1731 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1733 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1734 if test "$mingw32" = "yes" ; then
1735 echo "CONFIG_WIN32=y" >> $config_mak
1736 echo "#define CONFIG_WIN32 1" >> $config_h
1739 #include <byteswap.h>
1740 int main(void) { return bswap_32(0); }
1742 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1743 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1746 #include <sys/endian.h>
1747 #include <sys/types.h>
1748 #include <machine/bswap.h>
1749 int main(void) { return bswap32(0); }
1751 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1752 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1756 if [ "$openbsd" = "yes" ] ; then
1757 echo "#define ENOTSUP 4096" >> $config_h
1760 if test "$darwin" = "yes" ; then
1761 echo "CONFIG_DARWIN=y" >> $config_mak
1762 echo "#define CONFIG_DARWIN 1" >> $config_h
1765 if test "$aix" = "yes" ; then
1766 echo "CONFIG_AIX=y" >> $config_mak
1767 echo "#define CONFIG_AIX 1" >> $config_h
1770 if test "$solaris" = "yes" ; then
1771 echo "CONFIG_SOLARIS=y" >> $config_mak
1772 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1773 if test "$needs_libsunmath" = "yes" ; then
1774 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1775 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1778 if test -n "$sparc_cpu"; then
1779 echo "CONFIG__sparc_${sparc_cpu}__=y" >> $config_mak
1780 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1782 if test "$gprof" = "yes" ; then
1783 echo "TARGET_GPROF=yes" >> $config_mak
1784 echo "#define HAVE_GPROF 1" >> $config_h
1786 if test "$static" = "yes" ; then
1787 echo "CONFIG_STATIC=y" >> $config_mak
1788 echo "#define CONFIG_STATIC 1" >> $config_h
1790 if test $profiler = "yes" ; then
1791 echo "#define CONFIG_PROFILER 1" >> $config_h
1793 if test "$slirp" = "yes" ; then
1794 echo "CONFIG_SLIRP=y" >> $config_mak
1795 echo "#define CONFIG_SLIRP 1" >> $config_h
1797 if test "$vde" = "yes" ; then
1798 echo "CONFIG_VDE=y" >> $config_mak
1799 echo "#define CONFIG_VDE 1" >> $config_h
1800 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1802 for card
in $audio_card_list; do
1803 def
=CONFIG_
`echo $card | tr '[:lower:]' '[:upper:]'`
1804 echo "$def=y" >> $config_mak
1805 echo "#define $def 1" >> $config_h
1807 echo "#define AUDIO_DRIVERS \\" >> $config_h
1808 for drv
in $audio_drv_list; do
1809 echo " &${drv}_audio_driver, \\" >>$config_h
1810 def
=CONFIG_
`echo $drv | tr '[:lower:]' '[:upper:]'`
1811 echo "$def=y" >> $config_mak
1812 if test "$drv" = "fmod"; then
1813 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1814 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1815 elif test "$drv" = "oss"; then
1816 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1820 if test "$mixemu" = "yes" ; then
1821 echo "CONFIG_MIXEMU=y" >> $config_mak
1822 echo "#define CONFIG_MIXEMU 1" >> $config_h
1824 if test "$vnc_tls" = "yes" ; then
1825 echo "CONFIG_VNC_TLS=y" >> $config_mak
1826 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1827 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1828 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1830 if test "$vnc_sasl" = "yes" ; then
1831 echo "CONFIG_VNC_SASL=y" >> $config_mak
1832 echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak
1833 echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak
1834 echo "#define CONFIG_VNC_SASL 1" >> $config_h
1836 if test "$fnmatch" = "yes" ; then
1837 echo "#define HAVE_FNMATCH_H 1" >> $config_h
1839 qemu_version
=`head $source_path/VERSION`
1840 echo "VERSION=$qemu_version" >>$config_mak
1841 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1842 echo "#define QEMU_PKGVERSION \"$pkgversion\"" >> $config_h
1844 echo "SRC_PATH=$source_path" >> $config_mak
1845 if [ "$source_path_used" = "yes" ]; then
1846 echo "VPATH=$source_path" >> $config_mak
1848 echo "TARGET_DIRS=$target_list" >> $config_mak
1849 if [ "$build_docs" = "yes" ] ; then
1850 echo "BUILD_DOCS=yes" >> $config_mak
1852 if test "$static" = "yes"; then
1857 if test "$sdl1" = "yes" ; then
1858 echo "#define CONFIG_SDL 1" >> $config_h
1859 echo "CONFIG_SDL=y" >> $config_mak
1860 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1861 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1862 elif test "$sdl_x11" = "yes" ; then
1863 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
1865 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1867 if [ "${aa}" = "yes" ] ; then
1868 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1870 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1873 if test "$cocoa" = "yes" ; then
1874 echo "#define CONFIG_COCOA 1" >> $config_h
1875 echo "CONFIG_COCOA=y" >> $config_mak
1877 if test "$curses" = "yes" ; then
1878 echo "#define CONFIG_CURSES 1" >> $config_h
1879 echo "CONFIG_CURSES=y" >> $config_mak
1880 if test "$ncurses" = "yes" ; then
1881 echo "CURSES_LIBS=-lncurses" >> $config_mak
1883 echo "CURSES_LIBS=-lcurses" >> $config_mak
1886 if test "$atfile" = "yes" ; then
1887 echo "#define CONFIG_ATFILE 1" >> $config_h
1889 if test "$utimens" = "yes" ; then
1890 echo "#define CONFIG_UTIMENSAT 1" >> $config_h
1892 if test "$pipe2" = "yes" ; then
1893 echo "#define CONFIG_PIPE2 1" >> $config_h
1895 if test "$splice" = "yes" ; then
1896 echo "#define CONFIG_SPLICE 1" >> $config_h
1898 if test "$inotify" = "yes" ; then
1899 echo "#define CONFIG_INOTIFY 1" >> $config_h
1901 if test "$curl" = "yes" ; then
1902 echo "CONFIG_CURL=y" >> $config_mak
1903 echo "CURL_LIBS=$curl_libs" >> $config_mak
1904 echo "#define CONFIG_CURL 1" >> $config_h
1906 if test "$brlapi" = "yes" ; then
1907 echo "CONFIG_BRLAPI=y" >> $config_mak
1908 echo "#define CONFIG_BRLAPI 1" >> $config_h
1909 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1911 if test "$bluez" = "yes" ; then
1912 echo "CONFIG_BLUEZ=y" >> $config_mak
1913 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1914 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1915 echo "#define CONFIG_BLUEZ 1" >> $config_h
1917 if test "$xen" = "yes" ; then
1918 echo "XEN_LIBS=-lxenstore -lxenctrl -lxenguest" >> $config_mak
1920 if test "$aio" = "yes" ; then
1921 echo "#define CONFIG_AIO 1" >> $config_h
1922 echo "CONFIG_AIO=y" >> $config_mak
1924 if test "$io_thread" = "yes" ; then
1925 echo "CONFIG_IOTHREAD=y" >> $config_mak
1926 echo "#define CONFIG_IOTHREAD 1" >> $config_h
1928 if test "$blobs" = "yes" ; then
1929 echo "INSTALL_BLOBS=yes" >> $config_mak
1931 if test "$iovec" = "yes" ; then
1932 echo "#define HAVE_IOVEC 1" >> $config_h
1934 if test "$preadv" = "yes" ; then
1935 echo "#define HAVE_PREADV 1" >> $config_h
1937 if test "$fdt" = "yes" ; then
1938 echo "#define HAVE_FDT 1" >> $config_h
1939 echo "FDT_LIBS=-lfdt" >> $config_mak
1941 if test "$signalfd" = "yes" ; then
1942 echo "#define CONFIG_signalfd 1" >> $config_h
1944 if test "$eventfd" = "yes" ; then
1945 echo "#define CONFIG_eventfd 1" >> $config_h
1948 # XXX: suppress that
1949 if [ "$bsd" = "yes" ] ; then
1950 echo "#define O_LARGEFILE 0" >> $config_h
1951 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1952 echo "#define HOST_BSD 1" >> $config_h
1955 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1960 echo "HOST_USB=linux" >> $config_mak
1963 echo "HOST_USB=bsd" >> $config_mak
1966 echo "HOST_USB=stub" >> $config_mak
1970 # Determine what linker flags to use to force archive inclusion
1971 check_linker_flags
()
1977 $cc $ARCH_CFLAGS -o $TMPE $OS_CFLAGS $TMPC -Wl,$1 ${w2} >/dev
/null
2>/dev
/null
1983 if check_linker_flags
--whole-archive --no-whole-archive ; then
1985 echo "ARLIBS_BEGIN=-Wl,--whole-archive" >> $config_mak
1986 echo "ARLIBS_END=-Wl,--no-whole-archive" >> $config_mak
1987 elif check_linker_flags
-z,allextract
-z,defaultextract
; then
1989 echo "ARLIBS_BEGIN=-Wl,-z,allextract" >> $config_mak
1990 echo "ARLIBS_END=-Wl,-z,defaultextract" >> $config_mak
1991 elif check_linker_flags
-all_load ; then
1993 echo "ARLIBS_BEGIN=-all_load" >> $config_mak
1994 echo "ARLIBS_END=" >> $config_mak
1996 echo "Error: your linker does not support --whole-archive or -z."
1997 echo "Please report to qemu-devel@nongnu.org"
2001 if test "$xen" = "yes" ;
2003 echo "CONFIG_XEN=y" >> $config_mak
2006 # this is a temp hack needed for kvm
2007 if test "$kvm" = "yes" ; then
2008 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2011 echo "KVM_KMOD=$kvm_kmod" >> $config_mak
2014 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
2015 tools
="qemu-img\$(EXESUF) $tools"
2016 if [ "$linux" = "yes" ] ; then
2017 tools
="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
2020 echo "TOOLS=$tools" >> $config_mak
2023 if test "$cpu" = "i386" -o "$cpu" = "x86_64" ; then
2024 roms
="pc-bios/optionrom"
2026 echo "ROMS=$roms" >> $config_mak
2028 if test -f ${config_h}~
; then
2029 if cmp -s $config_h ${config_h}~
; then
2030 mv ${config_h}~
$config_h
2036 config_host_mak
=${config_mak}
2038 for target
in $target_list; do
2039 target_dir
="$target"
2040 config_mak
=$target_dir/config.mak
2041 config_h
=$target_dir/config.h
2042 target_arch2
=`echo $target | cut -d '-' -f 1`
2043 target_bigendian
="no"
2044 [ "$target_arch2" = "armeb" ] && target_bigendian
=yes
2045 [ "$target_arch2" = "m68k" ] && target_bigendian
=yes
2046 [ "$target_arch2" = "microblaze" ] && target_bigendian
=yes
2047 [ "$target_arch2" = "mips" ] && target_bigendian
=yes
2048 [ "$target_arch2" = "mipsn32" ] && target_bigendian
=yes
2049 [ "$target_arch2" = "mips64" ] && target_bigendian
=yes
2050 [ "$target_arch2" = "ppc" ] && target_bigendian
=yes
2051 [ "$target_arch2" = "ppcemb" ] && target_bigendian
=yes
2052 [ "$target_arch2" = "ppc64" ] && target_bigendian
=yes
2053 [ "$target_arch2" = "ppc64abi32" ] && target_bigendian
=yes
2054 [ "$target_arch2" = "sh4eb" ] && target_bigendian
=yes
2055 [ "$target_arch2" = "sparc" ] && target_bigendian
=yes
2056 [ "$target_arch2" = "sparc64" ] && target_bigendian
=yes
2057 [ "$target_arch2" = "sparc32plus" ] && target_bigendian
=yes
2059 target_user_only
="no"
2060 target_linux_user
="no"
2061 target_darwin_user
="no"
2062 target_bsd_user
="no"
2064 ${target_arch2}-softmmu)
2065 target_softmmu
="yes"
2067 ${target_arch2}-linux-user)
2068 target_user_only
="yes"
2069 target_linux_user
="yes"
2071 ${target_arch2}-darwin-user)
2072 target_user_only
="yes"
2073 target_darwin_user
="yes"
2075 ${target_arch2}-bsd-user)
2076 target_user_only
="yes"
2077 target_bsd_user
="yes"
2080 echo "ERROR: Target '$target' not recognised"
2085 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
2087 test -f $config_h && mv $config_h ${config_h}~
2089 mkdir
-p $target_dir
2090 mkdir
-p $target_dir/fpu
2091 mkdir
-p $target_dir/tcg
2092 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
2093 mkdir
-p $target_dir/nwfpe
2097 # don't use ln -sf as not all "ln -sf" over write the file/link
2099 rm -f $target_dir/Makefile
2100 ln -s $source_path/Makefile.target
$target_dir/Makefile
2103 echo "# Automatically generated by configure - do not modify" > $config_mak
2104 echo "/* Automatically generated by configure - do not modify */" > $config_h
2107 echo "include ../config-host.mak" >> $config_mak
2108 echo "#include \"../config-host.h\"" >> $config_h
2113 interp_prefix1
=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
2114 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
2118 disable_cpu_emulation
() {
2119 if test $cpu_emulation = "no"; then
2120 echo "#define NO_CPU_EMULATION 1" >> $config_h
2121 echo "NO_CPU_EMULATION=1" >> $config_mak
2126 if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
2127 \
( "$cpu" = "i386" -o "$cpu" = "x86_64" -o "$cpu" = "ia64" -o "$cpu" = "powerpc" \
); then
2128 echo "#define USE_KVM 1" >> $config_h
2129 echo "USE_KVM=1" >> $config_mak
2130 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2131 if test $kvm_cap_pit = "yes" ; then
2132 echo "USE_KVM_PIT=1" >> $config_mak
2133 echo "#define USE_KVM_PIT 1" >> $config_h
2135 if test $kvm_cap_device_assignment = "yes" ; then
2136 echo "USE_KVM_DEVICE_ASSIGNMENT=1" >> $config_mak
2137 echo "#define USE_KVM_DEVICE_ASSIGNMENT 1" >> $config_h
2139 disable_cpu_emulation
2143 # Make sure the target and host cpus are compatible
2144 if test ! \
( "$target_arch2" = "$cpu" -o \
2145 \
( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \
) -o \
2146 \
( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \
) -o \
2147 \
( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \
) \
) ; then
2150 # Disable KVM for linux-user
2151 if test "$target_softmmu" = "no" ; then
2155 case "$target_arch2" in
2157 echo "TARGET_ARCH=i386" >> $config_mak
2158 echo "#define TARGET_ARCH \"i386\"" >> $config_h
2159 echo "#define TARGET_I386 1" >> $config_h
2160 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
2162 echo "CONFIG_KQEMU=y" >> $config_mak
2163 echo "#define CONFIG_KQEMU 1" >> $config_h
2165 if test "$target_kvm" = "yes" ; then
2166 echo "USE_KVM=yes" >> $config_mak
2167 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2168 echo "#define USE_KVM 1" >> $config_h
2170 if test "$xen" = "yes" -a "$target_softmmu" = "yes";
2172 echo "CONFIG_XEN=y" >> $config_mak
2173 echo "#define CONFIG_XEN 1" >> $config_h
2179 echo "TARGET_ARCH=x86_64" >> $config_mak
2180 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
2181 echo "#define TARGET_I386 1" >> $config_h
2182 echo "#define TARGET_X86_64 1" >> $config_h
2183 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
2185 echo "CONFIG_KQEMU=y" >> $config_mak
2186 echo "#define CONFIG_KQEMU 1" >> $config_h
2188 if [ use_upstream_kvm
= yes ]; then
2189 if test "$target_kvm" = "yes" ; then
2190 echo "USE_KVM=yes" >> $config_mak
2191 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2192 echo "#define USE_KVM 1" >> $config_h
2195 if test "$xen" = "yes" -a "$target_softmmu" = "yes"
2197 echo "CONFIG_XEN=y" >> $config_mak
2198 echo "#define CONFIG_XEN 1" >> $config_h
2204 echo "TARGET_ARCH=ia64" >> $config_mak
2205 echo "#define TARGET_ARCH \"ia64\"" >> $config_h
2206 echo "#define TARGET_IA64 1" >> $config_h
2211 echo "TARGET_ARCH=alpha" >> $config_mak
2212 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
2213 echo "#define TARGET_ALPHA 1" >> $config_h
2217 echo "TARGET_ARCH=arm" >> $config_mak
2218 echo "#define TARGET_ARCH \"arm\"" >> $config_h
2219 echo "#define TARGET_ARM 1" >> $config_h
2222 gdb_xml_files
="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
2226 echo "TARGET_ARCH=cris" >> $config_mak
2227 echo "#define TARGET_ARCH \"cris\"" >> $config_h
2228 echo "#define TARGET_CRIS 1" >> $config_h
2233 echo "TARGET_ARCH=m68k" >> $config_mak
2234 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
2235 echo "#define TARGET_M68K 1" >> $config_h
2237 gdb_xml_files
="cf-core.xml cf-fp.xml"
2241 echo "TARGET_ARCH=microblaze" >> $config_mak
2242 echo "#define TARGET_ARCH \"microblaze\"" >> $config_h
2243 echo "#define TARGET_MICROBLAZE 1" >> $config_h
2249 echo "TARGET_ARCH=mips" >> $config_mak
2250 echo "#define TARGET_ARCH \"mips\"" >> $config_h
2251 echo "#define TARGET_MIPS 1" >> $config_h
2252 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
2256 echo "TARGET_ARCH=mipsn32" >> $config_mak
2257 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
2258 echo "#define TARGET_MIPS 1" >> $config_h
2259 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
2263 echo "TARGET_ARCH=mips64" >> $config_mak
2264 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
2265 echo "#define TARGET_MIPS 1" >> $config_h
2266 echo "#define TARGET_MIPS64 1" >> $config_h
2267 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
2271 echo "TARGET_ARCH=ppc" >> $config_mak
2272 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
2273 echo "#define TARGET_PPC 1" >> $config_h
2274 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2278 echo "TARGET_ARCH=ppcemb" >> $config_mak
2279 echo "TARGET_ABI_DIR=ppc" >> $config_mak
2280 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
2281 echo "#define TARGET_PPC 1" >> $config_h
2282 echo "#define TARGET_PPCEMB 1" >> $config_h
2283 if test use_upstream_kvm
= yes ; then
2284 if test "$target_kvm" = "yes" ; then
2285 echo "CONFIG_KVM=y" >> $config_mak
2286 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2287 echo "#define USE_KVM 1" >> $config_h
2290 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2294 echo "TARGET_ARCH=ppc64" >> $config_mak
2295 echo "TARGET_ABI_DIR=ppc" >> $config_mak
2296 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
2297 echo "#define TARGET_PPC 1" >> $config_h
2298 echo "#define TARGET_PPC64 1" >> $config_h
2299 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2303 echo "TARGET_ARCH=ppc64" >> $config_mak
2304 echo "TARGET_ABI_DIR=ppc" >> $config_mak
2305 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
2306 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
2307 echo "#define TARGET_PPC 1" >> $config_h
2308 echo "#define TARGET_PPC64 1" >> $config_h
2309 echo "#define TARGET_ABI32 1" >> $config_h
2310 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2314 echo "TARGET_ARCH=sh4" >> $config_mak
2315 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
2316 echo "#define TARGET_SH4 1" >> $config_h
2322 echo "TARGET_ARCH=sparc" >> $config_mak
2323 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
2324 echo "#define TARGET_SPARC 1" >> $config_h
2328 echo "TARGET_ARCH=sparc64" >> $config_mak
2329 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
2330 echo "#define TARGET_SPARC 1" >> $config_h
2331 echo "#define TARGET_SPARC64 1" >> $config_h
2336 echo "TARGET_ARCH=sparc64" >> $config_mak
2337 echo "TARGET_ABI_DIR=sparc" >> $config_mak
2338 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
2339 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
2340 echo "#define TARGET_SPARC 1" >> $config_h
2341 echo "#define TARGET_SPARC64 1" >> $config_h
2342 echo "#define TARGET_ABI32 1" >> $config_h
2346 echo "Unsupported target CPU"
2350 if [ $target_phys_bits -lt $hostlongbits ] ; then
2351 target_phys_bits
=$hostlongbits
2353 echo "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak
2354 echo "#define TARGET_PHYS_ADDR_BITS $target_phys_bits" >> $config_h
2355 echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
2356 if test "$target_bigendian" = "yes" ; then
2357 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
2358 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
2360 if test "$target_softmmu" = "yes" ; then
2361 echo "CONFIG_SOFTMMU=y" >> $config_mak
2362 echo "#define CONFIG_SOFTMMU 1" >> $config_h
2364 if test "$target_user_only" = "yes" ; then
2365 echo "CONFIG_USER_ONLY=y" >> $config_mak
2366 echo "#define CONFIG_USER_ONLY 1" >> $config_h
2368 if test "$target_linux_user" = "yes" ; then
2369 echo "CONFIG_LINUX_USER=y" >> $config_mak
2370 echo "#define CONFIG_LINUX_USER 1" >> $config_h
2372 if test "$target_darwin_user" = "yes" ; then
2373 echo "CONFIG_DARWIN_USER=y" >> $config_mak
2374 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
2377 if test ! -z "$gdb_xml_files" ; then
2378 for x
in $gdb_xml_files; do
2379 list
="$list $source_path/gdb-xml/$x"
2382 echo "TARGET_XML_FILES=$list" >> $config_mak
2384 if test "$target_arch2" = "arm" \
2385 -o "$target_arch2" = "armeb" \
2386 -o "$target_arch2" = "m68k" \
2387 -o "$target_arch2" = "microblaze" \
2388 -o "$target_arch2" = "mips" \
2389 -o "$target_arch2" = "mipsel" \
2390 -o "$target_arch2" = "mipsn32" \
2391 -o "$target_arch2" = "mipsn32el" \
2392 -o "$target_arch2" = "mips64" \
2393 -o "$target_arch2" = "mips64el" \
2394 -o "$target_arch2" = "ppc" \
2395 -o "$target_arch2" = "ppc64" \
2396 -o "$target_arch2" = "ppc64abi32" \
2397 -o "$target_arch2" = "ppcemb" \
2398 -o "$target_arch2" = "sparc" \
2399 -o "$target_arch2" = "sparc64" \
2400 -o "$target_arch2" = "sparc32plus"; then
2401 echo "CONFIG_SOFTFLOAT=y" >> $config_mak
2402 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
2404 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
2405 echo "TARGET_HAS_BFLT=y" >> $config_mak
2406 echo "#define TARGET_HAS_BFLT 1" >> $config_h
2408 if test "$target_user_only" = "yes" \
2409 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
2410 echo "#define USE_NPTL 1" >> $config_h
2412 # 32 bit ELF loader in addition to native 64 bit loader?
2413 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
2414 echo "TARGET_HAS_ELFLOAD32=y" >> $config_mak
2415 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
2417 if test "$target_bsd_user" = "yes" ; then
2418 echo "CONFIG_BSD_USER=y" >> $config_mak
2419 echo "#define CONFIG_BSD_USER 1" >> $config_h
2422 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~
$config_h
2424 done # for target in $targets
2426 # build tree in object directory if source path is different from current one
2427 if test "$source_path_used" = "yes" ; then
2428 DIRS
="tests tests/cris slirp audio block pc-bios/optionrom"
2429 FILES
="Makefile tests/Makefile"
2430 FILES
="$FILES tests/cris/Makefile tests/cris/.gdbinit"
2431 FILES
="$FILES tests/test-mmap.c"
2432 FILES
="$FILES pc-bios/optionrom/Makefile"
2433 for dir
in $DIRS ; do
2436 # remove the link and recreate it, as not all "ln -sf" overwrite the link
2437 for f
in $FILES ; do
2439 ln -s $source_path/$f $f
2443 for hwlib
in 32 64; do
2447 ln -s $source_path/Makefile.hw
$d/Makefile
2448 echo "HWLIB=libqemuhw$hwlib.a" > $d/config.mak
2449 echo "CPPFLAGS=-DTARGET_PHYS_ADDR_BITS=$hwlib" >> $d/config.mak