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