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