Migrate to check_define
[qemu/mini2440.git] / configure
blob6f92aad2628cce4ea7d29dfbc94faec9bdd0b14d
1 #!/bin/sh
3 # qemu configure script (c) 2003 Fabrice Bellard
5 # set temporary file name
6 if test ! -z "$TMPDIR" ; then
7 TMPDIR1="${TMPDIR}"
8 elif test ! -z "$TEMPDIR" ; then
9 TMPDIR1="${TEMPDIR}"
10 else
11 TMPDIR1="/tmp"
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
23 # default parameters
24 prefix=""
25 interp_prefix="/usr/gnemul/qemu-%M"
26 static="no"
27 cross_prefix=""
28 cc="gcc"
29 audio_drv_list=""
30 audio_card_list="ac97 es1370 sb16"
31 audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus"
32 host_cc="gcc"
33 ar="ar"
34 make="make"
35 install="install"
36 strip="strip"
38 # parse CC options first
39 for opt do
40 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
41 case "$opt" in
42 --cross-prefix=*) cross_prefix="$optarg"
44 --cc=*) cc="$optarg"
46 esac
47 done
49 # OS specific
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.
58 cat > $TMPC <<EOF
59 int main(void) {}
60 EOF
62 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
63 : C compiler works ok
64 else
65 echo "ERROR: \"$cc\" either does not exist or does not work"
66 exit 1
69 check_define() {
70 cat > $TMPC <<EOF
71 #if !defined($1)
72 #error Not defined
73 #endif
74 int main(void) { return 0; }
75 EOF
76 $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
79 if check_define __i386__ ; then
80 cpu="i386"
81 elif check_define __x86_64__ ; then
82 cpu="x86_64"
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
87 cpu="sparc64"
88 else
89 cpu="sparc"
91 elif check_define _ARCH_PPC ; then
92 if check_define _ARCH_PPC64 ; then
93 cpu="ppc64"
94 else
95 cpu="ppc"
97 else
98 cpu=`uname -m`
101 target_list=""
102 case "$cpu" in
103 i386|i486|i586|i686|i86pc|BePC)
104 cpu="i386"
106 x86_64|amd64)
107 cpu="x86_64"
109 alpha)
110 cpu="alpha"
112 armv*b)
113 cpu="armv4b"
115 armv*l)
116 cpu="armv4l"
118 cris)
119 cpu="cris"
121 parisc|parisc64)
122 cpu="hppa"
124 ia64)
125 cpu="ia64"
127 m68k)
128 cpu="m68k"
130 mips)
131 cpu="mips"
133 mips64)
134 cpu="mips64"
136 ppc)
137 cpu="ppc"
139 ppc64)
140 cpu="ppc64"
142 s390*)
143 cpu="s390"
145 sparc|sun4[cdmuv])
146 cpu="sparc"
148 sparc64)
149 cpu="sparc64"
152 cpu="unknown"
154 esac
155 gprof="no"
156 sparse="no"
157 bigendian="no"
158 mingw32="no"
159 EXESUF=""
160 gdbstub="yes"
161 slirp="yes"
162 vde="yes"
163 fmod_lib=""
164 fmod_inc=""
165 oss_lib=""
166 vnc_tls="yes"
167 bsd="no"
168 linux="no"
169 solaris="no"
170 kqemu="no"
171 profiler="no"
172 cocoa="no"
173 check_gfx="yes"
174 softmmu="yes"
175 linux_user="no"
176 darwin_user="no"
177 bsd_user="no"
178 build_docs="no"
179 uname_release=""
180 curses="yes"
181 aio="yes"
182 nptl="yes"
183 mixemu="no"
184 bluez="yes"
185 kvm="yes"
186 kerneldir=""
187 aix="no"
188 blobs="yes"
189 fdt="yes"
191 # OS specific
192 if check_define __linux__ ; then
193 targetos="Linux"
194 elif check_define _WIN32 ; then
195 targetos='MINGW32'
196 else
197 targetos=`uname -s`
199 case $targetos in
200 CYGWIN*)
201 mingw32="yes"
202 OS_CFLAGS="-mno-cygwin"
203 if [ "$cpu" = "i386" ] ; then
204 kqemu="yes"
206 audio_possible_drivers="sdl"
208 MINGW32*)
209 mingw32="yes"
210 if [ "$cpu" = "i386" ] ; then
211 kqemu="yes"
213 audio_possible_drivers="dsound sdl fmod"
215 GNU/kFreeBSD)
216 audio_drv_list="oss"
217 audio_possible_drivers="oss sdl esd pa"
218 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
219 kqemu="yes"
222 FreeBSD)
223 bsd="yes"
224 audio_drv_list="oss"
225 audio_possible_drivers="oss sdl esd pa"
226 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
227 kqemu="yes"
230 NetBSD)
231 bsd="yes"
232 audio_drv_list="oss"
233 audio_possible_drivers="oss sdl esd"
234 oss_lib="-lossaudio"
236 OpenBSD)
237 bsd="yes"
238 openbsd="yes"
239 audio_drv_list="oss"
240 audio_possible_drivers="oss sdl esd"
241 oss_lib="-lossaudio"
243 Darwin)
244 bsd="yes"
245 darwin="yes"
246 darwin_user="yes"
247 cocoa="yes"
248 audio_drv_list="coreaudio"
249 audio_possible_drivers="coreaudio sdl fmod"
250 OS_CFLAGS="-mdynamic-no-pic"
251 OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
253 SunOS)
254 solaris="yes"
255 make="gmake"
256 install="ginstall"
257 needs_libsunmath="no"
258 solarisrev=`uname -r | cut -f2 -d.`
259 # have to select again, because `uname -m` returns i86pc
260 # even on an x86_64 box.
261 solariscpu=`isainfo -k`
262 if test "${solariscpu}" = "amd64" ; then
263 cpu="x86_64"
265 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
266 if test "$solarisrev" -le 9 ; then
267 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
268 needs_libsunmath="yes"
269 else
270 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
271 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
272 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
273 echo "Studio 11 can be downloaded from www.sun.com."
274 exit 1
277 if test "$solarisrev" -ge 9 ; then
278 kqemu="yes"
281 if test -f /usr/include/sys/soundcard.h ; then
282 audio_drv_list="oss"
284 audio_possible_drivers="oss sdl"
286 AIX)
287 aix="yes"
288 make="gmake"
291 audio_drv_list="oss"
292 audio_possible_drivers="oss alsa sdl esd pa"
293 linux="yes"
294 linux_user="yes"
295 usb="linux"
296 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
297 kqemu="yes"
298 audio_possible_drivers="$audio_possible_drivers fmod"
301 esac
303 if [ "$bsd" = "yes" ] ; then
304 if [ "$darwin" != "yes" ] ; then
305 make="gmake"
306 usb="bsd"
308 bsd_user="yes"
311 # find source path
312 source_path=`dirname "$0"`
313 source_path_used="no"
314 workdir=`pwd`
315 if [ -z "$source_path" ]; then
316 source_path=$workdir
317 else
318 source_path=`cd "$source_path"; pwd`
320 [ -f "$workdir/vl.c" ] || source_path_used="yes"
322 werror="no"
323 # generate compile errors on warnings for development builds
324 #if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
325 #werror="yes";
328 for opt do
329 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
330 case "$opt" in
331 --help|-h) show_help=yes
333 --prefix=*) prefix="$optarg"
335 --interp-prefix=*) interp_prefix="$optarg"
337 --source-path=*) source_path="$optarg"
338 source_path_used="yes"
340 --cross-prefix=*)
342 --cc=*)
344 --host-cc=*) host_cc="$optarg"
346 --make=*) make="$optarg"
348 --install=*) install="$optarg"
350 --extra-cflags=*) CFLAGS="$optarg"
352 --extra-ldflags=*) LDFLAGS="$optarg"
354 --cpu=*) cpu="$optarg"
356 --target-list=*) target_list="$optarg"
358 --enable-gprof) gprof="yes"
360 --static) static="yes"
362 --disable-sdl) sdl="no"
364 --fmod-lib=*) fmod_lib="$optarg"
366 --fmod-inc=*) fmod_inc="$optarg"
368 --oss-lib=*) oss_lib="$optarg"
370 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
372 --audio-drv-list=*) audio_drv_list="$optarg"
374 --enable-sparse) sparse="yes"
376 --disable-sparse) sparse="no"
378 --disable-vnc-tls) vnc_tls="no"
380 --disable-slirp) slirp="no"
382 --disable-vde) vde="no"
384 --disable-kqemu) kqemu="no"
386 --disable-brlapi) brlapi="no"
388 --disable-bluez) bluez="no"
390 --disable-kvm) kvm="no"
392 --enable-profiler) profiler="yes"
394 --enable-cocoa)
395 cocoa="yes" ;
396 sdl="no" ;
397 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
399 --disable-gfx-check) check_gfx="no"
401 --disable-system) softmmu="no"
403 --enable-system) softmmu="yes"
405 --disable-linux-user) linux_user="no"
407 --enable-linux-user) linux_user="yes"
409 --disable-darwin-user) darwin_user="no"
411 --enable-darwin-user) darwin_user="yes"
413 --disable-bsd-user) bsd_user="no"
415 --enable-bsd-user) bsd_user="yes"
417 --enable-uname-release=*) uname_release="$optarg"
419 --sparc_cpu=*)
420 sparc_cpu="$optarg"
421 case $sparc_cpu in
422 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
423 target_cpu="sparc"; cpu="sparc" ;;
424 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
425 target_cpu="sparc"; cpu="sparc" ;;
426 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
427 target_cpu="sparc64"; cpu="sparc64" ;;
428 *) echo "undefined SPARC architecture. Exiting";exit 1;;
429 esac
431 --enable-werror) werror="yes"
433 --disable-werror) werror="no"
435 --disable-curses) curses="no"
437 --disable-nptl) nptl="no"
439 --enable-mixemu) mixemu="yes"
441 --disable-aio) aio="no"
443 --disable-blobs) blobs="no"
445 --kerneldir=*) kerneldir="$optarg"
447 *) echo "ERROR: unknown option $opt"; show_help="yes"
449 esac
450 done
452 # default flags for all hosts
453 CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
454 CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
455 LDFLAGS="$LDFLAGS -g"
456 if test "$werror" = "yes" ; then
457 CFLAGS="$CFLAGS -Werror"
460 if test "$solaris" = "no" ; then
461 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
462 LDFLAGS="$LDFLAGS -Wl,--warn-common"
467 # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
468 # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
470 case "$cpu" in
471 sparc) if test -z "$sparc_cpu" ; then
472 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
473 ARCH_LDFLAGS="-m32"
474 else
475 ARCH_CFLAGS="${SP_CFLAGS}"
476 ARCH_LDFLAGS="${SP_LDFLAGS}"
479 sparc64) if test -z "$sparc_cpu" ; then
480 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
481 ARCH_LDFLAGS="-m64"
482 else
483 ARCH_CFLAGS="${SP_CFLAGS}"
484 ARCH_LDFLAGS="${SP_LDFLAGS}"
487 s390)
488 ARCH_CFLAGS="-march=z900"
490 i386)
491 ARCH_CFLAGS="-m32"
492 ARCH_LDFLAGS="-m32"
494 x86_64)
495 ARCH_CFLAGS="-m64"
496 ARCH_LDFLAGS="-m64"
498 esac
500 if test x"$show_help" = x"yes" ; then
501 cat << EOF
503 Usage: configure [options]
504 Options: [defaults in brackets after descriptions]
507 echo "Standard options:"
508 echo " --help print this message"
509 echo " --prefix=PREFIX install in PREFIX [$prefix]"
510 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
511 echo " use %M for cpu name [$interp_prefix]"
512 echo " --target-list=LIST set target list [$target_list]"
513 echo ""
514 echo "kqemu kernel acceleration support:"
515 echo " --disable-kqemu disable kqemu support"
516 echo ""
517 echo "Advanced options (experts only):"
518 echo " --source-path=PATH path of source code [$source_path]"
519 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
520 echo " --cc=CC use C compiler CC [$cc]"
521 echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
522 echo " --make=MAKE use specified make [$make]"
523 echo " --install=INSTALL use specified install [$install]"
524 echo " --static enable static build [$static]"
525 echo " --enable-sparse enable sparse checker"
526 echo " --disable-sparse disable sparse checker (default)"
527 echo " --disable-werror disable compilation abort on warning"
528 echo " --disable-sdl disable SDL"
529 echo " --enable-cocoa enable COCOA (Mac OS X only)"
530 echo " --audio-drv-list=LIST set audio drivers list:"
531 echo " Available drivers: $audio_possible_drivers"
532 echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
533 echo " Available cards: $audio_possible_cards"
534 echo " --enable-mixemu enable mixer emulation"
535 echo " --disable-brlapi disable BrlAPI"
536 echo " --disable-vnc-tls disable TLS encryption for VNC server"
537 echo " --disable-curses disable curses output"
538 echo " --disable-bluez disable bluez stack connectivity"
539 echo " --disable-kvm disable KVM acceleration support"
540 echo " --disable-nptl disable usermode NPTL support"
541 echo " --enable-system enable all system emulation targets"
542 echo " --disable-system disable all system emulation targets"
543 echo " --enable-linux-user enable all linux usermode emulation targets"
544 echo " --disable-linux-user disable all linux usermode emulation targets"
545 echo " --enable-darwin-user enable all darwin usermode emulation targets"
546 echo " --disable-darwin-user disable all darwin usermode emulation targets"
547 echo " --enable-bsd-user enable all BSD usermode emulation targets"
548 echo " --disable-bsd-user disable all BSD usermode emulation targets"
549 echo " --fmod-lib path to FMOD library"
550 echo " --fmod-inc path to FMOD includes"
551 echo " --oss-lib path to OSS library"
552 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
553 echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
554 echo " --disable-vde disable support for vde network"
555 echo " --disable-aio disable AIO support"
556 echo " --disable-blobs disable installing provided firmware blobs"
557 echo " --kerneldir=PATH look for kernel includes in PATH"
558 echo ""
559 echo "NOTE: The object files are built at the place where configure is launched"
560 exit 1
563 if test "$mingw32" = "yes" ; then
564 linux="no"
565 EXESUF=".exe"
566 oss="no"
567 linux_user="no"
568 bsd_user="no"
571 if test ! -x "$(which cgcc 2>/dev/null)"; then
572 sparse="no"
576 # Solaris specific configure tool chain decisions
578 if test "$solaris" = "yes" ; then
579 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
580 if test -z "$solinst" ; then
581 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
582 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
583 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
584 exit 1
586 if test "$solinst" = "/usr/sbin/install" ; then
587 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
588 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
589 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
590 exit 1
592 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
593 if test -z "$sol_ar" ; then
594 echo "Error: No path includes ar"
595 if test -f /usr/ccs/bin/ar ; then
596 echo "Add /usr/ccs/bin to your path and rerun configure"
598 exit 1
603 if test -z "$target_list" ; then
604 # these targets are portable
605 if [ "$softmmu" = "yes" ] ; then
606 target_list="\
607 i386-softmmu \
608 x86_64-softmmu \
609 arm-softmmu \
610 cris-softmmu \
611 m68k-softmmu \
612 mips-softmmu \
613 mipsel-softmmu \
614 mips64-softmmu \
615 mips64el-softmmu \
616 ppc-softmmu \
617 ppcemb-softmmu \
618 ppc64-softmmu \
619 sh4-softmmu \
620 sh4eb-softmmu \
621 sparc-softmmu \
624 # the following are Linux specific
625 if [ "$linux_user" = "yes" ] ; then
626 target_list="${target_list}\
627 i386-linux-user \
628 x86_64-linux-user \
629 alpha-linux-user \
630 arm-linux-user \
631 armeb-linux-user \
632 cris-linux-user \
633 m68k-linux-user \
634 mips-linux-user \
635 mipsel-linux-user \
636 ppc-linux-user \
637 ppc64-linux-user \
638 ppc64abi32-linux-user \
639 sh4-linux-user \
640 sh4eb-linux-user \
641 sparc-linux-user \
642 sparc64-linux-user \
643 sparc32plus-linux-user \
646 # the following are Darwin specific
647 if [ "$darwin_user" = "yes" ] ; then
648 target_list="$target_list i386-darwin-user ppc-darwin-user "
650 # the following are BSD specific
651 if [ "$bsd_user" = "yes" ] ; then
652 target_list="${target_list}\
653 sparc64-bsd-user \
656 else
657 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
659 if test -z "$target_list" ; then
660 echo "No targets enabled"
661 exit 1
664 if test -z "$cross_prefix" ; then
666 # ---
667 # big/little endian test
668 cat > $TMPC << EOF
669 #include <inttypes.h>
670 int main(int argc, char ** argv){
671 volatile uint32_t i=0x01234567;
672 return (*((uint8_t*)(&i))) == 0x67;
676 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
677 $TMPE && bigendian="yes"
678 else
679 echo big/little test failed
682 else
684 # if cross compiling, cannot launch a program, so make a static guess
685 if test "$cpu" = "armv4b" \
686 -o "$cpu" = "hppa" \
687 -o "$cpu" = "m68k" \
688 -o "$cpu" = "mips" \
689 -o "$cpu" = "mips64" \
690 -o "$cpu" = "ppc" \
691 -o "$cpu" = "ppc64" \
692 -o "$cpu" = "s390" \
693 -o "$cpu" = "sparc" \
694 -o "$cpu" = "sparc64"; then
695 bigendian="yes"
700 # host long bits test
701 hostlongbits="32"
702 if test "$cpu" = "x86_64" \
703 -o "$cpu" = "alpha" \
704 -o "$cpu" = "ia64" \
705 -o "$cpu" = "sparc64" \
706 -o "$cpu" = "ppc64"; then
707 hostlongbits="64"
710 # check gcc options support
711 cat > $TMPC <<EOF
712 int main(void) {
716 # Check host NPTL support
717 cat > $TMPC <<EOF
718 #include <sched.h>
719 #include <linux/futex.h>
720 void foo()
722 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
723 #error bork
724 #endif
728 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
730 else
731 nptl="no"
734 ##########################################
735 # zlib check
737 cat > $TMPC << EOF
738 #include <zlib.h>
739 int main(void) { zlibVersion(); return 0; }
741 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
743 else
744 echo
745 echo "Error: zlib check failed"
746 echo "Make sure to have the zlib libs and headers installed."
747 echo
748 exit 1
751 ##########################################
752 # SDL probe
754 sdl_too_old=no
756 if test -z "$sdl" ; then
757 sdl_config="sdl-config"
758 sdl=no
759 sdl_static=no
761 cat > $TMPC << EOF
762 #include <SDL.h>
763 #undef main /* We don't want SDL to override our main() */
764 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
766 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
767 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
768 if test "$_sdlversion" -lt 121 ; then
769 sdl_too_old=yes
770 else
771 if test "$cocoa" = "no" ; then
772 sdl=yes
776 # static link with sdl ?
777 if test "$sdl" = "yes" ; then
778 aa="no"
779 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
780 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
781 if [ "$aa" = "yes" ] ; then
782 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
785 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then
786 sdl_static=yes
788 fi # static link
789 fi # sdl compile test
790 else
791 # Make sure to disable cocoa if sdl was set
792 if test "$sdl" = "yes" ; then
793 cocoa="no"
794 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
796 fi # -z $sdl
798 ##########################################
799 # VNC TLS detection
800 if test "$vnc_tls" = "yes" ; then
801 cat > $TMPC <<EOF
802 #include <gnutls/gnutls.h>
803 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
805 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
806 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
807 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
808 $vnc_tls_libs > /dev/null 2> /dev/null ; then
810 else
811 vnc_tls="no"
815 ##########################################
816 # vde libraries probe
817 if test "$vde" = "yes" ; then
818 cat > $TMPC << EOF
819 #include <libvdeplug.h>
820 int main(void)
822 struct vde_open_args a = {0, 0, 0};
823 vde_open("", "", &a);
824 return 0;
827 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
829 else
830 vde="no"
834 ##########################################
835 # Sound support libraries probe
837 audio_drv_probe()
839 drv=$1
840 hdr=$2
841 lib=$3
842 exp=$4
843 cfl=$5
844 cat > $TMPC << EOF
845 #include <$hdr>
846 int main(void) { $exp }
848 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
850 else
851 echo
852 echo "Error: $drv check failed"
853 echo "Make sure to have the $drv libs and headers installed."
854 echo
855 exit 1
859 audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
860 for drv in $audio_drv_list; do
861 case $drv in
862 alsa)
863 audio_drv_probe $drv alsa/asoundlib.h -lasound \
864 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
867 fmod)
868 if test -z $fmod_lib || test -z $fmod_inc; then
869 echo
870 echo "Error: You must specify path to FMOD library and headers"
871 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
872 echo
873 exit 1
875 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
878 esd)
879 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
883 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
884 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
887 oss|sdl|core|wav|dsound)
888 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
892 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
893 echo
894 echo "Error: Unknown driver '$drv' selected"
895 echo "Possible drivers are: $audio_possible_drivers"
896 echo
897 exit 1
900 esac
901 done
903 ##########################################
904 # BrlAPI probe
906 if test -z "$brlapi" ; then
907 brlapi=no
908 cat > $TMPC << EOF
909 #include <brlapi.h>
910 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
912 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
913 brlapi=yes
914 fi # brlapi compile test
915 fi # -z $brlapi
917 ##########################################
918 # curses probe
920 if test "$curses" = "yes" ; then
921 curses=no
922 cat > $TMPC << EOF
923 #include <curses.h>
924 int main(void) { return curses_version(); }
926 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
927 curses=yes
929 fi # test "$curses"
931 ##########################################
932 # bluez support probe
933 if test "$bluez" = "yes" ; then
934 `pkg-config bluez` || bluez="no"
936 if test "$bluez" = "yes" ; then
937 cat > $TMPC << EOF
938 #include <bluetooth/bluetooth.h>
939 int main(void) { return bt_error(0); }
941 bluez_cflags=`pkg-config --cflags bluez`
942 bluez_libs=`pkg-config --libs bluez`
943 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
944 $bluez_libs > /dev/null 2> /dev/null ; then
946 else
947 bluez="no"
951 ##########################################
952 # kvm probe
953 if test "$kvm" = "yes" ; then
954 cat > $TMPC <<EOF
955 #include <linux/kvm.h>
956 #if !defined(KVM_API_VERSION) || \
957 KVM_API_VERSION < 12 || \
958 KVM_API_VERSION > 12 || \
959 !defined(KVM_CAP_USER_MEMORY) || \
960 !defined(KVM_CAP_SET_TSS_ADDR) || \
961 !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
962 #error Invalid KVM version
963 #endif
964 int main(void) { return 0; }
966 if test "$kerneldir" != "" ; then
967 kvm_cflags=-I"$kerneldir"/include
968 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
969 -a -d "$kerneldir/arch/x86/include" ; then
970 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
971 elif test -d "$kerneldir/arch/$cpu/include" ; then
972 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
974 else
975 kvm_cflags=""
977 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
978 > /dev/null 2>/dev/null ; then
980 else
981 kvm="no"
985 ##########################################
986 # AIO probe
987 AIOLIBS=""
989 if test "$aio" = "yes" ; then
990 aio=no
991 cat > $TMPC << EOF
992 #include <pthread.h>
993 int main(void) { pthread_mutex_t lock; return 0; }
995 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
996 aio=yes
997 AIOLIBS="-lpthread"
1001 ##########################################
1002 # iovec probe
1003 cat > $TMPC <<EOF
1004 #include <sys/types.h>
1005 #include <sys/uio.h>
1006 #include <unistd.h>
1007 int main(void) { struct iovec iov; return 0; }
1009 iovec=no
1010 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1011 iovec=yes
1014 ##########################################
1015 # fdt probe
1016 if test "$fdt" = "yes" ; then
1017 fdt=no
1018 cat > $TMPC << EOF
1019 int main(void) { return 0; }
1021 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1022 fdt=yes
1026 # Check if tools are available to build documentation.
1027 if [ -x "`which texi2html 2>/dev/null`" ] && \
1028 [ -x "`which pod2man 2>/dev/null`" ]; then
1029 build_docs="yes"
1032 ##########################################
1033 # Do we need librt
1034 cat > $TMPC <<EOF
1035 #include <signal.h>
1036 #include <time.h>
1037 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1040 rt=no
1041 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1043 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
1044 rt=yes
1047 if test "$rt" = "yes" ; then
1048 # Hack, we should have a general purpose LIBS for this sort of thing
1049 AIOLIBS="$AIOLIBS -lrt"
1052 if test "$mingw32" = "yes" ; then
1053 if test -z "$prefix" ; then
1054 prefix="c:\\\\Program Files\\\\Qemu"
1056 mansuffix=""
1057 datasuffix=""
1058 docsuffix=""
1059 binsuffix=""
1060 else
1061 if test -z "$prefix" ; then
1062 prefix="/usr/local"
1064 mansuffix="/share/man"
1065 datasuffix="/share/qemu"
1066 docsuffix="/share/doc/qemu"
1067 binsuffix="/bin"
1070 echo "Install prefix $prefix"
1071 echo "BIOS directory $prefix$datasuffix"
1072 echo "binary directory $prefix$binsuffix"
1073 if test "$mingw32" = "no" ; then
1074 echo "Manual directory $prefix$mansuffix"
1075 echo "ELF interp prefix $interp_prefix"
1077 echo "Source path $source_path"
1078 echo "C compiler $cc"
1079 echo "Host C compiler $host_cc"
1080 echo "ARCH_CFLAGS $ARCH_CFLAGS"
1081 echo "make $make"
1082 echo "install $install"
1083 echo "host CPU $cpu"
1084 echo "host big endian $bigendian"
1085 echo "target list $target_list"
1086 echo "gprof enabled $gprof"
1087 echo "sparse enabled $sparse"
1088 echo "profiler $profiler"
1089 echo "static build $static"
1090 echo "-Werror enabled $werror"
1091 if test "$darwin" = "yes" ; then
1092 echo "Cocoa support $cocoa"
1094 echo "SDL support $sdl"
1095 if test "$sdl" != "no" ; then
1096 echo "SDL static link $sdl_static"
1098 echo "curses support $curses"
1099 echo "mingw32 support $mingw32"
1100 echo "Audio drivers $audio_drv_list"
1101 echo "Extra audio cards $audio_card_list"
1102 echo "Mixer emulation $mixemu"
1103 echo "VNC TLS support $vnc_tls"
1104 if test "$vnc_tls" = "yes" ; then
1105 echo " TLS CFLAGS $vnc_tls_cflags"
1106 echo " TLS LIBS $vnc_tls_libs"
1108 if test -n "$sparc_cpu"; then
1109 echo "Target Sparc Arch $sparc_cpu"
1111 echo "kqemu support $kqemu"
1112 echo "brlapi support $brlapi"
1113 echo "Documentation $build_docs"
1114 [ ! -z "$uname_release" ] && \
1115 echo "uname -r $uname_release"
1116 echo "NPTL support $nptl"
1117 echo "vde support $vde"
1118 echo "AIO support $aio"
1119 echo "Install blobs $blobs"
1120 echo "KVM support $kvm"
1121 echo "fdt support $fdt"
1123 if test $sdl_too_old = "yes"; then
1124 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1126 if [ -s $TMPSDLLOG ]; then
1127 echo "The error log from compiling the libSDL test is: "
1128 cat $TMPSDLLOG
1130 #if test "$sdl_static" = "no"; then
1131 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1133 config_mak="config-host.mak"
1134 config_h="config-host.h"
1136 #echo "Creating $config_mak and $config_h"
1138 test -f $config_h && mv $config_h ${config_h}~
1140 echo "# Automatically generated by configure - do not modify" > $config_mak
1141 printf "# Configured with:" >> $config_mak
1142 printf " '%s'" "$0" "$@" >> $config_mak
1143 echo >> $config_mak
1144 echo "/* Automatically generated by configure - do not modify */" > $config_h
1146 echo "prefix=$prefix" >> $config_mak
1147 echo "bindir=\${prefix}$binsuffix" >> $config_mak
1148 echo "mandir=\${prefix}$mansuffix" >> $config_mak
1149 echo "datadir=\${prefix}$datasuffix" >> $config_mak
1150 echo "docdir=\${prefix}$docsuffix" >> $config_mak
1151 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1152 echo "MAKE=$make" >> $config_mak
1153 echo "INSTALL=$install" >> $config_mak
1154 echo "CC=$cc" >> $config_mak
1155 echo "HOST_CC=$host_cc" >> $config_mak
1156 echo "AR=$ar" >> $config_mak
1157 echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
1158 # XXX: only use CFLAGS and LDFLAGS ?
1159 # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1160 # compilation of dyngen tool (useful for win32 build on Linux host)
1161 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1162 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1163 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1164 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1165 echo "CFLAGS=$CFLAGS" >> $config_mak
1166 echo "LDFLAGS=$LDFLAGS" >> $config_mak
1167 echo "EXESUF=$EXESUF" >> $config_mak
1168 echo "AIOLIBS=$AIOLIBS" >> $config_mak
1169 case "$cpu" in
1170 i386)
1171 echo "ARCH=i386" >> $config_mak
1172 echo "#define HOST_I386 1" >> $config_h
1174 x86_64)
1175 echo "ARCH=x86_64" >> $config_mak
1176 echo "#define HOST_X86_64 1" >> $config_h
1178 alpha)
1179 echo "ARCH=alpha" >> $config_mak
1180 echo "#define HOST_ALPHA 1" >> $config_h
1182 armv4b)
1183 echo "ARCH=arm" >> $config_mak
1184 echo "#define HOST_ARM 1" >> $config_h
1186 armv4l)
1187 echo "ARCH=arm" >> $config_mak
1188 echo "#define HOST_ARM 1" >> $config_h
1190 cris)
1191 echo "ARCH=cris" >> $config_mak
1192 echo "#define HOST_CRIS 1" >> $config_h
1194 hppa)
1195 echo "ARCH=hppa" >> $config_mak
1196 echo "#define HOST_HPPA 1" >> $config_h
1198 ia64)
1199 echo "ARCH=ia64" >> $config_mak
1200 echo "#define HOST_IA64 1" >> $config_h
1202 m68k)
1203 echo "ARCH=m68k" >> $config_mak
1204 echo "#define HOST_M68K 1" >> $config_h
1206 mips)
1207 echo "ARCH=mips" >> $config_mak
1208 echo "#define HOST_MIPS 1" >> $config_h
1210 mips64)
1211 echo "ARCH=mips64" >> $config_mak
1212 echo "#define HOST_MIPS64 1" >> $config_h
1214 ppc)
1215 echo "ARCH=ppc" >> $config_mak
1216 echo "#define HOST_PPC 1" >> $config_h
1218 ppc64)
1219 echo "ARCH=ppc64" >> $config_mak
1220 echo "#define HOST_PPC64 1" >> $config_h
1222 s390)
1223 echo "ARCH=s390" >> $config_mak
1224 echo "#define HOST_S390 1" >> $config_h
1226 sparc)
1227 echo "ARCH=sparc" >> $config_mak
1228 echo "#define HOST_SPARC 1" >> $config_h
1230 sparc64)
1231 echo "ARCH=sparc64" >> $config_mak
1232 echo "#define HOST_SPARC64 1" >> $config_h
1235 echo "Unsupported CPU = $cpu"
1236 exit 1
1238 esac
1239 if test "$sparse" = "yes" ; then
1240 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1241 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1242 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1244 if test "$bigendian" = "yes" ; then
1245 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1246 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1248 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1249 if test "$mingw32" = "yes" ; then
1250 echo "CONFIG_WIN32=yes" >> $config_mak
1251 echo "#define CONFIG_WIN32 1" >> $config_h
1252 else
1253 cat > $TMPC << EOF
1254 #include <byteswap.h>
1255 int main(void) { return bswap_32(0); }
1257 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1258 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1260 cat > $TMPC << EOF
1261 #include <sys/endian.h>
1262 #include <sys/types.h>
1263 #include <machine/bswap.h>
1264 int main(void) { return bswap32(0); }
1266 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1267 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1271 if [ "$openbsd" = "yes" ] ; then
1272 echo "#define ENOTSUP 4096" >> $config_h
1275 if test "$darwin" = "yes" ; then
1276 echo "CONFIG_DARWIN=yes" >> $config_mak
1277 echo "#define CONFIG_DARWIN 1" >> $config_h
1280 if test "$aix" = "yes" ; then
1281 echo "CONFIG_AIX=yes" >> $config_mak
1282 echo "#define CONFIG_AIX 1" >> $config_h
1285 if test "$solaris" = "yes" ; then
1286 echo "CONFIG_SOLARIS=yes" >> $config_mak
1287 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1288 if test "$needs_libsunmath" = "yes" ; then
1289 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1290 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1293 if test -n "$sparc_cpu"; then
1294 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1295 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1297 if test "$gdbstub" = "yes" ; then
1298 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1299 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1301 if test "$gprof" = "yes" ; then
1302 echo "TARGET_GPROF=yes" >> $config_mak
1303 echo "#define HAVE_GPROF 1" >> $config_h
1305 if test "$static" = "yes" ; then
1306 echo "CONFIG_STATIC=yes" >> $config_mak
1307 echo "#define CONFIG_STATIC 1" >> $config_h
1309 if test $profiler = "yes" ; then
1310 echo "#define CONFIG_PROFILER 1" >> $config_h
1312 if test "$slirp" = "yes" ; then
1313 echo "CONFIG_SLIRP=yes" >> $config_mak
1314 echo "#define CONFIG_SLIRP 1" >> $config_h
1316 if test "$vde" = "yes" ; then
1317 echo "CONFIG_VDE=yes" >> $config_mak
1318 echo "#define CONFIG_VDE 1" >> $config_h
1319 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1321 for card in $audio_card_list; do
1322 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
1323 echo "$def=yes" >> $config_mak
1324 echo "#define $def 1" >> $config_h
1325 done
1326 echo "#define AUDIO_DRIVERS \\" >> $config_h
1327 for drv in $audio_drv_list; do
1328 echo " &${drv}_audio_driver, \\" >>$config_h
1329 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
1330 echo "$def=yes" >> $config_mak
1331 if test "$drv" = "fmod"; then
1332 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1333 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1334 elif test "$drv" = "oss"; then
1335 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1337 done
1338 echo "" >>$config_h
1339 if test "$mixemu" = "yes" ; then
1340 echo "CONFIG_MIXEMU=yes" >> $config_mak
1341 echo "#define CONFIG_MIXEMU 1" >> $config_h
1343 if test "$vnc_tls" = "yes" ; then
1344 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1345 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1346 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1347 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1349 qemu_version=`head $source_path/VERSION`
1350 echo "VERSION=$qemu_version" >>$config_mak
1351 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1353 echo "SRC_PATH=$source_path" >> $config_mak
1354 if [ "$source_path_used" = "yes" ]; then
1355 echo "VPATH=$source_path" >> $config_mak
1357 echo "TARGET_DIRS=$target_list" >> $config_mak
1358 if [ "$build_docs" = "yes" ] ; then
1359 echo "BUILD_DOCS=yes" >> $config_mak
1361 if test "$static" = "yes"; then
1362 sdl1=$sdl_static
1363 else
1364 sdl1=$sdl
1366 if test "$sdl1" = "yes" ; then
1367 echo "#define CONFIG_SDL 1" >> $config_h
1368 echo "CONFIG_SDL=yes" >> $config_mak
1369 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1370 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1371 else
1372 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1374 if [ "${aa}" = "yes" ] ; then
1375 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1376 else
1377 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1380 if test "$cocoa" = "yes" ; then
1381 echo "#define CONFIG_COCOA 1" >> $config_h
1382 echo "CONFIG_COCOA=yes" >> $config_mak
1384 if test "$curses" = "yes" ; then
1385 echo "#define CONFIG_CURSES 1" >> $config_h
1386 echo "CONFIG_CURSES=yes" >> $config_mak
1387 echo "CURSES_LIBS=-lcurses" >> $config_mak
1389 if test "$brlapi" = "yes" ; then
1390 echo "CONFIG_BRLAPI=yes" >> $config_mak
1391 echo "#define CONFIG_BRLAPI 1" >> $config_h
1392 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1394 if test "$bluez" = "yes" ; then
1395 echo "CONFIG_BLUEZ=yes" >> $config_mak
1396 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1397 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1398 echo "#define CONFIG_BLUEZ 1" >> $config_h
1400 if test "$aio" = "yes" ; then
1401 echo "#define CONFIG_AIO 1" >> $config_h
1402 echo "CONFIG_AIO=yes" >> $config_mak
1404 if test "$blobs" = "yes" ; then
1405 echo "INSTALL_BLOBS=yes" >> $config_mak
1407 if test "$iovec" = "yes" ; then
1408 echo "#define HAVE_IOVEC 1" >> $config_h
1410 if test "$fdt" = "yes" ; then
1411 echo "#define HAVE_FDT 1" >> $config_h
1412 echo "FDT_LIBS=-lfdt" >> $config_mak
1415 # XXX: suppress that
1416 if [ "$bsd" = "yes" ] ; then
1417 echo "#define O_LARGEFILE 0" >> $config_h
1418 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1419 echo "#define _BSD 1" >> $config_h
1422 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1424 # USB host support
1425 case "$usb" in
1426 linux)
1427 echo "HOST_USB=linux" >> $config_mak
1429 bsd)
1430 echo "HOST_USB=bsd" >> $config_mak
1433 echo "HOST_USB=stub" >> $config_mak
1435 esac
1437 tools=
1438 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1439 tools="qemu-img\$(EXESUF) $tools"
1440 if [ "$linux" = "yes" ] ; then
1441 tools="qemu-nbd\$(EXESUF) $tools"
1444 echo "TOOLS=$tools" >> $config_mak
1446 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1448 for target in $target_list; do
1449 target_dir="$target"
1450 config_mak=$target_dir/config.mak
1451 config_h=$target_dir/config.h
1452 target_cpu=`echo $target | cut -d '-' -f 1`
1453 target_bigendian="no"
1454 [ "$target_cpu" = "armeb" ] && target_bigendian=yes
1455 [ "$target_cpu" = "m68k" ] && target_bigendian=yes
1456 [ "$target_cpu" = "mips" ] && target_bigendian=yes
1457 [ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1458 [ "$target_cpu" = "mips64" ] && target_bigendian=yes
1459 [ "$target_cpu" = "ppc" ] && target_bigendian=yes
1460 [ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
1461 [ "$target_cpu" = "ppc64" ] && target_bigendian=yes
1462 [ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
1463 [ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
1464 [ "$target_cpu" = "sparc" ] && target_bigendian=yes
1465 [ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1466 [ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
1467 target_softmmu="no"
1468 target_user_only="no"
1469 target_linux_user="no"
1470 target_darwin_user="no"
1471 target_bsd_user="no"
1472 case "$target" in
1473 ${target_cpu}-softmmu)
1474 target_softmmu="yes"
1476 ${target_cpu}-linux-user)
1477 target_user_only="yes"
1478 target_linux_user="yes"
1480 ${target_cpu}-darwin-user)
1481 target_user_only="yes"
1482 target_darwin_user="yes"
1484 ${target_cpu}-bsd-user)
1485 target_user_only="yes"
1486 target_bsd_user="yes"
1489 echo "ERROR: Target '$target' not recognised"
1490 exit 1
1492 esac
1494 if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1495 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
1496 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
1497 echo "To build QEMU without graphical output configure with --disable-gfx-check"
1498 echo "Note that this will disable all output from the virtual graphics card"
1499 echo "except through VNC or curses."
1500 exit 1;
1503 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1505 test -f $config_h && mv $config_h ${config_h}~
1507 mkdir -p $target_dir
1508 mkdir -p $target_dir/fpu
1509 mkdir -p $target_dir/tcg
1510 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1511 mkdir -p $target_dir/nwfpe
1515 # don't use ln -sf as not all "ln -sf" over write the file/link
1517 rm -f $target_dir/Makefile
1518 ln -s $source_path/Makefile.target $target_dir/Makefile
1521 echo "# Automatically generated by configure - do not modify" > $config_mak
1522 echo "/* Automatically generated by configure - do not modify */" > $config_h
1525 echo "include ../config-host.mak" >> $config_mak
1526 echo "#include \"../config-host.h\"" >> $config_h
1528 bflt="no"
1529 elfload32="no"
1530 target_nptl="no"
1531 interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1532 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1533 gdb_xml_files=""
1535 # Make sure the target and host cpus are compatible
1536 if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
1537 \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \
1538 \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \
1539 \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then
1540 kvm="no"
1542 # Disable KVM for linux-user
1543 if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1544 kvm="no"
1547 case "$target_cpu" in
1548 i386)
1549 echo "TARGET_ARCH=i386" >> $config_mak
1550 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1551 echo "#define TARGET_I386 1" >> $config_h
1552 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1553 then
1554 echo "#define USE_KQEMU 1" >> $config_h
1556 if test "$kvm" = "yes" ; then
1557 echo "CONFIG_KVM=yes" >> $config_mak
1558 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1559 echo "#define CONFIG_KVM 1" >> $config_h
1562 x86_64)
1563 echo "TARGET_ARCH=x86_64" >> $config_mak
1564 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1565 echo "#define TARGET_I386 1" >> $config_h
1566 echo "#define TARGET_X86_64 1" >> $config_h
1567 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1568 then
1569 echo "#define USE_KQEMU 1" >> $config_h
1571 if test "$kvm" = "yes" ; then
1572 echo "CONFIG_KVM=yes" >> $config_mak
1573 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1574 echo "#define CONFIG_KVM 1" >> $config_h
1577 alpha)
1578 echo "TARGET_ARCH=alpha" >> $config_mak
1579 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1580 echo "#define TARGET_ALPHA 1" >> $config_h
1582 arm|armeb)
1583 echo "TARGET_ARCH=arm" >> $config_mak
1584 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1585 echo "#define TARGET_ARM 1" >> $config_h
1586 bflt="yes"
1587 target_nptl="yes"
1588 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1590 cris)
1591 echo "TARGET_ARCH=cris" >> $config_mak
1592 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1593 echo "#define TARGET_CRIS 1" >> $config_h
1594 target_nptl="yes"
1596 m68k)
1597 echo "TARGET_ARCH=m68k" >> $config_mak
1598 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1599 echo "#define TARGET_M68K 1" >> $config_h
1600 bflt="yes"
1601 gdb_xml_files="cf-core.xml cf-fp.xml"
1603 mips|mipsel)
1604 echo "TARGET_ARCH=mips" >> $config_mak
1605 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1606 echo "#define TARGET_MIPS 1" >> $config_h
1607 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1609 mipsn32|mipsn32el)
1610 echo "TARGET_ARCH=mipsn32" >> $config_mak
1611 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1612 echo "#define TARGET_MIPS 1" >> $config_h
1613 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1615 mips64|mips64el)
1616 echo "TARGET_ARCH=mips64" >> $config_mak
1617 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1618 echo "#define TARGET_MIPS 1" >> $config_h
1619 echo "#define TARGET_MIPS64 1" >> $config_h
1620 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1622 ppc)
1623 echo "TARGET_ARCH=ppc" >> $config_mak
1624 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1625 echo "#define TARGET_PPC 1" >> $config_h
1627 ppcemb)
1628 echo "TARGET_ARCH=ppcemb" >> $config_mak
1629 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1630 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1631 echo "#define TARGET_PPC 1" >> $config_h
1632 echo "#define TARGET_PPCEMB 1" >> $config_h
1633 if test "$kvm" = "yes" ; then
1634 echo "CONFIG_KVM=yes" >> $config_mak
1635 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1636 echo "#define CONFIG_KVM 1" >> $config_h
1639 ppc64)
1640 echo "TARGET_ARCH=ppc64" >> $config_mak
1641 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1642 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1643 echo "#define TARGET_PPC 1" >> $config_h
1644 echo "#define TARGET_PPC64 1" >> $config_h
1646 ppc64abi32)
1647 echo "TARGET_ARCH=ppc64" >> $config_mak
1648 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1649 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1650 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1651 echo "#define TARGET_PPC 1" >> $config_h
1652 echo "#define TARGET_PPC64 1" >> $config_h
1653 echo "#define TARGET_ABI32 1" >> $config_h
1655 sh4|sh4eb)
1656 echo "TARGET_ARCH=sh4" >> $config_mak
1657 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1658 echo "#define TARGET_SH4 1" >> $config_h
1659 bflt="yes"
1660 target_nptl="yes"
1662 sparc)
1663 echo "TARGET_ARCH=sparc" >> $config_mak
1664 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1665 echo "#define TARGET_SPARC 1" >> $config_h
1667 sparc64)
1668 echo "TARGET_ARCH=sparc64" >> $config_mak
1669 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1670 echo "#define TARGET_SPARC 1" >> $config_h
1671 echo "#define TARGET_SPARC64 1" >> $config_h
1672 elfload32="yes"
1674 sparc32plus)
1675 echo "TARGET_ARCH=sparc64" >> $config_mak
1676 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1677 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1678 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1679 echo "#define TARGET_SPARC 1" >> $config_h
1680 echo "#define TARGET_SPARC64 1" >> $config_h
1681 echo "#define TARGET_ABI32 1" >> $config_h
1684 echo "Unsupported target CPU"
1685 exit 1
1687 esac
1688 if test "$target_bigendian" = "yes" ; then
1689 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1690 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1692 if test "$target_softmmu" = "yes" ; then
1693 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1694 echo "#define CONFIG_SOFTMMU 1" >> $config_h
1696 if test "$target_user_only" = "yes" ; then
1697 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1698 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1700 if test "$target_linux_user" = "yes" ; then
1701 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1702 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1704 if test "$target_darwin_user" = "yes" ; then
1705 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1706 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1708 list=""
1709 if test ! -z "$gdb_xml_files" ; then
1710 for x in $gdb_xml_files; do
1711 list="$list $source_path/gdb-xml/$x"
1712 done
1714 echo "TARGET_XML_FILES=$list" >> $config_mak
1716 if test "$target_cpu" = "arm" \
1717 -o "$target_cpu" = "armeb" \
1718 -o "$target_cpu" = "m68k" \
1719 -o "$target_cpu" = "mips" \
1720 -o "$target_cpu" = "mipsel" \
1721 -o "$target_cpu" = "mipsn32" \
1722 -o "$target_cpu" = "mipsn32el" \
1723 -o "$target_cpu" = "mips64" \
1724 -o "$target_cpu" = "mips64el" \
1725 -o "$target_cpu" = "ppc" \
1726 -o "$target_cpu" = "ppc64" \
1727 -o "$target_cpu" = "ppc64abi32" \
1728 -o "$target_cpu" = "ppcemb" \
1729 -o "$target_cpu" = "sparc" \
1730 -o "$target_cpu" = "sparc64" \
1731 -o "$target_cpu" = "sparc32plus"; then
1732 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1733 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1735 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1736 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1737 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1739 if test "$target_user_only" = "yes" \
1740 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1741 echo "#define USE_NPTL 1" >> $config_h
1743 # 32 bit ELF loader in addition to native 64 bit loader?
1744 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1745 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1746 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1748 if test "$target_bsd_user" = "yes" ; then
1749 echo "CONFIG_BSD_USER=yes" >> $config_mak
1750 echo "#define CONFIG_BSD_USER 1" >> $config_h
1753 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1755 done # for target in $targets
1757 # build tree in object directory if source path is different from current one
1758 if test "$source_path_used" = "yes" ; then
1759 DIRS="tests tests/cris slirp audio"
1760 FILES="Makefile tests/Makefile"
1761 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
1762 FILES="$FILES tests/test-mmap.c"
1763 for dir in $DIRS ; do
1764 mkdir -p $dir
1765 done
1766 # remove the link and recreate it, as not all "ln -sf" overwrite the link
1767 for f in $FILES ; do
1768 rm -f $f
1769 ln -s $source_path/$f $f
1770 done