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"
21 interp_prefix
="/usr/gnemul/qemu-%M"
26 gcc3_list
="gcc-3.4 gcc34 gcc-3.3 gcc33 gcc-3.2 gcc32"
35 i386|i486|i586|i686|i86pc|BePC
)
47 "Power Macintosh"|ppc|ppc64
)
110 OS_CFLAGS
="-mno-cygwin"
118 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
136 OS_CFLAGS
="-mdynamic-no-pic"
142 needs_libsunmath
="no"
143 solarisrev
=`uname -r | cut -f2 -d.`
144 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
145 if test "$solarisrev" -le 9 ; then
146 if test -f /opt
/SUNWspro
/prod
/lib
/libsunmath.so
.1; then
147 needs_libsunmath
="yes"
149 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
150 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
151 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
152 echo "Studio 11 can be downloaded from www.sun.com."
156 if test "$solarisrev" -ge 9 ; then
160 if test -f /usr
/include
/sys
/soundcard.h
; then
168 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
174 if [ "$bsd" = "yes" ] ; then
175 if [ "$darwin" != "yes" ] ; then
181 source_path
=`dirname "$0"`
182 if [ -z "$source_path" ]; then
185 source_path
=`cd "$source_path"; pwd`
187 if test "$source_path" = `pwd` ; then
188 source_path_used
="no"
190 source_path_used
="yes"
194 optarg
=`expr "x$opt" : 'x[^=]*=\(.*\)'`
196 --help|
-h) show_help
=yes
198 --prefix=*) prefix
="$optarg"
200 --interp-prefix=*) interp_prefix
="$optarg"
202 --source-path=*) source_path
="$optarg"
203 source_path_used
="yes"
205 --cross-prefix=*) cross_prefix
="$optarg"
210 --host-cc=*) host_cc
="$optarg"
212 --make=*) make="$optarg"
214 --install=*) install="$optarg"
216 --extra-cflags=*) CFLAGS
="$optarg"
218 --extra-ldflags=*) LDFLAGS
="$optarg"
220 --cpu=*) cpu
="$optarg"
222 --target-list=*) target_list
="$optarg"
224 --enable-gprof) gprof
="yes"
226 --static) static
="yes"
228 --disable-sdl) sdl
="no"
230 --enable-coreaudio) coreaudio
="yes"
232 --enable-alsa) alsa
="yes"
234 --enable-dsound) dsound
="yes"
236 --enable-fmod) fmod
="yes"
238 --fmod-lib=*) fmod_lib
="$optarg"
240 --fmod-inc=*) fmod_inc
="$optarg"
242 --enable-mingw32) mingw32
="yes" ; cross_prefix
="i386-mingw32-" ; linux_user
="no"
244 --disable-slirp) slirp
="no"
246 --enable-adlib) adlib
="yes"
248 --disable-kqemu) kqemu
="no"
250 --enable-profiler) profiler
="yes"
252 --enable-cocoa) cocoa
="yes" ; coreaudio
="yes" ; sdl
="no"
254 --disable-gfx-check) check_gfx
="no"
256 --disable-gcc-check) check_gcc
="no"
258 --disable-system) softmmu
="no"
260 --enable-system) softmmu
="yes"
262 --disable-linux-user) linux_user
="no"
264 --enable-linux-user) linux_user
="yes"
266 --disable-darwin-user) darwin_user
="no"
268 --enable-darwin-user) darwin_user
="yes"
270 --enable-uname-release=*) uname_release
="$optarg"
275 v7|v8
) SP_CFLAGS
="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
276 target_cpu
="sparc"; cpu
="sparc" ;;
277 v8plus|v8plusa
) SP_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m32"
278 target_cpu
="sparc"; cpu
="sparc" ;;
279 v9
) SP_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS
="-m64"
280 target_cpu
="sparc64"; cpu
="sparc64" ;;
281 *) echo "undefined SPARC architecture. Exiting";exit 1;;
287 if [ "$bsd" = "yes" -o "$darwin" = "yes" -o "$mingw32" = "yes" ] ; then
293 # default flags for all hosts
294 CFLAGS
="$CFLAGS -Wall -O2 -g -fno-strict-aliasing"
295 LDFLAGS
="$LDFLAGS -g"
298 # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
299 # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
302 sparc
) if test -z "$sparc_cpu" ; then
303 ARCH_CFLAGS
="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
306 ARCH_CFLAGS
="${SP_CFLAGS}"
307 ARCH_LDFLAGS
="${SP_LDFLAGS}"
310 sparc64
) if test -z "$sparc_cpu" ; then
311 ARCH_CFLAGS
="-m64 -mcpu=ultrasparc -D__sparc_v9__"
314 ARCH_CFLAGS
="${SP_CFLAGS}"
315 ARCH_LDFLAGS
="${SP_LDFLAGS}"
320 if test x
"$show_help" = x
"yes" ; then
323 Usage: configure [options]
324 Options: [defaults in brackets after descriptions]
327 echo "Standard options:"
328 echo " --help print this message"
329 echo " --prefix=PREFIX install in PREFIX [$prefix]"
330 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
331 echo " use %M for cpu name [$interp_prefix]"
332 echo " --target-list=LIST set target list [$target_list]"
334 echo "kqemu kernel acceleration support:"
335 echo " --disable-kqemu disable kqemu support"
337 echo "Advanced options (experts only):"
338 echo " --source-path=PATH path of source code [$source_path]"
339 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
340 echo " --cc=CC use C compiler CC [$cc]"
341 echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
342 echo " --make=MAKE use specified make [$make]"
343 echo " --install=INSTALL use specified install [$install]"
344 echo " --static enable static build [$static]"
345 echo " --enable-cocoa enable COCOA (Mac OS X only)"
346 echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
347 echo " --enable-adlib enable Adlib emulation"
348 echo " --enable-coreaudio enable Coreaudio audio driver"
349 echo " --enable-alsa enable ALSA audio driver"
350 echo " --enable-fmod enable FMOD audio driver"
351 echo " --enable-dsound enable DirectSound audio driver"
352 echo " --enable-system enable all system emulation targets"
353 echo " --disable-system disable all system emulation targets"
354 echo " --enable-linux-user enable all linux usermode emulation targets"
355 echo " --disable-linux-user disable all linux usermode emulation targets"
356 echo " --enable-darwin-user enable all darwin usermode emulation targets"
357 echo " --disable-darwin-user disable all darwin usermode emulation targets"
358 echo " --fmod-lib path to FMOD library"
359 echo " --fmod-inc path to FMOD includes"
360 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
361 echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
363 echo "NOTE: The object files are built at the place where configure is launched"
367 cc
="${cross_prefix}${cc}"
368 ar="${cross_prefix}${ar}"
369 strip
="${cross_prefix}${strip}"
371 # check that the C compiler works.
376 if $cc -c -o $TMPO $TMPC 2> /dev
/null
; then
377 : C compiler works ok
379 echo "ERROR: \"$cc\" either does not exist or does not work"
383 if test "$mingw32" = "yes" ; then
387 if [ "$cpu" = "i386" ] ; then
392 # Check for gcc4, error if pre-gcc4
393 if test "$check_gcc" = "yes" ; then
398 int main(){return 0;}
400 if "$cc" -o $TMPE $TMPC 2> /dev
/null
; then
401 echo "WARNING: \"$cc\" looks like gcc 4.x"
403 if test "$gcc3_search" = "yes" ; then
404 echo "Looking for gcc 3.x"
405 for compat_cc
in $gcc3_list ; do
406 if "$cross_prefix$compat_cc" --version > /dev
/null
2>&1 ; then
407 echo "Found \"$compat_cc\""
408 cc
="$cross_prefix$compat_cc"
409 found_compat_cc
="yes"
413 if test "$found_compat_cc" = "no" ; then
414 echo "gcc 3.x not found!"
417 if test "$found_compat_cc" = "no" ; then
418 echo "QEMU is known to have problems when compiled with gcc 4.x"
419 echo "It is recommended that you use gcc 3.x to build QEMU"
420 echo "To use this compiler anyway, configure with --disable-gcc-check"
427 # Solaris specific configure tool chain decisions
429 if test "$solaris" = "yes" ; then
431 # gcc for solaris 10/fcs in /usr/sfw/bin doesn't compile qemu correctly
432 # override the check with --disable-gcc-check
434 if test "$solarisrev" -eq 10 -a "$check_gcc" = "yes" ; then
436 if test "$solgcc" = "/usr/sfw/bin/gcc" ; then
437 echo "Solaris 10/FCS gcc in /usr/sfw/bin will not compiled qemu correctly."
438 echo "please get gcc-3.4.3 or later, from www.blastwave.org using pkg-get -i gcc3"
439 echo "or get the latest patch from SunSolve for gcc"
443 solinst
=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
444 if test -z "$solinst" ; then
445 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
446 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
447 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
450 if test "$solinst" = "/usr/sbin/install" ; then
451 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
452 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
453 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
456 sol_ar
=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
457 if test -z "$sol_ar" ; then
458 echo "Error: No path includes ar"
459 if test -f /usr
/ccs
/bin
/ar ; then
460 echo "Add /usr/ccs/bin to your path and rerun configure"
467 if test -z "$target_list" ; then
468 # these targets are portable
469 if [ "$softmmu" = "yes" ] ; then
470 target_list
="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu mips-softmmu mipsel-softmmu mips64-softmmu mips64el-softmmu arm-softmmu ppc64-softmmu ppcemb-softmmu m68k-softmmu"
472 # the following are Linux specific
473 if [ "$linux_user" = "yes" ] ; then
474 target_list
="i386-linux-user arm-linux-user armeb-linux-user sparc-linux-user ppc-linux-user mips-linux-user mipsel-linux-user m68k-linux-user alpha-linux-user $target_list"
476 # the following are Darwin specific
477 if [ "$darwin_user" = "yes" ] ; then
478 target_list
="i386-darwin-user ppc-darwin-user $target_list"
481 target_list
=`echo "$target_list" | sed -e 's/,/ /g'`
483 if test -z "$target_list" ; then
484 echo "No targets enabled"
488 if test -z "$cross_prefix" ; then
491 # big/little endian test
493 #include <inttypes.h>
494 int main(int argc, char ** argv){
495 volatile uint32_t i=0x01234567;
496 return (*((uint8_t*)(&i))) == 0x67;
500 if $cc -o $TMPE $TMPC 2> /dev
/null
; then
501 $TMPE && bigendian
="yes"
503 echo big
/little
test failed
508 # if cross compiling, cannot launch a program, so make a static guess
509 if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "mips64" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k" -o "$cpu" = "armv4b"; then
515 # host long bits test
517 if test "$cpu" = "sparc64" -o "$cpu" = "ia64" -o "$cpu" = "x86_64" -o "$cpu" = "alpha"; then
521 # check gcc options support
527 ##########################################
532 if test -z "$sdl" ; then
534 sdl_config
="sdl-config"
538 if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
539 # win32 cross compilation case
540 sdl_config
="i386-mingw32msvc-sdl-config"
546 #undef main /* We don't want SDL to override our main() */
547 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
550 if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev
/null
; then
551 _sdlversion
=`$sdl_config --version | sed 's/[^0-9]//g'`
552 if test "$_sdlversion" -lt 121 ; then
555 if test "$cocoa" = "no" ; then
560 # static link with sdl ?
561 if test "$sdl" = "yes" ; then
563 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa
="yes"
564 sdl_static_libs
=`$sdl_config --static-libs 2>/dev/null`
565 if [ "$aa" = "yes" ] ; then
566 sdl_static_libs
="$sdl_static_libs `aalib-config --static-libs`"
569 if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev
/null
; then
575 fi # sdl compile test
577 fi # cross compilation
580 # Make sure to disable cocoa if sdl was set
581 if test "$sdl" = "yes" ; then
587 ##########################################
588 # alsa sound support libraries
590 if test "$alsa" = "yes" ; then
592 #include <alsa/asoundlib.h>
593 int main(void) { snd_pcm_t **handle; return snd_pcm_close(*handle); }
595 if $cc -o $TMPE $TMPC -lasound 2> /dev
/null
; then
599 echo "Error: Could not find alsa"
600 echo "Make sure to have the alsa libs and headers installed."
606 # Check if tools are available to build documentation.
607 if [ -x "`which texi2html 2>/dev/null`" ] && \
608 [ -x "`which pod2man 2>/dev/null`" ]; then
612 if test "$mingw32" = "yes" ; then
613 if test -z "$prefix" ; then
614 prefix
="/c/Program Files/Qemu"
621 if test -z "$prefix" ; then
624 mansuffix
="/share/man"
625 datasuffix
="/share/qemu"
626 docsuffix
="/share/doc/qemu"
630 echo "Install prefix $prefix"
631 echo "BIOS directory $prefix$datasuffix"
632 echo "binary directory $prefix$binsuffix"
633 if test "$mingw32" = "no" ; then
634 echo "Manual directory $prefix$mansuffix"
635 echo "ELF interp prefix $interp_prefix"
637 echo "Source path $source_path"
638 echo "C compiler $cc"
639 echo "Host C compiler $host_cc"
641 echo "install $install"
643 echo "host big endian $bigendian"
644 echo "target list $target_list"
645 echo "gprof enabled $gprof"
646 echo "profiler $profiler"
647 echo "static build $static"
648 if test "$darwin" = "yes" ; then
649 echo "Cocoa support $cocoa"
651 echo "SDL support $sdl"
652 if test "$sdl" != "no" ; then
653 echo "SDL static link $sdl_static"
655 echo "mingw32 support $mingw32"
656 echo "Adlib support $adlib"
657 echo "CoreAudio support $coreaudio"
658 echo "ALSA support $alsa"
659 echo "DSound support $dsound"
660 if test "$fmod" = "yes"; then
661 if test -z $fmod_lib ||
test -z $fmod_inc; then
663 echo "Error: You must specify path to FMOD library and headers"
664 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
668 fmod_support
=" (lib='$fmod_lib' include='$fmod_inc')"
672 echo "FMOD support $fmod $fmod_support"
673 echo "OSS support $oss"
674 if test -n "$sparc_cpu"; then
675 echo "Target Sparc Arch $sparc_cpu"
677 echo "kqemu support $kqemu"
678 echo "Documentation $build_docs"
679 [ ! -z "$uname_release" ] && \
680 echo "uname -r $uname_release"
682 if test $sdl_too_old = "yes"; then
683 echo "-> Your SDL version is too old - please upgrade to have SDL support"
685 #if test "$sdl_static" = "no"; then
686 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
688 config_mak
="config-host.mak"
689 config_h
="config-host.h"
691 #echo "Creating $config_mak and $config_h"
693 echo "# Automatically generated by configure - do not modify" > $config_mak
694 echo "# Configured with: $0 $@" >> $config_mak
695 echo "/* Automatically generated by configure - do not modify */" > $config_h
697 echo "prefix=$prefix" >> $config_mak
698 echo "bindir=\${prefix}$binsuffix" >> $config_mak
699 echo "mandir=\${prefix}$mansuffix" >> $config_mak
700 echo "datadir=\${prefix}$datasuffix" >> $config_mak
701 echo "docdir=\${prefix}$docsuffix" >> $config_mak
702 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
703 echo "MAKE=$make" >> $config_mak
704 echo "INSTALL=$install" >> $config_mak
705 echo "CC=$cc" >> $config_mak
706 echo "HOST_CC=$host_cc" >> $config_mak
707 echo "AR=$ar" >> $config_mak
708 echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
709 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
710 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
711 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
712 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
713 echo "CFLAGS=$CFLAGS" >> $config_mak
714 echo "LDFLAGS=$LDFLAGS" >> $config_mak
715 echo "EXESUF=$EXESUF" >> $config_mak
716 echo "AIOLIBS=$AIOLIBS" >> $config_mak
717 if test "$cpu" = "i386" ; then
718 echo "ARCH=i386" >> $config_mak
719 echo "#define HOST_I386 1" >> $config_h
720 elif test "$cpu" = "x86_64" ; then
721 echo "ARCH=x86_64" >> $config_mak
722 echo "#define HOST_X86_64 1" >> $config_h
723 elif test "$cpu" = "armv4b" ; then
724 echo "ARCH=arm" >> $config_mak
725 echo "#define HOST_ARM 1" >> $config_h
726 elif test "$cpu" = "armv4l" ; then
727 echo "ARCH=arm" >> $config_mak
728 echo "#define HOST_ARM 1" >> $config_h
729 elif test "$cpu" = "powerpc" ; then
730 echo "ARCH=ppc" >> $config_mak
731 echo "#define HOST_PPC 1" >> $config_h
732 elif test "$cpu" = "mips" ; then
733 echo "ARCH=mips" >> $config_mak
734 echo "#define HOST_MIPS 1" >> $config_h
735 elif test "$cpu" = "mips64" ; then
736 echo "ARCH=mips64" >> $config_mak
737 echo "#define HOST_MIPS64 1" >> $config_h
738 elif test "$cpu" = "s390" ; then
739 echo "ARCH=s390" >> $config_mak
740 echo "#define HOST_S390 1" >> $config_h
741 elif test "$cpu" = "alpha" ; then
742 echo "ARCH=alpha" >> $config_mak
743 echo "#define HOST_ALPHA 1" >> $config_h
744 elif test "$cpu" = "sparc" ; then
745 echo "ARCH=sparc" >> $config_mak
746 echo "#define HOST_SPARC 1" >> $config_h
747 elif test "$cpu" = "sparc64" ; then
748 echo "ARCH=sparc64" >> $config_mak
749 echo "#define HOST_SPARC64 1" >> $config_h
750 elif test "$cpu" = "ia64" ; then
751 echo "ARCH=ia64" >> $config_mak
752 echo "#define HOST_IA64 1" >> $config_h
753 elif test "$cpu" = "m68k" ; then
754 echo "ARCH=m68k" >> $config_mak
755 echo "#define HOST_M68K 1" >> $config_h
757 echo "Unsupported CPU = $cpu"
760 if test "$bigendian" = "yes" ; then
761 echo "WORDS_BIGENDIAN=yes" >> $config_mak
762 echo "#define WORDS_BIGENDIAN 1" >> $config_h
764 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
765 if test "$mingw32" = "yes" ; then
766 echo "CONFIG_WIN32=yes" >> $config_mak
767 echo "#define CONFIG_WIN32 1" >> $config_h
770 #include <byteswap.h>
771 int main(void) { return bswap_32(0); }
773 if $cc -o $TMPE $TMPC 2> /dev
/null
; then
774 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
777 if test "$darwin" = "yes" ; then
778 echo "CONFIG_DARWIN=yes" >> $config_mak
779 echo "#define CONFIG_DARWIN 1" >> $config_h
781 if test "$solaris" = "yes" ; then
782 echo "CONFIG_SOLARIS=yes" >> $config_mak
783 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
784 if test "$needs_libsunmath" = "yes" ; then
785 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
786 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
789 if test -n "$sparc_cpu"; then
790 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
791 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
793 if test "$gdbstub" = "yes" ; then
794 echo "CONFIG_GDBSTUB=yes" >> $config_mak
795 echo "#define CONFIG_GDBSTUB 1" >> $config_h
797 if test "$gprof" = "yes" ; then
798 echo "TARGET_GPROF=yes" >> $config_mak
799 echo "#define HAVE_GPROF 1" >> $config_h
801 if test "$static" = "yes" ; then
802 echo "CONFIG_STATIC=yes" >> $config_mak
803 echo "#define CONFIG_STATIC 1" >> $config_h
805 if test $profiler = "yes" ; then
806 echo "#define CONFIG_PROFILER 1" >> $config_h
808 if test "$slirp" = "yes" ; then
809 echo "CONFIG_SLIRP=yes" >> $config_mak
810 echo "#define CONFIG_SLIRP 1" >> $config_h
812 if test "$adlib" = "yes" ; then
813 echo "CONFIG_ADLIB=yes" >> $config_mak
814 echo "#define CONFIG_ADLIB 1" >> $config_h
816 if test "$oss" = "yes" ; then
817 echo "CONFIG_OSS=yes" >> $config_mak
818 echo "#define CONFIG_OSS 1" >> $config_h
820 if test "$coreaudio" = "yes" ; then
821 echo "CONFIG_COREAUDIO=yes" >> $config_mak
822 echo "#define CONFIG_COREAUDIO 1" >> $config_h
824 if test "$alsa" = "yes" ; then
825 echo "CONFIG_ALSA=yes" >> $config_mak
826 echo "#define CONFIG_ALSA 1" >> $config_h
828 if test "$dsound" = "yes" ; then
829 echo "CONFIG_DSOUND=yes" >> $config_mak
830 echo "#define CONFIG_DSOUND 1" >> $config_h
832 if test "$fmod" = "yes" ; then
833 echo "CONFIG_FMOD=yes" >> $config_mak
834 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
835 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
836 echo "#define CONFIG_FMOD 1" >> $config_h
838 qemu_version
=`head $source_path/VERSION`
839 echo "VERSION=$qemu_version" >>$config_mak
840 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
842 echo "SRC_PATH=$source_path" >> $config_mak
843 if [ "$source_path_used" = "yes" ]; then
844 echo "VPATH=$source_path" >> $config_mak
846 echo "TARGET_DIRS=$target_list" >> $config_mak
847 if [ "$build_docs" = "yes" ] ; then
848 echo "BUILD_DOCS=yes" >> $config_mak
852 if [ "$bsd" = "yes" ] ; then
853 echo "#define O_LARGEFILE 0" >> $config_h
854 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
855 echo "#define _BSD 1" >> $config_h
858 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
860 for target
in $target_list; do
862 config_mak
=$target_dir/config.mak
863 config_h
=$target_dir/config.h
864 target_cpu
=`echo $target | cut -d '-' -f 1`
865 target_bigendian
="no"
866 [ "$target_cpu" = "armeb" ] && target_bigendian
=yes
867 [ "$target_cpu" = "sparc" ] && target_bigendian
=yes
868 [ "$target_cpu" = "sparc64" ] && target_bigendian
=yes
869 [ "$target_cpu" = "ppc" ] && target_bigendian
=yes
870 [ "$target_cpu" = "ppc64" ] && target_bigendian
=yes
871 [ "$target_cpu" = "ppcemb" ] && target_bigendian
=yes
872 [ "$target_cpu" = "mips" ] && target_bigendian
=yes
873 [ "$target_cpu" = "mips64" ] && target_bigendian
=yes
874 [ "$target_cpu" = "sh4eb" ] && target_bigendian
=yes
875 [ "$target_cpu" = "m68k" ] && target_bigendian
=yes
877 target_user_only
="no"
878 target_linux_user
="no"
879 target_darwin_user
="no"
881 ${target_cpu}-softmmu)
884 ${target_cpu}-linux-user)
885 target_user_only
="yes"
886 target_linux_user
="yes"
888 ${target_cpu}-darwin-user)
889 target_user_only
="yes"
890 target_darwin_user
="yes"
893 echo "ERROR: Target '$target' not recognised"
898 if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
899 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
900 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
901 echo "To build QEMU without graphical output configure with --disable-gfx-check"
902 echo "Note that this will disable all output from the virtual graphics card."
906 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
909 mkdir
-p $target_dir/fpu
910 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" ; then
911 mkdir
-p $target_dir/nwfpe
913 if test "$target_user_only" = "no" ; then
914 mkdir
-p $target_dir/slirp
918 # don't use ln -sf as not all "ln -sf" over write the file/link
920 rm -f $target_dir/Makefile
921 ln -s $source_path/Makefile.target
$target_dir/Makefile
924 echo "# Automatically generated by configure - do not modify" > $config_mak
925 echo "/* Automatically generated by configure - do not modify */" > $config_h
928 echo "include ../config-host.mak" >> $config_mak
929 echo "#include \"../config-host.h\"" >> $config_h
932 interp_prefix1
=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
933 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
935 if test "$target_cpu" = "i386" ; then
936 echo "TARGET_ARCH=i386" >> $config_mak
937 echo "#define TARGET_ARCH \"i386\"" >> $config_h
938 echo "#define TARGET_I386 1" >> $config_h
939 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "i386" ; then
940 echo "#define USE_KQEMU 1" >> $config_h
942 elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
943 echo "TARGET_ARCH=arm" >> $config_mak
944 echo "#define TARGET_ARCH \"arm\"" >> $config_h
945 echo "#define TARGET_ARM 1" >> $config_h
947 elif test "$target_cpu" = "sparc" ; then
948 echo "TARGET_ARCH=sparc" >> $config_mak
949 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
950 echo "#define TARGET_SPARC 1" >> $config_h
951 elif test "$target_cpu" = "sparc64" ; then
952 echo "TARGET_ARCH=sparc64" >> $config_mak
953 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
954 echo "#define TARGET_SPARC 1" >> $config_h
955 echo "#define TARGET_SPARC64 1" >> $config_h
956 elif test "$target_cpu" = "ppc" ; then
957 echo "TARGET_ARCH=ppc" >> $config_mak
958 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
959 echo "#define TARGET_PPC 1" >> $config_h
960 elif test "$target_cpu" = "ppc64" ; then
961 echo "TARGET_ARCH=ppc64" >> $config_mak
962 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
963 echo "#define TARGET_PPC 1" >> $config_h
964 echo "#define TARGET_PPC64 1" >> $config_h
965 elif test "$target_cpu" = "ppcemb" ; then
966 echo "TARGET_ARCH=ppcemb" >> $config_mak
967 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
968 echo "#define TARGET_PPC 1" >> $config_h
969 echo "#define TARGET_PPCEMB 1" >> $config_h
970 elif test "$target_cpu" = "x86_64" ; then
971 echo "TARGET_ARCH=x86_64" >> $config_mak
972 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
973 echo "#define TARGET_I386 1" >> $config_h
974 echo "#define TARGET_X86_64 1" >> $config_h
975 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64" ; then
976 echo "#define USE_KQEMU 1" >> $config_h
978 elif test "$target_cpu" = "mips" -o "$target_cpu" = "mipsel" ; then
979 echo "TARGET_ARCH=mips" >> $config_mak
980 echo "#define TARGET_ARCH \"mips\"" >> $config_h
981 echo "#define TARGET_MIPS 1" >> $config_h
982 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
983 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
984 elif test "$target_cpu" = "mips64" -o "$target_cpu" = "mips64el" ; then
985 echo "TARGET_ARCH=mips64" >> $config_mak
986 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
987 echo "#define TARGET_MIPS 1" >> $config_h
988 echo "#define TARGET_MIPS64 1" >> $config_h
989 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
990 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
991 elif test "$target_cpu" = "sh4" -o "$target_cpu" = "sh4eb" ; then
992 echo "TARGET_ARCH=sh4" >> $config_mak
993 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
994 echo "#define TARGET_SH4 1" >> $config_h
996 elif test "$target_cpu" = "m68k" ; then
997 echo "TARGET_ARCH=m68k" >> $config_mak
998 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
999 echo "#define TARGET_M68K 1" >> $config_h
1001 elif test "$target_cpu" = "alpha" ; then
1002 echo "TARGET_ARCH=alpha" >> $config_mak
1003 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1004 echo "#define TARGET_ALPHA 1" >> $config_h
1006 echo "Unsupported target CPU"
1009 if test "$target_bigendian" = "yes" ; then
1010 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1011 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1013 if test "$target_softmmu" = "yes" ; then
1014 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1015 echo "#define CONFIG_SOFTMMU 1" >> $config_h
1017 if test "$target_user_only" = "yes" ; then
1018 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1019 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1021 if test "$target_linux_user" = "yes" ; then
1022 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1023 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1025 if test "$target_darwin_user" = "yes" ; then
1026 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1027 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1030 if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" -o "$target_cpu" = "sparc" -o "$target_cpu" = "sparc64" -o "$target_cpu" = "m68k"; then
1031 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1032 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1034 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1035 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1036 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1040 if test "$target_user_only" = "no"; then
1041 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1046 if test "$sdl1" = "yes" ; then
1047 echo "#define CONFIG_SDL 1" >> $config_h
1048 echo "CONFIG_SDL=yes" >> $config_mak
1049 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1050 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1052 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1054 if [ "${aa}" = "yes" ] ; then
1055 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1057 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1062 if test "$cocoa" = "yes" ; then
1063 echo "#define CONFIG_COCOA 1" >> $config_h
1064 echo "CONFIG_COCOA=yes" >> $config_mak
1067 done # for target in $targets
1069 # build tree in object directory if source path is different from current one
1070 if test "$source_path_used" = "yes" ; then
1072 FILES
="Makefile tests/Makefile"
1073 for dir
in $DIRS ; do
1076 # remove the link and recreate it, as not all "ln -sf" overwrite the link
1077 for f
in $FILES ; do
1079 ln -s $source_path/$f $f
1083 rm -f $TMPO $TMPC $TMPE $TMPS