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