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