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"
33 i386|i486|i586|i686|i86pc|BePC)
45 "Power Macintosh"|ppc|ppc64)
98 build_acpi_tables="no"
106 CFLAGS="-O2 -mno-cygwin"
114 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
137 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
143 if [ "$bsd" = "yes" ] ; then
144 if [ "$darwin" != "yes" ] ; then
149 if [ "$solaris" = "yes" ] ; then
152 solarisrev=`uname -r | cut -f2 -d.`
156 source_path=`dirname "$0"`
157 if [ -z "$source_path" ]; then
160 source_path=`cd "$source_path"; pwd`
162 if test "$source_path" = `pwd` ; then
163 source_path_used="no"
165 source_path_used="yes"
169 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
171 --help|-h) show_help=yes
173 --prefix=*) prefix="$optarg"
175 --interp-prefix=*) interp_prefix="$optarg"
177 --source-path=*) source_path="$optarg"
178 source_path_used="yes"
180 --cross-prefix=*) cross_prefix="$optarg"
184 --host-cc=*) host_cc="$optarg"
186 --make=*) make="$optarg"
188 --install=*) install="$optarg"
190 --extra-cflags=*) CFLAGS="$optarg"
192 --extra-ldflags=*) LDFLAGS="$optarg"
194 --cpu=*) cpu="$optarg"
196 --target-list=*) target_list="$optarg"
198 --enable-gprof) gprof="yes"
200 --static) static="yes"
202 --disable-sdl) sdl="no"
204 --enable-coreaudio) coreaudio="yes"
206 --enable-alsa) alsa="yes"
208 --enable-dsound) dsound="yes"
210 --enable-fmod) fmod="yes"
212 --fmod-lib=*) fmod_lib="$optarg"
214 --fmod-inc=*) fmod_inc="$optarg"
216 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
218 --disable-slirp) slirp="no"
220 --enable-adlib) adlib="yes"
222 --disable-kqemu) kqemu="no"
224 --enable-profiler) profiler="yes"
226 --kernel-path=*) kernel_path="$optarg"
228 --enable-cocoa) cocoa="yes" ; coreaudio="yes" ; sdl="no"
230 --disable-gfx-check) check_gfx="no"
232 --disable-gcc-check) check_gcc="no"
234 --disable-system) softmmu="no"
236 --enable-system) softmmu="yes"
238 --disable-user) user="no"
240 --enable-user) user="yes"
242 --enable-uname-release=*) uname_release="$optarg"
244 --enable-iasl) build_acpi_tables="yes"
249 # Checking for CFLAGS
250 if test -z "$CFLAGS"; then
254 if test x"$show_help" = x"yes" ; then
257 Usage: configure [options]
258 Options: [defaults in brackets after descriptions]
261 echo "Standard options:"
262 echo " --help print this message"
263 echo " --prefix=PREFIX install in PREFIX [$prefix]"
264 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
265 echo " use %M for cpu name [$interp_prefix]"
266 echo " --target-list=LIST set target list [$target_list]"
268 echo "kqemu kernel acceleration support:"
269 echo " --disable-kqemu disable kqemu support"
270 echo " --kernel-path=PATH set the kernel path (configure probes it)"
272 echo "Advanced options (experts only):"
273 echo " --source-path=PATH path of source code [$source_path]"
274 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
275 echo " --cc=CC use C compiler CC [$cc]"
276 echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
277 echo " --make=MAKE use specified make [$make]"
278 echo " --install=INSTALL use specified install [$install]"
279 echo " --static enable static build [$static]"
280 echo " --enable-cocoa enable COCOA (Mac OS X only)"
281 echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
282 echo " --enable-adlib enable Adlib emulation"
283 echo " --enable-coreaudio enable Coreaudio audio driver"
284 echo " --enable-alsa enable ALSA audio driver"
285 echo " --enable-fmod enable FMOD audio driver"
286 echo " --enabled-dsound enable DirectSound audio driver"
287 echo " --enable-system enable all system emulation targets"
288 echo " --disable-system disable all system emulation targets"
289 echo " --enable-user enable all linux usermode emulation targets"
290 echo " --disable-user disable all linux usermode emulation targets"
291 echo " --fmod-lib path to FMOD library"
292 echo " --fmod-inc path to FMOD includes"
293 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
294 echo " --enable-iasl compilation of ACPI tables with the IASL compiler"
296 echo "NOTE: The object files are build at the place where configure is launched"
300 cc="${cross_prefix}${cc}"
301 ar="${cross_prefix}${ar}"
302 strip="${cross_prefix}${strip}"
304 # check that the C compiler works.
309 if $cc -c -o $TMPO $TMPC 2>/dev/null ; then
310 : C compiler works ok
312 echo "ERROR: \"$cc\" either does not exist or does not work"
316 if test "$mingw32" = "yes" ; then
320 if [ "$cpu" = "i386" ] ; then
326 # Solaris specific configure tool chain decisions
328 if test "$solaris" = "yes" ; then
330 # gcc for solaris 10/fcs in /usr/sfw/bin doesn't compile qemu correctly
331 # override the check with --disable-gcc-check
333 if test "$solarisrev" -eq 10 -a "$check_gcc" = "yes" ; then
335 if test "$solgcc" = "/usr/sfw/bin/gcc" ; then
336 echo "Solaris 10/FCS gcc in /usr/sfw/bin will not compiled qemu correctly."
337 echo "please get gcc-3.4.3 or later, from www.blastwave.org using pkg-get -i gcc3"
338 echo "or get the latest patch from SunSolve for gcc"
342 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
343 if test -z "$solinst" ; then
344 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
345 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
346 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
349 if test "$solinst" = "/usr/sbin/install" ; then
350 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
351 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
352 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
355 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
356 if test -z "$sol_ar" ; then
357 echo "Error: No path includes ar"
358 if test -f /usr/ccs/bin/ar ; then
359 echo "Add /usr/ccs/bin to your path and rerun configure"
366 if test -z "$target_list" ; then
367 # these targets are portable
368 if [ "$softmmu" = "yes" ] ; then
369 target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu mips-softmmu mipsel-softmmu arm-softmmu"
371 # the following are Linux specific
372 if [ "$user" = "yes" ] ; then
373 target_list="i386-user arm-user armeb-user sparc-user ppc-user mips-user mipsel-user $target_list"
376 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
378 if test -z "$target_list" ; then
379 echo "No targets enabled"
383 if test -z "$cross_prefix" ; then
386 # big/little endian test
388 #include <inttypes.h>
389 int main(int argc, char ** argv){
390 volatile uint32_t i=0x01234567;
391 return (*((uint8_t*)(&i))) == 0x67;
395 if $cc -o $TMPE $TMPC 2>/dev/null ; then
396 $TMPE && bigendian="yes"
398 echo big/little test failed
403 # if cross compiling, cannot launch a program, so make a static guess
404 if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k" -o "$cpu" = "armv4b"; then
410 # host long bits test
412 if test "$cpu" = "sparc64" -o "$cpu" = "ia64" -o "$cpu" = "x86_64" -o "$cpu" = "alpha"; then
416 # check gcc options support
422 have_gcc3_options="no"
423 if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
424 have_gcc3_options="yes"
427 # Check for gcc4, error if pre-gcc4
428 if test "$check_gcc" = "yes" ; then
433 int main(){return 0;}
435 if $cc -o $TMPO $TMPC 2>/dev/null ; then
436 echo "ERROR: \"$cc\" looks like gcc 4.x"
437 echo "QEMU is known to have problems when compiled with gcc 4.x"
438 echo "It is recommended that you use gcc 3.x to build QEMU"
439 echo "To use this compiler anyway, configure with --disable-gcc-check"
444 ##########################################
449 if test -z "$sdl" ; then
451 sdl_config="sdl-config"
455 if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
456 # win32 cross compilation case
457 sdl_config="i386-mingw32msvc-sdl-config"
463 #undef main /* We don't want SDL to override our main() */
464 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
467 if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
468 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
469 if test "$_sdlversion" -lt 121 ; then
475 # static link with sdl ?
476 if test "$sdl" = "yes" ; then
478 `$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
479 sdl_static_libs=`$sdl_config --static-libs`
480 if [ "$aa" = "yes" ] ; then
481 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
484 if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
490 fi # sdl compile test
492 fi # cross compilation
495 # Check if tools are available to build documentation.
496 if [ -x "`which texi2html`" ] && [ -x "`which pod2man`" ]; then
500 if test "$mingw32" = "yes" ; then
501 if test -z "$prefix" ; then
502 prefix="/c/Program Files/Qemu"
509 if test -z "$prefix" ; then
512 mandir="$prefix/share/man"
513 datadir="$prefix/share/qemu"
514 docdir="$prefix/share/doc/qemu"
518 echo "Install prefix $prefix"
519 echo "BIOS directory $datadir"
520 echo "binary directory $bindir"
521 if test "$mingw32" = "no" ; then
522 echo "Manual directory $mandir"
523 echo "ELF interp prefix $interp_prefix"
525 echo "Source path $source_path"
526 echo "C compiler $cc"
527 echo "Host C compiler $host_cc"
529 echo "install $install"
531 echo "host big endian $bigendian"
532 echo "target list $target_list"
533 echo "gprof enabled $gprof"
534 echo "profiler $profiler"
535 echo "static build $static"
536 if test "$darwin" = "yes" ; then
537 echo "Cocoa support $cocoa"
539 echo "SDL support $sdl"
540 if test "$sdl" != "no" ; then
541 echo "SDL static link $sdl_static"
543 echo "mingw32 support $mingw32"
544 echo "Adlib support $adlib"
545 echo "CoreAudio support $coreaudio"
546 echo "ALSA support $alsa"
547 echo "DSound support $dsound"
548 if test "$fmod" = "yes"; then
549 if test -z $fmod_lib || test -z $fmod_inc; then
551 echo "Error: You must specify path to FMOD library and headers"
552 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
556 fmod_support=" (lib='$fmod_lib' include='$fmod_inc')"
560 echo "FMOD support $fmod $fmod_support"
561 echo "kqemu support $kqemu"
562 echo "Documentation $build_docs"
563 [ ! -z "$uname_release" ] && \
564 echo "uname -r $uname_release"
566 if test $sdl_too_old = "yes"; then
567 echo "-> Your SDL version is too old - please upgrade to have SDL support"
569 #if test "$sdl_static" = "no"; then
570 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
572 config_mak="config-host.mak"
573 config_h="config-host.h"
575 #echo "Creating $config_mak and $config_h"
577 echo "# Automatically generated by configure - do not modify" > $config_mak
578 echo "# Configured with: $0 $@" >> $config_mak
579 echo "/* Automatically generated by configure - do not modify */" > $config_h
581 echo "prefix=$prefix" >> $config_mak
582 echo "bindir=$bindir" >> $config_mak
583 echo "mandir=$mandir" >> $config_mak
584 echo "datadir=$datadir" >> $config_mak
585 echo "docdir=$docdir" >> $config_mak
586 echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
587 echo "MAKE=$make" >> $config_mak
588 echo "INSTALL=$install" >> $config_mak
589 echo "CC=$cc" >> $config_mak
590 if test "$have_gcc3_options" = "yes" ; then
591 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
593 echo "HOST_CC=$host_cc" >> $config_mak
594 echo "AR=$ar" >> $config_mak
595 echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
596 echo "CFLAGS=$CFLAGS" >> $config_mak
597 echo "LDFLAGS=$LDFLAGS" >> $config_mak
598 echo "EXESUF=$EXESUF" >> $config_mak
599 if test "$cpu" = "i386" ; then
600 echo "ARCH=i386" >> $config_mak
601 echo "#define HOST_I386 1" >> $config_h
602 elif test "$cpu" = "x86_64" ; then
603 echo "ARCH=x86_64" >> $config_mak
604 echo "#define HOST_X86_64 1" >> $config_h
605 elif test "$cpu" = "armv4b" ; then
606 echo "ARCH=arm" >> $config_mak
607 echo "#define HOST_ARM 1" >> $config_h
608 elif test "$cpu" = "armv4l" ; then
609 echo "ARCH=arm" >> $config_mak
610 echo "#define HOST_ARM 1" >> $config_h
611 elif test "$cpu" = "powerpc" ; then
612 echo "ARCH=ppc" >> $config_mak
613 echo "#define HOST_PPC 1" >> $config_h
614 elif test "$cpu" = "mips" ; then
615 echo "ARCH=mips" >> $config_mak
616 echo "#define HOST_MIPS 1" >> $config_h
617 elif test "$cpu" = "s390" ; then
618 echo "ARCH=s390" >> $config_mak
619 echo "#define HOST_S390 1" >> $config_h
620 elif test "$cpu" = "alpha" ; then
621 echo "ARCH=alpha" >> $config_mak
622 echo "#define HOST_ALPHA 1" >> $config_h
623 elif test "$cpu" = "sparc" ; then
624 echo "ARCH=sparc" >> $config_mak
625 echo "#define HOST_SPARC 1" >> $config_h
626 elif test "$cpu" = "sparc64" ; then
627 echo "ARCH=sparc64" >> $config_mak
628 echo "#define HOST_SPARC64 1" >> $config_h
629 elif test "$cpu" = "ia64" ; then
630 echo "ARCH=ia64" >> $config_mak
631 echo "#define HOST_IA64 1" >> $config_h
632 elif test "$cpu" = "m68k" ; then
633 echo "ARCH=m68k" >> $config_mak
634 echo "#define HOST_M68K 1" >> $config_h
636 echo "Unsupported CPU"
639 if test "$bigendian" = "yes" ; then
640 echo "WORDS_BIGENDIAN=yes" >> $config_mak
641 echo "#define WORDS_BIGENDIAN 1" >> $config_h
643 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
644 if test "$mingw32" = "yes" ; then
645 echo "CONFIG_WIN32=yes" >> $config_mak
646 echo "#define CONFIG_WIN32 1" >> $config_h
647 elif test -f "/usr/include/byteswap.h" ; then
648 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
650 if test "$darwin" = "yes" ; then
651 echo "CONFIG_DARWIN=yes" >> $config_mak
652 echo "#define CONFIG_DARWIN 1" >> $config_h
654 if test "$solaris" = "yes" ; then
655 echo "CONFIG_SOLARIS=yes" >> $config_mak
656 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
658 if test "$gdbstub" = "yes" ; then
659 echo "CONFIG_GDBSTUB=yes" >> $config_mak
660 echo "#define CONFIG_GDBSTUB 1" >> $config_h
662 if test "$gprof" = "yes" ; then
663 echo "TARGET_GPROF=yes" >> $config_mak
664 echo "#define HAVE_GPROF 1" >> $config_h
666 if test "$static" = "yes" ; then
667 echo "CONFIG_STATIC=yes" >> $config_mak
668 echo "#define CONFIG_STATIC 1" >> $config_h
670 if test $profiler = "yes" ; then
671 echo "#define CONFIG_PROFILER 1" >> $config_h
673 if test "$slirp" = "yes" ; then
674 echo "CONFIG_SLIRP=yes" >> $config_mak
675 echo "#define CONFIG_SLIRP 1" >> $config_h
677 if test "$adlib" = "yes" ; then
678 echo "CONFIG_ADLIB=yes" >> $config_mak
679 echo "#define CONFIG_ADLIB 1" >> $config_h
681 if test "$oss" = "yes" ; then
682 echo "CONFIG_OSS=yes" >> $config_mak
683 echo "#define CONFIG_OSS 1" >> $config_h
685 if test "$coreaudio" = "yes" ; then
686 echo "CONFIG_COREAUDIO=yes" >> $config_mak
687 echo "#define CONFIG_COREAUDIO 1" >> $config_h
689 if test "$alsa" = "yes" ; then
690 echo "CONFIG_ALSA=yes" >> $config_mak
691 echo "#define CONFIG_ALSA 1" >> $config_h
693 if test "$dsound" = "yes" ; then
694 echo "CONFIG_DSOUND=yes" >> $config_mak
695 echo "#define CONFIG_DSOUND 1" >> $config_h
697 if test "$fmod" = "yes" ; then
698 echo "CONFIG_FMOD=yes" >> $config_mak
699 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
700 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
701 echo "#define CONFIG_FMOD 1" >> $config_h
703 qemu_version=`head $source_path/VERSION`
704 echo "VERSION=$qemu_version" >>$config_mak
705 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
707 echo "SRC_PATH=$source_path" >> $config_mak
708 if [ "$source_path_used" = "yes" ]; then
709 echo "VPATH=$source_path" >> $config_mak
711 echo "TARGET_DIRS=$target_list" >> $config_mak
712 if [ "$build_docs" = "yes" ] ; then
713 echo "BUILD_DOCS=yes" >> $config_mak
715 if [ "$build_acpi_tables" = "yes" ] ; then
716 echo "BUILD_ACPI_TABLES=yes" >> $config_mak
720 if [ "$bsd" = "yes" ] ; then
721 echo "#define O_LARGEFILE 0" >> $config_h
722 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
723 echo "#define _BSD 1" >> $config_h
726 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
728 for target in $target_list; do
730 config_mak=$target_dir/config.mak
731 config_h=$target_dir/config.h
732 target_cpu=`echo $target | cut -d '-' -f 1`
733 target_bigendian="no"
734 [ "$target_cpu" = "armeb" ] && target_bigendian=yes
735 [ "$target_cpu" = "sparc" ] && target_bigendian=yes
736 [ "$target_cpu" = "sparc64" ] && target_bigendian=yes
737 [ "$target_cpu" = "ppc" ] && target_bigendian=yes
738 [ "$target_cpu" = "ppc64" ] && target_bigendian=yes
739 [ "$target_cpu" = "mips" ] && target_bigendian=yes
741 if expr $target : '.*-softmmu' > /dev/null ; then
744 target_user_only="no"
745 if expr $target : '.*-user' > /dev/null ; then
746 target_user_only="yes"
749 if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
750 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
751 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
752 echo "To build QEMU without graphical output configure with --disable-gfx-check"
753 echo "Note that this will disable all output from the virtual graphics card."
757 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
760 mkdir -p $target_dir/fpu
761 if test "$target" = "arm-user" -o "$target" = "armeb-user" ; then
762 mkdir -p $target_dir/nwfpe
764 if test "$target_user_only" = "no" ; then
765 mkdir -p $target_dir/slirp
769 # don't use ln -sf as not all "ln -sf" over write the file/link
771 rm -f $target_dir/Makefile
772 ln -s $source_path/Makefile.target $target_dir/Makefile
775 echo "# Automatically generated by configure - do not modify" > $config_mak
776 echo "/* Automatically generated by configure - do not modify */" > $config_h
779 echo "include ../config-host.mak" >> $config_mak
780 echo "#include \"../config-host.h\"" >> $config_h
783 interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
784 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
786 if test "$target_cpu" = "i386" ; then
787 echo "TARGET_ARCH=i386" >> $config_mak
788 echo "#define TARGET_ARCH \"i386\"" >> $config_h
789 echo "#define TARGET_I386 1" >> $config_h
790 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "i386" ; then
791 echo "#define USE_KQEMU 1" >> $config_h
793 elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
794 echo "TARGET_ARCH=arm" >> $config_mak
795 echo "#define TARGET_ARCH \"arm\"" >> $config_h
796 echo "#define TARGET_ARM 1" >> $config_h
798 elif test "$target_cpu" = "sparc" ; then
799 echo "TARGET_ARCH=sparc" >> $config_mak
800 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
801 echo "#define TARGET_SPARC 1" >> $config_h
802 elif test "$target_cpu" = "sparc64" ; then
803 echo "TARGET_ARCH=sparc64" >> $config_mak
804 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
805 echo "#define TARGET_SPARC 1" >> $config_h
806 echo "#define TARGET_SPARC64 1" >> $config_h
807 elif test "$target_cpu" = "ppc" ; then
808 echo "TARGET_ARCH=ppc" >> $config_mak
809 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
810 echo "#define TARGET_PPC 1" >> $config_h
811 elif test "$target_cpu" = "ppc64" ; then
812 echo "TARGET_ARCH=ppc64" >> $config_mak
813 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
814 echo "#define TARGET_PPC 1" >> $config_h
815 echo "#define TARGET_PPC64 1" >> $config_h
816 elif test "$target_cpu" = "x86_64" ; then
817 echo "TARGET_ARCH=x86_64" >> $config_mak
818 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
819 echo "#define TARGET_I386 1" >> $config_h
820 echo "#define TARGET_X86_64 1" >> $config_h
821 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64" ; then
822 echo "#define USE_KQEMU 1" >> $config_h
824 elif test "$target_cpu" = "mips" -o "$target_cpu" = "mipsel" ; then
825 echo "TARGET_ARCH=mips" >> $config_mak
826 echo "#define TARGET_ARCH \"mips\"" >> $config_h
827 echo "#define TARGET_MIPS 1" >> $config_h
828 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
829 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
830 elif test "$target_cpu" = "sh4" ; then
831 echo "TARGET_ARCH=sh4" >> $config_mak
832 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
833 echo "#define TARGET_SH4 1" >> $config_h
836 echo "Unsupported target CPU"
839 if test "$target_bigendian" = "yes" ; then
840 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
841 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
843 if test "$target_softmmu" = "yes" ; then
844 echo "CONFIG_SOFTMMU=yes" >> $config_mak
845 echo "#define CONFIG_SOFTMMU 1" >> $config_h
847 if test "$target_user_only" = "yes" ; then
848 echo "CONFIG_USER_ONLY=yes" >> $config_mak
849 echo "#define CONFIG_USER_ONLY 1" >> $config_h
852 if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
853 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
854 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
856 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
857 echo "TARGET_HAS_BFLT=yes" >> $config_mak
858 echo "#define TARGET_HAS_BFLT 1" >> $config_h
862 if test "$target_user_only" = "no"; then
863 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
868 if test "$sdl1" = "yes" ; then
869 echo "#define CONFIG_SDL 1" >> $config_h
870 echo "CONFIG_SDL=yes" >> $config_mak
871 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
872 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
874 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
876 if [ "${aa}" = "yes" ] ; then
877 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
879 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
884 if test "$cocoa" = "yes" ; then
885 echo "#define CONFIG_COCOA 1" >> $config_h
886 echo "CONFIG_COCOA=yes" >> $config_mak
889 done # for target in $targets
891 # build tree in object directory if source path is different from current one
892 if test "$source_path_used" = "yes" ; then
894 FILES="Makefile tests/Makefile"
895 for dir in $DIRS ; do
898 # remove the link and recreate it, as not all "ln -sf" overwrite the link
901 ln -s $source_path/$f $f
905 rm -f $TMPO $TMPC $TMPE $TMPS