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