Revived GUEST_BASE support for usermode emulation targets.
[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 bsd="no"
168 linux="no"
169 solaris="no"
170 kqemu="no"
171 profiler="no"
172 cocoa="no"
173 check_gfx="yes"
174 softmmu="yes"
175 linux_user="no"
176 darwin_user="no"
177 bsd_user="no"
178 guest_base="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-slirp) slirp="no"
393   ;;
394   --disable-vde) vde="no"
395   ;;
396   --disable-kqemu) kqemu="no"
397   ;;
398   --disable-brlapi) brlapi="no"
399   ;;
400   --disable-bluez) bluez="no"
401   ;;
402   --disable-kvm) kvm="no"
403   ;;
404   --enable-profiler) profiler="yes"
405   ;;
406   --enable-cocoa)
407       cocoa="yes" ;
408       sdl="no" ;
409       audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
410   ;;
411   --disable-gfx-check) check_gfx="no"
412   ;;
413   --disable-system) softmmu="no"
414   ;;
415   --enable-system) softmmu="yes"
416   ;;
417   --disable-linux-user) linux_user="no"
418   ;;
419   --enable-linux-user) linux_user="yes"
420   ;;
421   --disable-darwin-user) darwin_user="no"
422   ;;
423   --enable-darwin-user) darwin_user="yes"
424   ;;
425   --disable-bsd-user) bsd_user="no"
426   ;;
427   --enable-bsd-user) bsd_user="yes"
428   ;;
429   --enable-guest-base) guest_base="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-curses         disable curses output"
552 echo "  --disable-bluez          disable bluez stack connectivity"
553 echo "  --disable-kvm            disable KVM acceleration support"
554 echo "  --disable-nptl           disable usermode NPTL support"
555 echo "  --enable-system          enable all system emulation targets"
556 echo "  --disable-system         disable all system emulation targets"
557 echo "  --enable-linux-user      enable all linux usermode emulation targets"
558 echo "  --disable-linux-user     disable all linux usermode emulation targets"
559 echo "  --enable-darwin-user     enable all darwin usermode emulation targets"
560 echo "  --disable-darwin-user    disable all darwin usermode emulation targets"
561 echo "  --enable-bsd-user        enable all BSD usermode emulation targets"
562 echo "  --disable-bsd-user       disable all BSD usermode emulation targets"
563 echo "  --enable-guest-base      enable GUEST_BASE support for usermode"
564 echo "                           emulation targets"
565 echo "  --fmod-lib               path to FMOD library"
566 echo "  --fmod-inc               path to FMOD includes"
567 echo "  --oss-lib                path to OSS library"
568 echo "  --enable-uname-release=R Return R for uname -r in usermode emulation"
569 echo "  --sparc_cpu=V            Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
570 echo "  --disable-vde            disable support for vde network"
571 echo "  --disable-aio            disable AIO support"
572 echo "  --disable-blobs          disable installing provided firmware blobs"
573 echo "  --kerneldir=PATH         look for kernel includes in PATH"
574 echo ""
575 echo "NOTE: The object files are built at the place where configure is launched"
576 exit 1
577 fi
578
579 if test "$mingw32" = "yes" ; then
580     linux="no"
581     EXESUF=".exe"
582     oss="no"
583     linux_user="no"
584     bsd_user="no"
585 fi
586
587 if test ! -x "$(which cgcc 2>/dev/null)"; then
588     sparse="no"
589 fi
590
591 #
592 # Solaris specific configure tool chain decisions
593 #
594 if test "$solaris" = "yes" ; then
595   solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
596   if test -z "$solinst" ; then
597     echo "Solaris install program not found. Use --install=/usr/ucb/install or"
598     echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
599     echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
600     exit 1
601   fi
602   if test "$solinst" = "/usr/sbin/install" ; then
603     echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
604     echo "try ginstall from the GNU fileutils available from www.blastwave.org"
605     echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
606     exit 1
607   fi
608   sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
609   if test -z "$sol_ar" ; then
610     echo "Error: No path includes ar"
611     if test -f /usr/ccs/bin/ar ; then
612       echo "Add /usr/ccs/bin to your path and rerun configure"
613     fi
614     exit 1
615   fi
616 fi
617
618
619 if test -z "$target_list" ; then
620 # these targets are portable
621     if [ "$softmmu" = "yes" ] ; then
622         target_list="\
623 i386-softmmu \
624 x86_64-softmmu \
625 arm-softmmu \
626 cris-softmmu \
627 m68k-softmmu \
628 mips-softmmu \
629 mipsel-softmmu \
630 mips64-softmmu \
631 mips64el-softmmu \
632 ppc-softmmu \
633 ppcemb-softmmu \
634 ppc64-softmmu \
635 sh4-softmmu \
636 sh4eb-softmmu \
637 sparc-softmmu \
638 "
639     fi
640 # the following are Linux specific
641     if [ "$linux_user" = "yes" ] ; then
642         target_list="${target_list}\
643 i386-linux-user \
644 x86_64-linux-user \
645 alpha-linux-user \
646 arm-linux-user \
647 armeb-linux-user \
648 cris-linux-user \
649 m68k-linux-user \
650 mips-linux-user \
651 mipsel-linux-user \
652 ppc-linux-user \
653 ppc64-linux-user \
654 ppc64abi32-linux-user \
655 sh4-linux-user \
656 sh4eb-linux-user \
657 sparc-linux-user \
658 sparc64-linux-user \
659 sparc32plus-linux-user \
660 "
661     fi
662 # the following are Darwin specific
663     if [ "$darwin_user" = "yes" ] ; then
664         target_list="$target_list i386-darwin-user ppc-darwin-user "
665     fi
666 # the following are BSD specific
667     if [ "$bsd_user" = "yes" ] ; then
668         target_list="${target_list}\
669 sparc64-bsd-user \
670 "
671     fi
672 else
673     target_list=`echo "$target_list" | sed -e 's/,/ /g'`
674 fi
675 if test -z "$target_list" ; then
676     echo "No targets enabled"
677     exit 1
678 fi
679
680 if test -z "$cross_prefix" ; then
681
682 # ---
683 # big/little endian test
684 cat > $TMPC << EOF
685 #include <inttypes.h>
686 int main(int argc, char ** argv){
687         volatile uint32_t i=0x01234567;
688         return (*((uint8_t*)(&i))) == 0x67;
689 }
690 EOF
691
692 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
693 $TMPE && bigendian="yes"
694 else
695 echo big/little test failed
696 fi
697
698 else
699
700 # if cross compiling, cannot launch a program, so make a static guess
701 if test "$cpu" = "armv4b" \
702      -o "$cpu" = "hppa" \
703      -o "$cpu" = "m68k" \
704      -o "$cpu" = "mips" \
705      -o "$cpu" = "mips64" \
706      -o "$cpu" = "ppc" \
707      -o "$cpu" = "ppc64" \
708      -o "$cpu" = "s390" \
709      -o "$cpu" = "sparc" \
710      -o "$cpu" = "sparc64"; then
711     bigendian="yes"
712 fi
713
714 fi
715
716 # host long bits test
717 hostlongbits="32"
718 if test "$cpu" = "x86_64" \
719      -o "$cpu" = "alpha" \
720      -o "$cpu" = "ia64" \
721      -o "$cpu" = "sparc64" \
722      -o "$cpu" = "ppc64"; then
723     hostlongbits="64"
724 fi
725
726 # check gcc options support
727 cat > $TMPC <<EOF
728 int main(void) {
729 }
730 EOF
731
732 # Check host NPTL support
733 cat > $TMPC <<EOF
734 #include <sched.h>
735 #include <linux/futex.h>
736 void foo()
737 {
738 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
739 #error bork
740 #endif
741 }
742 EOF
743
744 if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
745   :
746 else
747    nptl="no"
748 fi
749
750 ##########################################
751 # zlib check
752
753 cat > $TMPC << EOF
754 #include <zlib.h>
755 int main(void) { zlibVersion(); return 0; }
756 EOF
757 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
758     :
759 else
760     echo
761     echo "Error: zlib check failed"
762     echo "Make sure to have the zlib libs and headers installed."
763     echo
764     exit 1
765 fi
766
767 ##########################################
768 # SDL probe
769
770 sdl_too_old=no
771
772 if test -z "$sdl" ; then
773     sdl_config="sdl-config"
774     sdl=no
775     sdl_static=no
776
777 cat > $TMPC << EOF
778 #include <SDL.h>
779 #undef main /* We don't want SDL to override our main() */
780 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
781 EOF
782     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
783         _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
784         if test "$_sdlversion" -lt 121 ; then
785             sdl_too_old=yes
786         else
787             if test "$cocoa" = "no" ; then
788                 sdl=yes
789             fi
790         fi
791
792         # static link with sdl ?
793         if test "$sdl" = "yes" ; then
794             aa="no"
795             `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
796             sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
797             if [ "$aa" = "yes" ] ; then
798                 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
799             fi
800
801             if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then
802                 sdl_static=yes
803             fi
804         fi # static link
805     fi # sdl compile test
806 else
807     # Make sure to disable cocoa if sdl was set
808     if test "$sdl" = "yes" ; then
809        cocoa="no"
810        audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
811     fi
812 fi # -z $sdl
813
814 if test "$sdl" = "yes" ; then
815 cat > $TMPC <<EOF
816 #include <SDL.h>
817 #if defined(SDL_VIDEO_DRIVER_X11)
818 #include <X11/XKBlib.h>
819 #else
820 #error No x11 support
821 #endif
822 int main(void) { return 0; }
823 EOF
824     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
825         sdl_x11="yes"
826     fi
827 fi
828
829 ##########################################
830 # VNC TLS detection
831 if test "$vnc_tls" = "yes" ; then
832 cat > $TMPC <<EOF
833 #include <gnutls/gnutls.h>
834 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
835 EOF
836     vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
837     vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
838     if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
839            $vnc_tls_libs > /dev/null 2> /dev/null ; then
840         :
841     else
842         vnc_tls="no"
843     fi
844 fi
845
846 ##########################################
847 # vde libraries probe
848 if test "$vde" = "yes" ; then
849   cat > $TMPC << EOF
850 #include <libvdeplug.h>
851 int main(void)
852 {
853     struct vde_open_args a = {0, 0, 0};
854     vde_open("", "", &a);
855     return 0;
856 }
857 EOF
858     if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
859         :
860     else
861         vde="no"
862     fi
863 fi
864
865 ##########################################
866 # Sound support libraries probe
867
868 audio_drv_probe()
869 {
870     drv=$1
871     hdr=$2
872     lib=$3
873     exp=$4
874     cfl=$5
875         cat > $TMPC << EOF
876 #include <$hdr>
877 int main(void) { $exp }
878 EOF
879     if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
880         :
881     else
882         echo
883         echo "Error: $drv check failed"
884         echo "Make sure to have the $drv libs and headers installed."
885         echo
886         exit 1
887     fi
888 }
889
890 audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
891 for drv in $audio_drv_list; do
892     case $drv in
893     alsa)
894     audio_drv_probe $drv alsa/asoundlib.h -lasound \
895         "snd_pcm_t **handle; return snd_pcm_close(*handle);"
896     ;;
897
898     fmod)
899     if test -z $fmod_lib || test -z $fmod_inc; then
900         echo
901         echo "Error: You must specify path to FMOD library and headers"
902         echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
903         echo
904         exit 1
905     fi
906     audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
907     ;;
908
909     esd)
910     audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
911     ;;
912
913     pa)
914     audio_drv_probe $drv pulse/simple.h -lpulse-simple \
915         "pa_simple *s = NULL; pa_simple_free(s); return 0;"
916     ;;
917
918     oss|sdl|core|wav|dsound)
919     # XXX: Probes for CoreAudio, DirectSound, SDL(?)
920     ;;
921
922     *)
923     echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
924         echo
925         echo "Error: Unknown driver '$drv' selected"
926         echo "Possible drivers are: $audio_possible_drivers"
927         echo
928         exit 1
929     }
930     ;;
931     esac
932 done
933
934 ##########################################
935 # BrlAPI probe
936
937 if test -z "$brlapi" ; then
938     brlapi=no
939 cat > $TMPC << EOF
940 #include <brlapi.h>
941 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
942 EOF
943     if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
944             brlapi=yes
945     fi # brlapi compile test
946 fi # -z $brlapi
947
948 ##########################################
949 # curses probe
950
951 if test "$curses" = "yes" ; then
952   curses=no
953   cat > $TMPC << EOF
954 #include <curses.h>
955 int main(void) { return curses_version(); }
956 EOF
957   if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
958     curses=yes
959   fi
960 fi # test "$curses"
961
962 ##########################################
963 # bluez support probe
964 if test "$bluez" = "yes" ; then
965   `pkg-config bluez` || bluez="no"
966 fi
967 if test "$bluez" = "yes" ; then
968   cat > $TMPC << EOF
969 #include <bluetooth/bluetooth.h>
970 int main(void) { return bt_error(0); }
971 EOF
972   bluez_cflags=`pkg-config --cflags bluez`
973   bluez_libs=`pkg-config --libs bluez`
974   if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
975       $bluez_libs > /dev/null 2> /dev/null ; then
976     :
977   else
978     bluez="no"
979   fi
980 fi
981
982 ##########################################
983 # kvm probe
984 if test "$kvm" = "yes" ; then
985     cat > $TMPC <<EOF
986 #include <linux/kvm.h>
987 #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
988 #error Invalid KVM version
989 #endif
990 #if !defined(KVM_CAP_USER_MEMORY)
991 #error Missing KVM capability KVM_CAP_USER_MEMORY
992 #endif
993 #if !defined(KVM_CAP_SET_TSS_ADDR)
994 #error Missing KVM capability KVM_CAP_SET_TSS_ADDR
995 #endif
996 #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
997 #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
998 #endif
999 int main(void) { return 0; }
1000 EOF
1001   if test "$kerneldir" != "" ; then
1002       kvm_cflags=-I"$kerneldir"/include
1003       if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1004          -a -d "$kerneldir/arch/x86/include" ; then
1005             kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
1006         elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1007             kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
1008         elif test -d "$kerneldir/arch/$cpu/include" ; then
1009             kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1010       fi
1011   else
1012       kvm_cflags=""
1013   fi
1014   if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
1015       > /dev/null 2>/dev/null ; then
1016     :
1017   else
1018     kvm="no";
1019     if [ -x "`which awk 2>/dev/null`" ] && \
1020        [ -x "`which grep 2>/dev/null`" ]; then
1021       kvmerr=`$cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1022         | grep "error: " \
1023         | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1024       if test "$kvmerr" != "" ; then
1025         kvm="no - (${kvmerr})"
1026       fi
1027     fi
1028   fi
1029 fi
1030
1031 ##########################################
1032 # AIO probe
1033 AIOLIBS=""
1034
1035 if test "$aio" = "yes" ; then
1036   aio=no
1037   cat > $TMPC << EOF
1038 #include <pthread.h>
1039 int main(void) { pthread_mutex_t lock;  return 0; }
1040 EOF
1041   if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
1042     aio=yes
1043     AIOLIBS="-lpthread"
1044   fi
1045 fi
1046
1047 ##########################################
1048 # iovec probe
1049 cat > $TMPC <<EOF
1050 #include <sys/types.h>
1051 #include <sys/uio.h>
1052 #include <unistd.h>
1053 int main(void) { struct iovec iov; return 0; }
1054 EOF
1055 iovec=no
1056 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1057   iovec=yes
1058 fi
1059
1060 ##########################################
1061 # fdt probe
1062 if test "$fdt" = "yes" ; then
1063     fdt=no
1064     cat > $TMPC << EOF
1065 int main(void) { return 0; }
1066 EOF
1067   if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1068     fdt=yes
1069   fi
1070 fi
1071
1072 ##########################################
1073 # Check for xxxat() functions when we are building linux-user
1074 # emulator.  This is done because older glibc versions don't
1075 # have syscall stubs for these implemented.  In that case we
1076 # don't provide them even if kernel supports them.
1077 #
1078 atfile=no
1079 if [ "$linux_user" = "yes" ] ; then
1080   cat > $TMPC << EOF
1081 #define _ATFILE_SOURCE
1082 #include <sys/types.h>
1083 #include <fcntl.h>
1084 #include <unistd.h>
1085
1086 int
1087 main(void)
1088
1089         /* try to unlink nonexisting file */
1090         return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1091 }
1092 EOF
1093   if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1094     atfile=yes
1095   fi
1096 fi
1097
1098 # Check if tools are available to build documentation.
1099 if [ -x "`which texi2html 2>/dev/null`" ] && \
1100    [ -x "`which pod2man 2>/dev/null`" ]; then
1101   build_docs="yes"
1102 fi
1103
1104 ##########################################
1105 # Do we need librt
1106 cat > $TMPC <<EOF
1107 #include <signal.h>
1108 #include <time.h>
1109 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1110 EOF
1111
1112 rt=no
1113 if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1114   :
1115 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
1116   rt=yes
1117 fi
1118
1119 if test "$rt" = "yes" ; then
1120   # Hack, we should have a general purpose LIBS for this sort of thing
1121   AIOLIBS="$AIOLIBS -lrt"
1122 fi
1123
1124 if test "$mingw32" = "yes" ; then
1125   if test -z "$prefix" ; then
1126       prefix="c:\\\\Program Files\\\\Qemu"
1127   fi
1128   mansuffix=""
1129   datasuffix=""
1130   docsuffix=""
1131   binsuffix=""
1132 else
1133   if test -z "$prefix" ; then
1134       prefix="/usr/local"
1135   fi
1136   mansuffix="/share/man"
1137   datasuffix="/share/qemu"
1138   docsuffix="/share/doc/qemu"
1139   binsuffix="/bin"
1140 fi
1141
1142 echo "Install prefix     $prefix"
1143 echo "BIOS directory     $prefix$datasuffix"
1144 echo "binary directory   $prefix$binsuffix"
1145 if test "$mingw32" = "no" ; then
1146 echo "Manual directory   $prefix$mansuffix"
1147 echo "ELF interp prefix  $interp_prefix"
1148 fi
1149 echo "Source path        $source_path"
1150 echo "C compiler         $cc"
1151 echo "Host C compiler    $host_cc"
1152 echo "ARCH_CFLAGS        $ARCH_CFLAGS"
1153 echo "make               $make"
1154 echo "install            $install"
1155 echo "host CPU           $cpu"
1156 echo "host big endian    $bigendian"
1157 echo "target list        $target_list"
1158 echo "gprof enabled      $gprof"
1159 echo "sparse enabled     $sparse"
1160 echo "profiler           $profiler"
1161 echo "static build       $static"
1162 echo "-Werror enabled    $werror"
1163 if test "$darwin" = "yes" ; then
1164     echo "Cocoa support      $cocoa"
1165 fi
1166 echo "SDL support        $sdl"
1167 if test "$sdl" != "no" ; then
1168     echo "SDL static link    $sdl_static"
1169 fi
1170 echo "curses support     $curses"
1171 echo "atfile support     $atfile"
1172 echo "mingw32 support    $mingw32"
1173 echo "Audio drivers      $audio_drv_list"
1174 echo "Extra audio cards  $audio_card_list"
1175 echo "Mixer emulation    $mixemu"
1176 echo "VNC TLS support    $vnc_tls"
1177 if test "$vnc_tls" = "yes" ; then
1178     echo "    TLS CFLAGS     $vnc_tls_cflags"
1179     echo "    TLS LIBS       $vnc_tls_libs"
1180 fi
1181 if test -n "$sparc_cpu"; then
1182     echo "Target Sparc Arch  $sparc_cpu"
1183 fi
1184 echo "kqemu support      $kqemu"
1185 echo "brlapi support     $brlapi"
1186 echo "Documentation      $build_docs"
1187 [ ! -z "$uname_release" ] && \
1188 echo "uname -r           $uname_release"
1189 echo "NPTL support       $nptl"
1190 echo "vde support        $vde"
1191 echo "AIO support        $aio"
1192 echo "Install blobs      $blobs"
1193 echo "KVM support        $kvm"
1194 echo "fdt support        $fdt"
1195 echo "GUEST_BASE support $guest_base"
1196
1197 if test $sdl_too_old = "yes"; then
1198 echo "-> Your SDL version is too old - please upgrade to have SDL support"
1199 fi
1200 if [ -s $TMPSDLLOG ]; then
1201   echo "The error log from compiling the libSDL test is: "
1202   cat $TMPSDLLOG
1203 fi
1204 #if test "$sdl_static" = "no"; then
1205 #  echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1206 #fi
1207 config_mak="config-host.mak"
1208 config_h="config-host.h"
1209
1210 #echo "Creating $config_mak and $config_h"
1211
1212 test -f $config_h && mv $config_h ${config_h}~
1213
1214 echo "# Automatically generated by configure - do not modify" > $config_mak
1215 printf "# Configured with:" >> $config_mak
1216 printf " '%s'" "$0" "$@" >> $config_mak
1217 echo >> $config_mak
1218 echo "/* Automatically generated by configure - do not modify */" > $config_h
1219
1220 echo "prefix=$prefix" >> $config_mak
1221 echo "bindir=\${prefix}$binsuffix" >> $config_mak
1222 echo "mandir=\${prefix}$mansuffix" >> $config_mak
1223 echo "datadir=\${prefix}$datasuffix" >> $config_mak
1224 echo "docdir=\${prefix}$docsuffix" >> $config_mak
1225 echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1226 echo "MAKE=$make" >> $config_mak
1227 echo "INSTALL=$install" >> $config_mak
1228 echo "CC=$cc" >> $config_mak
1229 echo "HOST_CC=$host_cc" >> $config_mak
1230 echo "AR=$ar" >> $config_mak
1231 echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
1232 # XXX: only use CFLAGS and LDFLAGS ?  
1233 # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1234 # compilation of dyngen tool (useful for win32 build on Linux host)
1235 echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1236 echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1237 echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1238 echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1239 echo "CFLAGS=$CFLAGS" >> $config_mak
1240 echo "LDFLAGS=$LDFLAGS" >> $config_mak
1241 echo "EXESUF=$EXESUF" >> $config_mak
1242 echo "AIOLIBS=$AIOLIBS" >> $config_mak
1243 case "$cpu" in
1244   i386)
1245     echo "ARCH=i386" >> $config_mak
1246     echo "#define HOST_I386 1" >> $config_h
1247   ;;
1248   x86_64)
1249     echo "ARCH=x86_64" >> $config_mak
1250     echo "#define HOST_X86_64 1" >> $config_h
1251   ;;
1252   alpha)
1253     echo "ARCH=alpha" >> $config_mak
1254     echo "#define HOST_ALPHA 1" >> $config_h
1255   ;;
1256   armv4b)
1257     echo "ARCH=arm" >> $config_mak
1258     echo "#define HOST_ARM 1" >> $config_h
1259   ;;
1260   armv4l)
1261     echo "ARCH=arm" >> $config_mak
1262     echo "#define HOST_ARM 1" >> $config_h
1263   ;;
1264   cris)
1265     echo "ARCH=cris" >> $config_mak
1266     echo "#define HOST_CRIS 1" >> $config_h
1267   ;;
1268   hppa)
1269     echo "ARCH=hppa" >> $config_mak
1270     echo "#define HOST_HPPA 1" >> $config_h
1271   ;;
1272   ia64)
1273     echo "ARCH=ia64" >> $config_mak
1274     echo "#define HOST_IA64 1" >> $config_h
1275   ;;
1276   m68k)
1277     echo "ARCH=m68k" >> $config_mak
1278     echo "#define HOST_M68K 1" >> $config_h
1279   ;;
1280   mips)
1281     echo "ARCH=mips" >> $config_mak
1282     echo "#define HOST_MIPS 1" >> $config_h
1283   ;;
1284   mips64)
1285     echo "ARCH=mips64" >> $config_mak
1286     echo "#define HOST_MIPS64 1" >> $config_h
1287   ;;
1288   ppc)
1289     echo "ARCH=ppc" >> $config_mak
1290     echo "#define HOST_PPC 1" >> $config_h
1291   ;;
1292   ppc64)
1293     echo "ARCH=ppc64" >> $config_mak
1294     echo "#define HOST_PPC64 1" >> $config_h
1295   ;;
1296   s390)
1297     echo "ARCH=s390" >> $config_mak
1298     echo "#define HOST_S390 1" >> $config_h
1299   ;;
1300   sparc)
1301     echo "ARCH=sparc" >> $config_mak
1302     echo "#define HOST_SPARC 1" >> $config_h
1303   ;;
1304   sparc64)
1305     echo "ARCH=sparc64" >> $config_mak
1306     echo "#define HOST_SPARC64 1" >> $config_h
1307   ;;
1308   *)
1309     echo "Unsupported CPU = $cpu"
1310     exit 1
1311   ;;
1312 esac
1313 if test "$sparse" = "yes" ; then
1314   echo "CC      := REAL_CC=\"\$(CC)\" cgcc"       >> $config_mak
1315   echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_mak
1316   echo "CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1317 fi
1318 if test "$bigendian" = "yes" ; then
1319   echo "WORDS_BIGENDIAN=yes" >> $config_mak
1320   echo "#define WORDS_BIGENDIAN 1" >> $config_h
1321 fi
1322 echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1323 if test "$mingw32" = "yes" ; then
1324   echo "CONFIG_WIN32=yes" >> $config_mak
1325   echo "#define CONFIG_WIN32 1" >> $config_h
1326 else
1327   cat > $TMPC << EOF
1328 #include <byteswap.h>
1329 int main(void) { return bswap_32(0); }
1330 EOF
1331   if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1332     echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1333   fi
1334   cat > $TMPC << EOF
1335 #include <sys/endian.h>
1336 #include <sys/types.h>
1337 #include <machine/bswap.h>
1338 int main(void) { return bswap32(0); }
1339 EOF
1340   if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1341     echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1342   fi
1343 fi
1344
1345 if [ "$openbsd" = "yes" ] ; then
1346   echo "#define ENOTSUP 4096" >> $config_h
1347 fi
1348
1349 if test "$darwin" = "yes" ; then
1350   echo "CONFIG_DARWIN=yes" >> $config_mak
1351   echo "#define CONFIG_DARWIN 1" >> $config_h
1352 fi
1353
1354 if test "$aix" = "yes" ; then
1355   echo "CONFIG_AIX=yes" >> $config_mak
1356   echo "#define CONFIG_AIX 1" >> $config_h
1357 fi
1358
1359 if test "$solaris" = "yes" ; then
1360   echo "CONFIG_SOLARIS=yes" >> $config_mak
1361   echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1362   if test "$needs_libsunmath" = "yes" ; then
1363     echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1364     echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1365   fi
1366 fi
1367 if test -n "$sparc_cpu"; then
1368   echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1369   echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1370 fi
1371 if test "$gdbstub" = "yes" ; then
1372   echo "CONFIG_GDBSTUB=yes" >> $config_mak
1373   echo "#define CONFIG_GDBSTUB 1" >> $config_h
1374 fi
1375 if test "$gprof" = "yes" ; then
1376   echo "TARGET_GPROF=yes" >> $config_mak
1377   echo "#define HAVE_GPROF 1" >> $config_h
1378 fi
1379 if test "$static" = "yes" ; then
1380   echo "CONFIG_STATIC=yes" >> $config_mak
1381   echo "#define CONFIG_STATIC 1" >> $config_h
1382 fi
1383 if test $profiler = "yes" ; then
1384   echo "#define CONFIG_PROFILER 1" >> $config_h
1385 fi
1386 if test "$slirp" = "yes" ; then
1387   echo "CONFIG_SLIRP=yes" >> $config_mak
1388   echo "#define CONFIG_SLIRP 1" >> $config_h
1389 fi
1390 if test "$vde" = "yes" ; then
1391   echo "CONFIG_VDE=yes" >> $config_mak
1392   echo "#define CONFIG_VDE 1" >> $config_h
1393   echo "VDE_LIBS=-lvdeplug" >> $config_mak
1394 fi
1395 for card in $audio_card_list; do
1396     def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
1397     echo "$def=yes" >> $config_mak
1398     echo "#define $def 1" >> $config_h
1399 done
1400 echo "#define AUDIO_DRIVERS \\" >> $config_h
1401 for drv in $audio_drv_list; do
1402     echo "    &${drv}_audio_driver, \\" >>$config_h
1403     def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
1404     echo "$def=yes" >> $config_mak
1405     if test "$drv" = "fmod"; then
1406         echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1407         echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1408     elif test "$drv" = "oss"; then
1409         echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1410     fi
1411 done
1412 echo "" >>$config_h
1413 if test "$mixemu" = "yes" ; then
1414   echo "CONFIG_MIXEMU=yes" >> $config_mak
1415   echo "#define CONFIG_MIXEMU 1" >> $config_h
1416 fi
1417 if test "$vnc_tls" = "yes" ; then
1418   echo "CONFIG_VNC_TLS=yes" >> $config_mak
1419   echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1420   echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1421   echo "#define CONFIG_VNC_TLS 1" >> $config_h
1422 fi
1423 qemu_version=`head $source_path/VERSION`
1424 echo "VERSION=$qemu_version" >>$config_mak
1425 echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1426
1427 echo "SRC_PATH=$source_path" >> $config_mak
1428 if [ "$source_path_used" = "yes" ]; then
1429   echo "VPATH=$source_path" >> $config_mak
1430 fi
1431 echo "TARGET_DIRS=$target_list" >> $config_mak
1432 if [ "$build_docs" = "yes" ] ; then
1433   echo "BUILD_DOCS=yes" >> $config_mak
1434 fi
1435 if test "$static" = "yes"; then
1436   sdl1=$sdl_static
1437 else
1438   sdl1=$sdl
1439 fi
1440 if test "$sdl1" = "yes" ; then
1441   echo "#define CONFIG_SDL 1" >> $config_h
1442   echo "CONFIG_SDL=yes" >> $config_mak
1443   if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1444     echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1445   elif test "$sdl_x11" = "yes" ; then
1446     echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
1447   else
1448     echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1449   fi
1450   if [ "${aa}" = "yes" ] ; then
1451     echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1452   else
1453     echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1454   fi
1455 fi
1456 if test "$cocoa" = "yes" ; then
1457   echo "#define CONFIG_COCOA 1" >> $config_h
1458   echo "CONFIG_COCOA=yes" >> $config_mak
1459 fi
1460 if test "$curses" = "yes" ; then
1461   echo "#define CONFIG_CURSES 1" >> $config_h
1462   echo "CONFIG_CURSES=yes" >> $config_mak
1463   echo "CURSES_LIBS=-lcurses" >> $config_mak
1464 fi
1465 if test "$atfile" = "yes" ; then
1466   echo "#define CONFIG_ATFILE 1" >> $config_h
1467 fi
1468 if test "$brlapi" = "yes" ; then
1469   echo "CONFIG_BRLAPI=yes" >> $config_mak
1470   echo "#define CONFIG_BRLAPI 1" >> $config_h
1471   echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1472 fi
1473 if test "$bluez" = "yes" ; then
1474   echo "CONFIG_BLUEZ=yes" >> $config_mak
1475   echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1476   echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1477   echo "#define CONFIG_BLUEZ 1" >> $config_h
1478 fi
1479 if test "$aio" = "yes" ; then
1480   echo "#define CONFIG_AIO 1" >> $config_h
1481   echo "CONFIG_AIO=yes" >> $config_mak
1482 fi
1483 if test "$blobs" = "yes" ; then
1484   echo "INSTALL_BLOBS=yes" >> $config_mak
1485 fi
1486 if test "$iovec" = "yes" ; then
1487   echo "#define HAVE_IOVEC 1" >> $config_h
1488 fi
1489 if test "$fdt" = "yes" ; then
1490   echo "#define HAVE_FDT 1" >> $config_h
1491   echo "FDT_LIBS=-lfdt" >> $config_mak
1492 fi
1493
1494 # XXX: suppress that
1495 if [ "$bsd" = "yes" ] ; then
1496   echo "#define O_LARGEFILE 0" >> $config_h
1497   echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1498   echo "#define _BSD 1" >> $config_h
1499 fi
1500
1501 echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1502
1503 # USB host support
1504 case "$usb" in
1505 linux)
1506   echo "HOST_USB=linux" >> $config_mak
1507 ;;
1508 bsd)
1509   echo "HOST_USB=bsd" >> $config_mak
1510 ;;
1511 *)
1512   echo "HOST_USB=stub" >> $config_mak
1513 ;;
1514 esac
1515
1516 tools=
1517 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1518   tools="qemu-img\$(EXESUF) $tools"
1519   if [ "$linux" = "yes" ] ; then
1520       tools="qemu-nbd\$(EXESUF) $tools"
1521   fi
1522 fi
1523 echo "TOOLS=$tools" >> $config_mak
1524
1525 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1526
1527 for target in $target_list; do
1528 target_dir="$target"
1529 config_mak=$target_dir/config.mak
1530 config_h=$target_dir/config.h
1531 target_cpu=`echo $target | cut -d '-' -f 1`
1532 target_bigendian="no"
1533 [ "$target_cpu" = "armeb" ] && target_bigendian=yes
1534 [ "$target_cpu" = "m68k" ] && target_bigendian=yes
1535 [ "$target_cpu" = "mips" ] && target_bigendian=yes
1536 [ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1537 [ "$target_cpu" = "mips64" ] && target_bigendian=yes
1538 [ "$target_cpu" = "ppc" ] && target_bigendian=yes
1539 [ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
1540 [ "$target_cpu" = "ppc64" ] && target_bigendian=yes
1541 [ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
1542 [ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
1543 [ "$target_cpu" = "sparc" ] && target_bigendian=yes
1544 [ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1545 [ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
1546 target_softmmu="no"
1547 target_user_only="no"
1548 target_linux_user="no"
1549 target_darwin_user="no"
1550 target_bsd_user="no"
1551 case "$target" in
1552   ${target_cpu}-softmmu)
1553     target_softmmu="yes"
1554     ;;
1555   ${target_cpu}-linux-user)
1556     target_user_only="yes"
1557     target_linux_user="yes"
1558     ;;
1559   ${target_cpu}-darwin-user)
1560     target_user_only="yes"
1561     target_darwin_user="yes"
1562     ;;
1563   ${target_cpu}-bsd-user)
1564     target_user_only="yes"
1565     target_bsd_user="yes"
1566     ;;
1567   *)
1568     echo "ERROR: Target '$target' not recognised"
1569     exit 1
1570     ;;
1571 esac
1572
1573 if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1574         -a "$sdl" = "no" -a "$cocoa" = "no" ; then
1575     echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
1576     echo "To build QEMU without graphical output configure with --disable-gfx-check"
1577     echo "Note that this will disable all output from the virtual graphics card"
1578     echo "except through VNC or curses."
1579     exit 1;
1580 fi
1581
1582 #echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1583
1584 test -f $config_h && mv $config_h ${config_h}~
1585
1586 mkdir -p $target_dir
1587 mkdir -p $target_dir/fpu
1588 mkdir -p $target_dir/tcg
1589 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1590   mkdir -p $target_dir/nwfpe
1591 fi
1592
1593 #
1594 # don't use ln -sf as not all "ln -sf" over write the file/link
1595 #
1596 rm -f $target_dir/Makefile
1597 ln -s $source_path/Makefile.target $target_dir/Makefile
1598
1599
1600 echo "# Automatically generated by configure - do not modify" > $config_mak
1601 echo "/* Automatically generated by configure - do not modify */" > $config_h
1602
1603
1604 echo "include ../config-host.mak" >> $config_mak
1605 echo "#include \"../config-host.h\"" >> $config_h
1606
1607 bflt="no"
1608 elfload32="no"
1609 target_nptl="no"
1610 interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1611 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1612 gdb_xml_files=""
1613
1614 # Make sure the target and host cpus are compatible
1615 if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
1616   \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \
1617   \( "$target_cpu" = "x86_64" -a "$cpu" = "i386"   \) -o \
1618   \( "$target_cpu" = "i386"   -a "$cpu" = "x86_64" \) \) ; then
1619   kvm="no"
1620 fi
1621 # Disable KVM for linux-user
1622 if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1623   kvm="no"
1624 fi
1625
1626 case "$target_cpu" in
1627   i386)
1628     echo "TARGET_ARCH=i386" >> $config_mak
1629     echo "#define TARGET_ARCH \"i386\"" >> $config_h
1630     echo "#define TARGET_I386 1" >> $config_h
1631     if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1632     then
1633       echo "#define USE_KQEMU 1" >> $config_h
1634     fi
1635     if test "$kvm" = "yes" ; then
1636       echo "CONFIG_KVM=yes" >> $config_mak
1637       echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1638       echo "#define CONFIG_KVM 1" >> $config_h
1639     fi
1640   ;;
1641   x86_64)
1642     echo "TARGET_ARCH=x86_64" >> $config_mak
1643     echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1644     echo "#define TARGET_I386 1" >> $config_h
1645     echo "#define TARGET_X86_64 1" >> $config_h
1646     if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1647     then
1648       echo "#define USE_KQEMU 1" >> $config_h
1649     fi
1650     if test "$kvm" = "yes" ; then
1651       echo "CONFIG_KVM=yes" >> $config_mak
1652       echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1653       echo "#define CONFIG_KVM 1" >> $config_h
1654     fi
1655   ;;
1656   alpha)
1657     echo "TARGET_ARCH=alpha" >> $config_mak
1658     echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1659     echo "#define TARGET_ALPHA 1" >> $config_h
1660   ;;
1661   arm|armeb)
1662     echo "TARGET_ARCH=arm" >> $config_mak
1663     echo "#define TARGET_ARCH \"arm\"" >> $config_h
1664     echo "#define TARGET_ARM 1" >> $config_h
1665     bflt="yes"
1666     target_nptl="yes"
1667     gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1668   ;;
1669   cris)
1670     echo "TARGET_ARCH=cris" >> $config_mak
1671     echo "#define TARGET_ARCH \"cris\"" >> $config_h
1672     echo "#define TARGET_CRIS 1" >> $config_h
1673     target_nptl="yes"
1674   ;;
1675   m68k)
1676     echo "TARGET_ARCH=m68k" >> $config_mak
1677     echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1678     echo "#define TARGET_M68K 1" >> $config_h
1679     bflt="yes"
1680     gdb_xml_files="cf-core.xml cf-fp.xml"
1681   ;;
1682   mips|mipsel)
1683     echo "TARGET_ARCH=mips" >> $config_mak
1684     echo "#define TARGET_ARCH \"mips\"" >> $config_h
1685     echo "#define TARGET_MIPS 1" >> $config_h
1686     echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1687   ;;
1688   mipsn32|mipsn32el)
1689     echo "TARGET_ARCH=mipsn32" >> $config_mak
1690     echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1691     echo "#define TARGET_MIPS 1" >> $config_h
1692     echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1693   ;;
1694   mips64|mips64el)
1695     echo "TARGET_ARCH=mips64" >> $config_mak
1696     echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1697     echo "#define TARGET_MIPS 1" >> $config_h
1698     echo "#define TARGET_MIPS64 1" >> $config_h
1699     echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1700   ;;
1701   ppc)
1702     echo "TARGET_ARCH=ppc" >> $config_mak
1703     echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1704     echo "#define TARGET_PPC 1" >> $config_h
1705     gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1706   ;;
1707   ppcemb)
1708     echo "TARGET_ARCH=ppcemb" >> $config_mak
1709     echo "TARGET_ABI_DIR=ppc" >> $config_mak
1710     echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1711     echo "#define TARGET_PPC 1" >> $config_h
1712     echo "#define TARGET_PPCEMB 1" >> $config_h
1713     if test "$kvm" = "yes" ; then
1714       echo "CONFIG_KVM=yes" >> $config_mak
1715       echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1716       echo "#define CONFIG_KVM 1" >> $config_h
1717     fi
1718     gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1719   ;;
1720   ppc64)
1721     echo "TARGET_ARCH=ppc64" >> $config_mak
1722     echo "TARGET_ABI_DIR=ppc" >> $config_mak
1723     echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1724     echo "#define TARGET_PPC 1" >> $config_h
1725     echo "#define TARGET_PPC64 1" >> $config_h
1726     gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1727   ;;
1728   ppc64abi32)
1729     echo "TARGET_ARCH=ppc64" >> $config_mak
1730     echo "TARGET_ABI_DIR=ppc" >> $config_mak
1731     echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1732     echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1733     echo "#define TARGET_PPC 1" >> $config_h
1734     echo "#define TARGET_PPC64 1" >> $config_h
1735     echo "#define TARGET_ABI32 1" >> $config_h
1736     gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1737   ;;
1738   sh4|sh4eb)
1739     echo "TARGET_ARCH=sh4" >> $config_mak
1740     echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1741     echo "#define TARGET_SH4 1" >> $config_h
1742     bflt="yes"
1743     target_nptl="yes"
1744   ;;
1745   sparc)
1746     echo "TARGET_ARCH=sparc" >> $config_mak
1747     echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1748     echo "#define TARGET_SPARC 1" >> $config_h
1749   ;;
1750   sparc64)
1751     echo "TARGET_ARCH=sparc64" >> $config_mak
1752     echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1753     echo "#define TARGET_SPARC 1" >> $config_h
1754     echo "#define TARGET_SPARC64 1" >> $config_h
1755     elfload32="yes"
1756   ;;
1757   sparc32plus)
1758     echo "TARGET_ARCH=sparc64" >> $config_mak
1759     echo "TARGET_ABI_DIR=sparc" >> $config_mak
1760     echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1761     echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1762     echo "#define TARGET_SPARC 1" >> $config_h
1763     echo "#define TARGET_SPARC64 1" >> $config_h
1764     echo "#define TARGET_ABI32 1" >> $config_h
1765   ;;
1766   *)
1767     echo "Unsupported target CPU"
1768     exit 1
1769   ;;
1770 esac
1771 if test "$target_bigendian" = "yes" ; then
1772   echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1773   echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1774 fi
1775 if test "$target_softmmu" = "yes" ; then
1776   echo "CONFIG_SOFTMMU=yes" >> $config_mak
1777   echo "#define CONFIG_SOFTMMU 1" >> $config_h
1778 fi
1779 if test "$target_user_only" = "yes" ; then
1780   echo "CONFIG_USER_ONLY=yes" >> $config_mak
1781   echo "#define CONFIG_USER_ONLY 1" >> $config_h
1782 fi
1783 if test "$target_linux_user" = "yes" ; then
1784   echo "CONFIG_LINUX_USER=yes" >> $config_mak
1785   echo "#define CONFIG_LINUX_USER 1" >> $config_h
1786 fi
1787 if test "$target_darwin_user" = "yes" ; then
1788   echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1789   echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1790 fi
1791 list=""
1792 if test ! -z "$gdb_xml_files" ; then
1793   for x in $gdb_xml_files; do
1794     list="$list $source_path/gdb-xml/$x"
1795   done
1796 fi
1797 echo "TARGET_XML_FILES=$list" >> $config_mak
1798
1799 if test "$target_cpu" = "arm" \
1800      -o "$target_cpu" = "armeb" \
1801      -o "$target_cpu" = "m68k" \
1802      -o "$target_cpu" = "mips" \
1803      -o "$target_cpu" = "mipsel" \
1804      -o "$target_cpu" = "mipsn32" \
1805      -o "$target_cpu" = "mipsn32el" \
1806      -o "$target_cpu" = "mips64" \
1807      -o "$target_cpu" = "mips64el" \
1808      -o "$target_cpu" = "ppc" \
1809      -o "$target_cpu" = "ppc64" \
1810      -o "$target_cpu" = "ppc64abi32" \
1811      -o "$target_cpu" = "ppcemb" \
1812      -o "$target_cpu" = "sparc" \
1813      -o "$target_cpu" = "sparc64" \
1814      -o "$target_cpu" = "sparc32plus"; then
1815   echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1816   echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1817 fi
1818 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1819   echo "TARGET_HAS_BFLT=yes" >> $config_mak
1820   echo "#define TARGET_HAS_BFLT 1" >> $config_h
1821 fi
1822 if test "$target_user_only" = "yes" \
1823         -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1824   echo "#define USE_NPTL 1" >> $config_h
1825 fi
1826 # 32 bit ELF loader in addition to native 64 bit loader?
1827 if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1828   echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1829   echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1830 fi
1831 if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
1832   echo "#define CONFIG_USE_GUEST_BASE 1" >> $config_h
1833 fi
1834 if test "$target_bsd_user" = "yes" ; then
1835   echo "CONFIG_BSD_USER=yes" >> $config_mak
1836   echo "#define CONFIG_BSD_USER 1" >> $config_h
1837 fi
1838
1839 test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1840
1841 done # for target in $targets
1842
1843 # build tree in object directory if source path is different from current one
1844 if test "$source_path_used" = "yes" ; then
1845     DIRS="tests tests/cris slirp audio"
1846     FILES="Makefile tests/Makefile"
1847     FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
1848     FILES="$FILES tests/test-mmap.c"
1849     for dir in $DIRS ; do
1850             mkdir -p $dir
1851     done
1852     # remove the link and recreate it, as not all "ln -sf" overwrite the link
1853     for f in $FILES ; do
1854         rm -f $f
1855         ln -s $source_path/$f $f
1856     done
1857 fi