Add new/missing syscall definitions
[qemu/hppa.git] / configure
blobe562e2f234c8acc853850c85b355ef5f235e7722
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 # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can run 64-bit userspace code
247 is_x86_64=`sysctl -n hw.optional.x86_64`
248 if [ "$is_x86_64" = "1" ]; then
249 cpu=x86_64
251 if [ "$cpu" = "x86_64" ] ; then
252 OS_CFLAGS="-arch x86_64"
253 LDFLAGS="-arch x86_64"
254 else
255 OS_CFLAGS="-mdynamic-no-pic"
257 darwin_user="yes"
258 cocoa="yes"
259 audio_drv_list="coreaudio"
260 audio_possible_drivers="coreaudio sdl fmod"
261 OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
263 SunOS)
264 solaris="yes"
265 make="gmake"
266 install="ginstall"
267 needs_libsunmath="no"
268 solarisrev=`uname -r | cut -f2 -d.`
269 # have to select again, because `uname -m` returns i86pc
270 # even on an x86_64 box.
271 solariscpu=`isainfo -k`
272 if test "${solariscpu}" = "amd64" ; then
273 cpu="x86_64"
275 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
276 if test "$solarisrev" -le 9 ; then
277 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
278 needs_libsunmath="yes"
279 else
280 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
281 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
282 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
283 echo "Studio 11 can be downloaded from www.sun.com."
284 exit 1
287 if test "$solarisrev" -ge 9 ; then
288 kqemu="yes"
291 if test -f /usr/include/sys/soundcard.h ; then
292 audio_drv_list="oss"
294 audio_possible_drivers="oss sdl"
296 AIX)
297 aix="yes"
298 make="gmake"
301 audio_drv_list="oss"
302 audio_possible_drivers="oss alsa sdl esd pa"
303 linux="yes"
304 linux_user="yes"
305 usb="linux"
306 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
307 kqemu="yes"
308 audio_possible_drivers="$audio_possible_drivers fmod"
311 esac
313 if [ "$bsd" = "yes" ] ; then
314 if [ "$darwin" != "yes" ] ; then
315 make="gmake"
316 usb="bsd"
318 bsd_user="yes"
321 # find source path
322 source_path=`dirname "$0"`
323 source_path_used="no"
324 workdir=`pwd`
325 if [ -z "$source_path" ]; then
326 source_path=$workdir
327 else
328 source_path=`cd "$source_path"; pwd`
330 [ -f "$workdir/vl.c" ] || source_path_used="yes"
332 werror="no"
333 # generate compile errors on warnings for development builds
334 #if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
335 #werror="yes";
338 for opt do
339 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
340 case "$opt" in
341 --help|-h) show_help=yes
343 --prefix=*) prefix="$optarg"
345 --interp-prefix=*) interp_prefix="$optarg"
347 --source-path=*) source_path="$optarg"
348 source_path_used="yes"
350 --cross-prefix=*)
352 --cc=*)
354 --host-cc=*) host_cc="$optarg"
356 --make=*) make="$optarg"
358 --install=*) install="$optarg"
360 --extra-cflags=*) CFLAGS="$optarg"
362 --extra-ldflags=*) LDFLAGS="$optarg"
364 --cpu=*) cpu="$optarg"
366 --target-list=*) target_list="$optarg"
368 --enable-gprof) gprof="yes"
370 --static) static="yes"
372 --disable-sdl) sdl="no"
374 --fmod-lib=*) fmod_lib="$optarg"
376 --fmod-inc=*) fmod_inc="$optarg"
378 --oss-lib=*) oss_lib="$optarg"
380 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
382 --audio-drv-list=*) audio_drv_list="$optarg"
384 --enable-sparse) sparse="yes"
386 --disable-sparse) sparse="no"
388 --disable-vnc-tls) vnc_tls="no"
390 --disable-slirp) slirp="no"
392 --disable-vde) vde="no"
394 --disable-kqemu) kqemu="no"
396 --disable-brlapi) brlapi="no"
398 --disable-bluez) bluez="no"
400 --disable-kvm) kvm="no"
402 --enable-profiler) profiler="yes"
404 --enable-cocoa)
405 cocoa="yes" ;
406 sdl="no" ;
407 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
409 --disable-gfx-check) check_gfx="no"
411 --disable-system) softmmu="no"
413 --enable-system) softmmu="yes"
415 --disable-linux-user) linux_user="no"
417 --enable-linux-user) linux_user="yes"
419 --disable-darwin-user) darwin_user="no"
421 --enable-darwin-user) darwin_user="yes"
423 --disable-bsd-user) bsd_user="no"
425 --enable-bsd-user) bsd_user="yes"
427 --enable-uname-release=*) uname_release="$optarg"
429 --sparc_cpu=*)
430 sparc_cpu="$optarg"
431 case $sparc_cpu in
432 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
433 target_cpu="sparc"; cpu="sparc" ;;
434 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
435 target_cpu="sparc"; cpu="sparc" ;;
436 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
437 target_cpu="sparc64"; cpu="sparc64" ;;
438 *) echo "undefined SPARC architecture. Exiting";exit 1;;
439 esac
441 --enable-werror) werror="yes"
443 --disable-werror) werror="no"
445 --disable-curses) curses="no"
447 --disable-nptl) nptl="no"
449 --enable-mixemu) mixemu="yes"
451 --disable-aio) aio="no"
453 --disable-blobs) blobs="no"
455 --kerneldir=*) kerneldir="$optarg"
457 *) echo "ERROR: unknown option $opt"; show_help="yes"
459 esac
460 done
462 # default flags for all hosts
463 CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
464 CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
465 LDFLAGS="$LDFLAGS -g"
466 if test "$werror" = "yes" ; then
467 CFLAGS="$CFLAGS -Werror"
470 if test "$solaris" = "no" ; then
471 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
472 LDFLAGS="$LDFLAGS -Wl,--warn-common"
477 # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
478 # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
480 case "$cpu" in
481 sparc) if test -z "$sparc_cpu" ; then
482 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
483 ARCH_LDFLAGS="-m32"
484 else
485 ARCH_CFLAGS="${SP_CFLAGS}"
486 ARCH_LDFLAGS="${SP_LDFLAGS}"
489 sparc64) if test -z "$sparc_cpu" ; then
490 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
491 ARCH_LDFLAGS="-m64"
492 else
493 ARCH_CFLAGS="${SP_CFLAGS}"
494 ARCH_LDFLAGS="${SP_LDFLAGS}"
497 s390)
498 ARCH_CFLAGS="-march=z900"
500 i386)
501 ARCH_CFLAGS="-m32"
502 ARCH_LDFLAGS="-m32"
504 x86_64)
505 ARCH_CFLAGS="-m64"
506 ARCH_LDFLAGS="-m64"
508 esac
510 if test x"$show_help" = x"yes" ; then
511 cat << EOF
513 Usage: configure [options]
514 Options: [defaults in brackets after descriptions]
517 echo "Standard options:"
518 echo " --help print this message"
519 echo " --prefix=PREFIX install in PREFIX [$prefix]"
520 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
521 echo " use %M for cpu name [$interp_prefix]"
522 echo " --target-list=LIST set target list [$target_list]"
523 echo ""
524 echo "kqemu kernel acceleration support:"
525 echo " --disable-kqemu disable kqemu support"
526 echo ""
527 echo "Advanced options (experts only):"
528 echo " --source-path=PATH path of source code [$source_path]"
529 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
530 echo " --cc=CC use C compiler CC [$cc]"
531 echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
532 echo " --make=MAKE use specified make [$make]"
533 echo " --install=INSTALL use specified install [$install]"
534 echo " --static enable static build [$static]"
535 echo " --enable-sparse enable sparse checker"
536 echo " --disable-sparse disable sparse checker (default)"
537 echo " --disable-werror disable compilation abort on warning"
538 echo " --disable-sdl disable SDL"
539 echo " --enable-cocoa enable COCOA (Mac OS X only)"
540 echo " --audio-drv-list=LIST set audio drivers list:"
541 echo " Available drivers: $audio_possible_drivers"
542 echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
543 echo " Available cards: $audio_possible_cards"
544 echo " --enable-mixemu enable mixer emulation"
545 echo " --disable-brlapi disable BrlAPI"
546 echo " --disable-vnc-tls disable TLS encryption for VNC server"
547 echo " --disable-curses disable curses output"
548 echo " --disable-bluez disable bluez stack connectivity"
549 echo " --disable-kvm disable KVM acceleration support"
550 echo " --disable-nptl disable usermode NPTL support"
551 echo " --enable-system enable all system emulation targets"
552 echo " --disable-system disable all system emulation targets"
553 echo " --enable-linux-user enable all linux usermode emulation targets"
554 echo " --disable-linux-user disable all linux usermode emulation targets"
555 echo " --enable-darwin-user enable all darwin usermode emulation targets"
556 echo " --disable-darwin-user disable all darwin usermode emulation targets"
557 echo " --enable-bsd-user enable all BSD usermode emulation targets"
558 echo " --disable-bsd-user disable all BSD usermode emulation targets"
559 echo " --fmod-lib path to FMOD library"
560 echo " --fmod-inc path to FMOD includes"
561 echo " --oss-lib path to OSS library"
562 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
563 echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
564 echo " --disable-vde disable support for vde network"
565 echo " --disable-aio disable AIO support"
566 echo " --disable-blobs disable installing provided firmware blobs"
567 echo " --kerneldir=PATH look for kernel includes in PATH"
568 echo ""
569 echo "NOTE: The object files are built at the place where configure is launched"
570 exit 1
573 if test "$mingw32" = "yes" ; then
574 linux="no"
575 EXESUF=".exe"
576 oss="no"
577 linux_user="no"
578 bsd_user="no"
581 if test ! -x "$(which cgcc 2>/dev/null)"; then
582 sparse="no"
586 # Solaris specific configure tool chain decisions
588 if test "$solaris" = "yes" ; then
589 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
590 if test -z "$solinst" ; then
591 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
592 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
593 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
594 exit 1
596 if test "$solinst" = "/usr/sbin/install" ; then
597 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
598 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
599 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
600 exit 1
602 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
603 if test -z "$sol_ar" ; then
604 echo "Error: No path includes ar"
605 if test -f /usr/ccs/bin/ar ; then
606 echo "Add /usr/ccs/bin to your path and rerun configure"
608 exit 1
613 if test -z "$target_list" ; then
614 # these targets are portable
615 if [ "$softmmu" = "yes" ] ; then
616 target_list="\
617 i386-softmmu \
618 x86_64-softmmu \
619 arm-softmmu \
620 cris-softmmu \
621 m68k-softmmu \
622 mips-softmmu \
623 mipsel-softmmu \
624 mips64-softmmu \
625 mips64el-softmmu \
626 ppc-softmmu \
627 ppcemb-softmmu \
628 ppc64-softmmu \
629 sh4-softmmu \
630 sh4eb-softmmu \
631 sparc-softmmu \
634 # the following are Linux specific
635 if [ "$linux_user" = "yes" ] ; then
636 target_list="${target_list}\
637 i386-linux-user \
638 x86_64-linux-user \
639 alpha-linux-user \
640 arm-linux-user \
641 armeb-linux-user \
642 cris-linux-user \
643 hppa-linux-user \
644 m68k-linux-user \
645 mips-linux-user \
646 mipsel-linux-user \
647 ppc-linux-user \
648 ppc64-linux-user \
649 ppc64abi32-linux-user \
650 sh4-linux-user \
651 sh4eb-linux-user \
652 sparc-linux-user \
653 sparc64-linux-user \
654 sparc32plus-linux-user \
657 # the following are Darwin specific
658 if [ "$darwin_user" = "yes" ] ; then
659 target_list="$target_list i386-darwin-user ppc-darwin-user "
661 # the following are BSD specific
662 if [ "$bsd_user" = "yes" ] ; then
663 target_list="${target_list}\
664 sparc64-bsd-user \
667 else
668 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
670 if test -z "$target_list" ; then
671 echo "No targets enabled"
672 exit 1
675 if test -z "$cross_prefix" ; then
677 # ---
678 # big/little endian test
679 cat > $TMPC << EOF
680 #include <inttypes.h>
681 int main(int argc, char ** argv){
682 volatile uint32_t i=0x01234567;
683 return (*((uint8_t*)(&i))) == 0x67;
687 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
688 $TMPE && bigendian="yes"
689 else
690 echo big/little test failed
693 else
695 # if cross compiling, cannot launch a program, so make a static guess
696 if test "$cpu" = "armv4b" \
697 -o "$cpu" = "hppa" \
698 -o "$cpu" = "m68k" \
699 -o "$cpu" = "mips" \
700 -o "$cpu" = "mips64" \
701 -o "$cpu" = "ppc" \
702 -o "$cpu" = "ppc64" \
703 -o "$cpu" = "s390" \
704 -o "$cpu" = "sparc" \
705 -o "$cpu" = "sparc64"; then
706 bigendian="yes"
711 # host long bits test
712 hostlongbits="32"
713 if test "$cpu" = "x86_64" \
714 -o "$cpu" = "alpha" \
715 -o "$cpu" = "ia64" \
716 -o "$cpu" = "sparc64" \
717 -o "$cpu" = "ppc64"; then
718 hostlongbits="64"
721 # check gcc options support
722 cat > $TMPC <<EOF
723 int main(void) {
727 # Check host NPTL support
728 cat > $TMPC <<EOF
729 #include <sched.h>
730 #include <linux/futex.h>
731 void foo()
733 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
734 #error bork
735 #endif
739 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
741 else
742 nptl="no"
745 ##########################################
746 # zlib check
748 cat > $TMPC << EOF
749 #include <zlib.h>
750 int main(void) { zlibVersion(); return 0; }
752 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
754 else
755 echo
756 echo "Error: zlib check failed"
757 echo "Make sure to have the zlib libs and headers installed."
758 echo
759 exit 1
762 ##########################################
763 # SDL probe
765 sdl_too_old=no
767 if test -z "$sdl" ; then
768 sdl_config="sdl-config"
769 sdl=no
770 sdl_static=no
772 cat > $TMPC << EOF
773 #include <SDL.h>
774 #undef main /* We don't want SDL to override our main() */
775 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
777 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
778 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
779 if test "$_sdlversion" -lt 121 ; then
780 sdl_too_old=yes
781 else
782 if test "$cocoa" = "no" ; then
783 sdl=yes
787 # static link with sdl ?
788 if test "$sdl" = "yes" ; then
789 aa="no"
790 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
791 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
792 if [ "$aa" = "yes" ] ; then
793 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
796 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then
797 sdl_static=yes
799 fi # static link
800 fi # sdl compile test
801 else
802 # Make sure to disable cocoa if sdl was set
803 if test "$sdl" = "yes" ; then
804 cocoa="no"
805 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
807 fi # -z $sdl
809 ##########################################
810 # VNC TLS detection
811 if test "$vnc_tls" = "yes" ; then
812 cat > $TMPC <<EOF
813 #include <gnutls/gnutls.h>
814 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
816 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
817 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
818 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
819 $vnc_tls_libs > /dev/null 2> /dev/null ; then
821 else
822 vnc_tls="no"
826 ##########################################
827 # vde libraries probe
828 if test "$vde" = "yes" ; then
829 cat > $TMPC << EOF
830 #include <libvdeplug.h>
831 int main(void)
833 struct vde_open_args a = {0, 0, 0};
834 vde_open("", "", &a);
835 return 0;
838 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
840 else
841 vde="no"
845 ##########################################
846 # Sound support libraries probe
848 audio_drv_probe()
850 drv=$1
851 hdr=$2
852 lib=$3
853 exp=$4
854 cfl=$5
855 cat > $TMPC << EOF
856 #include <$hdr>
857 int main(void) { $exp }
859 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
861 else
862 echo
863 echo "Error: $drv check failed"
864 echo "Make sure to have the $drv libs and headers installed."
865 echo
866 exit 1
870 audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
871 for drv in $audio_drv_list; do
872 case $drv in
873 alsa)
874 audio_drv_probe $drv alsa/asoundlib.h -lasound \
875 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
878 fmod)
879 if test -z $fmod_lib || test -z $fmod_inc; then
880 echo
881 echo "Error: You must specify path to FMOD library and headers"
882 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
883 echo
884 exit 1
886 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
889 esd)
890 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
894 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
895 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
898 oss|sdl|core|wav|dsound)
899 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
903 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
904 echo
905 echo "Error: Unknown driver '$drv' selected"
906 echo "Possible drivers are: $audio_possible_drivers"
907 echo
908 exit 1
911 esac
912 done
914 ##########################################
915 # BrlAPI probe
917 if test -z "$brlapi" ; then
918 brlapi=no
919 cat > $TMPC << EOF
920 #include <brlapi.h>
921 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
923 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
924 brlapi=yes
925 fi # brlapi compile test
926 fi # -z $brlapi
928 ##########################################
929 # curses probe
931 if test "$curses" = "yes" ; then
932 curses=no
933 cat > $TMPC << EOF
934 #include <curses.h>
935 int main(void) { return curses_version(); }
937 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
938 curses=yes
940 fi # test "$curses"
942 ##########################################
943 # bluez support probe
944 if test "$bluez" = "yes" ; then
945 `pkg-config bluez` || bluez="no"
947 if test "$bluez" = "yes" ; then
948 cat > $TMPC << EOF
949 #include <bluetooth/bluetooth.h>
950 int main(void) { return bt_error(0); }
952 bluez_cflags=`pkg-config --cflags bluez`
953 bluez_libs=`pkg-config --libs bluez`
954 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
955 $bluez_libs > /dev/null 2> /dev/null ; then
957 else
958 bluez="no"
962 ##########################################
963 # kvm probe
964 if test "$kvm" = "yes" ; then
965 cat > $TMPC <<EOF
966 #include <linux/kvm.h>
967 #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
968 #error Invalid KVM version
969 #endif
970 #if !defined(KVM_CAP_USER_MEMORY)
971 #error Missing KVM capability KVM_CAP_USER_MEMORY
972 #endif
973 #if !defined(KVM_CAP_SET_TSS_ADDR)
974 #error Missing KVM capability KVM_CAP_SET_TSS_ADDR
975 #endif
976 #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
977 #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
978 #endif
979 int main(void) { return 0; }
981 if test "$kerneldir" != "" ; then
982 kvm_cflags=-I"$kerneldir"/include
983 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
984 -a -d "$kerneldir/arch/x86/include" ; then
985 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
986 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
987 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
988 elif test -d "$kerneldir/arch/$cpu/include" ; then
989 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
991 else
992 kvm_cflags=""
994 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
995 > /dev/null 2>/dev/null ; then
997 else
998 kvm="no";
999 if [ -x "`which awk 2>/dev/null`" ] && \
1000 [ -x "`which grep 2>/dev/null`" ]; then
1001 kvmerr=`$cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1002 | grep "error: " \
1003 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1004 if test "$kvmerr" != "" ; then
1005 kvm="no - (${kvmerr})"
1011 ##########################################
1012 # AIO probe
1013 AIOLIBS=""
1015 if test "$aio" = "yes" ; then
1016 aio=no
1017 cat > $TMPC << EOF
1018 #include <pthread.h>
1019 int main(void) { pthread_mutex_t lock; return 0; }
1021 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
1022 aio=yes
1023 AIOLIBS="-lpthread"
1027 ##########################################
1028 # iovec probe
1029 cat > $TMPC <<EOF
1030 #include <sys/types.h>
1031 #include <sys/uio.h>
1032 #include <unistd.h>
1033 int main(void) { struct iovec iov; return 0; }
1035 iovec=no
1036 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1037 iovec=yes
1040 ##########################################
1041 # fdt probe
1042 if test "$fdt" = "yes" ; then
1043 fdt=no
1044 cat > $TMPC << EOF
1045 int main(void) { return 0; }
1047 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1048 fdt=yes
1052 # Check if tools are available to build documentation.
1053 if [ -x "`which texi2html 2>/dev/null`" ] && \
1054 [ -x "`which pod2man 2>/dev/null`" ]; then
1055 build_docs="yes"
1058 ##########################################
1059 # Do we need librt
1060 cat > $TMPC <<EOF
1061 #include <signal.h>
1062 #include <time.h>
1063 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1066 rt=no
1067 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1069 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
1070 rt=yes
1073 if test "$rt" = "yes" ; then
1074 # Hack, we should have a general purpose LIBS for this sort of thing
1075 AIOLIBS="$AIOLIBS -lrt"
1078 if test "$mingw32" = "yes" ; then
1079 if test -z "$prefix" ; then
1080 prefix="c:\\\\Program Files\\\\Qemu"
1082 mansuffix=""
1083 datasuffix=""
1084 docsuffix=""
1085 binsuffix=""
1086 else
1087 if test -z "$prefix" ; then
1088 prefix="/usr/local"
1090 mansuffix="/share/man"
1091 datasuffix="/share/qemu"
1092 docsuffix="/share/doc/qemu"
1093 binsuffix="/bin"
1096 echo "Install prefix $prefix"
1097 echo "BIOS directory $prefix$datasuffix"
1098 echo "binary directory $prefix$binsuffix"
1099 if test "$mingw32" = "no" ; then
1100 echo "Manual directory $prefix$mansuffix"
1101 echo "ELF interp prefix $interp_prefix"
1103 echo "Source path $source_path"
1104 echo "C compiler $cc"
1105 echo "Host C compiler $host_cc"
1106 echo "ARCH_CFLAGS $ARCH_CFLAGS"
1107 echo "make $make"
1108 echo "install $install"
1109 echo "host CPU $cpu"
1110 echo "host big endian $bigendian"
1111 echo "target list $target_list"
1112 echo "gprof enabled $gprof"
1113 echo "sparse enabled $sparse"
1114 echo "profiler $profiler"
1115 echo "static build $static"
1116 echo "-Werror enabled $werror"
1117 if test "$darwin" = "yes" ; then
1118 echo "Cocoa support $cocoa"
1120 echo "SDL support $sdl"
1121 if test "$sdl" != "no" ; then
1122 echo "SDL static link $sdl_static"
1124 echo "curses support $curses"
1125 echo "mingw32 support $mingw32"
1126 echo "Audio drivers $audio_drv_list"
1127 echo "Extra audio cards $audio_card_list"
1128 echo "Mixer emulation $mixemu"
1129 echo "VNC TLS support $vnc_tls"
1130 if test "$vnc_tls" = "yes" ; then
1131 echo " TLS CFLAGS $vnc_tls_cflags"
1132 echo " TLS LIBS $vnc_tls_libs"
1134 if test -n "$sparc_cpu"; then
1135 echo "Target Sparc Arch $sparc_cpu"
1137 echo "kqemu support $kqemu"
1138 echo "brlapi support $brlapi"
1139 echo "Documentation $build_docs"
1140 [ ! -z "$uname_release" ] && \
1141 echo "uname -r $uname_release"
1142 echo "NPTL support $nptl"
1143 echo "vde support $vde"
1144 echo "AIO support $aio"
1145 echo "Install blobs $blobs"
1146 echo "KVM support $kvm"
1147 echo "fdt support $fdt"
1149 if test $sdl_too_old = "yes"; then
1150 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1152 if [ -s $TMPSDLLOG ]; then
1153 echo "The error log from compiling the libSDL test is: "
1154 cat $TMPSDLLOG
1156 #if test "$sdl_static" = "no"; then
1157 # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1159 config_mak="config-host.mak"
1160 config_h="config-host.h"
1162 #echo "Creating $config_mak and $config_h"
1164 test -f $config_h && mv $config_h ${config_h}~
1166 echo "# Automatically generated by configure - do not modify" > $config_mak
1167 printf "# Configured with:" >> $config_mak
1168 printf " '%s'" "$0" "$@" >> $config_mak
1169 echo >> $config_mak
1170 echo "/* Automatically generated by configure - do not modify */" > $config_h
1172 echo "prefix=$prefix" >> $config_mak
1173 echo "bindir=\${prefix}$binsuffix" >> $config_mak
1174 echo "mandir=\${prefix}$mansuffix" >> $config_mak
1175 echo "datadir=\${prefix}$datasuffix" >> $config_mak
1176 echo "docdir=\${prefix}$docsuffix" >> $config_mak
1177 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1178 echo "MAKE=$make" >> $config_mak
1179 echo "INSTALL=$install" >> $config_mak
1180 echo "CC=$cc" >> $config_mak
1181 echo "HOST_CC=$host_cc" >> $config_mak
1182 echo "AR=$ar" >> $config_mak
1183 echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
1184 # XXX: only use CFLAGS and LDFLAGS ?
1185 # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1186 # compilation of dyngen tool (useful for win32 build on Linux host)
1187 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1188 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1189 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1190 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1191 echo "CFLAGS=$CFLAGS" >> $config_mak
1192 echo "LDFLAGS=$LDFLAGS" >> $config_mak
1193 echo "EXESUF=$EXESUF" >> $config_mak
1194 echo "AIOLIBS=$AIOLIBS" >> $config_mak
1195 case "$cpu" in
1196 i386)
1197 echo "ARCH=i386" >> $config_mak
1198 echo "#define HOST_I386 1" >> $config_h
1200 x86_64)
1201 echo "ARCH=x86_64" >> $config_mak
1202 echo "#define HOST_X86_64 1" >> $config_h
1204 alpha)
1205 echo "ARCH=alpha" >> $config_mak
1206 echo "#define HOST_ALPHA 1" >> $config_h
1208 armv4b)
1209 echo "ARCH=arm" >> $config_mak
1210 echo "#define HOST_ARM 1" >> $config_h
1212 armv4l)
1213 echo "ARCH=arm" >> $config_mak
1214 echo "#define HOST_ARM 1" >> $config_h
1216 cris)
1217 echo "ARCH=cris" >> $config_mak
1218 echo "#define HOST_CRIS 1" >> $config_h
1220 hppa)
1221 echo "ARCH=hppa" >> $config_mak
1222 echo "#define HOST_HPPA 1" >> $config_h
1224 ia64)
1225 echo "ARCH=ia64" >> $config_mak
1226 echo "#define HOST_IA64 1" >> $config_h
1228 m68k)
1229 echo "ARCH=m68k" >> $config_mak
1230 echo "#define HOST_M68K 1" >> $config_h
1232 mips)
1233 echo "ARCH=mips" >> $config_mak
1234 echo "#define HOST_MIPS 1" >> $config_h
1236 mips64)
1237 echo "ARCH=mips64" >> $config_mak
1238 echo "#define HOST_MIPS64 1" >> $config_h
1240 ppc)
1241 echo "ARCH=ppc" >> $config_mak
1242 echo "#define HOST_PPC 1" >> $config_h
1244 ppc64)
1245 echo "ARCH=ppc64" >> $config_mak
1246 echo "#define HOST_PPC64 1" >> $config_h
1248 s390)
1249 echo "ARCH=s390" >> $config_mak
1250 echo "#define HOST_S390 1" >> $config_h
1252 sparc)
1253 echo "ARCH=sparc" >> $config_mak
1254 echo "#define HOST_SPARC 1" >> $config_h
1256 sparc64)
1257 echo "ARCH=sparc64" >> $config_mak
1258 echo "#define HOST_SPARC64 1" >> $config_h
1261 echo "Unsupported CPU = $cpu"
1262 exit 1
1264 esac
1265 if test "$sparse" = "yes" ; then
1266 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1267 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1268 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1270 if test "$bigendian" = "yes" ; then
1271 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1272 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1274 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1275 if test "$mingw32" = "yes" ; then
1276 echo "CONFIG_WIN32=yes" >> $config_mak
1277 echo "#define CONFIG_WIN32 1" >> $config_h
1278 else
1279 cat > $TMPC << EOF
1280 #include <byteswap.h>
1281 int main(void) { return bswap_32(0); }
1283 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1284 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1286 cat > $TMPC << EOF
1287 #include <sys/endian.h>
1288 #include <sys/types.h>
1289 #include <machine/bswap.h>
1290 int main(void) { return bswap32(0); }
1292 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1293 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1297 if [ "$openbsd" = "yes" ] ; then
1298 echo "#define ENOTSUP 4096" >> $config_h
1301 if test "$darwin" = "yes" ; then
1302 echo "CONFIG_DARWIN=yes" >> $config_mak
1303 echo "#define CONFIG_DARWIN 1" >> $config_h
1306 if test "$aix" = "yes" ; then
1307 echo "CONFIG_AIX=yes" >> $config_mak
1308 echo "#define CONFIG_AIX 1" >> $config_h
1311 if test "$solaris" = "yes" ; then
1312 echo "CONFIG_SOLARIS=yes" >> $config_mak
1313 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1314 if test "$needs_libsunmath" = "yes" ; then
1315 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1316 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1319 if test -n "$sparc_cpu"; then
1320 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1321 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1323 if test "$gdbstub" = "yes" ; then
1324 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1325 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1327 if test "$gprof" = "yes" ; then
1328 echo "TARGET_GPROF=yes" >> $config_mak
1329 echo "#define HAVE_GPROF 1" >> $config_h
1331 if test "$static" = "yes" ; then
1332 echo "CONFIG_STATIC=yes" >> $config_mak
1333 echo "#define CONFIG_STATIC 1" >> $config_h
1335 if test $profiler = "yes" ; then
1336 echo "#define CONFIG_PROFILER 1" >> $config_h
1338 if test "$slirp" = "yes" ; then
1339 echo "CONFIG_SLIRP=yes" >> $config_mak
1340 echo "#define CONFIG_SLIRP 1" >> $config_h
1342 if test "$vde" = "yes" ; then
1343 echo "CONFIG_VDE=yes" >> $config_mak
1344 echo "#define CONFIG_VDE 1" >> $config_h
1345 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1347 for card in $audio_card_list; do
1348 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
1349 echo "$def=yes" >> $config_mak
1350 echo "#define $def 1" >> $config_h
1351 done
1352 echo "#define AUDIO_DRIVERS \\" >> $config_h
1353 for drv in $audio_drv_list; do
1354 echo " &${drv}_audio_driver, \\" >>$config_h
1355 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
1356 echo "$def=yes" >> $config_mak
1357 if test "$drv" = "fmod"; then
1358 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1359 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1360 elif test "$drv" = "oss"; then
1361 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1363 done
1364 echo "" >>$config_h
1365 if test "$mixemu" = "yes" ; then
1366 echo "CONFIG_MIXEMU=yes" >> $config_mak
1367 echo "#define CONFIG_MIXEMU 1" >> $config_h
1369 if test "$vnc_tls" = "yes" ; then
1370 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1371 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1372 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1373 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1375 qemu_version=`head $source_path/VERSION`
1376 echo "VERSION=$qemu_version" >>$config_mak
1377 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1379 echo "SRC_PATH=$source_path" >> $config_mak
1380 if [ "$source_path_used" = "yes" ]; then
1381 echo "VPATH=$source_path" >> $config_mak
1383 echo "TARGET_DIRS=$target_list" >> $config_mak
1384 if [ "$build_docs" = "yes" ] ; then
1385 echo "BUILD_DOCS=yes" >> $config_mak
1387 if test "$static" = "yes"; then
1388 sdl1=$sdl_static
1389 else
1390 sdl1=$sdl
1392 if test "$sdl1" = "yes" ; then
1393 echo "#define CONFIG_SDL 1" >> $config_h
1394 echo "CONFIG_SDL=yes" >> $config_mak
1395 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1396 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1397 else
1398 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1400 if [ "${aa}" = "yes" ] ; then
1401 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1402 else
1403 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1406 if test "$cocoa" = "yes" ; then
1407 echo "#define CONFIG_COCOA 1" >> $config_h
1408 echo "CONFIG_COCOA=yes" >> $config_mak
1410 if test "$curses" = "yes" ; then
1411 echo "#define CONFIG_CURSES 1" >> $config_h
1412 echo "CONFIG_CURSES=yes" >> $config_mak
1413 echo "CURSES_LIBS=-lcurses" >> $config_mak
1415 if test "$brlapi" = "yes" ; then
1416 echo "CONFIG_BRLAPI=yes" >> $config_mak
1417 echo "#define CONFIG_BRLAPI 1" >> $config_h
1418 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1420 if test "$bluez" = "yes" ; then
1421 echo "CONFIG_BLUEZ=yes" >> $config_mak
1422 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1423 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1424 echo "#define CONFIG_BLUEZ 1" >> $config_h
1426 if test "$aio" = "yes" ; then
1427 echo "#define CONFIG_AIO 1" >> $config_h
1428 echo "CONFIG_AIO=yes" >> $config_mak
1430 if test "$blobs" = "yes" ; then
1431 echo "INSTALL_BLOBS=yes" >> $config_mak
1433 if test "$iovec" = "yes" ; then
1434 echo "#define HAVE_IOVEC 1" >> $config_h
1436 if test "$fdt" = "yes" ; then
1437 echo "#define HAVE_FDT 1" >> $config_h
1438 echo "FDT_LIBS=-lfdt" >> $config_mak
1441 # XXX: suppress that
1442 if [ "$bsd" = "yes" ] ; then
1443 echo "#define O_LARGEFILE 0" >> $config_h
1444 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1445 echo "#define _BSD 1" >> $config_h
1448 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1450 # USB host support
1451 case "$usb" in
1452 linux)
1453 echo "HOST_USB=linux" >> $config_mak
1455 bsd)
1456 echo "HOST_USB=bsd" >> $config_mak
1459 echo "HOST_USB=stub" >> $config_mak
1461 esac
1463 tools=
1464 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1465 tools="qemu-img\$(EXESUF) $tools"
1466 if [ "$linux" = "yes" ] ; then
1467 tools="qemu-nbd\$(EXESUF) $tools"
1470 echo "TOOLS=$tools" >> $config_mak
1472 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1474 for target in $target_list; do
1475 target_dir="$target"
1476 config_mak=$target_dir/config.mak
1477 config_h=$target_dir/config.h
1478 target_cpu=`echo $target | cut -d '-' -f 1`
1479 target_bigendian="no"
1480 [ "$target_cpu" = "armeb" ] && target_bigendian=yes
1481 [ "$target_cpu" = "hppa" ] && target_bigendian=yes
1482 [ "$target_cpu" = "hppa64" ] && target_bigendian=yes
1483 [ "$target_cpu" = "m68k" ] && target_bigendian=yes
1484 [ "$target_cpu" = "mips" ] && target_bigendian=yes
1485 [ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1486 [ "$target_cpu" = "mips64" ] && target_bigendian=yes
1487 [ "$target_cpu" = "ppc" ] && target_bigendian=yes
1488 [ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
1489 [ "$target_cpu" = "ppc64" ] && target_bigendian=yes
1490 [ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
1491 [ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
1492 [ "$target_cpu" = "sparc" ] && target_bigendian=yes
1493 [ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1494 [ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
1495 target_softmmu="no"
1496 target_user_only="no"
1497 target_linux_user="no"
1498 target_darwin_user="no"
1499 target_bsd_user="no"
1500 case "$target" in
1501 ${target_cpu}-softmmu)
1502 target_softmmu="yes"
1504 ${target_cpu}-linux-user)
1505 target_user_only="yes"
1506 target_linux_user="yes"
1508 ${target_cpu}-darwin-user)
1509 target_user_only="yes"
1510 target_darwin_user="yes"
1512 ${target_cpu}-bsd-user)
1513 target_user_only="yes"
1514 target_bsd_user="yes"
1517 echo "ERROR: Target '$target' not recognised"
1518 exit 1
1520 esac
1522 if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1523 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
1524 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
1525 echo "To build QEMU without graphical output configure with --disable-gfx-check"
1526 echo "Note that this will disable all output from the virtual graphics card"
1527 echo "except through VNC or curses."
1528 exit 1;
1531 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1533 test -f $config_h && mv $config_h ${config_h}~
1535 mkdir -p $target_dir
1536 mkdir -p $target_dir/fpu
1537 mkdir -p $target_dir/tcg
1538 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1539 mkdir -p $target_dir/nwfpe
1543 # don't use ln -sf as not all "ln -sf" over write the file/link
1545 rm -f $target_dir/Makefile
1546 ln -s $source_path/Makefile.target $target_dir/Makefile
1549 echo "# Automatically generated by configure - do not modify" > $config_mak
1550 echo "/* Automatically generated by configure - do not modify */" > $config_h
1553 echo "include ../config-host.mak" >> $config_mak
1554 echo "#include \"../config-host.h\"" >> $config_h
1556 bflt="no"
1557 elfload32="no"
1558 target_nptl="no"
1559 interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1560 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1561 gdb_xml_files=""
1563 # Make sure the target and host cpus are compatible
1564 if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
1565 \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \
1566 \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \
1567 \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then
1568 kvm="no"
1570 # Disable KVM for linux-user
1571 if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1572 kvm="no"
1575 case "$target_cpu" in
1576 i386)
1577 echo "TARGET_ARCH=i386" >> $config_mak
1578 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1579 echo "#define TARGET_I386 1" >> $config_h
1580 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1581 then
1582 echo "#define USE_KQEMU 1" >> $config_h
1584 if test "$kvm" = "yes" ; then
1585 echo "CONFIG_KVM=yes" >> $config_mak
1586 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1587 echo "#define CONFIG_KVM 1" >> $config_h
1590 x86_64)
1591 echo "TARGET_ARCH=x86_64" >> $config_mak
1592 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1593 echo "#define TARGET_I386 1" >> $config_h
1594 echo "#define TARGET_X86_64 1" >> $config_h
1595 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1596 then
1597 echo "#define USE_KQEMU 1" >> $config_h
1599 if test "$kvm" = "yes" ; then
1600 echo "CONFIG_KVM=yes" >> $config_mak
1601 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1602 echo "#define CONFIG_KVM 1" >> $config_h
1605 alpha)
1606 echo "TARGET_ARCH=alpha" >> $config_mak
1607 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1608 echo "#define TARGET_ALPHA 1" >> $config_h
1610 arm|armeb)
1611 echo "TARGET_ARCH=arm" >> $config_mak
1612 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1613 echo "#define TARGET_ARM 1" >> $config_h
1614 bflt="yes"
1615 target_nptl="yes"
1616 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1618 cris)
1619 echo "TARGET_ARCH=cris" >> $config_mak
1620 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1621 echo "#define TARGET_CRIS 1" >> $config_h
1622 target_nptl="yes"
1624 hppa)
1625 echo "TARGET_ARCH=hppa" >> $config_mak
1626 echo "#define TARGET_ARCH \"hppa\"" >> $config_h
1627 echo "#define TARGET_HPPA 1" >> $config_h
1629 hppa64)
1630 echo "TARGET_ARCH=hppa64" >> $config_mak
1631 echo "#define TARGET_ARCH \"hppa64\"" >> $config_h
1632 echo "#define TARGET_HPPA 1" >> $config_h
1633 echo "#define TARGET_HPPA64 1" >> $config_h
1635 m68k)
1636 echo "TARGET_ARCH=m68k" >> $config_mak
1637 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1638 echo "#define TARGET_M68K 1" >> $config_h
1639 bflt="yes"
1640 gdb_xml_files="cf-core.xml cf-fp.xml"
1642 mips|mipsel)
1643 echo "TARGET_ARCH=mips" >> $config_mak
1644 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1645 echo "#define TARGET_MIPS 1" >> $config_h
1646 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1648 mipsn32|mipsn32el)
1649 echo "TARGET_ARCH=mipsn32" >> $config_mak
1650 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1651 echo "#define TARGET_MIPS 1" >> $config_h
1652 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1654 mips64|mips64el)
1655 echo "TARGET_ARCH=mips64" >> $config_mak
1656 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1657 echo "#define TARGET_MIPS 1" >> $config_h
1658 echo "#define TARGET_MIPS64 1" >> $config_h
1659 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1661 ppc)
1662 echo "TARGET_ARCH=ppc" >> $config_mak
1663 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1664 echo "#define TARGET_PPC 1" >> $config_h
1665 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1667 ppcemb)
1668 echo "TARGET_ARCH=ppcemb" >> $config_mak
1669 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1670 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1671 echo "#define TARGET_PPC 1" >> $config_h
1672 echo "#define TARGET_PPCEMB 1" >> $config_h
1673 if test "$kvm" = "yes" ; then
1674 echo "CONFIG_KVM=yes" >> $config_mak
1675 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1676 echo "#define CONFIG_KVM 1" >> $config_h
1678 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1680 ppc64)
1681 echo "TARGET_ARCH=ppc64" >> $config_mak
1682 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1683 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1684 echo "#define TARGET_PPC 1" >> $config_h
1685 echo "#define TARGET_PPC64 1" >> $config_h
1686 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1688 ppc64abi32)
1689 echo "TARGET_ARCH=ppc64" >> $config_mak
1690 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1691 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1692 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1693 echo "#define TARGET_PPC 1" >> $config_h
1694 echo "#define TARGET_PPC64 1" >> $config_h
1695 echo "#define TARGET_ABI32 1" >> $config_h
1696 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1698 sh4|sh4eb)
1699 echo "TARGET_ARCH=sh4" >> $config_mak
1700 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1701 echo "#define TARGET_SH4 1" >> $config_h
1702 bflt="yes"
1703 target_nptl="yes"
1705 sparc)
1706 echo "TARGET_ARCH=sparc" >> $config_mak
1707 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1708 echo "#define TARGET_SPARC 1" >> $config_h
1710 sparc64)
1711 echo "TARGET_ARCH=sparc64" >> $config_mak
1712 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1713 echo "#define TARGET_SPARC 1" >> $config_h
1714 echo "#define TARGET_SPARC64 1" >> $config_h
1715 elfload32="yes"
1717 sparc32plus)
1718 echo "TARGET_ARCH=sparc64" >> $config_mak
1719 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1720 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1721 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1722 echo "#define TARGET_SPARC 1" >> $config_h
1723 echo "#define TARGET_SPARC64 1" >> $config_h
1724 echo "#define TARGET_ABI32 1" >> $config_h
1727 echo "Unsupported target CPU"
1728 exit 1
1730 esac
1731 if test "$target_bigendian" = "yes" ; then
1732 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1733 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1735 if test "$target_softmmu" = "yes" ; then
1736 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1737 echo "#define CONFIG_SOFTMMU 1" >> $config_h
1739 if test "$target_user_only" = "yes" ; then
1740 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1741 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1743 if test "$target_linux_user" = "yes" ; then
1744 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1745 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1747 if test "$target_darwin_user" = "yes" ; then
1748 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1749 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1751 list=""
1752 if test ! -z "$gdb_xml_files" ; then
1753 for x in $gdb_xml_files; do
1754 list="$list $source_path/gdb-xml/$x"
1755 done
1757 echo "TARGET_XML_FILES=$list" >> $config_mak
1759 if test "$target_cpu" = "arm" \
1760 -o "$target_cpu" = "armeb" \
1761 -o "$target_cpu" = "m68k" \
1762 -o "$target_cpu" = "mips" \
1763 -o "$target_cpu" = "mipsel" \
1764 -o "$target_cpu" = "mipsn32" \
1765 -o "$target_cpu" = "mipsn32el" \
1766 -o "$target_cpu" = "mips64" \
1767 -o "$target_cpu" = "mips64el" \
1768 -o "$target_cpu" = "ppc" \
1769 -o "$target_cpu" = "ppc64" \
1770 -o "$target_cpu" = "ppc64abi32" \
1771 -o "$target_cpu" = "ppcemb" \
1772 -o "$target_cpu" = "sparc" \
1773 -o "$target_cpu" = "sparc64" \
1774 -o "$target_cpu" = "sparc32plus"; then
1775 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1776 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1778 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1779 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1780 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1782 if test "$target_user_only" = "yes" \
1783 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1784 echo "#define USE_NPTL 1" >> $config_h
1786 # 32 bit ELF loader in addition to native 64 bit loader?
1787 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1788 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1789 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1791 if test "$target_bsd_user" = "yes" ; then
1792 echo "CONFIG_BSD_USER=yes" >> $config_mak
1793 echo "#define CONFIG_BSD_USER 1" >> $config_h
1796 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1798 done # for target in $targets
1800 # build tree in object directory if source path is different from current one
1801 if test "$source_path_used" = "yes" ; then
1802 DIRS="tests tests/cris slirp audio"
1803 FILES="Makefile tests/Makefile"
1804 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
1805 FILES="$FILES tests/test-mmap.c"
1806 for dir in $DIRS ; do
1807 mkdir -p $dir
1808 done
1809 # remove the link and recreate it, as not all "ln -sf" overwrite the link
1810 for f in $FILES ; do
1811 rm -f $f
1812 ln -s $source_path/$f $f
1813 done