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_cpu
="sparc"; cpu
="sparc" ;;
503 v8plus|v8plusa
) SP_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
504 target_cpu
="sparc"; cpu
="sparc" ;;
505 v9
) SP_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m64"
506 target_cpu
="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
1193 #define resize_term resizeterm
1195 int main(void) { resize_term(0, 0); return curses_version(); }
1197 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev
/null
2> /dev
/null
; then
1202 ##########################################
1205 if test "$curl" = "yes" ; then
1208 #include <curl/curl.h>
1209 int main(void) { return curl_easy_init(); }
1211 curl_libs
=`curl-config --libs 2>/dev/null`
1212 if $cc $ARCH_CFLAGS $curl_libs -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1217 ##########################################
1218 # bluez support probe
1219 if test "$bluez" = "yes" ; then
1220 `pkg-config bluez 2> /dev/null` || bluez
="no"
1222 if test "$bluez" = "yes" ; then
1224 #include <bluetooth/bluetooth.h>
1225 int main(void) { return bt_error(0); }
1227 bluez_cflags
=`pkg-config --cflags bluez 2> /dev/null`
1228 bluez_libs
=`pkg-config --libs bluez 2> /dev/null`
1229 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
1230 $bluez_libs > /dev
/null
2> /dev
/null
; then
1237 ##########################################
1239 if test "$kvm" = "yes" ; then
1241 #include <linux/kvm.h>
1242 #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
1243 #error Invalid KVM version
1245 #if !defined(KVM_CAP_USER_MEMORY)
1246 #error Missing KVM capability KVM_CAP_USER_MEMORY
1248 #if !defined(KVM_CAP_SET_TSS_ADDR)
1249 #error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1251 #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1252 #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1254 int main(void) { return 0; }
1256 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
1257 > /dev
/null
2>/dev
/null
; then
1261 if [ -x "`which awk 2>/dev/null`" ] && \
1262 [ -x "`which grep 2>/dev/null`" ]; then
1263 kvmerr
=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1265 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1266 if test "$kvmerr" != "" ; then
1267 kvm
="no - (${kvmerr})\n\
1268 NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \
1269 recent kvm-kmod from http://sourceforge.net/projects/kvm."
1275 ##########################################
1277 PTHREADLIBS_LIST
="-lpthread -lpthreadGC2"
1280 if test "$pthread" = yes; then
1283 #include <pthread.h>
1284 int main(void) { pthread_create(0,0,0,0); return 0; }
1286 for pthread_lib
in $PTHREADLIBS_LIST; do
1287 if $cc $ARCH_CFLAGS -o $TMPE $TMPC $pthread_lib 2> /dev
/null
> /dev
/null
; then
1289 PTHREADLIBS
="$pthread_lib"
1295 if test "$pthread" = no
; then
1300 ##########################################
1303 #include <sys/types.h>
1304 #include <sys/uio.h>
1306 int main(void) { struct iovec iov; return 0; }
1309 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1313 ##########################################
1316 #include <sys/types.h>
1317 #include <sys/uio.h>
1319 int main(void) { preadv; }
1322 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1326 ##########################################
1328 if test "$fdt" = "yes" ; then
1331 int main(void) { return 0; }
1333 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev
/null
> /dev
/null
; then
1339 # Check for xxxat() functions when we are building linux-user
1340 # emulator. This is done because older glibc versions don't
1341 # have syscall stubs for these implemented.
1344 if [ "$linux_user" = "yes" ] ; then
1346 #define _ATFILE_SOURCE
1347 #include <sys/types.h>
1354 /* try to unlink nonexisting file */
1355 return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1358 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
> /dev
/null
; then
1363 # Check for inotify functions when we are building linux-user
1364 # emulator. This is done because older glibc versions don't
1365 # have syscall stubs for these implemented. In that case we
1366 # don't provide them even if kernel supports them.
1369 if [ "$linux_user" = "yes" ] ; then
1371 #include <sys/inotify.h>
1376 /* try to start inotify */
1377 return inotify_init();
1380 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
> /dev
/null
; then
1385 # check if utimensat and futimens are supported
1388 #define _ATFILE_SOURCE
1395 utimensat(AT_FDCWD, "foo", NULL, 0);
1400 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1404 # check if pipe2 is there
1414 pipe2(pipefd, O_CLOEXEC);
1418 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1422 # check if tee/splice is there. vmsplice was added same time.
1433 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
1434 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
1438 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1442 ##########################################
1447 #include <sys/syscall.h>
1449 int main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
1452 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1456 ##########################################
1461 #include <sys/syscall.h>
1462 int main(void) { return syscall(SYS_eventfd, 0); }
1465 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev
/null
; then
1469 # Check if tools are available to build documentation.
1470 if test "$build_docs" = "yes" -a \
( ! -x "`which texi2html 2>/dev/null`" -o ! -x "`which pod2man 2>/dev/null`" \
) ; then
1474 ##########################################
1480 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1484 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev
/null
2> /dev
/null
; then
1486 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev
/null
2> /dev
/null
; then
1490 if test "$rt" = "yes" ; then
1494 if test "$mingw32" = "yes" ; then
1495 if test -z "$prefix" ; then
1496 prefix
="c:\\\\Program Files\\\\Qemu"
1503 if test -z "$prefix" ; then
1506 mansuffix
="/share/man"
1507 datasuffix
="/share/qemu"
1508 docsuffix
="/share/doc/qemu"
1512 if test -f kvm
/kernel
/configure
; then
1515 if test -n "$kerneldir"; then
1516 kmod_args
="--kerneldir=$kerneldir"
1518 if test "$kvm_trace" = "yes"; then
1519 kmod_args
="$kmod_args --with-kvm-trace"
1521 # hope there are no spaces in kmod_args; can't use arrays because of
1523 (cd kvm
/kernel
; .
/configure
$kmod_args)
1526 echo "Install prefix $prefix"
1527 echo "BIOS directory $prefix$datasuffix"
1528 echo "binary directory $prefix$binsuffix"
1529 if test "$mingw32" = "no" ; then
1530 echo "Manual directory $prefix$mansuffix"
1531 echo "ELF interp prefix $interp_prefix"
1533 echo "Source path $source_path"
1534 echo "C compiler $cc"
1535 echo "Host C compiler $host_cc"
1536 echo "ARCH_CFLAGS $ARCH_CFLAGS"
1538 echo "install $install"
1539 echo "host CPU $cpu"
1540 echo "host big endian $bigendian"
1541 echo "target list $target_list"
1542 echo "tcg debug enabled $debug_tcg"
1543 echo "gprof enabled $gprof"
1544 echo "sparse enabled $sparse"
1545 echo "strip binaries $strip_opt"
1546 echo "profiler $profiler"
1547 echo "static build $static"
1548 echo "-Werror enabled $werror"
1549 if test "$darwin" = "yes" ; then
1550 echo "Cocoa support $cocoa"
1552 echo "SDL support $sdl"
1553 if test "$sdl" != "no" ; then
1554 echo "SDL static link $sdl_static"
1556 echo "curses support $curses"
1557 echo "curl support $curl"
1558 echo "mingw32 support $mingw32"
1559 echo "Audio drivers $audio_drv_list"
1560 echo "Extra audio cards $audio_card_list"
1561 echo "Mixer emulation $mixemu"
1562 echo "VNC TLS support $vnc_tls"
1563 if test "$vnc_tls" = "yes" ; then
1564 echo " TLS CFLAGS $vnc_tls_cflags"
1565 echo " TLS LIBS $vnc_tls_libs"
1567 echo "VNC SASL support $vnc_sasl"
1568 if test "$vnc_sasl" = "yes" ; then
1569 echo " SASL CFLAGS $vnc_sasl_cflags"
1570 echo " SASL LIBS $vnc_sasl_libs"
1572 if test -n "$sparc_cpu"; then
1573 echo "Target Sparc Arch $sparc_cpu"
1575 echo "kqemu support $kqemu"
1576 echo "xen support $xen"
1577 echo "CPU emulation $cpu_emulation"
1578 echo "brlapi support $brlapi"
1579 echo "Documentation $build_docs"
1580 [ ! -z "$uname_release" ] && \
1581 echo "uname -r $uname_release"
1582 echo "NPTL support $nptl"
1583 echo "vde support $vde"
1584 echo "AIO support $aio"
1585 echo "IO thread $io_thread"
1586 echo "Install blobs $blobs"
1587 echo -e "KVM support $kvm"
1588 echo "KVM trace support $kvm_trace"
1589 echo "fdt support $fdt"
1590 echo "preadv support $preadv"
1592 if test $sdl_too_old = "yes"; then
1593 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1595 #if test "$sdl_static" = "no"; then
1596 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1598 config_mak
="config-host.mak"
1599 config_h
="config-host.h"
1601 #echo "Creating $config_mak and $config_h"
1603 test -f $config_h && mv $config_h ${config_h}~
1605 echo "# Automatically generated by configure - do not modify" > $config_mak
1606 printf "# Configured with:" >> $config_mak
1607 printf " '%s'" "$0" "$@" >> $config_mak
1609 echo "/* Automatically generated by configure - do not modify */" > $config_h
1611 echo "prefix=$prefix" >> $config_mak
1612 echo "bindir=\${prefix}$binsuffix" >> $config_mak
1613 echo "mandir=\${prefix}$mansuffix" >> $config_mak
1614 echo "datadir=\${prefix}$datasuffix" >> $config_mak
1615 echo "docdir=\${prefix}$docsuffix" >> $config_mak
1616 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1617 echo "MAKE=$make" >> $config_mak
1618 echo "INSTALL=$install" >> $config_mak
1619 echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_mak
1620 echo "INSTALL_DATA=$install -m0644 -p" >> $config_mak
1621 echo "INSTALL_PROG=$install -m0755 -p" >> $config_mak
1622 echo "CC=$cc" >> $config_mak
1623 echo "HOST_CC=$host_cc" >> $config_mak
1624 echo "AR=$ar" >> $config_mak
1625 # XXX: only use CFLAGS and LDFLAGS ?
1626 # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1627 # compilation of dyngen tool (useful for win32 build on Linux host)
1628 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1629 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1630 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1631 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1632 echo "CFLAGS=$CFLAGS" >> $config_mak
1633 echo "LDFLAGS=$LDFLAGS" >> $config_mak
1634 echo "EXESUF=$EXESUF" >> $config_mak
1635 echo "PTHREADLIBS=$PTHREADLIBS" >> $config_mak
1636 echo "CLOCKLIBS=$CLOCKLIBS" >> $config_mak
1639 echo "ARCH=i386" >> $config_mak
1640 echo "#define HOST_I386 1" >> $config_h
1643 echo "ARCH=x86_64" >> $config_mak
1644 echo "#define HOST_X86_64 1" >> $config_h
1647 echo "ARCH=alpha" >> $config_mak
1648 echo "#define HOST_ALPHA 1" >> $config_h
1651 echo "ARCH=arm" >> $config_mak
1652 echo "#define HOST_ARM 1" >> $config_h
1655 echo "ARCH=arm" >> $config_mak
1656 echo "#define HOST_ARM 1" >> $config_h
1659 echo "ARCH=cris" >> $config_mak
1660 echo "#define HOST_CRIS 1" >> $config_h
1663 echo "ARCH=hppa" >> $config_mak
1664 echo "#define HOST_HPPA 1" >> $config_h
1667 echo "ARCH=ia64" >> $config_mak
1668 echo "#define HOST_IA64 1" >> $config_h
1671 echo "ARCH=m68k" >> $config_mak
1672 echo "#define HOST_M68K 1" >> $config_h
1675 echo "ARCH=microblaze" >> $config_mak
1676 echo "#define HOST_MICROBLAZE 1" >> $config_h
1679 echo "ARCH=mips" >> $config_mak
1680 echo "#define HOST_MIPS 1" >> $config_h
1683 echo "ARCH=mips64" >> $config_mak
1684 echo "#define HOST_MIPS64 1" >> $config_h
1687 echo "ARCH=ppc" >> $config_mak
1688 echo "#define HOST_PPC 1" >> $config_h
1691 echo "ARCH=ppc64" >> $config_mak
1692 echo "#define HOST_PPC64 1" >> $config_h
1695 echo "ARCH=s390" >> $config_mak
1696 echo "#define HOST_S390 1" >> $config_h
1699 echo "ARCH=sparc" >> $config_mak
1700 echo "#define HOST_SPARC 1" >> $config_h
1703 echo "ARCH=sparc64" >> $config_mak
1704 echo "#define HOST_SPARC64 1" >> $config_h
1707 echo "Unsupported CPU = $cpu"
1711 if test "$debug_tcg" = "yes" ; then
1712 echo "#define DEBUG_TCG 1" >> $config_h
1714 if test "$debug" = "yes" ; then
1715 echo "#define DEBUG_EXEC 1" >> $config_h
1717 if test "$sparse" = "yes" ; then
1718 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1719 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1720 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1722 if test "$strip_opt" = "yes" ; then
1723 echo "STRIP_OPT=-s" >> $config_mak
1725 if test "$bigendian" = "yes" ; then
1726 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1727 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1729 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1730 if test "$mingw32" = "yes" ; then
1731 echo "CONFIG_WIN32=yes" >> $config_mak
1732 echo "#define CONFIG_WIN32 1" >> $config_h
1735 #include <byteswap.h>
1736 int main(void) { return bswap_32(0); }
1738 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1739 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1742 #include <sys/endian.h>
1743 #include <sys/types.h>
1744 #include <machine/bswap.h>
1745 int main(void) { return bswap32(0); }
1747 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev
/null
2> /dev
/null
; then
1748 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1752 if [ "$openbsd" = "yes" ] ; then
1753 echo "#define ENOTSUP 4096" >> $config_h
1756 if test "$darwin" = "yes" ; then
1757 echo "CONFIG_DARWIN=yes" >> $config_mak
1758 echo "#define CONFIG_DARWIN 1" >> $config_h
1761 if test "$aix" = "yes" ; then
1762 echo "CONFIG_AIX=yes" >> $config_mak
1763 echo "#define CONFIG_AIX 1" >> $config_h
1766 if test "$solaris" = "yes" ; then
1767 echo "CONFIG_SOLARIS=yes" >> $config_mak
1768 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1769 if test "$needs_libsunmath" = "yes" ; then
1770 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1771 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1774 if test -n "$sparc_cpu"; then
1775 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1776 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1778 if test "$gprof" = "yes" ; then
1779 echo "TARGET_GPROF=yes" >> $config_mak
1780 echo "#define HAVE_GPROF 1" >> $config_h
1782 if test "$static" = "yes" ; then
1783 echo "CONFIG_STATIC=yes" >> $config_mak
1784 echo "#define CONFIG_STATIC 1" >> $config_h
1786 if test $profiler = "yes" ; then
1787 echo "#define CONFIG_PROFILER 1" >> $config_h
1789 if test "$slirp" = "yes" ; then
1790 echo "CONFIG_SLIRP=yes" >> $config_mak
1791 echo "#define CONFIG_SLIRP 1" >> $config_h
1793 if test "$vde" = "yes" ; then
1794 echo "CONFIG_VDE=yes" >> $config_mak
1795 echo "#define CONFIG_VDE 1" >> $config_h
1796 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1798 for card
in $audio_card_list; do
1799 def
=CONFIG_
`echo $card | tr '[:lower:]' '[:upper:]'`
1800 echo "$def=yes" >> $config_mak
1801 echo "#define $def 1" >> $config_h
1803 echo "#define AUDIO_DRIVERS \\" >> $config_h
1804 for drv
in $audio_drv_list; do
1805 echo " &${drv}_audio_driver, \\" >>$config_h
1806 def
=CONFIG_
`echo $drv | tr '[:lower:]' '[:upper:]'`
1807 echo "$def=yes" >> $config_mak
1808 if test "$drv" = "fmod"; then
1809 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1810 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1811 elif test "$drv" = "oss"; then
1812 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1816 if test "$mixemu" = "yes" ; then
1817 echo "CONFIG_MIXEMU=yes" >> $config_mak
1818 echo "#define CONFIG_MIXEMU 1" >> $config_h
1820 if test "$vnc_tls" = "yes" ; then
1821 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1822 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1823 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1824 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1826 if test "$vnc_sasl" = "yes" ; then
1827 echo "CONFIG_VNC_SASL=yes" >> $config_mak
1828 echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak
1829 echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak
1830 echo "#define CONFIG_VNC_SASL 1" >> $config_h
1832 if test "$fnmatch" = "yes" ; then
1833 echo "#define HAVE_FNMATCH_H 1" >> $config_h
1835 qemu_version
=`head $source_path/VERSION`
1836 echo "VERSION=$qemu_version" >>$config_mak
1837 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1838 echo "#define QEMU_PKGVERSION \"$pkgversion\"" >> $config_h
1840 echo "SRC_PATH=$source_path" >> $config_mak
1841 if [ "$source_path_used" = "yes" ]; then
1842 echo "VPATH=$source_path" >> $config_mak
1844 echo "TARGET_DIRS=$target_list" >> $config_mak
1845 if [ "$build_docs" = "yes" ] ; then
1846 echo "BUILD_DOCS=yes" >> $config_mak
1848 if test "$static" = "yes"; then
1853 if test "$sdl1" = "yes" ; then
1854 echo "#define CONFIG_SDL 1" >> $config_h
1855 echo "CONFIG_SDL=yes" >> $config_mak
1856 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1857 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1858 elif test "$sdl_x11" = "yes" ; then
1859 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
1861 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1863 if [ "${aa}" = "yes" ] ; then
1864 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1866 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1869 if test "$cocoa" = "yes" ; then
1870 echo "#define CONFIG_COCOA 1" >> $config_h
1871 echo "CONFIG_COCOA=yes" >> $config_mak
1873 if test "$curses" = "yes" ; then
1874 echo "#define CONFIG_CURSES 1" >> $config_h
1875 echo "CONFIG_CURSES=yes" >> $config_mak
1876 echo "CURSES_LIBS=-lcurses" >> $config_mak
1878 if test "$atfile" = "yes" ; then
1879 echo "#define CONFIG_ATFILE 1" >> $config_h
1881 if test "$utimens" = "yes" ; then
1882 echo "#define CONFIG_UTIMENSAT 1" >> $config_h
1884 if test "$pipe2" = "yes" ; then
1885 echo "#define CONFIG_PIPE2 1" >> $config_h
1887 if test "$splice" = "yes" ; then
1888 echo "#define CONFIG_SPLICE 1" >> $config_h
1890 if test "$inotify" = "yes" ; then
1891 echo "#define CONFIG_INOTIFY 1" >> $config_h
1893 if test "$curl" = "yes" ; then
1894 echo "CONFIG_CURL=yes" >> $config_mak
1895 echo "CURL_LIBS=$curl_libs" >> $config_mak
1896 echo "#define CONFIG_CURL 1" >> $config_h
1898 if test "$brlapi" = "yes" ; then
1899 echo "CONFIG_BRLAPI=yes" >> $config_mak
1900 echo "#define CONFIG_BRLAPI 1" >> $config_h
1901 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1903 if test "$bluez" = "yes" ; then
1904 echo "CONFIG_BLUEZ=yes" >> $config_mak
1905 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1906 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1907 echo "#define CONFIG_BLUEZ 1" >> $config_h
1909 if test "$xen" = "yes" ; then
1910 echo "XEN_LIBS=-lxenstore -lxenctrl -lxenguest" >> $config_mak
1912 if test "$aio" = "yes" ; then
1913 echo "#define CONFIG_AIO 1" >> $config_h
1914 echo "CONFIG_AIO=yes" >> $config_mak
1916 if test "$io_thread" = "yes" ; then
1917 echo "CONFIG_IOTHREAD=yes" >> $config_mak
1918 echo "#define CONFIG_IOTHREAD 1" >> $config_h
1920 if test "$blobs" = "yes" ; then
1921 echo "INSTALL_BLOBS=yes" >> $config_mak
1923 if test "$iovec" = "yes" ; then
1924 echo "#define HAVE_IOVEC 1" >> $config_h
1926 if test "$preadv" = "yes" ; then
1927 echo "#define HAVE_PREADV 1" >> $config_h
1929 if test "$fdt" = "yes" ; then
1930 echo "#define HAVE_FDT 1" >> $config_h
1931 echo "FDT_LIBS=-lfdt" >> $config_mak
1933 if test "$signalfd" = "yes" ; then
1934 echo "#define CONFIG_signalfd 1" >> $config_h
1936 if test "$eventfd" = "yes" ; then
1937 echo "#define CONFIG_eventfd 1" >> $config_h
1940 # XXX: suppress that
1941 if [ "$bsd" = "yes" ] ; then
1942 echo "#define O_LARGEFILE 0" >> $config_h
1943 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1944 echo "#define HOST_BSD 1" >> $config_h
1947 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1952 echo "HOST_USB=linux" >> $config_mak
1955 echo "HOST_USB=bsd" >> $config_mak
1958 echo "HOST_USB=stub" >> $config_mak
1962 # Determine what linker flags to use to force archive inclusion
1963 check_linker_flags
()
1969 $cc $ARCH_CFLAGS -o $TMPE $OS_CFLAGS $TMPC -Wl,$1 ${w2} >/dev
/null
2>/dev
/null
1975 if check_linker_flags
--whole-archive --no-whole-archive ; then
1977 echo "ARLIBS_BEGIN=-Wl,--whole-archive" >> $config_mak
1978 echo "ARLIBS_END=-Wl,--no-whole-archive" >> $config_mak
1979 elif check_linker_flags
-z,allextract
-z,defaultextract
; then
1981 echo "ARLIBS_BEGIN=-Wl,-z,allextract" >> $config_mak
1982 echo "ARLIBS_END=-Wl,-z,defaultextract" >> $config_mak
1983 elif check_linker_flags
-all_load ; then
1985 echo "ARLIBS_BEGIN=-all_load" >> $config_mak
1986 echo "ARLIBS_END=" >> $config_mak
1988 echo "Error: your linker does not support --whole-archive or -z."
1989 echo "Please report to qemu-devel@nongnu.org"
1993 if test "$xen" = "yes" ;
1995 echo "CONFIG_XEN=yes" >> $config_mak
1998 # this is a temp hack needed for kvm
1999 if test "$kvm" = "yes" ; then
2000 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2003 echo "KVM_KMOD=$kvm_kmod" >> $config_mak
2006 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
2007 tools
="qemu-img\$(EXESUF) $tools"
2008 if [ "$linux" = "yes" ] ; then
2009 tools
="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
2012 echo "TOOLS=$tools" >> $config_mak
2014 if test -f ${config_h}~
; then
2015 if cmp -s $config_h ${config_h}~
; then
2016 mv ${config_h}~
$config_h
2022 config_host_mak
=${config_mak}
2024 for target
in $target_list; do
2025 target_dir
="$target"
2026 config_mak
=$target_dir/config.mak
2027 config_h
=$target_dir/config.h
2028 target_cpu
=`echo $target | cut -d '-' -f 1`
2029 target_bigendian
="no"
2030 [ "$target_cpu" = "armeb" ] && target_bigendian
=yes
2031 [ "$target_cpu" = "m68k" ] && target_bigendian
=yes
2032 [ "$target_cpu" = "microblaze" ] && target_bigendian
=yes
2033 [ "$target_cpu" = "mips" ] && target_bigendian
=yes
2034 [ "$target_cpu" = "mipsn32" ] && target_bigendian
=yes
2035 [ "$target_cpu" = "mips64" ] && target_bigendian
=yes
2036 [ "$target_cpu" = "ppc" ] && target_bigendian
=yes
2037 [ "$target_cpu" = "ppcemb" ] && target_bigendian
=yes
2038 [ "$target_cpu" = "ppc64" ] && target_bigendian
=yes
2039 [ "$target_cpu" = "ppc64abi32" ] && target_bigendian
=yes
2040 [ "$target_cpu" = "sh4eb" ] && target_bigendian
=yes
2041 [ "$target_cpu" = "sparc" ] && target_bigendian
=yes
2042 [ "$target_cpu" = "sparc64" ] && target_bigendian
=yes
2043 [ "$target_cpu" = "sparc32plus" ] && target_bigendian
=yes
2045 target_user_only
="no"
2046 target_linux_user
="no"
2047 target_darwin_user
="no"
2048 target_bsd_user
="no"
2050 ${target_cpu}-softmmu)
2051 target_softmmu
="yes"
2053 ${target_cpu}-linux-user)
2054 target_user_only
="yes"
2055 target_linux_user
="yes"
2057 ${target_cpu}-darwin-user)
2058 target_user_only
="yes"
2059 target_darwin_user
="yes"
2061 ${target_cpu}-bsd-user)
2062 target_user_only
="yes"
2063 target_bsd_user
="yes"
2066 echo "ERROR: Target '$target' not recognised"
2071 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
2073 test -f $config_h && mv $config_h ${config_h}~
2075 mkdir
-p $target_dir
2076 mkdir
-p $target_dir/fpu
2077 mkdir
-p $target_dir/tcg
2078 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
2079 mkdir
-p $target_dir/nwfpe
2083 # don't use ln -sf as not all "ln -sf" over write the file/link
2085 rm -f $target_dir/Makefile
2086 ln -s $source_path/Makefile.target
$target_dir/Makefile
2089 echo "# Automatically generated by configure - do not modify" > $config_mak
2090 echo "/* Automatically generated by configure - do not modify */" > $config_h
2093 echo "include ../config-host.mak" >> $config_mak
2094 echo "#include \"../config-host.h\"" >> $config_h
2099 interp_prefix1
=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
2100 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
2104 disable_cpu_emulation
() {
2105 if test $cpu_emulation = "no"; then
2106 echo "#define NO_CPU_EMULATION 1" >> $config_h
2107 echo "NO_CPU_EMULATION=1" >> $config_mak
2112 if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
2113 \
( "$cpu" = "i386" -o "$cpu" = "x86_64" -o "$cpu" = "ia64" -o "$cpu" = "powerpc" \
); then
2114 echo "#define USE_KVM 1" >> $config_h
2115 echo "USE_KVM=1" >> $config_mak
2116 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2117 if test $kvm_cap_pit = "yes" ; then
2118 echo "USE_KVM_PIT=1" >> $config_mak
2119 echo "#define USE_KVM_PIT 1" >> $config_h
2121 if test $kvm_cap_device_assignment = "yes" ; then
2122 echo "USE_KVM_DEVICE_ASSIGNMENT=1" >> $config_mak
2123 echo "#define USE_KVM_DEVICE_ASSIGNMENT 1" >> $config_h
2125 disable_cpu_emulation
2129 # Make sure the target and host cpus are compatible
2130 if test ! \
( "$target_cpu" = "$cpu" -o \
2131 \
( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \
) -o \
2132 \
( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \
) -o \
2133 \
( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \
) \
) -o \
2134 \
( "$target_cpu" = "ia64" -a "$cpu" = "ia64" \
) \
) ; then
2137 # Disable KVM for linux-user
2138 if test "$target_softmmu" = "no" ; then
2142 case "$target_cpu" in
2144 echo "TARGET_ARCH=i386" >> $config_mak
2145 echo "#define TARGET_ARCH \"i386\"" >> $config_h
2146 echo "#define TARGET_I386 1" >> $config_h
2147 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
2149 echo "CONFIG_KQEMU=yes" >> $config_mak
2150 echo "#define CONFIG_KQEMU 1" >> $config_h
2152 if test "$target_kvm" = "yes" ; then
2153 echo "USE_KVM=yes" >> $config_mak
2154 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2155 echo "#define USE_KVM 1" >> $config_h
2157 if test "$xen" = "yes" -a "$target_softmmu" = "yes";
2159 echo "CONFIG_XEN=yes" >> $config_mak
2160 echo "#define CONFIG_XEN 1" >> $config_h
2166 echo "TARGET_ARCH=x86_64" >> $config_mak
2167 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
2168 echo "#define TARGET_I386 1" >> $config_h
2169 echo "#define TARGET_X86_64 1" >> $config_h
2170 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
2172 echo "CONFIG_KQEMU=yes" >> $config_mak
2173 echo "#define CONFIG_KQEMU 1" >> $config_h
2179 echo "TARGET_ARCH=ia64" >> $config_mak
2180 echo "#define TARGET_ARCH \"ia64\"" >> $config_h
2181 echo "#define TARGET_IA64 1" >> $config_h
2183 if [ use_upstream_kvm
= yes ]; then
2184 if test "$target_kvm" = "yes" ; then
2185 echo "USE_KVM=yes" >> $config_mak
2186 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2187 echo "#define USE_KVM 1" >> $config_h
2190 if test "$xen" = "yes" -a "$target_softmmu" = "yes"
2192 echo "CONFIG_XEN=yes" >> $config_mak
2193 echo "#define CONFIG_XEN 1" >> $config_h
2198 echo "TARGET_ARCH=alpha" >> $config_mak
2199 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
2200 echo "#define TARGET_ALPHA 1" >> $config_h
2204 echo "TARGET_ARCH=arm" >> $config_mak
2205 echo "#define TARGET_ARCH \"arm\"" >> $config_h
2206 echo "#define TARGET_ARM 1" >> $config_h
2209 gdb_xml_files
="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
2213 echo "TARGET_ARCH=cris" >> $config_mak
2214 echo "#define TARGET_ARCH \"cris\"" >> $config_h
2215 echo "#define TARGET_CRIS 1" >> $config_h
2220 echo "TARGET_ARCH=m68k" >> $config_mak
2221 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
2222 echo "#define TARGET_M68K 1" >> $config_h
2224 gdb_xml_files
="cf-core.xml cf-fp.xml"
2228 echo "TARGET_ARCH=microblaze" >> $config_mak
2229 echo "#define TARGET_ARCH \"microblaze\"" >> $config_h
2230 echo "#define TARGET_MICROBLAZE 1" >> $config_h
2236 echo "TARGET_ARCH=mips" >> $config_mak
2237 echo "#define TARGET_ARCH \"mips\"" >> $config_h
2238 echo "#define TARGET_MIPS 1" >> $config_h
2239 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
2243 echo "TARGET_ARCH=mipsn32" >> $config_mak
2244 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
2245 echo "#define TARGET_MIPS 1" >> $config_h
2246 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
2250 echo "TARGET_ARCH=mips64" >> $config_mak
2251 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
2252 echo "#define TARGET_MIPS 1" >> $config_h
2253 echo "#define TARGET_MIPS64 1" >> $config_h
2254 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
2258 echo "TARGET_ARCH=ppc" >> $config_mak
2259 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
2260 echo "#define TARGET_PPC 1" >> $config_h
2261 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2265 echo "TARGET_ARCH=ppcemb" >> $config_mak
2266 echo "TARGET_ABI_DIR=ppc" >> $config_mak
2267 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
2268 echo "#define TARGET_PPC 1" >> $config_h
2269 echo "#define TARGET_PPCEMB 1" >> $config_h
2270 if test use_upstream_kvm
= yes ; then
2271 if test "$target_kvm" = "yes" ; then
2272 echo "USE_KVM=yes" >> $config_mak
2273 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2274 echo "#define USE_KVM 1" >> $config_h
2277 gdb_xml_files
="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2281 echo "TARGET_ARCH=ppc64" >> $config_mak
2282 echo "TARGET_ABI_DIR=ppc" >> $config_mak
2283 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
2284 echo "#define TARGET_PPC 1" >> $config_h
2285 echo "#define TARGET_PPC64 1" >> $config_h
2286 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2290 echo "TARGET_ARCH=ppc64" >> $config_mak
2291 echo "TARGET_ABI_DIR=ppc" >> $config_mak
2292 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
2293 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
2294 echo "#define TARGET_PPC 1" >> $config_h
2295 echo "#define TARGET_PPC64 1" >> $config_h
2296 echo "#define TARGET_ABI32 1" >> $config_h
2297 gdb_xml_files
="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2301 echo "TARGET_ARCH=sh4" >> $config_mak
2302 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
2303 echo "#define TARGET_SH4 1" >> $config_h
2309 echo "TARGET_ARCH=sparc" >> $config_mak
2310 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
2311 echo "#define TARGET_SPARC 1" >> $config_h
2315 echo "TARGET_ARCH=sparc64" >> $config_mak
2316 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
2317 echo "#define TARGET_SPARC 1" >> $config_h
2318 echo "#define TARGET_SPARC64 1" >> $config_h
2323 echo "TARGET_ARCH=sparc64" >> $config_mak
2324 echo "TARGET_ABI_DIR=sparc" >> $config_mak
2325 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
2326 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
2327 echo "#define TARGET_SPARC 1" >> $config_h
2328 echo "#define TARGET_SPARC64 1" >> $config_h
2329 echo "#define TARGET_ABI32 1" >> $config_h
2333 echo "Unsupported target CPU"
2337 if [ $target_phys_bits -lt $hostlongbits ] ; then
2338 target_phys_bits
=$hostlongbits
2340 echo "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak
2341 echo "#define TARGET_PHYS_ADDR_BITS $target_phys_bits" >> $config_h
2342 echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
2343 if test "$target_bigendian" = "yes" ; then
2344 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
2345 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
2347 if test "$target_softmmu" = "yes" ; then
2348 echo "CONFIG_SOFTMMU=yes" >> $config_mak
2349 echo "#define CONFIG_SOFTMMU 1" >> $config_h
2351 if test "$target_user_only" = "yes" ; then
2352 echo "CONFIG_USER_ONLY=yes" >> $config_mak
2353 echo "#define CONFIG_USER_ONLY 1" >> $config_h
2355 if test "$target_linux_user" = "yes" ; then
2356 echo "CONFIG_LINUX_USER=yes" >> $config_mak
2357 echo "#define CONFIG_LINUX_USER 1" >> $config_h
2359 if test "$target_darwin_user" = "yes" ; then
2360 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
2361 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
2364 if test ! -z "$gdb_xml_files" ; then
2365 for x
in $gdb_xml_files; do
2366 list
="$list $source_path/gdb-xml/$x"
2369 echo "TARGET_XML_FILES=$list" >> $config_mak
2371 if test "$target_cpu" = "arm" \
2372 -o "$target_cpu" = "armeb" \
2373 -o "$target_cpu" = "m68k" \
2374 -o "$target_cpu" = "microblaze" \
2375 -o "$target_cpu" = "mips" \
2376 -o "$target_cpu" = "mipsel" \
2377 -o "$target_cpu" = "mipsn32" \
2378 -o "$target_cpu" = "mipsn32el" \
2379 -o "$target_cpu" = "mips64" \
2380 -o "$target_cpu" = "mips64el" \
2381 -o "$target_cpu" = "ppc" \
2382 -o "$target_cpu" = "ppc64" \
2383 -o "$target_cpu" = "ppc64abi32" \
2384 -o "$target_cpu" = "ppcemb" \
2385 -o "$target_cpu" = "sparc" \
2386 -o "$target_cpu" = "sparc64" \
2387 -o "$target_cpu" = "sparc32plus"; then
2388 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
2389 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
2391 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
2392 echo "TARGET_HAS_BFLT=yes" >> $config_mak
2393 echo "#define TARGET_HAS_BFLT 1" >> $config_h
2395 if test "$target_user_only" = "yes" \
2396 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
2397 echo "#define USE_NPTL 1" >> $config_h
2399 # 32 bit ELF loader in addition to native 64 bit loader?
2400 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
2401 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
2402 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
2404 if test "$target_bsd_user" = "yes" ; then
2405 echo "CONFIG_BSD_USER=yes" >> $config_mak
2406 echo "#define CONFIG_BSD_USER 1" >> $config_h
2409 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~
$config_h
2411 done # for target in $targets
2413 # build tree in object directory if source path is different from current one
2414 if test "$source_path_used" = "yes" ; then
2415 DIRS
="tests tests/cris slirp audio block"
2416 FILES
="Makefile tests/Makefile"
2417 FILES
="$FILES tests/cris/Makefile tests/cris/.gdbinit"
2418 FILES
="$FILES tests/test-mmap.c"
2419 for dir
in $DIRS ; do
2422 # remove the link and recreate it, as not all "ln -sf" overwrite the link
2423 for f
in $FILES ; do
2425 ln -s $source_path/$f $f
2429 for hwlib
in 32 64; do
2433 ln -s $source_path/Makefile.hw
$d/Makefile
2434 echo "HWLIB=libqemuhw$hwlib.a" > $d/config.mak
2435 echo "CPPFLAGS=-DTARGET_PHYS_ADDR_BITS=$hwlib" >> $d/config.mak