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