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