Disable KVM support if the kernel modules have broken memory slot handling
[qemu] / configure
1 #!/bin/sh
2 #
3 # qemu configure script (c) 2003 Fabrice Bellard
4 #
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"
12 fi
13
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"
20
21 trap "rm -f $TMPC $TMPO $TMPE $TMPS $TMPI $TMPSDLLOG; exit" 0 2 3 15
22
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=""
31 host_cc="gcc"
32 ar="ar"
33 make="make"
34 install="install"
35 strip="strip"
36 cpu=`test $(uname -s) = AIX && uname -p || uname -m`
37 target_list=""
38 case "$cpu" in
39   i386|i486|i586|i686|i86pc|BePC)
40     cpu="i386"
41   ;;
42   x86_64|amd64)
43     cpu="x86_64"
44   ;;
45   alpha)
46     cpu="alpha"
47   ;;
48   armv*b)
49     cpu="armv4b"
50   ;;
51   armv*l)
52     cpu="armv4l"
53   ;;
54   cris)
55     cpu="cris"
56   ;;
57   parisc|parisc64)
58     cpu="hppa"
59   ;;
60   ia64)
61     cpu="ia64"
62   ;;
63   m68k)
64     cpu="m68k"
65   ;;
66   mips)
67     cpu="mips"
68   ;;
69   mips64)
70     cpu="mips64"
71   ;;
72   "Power Macintosh"|ppc|ppc64|powerpc)
73     cpu="powerpc"
74   ;;
75   s390*)
76     cpu="s390"
77   ;;
78   sparc|sun4[cdmuv])
79     cpu="sparc"
80   ;;
81   sparc64)
82     cpu="sparc64"
83   ;;
84   *)
85     cpu="unknown"
86   ;;
87 esac
88 gprof="no"
89 sparse="no"
90 bigendian="no"
91 mingw32="no"
92 EXESUF=""
93 gdbstub="yes"
94 slirp="yes"
95 vde="yes"
96 fmod_lib=""
97 fmod_inc=""
98 oss_lib=""
99 vnc_tls="yes"
100 bsd="no"
101 linux="no"
102 solaris="no"
103 kqemu="no"
104 profiler="no"
105 cocoa="no"
106 check_gfx="yes"
107 softmmu="yes"
108 linux_user="no"
109 darwin_user="no"
110 bsd_user="no"
111 build_docs="no"
112 uname_release=""
113 curses="yes"
114 aio="yes"
115 nptl="yes"
116 mixemu="no"
117 bluez="yes"
118 kvm="yes"
119 kerneldir=""
120 aix="no"
121 blobs="yes"
122
123 # OS specific
124 targetos=`uname -s`
125 case $targetos in
126 CYGWIN*)
127 mingw32="yes"
128 OS_CFLAGS="-mno-cygwin"
129 if [ "$cpu" = "i386" ] ; then
130     kqemu="yes"
131 fi
132 audio_possible_drivers="sdl"
133 ;;
134 MINGW32*)
135 mingw32="yes"
136 if [ "$cpu" = "i386" ] ; then
137     kqemu="yes"
138 fi
139 audio_possible_drivers="dsound sdl fmod"
140 ;;
141 GNU/kFreeBSD)
142 audio_drv_list="oss"
143 audio_possible_drivers="oss sdl esd pa"
144 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
145     kqemu="yes"
146 fi
147 ;;
148 FreeBSD)
149 bsd="yes"
150 audio_drv_list="oss"
151 audio_possible_drivers="oss sdl esd pa"
152 aio_lib="-lpthread"
153 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
154     kqemu="yes"
155 fi
156 ;;
157 NetBSD)
158 bsd="yes"
159 audio_drv_list="oss"
160 audio_possible_drivers="oss sdl esd"
161 oss_lib="-lossaudio"
162 aio_lib="-lrt -lpthread"
163 ;;
164 OpenBSD)
165 bsd="yes"
166 openbsd="yes"
167 audio_drv_list="oss"
168 audio_possible_drivers="oss sdl esd"
169 oss_lib="-lossaudio"
170 aio_lib="-lpthread"
171 ;;
172 Darwin)
173 bsd="yes"
174 darwin="yes"
175 darwin_user="yes"
176 cocoa="yes"
177 audio_drv_list="coreaudio"
178 audio_possible_drivers="coreaudio sdl fmod"
179 OS_CFLAGS="-mdynamic-no-pic"
180 OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
181 aio_lib="-lpthread"
182 ;;
183 SunOS)
184     solaris="yes"
185     make="gmake"
186     install="ginstall"
187     needs_libsunmath="no"
188     solarisrev=`uname -r | cut -f2 -d.`
189     # have to select again, because `uname -m` returns i86pc
190     # even on an x86_64 box.
191     solariscpu=`isainfo -k`
192     if test "${solariscpu}" = "amd64" ; then
193         cpu="x86_64"
194     fi
195     if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
196         if test "$solarisrev" -le 9 ; then
197             if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
198                 needs_libsunmath="yes"
199             else
200                 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
201                 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
202                 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
203                 echo "Studio 11 can be downloaded from www.sun.com."
204                 exit 1
205             fi
206         fi
207         if test "$solarisrev" -ge 9 ; then
208             kqemu="yes"
209         fi
210     fi
211     if test -f /usr/include/sys/soundcard.h ; then
212         audio_drv_list="oss"
213     fi
214     audio_possible_drivers="oss sdl"
215 ;;
216 AIX)
217 aix="yes"
218 make="gmake"
219 ;;
220 *)
221 audio_drv_list="oss"
222 audio_possible_drivers="oss alsa sdl esd pa"
223 linux="yes"
224 linux_user="yes"
225 usb="linux"
226 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
227     kqemu="yes"
228     audio_possible_drivers="$audio_possible_drivers fmod"
229 fi
230 ;;
231 esac
232
233 if [ "$bsd" = "yes" ] ; then
234   if [ "$darwin" != "yes" ] ; then
235     make="gmake"
236     usb="bsd"
237   fi
238   bsd_user="yes"
239 fi
240
241 # find source path
242 source_path=`dirname "$0"`
243 source_path_used="no"
244 workdir=`pwd`
245 if [ -z "$source_path" ]; then
246     source_path=$workdir
247 else
248     source_path=`cd "$source_path"; pwd`
249 fi
250 [ -f "$workdir/vl.c" ] || source_path_used="yes"
251
252 werror="no"
253 # generate compile errors on warnings for development builds
254 #if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
255 #werror="yes";
256 #fi
257
258 for opt do
259   optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
260   case "$opt" in
261   --help|-h) show_help=yes
262   ;;
263   --prefix=*) prefix="$optarg"
264   ;;
265   --interp-prefix=*) interp_prefix="$optarg"
266   ;;
267   --source-path=*) source_path="$optarg"
268   source_path_used="yes"
269   ;;
270   --cross-prefix=*) cross_prefix="$optarg"
271   ;;
272   --cc=*) cc="$optarg"
273   ;;
274   --host-cc=*) host_cc="$optarg"
275   ;;
276   --make=*) make="$optarg"
277   ;;
278   --install=*) install="$optarg"
279   ;;
280   --extra-cflags=*) CFLAGS="$optarg"
281   ;;
282   --extra-ldflags=*) LDFLAGS="$optarg"
283   ;;
284   --cpu=*) cpu="$optarg"
285   ;;
286   --target-list=*) target_list="$optarg"
287   ;;
288   --enable-gprof) gprof="yes"
289   ;;
290   --static) static="yes"
291   ;;
292   --disable-sdl) sdl="no"
293   ;;
294   --fmod-lib=*) fmod_lib="$optarg"
295   ;;
296   --fmod-inc=*) fmod_inc="$optarg"
297   ;;
298   --oss-lib=*) oss_lib="$optarg"
299   ;;
300   --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
301   ;;
302   --audio-drv-list=*) audio_drv_list="$optarg"
303   ;;
304   --enable-sparse) sparse="yes"
305   ;;
306   --disable-sparse) sparse="no"
307   ;;
308   --disable-vnc-tls) vnc_tls="no"
309   ;;
310   --disable-slirp) slirp="no"
311   ;;
312   --disable-vde) vde="no"
313   ;;
314   --disable-kqemu) kqemu="no"
315   ;;
316   --disable-brlapi) brlapi="no"
317   ;;
318   --disable-bluez) bluez="no"
319   ;;
320   --disable-kvm) kvm="no"
321   ;;
322   --enable-profiler) profiler="yes"
323   ;;
324   --enable-cocoa)
325       cocoa="yes" ;
326       sdl="no" ;
327       audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
328   ;;
329   --disable-gfx-check) check_gfx="no"
330   ;;
331   --disable-system) softmmu="no"
332   ;;
333   --enable-system) softmmu="yes"
334   ;;
335   --disable-linux-user) linux_user="no"
336   ;;
337   --enable-linux-user) linux_user="yes"
338   ;;
339   --disable-darwin-user) darwin_user="no"
340   ;;
341   --enable-darwin-user) darwin_user="yes"
342   ;;
343   --disable-bsd-user) bsd_user="no"
344   ;;
345   --enable-bsd-user) bsd_user="yes"
346   ;;
347   --enable-uname-release=*) uname_release="$optarg"
348   ;;
349   --sparc_cpu=*)
350       sparc_cpu="$optarg"
351       case $sparc_cpu in
352         v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
353                  target_cpu="sparc"; cpu="sparc" ;;
354         v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
355                  target_cpu="sparc"; cpu="sparc" ;;
356         v9)    SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
357                  target_cpu="sparc64"; cpu="sparc64" ;;
358         *)     echo "undefined SPARC architecture. Exiting";exit 1;;
359       esac
360   ;;
361   --enable-werror) werror="yes"
362   ;;
363   --disable-werror) werror="no"
364   ;;
365   --disable-curses) curses="no"
366   ;;
367   --disable-nptl) nptl="no"
368   ;;
369   --enable-mixemu) mixemu="yes"
370   ;;
371   --disable-aio) aio="no"
372   ;;
373   --disable-blobs) blobs="no"
374   ;;
375   --kerneldir=*) kerneldir="$optarg"
376   ;;
377   *) echo "ERROR: unknown option $opt"; show_help="yes"
378   ;;
379   esac
380 done
381
382 # default flags for all hosts
383 CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
384 CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
385 LDFLAGS="$LDFLAGS -g"
386 if test "$werror" = "yes" ; then
387 CFLAGS="$CFLAGS -Werror"
388 fi
389
390 if test "$solaris" = "no" ; then
391     if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
392         LDFLAGS="$LDFLAGS -Wl,--warn-common"
393     fi
394 fi
395
396 #
397 # If cpu ~= sparc and  sparc_cpu hasn't been defined, plug in the right
398 # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
399 #
400 case "$cpu" in
401     sparc) if test -z "$sparc_cpu" ; then
402                ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
403                ARCH_LDFLAGS="-m32"
404            else
405                ARCH_CFLAGS="${SP_CFLAGS}"
406                ARCH_LDFLAGS="${SP_LDFLAGS}"
407            fi
408            ;;
409     sparc64) if test -z "$sparc_cpu" ; then
410                ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
411                ARCH_LDFLAGS="-m64"
412            else
413                ARCH_CFLAGS="${SP_CFLAGS}"
414                ARCH_LDFLAGS="${SP_LDFLAGS}"
415            fi
416            ;;
417     s390)
418            ARCH_CFLAGS="-march=z900"
419            ;;
420     i386)
421            ARCH_CFLAGS="-m32"
422            ARCH_LDFLAGS="-m32"
423            ;;
424     x86_64)
425            ARCH_CFLAGS="-m64"
426            ARCH_LDFLAGS="-m64"
427            ;;
428 esac
429
430 if test x"$show_help" = x"yes" ; then
431 cat << EOF
432
433 Usage: configure [options]
434 Options: [defaults in brackets after descriptions]
435
436 EOF
437 echo "Standard options:"
438 echo "  --help                   print this message"
439 echo "  --prefix=PREFIX          install in PREFIX [$prefix]"
440 echo "  --interp-prefix=PREFIX   where to find shared libraries, etc."
441 echo "                           use %M for cpu name [$interp_prefix]"
442 echo "  --target-list=LIST       set target list [$target_list]"
443 echo ""
444 echo "kqemu kernel acceleration support:"
445 echo "  --disable-kqemu          disable kqemu support"
446 echo ""
447 echo "Advanced options (experts only):"
448 echo "  --source-path=PATH       path of source code [$source_path]"
449 echo "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
450 echo "  --cc=CC                  use C compiler CC [$cc]"
451 echo "  --host-cc=CC             use C compiler CC [$host_cc] for dyngen etc."
452 echo "  --make=MAKE              use specified make [$make]"
453 echo "  --install=INSTALL        use specified install [$install]"
454 echo "  --static                 enable static build [$static]"
455 echo "  --enable-sparse          enable sparse checker"
456 echo "  --disable-sparse         disable sparse checker (default)"
457 echo "  --disable-werror         disable compilation abort on warning"
458 echo "  --disable-sdl            disable SDL"
459 echo "  --enable-cocoa           enable COCOA (Mac OS X only)"
460 echo "  --audio-drv-list=LIST    set audio drivers list:"
461 echo "                           Available drivers: $audio_possible_drivers"
462 echo "  --audio-card-list=LIST   set list of additional emulated audio cards"
463 echo "                           Available cards: ac97 adlib cs4231a gus"
464 echo "  --enable-mixemu          enable mixer emulation"
465 echo "  --disable-brlapi         disable BrlAPI"
466 echo "  --disable-vnc-tls        disable TLS encryption for VNC server"
467 echo "  --disable-curses         disable curses output"
468 echo "  --disable-bluez          disable bluez stack connectivity"
469 echo "  --disable-kvm            disable KVM acceleration support"
470 echo "  --disable-nptl           disable usermode NPTL support"
471 echo "  --enable-system          enable all system emulation targets"
472 echo "  --disable-system         disable all system emulation targets"
473 echo "  --enable-linux-user      enable all linux usermode emulation targets"
474 echo "  --disable-linux-user     disable all linux usermode emulation targets"
475 echo "  --enable-darwin-user     enable all darwin usermode emulation targets"
476 echo "  --disable-darwin-user    disable all darwin usermode emulation targets"
477 echo "  --enable-bsd-user        enable all BSD usermode emulation targets"
478 echo "  --disable-bsd-user       disable all BSD usermode emulation targets"
479 echo "  --fmod-lib               path to FMOD library"
480 echo "  --fmod-inc               path to FMOD includes"
481 echo "  --oss-lib                path to OSS library"
482 echo "  --enable-uname-release=R Return R for uname -r in usermode emulation"
483 echo "  --sparc_cpu=V            Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
484 echo "  --disable-vde            disable support for vde network"
485 echo "  --disable-aio            disable AIO support"
486 echo "  --disable-blobs          disable installing provided firmware blobs"
487 echo "  --kerneldir=PATH         look for kernel includes in PATH"
488 echo ""
489 echo "NOTE: The object files are built at the place where configure is launched"
490 exit 1
491 fi
492
493 cc="${cross_prefix}${cc}"
494 ar="${cross_prefix}${ar}"
495 strip="${cross_prefix}${strip}"
496
497 # check that the C compiler works.
498 cat > $TMPC <<EOF
499 int main(void) {}
500 EOF
501
502 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
503   : C compiler works ok
504 else
505     echo "ERROR: \"$cc\" either does not exist or does not work"
506     exit 1
507 fi
508
509 # check compiler to see if we're on mingw32
510 cat > $TMPC <<EOF
511 #include <windows.h>
512 #ifndef _WIN32
513 #error not windows
514 #endif
515 int main(void) {}
516 EOF
517
518 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
519     mingw32="yes"
520 fi
521
522 if test "$mingw32" = "yes" ; then
523     linux="no"
524     EXESUF=".exe"
525     oss="no"
526     linux_user="no"
527     bsd_user="no"
528 fi
529
530 if [ "$darwin" = "yes" -o "$mingw32" = "yes" ] ; then
531     AIOLIBS=
532 elif [ "$bsd" = "yes" ]; then
533     AIOLIBS="$aio_lib"
534 else
535     # Some Linux architectures (e.g. s390) don't imply -lpthread automatically.
536     AIOLIBS="-lrt -lpthread"
537 fi
538
539 if test ! -x "$(which cgcc 2>/dev/null)"; then
540     sparse="no"
541 fi
542
543 #
544 # Solaris specific configure tool chain decisions
545 #
546 if test "$solaris" = "yes" ; then
547   solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
548   if test -z "$solinst" ; then
549     echo "Solaris install program not found. Use --install=/usr/ucb/install or"
550     echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
551     echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
552     exit 1
553   fi
554   if test "$solinst" = "/usr/sbin/install" ; then
555     echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
556     echo "try ginstall from the GNU fileutils available from www.blastwave.org"
557     echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
558     exit 1
559   fi
560   sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
561   if test -z "$sol_ar" ; then
562     echo "Error: No path includes ar"
563     if test -f /usr/ccs/bin/ar ; then
564       echo "Add /usr/ccs/bin to your path and rerun configure"
565     fi
566     exit 1
567   fi
568 fi
569
570
571 if test -z "$target_list" ; then
572 # these targets are portable
573     if [ "$softmmu" = "yes" ] ; then
574         target_list="\
575 i386-softmmu \
576 x86_64-softmmu \
577 arm-softmmu \
578 cris-softmmu \
579 m68k-softmmu \
580 mips-softmmu \
581 mipsel-softmmu \
582 mips64-softmmu \
583 mips64el-softmmu \
584 ppc-softmmu \
585 ppcemb-softmmu \
586 ppc64-softmmu \
587 sh4-softmmu \
588 sh4eb-softmmu \
589 sparc-softmmu \
590 "
591     fi
592 # the following are Linux specific
593     if [ "$linux_user" = "yes" ] ; then
594         target_list="${target_list}\
595 i386-linux-user \
596 x86_64-linux-user \
597 alpha-linux-user \
598 arm-linux-user \
599 armeb-linux-user \
600 cris-linux-user \
601 m68k-linux-user \
602 mips-linux-user \
603 mipsel-linux-user \
604 ppc-linux-user \
605 ppc64-linux-user \
606 ppc64abi32-linux-user \
607 sh4-linux-user \
608 sh4eb-linux-user \
609 sparc-linux-user \
610 sparc64-linux-user \
611 sparc32plus-linux-user \
612 "
613     fi
614 # the following are Darwin specific
615     if [ "$darwin_user" = "yes" ] ; then
616         target_list="$target_list i386-darwin-user ppc-darwin-user"
617     fi
618 # the following are BSD specific
619     if [ "$bsd_user" = "yes" ] ; then
620         target_list="${target_list}\
621 sparc64-bsd-user \
622 "
623     fi
624 else
625     target_list=`echo "$target_list" | sed -e 's/,/ /g'`
626 fi
627 if test -z "$target_list" ; then
628     echo "No targets enabled"
629     exit 1
630 fi
631
632 if test -z "$cross_prefix" ; then
633
634 # ---
635 # big/little endian test
636 cat > $TMPC << EOF
637 #include <inttypes.h>
638 int main(int argc, char ** argv){
639         volatile uint32_t i=0x01234567;
640         return (*((uint8_t*)(&i))) == 0x67;
641 }
642 EOF
643
644 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
645 $TMPE && bigendian="yes"
646 else
647 echo big/little test failed
648 fi
649
650 else
651
652 # if cross compiling, cannot launch a program, so make a static guess
653 if test "$cpu" = "armv4b" \
654      -o "$cpu" = "hppa" \
655      -o "$cpu" = "m68k" \
656      -o "$cpu" = "mips" \
657      -o "$cpu" = "mips64" \
658      -o "$cpu" = "powerpc" \
659      -o "$cpu" = "s390" \
660      -o "$cpu" = "sparc" \
661      -o "$cpu" = "sparc64"; then
662     bigendian="yes"
663 fi
664
665 fi
666
667 # host long bits test
668 hostlongbits="32"
669 if test "$cpu" = "x86_64" \
670      -o "$cpu" = "alpha" \
671      -o "$cpu" = "ia64" \
672      -o "$cpu" = "sparc64"; then
673     hostlongbits="64"
674 fi
675
676 # ppc specific hostlongbits selection
677 if test "$cpu" = "powerpc" ; then
678     if $cc $ARCH_CFLAGS -dM -E - -o $TMPI 2>/dev/null </dev/null; then
679         grep -q __powerpc64__ $TMPI && hostlongbits=64
680     else
681         echo hostlongbits test failed
682         exit 1
683     fi
684 fi
685
686 # check gcc options support
687 cat > $TMPC <<EOF
688 int main(void) {
689 }
690 EOF
691
692 # Check host NPTL support
693 cat > $TMPC <<EOF
694 #include <sched.h>
695 #include <linux/futex.h>
696 void foo()
697 {
698 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
699 #error bork
700 #endif
701 }
702 EOF
703
704 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC 2> /dev/null ; then
705   :
706 else
707    nptl="no"
708 fi
709
710 ##########################################
711 # zlib check
712
713 cat > $TMPC << EOF
714 #include <zlib.h>
715 int main(void) { zlibVersion(); return 0; }
716 EOF
717 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz 2> /dev/null ; then
718     :
719 else
720     echo
721     echo "Error: zlib check failed"
722     echo "Make sure to have the zlib libs and headers installed."
723     echo
724     exit 1
725 fi
726
727 ##########################################
728 # SDL probe
729
730 sdl_too_old=no
731
732 if test -z "$sdl" ; then
733     sdl_config="sdl-config"
734     sdl=no
735     sdl_static=no
736
737 cat > $TMPC << EOF
738 #include <SDL.h>
739 #undef main /* We don't want SDL to override our main() */
740 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
741 EOF
742     if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> $TMPSDLLOG ; then
743         _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
744         if test "$_sdlversion" -lt 121 ; then
745             sdl_too_old=yes
746         else
747             if test "$cocoa" = "no" ; then
748                 sdl=yes
749             fi
750         fi
751
752         # static link with sdl ?
753         if test "$sdl" = "yes" ; then
754             aa="no"
755             `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
756             sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
757             if [ "$aa" = "yes" ] ; then
758                 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
759             fi
760
761             if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
762                 sdl_static=yes
763             fi
764         fi # static link
765     fi # sdl compile test
766 else
767     # Make sure to disable cocoa if sdl was set
768     if test "$sdl" = "yes" ; then
769        cocoa="no"
770        audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
771     fi
772 fi # -z $sdl
773
774 ##########################################
775 # VNC TLS detection
776 if test "$vnc_tls" = "yes" ; then
777 cat > $TMPC <<EOF
778 #include <gnutls/gnutls.h>
779 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
780 EOF
781     vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
782     vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
783     if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
784            $vnc_tls_libs 2> /dev/null ; then
785         :
786     else
787         vnc_tls="no"
788     fi
789 fi
790
791 ##########################################
792 # vde libraries probe
793 if test "$vde" = "yes" ; then
794   cat > $TMPC << EOF
795 #include <libvdeplug.h>
796 int main(void)
797 {
798     struct vde_open_args a = {0, 0, 0};
799     vde_open("", "", &a);
800     return 0;
801 }
802 EOF
803     if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug 2> /dev/null ; then
804         :
805     else
806         vde="no"
807     fi
808 fi
809
810 ##########################################
811 # Sound support libraries probe
812
813 audio_drv_probe()
814 {
815     drv=$1
816     hdr=$2
817     lib=$3
818     exp=$4
819     cfl=$5
820         cat > $TMPC << EOF
821 #include <$hdr>
822 int main(void) { $exp }
823 EOF
824     if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib 2> /dev/null ; then
825         :
826     else
827         echo
828         echo "Error: $drv check failed"
829         echo "Make sure to have the $drv libs and headers installed."
830         echo
831         exit 1
832     fi
833 }
834
835 audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
836 for drv in $audio_drv_list; do
837     case $drv in
838     alsa)
839     audio_drv_probe $drv alsa/asoundlib.h -lasound \
840         "snd_pcm_t **handle; return snd_pcm_close(*handle);"
841     ;;
842
843     fmod)
844     if test -z $fmod_lib || test -z $fmod_inc; then
845         echo
846         echo "Error: You must specify path to FMOD library and headers"
847         echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
848         echo
849         exit 1
850     fi
851     audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
852     ;;
853
854     esd)
855     audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
856     ;;
857
858     pa)
859     audio_drv_probe $drv pulse/simple.h -lpulse-simple \
860         "pa_simple *s = NULL; pa_simple_free(s); return 0;"
861     ;;
862
863     oss|sdl|core|wav|dsound)
864     # XXX: Probes for CoreAudio, DirectSound, SDL(?)
865     ;;
866
867     *)
868     echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
869         echo
870         echo "Error: Unknown driver '$drv' selected"
871         echo "Possible drivers are: $audio_possible_drivers"
872         echo
873         exit 1
874     }
875     ;;
876     esac
877 done
878
879 ##########################################
880 # BrlAPI probe
881
882 if test -z "$brlapi" ; then
883     brlapi=no
884 cat > $TMPC << EOF
885 #include <brlapi.h>
886 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
887 EOF
888     if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
889             brlapi=yes
890     fi # brlapi compile test
891 fi # -z $brlapi
892
893 ##########################################
894 # curses probe
895
896 if test "$curses" = "yes" ; then
897   curses=no
898   cat > $TMPC << EOF
899 #include <curses.h>
900 int main(void) { return curses_version(); }
901 EOF
902   if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
903     curses=yes
904   fi
905 fi # test "$curses"
906
907 ##########################################
908 # bluez support probe
909 if test "$bluez" = "yes" ; then
910   `pkg-config bluez` || bluez="no"
911 fi
912 if test "$bluez" = "yes" ; then
913   cat > $TMPC << EOF
914 #include <bluetooth/bluetooth.h>
915 int main(void) { return bt_error(0); }
916 EOF
917   bluez_cflags=`pkg-config --cflags bluez`
918   bluez_libs=`pkg-config --libs bluez`
919   if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
920       $bluez_libs 2> /dev/null ; then
921     :
922   else
923     bluez="no"
924   fi
925 fi
926
927 ##########################################
928 # kvm probe
929 if test "$kvm" = "yes" ; then
930     cat > $TMPC <<EOF
931 #include <linux/kvm.h>
932 #if !defined(KVM_API_VERSION) || \
933     KVM_API_VERSION < 12 || \
934     KVM_API_VERSION > 12 || \
935     !defined(KVM_CAP_USER_MEMORY) || \
936     !defined(KVM_CAP_SET_TSS_ADDR) || \
937     !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
938 #error Invalid KVM version
939 #endif
940 int main(void) { return 0; }
941 EOF
942   if test "$kerneldir" != "" ; then
943       kvm_cflags=-I"$kerneldir"/include
944   else
945       kvm_cflags=""
946   fi
947   if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
948       2>/dev/null ; then
949     :
950   else
951     kvm="no"
952   fi
953 fi
954
955 ##########################################
956 # AIO probe
957 if test "$aio" = "yes" ; then
958   aio=no
959   cat > $TMPC << EOF
960 #include <aio.h>
961 int main(void) { return aio_write(NULL); }
962 EOF
963   if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
964     aio=yes
965   fi
966 fi
967
968 ##########################################
969 # iovec probe
970 cat > $TMPC <<EOF
971 #include <sys/uio.h>
972 int main(void) { struct iovec iov; return 0; }
973 EOF
974 iovec=no
975 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
976   iovec=yes
977 fi
978
979 # Check if tools are available to build documentation.
980 if [ -x "`which texi2html 2>/dev/null`" ] && \
981    [ -x "`which pod2man 2>/dev/null`" ]; then
982   build_docs="yes"
983 fi
984
985 if test "$mingw32" = "yes" ; then
986   if test -z "$prefix" ; then
987       prefix="c:\\\\Program Files\\\\Qemu"
988   fi
989   mansuffix=""
990   datasuffix=""
991   docsuffix=""
992   binsuffix=""
993 else
994   if test -z "$prefix" ; then
995       prefix="/usr/local"
996   fi
997   mansuffix="/share/man"
998   datasuffix="/share/qemu"
999   docsuffix="/share/doc/qemu"
1000   binsuffix="/bin"
1001 fi
1002
1003 echo "Install prefix    $prefix"
1004 echo "BIOS directory    $prefix$datasuffix"
1005 echo "binary directory  $prefix$binsuffix"
1006 if test "$mingw32" = "no" ; then
1007 echo "Manual directory  $prefix$mansuffix"
1008 echo "ELF interp prefix $interp_prefix"
1009 fi
1010 echo "Source path       $source_path"
1011 echo "C compiler        $cc"
1012 echo "Host C compiler   $host_cc"
1013 echo "ARCH_CFLAGS       $ARCH_CFLAGS"
1014 echo "make              $make"
1015 echo "install           $install"
1016 echo "host CPU          $cpu"
1017 echo "host big endian   $bigendian"
1018 echo "target list       $target_list"
1019 echo "gprof enabled     $gprof"
1020 echo "sparse enabled    $sparse"
1021 echo "profiler          $profiler"
1022 echo "static build      $static"
1023 echo "-Werror enabled   $werror"
1024 if test "$darwin" = "yes" ; then
1025     echo "Cocoa support     $cocoa"
1026 fi
1027 echo "SDL support       $sdl"
1028 if test "$sdl" != "no" ; then
1029     echo "SDL static link   $sdl_static"
1030 fi
1031 echo "curses support    $curses"
1032 echo "mingw32 support   $mingw32"
1033 echo "Audio drivers     $audio_drv_list"
1034 echo "Extra audio cards $audio_card_list"
1035 echo "Mixer emulation   $mixemu"
1036 echo "VNC TLS support   $vnc_tls"
1037 if test "$vnc_tls" = "yes" ; then
1038     echo "    TLS CFLAGS    $vnc_tls_cflags"
1039     echo "    TLS LIBS      $vnc_tls_libs"
1040 fi
1041 if test -n "$sparc_cpu"; then
1042     echo "Target Sparc Arch $sparc_cpu"
1043 fi
1044 echo "kqemu support     $kqemu"
1045 echo "brlapi support    $brlapi"
1046 echo "Documentation     $build_docs"
1047 [ ! -z "$uname_release" ] && \
1048 echo "uname -r          $uname_release"
1049 echo "NPTL support      $nptl"
1050 echo "vde support       $vde"
1051 echo "AIO support       $aio"
1052 echo "Install blobs     $blobs"
1053 echo "KVM support       $kvm"
1054
1055 if test $sdl_too_old = "yes"; then
1056 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1057 fi
1058 if [ -s $TMPSDLLOG ]; then
1059   echo "The error log from compiling the libSDL test is: "
1060   cat $TMPSDLLOG
1061 fi
1062 #if test "$sdl_static" = "no"; then
1063 #  echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1064 #fi
1065 config_mak="config-host.mak"
1066 config_h="config-host.h"
1067
1068 #echo "Creating $config_mak and $config_h"
1069
1070 test -f $config_h && mv $config_h ${config_h}~
1071
1072 echo "# Automatically generated by configure - do not modify" > $config_mak
1073 echo -n "# Configured with:" >> $config_mak
1074 printf " '%s'" "$0" "$@" >> $config_mak
1075 echo >> $config_mak
1076 echo "/* Automatically generated by configure - do not modify */" > $config_h
1077
1078 echo "prefix=$prefix" >> $config_mak
1079 echo "bindir=\${prefix}$binsuffix" >> $config_mak
1080 echo "mandir=\${prefix}$mansuffix" >> $config_mak
1081 echo "datadir=\${prefix}$datasuffix" >> $config_mak
1082 echo "docdir=\${prefix}$docsuffix" >> $config_mak
1083 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1084 echo "MAKE=$make" >> $config_mak
1085 echo "INSTALL=$install" >> $config_mak
1086 echo "CC=$cc" >> $config_mak
1087 echo "HOST_CC=$host_cc" >> $config_mak
1088 echo "AR=$ar" >> $config_mak
1089 echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
1090 # XXX: only use CFLAGS and LDFLAGS ?  
1091 # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1092 # compilation of dyngen tool (useful for win32 build on Linux host)
1093 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1094 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1095 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1096 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1097 echo "CFLAGS=$CFLAGS" >> $config_mak
1098 echo "LDFLAGS=$LDFLAGS" >> $config_mak
1099 echo "EXESUF=$EXESUF" >> $config_mak
1100 echo "AIOLIBS=$AIOLIBS" >> $config_mak
1101 case "$cpu" in
1102   i386)
1103     echo "ARCH=i386" >> $config_mak
1104     echo "#define HOST_I386 1" >> $config_h
1105   ;;
1106   x86_64)
1107     echo "ARCH=x86_64" >> $config_mak
1108     echo "#define HOST_X86_64 1" >> $config_h
1109   ;;
1110   alpha)
1111     echo "ARCH=alpha" >> $config_mak
1112     echo "#define HOST_ALPHA 1" >> $config_h
1113   ;;
1114   armv4b)
1115     echo "ARCH=arm" >> $config_mak
1116     echo "#define HOST_ARM 1" >> $config_h
1117   ;;
1118   armv4l)
1119     echo "ARCH=arm" >> $config_mak
1120     echo "#define HOST_ARM 1" >> $config_h
1121   ;;
1122   cris)
1123     echo "ARCH=cris" >> $config_mak
1124     echo "#define HOST_CRIS 1" >> $config_h
1125   ;;
1126   hppa)
1127     echo "ARCH=hppa" >> $config_mak
1128     echo "#define HOST_HPPA 1" >> $config_h
1129   ;;
1130   ia64)
1131     echo "ARCH=ia64" >> $config_mak
1132     echo "#define HOST_IA64 1" >> $config_h
1133   ;;
1134   m68k)
1135     echo "ARCH=m68k" >> $config_mak
1136     echo "#define HOST_M68K 1" >> $config_h
1137   ;;
1138   mips)
1139     echo "ARCH=mips" >> $config_mak
1140     echo "#define HOST_MIPS 1" >> $config_h
1141   ;;
1142   mips64)
1143     echo "ARCH=mips64" >> $config_mak
1144     echo "#define HOST_MIPS64 1" >> $config_h
1145   ;;
1146   powerpc)
1147   if test "$hostlongbits" = "32"; then
1148       echo "ARCH=ppc" >> $config_mak
1149       echo "#define HOST_PPC 1" >> $config_h
1150   else
1151       echo "ARCH=ppc64" >> $config_mak
1152       echo "#define HOST_PPC64 1" >> $config_h
1153   fi
1154   ;;
1155   s390)
1156     echo "ARCH=s390" >> $config_mak
1157     echo "#define HOST_S390 1" >> $config_h
1158   ;;
1159   sparc)
1160     echo "ARCH=sparc" >> $config_mak
1161     echo "#define HOST_SPARC 1" >> $config_h
1162   ;;
1163   sparc64)
1164     echo "ARCH=sparc64" >> $config_mak
1165     echo "#define HOST_SPARC64 1" >> $config_h
1166   ;;
1167   *)
1168     echo "Unsupported CPU = $cpu"
1169     exit 1
1170   ;;
1171 esac
1172 if test "$sparse" = "yes" ; then
1173   echo "CC      := REAL_CC=\"\$(CC)\" cgcc"       >> $config_mak
1174   echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_mak
1175   echo "CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1176 fi
1177 if test "$bigendian" = "yes" ; then
1178   echo "WORDS_BIGENDIAN=yes" >> $config_mak
1179   echo "#define WORDS_BIGENDIAN 1" >> $config_h
1180 fi
1181 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1182 if test "$mingw32" = "yes" ; then
1183   echo "CONFIG_WIN32=yes" >> $config_mak
1184   echo "#define CONFIG_WIN32 1" >> $config_h
1185 else
1186   cat > $TMPC << EOF
1187 #include <byteswap.h>
1188 int main(void) { return bswap_32(0); }
1189 EOF
1190   if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1191     echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1192   fi
1193   cat > $TMPC << EOF
1194 #include <sys/endian.h>
1195 #include <sys/types.h>
1196 #include <machine/bswap.h>
1197 int main(void) { return bswap32(0); }
1198 EOF
1199   if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1200     echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1201   fi
1202 fi
1203
1204 if [ "$openbsd" = "yes" ] ; then
1205   echo "#define ENOTSUP 4096" >> $config_h
1206 fi
1207
1208 if test "$darwin" = "yes" ; then
1209   echo "CONFIG_DARWIN=yes" >> $config_mak
1210   echo "#define CONFIG_DARWIN 1" >> $config_h
1211 fi
1212
1213 if test "$aix" = "yes" ; then
1214   echo "CONFIG_AIX=yes" >> $config_mak
1215   echo "#define CONFIG_AIX 1" >> $config_h
1216 fi
1217
1218 if test "$solaris" = "yes" ; then
1219   echo "CONFIG_SOLARIS=yes" >> $config_mak
1220   echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1221   if test "$needs_libsunmath" = "yes" ; then
1222     echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1223     echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1224   fi
1225 fi
1226 if test -n "$sparc_cpu"; then
1227   echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1228   echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1229 fi
1230 if test "$gdbstub" = "yes" ; then
1231   echo "CONFIG_GDBSTUB=yes" >> $config_mak
1232   echo "#define CONFIG_GDBSTUB 1" >> $config_h
1233 fi
1234 if test "$gprof" = "yes" ; then
1235   echo "TARGET_GPROF=yes" >> $config_mak
1236   echo "#define HAVE_GPROF 1" >> $config_h
1237 fi
1238 if test "$static" = "yes" ; then
1239   echo "CONFIG_STATIC=yes" >> $config_mak
1240   echo "#define CONFIG_STATIC 1" >> $config_h
1241 fi
1242 if test $profiler = "yes" ; then
1243   echo "#define CONFIG_PROFILER 1" >> $config_h
1244 fi
1245 if test "$slirp" = "yes" ; then
1246   echo "CONFIG_SLIRP=yes" >> $config_mak
1247   echo "#define CONFIG_SLIRP 1" >> $config_h
1248 fi
1249 if test "$vde" = "yes" ; then
1250   echo "CONFIG_VDE=yes" >> $config_mak
1251   echo "#define CONFIG_VDE 1" >> $config_h
1252   echo "VDE_LIBS=-lvdeplug" >> $config_mak
1253 fi
1254 for card in $audio_card_list; do
1255     def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
1256     echo "$def=yes" >> $config_mak
1257     echo "#define $def 1" >> $config_h
1258 done
1259 echo "#define AUDIO_DRIVERS \\" >> $config_h
1260 for drv in $audio_drv_list; do
1261     echo "    &${drv}_audio_driver, \\" >>$config_h
1262     def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
1263     echo "$def=yes" >> $config_mak
1264     if test "$drv" = "fmod"; then
1265         echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1266         echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1267     elif test "$drv" = "oss"; then
1268         echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1269     fi
1270 done
1271 echo "" >>$config_h
1272 if test "$mixemu" = "yes" ; then
1273   echo "CONFIG_MIXEMU=yes" >> $config_mak
1274   echo "#define CONFIG_MIXEMU 1" >> $config_h
1275 fi
1276 if test "$vnc_tls" = "yes" ; then
1277   echo "CONFIG_VNC_TLS=yes" >> $config_mak
1278   echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1279   echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1280   echo "#define CONFIG_VNC_TLS 1" >> $config_h
1281 fi
1282 qemu_version=`head $source_path/VERSION`
1283 echo "VERSION=$qemu_version" >>$config_mak
1284 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1285
1286 echo "SRC_PATH=$source_path" >> $config_mak
1287 if [ "$source_path_used" = "yes" ]; then
1288   echo "VPATH=$source_path" >> $config_mak
1289 fi
1290 echo "TARGET_DIRS=$target_list" >> $config_mak
1291 if [ "$build_docs" = "yes" ] ; then
1292   echo "BUILD_DOCS=yes" >> $config_mak
1293 fi
1294 if test "$static" = "yes"; then
1295   sdl1=$sdl_static
1296 else
1297   sdl1=$sdl
1298 fi
1299 if test "$sdl1" = "yes" ; then
1300   echo "#define CONFIG_SDL 1" >> $config_h
1301   echo "CONFIG_SDL=yes" >> $config_mak
1302   if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1303     echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1304   else
1305     echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1306   fi
1307   if [ "${aa}" = "yes" ] ; then
1308     echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1309   else
1310     echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1311   fi
1312 fi
1313 if test "$cocoa" = "yes" ; then
1314   echo "#define CONFIG_COCOA 1" >> $config_h
1315   echo "CONFIG_COCOA=yes" >> $config_mak
1316 fi
1317 if test "$curses" = "yes" ; then
1318   echo "#define CONFIG_CURSES 1" >> $config_h
1319   echo "CONFIG_CURSES=yes" >> $config_mak
1320   echo "CURSES_LIBS=-lcurses" >> $config_mak
1321 fi
1322 if test "$brlapi" = "yes" ; then
1323   echo "CONFIG_BRLAPI=yes" >> $config_mak
1324   echo "#define CONFIG_BRLAPI 1" >> $config_h
1325   echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1326 fi
1327 if test "$bluez" = "yes" ; then
1328   echo "CONFIG_BLUEZ=yes" >> $config_mak
1329   echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1330   echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1331   echo "#define CONFIG_BLUEZ 1" >> $config_h
1332 fi
1333 if test "$aio" = "yes" ; then
1334   echo "#define CONFIG_AIO 1" >> $config_h
1335   echo "CONFIG_AIO=yes" >> $config_mak
1336 fi
1337 if test "$blobs" = "yes" ; then
1338   echo "INSTALL_BLOBS=yes" >> $config_mak
1339 fi
1340 if test "$iovec" = "yes" ; then
1341   echo "#define HAVE_IOVEC 1" >> $config_h
1342 fi
1343
1344 # XXX: suppress that
1345 if [ "$bsd" = "yes" ] ; then
1346   echo "#define O_LARGEFILE 0" >> $config_h
1347   echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1348   echo "#define _BSD 1" >> $config_h
1349 fi
1350
1351 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1352
1353 # USB host support
1354 case "$usb" in
1355 linux)
1356   echo "HOST_USB=linux" >> $config_mak
1357 ;;
1358 bsd)
1359   echo "HOST_USB=bsd" >> $config_mak
1360 ;;
1361 *)
1362   echo "HOST_USB=stub" >> $config_mak
1363 ;;
1364 esac
1365
1366 tools=
1367 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1368   tools="qemu-img\$(EXESUF) $tools"
1369   if [ "$linux" = "yes" ] ; then
1370       tools="qemu-nbd\$(EXESUF) $tools"
1371   fi
1372 fi
1373 echo "TOOLS=$tools" >> $config_mak
1374
1375 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1376
1377 for target in $target_list; do
1378 target_dir="$target"
1379 config_mak=$target_dir/config.mak
1380 config_h=$target_dir/config.h
1381 target_cpu=`echo $target | cut -d '-' -f 1`
1382 target_bigendian="no"
1383 [ "$target_cpu" = "armeb" ] && target_bigendian=yes
1384 [ "$target_cpu" = "m68k" ] && target_bigendian=yes
1385 [ "$target_cpu" = "mips" ] && target_bigendian=yes
1386 [ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1387 [ "$target_cpu" = "mips64" ] && target_bigendian=yes
1388 [ "$target_cpu" = "ppc" ] && target_bigendian=yes
1389 [ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
1390 [ "$target_cpu" = "ppc64" ] && target_bigendian=yes
1391 [ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
1392 [ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
1393 [ "$target_cpu" = "sparc" ] && target_bigendian=yes
1394 [ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1395 [ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
1396 target_softmmu="no"
1397 target_user_only="no"
1398 target_linux_user="no"
1399 target_darwin_user="no"
1400 target_bsd_user="no"
1401 case "$target" in
1402   ${target_cpu}-softmmu)
1403     target_softmmu="yes"
1404     ;;
1405   ${target_cpu}-linux-user)
1406     target_user_only="yes"
1407     target_linux_user="yes"
1408     ;;
1409   ${target_cpu}-darwin-user)
1410     target_user_only="yes"
1411     target_darwin_user="yes"
1412     ;;
1413   ${target_cpu}-bsd-user)
1414     target_user_only="yes"
1415     target_bsd_user="yes"
1416     ;;
1417   *)
1418     echo "ERROR: Target '$target' not recognised"
1419     exit 1
1420     ;;
1421 esac
1422
1423 if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1424         -a "$sdl" = "no" -a "$cocoa" = "no" ; then
1425     echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
1426     echo "To build QEMU without graphical output configure with --disable-gfx-check"
1427     echo "Note that this will disable all output from the virtual graphics card"
1428     echo "except through VNC or curses."
1429     exit 1;
1430 fi
1431
1432 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1433
1434 test -f $config_h && mv $config_h ${config_h}~
1435
1436 mkdir -p $target_dir
1437 mkdir -p $target_dir/fpu
1438 mkdir -p $target_dir/tcg
1439 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1440   mkdir -p $target_dir/nwfpe
1441 fi
1442
1443 #
1444 # don't use ln -sf as not all "ln -sf" over write the file/link
1445 #
1446 rm -f $target_dir/Makefile
1447 ln -s $source_path/Makefile.target $target_dir/Makefile
1448
1449
1450 echo "# Automatically generated by configure - do not modify" > $config_mak
1451 echo "/* Automatically generated by configure - do not modify */" > $config_h
1452
1453
1454 echo "include ../config-host.mak" >> $config_mak
1455 echo "#include \"../config-host.h\"" >> $config_h
1456
1457 bflt="no"
1458 elfload32="no"
1459 target_nptl="no"
1460 interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1461 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1462 gdb_xml_files=""
1463
1464 # Make sure the target and host cpus are compatible
1465 if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
1466   \( "$target_cpu" = "x86_64" -a "$cpu" = "i386"   \) -o \
1467   \( "$target_cpu" = "i386"   -a "$cpu" = "x86_64" \) \) ; then
1468   kvm="no"
1469 fi
1470 # Disable KVM for linux-user
1471 if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1472   kvm="no"
1473 fi
1474
1475 case "$target_cpu" in
1476   i386)
1477     echo "TARGET_ARCH=i386" >> $config_mak
1478     echo "#define TARGET_ARCH \"i386\"" >> $config_h
1479     echo "#define TARGET_I386 1" >> $config_h
1480     if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1481     then
1482       echo "#define USE_KQEMU 1" >> $config_h
1483     fi
1484     if test "$kvm" = "yes" ; then
1485       echo "CONFIG_KVM=yes" >> $config_mak
1486       echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1487       echo "#define CONFIG_KVM 1" >> $config_h
1488     fi
1489   ;;
1490   x86_64)
1491     echo "TARGET_ARCH=x86_64" >> $config_mak
1492     echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1493     echo "#define TARGET_I386 1" >> $config_h
1494     echo "#define TARGET_X86_64 1" >> $config_h
1495     if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1496     then
1497       echo "#define USE_KQEMU 1" >> $config_h
1498     fi
1499     if test "$kvm" = "yes" ; then
1500       echo "CONFIG_KVM=yes" >> $config_mak
1501       echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1502       echo "#define CONFIG_KVM 1" >> $config_h
1503     fi
1504   ;;
1505   alpha)
1506     echo "TARGET_ARCH=alpha" >> $config_mak
1507     echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1508     echo "#define TARGET_ALPHA 1" >> $config_h
1509   ;;
1510   arm|armeb)
1511     echo "TARGET_ARCH=arm" >> $config_mak
1512     echo "#define TARGET_ARCH \"arm\"" >> $config_h
1513     echo "#define TARGET_ARM 1" >> $config_h
1514     bflt="yes"
1515     target_nptl="yes"
1516     gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1517   ;;
1518   cris)
1519     echo "TARGET_ARCH=cris" >> $config_mak
1520     echo "#define TARGET_ARCH \"cris\"" >> $config_h
1521     echo "#define TARGET_CRIS 1" >> $config_h
1522   ;;
1523   m68k)
1524     echo "TARGET_ARCH=m68k" >> $config_mak
1525     echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1526     echo "#define TARGET_M68K 1" >> $config_h
1527     bflt="yes"
1528     gdb_xml_files="cf-core.xml cf-fp.xml"
1529   ;;
1530   mips|mipsel)
1531     echo "TARGET_ARCH=mips" >> $config_mak
1532     echo "#define TARGET_ARCH \"mips\"" >> $config_h
1533     echo "#define TARGET_MIPS 1" >> $config_h
1534     echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1535   ;;
1536   mipsn32|mipsn32el)
1537     echo "TARGET_ARCH=mipsn32" >> $config_mak
1538     echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1539     echo "#define TARGET_MIPS 1" >> $config_h
1540     echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1541   ;;
1542   mips64|mips64el)
1543     echo "TARGET_ARCH=mips64" >> $config_mak
1544     echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1545     echo "#define TARGET_MIPS 1" >> $config_h
1546     echo "#define TARGET_MIPS64 1" >> $config_h
1547     echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1548   ;;
1549   ppc)
1550     echo "TARGET_ARCH=ppc" >> $config_mak
1551     echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1552     echo "#define TARGET_PPC 1" >> $config_h
1553   ;;
1554   ppcemb)
1555     echo "TARGET_ARCH=ppcemb" >> $config_mak
1556     echo "TARGET_ABI_DIR=ppc" >> $config_mak
1557     echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1558     echo "#define TARGET_PPC 1" >> $config_h
1559     echo "#define TARGET_PPCEMB 1" >> $config_h
1560   ;;
1561   ppc64)
1562     echo "TARGET_ARCH=ppc64" >> $config_mak
1563     echo "TARGET_ABI_DIR=ppc" >> $config_mak
1564     echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1565     echo "#define TARGET_PPC 1" >> $config_h
1566     echo "#define TARGET_PPC64 1" >> $config_h
1567   ;;
1568   ppc64abi32)
1569     echo "TARGET_ARCH=ppc64" >> $config_mak
1570     echo "TARGET_ABI_DIR=ppc" >> $config_mak
1571     echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1572     echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1573     echo "#define TARGET_PPC 1" >> $config_h
1574     echo "#define TARGET_PPC64 1" >> $config_h
1575     echo "#define TARGET_ABI32 1" >> $config_h
1576   ;;
1577   sh4|sh4eb)
1578     echo "TARGET_ARCH=sh4" >> $config_mak
1579     echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1580     echo "#define TARGET_SH4 1" >> $config_h
1581     bflt="yes"
1582     target_nptl="yes"
1583   ;;
1584   sparc)
1585     echo "TARGET_ARCH=sparc" >> $config_mak
1586     echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1587     echo "#define TARGET_SPARC 1" >> $config_h
1588   ;;
1589   sparc64)
1590     echo "TARGET_ARCH=sparc64" >> $config_mak
1591     echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1592     echo "#define TARGET_SPARC 1" >> $config_h
1593     echo "#define TARGET_SPARC64 1" >> $config_h
1594     elfload32="yes"
1595   ;;
1596   sparc32plus)
1597     echo "TARGET_ARCH=sparc64" >> $config_mak
1598     echo "TARGET_ABI_DIR=sparc" >> $config_mak
1599     echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1600     echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1601     echo "#define TARGET_SPARC 1" >> $config_h
1602     echo "#define TARGET_SPARC64 1" >> $config_h
1603     echo "#define TARGET_ABI32 1" >> $config_h
1604   ;;
1605   *)
1606     echo "Unsupported target CPU"
1607     exit 1
1608   ;;
1609 esac
1610 if test "$target_bigendian" = "yes" ; then
1611   echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1612   echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1613 fi
1614 if test "$target_softmmu" = "yes" ; then
1615   echo "CONFIG_SOFTMMU=yes" >> $config_mak
1616   echo "#define CONFIG_SOFTMMU 1" >> $config_h
1617 fi
1618 if test "$target_user_only" = "yes" ; then
1619   echo "CONFIG_USER_ONLY=yes" >> $config_mak
1620   echo "#define CONFIG_USER_ONLY 1" >> $config_h
1621 fi
1622 if test "$target_linux_user" = "yes" ; then
1623   echo "CONFIG_LINUX_USER=yes" >> $config_mak
1624   echo "#define CONFIG_LINUX_USER 1" >> $config_h
1625 fi
1626 if test "$target_darwin_user" = "yes" ; then
1627   echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1628   echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1629 fi
1630 list=""
1631 if test ! -z "$gdb_xml_files" ; then
1632   for x in $gdb_xml_files; do
1633     list="$list $source_path/gdb-xml/$x"
1634   done
1635 fi
1636 echo "TARGET_XML_FILES=$list" >> $config_mak
1637
1638 if test "$target_cpu" = "arm" \
1639      -o "$target_cpu" = "armeb" \
1640      -o "$target_cpu" = "m68k" \
1641      -o "$target_cpu" = "mips" \
1642      -o "$target_cpu" = "mipsel" \
1643      -o "$target_cpu" = "mipsn32" \
1644      -o "$target_cpu" = "mipsn32el" \
1645      -o "$target_cpu" = "mips64" \
1646      -o "$target_cpu" = "mips64el" \
1647      -o "$target_cpu" = "sparc" \
1648      -o "$target_cpu" = "sparc64" \
1649      -o "$target_cpu" = "sparc32plus"; then
1650   echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1651   echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1652 fi
1653 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1654   echo "TARGET_HAS_BFLT=yes" >> $config_mak
1655   echo "#define TARGET_HAS_BFLT 1" >> $config_h
1656 fi
1657 if test "$target_user_only" = "yes" \
1658         -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1659   echo "#define USE_NPTL 1" >> $config_h
1660 fi
1661 # 32 bit ELF loader in addition to native 64 bit loader?
1662 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1663   echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1664   echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1665 fi
1666 if test "$target_bsd_user" = "yes" ; then
1667   echo "CONFIG_BSD_USER=yes" >> $config_mak
1668   echo "#define CONFIG_BSD_USER 1" >> $config_h
1669 fi
1670
1671 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1672
1673 done # for target in $targets
1674
1675 # build tree in object directory if source path is different from current one
1676 if test "$source_path_used" = "yes" ; then
1677     DIRS="tests tests/cris slirp audio"
1678     FILES="Makefile tests/Makefile"
1679     FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
1680     FILES="$FILES tests/test-mmap.c"
1681     for dir in $DIRS ; do
1682             mkdir -p $dir
1683     done
1684     # remove the link and recreate it, as not all "ln -sf" overwrite the link
1685     for f in $FILES ; do
1686         rm -f $f
1687         ln -s $source_path/$f $f
1688     done
1689 fi