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