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