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