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