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