Merge remote branch 'kwolf/for-anthony' into staging
[qemu.git] / configure
blob3bfc5e929bc28c567aed789659fbbebbbb0dd647
1 #!/bin/sh
3 # qemu configure script (c) 2003 Fabrice Bellard
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"
14 TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
15 TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
16 TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.exe"
18 trap "rm -f $TMPC $TMPO $TMPE ; exit" EXIT INT QUIT TERM
20 compile_object() {
21 $cc $QEMU_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
24 compile_prog() {
25 local_cflags="$1"
26 local_ldflags="$2"
27 $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags > /dev/null 2> /dev/null
30 # check whether a command is available to this shell (may be either an
31 # executable or a builtin)
32 has() {
33 type "$1" >/dev/null 2>&1
36 # search for an executable in PATH
37 path_of() {
38 local_command="$1"
39 local_ifs="$IFS"
40 local_dir=""
42 # pathname has a dir component?
43 if [ "${local_command#*/}" != "$local_command" ]; then
44 if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then
45 echo "$local_command"
46 return 0
49 if [ -z "$local_command" ]; then
50 return 1
53 IFS=:
54 for local_dir in $PATH; do
55 if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then
56 echo "$local_dir/$local_command"
57 IFS="${local_ifs:-$(printf ' \t\n')}"
58 return 0
60 done
61 # not found
62 IFS="${local_ifs:-$(printf ' \t\n')}"
63 return 1
66 # default parameters
67 cpu=""
68 interp_prefix="/usr/gnemul/qemu-%M"
69 static="no"
70 sparc_cpu=""
71 cross_prefix=""
72 cc="gcc"
73 audio_drv_list=""
74 audio_card_list="ac97 es1370 sb16"
75 audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus"
76 block_drv_whitelist=""
77 host_cc="gcc"
78 ar="ar"
79 make="make"
80 install="install"
81 objcopy="objcopy"
82 ld="ld"
83 strip="strip"
84 helper_cflags=""
85 libs_softmmu=""
86 libs_tools=""
87 audio_pt_int=""
88 audio_win_int=""
90 # parse CC options first
91 for opt do
92 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
93 case "$opt" in
94 --cross-prefix=*) cross_prefix="$optarg"
96 --cc=*) cc="$optarg"
98 --cpu=*) cpu="$optarg"
100 --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS"
102 --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS"
104 --sparc_cpu=*)
105 sparc_cpu="$optarg"
106 case $sparc_cpu in
107 v7|v8|v8plus|v8plusa)
108 cpu="sparc"
111 cpu="sparc64"
114 echo "undefined SPARC architecture. Exiting";
115 exit 1
117 esac
119 esac
120 done
121 # OS specific
122 # Using uname is really, really broken. Once we have the right set of checks
123 # we can eliminate it's usage altogether
125 cc="${cross_prefix}${cc}"
126 ar="${cross_prefix}${ar}"
127 objcopy="${cross_prefix}${objcopy}"
128 ld="${cross_prefix}${ld}"
129 strip="${cross_prefix}${strip}"
131 # default flags for all hosts
132 QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
133 CFLAGS="-g $CFLAGS"
134 QEMU_CFLAGS="-Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
135 QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
136 QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
137 QEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
138 QEMU_CFLAGS="-I. -I\$(SRC_PATH) $QEMU_CFLAGS"
139 LDFLAGS="-g $LDFLAGS"
141 gcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
142 gcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
143 gcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
144 gcc_flags="-fstack-protector-all $gcc_flags"
145 cat > $TMPC << EOF
146 int main(void) { return 0; }
148 for flag in $gcc_flags; do
149 if compile_prog "-Werror $QEMU_CFLAGS" "-Werror $flag" ; then
150 QEMU_CFLAGS="$flag $QEMU_CFLAGS"
152 done
154 # check that the C compiler works.
155 cat > $TMPC <<EOF
156 int main(void) {}
159 if compile_object ; then
160 : C compiler works ok
161 else
162 echo "ERROR: \"$cc\" either does not exist or does not work"
163 exit 1
166 check_define() {
167 cat > $TMPC <<EOF
168 #if !defined($1)
169 #error Not defined
170 #endif
171 int main(void) { return 0; }
173 compile_object
176 if test ! -z "$cpu" ; then
177 # command line argument
179 elif check_define __i386__ ; then
180 cpu="i386"
181 elif check_define __x86_64__ ; then
182 cpu="x86_64"
183 elif check_define __sparc__ ; then
184 # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
185 # They must be specified using --sparc_cpu
186 if check_define __arch64__ ; then
187 cpu="sparc64"
188 else
189 cpu="sparc"
191 elif check_define _ARCH_PPC ; then
192 if check_define _ARCH_PPC64 ; then
193 cpu="ppc64"
194 else
195 cpu="ppc"
197 elif check_define __mips__ ; then
198 cpu="mips"
199 elif check_define __ia64__ ; then
200 cpu="ia64"
201 elif check_define __s390__ ; then
202 if check_define __s390x__ ; then
203 cpu="s390x"
204 else
205 cpu="s390"
207 else
208 cpu=`uname -m`
211 target_list=""
212 case "$cpu" in
213 alpha|cris|ia64|m68k|microblaze|ppc|ppc64|sparc64)
214 cpu="$cpu"
216 i386|i486|i586|i686|i86pc|BePC)
217 cpu="i386"
219 x86_64|amd64)
220 cpu="x86_64"
222 armv*b)
223 cpu="armv4b"
225 armv*l)
226 cpu="armv4l"
228 parisc|parisc64)
229 cpu="hppa"
231 mips*)
232 cpu="mips"
234 s390)
235 cpu="s390"
237 s390x)
238 cpu="s390x"
240 sparc|sun4[cdmuv])
241 cpu="sparc"
244 echo "Unsupported CPU = $cpu"
245 exit 1
247 esac
249 # Default value for a variable defining feature "foo".
250 # * foo="no" feature will only be used if --enable-foo arg is given
251 # * foo="" feature will be searched for, and if found, will be used
252 # unless --disable-foo is given
253 # * foo="yes" this value will only be set by --enable-foo flag.
254 # feature will searched for,
255 # if not found, configure exits with error
257 # Always add --enable-foo and --disable-foo command line args.
258 # Distributions want to ensure that several features are compiled in, and it
259 # is impossible without a --enable-foo that exits if a feature is not found.
261 bluez=""
262 brlapi=""
263 curl=""
264 curses=""
265 docs=""
266 fdt=""
267 kvm=""
268 kvm_para=""
269 nptl=""
270 sdl=""
271 sparse="no"
272 uuid=""
273 vde=""
274 vnc_tls=""
275 vnc_sasl=""
276 vnc_jpeg=""
277 vnc_png=""
278 vnc_thread="no"
279 xen=""
280 linux_aio=""
281 attr=""
282 vhost_net=""
284 gprof="no"
285 debug_tcg="no"
286 debug_mon="no"
287 debug="no"
288 strip_opt="yes"
289 bigendian="no"
290 mingw32="no"
291 EXESUF=""
292 prefix="/usr/local"
293 mandir="\${prefix}/share/man"
294 datadir="\${prefix}/share/qemu"
295 docdir="\${prefix}/share/doc/qemu"
296 bindir="\${prefix}/bin"
297 sysconfdir="\${prefix}/etc"
298 confsuffix="/qemu"
299 slirp="yes"
300 fmod_lib=""
301 fmod_inc=""
302 oss_lib=""
303 bsd="no"
304 linux="no"
305 solaris="no"
306 profiler="no"
307 cocoa="no"
308 softmmu="yes"
309 linux_user="no"
310 darwin_user="no"
311 bsd_user="no"
312 guest_base=""
313 uname_release=""
314 io_thread="no"
315 mixemu="no"
316 kerneldir=""
317 aix="no"
318 blobs="yes"
319 pkgversion=""
320 check_utests="no"
321 user_pie="no"
322 zero_malloc=""
323 trace_backend="nop"
324 trace_file="trace"
326 # OS specific
327 if check_define __linux__ ; then
328 targetos="Linux"
329 elif check_define _WIN32 ; then
330 targetos='MINGW32'
331 elif check_define __OpenBSD__ ; then
332 targetos='OpenBSD'
333 elif check_define __sun__ ; then
334 targetos='SunOS'
335 else
336 targetos=`uname -s`
339 case $targetos in
340 CYGWIN*)
341 mingw32="yes"
342 QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
343 audio_possible_drivers="winwave sdl"
344 audio_drv_list="winwave"
346 MINGW32*)
347 mingw32="yes"
348 audio_possible_drivers="winwave dsound sdl fmod"
349 audio_drv_list="winwave"
351 GNU/kFreeBSD)
352 bsd="yes"
353 audio_drv_list="oss"
354 audio_possible_drivers="oss sdl esd pa"
356 FreeBSD)
357 bsd="yes"
358 make="gmake"
359 audio_drv_list="oss"
360 audio_possible_drivers="oss sdl esd pa"
361 # needed for kinfo_getvmmap(3) in libutil.h
362 LIBS="-lutil $LIBS"
364 DragonFly)
365 bsd="yes"
366 make="gmake"
367 audio_drv_list="oss"
368 audio_possible_drivers="oss sdl esd pa"
370 NetBSD)
371 bsd="yes"
372 make="gmake"
373 audio_drv_list="oss"
374 audio_possible_drivers="oss sdl esd"
375 oss_lib="-lossaudio"
377 OpenBSD)
378 bsd="yes"
379 make="gmake"
380 audio_drv_list="oss"
381 audio_possible_drivers="oss sdl esd"
382 oss_lib="-lossaudio"
384 Darwin)
385 bsd="yes"
386 darwin="yes"
387 # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can
388 # run 64-bit userspace code
389 if [ "$cpu" = "i386" ] ; then
390 is_x86_64=`sysctl -n hw.optional.x86_64`
391 [ "$is_x86_64" = "1" ] && cpu=x86_64
393 if [ "$cpu" = "x86_64" ] ; then
394 QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
395 LDFLAGS="-arch x86_64 $LDFLAGS"
396 else
397 QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS"
399 darwin_user="yes"
400 cocoa="yes"
401 audio_drv_list="coreaudio"
402 audio_possible_drivers="coreaudio sdl fmod"
403 LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
404 libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
406 SunOS)
407 solaris="yes"
408 make="gmake"
409 install="ginstall"
410 ld="gld"
411 needs_libsunmath="no"
412 solarisrev=`uname -r | cut -f2 -d.`
413 # have to select again, because `uname -m` returns i86pc
414 # even on an x86_64 box.
415 solariscpu=`isainfo -k`
416 if test "${solariscpu}" = "amd64" ; then
417 cpu="x86_64"
419 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
420 if test "$solarisrev" -le 9 ; then
421 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
422 needs_libsunmath="yes"
423 QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS"
424 LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS"
425 LIBS="-lsunmath $LIBS"
426 else
427 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
428 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
429 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
430 echo "Studio 11 can be downloaded from www.sun.com."
431 exit 1
435 if test -f /usr/include/sys/soundcard.h ; then
436 audio_drv_list="oss"
438 audio_possible_drivers="oss sdl"
439 # needed for CMSG_ macros in sys/socket.h
440 QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
441 # needed for TIOCWIN* defines in termios.h
442 QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
443 QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
444 LIBS="-lsocket -lnsl -lresolv $LIBS"
446 AIX)
447 aix="yes"
448 make="gmake"
451 audio_drv_list="oss"
452 audio_possible_drivers="oss alsa sdl esd pa"
453 linux="yes"
454 linux_user="yes"
455 usb="linux"
456 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
457 audio_possible_drivers="$audio_possible_drivers fmod"
460 esac
462 if [ "$bsd" = "yes" ] ; then
463 if [ "$darwin" != "yes" ] ; then
464 usb="bsd"
466 bsd_user="yes"
469 if test "$mingw32" = "yes" ; then
470 EXESUF=".exe"
471 QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
472 # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
473 QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
474 LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
475 prefix="c:/Program Files/Qemu"
476 mandir="\${prefix}"
477 datadir="\${prefix}"
478 docdir="\${prefix}"
479 bindir="\${prefix}"
480 sysconfdir="\${prefix}"
481 confsuffix=""
484 # find source path
485 source_path=`dirname "$0"`
486 source_path_used="no"
487 workdir=`pwd`
488 if [ -z "$source_path" ]; then
489 source_path=$workdir
490 else
491 source_path=`cd "$source_path"; pwd`
493 [ -f "$workdir/vl.c" ] || source_path_used="yes"
495 werror=""
497 for opt do
498 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
499 case "$opt" in
500 --help|-h) show_help=yes
502 --prefix=*) prefix="$optarg"
504 --interp-prefix=*) interp_prefix="$optarg"
506 --source-path=*) source_path="$optarg"
507 source_path_used="yes"
509 --cross-prefix=*)
511 --cc=*)
513 --host-cc=*) host_cc="$optarg"
515 --make=*) make="$optarg"
517 --install=*) install="$optarg"
519 --extra-cflags=*)
521 --extra-ldflags=*)
523 --cpu=*)
525 --target-list=*) target_list="$optarg"
527 --trace-backend=*) trace_backend="$optarg"
529 --trace-file=*) trace_file="$optarg"
531 --enable-gprof) gprof="yes"
533 --static)
534 static="yes"
535 LDFLAGS="-static $LDFLAGS"
537 --mandir=*) mandir="$optarg"
539 --bindir=*) bindir="$optarg"
541 --datadir=*) datadir="$optarg"
543 --docdir=*) docdir="$optarg"
545 --sysconfdir=*) sysconfdir="$optarg"
547 --disable-sdl) sdl="no"
549 --enable-sdl) sdl="yes"
551 --fmod-lib=*) fmod_lib="$optarg"
553 --fmod-inc=*) fmod_inc="$optarg"
555 --oss-lib=*) oss_lib="$optarg"
557 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
559 --audio-drv-list=*) audio_drv_list="$optarg"
561 --block-drv-whitelist=*) block_drv_whitelist=`echo "$optarg" | sed -e 's/,/ /g'`
563 --enable-debug-tcg) debug_tcg="yes"
565 --disable-debug-tcg) debug_tcg="no"
567 --enable-debug-mon) debug_mon="yes"
569 --disable-debug-mon) debug_mon="no"
571 --enable-debug)
572 # Enable debugging options that aren't excessively noisy
573 debug_tcg="yes"
574 debug_mon="yes"
575 debug="yes"
576 strip_opt="no"
578 --enable-sparse) sparse="yes"
580 --disable-sparse) sparse="no"
582 --disable-strip) strip_opt="no"
584 --disable-vnc-tls) vnc_tls="no"
586 --enable-vnc-tls) vnc_tls="yes"
588 --disable-vnc-sasl) vnc_sasl="no"
590 --enable-vnc-sasl) vnc_sasl="yes"
592 --disable-vnc-jpeg) vnc_jpeg="no"
594 --enable-vnc-jpeg) vnc_jpeg="yes"
596 --disable-vnc-png) vnc_png="no"
598 --enable-vnc-png) vnc_png="yes"
600 --disable-vnc-thread) vnc_thread="no"
602 --enable-vnc-thread) vnc_thread="yes"
604 --disable-slirp) slirp="no"
606 --disable-uuid) uuid="no"
608 --enable-uuid) uuid="yes"
610 --disable-vde) vde="no"
612 --enable-vde) vde="yes"
614 --disable-xen) xen="no"
616 --enable-xen) xen="yes"
618 --disable-brlapi) brlapi="no"
620 --enable-brlapi) brlapi="yes"
622 --disable-bluez) bluez="no"
624 --enable-bluez) bluez="yes"
626 --disable-kvm) kvm="no"
628 --enable-kvm) kvm="yes"
630 --enable-profiler) profiler="yes"
632 --enable-cocoa)
633 cocoa="yes" ;
634 sdl="no" ;
635 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
637 --disable-system) softmmu="no"
639 --enable-system) softmmu="yes"
641 --disable-user)
642 linux_user="no" ;
643 bsd_user="no" ;
644 darwin_user="no"
646 --enable-user) ;;
647 --disable-linux-user) linux_user="no"
649 --enable-linux-user) linux_user="yes"
651 --disable-darwin-user) darwin_user="no"
653 --enable-darwin-user) darwin_user="yes"
655 --disable-bsd-user) bsd_user="no"
657 --enable-bsd-user) bsd_user="yes"
659 --enable-guest-base) guest_base="yes"
661 --disable-guest-base) guest_base="no"
663 --enable-user-pie) user_pie="yes"
665 --disable-user-pie) user_pie="no"
667 --enable-uname-release=*) uname_release="$optarg"
669 --sparc_cpu=*)
671 --enable-werror) werror="yes"
673 --disable-werror) werror="no"
675 --disable-curses) curses="no"
677 --enable-curses) curses="yes"
679 --disable-curl) curl="no"
681 --enable-curl) curl="yes"
683 --disable-fdt) fdt="no"
685 --enable-fdt) fdt="yes"
687 --disable-check-utests) check_utests="no"
689 --enable-check-utests) check_utests="yes"
691 --disable-nptl) nptl="no"
693 --enable-nptl) nptl="yes"
695 --enable-mixemu) mixemu="yes"
697 --disable-linux-aio) linux_aio="no"
699 --enable-linux-aio) linux_aio="yes"
701 --disable-attr) attr="no"
703 --enable-attr) attr="yes"
705 --enable-io-thread) io_thread="yes"
707 --disable-blobs) blobs="no"
709 --kerneldir=*) kerneldir="$optarg"
711 --with-pkgversion=*) pkgversion=" ($optarg)"
713 --disable-docs) docs="no"
715 --enable-docs) docs="yes"
717 --disable-vhost-net) vhost_net="no"
719 --enable-vhost-net) vhost_net="yes"
721 --*dir)
723 *) echo "ERROR: unknown option $opt"; show_help="yes"
725 esac
726 done
729 # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
730 # QEMU_CFLAGS/LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
732 host_guest_base="no"
733 case "$cpu" in
734 sparc) case $sparc_cpu in
735 v7|v8)
736 QEMU_CFLAGS="-mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
738 v8plus|v8plusa)
739 QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
741 *) # sparc_cpu not defined in the command line
742 QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_v8plus__ $QEMU_CFLAGS"
743 esac
744 LDFLAGS="-m32 $LDFLAGS"
745 QEMU_CFLAGS="-m32 -ffixed-g2 -ffixed-g3 $QEMU_CFLAGS"
746 if test "$solaris" = "no" ; then
747 QEMU_CFLAGS="-ffixed-g1 -ffixed-g6 $QEMU_CFLAGS"
748 helper_cflags="-ffixed-i0"
751 sparc64)
752 QEMU_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__ $QEMU_CFLAGS"
753 LDFLAGS="-m64 $LDFLAGS"
754 QEMU_CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $QEMU_CFLAGS"
755 if test "$solaris" != "no" ; then
756 QEMU_CFLAGS="-ffixed-g1 $QEMU_CFLAGS"
759 s390)
760 QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS"
761 LDFLAGS="-m31 $LDFLAGS"
762 host_guest_base="yes"
764 s390x)
765 QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS"
766 LDFLAGS="-m64 $LDFLAGS"
767 host_guest_base="yes"
769 i386)
770 QEMU_CFLAGS="-m32 $QEMU_CFLAGS"
771 LDFLAGS="-m32 $LDFLAGS"
772 helper_cflags="-fomit-frame-pointer"
773 host_guest_base="yes"
775 x86_64)
776 QEMU_CFLAGS="-m64 $QEMU_CFLAGS"
777 LDFLAGS="-m64 $LDFLAGS"
778 host_guest_base="yes"
780 arm*)
781 host_guest_base="yes"
783 ppc*)
784 host_guest_base="yes"
786 mips*)
787 host_guest_base="yes"
789 ia64*)
790 host_guest_base="yes"
792 hppa*)
793 host_guest_base="yes"
795 esac
797 [ -z "$guest_base" ] && guest_base="$host_guest_base"
799 if test x"$show_help" = x"yes" ; then
800 cat << EOF
802 Usage: configure [options]
803 Options: [defaults in brackets after descriptions]
806 echo "Standard options:"
807 echo " --help print this message"
808 echo " --prefix=PREFIX install in PREFIX [$prefix]"
809 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
810 echo " use %M for cpu name [$interp_prefix]"
811 echo " --target-list=LIST set target list [$target_list]"
812 echo ""
813 echo "Advanced options (experts only):"
814 echo " --source-path=PATH path of source code [$source_path]"
815 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
816 echo " --cc=CC use C compiler CC [$cc]"
817 echo " --host-cc=CC use C compiler CC [$host_cc] for code run at"
818 echo " build time"
819 echo " --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS"
820 echo " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS"
821 echo " --make=MAKE use specified make [$make]"
822 echo " --install=INSTALL use specified install [$install]"
823 echo " --static enable static build [$static]"
824 echo " --mandir=PATH install man pages in PATH"
825 echo " --datadir=PATH install firmware in PATH"
826 echo " --docdir=PATH install documentation in PATH"
827 echo " --bindir=PATH install binaries in PATH"
828 echo " --sysconfdir=PATH install config in PATH/qemu"
829 echo " --enable-debug-tcg enable TCG debugging"
830 echo " --disable-debug-tcg disable TCG debugging (default)"
831 echo " --enable-debug enable common debug build options"
832 echo " --enable-sparse enable sparse checker"
833 echo " --disable-sparse disable sparse checker (default)"
834 echo " --disable-strip disable stripping binaries"
835 echo " --disable-werror disable compilation abort on warning"
836 echo " --disable-sdl disable SDL"
837 echo " --enable-sdl enable SDL"
838 echo " --enable-cocoa enable COCOA (Mac OS X only)"
839 echo " --audio-drv-list=LIST set audio drivers list:"
840 echo " Available drivers: $audio_possible_drivers"
841 echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
842 echo " Available cards: $audio_possible_cards"
843 echo " --block-drv-whitelist=L set block driver whitelist"
844 echo " (affects only QEMU, not qemu-img)"
845 echo " --enable-mixemu enable mixer emulation"
846 echo " --disable-xen disable xen backend driver support"
847 echo " --enable-xen enable xen backend driver support"
848 echo " --disable-brlapi disable BrlAPI"
849 echo " --enable-brlapi enable BrlAPI"
850 echo " --disable-vnc-tls disable TLS encryption for VNC server"
851 echo " --enable-vnc-tls enable TLS encryption for VNC server"
852 echo " --disable-vnc-sasl disable SASL encryption for VNC server"
853 echo " --enable-vnc-sasl enable SASL encryption for VNC server"
854 echo " --disable-vnc-jpeg disable JPEG lossy compression for VNC server"
855 echo " --enable-vnc-jpeg enable JPEG lossy compression for VNC server"
856 echo " --disable-vnc-png disable PNG compression for VNC server (default)"
857 echo " --enable-vnc-png enable PNG compression for VNC server"
858 echo " --disable-vnc-thread disable threaded VNC server"
859 echo " --enable-vnc-thread enable threaded VNC server"
860 echo " --disable-curses disable curses output"
861 echo " --enable-curses enable curses output"
862 echo " --disable-curl disable curl connectivity"
863 echo " --enable-curl enable curl connectivity"
864 echo " --disable-fdt disable fdt device tree"
865 echo " --enable-fdt enable fdt device tree"
866 echo " --disable-check-utests disable check unit-tests"
867 echo " --enable-check-utests enable check unit-tests"
868 echo " --disable-bluez disable bluez stack connectivity"
869 echo " --enable-bluez enable bluez stack connectivity"
870 echo " --disable-kvm disable KVM acceleration support"
871 echo " --enable-kvm enable KVM acceleration support"
872 echo " --disable-nptl disable usermode NPTL support"
873 echo " --enable-nptl enable usermode NPTL support"
874 echo " --enable-system enable all system emulation targets"
875 echo " --disable-system disable all system emulation targets"
876 echo " --enable-user enable supported user emulation targets"
877 echo " --disable-user disable all user emulation targets"
878 echo " --enable-linux-user enable all linux usermode emulation targets"
879 echo " --disable-linux-user disable all linux usermode emulation targets"
880 echo " --enable-darwin-user enable all darwin usermode emulation targets"
881 echo " --disable-darwin-user disable all darwin usermode emulation targets"
882 echo " --enable-bsd-user enable all BSD usermode emulation targets"
883 echo " --disable-bsd-user disable all BSD usermode emulation targets"
884 echo " --enable-guest-base enable GUEST_BASE support for usermode"
885 echo " emulation targets"
886 echo " --disable-guest-base disable GUEST_BASE support"
887 echo " --enable-user-pie build usermode emulation targets as PIE"
888 echo " --disable-user-pie do not build usermode emulation targets as PIE"
889 echo " --fmod-lib path to FMOD library"
890 echo " --fmod-inc path to FMOD includes"
891 echo " --oss-lib path to OSS library"
892 echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
893 echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
894 echo " --disable-uuid disable uuid support"
895 echo " --enable-uuid enable uuid support"
896 echo " --disable-vde disable support for vde network"
897 echo " --enable-vde enable support for vde network"
898 echo " --disable-linux-aio disable Linux AIO support"
899 echo " --enable-linux-aio enable Linux AIO support"
900 echo " --disable-attr disables attr and xattr support"
901 echo " --enable-attr enable attr and xattr support"
902 echo " --enable-io-thread enable IO thread"
903 echo " --disable-blobs disable installing provided firmware blobs"
904 echo " --kerneldir=PATH look for kernel includes in PATH"
905 echo " --enable-docs enable documentation build"
906 echo " --disable-docs disable documentation build"
907 echo " --disable-vhost-net disable vhost-net acceleration support"
908 echo " --enable-vhost-net enable vhost-net acceleration support"
909 echo " --trace-backend=B Trace backend nop simple ust"
910 echo " --trace-file=NAME Full PATH,NAME of file to store traces"
911 echo " Default:trace-<pid>"
912 echo ""
913 echo "NOTE: The object files are built at the place where configure is launched"
914 exit 1
918 # Solaris specific configure tool chain decisions
920 if test "$solaris" = "yes" ; then
921 if has $install; then
923 else
924 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
925 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
926 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
927 exit 1
929 if test "`path_of $install`" = "/usr/sbin/install" ; then
930 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
931 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
932 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
933 exit 1
935 if has ar; then
937 else
938 echo "Error: No path includes ar"
939 if test -f /usr/ccs/bin/ar ; then
940 echo "Add /usr/ccs/bin to your path and rerun configure"
942 exit 1
947 if test -z "$target_list" ; then
948 # these targets are portable
949 if [ "$softmmu" = "yes" ] ; then
950 target_list="\
951 i386-softmmu \
952 x86_64-softmmu \
953 arm-softmmu \
954 cris-softmmu \
955 m68k-softmmu \
956 microblaze-softmmu \
957 mips-softmmu \
958 mipsel-softmmu \
959 mips64-softmmu \
960 mips64el-softmmu \
961 ppc-softmmu \
962 ppcemb-softmmu \
963 ppc64-softmmu \
964 sh4-softmmu \
965 sh4eb-softmmu \
966 sparc-softmmu \
967 sparc64-softmmu \
970 # the following are Linux specific
971 if [ "$linux_user" = "yes" ] ; then
972 target_list="${target_list}\
973 i386-linux-user \
974 x86_64-linux-user \
975 alpha-linux-user \
976 arm-linux-user \
977 armeb-linux-user \
978 cris-linux-user \
979 m68k-linux-user \
980 microblaze-linux-user \
981 mips-linux-user \
982 mipsel-linux-user \
983 ppc-linux-user \
984 ppc64-linux-user \
985 ppc64abi32-linux-user \
986 sh4-linux-user \
987 sh4eb-linux-user \
988 sparc-linux-user \
989 sparc64-linux-user \
990 sparc32plus-linux-user \
993 # the following are Darwin specific
994 if [ "$darwin_user" = "yes" ] ; then
995 target_list="$target_list i386-darwin-user ppc-darwin-user "
997 # the following are BSD specific
998 if [ "$bsd_user" = "yes" ] ; then
999 target_list="${target_list}\
1000 i386-bsd-user \
1001 x86_64-bsd-user \
1002 sparc-bsd-user \
1003 sparc64-bsd-user \
1006 else
1007 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
1009 if test -z "$target_list" ; then
1010 echo "No targets enabled"
1011 exit 1
1013 # see if system emulation was really requested
1014 case " $target_list " in
1015 *"-softmmu "*) softmmu=yes
1017 *) softmmu=no
1019 esac
1021 feature_not_found() {
1022 feature=$1
1024 echo "ERROR"
1025 echo "ERROR: User requested feature $feature"
1026 echo "ERROR: configure was not able to find it"
1027 echo "ERROR"
1028 exit 1;
1031 if test -z "$cross_prefix" ; then
1033 # ---
1034 # big/little endian test
1035 cat > $TMPC << EOF
1036 #include <inttypes.h>
1037 int main(int argc, char ** argv){
1038 volatile uint32_t i=0x01234567;
1039 return (*((uint8_t*)(&i))) == 0x67;
1043 if compile_prog "" "" ; then
1044 $TMPE && bigendian="yes"
1045 else
1046 echo big/little test failed
1049 else
1051 # if cross compiling, cannot launch a program, so make a static guess
1052 case "$cpu" in
1053 armv4b|hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
1054 bigendian=yes
1056 esac
1060 # host long bits test
1061 hostlongbits="32"
1062 case "$cpu" in
1063 x86_64|alpha|ia64|sparc64|ppc64|s390x)
1064 hostlongbits=64
1066 esac
1069 ##########################################
1070 # NPTL probe
1072 if test "$nptl" != "no" ; then
1073 cat > $TMPC <<EOF
1074 #include <sched.h>
1075 #include <linux/futex.h>
1076 void foo()
1078 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
1079 #error bork
1080 #endif
1084 if compile_object ; then
1085 nptl=yes
1086 else
1087 if test "$nptl" = "yes" ; then
1088 feature_not_found "nptl"
1090 nptl=no
1094 ##########################################
1095 # zlib check
1097 cat > $TMPC << EOF
1098 #include <zlib.h>
1099 int main(void) { zlibVersion(); return 0; }
1101 if compile_prog "" "-lz" ; then
1103 else
1104 echo
1105 echo "Error: zlib check failed"
1106 echo "Make sure to have the zlib libs and headers installed."
1107 echo
1108 exit 1
1111 ##########################################
1112 # xen probe
1114 if test "$xen" != "no" ; then
1115 xen_libs="-lxenstore -lxenctrl -lxenguest"
1116 cat > $TMPC <<EOF
1117 #include <xenctrl.h>
1118 #include <xs.h>
1119 int main(void) { xs_daemon_open(); xc_interface_open(); return 0; }
1121 if compile_prog "" "$xen_libs" ; then
1122 xen=yes
1123 libs_softmmu="$xen_libs $libs_softmmu"
1124 else
1125 if test "$xen" = "yes" ; then
1126 feature_not_found "xen"
1128 xen=no
1132 ##########################################
1133 # pkgconfig probe
1135 pkgconfig="${cross_prefix}pkg-config"
1136 if ! has $pkgconfig; then
1137 # likely not cross compiling, or hope for the best
1138 pkgconfig=pkg-config
1141 ##########################################
1142 # Sparse probe
1143 if test "$sparse" != "no" ; then
1144 if has cgcc; then
1145 sparse=yes
1146 else
1147 if test "$sparse" = "yes" ; then
1148 feature_not_found "sparse"
1150 sparse=no
1154 ##########################################
1155 # SDL probe
1157 # Look for sdl configuration program (pkg-config or sdl-config).
1158 # Prefer variant with cross prefix if cross compiling,
1159 # and favour pkg-config with sdl over sdl-config.
1160 if test -n "$cross_prefix" -a $pkgconfig != pkg-config && \
1161 $pkgconfig sdl --modversion >/dev/null 2>&1; then
1162 sdlconfig="$pkgconfig sdl"
1163 _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
1164 elif test -n "$cross_prefix" && has ${cross_prefix}sdl-config; then
1165 sdlconfig="${cross_prefix}sdl-config"
1166 _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
1167 elif $pkgconfig sdl --modversion >/dev/null 2>&1; then
1168 sdlconfig="$pkgconfig sdl"
1169 _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
1170 elif has sdl-config; then
1171 sdlconfig='sdl-config'
1172 _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
1173 else
1174 if test "$sdl" = "yes" ; then
1175 feature_not_found "sdl"
1177 sdl=no
1180 sdl_too_old=no
1181 if test "$sdl" != "no" ; then
1182 cat > $TMPC << EOF
1183 #include <SDL.h>
1184 #undef main /* We don't want SDL to override our main() */
1185 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
1187 sdl_cflags=`$sdlconfig --cflags 2> /dev/null`
1188 if test "$static" = "yes" ; then
1189 sdl_libs=`$sdlconfig --static-libs 2>/dev/null`
1190 else
1191 sdl_libs=`$sdlconfig --libs 2> /dev/null`
1193 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
1194 if test "$_sdlversion" -lt 121 ; then
1195 sdl_too_old=yes
1196 else
1197 if test "$cocoa" = "no" ; then
1198 sdl=yes
1202 # static link with sdl ? (note: sdl.pc's --static --libs is broken)
1203 if test "$sdl" = "yes" -a "$static" = "yes" ; then
1204 if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
1205 sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
1206 sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
1208 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
1210 else
1211 sdl=no
1213 fi # static link
1214 else # sdl not found
1215 if test "$sdl" = "yes" ; then
1216 feature_not_found "sdl"
1218 sdl=no
1219 fi # sdl compile test
1222 if test "$sdl" = "yes" ; then
1223 cat > $TMPC <<EOF
1224 #include <SDL.h>
1225 #if defined(SDL_VIDEO_DRIVER_X11)
1226 #include <X11/XKBlib.h>
1227 #else
1228 #error No x11 support
1229 #endif
1230 int main(void) { return 0; }
1232 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
1233 sdl_libs="$sdl_libs -lX11"
1235 if test "$mingw32" = "yes" ; then
1236 sdl_libs="`echo $sdl_libs | sed s/-mwindows//g` -mconsole"
1238 libs_softmmu="$sdl_libs $libs_softmmu"
1241 ##########################################
1242 # VNC TLS detection
1243 if test "$vnc_tls" != "no" ; then
1244 cat > $TMPC <<EOF
1245 #include <gnutls/gnutls.h>
1246 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
1248 vnc_tls_cflags=`$pkgconfig --cflags gnutls 2> /dev/null`
1249 vnc_tls_libs=`$pkgconfig --libs gnutls 2> /dev/null`
1250 if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
1251 vnc_tls=yes
1252 libs_softmmu="$vnc_tls_libs $libs_softmmu"
1253 else
1254 if test "$vnc_tls" = "yes" ; then
1255 feature_not_found "vnc-tls"
1257 vnc_tls=no
1261 ##########################################
1262 # VNC SASL detection
1263 if test "$vnc_sasl" != "no" ; then
1264 cat > $TMPC <<EOF
1265 #include <sasl/sasl.h>
1266 #include <stdio.h>
1267 int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
1269 # Assuming Cyrus-SASL installed in /usr prefix
1270 vnc_sasl_cflags=""
1271 vnc_sasl_libs="-lsasl2"
1272 if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
1273 vnc_sasl=yes
1274 libs_softmmu="$vnc_sasl_libs $libs_softmmu"
1275 else
1276 if test "$vnc_sasl" = "yes" ; then
1277 feature_not_found "vnc-sasl"
1279 vnc_sasl=no
1283 ##########################################
1284 # VNC JPEG detection
1285 if test "$vnc_jpeg" != "no" ; then
1286 cat > $TMPC <<EOF
1287 #include <stdio.h>
1288 #include <jpeglib.h>
1289 int main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
1291 vnc_jpeg_cflags=""
1292 vnc_jpeg_libs="-ljpeg"
1293 if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
1294 vnc_jpeg=yes
1295 libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
1296 else
1297 if test "$vnc_jpeg" = "yes" ; then
1298 feature_not_found "vnc-jpeg"
1300 vnc_jpeg=no
1304 ##########################################
1305 # VNC PNG detection
1306 if test "$vnc_png" != "no" ; then
1307 cat > $TMPC <<EOF
1308 //#include <stdio.h>
1309 #include <png.h>
1310 int main(void) {
1311 png_structp png_ptr;
1312 png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
1313 return 0;
1316 vnc_png_cflags=""
1317 vnc_png_libs="-lpng"
1318 if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
1319 vnc_png=yes
1320 libs_softmmu="$vnc_png_libs $libs_softmmu"
1321 else
1322 if test "$vnc_png" = "yes" ; then
1323 feature_not_found "vnc-png"
1325 vnc_png=no
1329 ##########################################
1330 # fnmatch() probe, used for ACL routines
1331 fnmatch="no"
1332 cat > $TMPC << EOF
1333 #include <fnmatch.h>
1334 int main(void)
1336 fnmatch("foo", "foo", 0);
1337 return 0;
1340 if compile_prog "" "" ; then
1341 fnmatch="yes"
1344 ##########################################
1345 # uuid_generate() probe, used for vdi block driver
1346 if test "$uuid" != "no" ; then
1347 uuid_libs="-luuid"
1348 cat > $TMPC << EOF
1349 #include <uuid/uuid.h>
1350 int main(void)
1352 uuid_t my_uuid;
1353 uuid_generate(my_uuid);
1354 return 0;
1357 if compile_prog "" "$uuid_libs" ; then
1358 uuid="yes"
1359 libs_softmmu="$uuid_libs $libs_softmmu"
1360 libs_tools="$uuid_libs $libs_tools"
1361 else
1362 if test "$uuid" = "yes" ; then
1363 feature_not_found "uuid"
1365 uuid=no
1369 ##########################################
1370 # vde libraries probe
1371 if test "$vde" != "no" ; then
1372 vde_libs="-lvdeplug"
1373 cat > $TMPC << EOF
1374 #include <libvdeplug.h>
1375 int main(void)
1377 struct vde_open_args a = {0, 0, 0};
1378 vde_open("", "", &a);
1379 return 0;
1382 if compile_prog "" "$vde_libs" ; then
1383 vde=yes
1384 libs_softmmu="$vde_libs $libs_softmmu"
1385 libs_tools="$vde_libs $libs_tools"
1386 else
1387 if test "$vde" = "yes" ; then
1388 feature_not_found "vde"
1390 vde=no
1394 ##########################################
1395 # Sound support libraries probe
1397 audio_drv_probe()
1399 drv=$1
1400 hdr=$2
1401 lib=$3
1402 exp=$4
1403 cfl=$5
1404 cat > $TMPC << EOF
1405 #include <$hdr>
1406 int main(void) { $exp }
1408 if compile_prog "$cfl" "$lib" ; then
1410 else
1411 echo
1412 echo "Error: $drv check failed"
1413 echo "Make sure to have the $drv libs and headers installed."
1414 echo
1415 exit 1
1419 audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
1420 for drv in $audio_drv_list; do
1421 case $drv in
1422 alsa)
1423 audio_drv_probe $drv alsa/asoundlib.h -lasound \
1424 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
1425 libs_softmmu="-lasound $libs_softmmu"
1428 fmod)
1429 if test -z $fmod_lib || test -z $fmod_inc; then
1430 echo
1431 echo "Error: You must specify path to FMOD library and headers"
1432 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1433 echo
1434 exit 1
1436 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1437 libs_softmmu="$fmod_lib $libs_softmmu"
1440 esd)
1441 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
1442 libs_softmmu="-lesd $libs_softmmu"
1443 audio_pt_int="yes"
1447 audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \
1448 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
1449 libs_softmmu="-lpulse -lpulse-simple $libs_softmmu"
1450 audio_pt_int="yes"
1453 coreaudio)
1454 libs_softmmu="-framework CoreAudio $libs_softmmu"
1457 dsound)
1458 libs_softmmu="-lole32 -ldxguid $libs_softmmu"
1459 audio_win_int="yes"
1462 oss)
1463 libs_softmmu="$oss_lib $libs_softmmu"
1466 sdl|wav)
1467 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1470 winwave)
1471 libs_softmmu="-lwinmm $libs_softmmu"
1472 audio_win_int="yes"
1476 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
1477 echo
1478 echo "Error: Unknown driver '$drv' selected"
1479 echo "Possible drivers are: $audio_possible_drivers"
1480 echo
1481 exit 1
1484 esac
1485 done
1487 ##########################################
1488 # BrlAPI probe
1490 if test "$brlapi" != "no" ; then
1491 brlapi_libs="-lbrlapi"
1492 cat > $TMPC << EOF
1493 #include <brlapi.h>
1494 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1496 if compile_prog "" "$brlapi_libs" ; then
1497 brlapi=yes
1498 libs_softmmu="$brlapi_libs $libs_softmmu"
1499 else
1500 if test "$brlapi" = "yes" ; then
1501 feature_not_found "brlapi"
1503 brlapi=no
1507 ##########################################
1508 # curses probe
1509 curses_list="-lncurses -lcurses"
1511 if test "$curses" != "no" ; then
1512 curses_found=no
1513 cat > $TMPC << EOF
1514 #include <curses.h>
1515 #ifdef __OpenBSD__
1516 #define resize_term resizeterm
1517 #endif
1518 int main(void) { resize_term(0, 0); return curses_version(); }
1520 for curses_lib in $curses_list; do
1521 if compile_prog "" "$curses_lib" ; then
1522 curses_found=yes
1523 libs_softmmu="$curses_lib $libs_softmmu"
1524 break
1526 done
1527 if test "$curses_found" = "yes" ; then
1528 curses=yes
1529 else
1530 if test "$curses" = "yes" ; then
1531 feature_not_found "curses"
1533 curses=no
1537 ##########################################
1538 # curl probe
1540 if $pkgconfig libcurl --modversion >/dev/null 2>&1; then
1541 curlconfig="$pkgconfig libcurl"
1542 else
1543 curlconfig=curl-config
1546 if test "$curl" != "no" ; then
1547 cat > $TMPC << EOF
1548 #include <curl/curl.h>
1549 int main(void) { return curl_easy_init(); }
1551 curl_cflags=`$curlconfig --cflags 2>/dev/null`
1552 curl_libs=`$curlconfig --libs 2>/dev/null`
1553 if compile_prog "$curl_cflags" "$curl_libs" ; then
1554 curl=yes
1555 libs_tools="$curl_libs $libs_tools"
1556 libs_softmmu="$curl_libs $libs_softmmu"
1557 else
1558 if test "$curl" = "yes" ; then
1559 feature_not_found "curl"
1561 curl=no
1563 fi # test "$curl"
1565 ##########################################
1566 # check framework probe
1568 if test "$check_utests" != "no" ; then
1569 cat > $TMPC << EOF
1570 #include <check.h>
1571 int main(void) { suite_create("qemu test"); return 0; }
1573 check_libs=`$pkgconfig --libs check`
1574 if compile_prog "" $check_libs ; then
1575 check_utests=yes
1576 libs_tools="$check_libs $libs_tools"
1577 else
1578 if test "$check_utests" = "yes" ; then
1579 feature_not_found "check"
1581 check_utests=no
1583 fi # test "$check_utests"
1585 ##########################################
1586 # bluez support probe
1587 if test "$bluez" != "no" ; then
1588 cat > $TMPC << EOF
1589 #include <bluetooth/bluetooth.h>
1590 int main(void) { return bt_error(0); }
1592 bluez_cflags=`$pkgconfig --cflags bluez 2> /dev/null`
1593 bluez_libs=`$pkgconfig --libs bluez 2> /dev/null`
1594 if compile_prog "$bluez_cflags" "$bluez_libs" ; then
1595 bluez=yes
1596 libs_softmmu="$bluez_libs $libs_softmmu"
1597 else
1598 if test "$bluez" = "yes" ; then
1599 feature_not_found "bluez"
1601 bluez="no"
1605 ##########################################
1606 # kvm probe
1607 if test "$kvm" != "no" ; then
1608 cat > $TMPC <<EOF
1609 #include <linux/kvm.h>
1610 #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
1611 #error Invalid KVM version
1612 #endif
1613 #if !defined(KVM_CAP_USER_MEMORY)
1614 #error Missing KVM capability KVM_CAP_USER_MEMORY
1615 #endif
1616 #if !defined(KVM_CAP_SET_TSS_ADDR)
1617 #error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1618 #endif
1619 #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1620 #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1621 #endif
1622 int main(void) { return 0; }
1624 if test "$kerneldir" != "" ; then
1625 kvm_cflags=-I"$kerneldir"/include
1626 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1627 -a -d "$kerneldir/arch/x86/include" ; then
1628 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
1629 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1630 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
1631 elif test "$cpu" = "s390x" -a -d "$kerneldir/arch/s390/include" ; then
1632 kvm_cflags="$kvm_cflags -I$kerneldir/arch/s390/include"
1633 elif test -d "$kerneldir/arch/$cpu/include" ; then
1634 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1636 else
1637 kvm_cflags=`$pkgconfig --cflags kvm-kmod 2>/dev/null`
1639 if compile_prog "$kvm_cflags" "" ; then
1640 kvm=yes
1641 cat > $TMPC <<EOF
1642 #include <linux/kvm_para.h>
1643 int main(void) { return 0; }
1645 if compile_prog "$kvm_cflags" "" ; then
1646 kvm_para=yes
1648 else
1649 if test "$kvm" = "yes" ; then
1650 if has awk && has grep; then
1651 kvmerr=`LANG=C $cc $QEMU_CFLAGS -o $TMPE $kvm_cflags $TMPC 2>&1 \
1652 | grep "error: " \
1653 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1654 if test "$kvmerr" != "" ; then
1655 echo -e "${kvmerr}\n\
1656 NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \
1657 recent kvm-kmod from http://sourceforge.net/projects/kvm."
1660 feature_not_found "kvm"
1662 kvm=no
1666 ##########################################
1667 # test for vhost net
1669 if test "$vhost_net" != "no"; then
1670 if test "$kvm" != "no"; then
1671 cat > $TMPC <<EOF
1672 #include <linux/vhost.h>
1673 int main(void) { return 0; }
1675 if compile_prog "$kvm_cflags" "" ; then
1676 vhost_net=yes
1677 else
1678 if test "$vhost_net" = "yes" ; then
1679 feature_not_found "vhost-net"
1681 vhost_net=no
1683 else
1684 if test "$vhost_net" = "yes" ; then
1685 echo "NOTE: vhost-net feature requires KVM (--enable-kvm)."
1686 feature_not_found "vhost-net"
1688 vhost_net=no
1692 ##########################################
1693 # pthread probe
1694 PTHREADLIBS_LIST="-lpthread -lpthreadGC2"
1696 pthread=no
1697 cat > $TMPC << EOF
1698 #include <pthread.h>
1699 int main(void) { pthread_create(0,0,0,0); return 0; }
1701 for pthread_lib in $PTHREADLIBS_LIST; do
1702 if compile_prog "" "$pthread_lib" ; then
1703 pthread=yes
1704 LIBS="$pthread_lib $LIBS"
1705 break
1707 done
1709 if test "$mingw32" != yes -a "$pthread" = no; then
1710 echo
1711 echo "Error: pthread check failed"
1712 echo "Make sure to have the pthread libs and headers installed."
1713 echo
1714 exit 1
1717 ##########################################
1718 # linux-aio probe
1720 if test "$linux_aio" != "no" ; then
1721 cat > $TMPC <<EOF
1722 #include <libaio.h>
1723 #include <sys/eventfd.h>
1724 int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
1726 if compile_prog "" "-laio" ; then
1727 linux_aio=yes
1728 libs_softmmu="$libs_softmmu -laio"
1729 libs_tools="$libs_tools -laio"
1730 else
1731 if test "$linux_aio" = "yes" ; then
1732 feature_not_found "linux AIO"
1734 linux_aio=no
1738 ##########################################
1739 # attr probe
1741 if test "$attr" != "no" ; then
1742 cat > $TMPC <<EOF
1743 #include <stdio.h>
1744 #include <sys/types.h>
1745 #include <attr/xattr.h>
1746 int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
1748 if compile_prog "" "-lattr" ; then
1749 attr=yes
1750 LIBS="-lattr $LIBS"
1751 else
1752 if test "$attr" = "yes" ; then
1753 feature_not_found "ATTR"
1755 attr=no
1759 ##########################################
1760 # iovec probe
1761 cat > $TMPC <<EOF
1762 #include <sys/types.h>
1763 #include <sys/uio.h>
1764 #include <unistd.h>
1765 int main(void) { struct iovec iov; return 0; }
1767 iovec=no
1768 if compile_prog "" "" ; then
1769 iovec=yes
1772 ##########################################
1773 # preadv probe
1774 cat > $TMPC <<EOF
1775 #include <sys/types.h>
1776 #include <sys/uio.h>
1777 #include <unistd.h>
1778 int main(void) { preadv; }
1780 preadv=no
1781 if compile_prog "" "" ; then
1782 preadv=yes
1785 ##########################################
1786 # fdt probe
1787 if test "$fdt" != "no" ; then
1788 fdt_libs="-lfdt"
1789 cat > $TMPC << EOF
1790 int main(void) { return 0; }
1792 if compile_prog "" "$fdt_libs" ; then
1793 fdt=yes
1794 libs_softmmu="$fdt_libs $libs_softmmu"
1795 else
1796 if test "$fdt" = "yes" ; then
1797 feature_not_found "fdt"
1799 fdt=no
1804 # Check for xxxat() functions when we are building linux-user
1805 # emulator. This is done because older glibc versions don't
1806 # have syscall stubs for these implemented.
1808 atfile=no
1809 cat > $TMPC << EOF
1810 #define _ATFILE_SOURCE
1811 #include <sys/types.h>
1812 #include <fcntl.h>
1813 #include <unistd.h>
1816 main(void)
1818 /* try to unlink nonexisting file */
1819 return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1822 if compile_prog "" "" ; then
1823 atfile=yes
1826 # Check for inotify functions when we are building linux-user
1827 # emulator. This is done because older glibc versions don't
1828 # have syscall stubs for these implemented. In that case we
1829 # don't provide them even if kernel supports them.
1831 inotify=no
1832 cat > $TMPC << EOF
1833 #include <sys/inotify.h>
1836 main(void)
1838 /* try to start inotify */
1839 return inotify_init();
1842 if compile_prog "" "" ; then
1843 inotify=yes
1846 inotify1=no
1847 cat > $TMPC << EOF
1848 #include <sys/inotify.h>
1851 main(void)
1853 /* try to start inotify */
1854 return inotify_init1(0);
1857 if compile_prog "" "" ; then
1858 inotify1=yes
1861 # check if utimensat and futimens are supported
1862 utimens=no
1863 cat > $TMPC << EOF
1864 #define _ATFILE_SOURCE
1865 #define _GNU_SOURCE
1866 #include <stddef.h>
1867 #include <fcntl.h>
1869 int main(void)
1871 utimensat(AT_FDCWD, "foo", NULL, 0);
1872 futimens(0, NULL);
1873 return 0;
1876 if compile_prog "" "" ; then
1877 utimens=yes
1880 # check if pipe2 is there
1881 pipe2=no
1882 cat > $TMPC << EOF
1883 #define _GNU_SOURCE
1884 #include <unistd.h>
1885 #include <fcntl.h>
1887 int main(void)
1889 int pipefd[2];
1890 pipe2(pipefd, O_CLOEXEC);
1891 return 0;
1894 if compile_prog "" "" ; then
1895 pipe2=yes
1898 # check if accept4 is there
1899 accept4=no
1900 cat > $TMPC << EOF
1901 #define _GNU_SOURCE
1902 #include <sys/socket.h>
1903 #include <stddef.h>
1905 int main(void)
1907 accept4(0, NULL, NULL, SOCK_CLOEXEC);
1908 return 0;
1911 if compile_prog "" "" ; then
1912 accept4=yes
1915 # check if tee/splice is there. vmsplice was added same time.
1916 splice=no
1917 cat > $TMPC << EOF
1918 #define _GNU_SOURCE
1919 #include <unistd.h>
1920 #include <fcntl.h>
1921 #include <limits.h>
1923 int main(void)
1925 int len, fd;
1926 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
1927 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
1928 return 0;
1931 if compile_prog "" "" ; then
1932 splice=yes
1935 # check if eventfd is supported
1936 eventfd=no
1937 cat > $TMPC << EOF
1938 #include <sys/eventfd.h>
1940 int main(void)
1942 int efd = eventfd(0, 0);
1943 return 0;
1946 if compile_prog "" "" ; then
1947 eventfd=yes
1950 # check for fallocate
1951 fallocate=no
1952 cat > $TMPC << EOF
1953 #include <fcntl.h>
1955 int main(void)
1957 fallocate(0, 0, 0, 0);
1958 return 0;
1961 if compile_prog "$ARCH_CFLAGS" "" ; then
1962 fallocate=yes
1965 # check for dup3
1966 dup3=no
1967 cat > $TMPC << EOF
1968 #include <unistd.h>
1970 int main(void)
1972 dup3(0, 0, 0);
1973 return 0;
1976 if compile_prog "" "" ; then
1977 dup3=yes
1980 # Check if tools are available to build documentation.
1981 if test "$docs" != "no" ; then
1982 if has makeinfo && has pod2man; then
1983 docs=yes
1984 else
1985 if test "$docs" = "yes" ; then
1986 feature_not_found "docs"
1988 docs=no
1992 # Search for bswap_32 function
1993 byteswap_h=no
1994 cat > $TMPC << EOF
1995 #include <byteswap.h>
1996 int main(void) { return bswap_32(0); }
1998 if compile_prog "" "" ; then
1999 byteswap_h=yes
2002 # Search for bswap_32 function
2003 bswap_h=no
2004 cat > $TMPC << EOF
2005 #include <sys/endian.h>
2006 #include <sys/types.h>
2007 #include <machine/bswap.h>
2008 int main(void) { return bswap32(0); }
2010 if compile_prog "" "" ; then
2011 bswap_h=yes
2014 ##########################################
2015 # Do we need librt
2016 cat > $TMPC <<EOF
2017 #include <signal.h>
2018 #include <time.h>
2019 int main(void) { clockid_t id; return clock_gettime(id, NULL); }
2022 if compile_prog "" "" ; then
2024 elif compile_prog "" "-lrt" ; then
2025 LIBS="-lrt $LIBS"
2028 if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
2029 "$aix" != "yes" ; then
2030 libs_softmmu="-lutil $libs_softmmu"
2033 ##########################################
2034 # check if the compiler defines offsetof
2036 need_offsetof=yes
2037 cat > $TMPC << EOF
2038 #include <stddef.h>
2039 int main(void) { struct s { int f; }; return offsetof(struct s, f); }
2041 if compile_prog "" "" ; then
2042 need_offsetof=no
2045 ##########################################
2046 # check if the compiler understands attribute warn_unused_result
2048 # This could be smarter, but gcc -Werror does not error out even when warning
2049 # about attribute warn_unused_result
2051 gcc_attribute_warn_unused_result=no
2052 cat > $TMPC << EOF
2053 #if defined(__GNUC__) && (__GNUC__ < 4) && defined(__GNUC_MINOR__) && (__GNUC__ < 4)
2054 #error gcc 3.3 or older
2055 #endif
2056 int main(void) { return 0;}
2058 if compile_prog "" ""; then
2059 gcc_attribute_warn_unused_result=yes
2062 ##########################################
2063 # check if we have fdatasync
2065 fdatasync=no
2066 cat > $TMPC << EOF
2067 #include <unistd.h>
2068 int main(void) { return fdatasync(0); }
2070 if compile_prog "" "" ; then
2071 fdatasync=yes
2074 ##########################################
2075 # check if trace backend exists
2077 sh "$source_path/tracetool" "--$trace_backend" --check-backend > /dev/null 2> /dev/null
2078 if test "$?" -ne 0 ; then
2079 echo
2080 echo "Error: invalid trace backend"
2081 echo "Please choose a supported trace backend."
2082 echo
2083 exit 1
2086 ##########################################
2087 # For 'ust' backend, test if ust headers are present
2088 if test "$trace_backend" = "ust"; then
2089 cat > $TMPC << EOF
2090 #include <ust/tracepoint.h>
2091 #include <ust/marker.h>
2092 int main(void) { return 0; }
2094 if compile_prog "" "" ; then
2095 LIBS="-lust $LIBS"
2096 else
2097 echo
2098 echo "Error: Trace backend 'ust' missing libust header files"
2099 echo
2100 exit 1
2103 ##########################################
2104 # End of CC checks
2105 # After here, no more $cc or $ld runs
2107 if test "$debug" = "no" ; then
2108 CFLAGS="-O2 $CFLAGS"
2111 # Consult white-list to determine whether to enable werror
2112 # by default. Only enable by default for git builds
2113 z_version=`cut -f3 -d. $source_path/VERSION`
2115 if test -z "$werror" ; then
2116 if test "$z_version" = "50" -a \
2117 "$linux" = "yes" ; then
2118 werror="yes"
2119 else
2120 werror="no"
2124 # Disable zero malloc errors for official releases unless explicitly told to
2125 # enable/disable
2126 if test -z "$zero_malloc" ; then
2127 if test "$z_version" = "50" ; then
2128 zero_malloc="no"
2129 else
2130 zero_malloc="yes"
2134 if test "$werror" = "yes" ; then
2135 QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
2138 if test "$solaris" = "no" ; then
2139 if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
2140 LDFLAGS="-Wl,--warn-common $LDFLAGS"
2144 # Use ASLR, no-SEH and DEP if available
2145 if test "$mingw32" = "yes" ; then
2146 for flag in --dynamicbase --no-seh --nxcompat; do
2147 if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
2148 LDFLAGS="-Wl,$flag $LDFLAGS"
2150 done
2153 confdir=$sysconfdir$confsuffix
2155 tools=
2156 if test "$softmmu" = yes ; then
2157 tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
2158 if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
2159 tools="qemu-nbd\$(EXESUF) $tools"
2160 if [ "$check_utests" = "yes" ]; then
2161 tools="check-qint check-qstring check-qdict check-qlist $tools"
2162 tools="check-qfloat check-qjson $tools"
2167 # Mac OS X ships with a broken assembler
2168 roms=
2169 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
2170 "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
2171 "$softmmu" = yes ; then
2172 roms="optionrom"
2176 echo "Install prefix $prefix"
2177 echo "BIOS directory `eval echo $datadir`"
2178 echo "binary directory `eval echo $bindir`"
2179 echo "config directory `eval echo $sysconfdir`"
2180 if test "$mingw32" = "no" ; then
2181 echo "Manual directory `eval echo $mandir`"
2182 echo "ELF interp prefix $interp_prefix"
2184 echo "Source path $source_path"
2185 echo "C compiler $cc"
2186 echo "Host C compiler $host_cc"
2187 echo "CFLAGS $CFLAGS"
2188 echo "QEMU_CFLAGS $QEMU_CFLAGS"
2189 echo "LDFLAGS $LDFLAGS"
2190 echo "make $make"
2191 echo "install $install"
2192 echo "host CPU $cpu"
2193 echo "host big endian $bigendian"
2194 echo "target list $target_list"
2195 echo "tcg debug enabled $debug_tcg"
2196 echo "Mon debug enabled $debug_mon"
2197 echo "gprof enabled $gprof"
2198 echo "sparse enabled $sparse"
2199 echo "strip binaries $strip_opt"
2200 echo "profiler $profiler"
2201 echo "static build $static"
2202 echo "-Werror enabled $werror"
2203 if test "$darwin" = "yes" ; then
2204 echo "Cocoa support $cocoa"
2206 echo "SDL support $sdl"
2207 echo "curses support $curses"
2208 echo "curl support $curl"
2209 echo "check support $check_utests"
2210 echo "mingw32 support $mingw32"
2211 echo "Audio drivers $audio_drv_list"
2212 echo "Extra audio cards $audio_card_list"
2213 echo "Block whitelist $block_drv_whitelist"
2214 echo "Mixer emulation $mixemu"
2215 echo "VNC TLS support $vnc_tls"
2216 echo "VNC SASL support $vnc_sasl"
2217 echo "VNC JPEG support $vnc_jpeg"
2218 echo "VNC PNG support $vnc_png"
2219 echo "VNC thread $vnc_thread"
2220 if test -n "$sparc_cpu"; then
2221 echo "Target Sparc Arch $sparc_cpu"
2223 echo "xen support $xen"
2224 echo "brlapi support $brlapi"
2225 echo "bluez support $bluez"
2226 echo "Documentation $docs"
2227 [ ! -z "$uname_release" ] && \
2228 echo "uname -r $uname_release"
2229 echo "NPTL support $nptl"
2230 echo "GUEST_BASE $guest_base"
2231 echo "PIE user targets $user_pie"
2232 echo "vde support $vde"
2233 echo "IO thread $io_thread"
2234 echo "Linux AIO support $linux_aio"
2235 echo "ATTR/XATTR support $attr"
2236 echo "Install blobs $blobs"
2237 echo "KVM support $kvm"
2238 echo "fdt support $fdt"
2239 echo "preadv support $preadv"
2240 echo "fdatasync $fdatasync"
2241 echo "uuid support $uuid"
2242 echo "vhost-net support $vhost_net"
2243 echo "Trace backend $trace_backend"
2244 echo "Trace output file $trace_file-<pid>"
2246 if test $sdl_too_old = "yes"; then
2247 echo "-> Your SDL version is too old - please upgrade to have SDL support"
2250 config_host_mak="config-host.mak"
2251 config_host_ld="config-host.ld"
2253 echo "# Automatically generated by configure - do not modify" > $config_host_mak
2254 printf "# Configured with:" >> $config_host_mak
2255 printf " '%s'" "$0" "$@" >> $config_host_mak
2256 echo >> $config_host_mak
2258 echo "prefix=$prefix" >> $config_host_mak
2259 echo "bindir=$bindir" >> $config_host_mak
2260 echo "mandir=$mandir" >> $config_host_mak
2261 echo "datadir=$datadir" >> $config_host_mak
2262 echo "sysconfdir=$sysconfdir" >> $config_host_mak
2263 echo "docdir=$docdir" >> $config_host_mak
2264 echo "confdir=$confdir" >> $config_host_mak
2266 case "$cpu" in
2267 i386|x86_64|alpha|cris|hppa|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
2268 ARCH=$cpu
2270 armv4b|armv4l)
2271 ARCH=arm
2273 esac
2274 echo "ARCH=$ARCH" >> $config_host_mak
2275 if test "$debug_tcg" = "yes" ; then
2276 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
2278 if test "$debug_mon" = "yes" ; then
2279 echo "CONFIG_DEBUG_MONITOR=y" >> $config_host_mak
2281 if test "$debug" = "yes" ; then
2282 echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak
2284 if test "$strip_opt" = "yes" ; then
2285 echo "STRIP=${strip}" >> $config_host_mak
2287 if test "$bigendian" = "yes" ; then
2288 echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
2290 echo "HOST_LONG_BITS=$hostlongbits" >> $config_host_mak
2291 if test "$mingw32" = "yes" ; then
2292 echo "CONFIG_WIN32=y" >> $config_host_mak
2293 else
2294 echo "CONFIG_POSIX=y" >> $config_host_mak
2297 if test "$linux" = "yes" ; then
2298 echo "CONFIG_LINUX=y" >> $config_host_mak
2301 if test "$darwin" = "yes" ; then
2302 echo "CONFIG_DARWIN=y" >> $config_host_mak
2305 if test "$aix" = "yes" ; then
2306 echo "CONFIG_AIX=y" >> $config_host_mak
2309 if test "$solaris" = "yes" ; then
2310 echo "CONFIG_SOLARIS=y" >> $config_host_mak
2311 echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
2312 if test "$needs_libsunmath" = "yes" ; then
2313 echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
2316 if test "$static" = "yes" ; then
2317 echo "CONFIG_STATIC=y" >> $config_host_mak
2319 if test $profiler = "yes" ; then
2320 echo "CONFIG_PROFILER=y" >> $config_host_mak
2322 if test "$slirp" = "yes" ; then
2323 echo "CONFIG_SLIRP=y" >> $config_host_mak
2324 QEMU_CFLAGS="-I\$(SRC_PATH)/slirp $QEMU_CFLAGS"
2326 if test "$vde" = "yes" ; then
2327 echo "CONFIG_VDE=y" >> $config_host_mak
2329 for card in $audio_card_list; do
2330 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
2331 echo "$def=y" >> $config_host_mak
2332 done
2333 echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
2334 for drv in $audio_drv_list; do
2335 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
2336 echo "$def=y" >> $config_host_mak
2337 if test "$drv" = "fmod"; then
2338 echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
2340 done
2341 if test "$audio_pt_int" = "yes" ; then
2342 echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
2344 if test "$audio_win_int" = "yes" ; then
2345 echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
2347 echo "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak
2348 if test "$mixemu" = "yes" ; then
2349 echo "CONFIG_MIXEMU=y" >> $config_host_mak
2351 if test "$vnc_tls" = "yes" ; then
2352 echo "CONFIG_VNC_TLS=y" >> $config_host_mak
2353 echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
2355 if test "$vnc_sasl" = "yes" ; then
2356 echo "CONFIG_VNC_SASL=y" >> $config_host_mak
2357 echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
2359 if test "$vnc_jpeg" != "no" ; then
2360 echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
2361 echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak
2363 if test "$vnc_png" != "no" ; then
2364 echo "CONFIG_VNC_PNG=y" >> $config_host_mak
2365 echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak
2367 if test "$vnc_thread" != "no" ; then
2368 echo "CONFIG_VNC_THREAD=y" >> $config_host_mak
2369 echo "CONFIG_THREAD=y" >> $config_host_mak
2371 if test "$fnmatch" = "yes" ; then
2372 echo "CONFIG_FNMATCH=y" >> $config_host_mak
2374 if test "$uuid" = "yes" ; then
2375 echo "CONFIG_UUID=y" >> $config_host_mak
2377 qemu_version=`head $source_path/VERSION`
2378 echo "VERSION=$qemu_version" >>$config_host_mak
2379 echo "PKGVERSION=$pkgversion" >>$config_host_mak
2380 echo "SRC_PATH=$source_path" >> $config_host_mak
2381 echo "TARGET_DIRS=$target_list" >> $config_host_mak
2382 if [ "$docs" = "yes" ] ; then
2383 echo "BUILD_DOCS=yes" >> $config_host_mak
2385 if test "$sdl" = "yes" ; then
2386 echo "CONFIG_SDL=y" >> $config_host_mak
2387 echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
2389 if test "$cocoa" = "yes" ; then
2390 echo "CONFIG_COCOA=y" >> $config_host_mak
2392 if test "$curses" = "yes" ; then
2393 echo "CONFIG_CURSES=y" >> $config_host_mak
2395 if test "$atfile" = "yes" ; then
2396 echo "CONFIG_ATFILE=y" >> $config_host_mak
2398 if test "$utimens" = "yes" ; then
2399 echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
2401 if test "$pipe2" = "yes" ; then
2402 echo "CONFIG_PIPE2=y" >> $config_host_mak
2404 if test "$accept4" = "yes" ; then
2405 echo "CONFIG_ACCEPT4=y" >> $config_host_mak
2407 if test "$splice" = "yes" ; then
2408 echo "CONFIG_SPLICE=y" >> $config_host_mak
2410 if test "$eventfd" = "yes" ; then
2411 echo "CONFIG_EVENTFD=y" >> $config_host_mak
2413 if test "$fallocate" = "yes" ; then
2414 echo "CONFIG_FALLOCATE=y" >> $config_host_mak
2416 if test "$dup3" = "yes" ; then
2417 echo "CONFIG_DUP3=y" >> $config_host_mak
2419 if test "$inotify" = "yes" ; then
2420 echo "CONFIG_INOTIFY=y" >> $config_host_mak
2422 if test "$inotify1" = "yes" ; then
2423 echo "CONFIG_INOTIFY1=y" >> $config_host_mak
2425 if test "$byteswap_h" = "yes" ; then
2426 echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
2428 if test "$bswap_h" = "yes" ; then
2429 echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
2431 if test "$curl" = "yes" ; then
2432 echo "CONFIG_CURL=y" >> $config_host_mak
2433 echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
2435 if test "$brlapi" = "yes" ; then
2436 echo "CONFIG_BRLAPI=y" >> $config_host_mak
2438 if test "$bluez" = "yes" ; then
2439 echo "CONFIG_BLUEZ=y" >> $config_host_mak
2440 echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
2442 if test "$xen" = "yes" ; then
2443 echo "CONFIG_XEN=y" >> $config_host_mak
2445 if test "$io_thread" = "yes" ; then
2446 echo "CONFIG_IOTHREAD=y" >> $config_host_mak
2447 echo "CONFIG_THREAD=y" >> $config_host_mak
2449 if test "$linux_aio" = "yes" ; then
2450 echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
2452 if test "$attr" = "yes" ; then
2453 echo "CONFIG_ATTR=y" >> $config_host_mak
2455 if test "$linux" = "yes" ; then
2456 if test "$attr" = "yes" ; then
2457 echo "CONFIG_VIRTFS=y" >> $config_host_mak
2460 if test "$blobs" = "yes" ; then
2461 echo "INSTALL_BLOBS=yes" >> $config_host_mak
2463 if test "$iovec" = "yes" ; then
2464 echo "CONFIG_IOVEC=y" >> $config_host_mak
2466 if test "$preadv" = "yes" ; then
2467 echo "CONFIG_PREADV=y" >> $config_host_mak
2469 if test "$fdt" = "yes" ; then
2470 echo "CONFIG_FDT=y" >> $config_host_mak
2472 if test "$need_offsetof" = "yes" ; then
2473 echo "CONFIG_NEED_OFFSETOF=y" >> $config_host_mak
2475 if test "$gcc_attribute_warn_unused_result" = "yes" ; then
2476 echo "CONFIG_GCC_ATTRIBUTE_WARN_UNUSED_RESULT=y" >> $config_host_mak
2478 if test "$fdatasync" = "yes" ; then
2479 echo "CONFIG_FDATASYNC=y" >> $config_host_mak
2482 # XXX: suppress that
2483 if [ "$bsd" = "yes" ] ; then
2484 echo "CONFIG_BSD=y" >> $config_host_mak
2487 echo "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak
2489 if test "$zero_malloc" = "yes" ; then
2490 echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak
2493 # USB host support
2494 case "$usb" in
2495 linux)
2496 echo "HOST_USB=linux" >> $config_host_mak
2498 bsd)
2499 echo "HOST_USB=bsd" >> $config_host_mak
2502 echo "HOST_USB=stub" >> $config_host_mak
2504 esac
2506 echo "TRACE_BACKEND=$trace_backend" >> $config_host_mak
2507 if test "$trace_backend" = "simple"; then
2508 echo "CONFIG_SIMPLE_TRACE=y" >> $config_host_mak
2510 # Set the appropriate trace file.
2511 if test "$trace_backend" = "simple"; then
2512 trace_file="\"$trace_file-%u\""
2514 echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
2516 echo "TOOLS=$tools" >> $config_host_mak
2517 echo "ROMS=$roms" >> $config_host_mak
2518 echo "MAKE=$make" >> $config_host_mak
2519 echo "INSTALL=$install" >> $config_host_mak
2520 echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak
2521 echo "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak
2522 echo "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak
2523 echo "CC=$cc" >> $config_host_mak
2524 echo "HOST_CC=$host_cc" >> $config_host_mak
2525 if test "$sparse" = "yes" ; then
2526 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak
2527 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak
2528 echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
2530 echo "AR=$ar" >> $config_host_mak
2531 echo "OBJCOPY=$objcopy" >> $config_host_mak
2532 echo "LD=$ld" >> $config_host_mak
2533 echo "CFLAGS=$CFLAGS" >> $config_host_mak
2534 echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
2535 echo "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak
2536 echo "LDFLAGS=$LDFLAGS" >> $config_host_mak
2537 echo "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak
2538 echo "ARLIBS_END=$arlibs_end" >> $config_host_mak
2539 echo "LIBS+=$LIBS" >> $config_host_mak
2540 echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
2541 echo "EXESUF=$EXESUF" >> $config_host_mak
2543 # generate list of library paths for linker script
2545 $ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld}
2547 if test -f ${config_host_ld}~ ; then
2548 if cmp -s $config_host_ld ${config_host_ld}~ ; then
2549 mv ${config_host_ld}~ $config_host_ld
2550 else
2551 rm ${config_host_ld}~
2555 for d in libdis libdis-user; do
2556 mkdir -p $d
2557 rm -f $d/Makefile
2558 ln -s $source_path/Makefile.dis $d/Makefile
2559 echo > $d/config.mak
2560 done
2561 if test "$static" = "no" -a "$user_pie" = "yes" ; then
2562 echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak
2565 for target in $target_list; do
2566 target_dir="$target"
2567 config_target_mak=$target_dir/config-target.mak
2568 target_arch2=`echo $target | cut -d '-' -f 1`
2569 target_bigendian="no"
2571 case "$target_arch2" in
2572 armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus)
2573 target_bigendian=yes
2575 esac
2576 target_softmmu="no"
2577 target_user_only="no"
2578 target_linux_user="no"
2579 target_darwin_user="no"
2580 target_bsd_user="no"
2581 case "$target" in
2582 ${target_arch2}-softmmu)
2583 target_softmmu="yes"
2585 ${target_arch2}-linux-user)
2586 if test "$linux" != "yes" ; then
2587 echo "ERROR: Target '$target' is only available on a Linux host"
2588 exit 1
2590 target_user_only="yes"
2591 target_linux_user="yes"
2593 ${target_arch2}-darwin-user)
2594 if test "$darwin" != "yes" ; then
2595 echo "ERROR: Target '$target' is only available on a Darwin host"
2596 exit 1
2598 target_user_only="yes"
2599 target_darwin_user="yes"
2601 ${target_arch2}-bsd-user)
2602 if test "$bsd" != "yes" ; then
2603 echo "ERROR: Target '$target' is only available on a BSD host"
2604 exit 1
2606 target_user_only="yes"
2607 target_bsd_user="yes"
2610 echo "ERROR: Target '$target' not recognised"
2611 exit 1
2613 esac
2615 mkdir -p $target_dir
2616 mkdir -p $target_dir/fpu
2617 mkdir -p $target_dir/tcg
2618 mkdir -p $target_dir/ide
2619 if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
2620 mkdir -p $target_dir/nwfpe
2624 # don't use ln -sf as not all "ln -sf" over write the file/link
2626 rm -f $target_dir/Makefile
2627 ln -s $source_path/Makefile.target $target_dir/Makefile
2630 echo "# Automatically generated by configure - do not modify" > $config_target_mak
2632 bflt="no"
2633 target_nptl="no"
2634 interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
2635 echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
2636 gdb_xml_files=""
2638 TARGET_ARCH="$target_arch2"
2639 TARGET_BASE_ARCH=""
2640 TARGET_ABI_DIR=""
2642 case "$target_arch2" in
2643 i386)
2644 target_phys_bits=32
2646 x86_64)
2647 TARGET_BASE_ARCH=i386
2648 target_phys_bits=64
2650 alpha)
2651 target_phys_bits=64
2652 target_nptl="yes"
2654 arm|armeb)
2655 TARGET_ARCH=arm
2656 bflt="yes"
2657 target_nptl="yes"
2658 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
2659 target_phys_bits=32
2661 cris)
2662 target_nptl="yes"
2663 target_phys_bits=32
2665 m68k)
2666 bflt="yes"
2667 gdb_xml_files="cf-core.xml cf-fp.xml"
2668 target_phys_bits=32
2670 microblaze)
2671 bflt="yes"
2672 target_nptl="yes"
2673 target_phys_bits=32
2675 mips|mipsel)
2676 TARGET_ARCH=mips
2677 echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
2678 target_nptl="yes"
2679 target_phys_bits=64
2681 mipsn32|mipsn32el)
2682 TARGET_ARCH=mipsn32
2683 TARGET_BASE_ARCH=mips
2684 echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
2685 target_phys_bits=64
2687 mips64|mips64el)
2688 TARGET_ARCH=mips64
2689 TARGET_BASE_ARCH=mips
2690 echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
2691 target_phys_bits=64
2693 ppc)
2694 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2695 target_phys_bits=32
2696 target_nptl="yes"
2698 ppcemb)
2699 TARGET_BASE_ARCH=ppc
2700 TARGET_ABI_DIR=ppc
2701 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2702 target_phys_bits=64
2703 target_nptl="yes"
2705 ppc64)
2706 TARGET_BASE_ARCH=ppc
2707 TARGET_ABI_DIR=ppc
2708 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2709 target_phys_bits=64
2711 ppc64abi32)
2712 TARGET_ARCH=ppc64
2713 TARGET_BASE_ARCH=ppc
2714 TARGET_ABI_DIR=ppc
2715 echo "TARGET_ABI32=y" >> $config_target_mak
2716 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2717 target_phys_bits=64
2719 sh4|sh4eb)
2720 TARGET_ARCH=sh4
2721 bflt="yes"
2722 target_nptl="yes"
2723 target_phys_bits=32
2725 sparc)
2726 target_phys_bits=64
2728 sparc64)
2729 TARGET_BASE_ARCH=sparc
2730 target_phys_bits=64
2732 sparc32plus)
2733 TARGET_ARCH=sparc64
2734 TARGET_BASE_ARCH=sparc
2735 TARGET_ABI_DIR=sparc
2736 echo "TARGET_ABI32=y" >> $config_target_mak
2737 target_phys_bits=64
2739 s390x)
2740 target_phys_bits=64
2743 echo "Unsupported target CPU"
2744 exit 1
2746 esac
2747 echo "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak
2748 target_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`"
2749 echo "TARGET_$target_arch_name=y" >> $config_target_mak
2750 echo "TARGET_ARCH2=$target_arch2" >> $config_target_mak
2751 # TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
2752 if [ "$TARGET_BASE_ARCH" = "" ]; then
2753 TARGET_BASE_ARCH=$TARGET_ARCH
2755 echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
2756 if [ "$TARGET_ABI_DIR" = "" ]; then
2757 TARGET_ABI_DIR=$TARGET_ARCH
2759 echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
2760 case "$target_arch2" in
2761 i386|x86_64)
2762 if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
2763 echo "CONFIG_XEN=y" >> $config_target_mak
2765 esac
2766 case "$target_arch2" in
2767 i386|x86_64|ppcemb|ppc|ppc64|s390x)
2768 # Make sure the target and host cpus are compatible
2769 if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
2770 \( "$target_arch2" = "$cpu" -o \
2771 \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
2772 \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \
2773 \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \
2774 \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then
2775 echo "CONFIG_KVM=y" >> $config_target_mak
2776 echo "KVM_CFLAGS=$kvm_cflags" >> $config_target_mak
2777 if test "$kvm_para" = "yes"; then
2778 echo "CONFIG_KVM_PARA=y" >> $config_target_mak
2780 if test $vhost_net = "yes" ; then
2781 echo "CONFIG_VHOST_NET=y" >> $config_target_mak
2784 esac
2785 if test "$target_bigendian" = "yes" ; then
2786 echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
2788 if test "$target_softmmu" = "yes" ; then
2789 echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak
2790 echo "CONFIG_SOFTMMU=y" >> $config_target_mak
2791 echo "LIBS+=$libs_softmmu" >> $config_target_mak
2792 echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak
2793 echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
2795 if test "$target_user_only" = "yes" ; then
2796 echo "CONFIG_USER_ONLY=y" >> $config_target_mak
2798 if test "$target_linux_user" = "yes" ; then
2799 echo "CONFIG_LINUX_USER=y" >> $config_target_mak
2801 if test "$target_darwin_user" = "yes" ; then
2802 echo "CONFIG_DARWIN_USER=y" >> $config_target_mak
2804 list=""
2805 if test ! -z "$gdb_xml_files" ; then
2806 for x in $gdb_xml_files; do
2807 list="$list $source_path/gdb-xml/$x"
2808 done
2809 echo "TARGET_XML_FILES=$list" >> $config_target_mak
2812 case "$target_arch2" in
2813 alpha|arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|s390x|sparc|sparc64|sparc32plus)
2814 echo "CONFIG_SOFTFLOAT=y" >> $config_target_mak
2817 echo "CONFIG_NOSOFTFLOAT=y" >> $config_target_mak
2819 esac
2821 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
2822 echo "TARGET_HAS_BFLT=y" >> $config_target_mak
2824 if test "$target_user_only" = "yes" \
2825 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
2826 echo "CONFIG_USE_NPTL=y" >> $config_target_mak
2828 if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
2829 echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak
2831 if test "$target_bsd_user" = "yes" ; then
2832 echo "CONFIG_BSD_USER=y" >> $config_target_mak
2835 # generate QEMU_CFLAGS/LDFLAGS for targets
2837 cflags=""
2838 ldflags=""
2840 if test "$ARCH" = "sparc64" ; then
2841 cflags="-I\$(SRC_PATH)/tcg/sparc $cflags"
2842 elif test "$ARCH" = "s390x" ; then
2843 cflags="-I\$(SRC_PATH)/tcg/s390 $cflags"
2844 elif test "$ARCH" = "x86_64" ; then
2845 cflags="-I\$(SRC_PATH)/tcg/i386 $cflags"
2846 else
2847 cflags="-I\$(SRC_PATH)/tcg/\$(ARCH) $cflags"
2849 cflags="-I\$(SRC_PATH)/tcg $cflags"
2850 cflags="-I\$(SRC_PATH)/fpu $cflags"
2852 if test "$target_user_only" = "yes" ; then
2853 libdis_config_mak=libdis-user/config.mak
2854 else
2855 libdis_config_mak=libdis/config.mak
2858 for i in $ARCH $TARGET_BASE_ARCH ; do
2859 case "$i" in
2860 alpha)
2861 echo "CONFIG_ALPHA_DIS=y" >> $config_target_mak
2862 echo "CONFIG_ALPHA_DIS=y" >> $libdis_config_mak
2864 arm)
2865 echo "CONFIG_ARM_DIS=y" >> $config_target_mak
2866 echo "CONFIG_ARM_DIS=y" >> $libdis_config_mak
2868 cris)
2869 echo "CONFIG_CRIS_DIS=y" >> $config_target_mak
2870 echo "CONFIG_CRIS_DIS=y" >> $libdis_config_mak
2872 hppa)
2873 echo "CONFIG_HPPA_DIS=y" >> $config_target_mak
2874 echo "CONFIG_HPPA_DIS=y" >> $libdis_config_mak
2876 i386|x86_64)
2877 echo "CONFIG_I386_DIS=y" >> $config_target_mak
2878 echo "CONFIG_I386_DIS=y" >> $libdis_config_mak
2880 ia64*)
2881 echo "CONFIG_IA64_DIS=y" >> $config_target_mak
2882 echo "CONFIG_IA64_DIS=y" >> $libdis_config_mak
2884 m68k)
2885 echo "CONFIG_M68K_DIS=y" >> $config_target_mak
2886 echo "CONFIG_M68K_DIS=y" >> $libdis_config_mak
2888 microblaze)
2889 echo "CONFIG_MICROBLAZE_DIS=y" >> $config_target_mak
2890 echo "CONFIG_MICROBLAZE_DIS=y" >> $libdis_config_mak
2892 mips*)
2893 echo "CONFIG_MIPS_DIS=y" >> $config_target_mak
2894 echo "CONFIG_MIPS_DIS=y" >> $libdis_config_mak
2896 ppc*)
2897 echo "CONFIG_PPC_DIS=y" >> $config_target_mak
2898 echo "CONFIG_PPC_DIS=y" >> $libdis_config_mak
2900 s390*)
2901 echo "CONFIG_S390_DIS=y" >> $config_target_mak
2902 echo "CONFIG_S390_DIS=y" >> $libdis_config_mak
2904 sh4)
2905 echo "CONFIG_SH4_DIS=y" >> $config_target_mak
2906 echo "CONFIG_SH4_DIS=y" >> $libdis_config_mak
2908 sparc*)
2909 echo "CONFIG_SPARC_DIS=y" >> $config_target_mak
2910 echo "CONFIG_SPARC_DIS=y" >> $libdis_config_mak
2912 esac
2913 done
2915 case "$ARCH" in
2916 alpha)
2917 # Ensure there's only a single GP
2918 cflags="-msmall-data $cflags"
2920 esac
2922 if test "$target_softmmu" = "yes" ; then
2923 case "$TARGET_BASE_ARCH" in
2924 arm)
2925 cflags="-DHAS_AUDIO $cflags"
2927 i386|mips|ppc)
2928 cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags"
2930 esac
2933 if test "$target_user_only" = "yes" -a "$static" = "no" -a \
2934 "$user_pie" = "yes" ; then
2935 cflags="-fpie $cflags"
2936 ldflags="-pie $ldflags"
2939 if test "$target_softmmu" = "yes" -a \( \
2940 "$TARGET_ARCH" = "microblaze" -o \
2941 "$TARGET_ARCH" = "cris" \) ; then
2942 echo "CONFIG_NEED_MMU=y" >> $config_target_mak
2945 if test "$gprof" = "yes" ; then
2946 echo "TARGET_GPROF=yes" >> $config_target_mak
2947 if test "$target_linux_user" = "yes" ; then
2948 cflags="-p $cflags"
2949 ldflags="-p $ldflags"
2951 if test "$target_softmmu" = "yes" ; then
2952 ldflags="-p $ldflags"
2953 echo "GPROF_CFLAGS=-p" >> $config_target_mak
2957 linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
2958 if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
2959 case "$ARCH" in
2960 sparc)
2961 # -static is used to avoid g1/g3 usage by the dynamic linker
2962 ldflags="$linker_script -static $ldflags"
2964 alpha | s390x)
2965 # The default placement of the application is fine.
2968 ldflags="$linker_script $ldflags"
2970 esac
2973 echo "LDFLAGS+=$ldflags" >> $config_target_mak
2974 echo "QEMU_CFLAGS+=$cflags" >> $config_target_mak
2976 done # for target in $targets
2978 # build tree in object directory if source path is different from current one
2979 if test "$source_path_used" = "yes" ; then
2980 DIRS="tests tests/cris slirp audio block net pc-bios/optionrom"
2981 DIRS="$DIRS roms/seabios roms/vgabios"
2982 DIRS="$DIRS fsdev ui"
2983 FILES="Makefile tests/Makefile"
2984 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
2985 FILES="$FILES tests/test-mmap.c"
2986 FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps pc-bios/video.x"
2987 FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
2988 for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do
2989 FILES="$FILES pc-bios/`basename $bios_file`"
2990 done
2991 for dir in $DIRS ; do
2992 mkdir -p $dir
2993 done
2994 # remove the link and recreate it, as not all "ln -sf" overwrite the link
2995 for f in $FILES ; do
2996 rm -f $f
2997 ln -s $source_path/$f $f
2998 done
3001 # temporary config to build submodules
3002 for rom in seabios vgabios ; do
3003 config_mak=roms/$rom/config.mak
3004 echo "# Automatically generated by configure - do not modify" > $config_mak
3005 echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
3006 echo "CC=$cc" >> $config_mak
3007 echo "BCC=bcc" >> $config_mak
3008 echo "CPP=${cross_prefix}cpp" >> $config_mak
3009 echo "OBJCOPY=objcopy" >> $config_mak
3010 echo "IASL=iasl" >> $config_mak
3011 echo "HOST_CC=$host_cc" >> $config_mak
3012 echo "LD=$ld" >> $config_mak
3013 done
3015 for hwlib in 32 64; do
3016 d=libhw$hwlib
3017 mkdir -p $d
3018 mkdir -p $d/ide
3019 rm -f $d/Makefile
3020 ln -s $source_path/Makefile.hw $d/Makefile
3021 echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak
3022 done
3024 d=libuser
3025 mkdir -p $d
3026 rm -f $d/Makefile
3027 ln -s $source_path/Makefile.user $d/Makefile
3028 if test "$static" = "no" -a "$user_pie" = "yes" ; then
3029 echo "QEMU_CFLAGS+=-fpie" > $d/config.mak
3032 if test "$docs" = "yes" ; then
3033 mkdir -p QMP