configure: Drop ancient Solaris 9 and earlier support
[qemu.git] / configure
blob6b52e19ee37232038313ec75f1c7d562a5f520a9
1 #!/bin/sh
3 # qemu configure script (c) 2003 Fabrice Bellard
6 # Unset some variables known to interfere with behavior of common tools,
7 # just as autoconf does.
8 CLICOLOR_FORCE= GREP_OPTIONS=
9 unset CLICOLOR_FORCE GREP_OPTIONS
11 # Don't allow CCACHE, if present, to use cached results of compile tests!
12 export CCACHE_RECACHE=yes
14 # Temporary directory used for files created while
15 # configure runs. Since it is in the build directory
16 # we can safely blow away any previous version of it
17 # (and we need not jump through hoops to try to delete
18 # it when configure exits.)
19 TMPDIR1="config-temp"
20 rm -rf "${TMPDIR1}"
21 mkdir -p "${TMPDIR1}"
22 if [ $? -ne 0 ]; then
23 echo "ERROR: failed to create temporary directory"
24 exit 1
27 TMPB="qemu-conf"
28 TMPC="${TMPDIR1}/${TMPB}.c"
29 TMPO="${TMPDIR1}/${TMPB}.o"
30 TMPCXX="${TMPDIR1}/${TMPB}.cxx"
31 TMPE="${TMPDIR1}/${TMPB}.exe"
32 TMPMO="${TMPDIR1}/${TMPB}.mo"
34 rm -f config.log
36 # Print a helpful header at the top of config.log
37 echo "# QEMU configure log $(date)" >> config.log
38 printf "# Configured with:" >> config.log
39 printf " '%s'" "$0" "$@" >> config.log
40 echo >> config.log
41 echo "#" >> config.log
43 print_error() {
44 (echo
45 echo "ERROR: $1"
46 while test -n "$2"; do
47 echo " $2"
48 shift
49 done
50 echo) >&2
53 error_exit() {
54 print_error "$@"
55 exit 1
58 do_compiler() {
59 # Run the compiler, capturing its output to the log. First argument
60 # is compiler binary to execute.
61 local compiler="$1"
62 shift
63 echo $compiler "$@" >> config.log
64 $compiler "$@" >> config.log 2>&1 || return $?
65 # Test passed. If this is an --enable-werror build, rerun
66 # the test with -Werror and bail out if it fails. This
67 # makes warning-generating-errors in configure test code
68 # obvious to developers.
69 if test "$werror" != "yes"; then
70 return 0
72 # Don't bother rerunning the compile if we were already using -Werror
73 case "$*" in
74 *-Werror*)
75 return 0
77 esac
78 echo $compiler -Werror "$@" >> config.log
79 $compiler -Werror "$@" >> config.log 2>&1 && return $?
80 error_exit "configure test passed without -Werror but failed with -Werror." \
81 "This is probably a bug in the configure script. The failing command" \
82 "will be at the bottom of config.log." \
83 "You can run configure with --disable-werror to bypass this check."
86 do_cc() {
87 do_compiler "$cc" "$@"
90 do_cxx() {
91 do_compiler "$cxx" "$@"
94 update_cxxflags() {
95 # Set QEMU_CXXFLAGS from QEMU_CFLAGS by filtering out those
96 # options which some versions of GCC's C++ compiler complain about
97 # because they only make sense for C programs.
98 QEMU_CXXFLAGS="$QEMU_CXXFLAGS -D__STDC_LIMIT_MACROS"
100 for arg in $QEMU_CFLAGS; do
101 case $arg in
102 -Wstrict-prototypes|-Wmissing-prototypes|-Wnested-externs|\
103 -Wold-style-declaration|-Wold-style-definition|-Wredundant-decls)
106 QEMU_CXXFLAGS=${QEMU_CXXFLAGS:+$QEMU_CXXFLAGS }$arg
108 esac
109 done
112 compile_object() {
113 local_cflags="$1"
114 do_cc $QEMU_CFLAGS $local_cflags -c -o $TMPO $TMPC
117 compile_prog() {
118 local_cflags="$1"
119 local_ldflags="$2"
120 do_cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
123 # symbolically link $1 to $2. Portable version of "ln -sf".
124 symlink() {
125 rm -rf "$2"
126 mkdir -p "$(dirname "$2")"
127 ln -s "$1" "$2"
130 # check whether a command is available to this shell (may be either an
131 # executable or a builtin)
132 has() {
133 type "$1" >/dev/null 2>&1
136 # search for an executable in PATH
137 path_of() {
138 local_command="$1"
139 local_ifs="$IFS"
140 local_dir=""
142 # pathname has a dir component?
143 if [ "${local_command#*/}" != "$local_command" ]; then
144 if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then
145 echo "$local_command"
146 return 0
149 if [ -z "$local_command" ]; then
150 return 1
153 IFS=:
154 for local_dir in $PATH; do
155 if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then
156 echo "$local_dir/$local_command"
157 IFS="${local_ifs:-$(printf ' \t\n')}"
158 return 0
160 done
161 # not found
162 IFS="${local_ifs:-$(printf ' \t\n')}"
163 return 1
166 have_backend () {
167 echo "$trace_backends" | grep "$1" >/dev/null
170 glob() {
171 eval test -z '"${1#'"$2"'}"'
174 supported_hax_target() {
175 test "$hax" = "yes" || return 1
176 glob "$1" "*-softmmu" || return 1
177 case "${1%-softmmu}" in
178 i386|x86_64)
179 return 0
181 esac
182 return 1
185 supported_kvm_target() {
186 test "$kvm" = "yes" || return 1
187 glob "$1" "*-softmmu" || return 1
188 case "${1%-softmmu}:$cpu" in
189 arm:arm | aarch64:aarch64 | \
190 i386:i386 | i386:x86_64 | i386:x32 | \
191 x86_64:i386 | x86_64:x86_64 | x86_64:x32 | \
192 mips:mips | mipsel:mips | \
193 ppc:ppc | ppcemb:ppc | ppc64:ppc | \
194 ppc:ppc64 | ppcemb:ppc64 | ppc64:ppc64 | \
195 s390x:s390x)
196 return 0
198 esac
199 return 1
202 supported_xen_target() {
203 test "$xen" = "yes" || return 1
204 glob "$1" "*-softmmu" || return 1
205 # Only i386 and x86_64 provide the xenpv machine.
206 case "${1%-softmmu}" in
207 i386|x86_64)
208 return 0
210 esac
211 return 1
214 supported_target() {
215 case "$1" in
216 *-softmmu)
218 *-linux-user)
219 if test "$linux" != "yes"; then
220 print_error "Target '$target' is only available on a Linux host"
221 return 1
224 *-bsd-user)
225 if test "$bsd" != "yes"; then
226 print_error "Target '$target' is only available on a BSD host"
227 return 1
231 print_error "Invalid target name '$target'"
232 return 1
234 esac
235 test "$tcg" = "yes" && return 0
236 supported_kvm_target "$1" && return 0
237 supported_xen_target "$1" && return 0
238 supported_hax_target "$1" && return 0
239 print_error "TCG disabled, but hardware accelerator not available for '$target'"
240 return 1
243 # default parameters
244 source_path=$(dirname "$0")
245 cpu=""
246 iasl="iasl"
247 interp_prefix="/usr/gnemul/qemu-%M"
248 static="no"
249 cross_prefix=""
250 audio_drv_list=""
251 block_drv_rw_whitelist=""
252 block_drv_ro_whitelist=""
253 host_cc="cc"
254 libs_softmmu=""
255 libs_tools=""
256 audio_pt_int=""
257 audio_win_int=""
258 cc_i386=i386-pc-linux-gnu-gcc
259 libs_qga=""
260 debug_info="yes"
261 stack_protector=""
263 # Don't accept a target_list environment variable.
264 unset target_list
266 # Default value for a variable defining feature "foo".
267 # * foo="no" feature will only be used if --enable-foo arg is given
268 # * foo="" feature will be searched for, and if found, will be used
269 # unless --disable-foo is given
270 # * foo="yes" this value will only be set by --enable-foo flag.
271 # feature will searched for,
272 # if not found, configure exits with error
274 # Always add --enable-foo and --disable-foo command line args.
275 # Distributions want to ensure that several features are compiled in, and it
276 # is impossible without a --enable-foo that exits if a feature is not found.
278 bluez=""
279 brlapi=""
280 curl=""
281 curses=""
282 docs=""
283 fdt=""
284 netmap="no"
285 pixman=""
286 sdl=""
287 sdlabi=""
288 virtfs=""
289 vnc="yes"
290 sparse="no"
291 vde=""
292 vnc_sasl=""
293 vnc_jpeg=""
294 vnc_png=""
295 xen=""
296 xen_ctrl_version=""
297 xen_pv_domain_build="no"
298 xen_pci_passthrough=""
299 linux_aio=""
300 cap_ng=""
301 attr=""
302 libattr=""
303 xfs=""
304 tcg="yes"
306 vhost_net="no"
307 vhost_scsi="no"
308 vhost_vsock="no"
309 kvm="no"
310 hax="no"
311 rdma=""
312 gprof="no"
313 debug_tcg="no"
314 debug="no"
315 fortify_source=""
316 strip_opt="yes"
317 tcg_interpreter="no"
318 bigendian="no"
319 mingw32="no"
320 gcov="no"
321 gcov_tool="gcov"
322 EXESUF=""
323 DSOSUF=".so"
324 LDFLAGS_SHARED="-shared"
325 modules="no"
326 prefix="/usr/local"
327 mandir="\${prefix}/share/man"
328 datadir="\${prefix}/share"
329 qemu_docdir="\${prefix}/share/doc/qemu"
330 bindir="\${prefix}/bin"
331 libdir="\${prefix}/lib"
332 libexecdir="\${prefix}/libexec"
333 includedir="\${prefix}/include"
334 sysconfdir="\${prefix}/etc"
335 local_statedir="\${prefix}/var"
336 confsuffix="/qemu"
337 slirp="yes"
338 oss_lib=""
339 bsd="no"
340 linux="no"
341 solaris="no"
342 profiler="no"
343 cocoa="no"
344 softmmu="yes"
345 linux_user="no"
346 bsd_user="no"
347 aix="no"
348 blobs="yes"
349 pkgversion=""
350 pie=""
351 qom_cast_debug="yes"
352 trace_backends="log"
353 trace_file="trace"
354 spice=""
355 rbd=""
356 smartcard=""
357 libusb=""
358 usb_redir=""
359 opengl=""
360 opengl_dmabuf="no"
361 avx2_opt="no"
362 zlib="yes"
363 lzo=""
364 snappy=""
365 bzip2=""
366 guest_agent=""
367 guest_agent_with_vss="no"
368 guest_agent_ntddscsi="no"
369 guest_agent_msi=""
370 vss_win32_sdk=""
371 win_sdk="no"
372 want_tools="yes"
373 libiscsi=""
374 libnfs=""
375 coroutine=""
376 coroutine_pool=""
377 debug_stack_usage="no"
378 crypto_afalg="no"
379 seccomp=""
380 glusterfs=""
381 glusterfs_xlator_opt="no"
382 glusterfs_discard="no"
383 glusterfs_fallocate="no"
384 glusterfs_zerofill="no"
385 gtk=""
386 gtkabi=""
387 gtk_gl="no"
388 tls_priority="NORMAL"
389 gnutls=""
390 gnutls_rnd=""
391 nettle=""
392 nettle_kdf="no"
393 gcrypt=""
394 gcrypt_hmac="no"
395 gcrypt_kdf="no"
396 vte=""
397 virglrenderer=""
398 tpm="yes"
399 libssh2=""
400 live_block_migration="yes"
401 numa=""
402 tcmalloc="no"
403 jemalloc="no"
404 replication="yes"
405 vxhs=""
407 supported_cpu="no"
408 supported_os="no"
409 bogus_os="no"
411 # parse CC options first
412 for opt do
413 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
414 case "$opt" in
415 --cross-prefix=*) cross_prefix="$optarg"
417 --cc=*) CC="$optarg"
419 --cxx=*) CXX="$optarg"
421 --source-path=*) source_path="$optarg"
423 --cpu=*) cpu="$optarg"
425 --extra-cflags=*) QEMU_CFLAGS="$QEMU_CFLAGS $optarg"
426 EXTRA_CFLAGS="$optarg"
428 --extra-cxxflags=*) QEMU_CXXFLAGS="$QEMU_CXXFLAGS $optarg"
429 EXTRA_CXXFLAGS="$optarg"
431 --extra-ldflags=*) LDFLAGS="$LDFLAGS $optarg"
432 EXTRA_LDFLAGS="$optarg"
434 --enable-debug-info) debug_info="yes"
436 --disable-debug-info) debug_info="no"
438 esac
439 done
440 # OS specific
441 # Using uname is really, really broken. Once we have the right set of checks
442 # we can eliminate its usage altogether.
444 # Preferred compiler:
445 # ${CC} (if set)
446 # ${cross_prefix}gcc (if cross-prefix specified)
447 # system compiler
448 if test -z "${CC}${cross_prefix}"; then
449 cc="$host_cc"
450 else
451 cc="${CC-${cross_prefix}gcc}"
454 if test -z "${CXX}${cross_prefix}"; then
455 cxx="c++"
456 else
457 cxx="${CXX-${cross_prefix}g++}"
460 ar="${AR-${cross_prefix}ar}"
461 as="${AS-${cross_prefix}as}"
462 ccas="${CCAS-$cc}"
463 cpp="${CPP-$cc -E}"
464 objcopy="${OBJCOPY-${cross_prefix}objcopy}"
465 ld="${LD-${cross_prefix}ld}"
466 nm="${NM-${cross_prefix}nm}"
467 strip="${STRIP-${cross_prefix}strip}"
468 windres="${WINDRES-${cross_prefix}windres}"
469 pkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}"
470 query_pkg_config() {
471 "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@"
473 pkg_config=query_pkg_config
474 sdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}"
475 sdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}"
477 # If the user hasn't specified ARFLAGS, default to 'rv', just as make does.
478 ARFLAGS="${ARFLAGS-rv}"
480 # default flags for all hosts
481 # We use -fwrapv to tell the compiler that we require a C dialect where
482 # left shift of signed integers is well defined and has the expected
483 # 2s-complement style results. (Both clang and gcc agree that it
484 # provides these semantics.)
485 QEMU_CFLAGS="-fno-strict-aliasing -fno-common -fwrapv $QEMU_CFLAGS"
486 QEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
487 QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
488 QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
489 QEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/accel/tcg -I\$(SRC_PATH)/include"
490 if test "$debug_info" = "yes"; then
491 CFLAGS="-g $CFLAGS"
492 LDFLAGS="-g $LDFLAGS"
495 # make source path absolute
496 source_path=$(cd "$source_path"; pwd)
498 # running configure in the source tree?
499 # we know that's the case if configure is there.
500 if test -f "./configure"; then
501 pwd_is_source_path="y"
502 else
503 pwd_is_source_path="n"
506 check_define() {
507 cat > $TMPC <<EOF
508 #if !defined($1)
509 #error $1 not defined
510 #endif
511 int main(void) { return 0; }
513 compile_object
516 check_include() {
517 cat > $TMPC <<EOF
518 #include <$1>
519 int main(void) { return 0; }
521 compile_object
524 write_c_skeleton() {
525 cat > $TMPC <<EOF
526 int main(void) { return 0; }
530 if check_define __linux__ ; then
531 targetos="Linux"
532 elif check_define _WIN32 ; then
533 targetos='MINGW32'
534 elif check_define __OpenBSD__ ; then
535 targetos='OpenBSD'
536 elif check_define __sun__ ; then
537 targetos='SunOS'
538 elif check_define __HAIKU__ ; then
539 targetos='Haiku'
540 elif check_define __FreeBSD__ ; then
541 targetos='FreeBSD'
542 elif check_define __FreeBSD_kernel__ && check_define __GLIBC__; then
543 targetos='GNU/kFreeBSD'
544 elif check_define __DragonFly__ ; then
545 targetos='DragonFly'
546 elif check_define __NetBSD__; then
547 targetos='NetBSD'
548 elif check_define __APPLE__; then
549 targetos='Darwin'
550 elif check_define _AIX; then
551 targetos='AIX'
552 else
553 # This is a fatal error, but don't report it yet, because we
554 # might be going to just print the --help text, or it might
555 # be the result of a missing compiler.
556 targetos='bogus'
557 bogus_os='yes'
560 # Some host OSes need non-standard checks for which CPU to use.
561 # Note that these checks are broken for cross-compilation: if you're
562 # cross-compiling to one of these OSes then you'll need to specify
563 # the correct CPU with the --cpu option.
564 case $targetos in
565 Darwin)
566 # on Leopard most of the system is 32-bit, so we have to ask the kernel if we can
567 # run 64-bit userspace code.
568 # If the user didn't specify a CPU explicitly and the kernel says this is
569 # 64 bit hw, then assume x86_64. Otherwise fall through to the usual detection code.
570 if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
571 cpu="x86_64"
574 SunOS)
575 # $(uname -m) returns i86pc even on an x86_64 box, so default based on isainfo
576 if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
577 cpu="x86_64"
579 esac
581 if test ! -z "$cpu" ; then
582 # command line argument
584 elif check_define __i386__ ; then
585 cpu="i386"
586 elif check_define __x86_64__ ; then
587 if check_define __ILP32__ ; then
588 cpu="x32"
589 else
590 cpu="x86_64"
592 elif check_define __sparc__ ; then
593 if check_define __arch64__ ; then
594 cpu="sparc64"
595 else
596 cpu="sparc"
598 elif check_define _ARCH_PPC ; then
599 if check_define _ARCH_PPC64 ; then
600 cpu="ppc64"
601 else
602 cpu="ppc"
604 elif check_define __mips__ ; then
605 cpu="mips"
606 elif check_define __ia64__ ; then
607 cpu="ia64"
608 elif check_define __s390__ ; then
609 if check_define __s390x__ ; then
610 cpu="s390x"
611 else
612 cpu="s390"
614 elif check_define __arm__ ; then
615 cpu="arm"
616 elif check_define __aarch64__ ; then
617 cpu="aarch64"
618 else
619 cpu=$(uname -m)
622 ARCH=
623 # Normalise host CPU name and set ARCH.
624 # Note that this case should only have supported host CPUs, not guests.
625 case "$cpu" in
626 ppc|ppc64|s390|s390x|sparc64|x32)
627 cpu="$cpu"
628 supported_cpu="yes"
630 ia64)
631 cpu="$cpu"
633 i386|i486|i586|i686|i86pc|BePC)
634 cpu="i386"
635 supported_cpu="yes"
637 x86_64|amd64)
638 cpu="x86_64"
639 supported_cpu="yes"
641 armv*b|armv*l|arm)
642 cpu="arm"
643 supported_cpu="yes"
645 aarch64)
646 cpu="aarch64"
647 supported_cpu="yes"
649 mips*)
650 cpu="mips"
651 supported_cpu="yes"
653 sparc|sun4[cdmuv])
654 cpu="sparc"
655 supported_cpu="yes"
658 # This will result in either an error or falling back to TCI later
659 ARCH=unknown
661 esac
662 if test -z "$ARCH"; then
663 ARCH="$cpu"
666 # OS specific
668 # host *BSD for user mode
669 HOST_VARIANT_DIR=""
671 case $targetos in
672 MINGW32*)
673 mingw32="yes"
674 hax="yes"
675 audio_possible_drivers="dsound sdl"
676 if check_include dsound.h; then
677 audio_drv_list="dsound"
678 else
679 audio_drv_list=""
681 supported_os="yes"
683 GNU/kFreeBSD)
684 bsd="yes"
685 audio_drv_list="oss"
686 audio_possible_drivers="oss sdl pa"
688 FreeBSD)
689 bsd="yes"
690 make="${MAKE-gmake}"
691 audio_drv_list="oss"
692 audio_possible_drivers="oss sdl pa"
693 # needed for kinfo_getvmmap(3) in libutil.h
694 LIBS="-lutil $LIBS"
695 # needed for kinfo_getproc
696 libs_qga="-lutil $libs_qga"
697 netmap="" # enable netmap autodetect
698 HOST_VARIANT_DIR="freebsd"
699 supported_os="yes"
701 DragonFly)
702 bsd="yes"
703 make="${MAKE-gmake}"
704 audio_drv_list="oss"
705 audio_possible_drivers="oss sdl pa"
706 HOST_VARIANT_DIR="dragonfly"
708 NetBSD)
709 bsd="yes"
710 make="${MAKE-gmake}"
711 audio_drv_list="oss"
712 audio_possible_drivers="oss sdl"
713 oss_lib="-lossaudio"
714 HOST_VARIANT_DIR="netbsd"
715 supported_os="yes"
717 OpenBSD)
718 bsd="yes"
719 make="${MAKE-gmake}"
720 audio_drv_list="sdl"
721 audio_possible_drivers="sdl"
722 HOST_VARIANT_DIR="openbsd"
724 Darwin)
725 bsd="yes"
726 darwin="yes"
727 hax="yes"
728 LDFLAGS_SHARED="-bundle -undefined dynamic_lookup"
729 if [ "$cpu" = "x86_64" ] ; then
730 QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
731 LDFLAGS="-arch x86_64 $LDFLAGS"
733 cocoa="yes"
734 audio_drv_list="coreaudio"
735 audio_possible_drivers="coreaudio sdl"
736 LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
737 libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
738 # Disable attempts to use ObjectiveC features in os/object.h since they
739 # won't work when we're compiling with gcc as a C compiler.
740 QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS"
741 HOST_VARIANT_DIR="darwin"
742 supported_os="yes"
744 SunOS)
745 solaris="yes"
746 make="${MAKE-gmake}"
747 install="${INSTALL-ginstall}"
748 ld="gld"
749 smbd="${SMBD-/usr/sfw/sbin/smbd}"
750 if test -f /usr/include/sys/soundcard.h ; then
751 audio_drv_list="oss"
753 audio_possible_drivers="oss sdl"
754 # needed for CMSG_ macros in sys/socket.h
755 QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
756 # needed for TIOCWIN* defines in termios.h
757 QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
758 QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
759 solarisnetlibs="-lsocket -lnsl -lresolv"
760 LIBS="$solarisnetlibs $LIBS"
761 libs_qga="$solarisnetlibs $libs_qga"
763 AIX)
764 aix="yes"
765 make="${MAKE-gmake}"
767 Haiku)
768 haiku="yes"
769 QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
770 LIBS="-lposix_error_mapper -lnetwork $LIBS"
772 Linux)
773 audio_drv_list="oss"
774 audio_possible_drivers="oss alsa sdl pa"
775 linux="yes"
776 linux_user="yes"
777 kvm="yes"
778 vhost_net="yes"
779 vhost_scsi="yes"
780 vhost_vsock="yes"
781 QEMU_INCLUDES="-I\$(SRC_PATH)/linux-headers -I$(pwd)/linux-headers $QEMU_INCLUDES"
782 supported_os="yes"
784 esac
786 if [ "$bsd" = "yes" ] ; then
787 if [ "$darwin" != "yes" ] ; then
788 bsd_user="yes"
792 : ${make=${MAKE-make}}
793 : ${install=${INSTALL-install}}
794 : ${python=${PYTHON-python}}
795 : ${smbd=${SMBD-/usr/sbin/smbd}}
797 # Default objcc to clang if available, otherwise use CC
798 if has clang; then
799 objcc=clang
800 else
801 objcc="$cc"
804 if test "$mingw32" = "yes" ; then
805 EXESUF=".exe"
806 DSOSUF=".dll"
807 QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
808 # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
809 QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
810 # MinGW needs -mthreads for TLS and macro _MT.
811 QEMU_CFLAGS="-mthreads $QEMU_CFLAGS"
812 LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
813 write_c_skeleton;
814 if compile_prog "" "-liberty" ; then
815 LIBS="-liberty $LIBS"
817 prefix="c:/Program Files/QEMU"
818 mandir="\${prefix}"
819 datadir="\${prefix}"
820 qemu_docdir="\${prefix}"
821 bindir="\${prefix}"
822 sysconfdir="\${prefix}"
823 local_statedir=
824 confsuffix=""
825 libs_qga="-lws2_32 -lwinmm -lpowrprof -lwtsapi32 -liphlpapi -lnetapi32 $libs_qga"
828 werror=""
830 for opt do
831 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
832 case "$opt" in
833 --help|-h) show_help=yes
835 --version|-V) exec cat $source_path/VERSION
837 --prefix=*) prefix="$optarg"
839 --interp-prefix=*) interp_prefix="$optarg"
841 --source-path=*)
843 --cross-prefix=*)
845 --cc=*)
847 --host-cc=*) host_cc="$optarg"
849 --cxx=*)
851 --iasl=*) iasl="$optarg"
853 --objcc=*) objcc="$optarg"
855 --make=*) make="$optarg"
857 --install=*) install="$optarg"
859 --python=*) python="$optarg"
861 --gcov=*) gcov_tool="$optarg"
863 --smbd=*) smbd="$optarg"
865 --extra-cflags=*)
867 --extra-cxxflags=*)
869 --extra-ldflags=*)
871 --enable-debug-info)
873 --disable-debug-info)
875 --enable-modules)
876 modules="yes"
878 --disable-modules)
879 modules="no"
881 --cpu=*)
883 --target-list=*) target_list="$optarg"
885 --enable-trace-backends=*) trace_backends="$optarg"
887 # XXX: backwards compatibility
888 --enable-trace-backend=*) trace_backends="$optarg"
890 --with-trace-file=*) trace_file="$optarg"
892 --enable-gprof) gprof="yes"
894 --enable-gcov) gcov="yes"
896 --static)
897 static="yes"
898 LDFLAGS="-static $LDFLAGS"
899 QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS"
901 --mandir=*) mandir="$optarg"
903 --bindir=*) bindir="$optarg"
905 --libdir=*) libdir="$optarg"
907 --libexecdir=*) libexecdir="$optarg"
909 --includedir=*) includedir="$optarg"
911 --datadir=*) datadir="$optarg"
913 --with-confsuffix=*) confsuffix="$optarg"
915 --docdir=*) qemu_docdir="$optarg"
917 --sysconfdir=*) sysconfdir="$optarg"
919 --localstatedir=*) local_statedir="$optarg"
921 --sbindir=*|--sharedstatedir=*|\
922 --oldincludedir=*|--datarootdir=*|--infodir=*|--localedir=*|\
923 --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*)
924 # These switches are silently ignored, for compatibility with
925 # autoconf-generated configure scripts. This allows QEMU's
926 # configure to be used by RPM and similar macros that set
927 # lots of directory switches by default.
929 --with-system-pixman) pixman="system"
931 --without-system-pixman) pixman="internal"
933 --without-pixman) pixman="none"
935 --disable-sdl) sdl="no"
937 --enable-sdl) sdl="yes"
939 --with-sdlabi=*) sdlabi="$optarg"
941 --disable-qom-cast-debug) qom_cast_debug="no"
943 --enable-qom-cast-debug) qom_cast_debug="yes"
945 --disable-virtfs) virtfs="no"
947 --enable-virtfs) virtfs="yes"
949 --disable-vnc) vnc="no"
951 --enable-vnc) vnc="yes"
953 --oss-lib=*) oss_lib="$optarg"
955 --audio-drv-list=*) audio_drv_list="$optarg"
957 --block-drv-rw-whitelist=*|--block-drv-whitelist=*) block_drv_rw_whitelist=$(echo "$optarg" | sed -e 's/,/ /g')
959 --block-drv-ro-whitelist=*) block_drv_ro_whitelist=$(echo "$optarg" | sed -e 's/,/ /g')
961 --enable-debug-tcg) debug_tcg="yes"
963 --disable-debug-tcg) debug_tcg="no"
965 --enable-debug)
966 # Enable debugging options that aren't excessively noisy
967 debug_tcg="yes"
968 debug="yes"
969 strip_opt="no"
970 fortify_source="no"
972 --enable-sparse) sparse="yes"
974 --disable-sparse) sparse="no"
976 --disable-strip) strip_opt="no"
978 --disable-vnc-sasl) vnc_sasl="no"
980 --enable-vnc-sasl) vnc_sasl="yes"
982 --disable-vnc-jpeg) vnc_jpeg="no"
984 --enable-vnc-jpeg) vnc_jpeg="yes"
986 --disable-vnc-png) vnc_png="no"
988 --enable-vnc-png) vnc_png="yes"
990 --disable-slirp) slirp="no"
992 --disable-vde) vde="no"
994 --enable-vde) vde="yes"
996 --disable-netmap) netmap="no"
998 --enable-netmap) netmap="yes"
1000 --disable-xen) xen="no"
1002 --enable-xen) xen="yes"
1004 --disable-xen-pci-passthrough) xen_pci_passthrough="no"
1006 --enable-xen-pci-passthrough) xen_pci_passthrough="yes"
1008 --disable-xen-pv-domain-build) xen_pv_domain_build="no"
1010 --enable-xen-pv-domain-build) xen_pv_domain_build="yes"
1012 --disable-brlapi) brlapi="no"
1014 --enable-brlapi) brlapi="yes"
1016 --disable-bluez) bluez="no"
1018 --enable-bluez) bluez="yes"
1020 --disable-kvm) kvm="no"
1022 --enable-kvm) kvm="yes"
1024 --disable-hax) hax="no"
1026 --enable-hax) hax="yes"
1028 --disable-tcg-interpreter) tcg_interpreter="no"
1030 --enable-tcg-interpreter) tcg_interpreter="yes"
1032 --disable-cap-ng) cap_ng="no"
1034 --enable-cap-ng) cap_ng="yes"
1036 --disable-tcg) tcg="no"
1038 --enable-tcg) tcg="yes"
1040 --disable-spice) spice="no"
1042 --enable-spice) spice="yes"
1044 --disable-libiscsi) libiscsi="no"
1046 --enable-libiscsi) libiscsi="yes"
1048 --disable-libnfs) libnfs="no"
1050 --enable-libnfs) libnfs="yes"
1052 --enable-profiler) profiler="yes"
1054 --disable-cocoa) cocoa="no"
1056 --enable-cocoa)
1057 cocoa="yes" ;
1058 audio_drv_list="coreaudio $(echo $audio_drv_list | sed s,coreaudio,,g)"
1060 --disable-system) softmmu="no"
1062 --enable-system) softmmu="yes"
1064 --disable-user)
1065 linux_user="no" ;
1066 bsd_user="no" ;
1068 --enable-user) ;;
1069 --disable-linux-user) linux_user="no"
1071 --enable-linux-user) linux_user="yes"
1073 --disable-bsd-user) bsd_user="no"
1075 --enable-bsd-user) bsd_user="yes"
1077 --enable-pie) pie="yes"
1079 --disable-pie) pie="no"
1081 --enable-werror) werror="yes"
1083 --disable-werror) werror="no"
1085 --enable-stack-protector) stack_protector="yes"
1087 --disable-stack-protector) stack_protector="no"
1089 --disable-curses) curses="no"
1091 --enable-curses) curses="yes"
1093 --disable-curl) curl="no"
1095 --enable-curl) curl="yes"
1097 --disable-fdt) fdt="no"
1099 --enable-fdt) fdt="yes"
1101 --disable-linux-aio) linux_aio="no"
1103 --enable-linux-aio) linux_aio="yes"
1105 --disable-attr) attr="no"
1107 --enable-attr) attr="yes"
1109 --disable-blobs) blobs="no"
1111 --with-pkgversion=*) pkgversion=" ($optarg)"
1113 --with-coroutine=*) coroutine="$optarg"
1115 --disable-coroutine-pool) coroutine_pool="no"
1117 --enable-coroutine-pool) coroutine_pool="yes"
1119 --enable-debug-stack-usage) debug_stack_usage="yes"
1121 --enable-crypto-afalg) crypto_afalg="yes"
1123 --disable-crypto-afalg) crypto_afalg="no"
1125 --disable-docs) docs="no"
1127 --enable-docs) docs="yes"
1129 --disable-vhost-net) vhost_net="no"
1131 --enable-vhost-net) vhost_net="yes"
1133 --disable-vhost-scsi) vhost_scsi="no"
1135 --enable-vhost-scsi) vhost_scsi="yes"
1137 --disable-vhost-vsock) vhost_vsock="no"
1139 --enable-vhost-vsock) vhost_vsock="yes"
1141 --disable-opengl) opengl="no"
1143 --enable-opengl) opengl="yes"
1145 --disable-rbd) rbd="no"
1147 --enable-rbd) rbd="yes"
1149 --disable-xfsctl) xfs="no"
1151 --enable-xfsctl) xfs="yes"
1153 --disable-smartcard) smartcard="no"
1155 --enable-smartcard) smartcard="yes"
1157 --disable-libusb) libusb="no"
1159 --enable-libusb) libusb="yes"
1161 --disable-usb-redir) usb_redir="no"
1163 --enable-usb-redir) usb_redir="yes"
1165 --disable-zlib-test) zlib="no"
1167 --disable-lzo) lzo="no"
1169 --enable-lzo) lzo="yes"
1171 --disable-snappy) snappy="no"
1173 --enable-snappy) snappy="yes"
1175 --disable-bzip2) bzip2="no"
1177 --enable-bzip2) bzip2="yes"
1179 --enable-guest-agent) guest_agent="yes"
1181 --disable-guest-agent) guest_agent="no"
1183 --enable-guest-agent-msi) guest_agent_msi="yes"
1185 --disable-guest-agent-msi) guest_agent_msi="no"
1187 --with-vss-sdk) vss_win32_sdk=""
1189 --with-vss-sdk=*) vss_win32_sdk="$optarg"
1191 --without-vss-sdk) vss_win32_sdk="no"
1193 --with-win-sdk) win_sdk=""
1195 --with-win-sdk=*) win_sdk="$optarg"
1197 --without-win-sdk) win_sdk="no"
1199 --enable-tools) want_tools="yes"
1201 --disable-tools) want_tools="no"
1203 --enable-seccomp) seccomp="yes"
1205 --disable-seccomp) seccomp="no"
1207 --disable-glusterfs) glusterfs="no"
1209 --enable-glusterfs) glusterfs="yes"
1211 --disable-virtio-blk-data-plane|--enable-virtio-blk-data-plane)
1212 echo "$0: $opt is obsolete, virtio-blk data-plane is always on" >&2
1214 --enable-vhdx|--disable-vhdx)
1215 echo "$0: $opt is obsolete, VHDX driver is always built" >&2
1217 --enable-uuid|--disable-uuid)
1218 echo "$0: $opt is obsolete, UUID support is always built" >&2
1220 --disable-gtk) gtk="no"
1222 --enable-gtk) gtk="yes"
1224 --tls-priority=*) tls_priority="$optarg"
1226 --disable-gnutls) gnutls="no"
1228 --enable-gnutls) gnutls="yes"
1230 --disable-nettle) nettle="no"
1232 --enable-nettle) nettle="yes"
1234 --disable-gcrypt) gcrypt="no"
1236 --enable-gcrypt) gcrypt="yes"
1238 --enable-rdma) rdma="yes"
1240 --disable-rdma) rdma="no"
1242 --with-gtkabi=*) gtkabi="$optarg"
1244 --disable-vte) vte="no"
1246 --enable-vte) vte="yes"
1248 --disable-virglrenderer) virglrenderer="no"
1250 --enable-virglrenderer) virglrenderer="yes"
1252 --disable-tpm) tpm="no"
1254 --enable-tpm) tpm="yes"
1256 --disable-libssh2) libssh2="no"
1258 --enable-libssh2) libssh2="yes"
1260 --disable-live-block-migration) live_block_migration="no"
1262 --enable-live-block-migration) live_block_migration="yes"
1264 --disable-numa) numa="no"
1266 --enable-numa) numa="yes"
1268 --disable-tcmalloc) tcmalloc="no"
1270 --enable-tcmalloc) tcmalloc="yes"
1272 --disable-jemalloc) jemalloc="no"
1274 --enable-jemalloc) jemalloc="yes"
1276 --disable-replication) replication="no"
1278 --enable-replication) replication="yes"
1280 --disable-vxhs) vxhs="no"
1282 --enable-vxhs) vxhs="yes"
1285 echo "ERROR: unknown option $opt"
1286 echo "Try '$0 --help' for more information"
1287 exit 1
1289 esac
1290 done
1292 case "$cpu" in
1293 ppc)
1294 CPU_CFLAGS="-m32"
1295 LDFLAGS="-m32 $LDFLAGS"
1297 ppc64)
1298 CPU_CFLAGS="-m64"
1299 LDFLAGS="-m64 $LDFLAGS"
1301 sparc)
1302 CPU_CFLAGS="-m32 -mv8plus -mcpu=ultrasparc"
1303 LDFLAGS="-m32 -mv8plus $LDFLAGS"
1305 sparc64)
1306 CPU_CFLAGS="-m64 -mcpu=ultrasparc"
1307 LDFLAGS="-m64 $LDFLAGS"
1309 s390)
1310 CPU_CFLAGS="-m31"
1311 LDFLAGS="-m31 $LDFLAGS"
1313 s390x)
1314 CPU_CFLAGS="-m64"
1315 LDFLAGS="-m64 $LDFLAGS"
1317 i386)
1318 CPU_CFLAGS="-m32"
1319 LDFLAGS="-m32 $LDFLAGS"
1320 cc_i386='$(CC) -m32'
1322 x86_64)
1323 # ??? Only extremely old AMD cpus do not have cmpxchg16b.
1324 # If we truly care, we should simply detect this case at
1325 # runtime and generate the fallback to serial emulation.
1326 CPU_CFLAGS="-m64 -mcx16"
1327 LDFLAGS="-m64 $LDFLAGS"
1328 cc_i386='$(CC) -m32'
1330 x32)
1331 CPU_CFLAGS="-mx32"
1332 LDFLAGS="-mx32 $LDFLAGS"
1333 cc_i386='$(CC) -m32'
1335 # No special flags required for other host CPUs
1336 esac
1338 QEMU_CFLAGS="$CPU_CFLAGS $QEMU_CFLAGS"
1339 EXTRA_CFLAGS="$CPU_CFLAGS $EXTRA_CFLAGS"
1341 # For user-mode emulation the host arch has to be one we explicitly
1342 # support, even if we're using TCI.
1343 if [ "$ARCH" = "unknown" ]; then
1344 bsd_user="no"
1345 linux_user="no"
1348 default_target_list=""
1350 mak_wilds=""
1352 if [ "$softmmu" = "yes" ]; then
1353 mak_wilds="${mak_wilds} $source_path/default-configs/*-softmmu.mak"
1355 if [ "$linux_user" = "yes" ]; then
1356 mak_wilds="${mak_wilds} $source_path/default-configs/*-linux-user.mak"
1358 if [ "$bsd_user" = "yes" ]; then
1359 mak_wilds="${mak_wilds} $source_path/default-configs/*-bsd-user.mak"
1362 for config in $mak_wilds; do
1363 default_target_list="${default_target_list} $(basename "$config" .mak)"
1364 done
1366 # Enumerate public trace backends for --help output
1367 trace_backend_list=$(echo $(grep -le '^PUBLIC = True$' "$source_path"/scripts/tracetool/backend/*.py | sed -e 's/^.*\/\(.*\)\.py$/\1/'))
1369 if test x"$show_help" = x"yes" ; then
1370 cat << EOF
1372 Usage: configure [options]
1373 Options: [defaults in brackets after descriptions]
1375 Standard options:
1376 --help print this message
1377 --prefix=PREFIX install in PREFIX [$prefix]
1378 --interp-prefix=PREFIX where to find shared libraries, etc.
1379 use %M for cpu name [$interp_prefix]
1380 --target-list=LIST set target list (default: build everything)
1381 $(echo Available targets: $default_target_list | \
1382 fold -s -w 53 | sed -e 's/^/ /')
1384 Advanced options (experts only):
1385 --source-path=PATH path of source code [$source_path]
1386 --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]
1387 --cc=CC use C compiler CC [$cc]
1388 --iasl=IASL use ACPI compiler IASL [$iasl]
1389 --host-cc=CC use C compiler CC [$host_cc] for code run at
1390 build time
1391 --cxx=CXX use C++ compiler CXX [$cxx]
1392 --objcc=OBJCC use Objective-C compiler OBJCC [$objcc]
1393 --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS
1394 --extra-cxxflags=CXXFLAGS append extra C++ compiler flags QEMU_CXXFLAGS
1395 --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS
1396 --make=MAKE use specified make [$make]
1397 --install=INSTALL use specified install [$install]
1398 --python=PYTHON use specified python [$python]
1399 --smbd=SMBD use specified smbd [$smbd]
1400 --static enable static build [$static]
1401 --mandir=PATH install man pages in PATH
1402 --datadir=PATH install firmware in PATH$confsuffix
1403 --docdir=PATH install documentation in PATH$confsuffix
1404 --bindir=PATH install binaries in PATH
1405 --libdir=PATH install libraries in PATH
1406 --sysconfdir=PATH install config in PATH$confsuffix
1407 --localstatedir=PATH install local state in PATH (set at runtime on win32)
1408 --with-confsuffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir [$confsuffix]
1409 --enable-debug enable common debug build options
1410 --disable-strip disable stripping binaries
1411 --disable-werror disable compilation abort on warning
1412 --disable-stack-protector disable compiler-provided stack protection
1413 --audio-drv-list=LIST set audio drivers list:
1414 Available drivers: $audio_possible_drivers
1415 --block-drv-whitelist=L Same as --block-drv-rw-whitelist=L
1416 --block-drv-rw-whitelist=L
1417 set block driver read-write whitelist
1418 (affects only QEMU, not qemu-img)
1419 --block-drv-ro-whitelist=L
1420 set block driver read-only whitelist
1421 (affects only QEMU, not qemu-img)
1422 --enable-trace-backends=B Set trace backend
1423 Available backends: $trace_backend_list
1424 --with-trace-file=NAME Full PATH,NAME of file to store traces
1425 Default:trace-<pid>
1426 --disable-slirp disable SLIRP userspace network connectivity
1427 --enable-tcg-interpreter enable TCG with bytecode interpreter (TCI)
1428 --oss-lib path to OSS library
1429 --cpu=CPU Build for host CPU [$cpu]
1430 --with-coroutine=BACKEND coroutine backend. Supported options:
1431 ucontext, sigaltstack, windows
1432 --enable-gcov enable test coverage analysis with gcov
1433 --gcov=GCOV use specified gcov [$gcov_tool]
1434 --disable-blobs disable installing provided firmware blobs
1435 --with-vss-sdk=SDK-path enable Windows VSS support in QEMU Guest Agent
1436 --with-win-sdk=SDK-path path to Windows Platform SDK (to build VSS .tlb)
1437 --tls-priority default TLS protocol/cipher priority string
1438 --enable-gprof QEMU profiling with gprof
1439 --enable-profiler profiler support
1440 --enable-xen-pv-domain-build
1441 xen pv domain builder
1442 --enable-debug-stack-usage
1443 track the maximum stack usage of stacks created by qemu_alloc_stack
1445 Optional features, enabled with --enable-FEATURE and
1446 disabled with --disable-FEATURE, default is enabled if available:
1448 system all system emulation targets
1449 user supported user emulation targets
1450 linux-user all linux usermode emulation targets
1451 bsd-user all BSD usermode emulation targets
1452 docs build documentation
1453 guest-agent build the QEMU Guest Agent
1454 guest-agent-msi build guest agent Windows MSI installation package
1455 pie Position Independent Executables
1456 modules modules support
1457 debug-tcg TCG debugging (default is disabled)
1458 debug-info debugging information
1459 sparse sparse checker
1461 gnutls GNUTLS cryptography support
1462 nettle nettle cryptography support
1463 gcrypt libgcrypt cryptography support
1464 sdl SDL UI
1465 --with-sdlabi select preferred SDL ABI 1.2 or 2.0
1466 gtk gtk UI
1467 --with-gtkabi select preferred GTK ABI 2.0 or 3.0
1468 vte vte support for the gtk UI
1469 curses curses UI
1470 vnc VNC UI support
1471 vnc-sasl SASL encryption for VNC server
1472 vnc-jpeg JPEG lossy compression for VNC server
1473 vnc-png PNG compression for VNC server
1474 cocoa Cocoa UI (Mac OS X only)
1475 virtfs VirtFS
1476 xen xen backend driver support
1477 xen-pci-passthrough
1478 brlapi BrlAPI (Braile)
1479 curl curl connectivity
1480 fdt fdt device tree
1481 bluez bluez stack connectivity
1482 kvm KVM acceleration support
1483 hax HAX acceleration support
1484 rdma RDMA-based migration support
1485 vde support for vde network
1486 netmap support for netmap network
1487 linux-aio Linux AIO support
1488 cap-ng libcap-ng support
1489 attr attr and xattr support
1490 vhost-net vhost-net acceleration support
1491 spice spice
1492 rbd rados block device (rbd)
1493 libiscsi iscsi support
1494 libnfs nfs support
1495 smartcard smartcard support (libcacard)
1496 libusb libusb (for usb passthrough)
1497 live-block-migration Block migration in the main migration stream
1498 usb-redir usb network redirection support
1499 lzo support of lzo compression library
1500 snappy support of snappy compression library
1501 bzip2 support of bzip2 compression library
1502 (for reading bzip2-compressed dmg images)
1503 seccomp seccomp support
1504 coroutine-pool coroutine freelist (better performance)
1505 glusterfs GlusterFS backend
1506 tpm TPM support
1507 libssh2 ssh block device support
1508 numa libnuma support
1509 tcmalloc tcmalloc support
1510 jemalloc jemalloc support
1511 replication replication support
1512 vhost-vsock virtio sockets device support
1513 opengl opengl support
1514 virglrenderer virgl rendering support
1515 xfsctl xfsctl support
1516 qom-cast-debug cast debugging support
1517 tools build qemu-io, qemu-nbd and qemu-image tools
1518 vxhs Veritas HyperScale vDisk backend support
1519 crypto-afalg Linux AF_ALG crypto backend driver
1521 NOTE: The object files are built at the place where configure is launched
1523 exit 0
1526 if ! has $python; then
1527 error_exit "Python not found. Use --python=/path/to/python"
1530 # Note that if the Python conditional here evaluates True we will exit
1531 # with status 1 which is a shell 'false' value.
1532 if ! $python -c 'import sys; sys.exit(sys.version_info < (2,6) or sys.version_info >= (3,))'; then
1533 error_exit "Cannot use '$python', Python 2.6 or later is required." \
1534 "Note that Python 3 or later is not yet supported." \
1535 "Use --python=/path/to/python to specify a supported Python."
1538 # Suppress writing compiled files
1539 python="$python -B"
1541 # Now we have handled --enable-tcg-interpreter and know we're not just
1542 # printing the help message, bail out if the host CPU isn't supported.
1543 if test "$ARCH" = "unknown"; then
1544 if test "$tcg_interpreter" = "yes" ; then
1545 echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)"
1546 else
1547 error_exit "Unsupported CPU = $cpu, try --enable-tcg-interpreter"
1551 # Consult white-list to determine whether to enable werror
1552 # by default. Only enable by default for git builds
1553 if test -z "$werror" ; then
1554 if test -d "$source_path/.git" -a \
1555 \( "$linux" = "yes" -o "$mingw32" = "yes" \) ; then
1556 werror="yes"
1557 else
1558 werror="no"
1562 # check that the C compiler works.
1563 write_c_skeleton;
1564 if compile_object ; then
1565 : C compiler works ok
1566 else
1567 error_exit "\"$cc\" either does not exist or does not work"
1569 if ! compile_prog ; then
1570 error_exit "\"$cc\" cannot build an executable (is your linker broken?)"
1573 if test "$bogus_os" = "yes"; then
1574 # Now that we know that we're not printing the help and that
1575 # the compiler works (so the results of the check_defines we used
1576 # to identify the OS are reliable), if we didn't recognize the
1577 # host OS we should stop now.
1578 error_exit "Unrecognized host OS (uname -s reports '$(uname -s)')"
1581 gcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
1582 gcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
1583 gcc_flags="-Wno-missing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
1584 gcc_flags="-Wendif-labels -Wno-shift-negative-value $gcc_flags"
1585 gcc_flags="-Wno-initializer-overrides -Wexpansion-to-defined $gcc_flags"
1586 gcc_flags="-Wno-string-plus-int $gcc_flags"
1587 # Note that we do not add -Werror to gcc_flags here, because that would
1588 # enable it for all configure tests. If a configure test failed due
1589 # to -Werror this would just silently disable some features,
1590 # so it's too error prone.
1592 cc_has_warning_flag() {
1593 write_c_skeleton;
1595 # Use the positive sense of the flag when testing for -Wno-wombat
1596 # support (gcc will happily accept the -Wno- form of unknown
1597 # warning options).
1598 optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')"
1599 compile_prog "-Werror $optflag" ""
1602 for flag in $gcc_flags; do
1603 if cc_has_warning_flag $flag ; then
1604 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
1606 done
1608 if test "$stack_protector" != "no"; then
1609 cat > $TMPC << EOF
1610 int main(int argc, char *argv[])
1612 char arr[64], *p = arr, *c = argv[0];
1613 while (*c) {
1614 *p++ = *c++;
1616 return 0;
1619 gcc_flags="-fstack-protector-strong -fstack-protector-all"
1620 sp_on=0
1621 for flag in $gcc_flags; do
1622 # We need to check both a compile and a link, since some compiler
1623 # setups fail only on a .c->.o compile and some only at link time
1624 if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC &&
1625 compile_prog "-Werror $flag" ""; then
1626 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
1627 sp_on=1
1628 break
1630 done
1631 if test "$stack_protector" = yes; then
1632 if test $sp_on = 0; then
1633 error_exit "Stack protector not supported"
1638 # Workaround for http://gcc.gnu.org/PR55489. Happens with -fPIE/-fPIC and
1639 # large functions that use global variables. The bug is in all releases of
1640 # GCC, but it became particularly acute in 4.6.x and 4.7.x. It is fixed in
1641 # 4.7.3 and 4.8.0. We should be able to delete this at the end of 2013.
1642 cat > $TMPC << EOF
1643 #if __GNUC__ == 4 && (__GNUC_MINOR__ == 6 || (__GNUC_MINOR__ == 7 && __GNUC_PATCHLEVEL__ <= 2))
1644 int main(void) { return 0; }
1645 #else
1646 #error No bug in this compiler.
1647 #endif
1649 if compile_prog "-Werror -fno-gcse" "" ; then
1650 TRANSLATE_OPT_CFLAGS=-fno-gcse
1653 if test "$static" = "yes" ; then
1654 if test "$modules" = "yes" ; then
1655 error_exit "static and modules are mutually incompatible"
1657 if test "$pie" = "yes" ; then
1658 error_exit "static and pie are mutually incompatible"
1659 else
1660 pie="no"
1664 # Unconditional check for compiler __thread support
1665 cat > $TMPC << EOF
1666 static __thread int tls_var;
1667 int main(void) { return tls_var; }
1670 if ! compile_prog "-Werror" "" ; then
1671 error_exit "Your compiler does not support the __thread specifier for " \
1672 "Thread-Local Storage (TLS). Please upgrade to a version that does."
1675 if test "$pie" = ""; then
1676 case "$cpu-$targetos" in
1677 i386-Linux|x86_64-Linux|x32-Linux|i386-OpenBSD|x86_64-OpenBSD)
1680 pie="no"
1682 esac
1685 if test "$pie" != "no" ; then
1686 cat > $TMPC << EOF
1688 #ifdef __linux__
1689 # define THREAD __thread
1690 #else
1691 # define THREAD
1692 #endif
1694 static THREAD int tls_var;
1696 int main(void) { return tls_var; }
1699 if compile_prog "-fPIE -DPIE" "-pie"; then
1700 QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS"
1701 LDFLAGS="-pie $LDFLAGS"
1702 pie="yes"
1703 if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then
1704 LDFLAGS="-Wl,-z,relro -Wl,-z,now $LDFLAGS"
1706 else
1707 if test "$pie" = "yes"; then
1708 error_exit "PIE not available due to missing toolchain support"
1709 else
1710 echo "Disabling PIE due to missing toolchain support"
1711 pie="no"
1715 if compile_prog "-Werror -fno-pie" "-nopie"; then
1716 CFLAGS_NOPIE="-fno-pie"
1717 LDFLAGS_NOPIE="-nopie"
1721 ##########################################
1722 # __sync_fetch_and_and requires at least -march=i486. Many toolchains
1723 # use i686 as default anyway, but for those that don't, an explicit
1724 # specification is necessary
1726 if test "$cpu" = "i386"; then
1727 cat > $TMPC << EOF
1728 static int sfaa(int *ptr)
1730 return __sync_fetch_and_and(ptr, 0);
1733 int main(void)
1735 int val = 42;
1736 val = __sync_val_compare_and_swap(&val, 0, 1);
1737 sfaa(&val);
1738 return val;
1741 if ! compile_prog "" "" ; then
1742 QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS"
1746 #########################################
1747 # Solaris specific configure tool chain decisions
1749 if test "$solaris" = "yes" ; then
1750 if has $install; then
1752 else
1753 error_exit "Solaris install program not found. Use --install=/usr/ucb/install or" \
1754 "install fileutils from www.blastwave.org using pkg-get -i fileutils" \
1755 "to get ginstall which is used by default (which lives in /opt/csw/bin)"
1757 if test "$(path_of $install)" = "/usr/sbin/install" ; then
1758 error_exit "Solaris /usr/sbin/install is not an appropriate install program." \
1759 "try ginstall from the GNU fileutils available from www.blastwave.org" \
1760 "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
1762 if has ar; then
1764 else
1765 if test -f /usr/ccs/bin/ar ; then
1766 error_exit "No path includes ar" \
1767 "Add /usr/ccs/bin to your path and rerun configure"
1769 error_exit "No path includes ar"
1773 if test -z "${target_list+xxx}" ; then
1774 for target in $default_target_list; do
1775 supported_target $target 2>/dev/null && \
1776 target_list="$target_list $target"
1777 done
1778 target_list="${target_list# }"
1779 else
1780 target_list=$(echo "$target_list" | sed -e 's/,/ /g')
1781 for target in $target_list; do
1782 # Check that we recognised the target name; this allows a more
1783 # friendly error message than if we let it fall through.
1784 case " $default_target_list " in
1785 *" $target "*)
1788 error_exit "Unknown target name '$target'"
1790 esac
1791 supported_target $target || exit 1
1792 done
1795 # see if system emulation was really requested
1796 case " $target_list " in
1797 *"-softmmu "*) softmmu=yes
1799 *) softmmu=no
1801 esac
1803 feature_not_found() {
1804 feature=$1
1805 remedy=$2
1807 error_exit "User requested feature $feature" \
1808 "configure was not able to find it." \
1809 "$remedy"
1812 # ---
1813 # big/little endian test
1814 cat > $TMPC << EOF
1815 short big_endian[] = { 0x4269, 0x4765, 0x4e64, 0x4961, 0x4e00, 0, };
1816 short little_endian[] = { 0x694c, 0x7454, 0x654c, 0x6e45, 0x6944, 0x6e41, 0, };
1817 extern int foo(short *, short *);
1818 int main(int argc, char *argv[]) {
1819 return foo(big_endian, little_endian);
1823 if compile_object ; then
1824 if grep -q BiGeNdIaN $TMPO ; then
1825 bigendian="yes"
1826 elif grep -q LiTtLeEnDiAn $TMPO ; then
1827 bigendian="no"
1828 else
1829 echo big/little test failed
1831 else
1832 echo big/little test failed
1835 ##########################################
1836 # cocoa implies not SDL or GTK
1837 # (the cocoa UI code currently assumes it is always the active UI
1838 # and doesn't interact well with other UI frontend code)
1839 if test "$cocoa" = "yes"; then
1840 if test "$sdl" = "yes"; then
1841 error_exit "Cocoa and SDL UIs cannot both be enabled at once"
1843 if test "$gtk" = "yes"; then
1844 error_exit "Cocoa and GTK UIs cannot both be enabled at once"
1846 gtk=no
1847 sdl=no
1850 # Some versions of Mac OS X incorrectly define SIZE_MAX
1851 cat > $TMPC << EOF
1852 #include <stdint.h>
1853 #include <stdio.h>
1854 int main(int argc, char *argv[]) {
1855 return printf("%zu", SIZE_MAX);
1858 have_broken_size_max=no
1859 if ! compile_object -Werror ; then
1860 have_broken_size_max=yes
1863 ##########################################
1864 # L2TPV3 probe
1866 cat > $TMPC <<EOF
1867 #include <sys/socket.h>
1868 #include <linux/ip.h>
1869 int main(void) { return sizeof(struct mmsghdr); }
1871 if compile_prog "" "" ; then
1872 l2tpv3=yes
1873 else
1874 l2tpv3=no
1877 ##########################################
1878 # MinGW / Mingw-w64 localtime_r/gmtime_r check
1880 if test "$mingw32" = "yes"; then
1881 # Some versions of MinGW / Mingw-w64 lack localtime_r
1882 # and gmtime_r entirely.
1884 # Some versions of Mingw-w64 define a macro for
1885 # localtime_r/gmtime_r.
1887 # Some versions of Mingw-w64 will define functions
1888 # for localtime_r/gmtime_r, but only if you have
1889 # _POSIX_THREAD_SAFE_FUNCTIONS defined. For fun
1890 # though, unistd.h and pthread.h both define
1891 # that for you.
1893 # So this #undef localtime_r and #include <unistd.h>
1894 # are not in fact redundant.
1895 cat > $TMPC << EOF
1896 #include <unistd.h>
1897 #include <time.h>
1898 #undef localtime_r
1899 int main(void) { localtime_r(NULL, NULL); return 0; }
1901 if compile_prog "" "" ; then
1902 localtime_r="yes"
1903 else
1904 localtime_r="no"
1908 ##########################################
1909 # pkg-config probe
1911 if ! has "$pkg_config_exe"; then
1912 error_exit "pkg-config binary '$pkg_config_exe' not found"
1915 ##########################################
1916 # NPTL probe
1918 if test "$linux_user" = "yes"; then
1919 cat > $TMPC <<EOF
1920 #include <sched.h>
1921 #include <linux/futex.h>
1922 int main(void) {
1923 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
1924 #error bork
1925 #endif
1926 return 0;
1929 if ! compile_object ; then
1930 feature_not_found "nptl" "Install glibc and linux kernel headers."
1934 ##########################################
1935 # avx2 optimization requirement check
1937 cat > $TMPC << EOF
1938 #pragma GCC push_options
1939 #pragma GCC target("avx2")
1940 #include <cpuid.h>
1941 #include <immintrin.h>
1942 static int bar(void *a) {
1943 __m256i x = *(__m256i *)a;
1944 return _mm256_testz_si256(x, x);
1946 int main(int argc, char *argv[]) { return bar(argv[0]); }
1948 if compile_object "" ; then
1949 avx2_opt="yes"
1952 #########################################
1953 # zlib check
1955 if test "$zlib" != "no" ; then
1956 cat > $TMPC << EOF
1957 #include <zlib.h>
1958 int main(void) { zlibVersion(); return 0; }
1960 if compile_prog "" "-lz" ; then
1962 else
1963 error_exit "zlib check failed" \
1964 "Make sure to have the zlib libs and headers installed."
1967 LIBS="$LIBS -lz"
1969 ##########################################
1970 # lzo check
1972 if test "$lzo" != "no" ; then
1973 cat > $TMPC << EOF
1974 #include <lzo/lzo1x.h>
1975 int main(void) { lzo_version(); return 0; }
1977 if compile_prog "" "-llzo2" ; then
1978 libs_softmmu="$libs_softmmu -llzo2"
1979 lzo="yes"
1980 else
1981 if test "$lzo" = "yes"; then
1982 feature_not_found "liblzo2" "Install liblzo2 devel"
1984 lzo="no"
1988 ##########################################
1989 # snappy check
1991 if test "$snappy" != "no" ; then
1992 cat > $TMPC << EOF
1993 #include <snappy-c.h>
1994 int main(void) { snappy_max_compressed_length(4096); return 0; }
1996 if compile_prog "" "-lsnappy" ; then
1997 libs_softmmu="$libs_softmmu -lsnappy"
1998 snappy="yes"
1999 else
2000 if test "$snappy" = "yes"; then
2001 feature_not_found "libsnappy" "Install libsnappy devel"
2003 snappy="no"
2007 ##########################################
2008 # bzip2 check
2010 if test "$bzip2" != "no" ; then
2011 cat > $TMPC << EOF
2012 #include <bzlib.h>
2013 int main(void) { BZ2_bzlibVersion(); return 0; }
2015 if compile_prog "" "-lbz2" ; then
2016 bzip2="yes"
2017 else
2018 if test "$bzip2" = "yes"; then
2019 feature_not_found "libbzip2" "Install libbzip2 devel"
2021 bzip2="no"
2025 ##########################################
2026 # libseccomp check
2028 if test "$seccomp" != "no" ; then
2029 case "$cpu" in
2030 i386|x86_64)
2031 libseccomp_minver="2.1.0"
2033 mips)
2034 libseccomp_minver="2.2.0"
2036 arm|aarch64)
2037 libseccomp_minver="2.2.3"
2039 ppc|ppc64)
2040 libseccomp_minver="2.3.0"
2043 libseccomp_minver=""
2045 esac
2047 if test "$libseccomp_minver" != "" &&
2048 $pkg_config --atleast-version=$libseccomp_minver libseccomp ; then
2049 libs_softmmu="$libs_softmmu $($pkg_config --libs libseccomp)"
2050 QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags libseccomp)"
2051 seccomp="yes"
2052 else
2053 if test "$seccomp" = "yes" ; then
2054 if test "$libseccomp_minver" != "" ; then
2055 feature_not_found "libseccomp" \
2056 "Install libseccomp devel >= $libseccomp_minver"
2057 else
2058 feature_not_found "libseccomp" \
2059 "libseccomp is not supported for host cpu $cpu"
2062 seccomp="no"
2065 ##########################################
2066 # xen probe
2068 if test "$xen" != "no" ; then
2069 # Check whether Xen library path is specified via --extra-ldflags to avoid
2070 # overriding this setting with pkg-config output. If not, try pkg-config
2071 # to obtain all needed flags.
2073 if ! echo $EXTRA_LDFLAGS | grep tools/libxc > /dev/null && \
2074 $pkg_config --exists xencontrol ; then
2075 xen_ctrl_version="$(printf '%d%02d%02d' \
2076 $($pkg_config --modversion xencontrol | sed 's/\./ /g') )"
2077 xen=yes
2078 xen_pc="xencontrol xenstore xenguest xenforeignmemory xengnttab"
2079 xen_pc="$xen_pc xenevtchn xendevicemodel"
2080 QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags $xen_pc)"
2081 libs_softmmu="$($pkg_config --libs $xen_pc) $libs_softmmu"
2082 LDFLAGS="$($pkg_config --libs $xen_pc) $LDFLAGS"
2083 else
2085 xen_libs="-lxenstore -lxenctrl -lxenguest"
2086 xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn"
2088 # First we test whether Xen headers and libraries are available.
2089 # If no, we are done and there is no Xen support.
2090 # If yes, more tests are run to detect the Xen version.
2092 # Xen (any)
2093 cat > $TMPC <<EOF
2094 #include <xenctrl.h>
2095 int main(void) {
2096 return 0;
2099 if ! compile_prog "" "$xen_libs" ; then
2100 # Xen not found
2101 if test "$xen" = "yes" ; then
2102 feature_not_found "xen" "Install xen devel"
2104 xen=no
2106 # Xen unstable
2107 elif
2108 cat > $TMPC <<EOF &&
2109 #undef XC_WANT_COMPAT_MAP_FOREIGN_API
2110 #include <xenforeignmemory.h>
2111 int main(void) {
2112 xenforeignmemory_handle *xfmem;
2114 xfmem = xenforeignmemory_open(0, 0);
2115 xenforeignmemory_map2(xfmem, 0, 0, 0, 0, 0, 0, 0);
2117 return 0;
2120 compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs"
2121 then
2122 xen_stable_libs="-lxendevicemodel $xen_stable_libs"
2123 xen_ctrl_version=41000
2124 xen=yes
2125 elif
2126 cat > $TMPC <<EOF &&
2127 #undef XC_WANT_COMPAT_DEVICEMODEL_API
2128 #define __XEN_TOOLS__
2129 #include <xendevicemodel.h>
2130 int main(void) {
2131 xendevicemodel_handle *xd;
2133 xd = xendevicemodel_open(0, 0);
2134 xendevicemodel_close(xd);
2136 return 0;
2139 compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs"
2140 then
2141 xen_stable_libs="-lxendevicemodel $xen_stable_libs"
2142 xen_ctrl_version=40900
2143 xen=yes
2144 elif
2145 cat > $TMPC <<EOF &&
2147 * If we have stable libs the we don't want the libxc compat
2148 * layers, regardless of what CFLAGS we may have been given.
2150 * Also, check if xengnttab_grant_copy_segment_t is defined and
2151 * grant copy operation is implemented.
2153 #undef XC_WANT_COMPAT_EVTCHN_API
2154 #undef XC_WANT_COMPAT_GNTTAB_API
2155 #undef XC_WANT_COMPAT_MAP_FOREIGN_API
2156 #include <xenctrl.h>
2157 #include <xenstore.h>
2158 #include <xenevtchn.h>
2159 #include <xengnttab.h>
2160 #include <xenforeignmemory.h>
2161 #include <stdint.h>
2162 #include <xen/hvm/hvm_info_table.h>
2163 #if !defined(HVM_MAX_VCPUS)
2164 # error HVM_MAX_VCPUS not defined
2165 #endif
2166 int main(void) {
2167 xc_interface *xc = NULL;
2168 xenforeignmemory_handle *xfmem;
2169 xenevtchn_handle *xe;
2170 xengnttab_handle *xg;
2171 xen_domain_handle_t handle;
2172 xengnttab_grant_copy_segment_t* seg = NULL;
2174 xs_daemon_open();
2176 xc = xc_interface_open(0, 0, 0);
2177 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2178 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2179 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2180 xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
2181 xc_domain_create(xc, 0, handle, 0, NULL, NULL);
2183 xfmem = xenforeignmemory_open(0, 0);
2184 xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0);
2186 xe = xenevtchn_open(0, 0);
2187 xenevtchn_fd(xe);
2189 xg = xengnttab_open(0, 0);
2190 xengnttab_grant_copy(xg, 0, seg);
2192 return 0;
2195 compile_prog "" "$xen_libs $xen_stable_libs"
2196 then
2197 xen_ctrl_version=40800
2198 xen=yes
2199 elif
2200 cat > $TMPC <<EOF &&
2202 * If we have stable libs the we don't want the libxc compat
2203 * layers, regardless of what CFLAGS we may have been given.
2205 #undef XC_WANT_COMPAT_EVTCHN_API
2206 #undef XC_WANT_COMPAT_GNTTAB_API
2207 #undef XC_WANT_COMPAT_MAP_FOREIGN_API
2208 #include <xenctrl.h>
2209 #include <xenstore.h>
2210 #include <xenevtchn.h>
2211 #include <xengnttab.h>
2212 #include <xenforeignmemory.h>
2213 #include <stdint.h>
2214 #include <xen/hvm/hvm_info_table.h>
2215 #if !defined(HVM_MAX_VCPUS)
2216 # error HVM_MAX_VCPUS not defined
2217 #endif
2218 int main(void) {
2219 xc_interface *xc = NULL;
2220 xenforeignmemory_handle *xfmem;
2221 xenevtchn_handle *xe;
2222 xengnttab_handle *xg;
2223 xen_domain_handle_t handle;
2225 xs_daemon_open();
2227 xc = xc_interface_open(0, 0, 0);
2228 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2229 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2230 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2231 xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
2232 xc_domain_create(xc, 0, handle, 0, NULL, NULL);
2234 xfmem = xenforeignmemory_open(0, 0);
2235 xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0);
2237 xe = xenevtchn_open(0, 0);
2238 xenevtchn_fd(xe);
2240 xg = xengnttab_open(0, 0);
2241 xengnttab_map_grant_ref(xg, 0, 0, 0);
2243 return 0;
2246 compile_prog "" "$xen_libs $xen_stable_libs"
2247 then
2248 xen_ctrl_version=40701
2249 xen=yes
2250 elif
2251 cat > $TMPC <<EOF &&
2252 #include <xenctrl.h>
2253 #include <stdint.h>
2254 int main(void) {
2255 xc_interface *xc = NULL;
2256 xen_domain_handle_t handle;
2257 xc_domain_create(xc, 0, handle, 0, NULL, NULL);
2258 return 0;
2261 compile_prog "" "$xen_libs"
2262 then
2263 xen_ctrl_version=40700
2264 xen=yes
2266 # Xen 4.6
2267 elif
2268 cat > $TMPC <<EOF &&
2269 #include <xenctrl.h>
2270 #include <xenstore.h>
2271 #include <stdint.h>
2272 #include <xen/hvm/hvm_info_table.h>
2273 #if !defined(HVM_MAX_VCPUS)
2274 # error HVM_MAX_VCPUS not defined
2275 #endif
2276 int main(void) {
2277 xc_interface *xc;
2278 xs_daemon_open();
2279 xc = xc_interface_open(0, 0, 0);
2280 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2281 xc_gnttab_open(NULL, 0);
2282 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2283 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2284 xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
2285 xc_reserved_device_memory_map(xc, 0, 0, 0, 0, NULL, 0);
2286 return 0;
2289 compile_prog "" "$xen_libs"
2290 then
2291 xen_ctrl_version=40600
2292 xen=yes
2294 # Xen 4.5
2295 elif
2296 cat > $TMPC <<EOF &&
2297 #include <xenctrl.h>
2298 #include <xenstore.h>
2299 #include <stdint.h>
2300 #include <xen/hvm/hvm_info_table.h>
2301 #if !defined(HVM_MAX_VCPUS)
2302 # error HVM_MAX_VCPUS not defined
2303 #endif
2304 int main(void) {
2305 xc_interface *xc;
2306 xs_daemon_open();
2307 xc = xc_interface_open(0, 0, 0);
2308 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2309 xc_gnttab_open(NULL, 0);
2310 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2311 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2312 xc_hvm_create_ioreq_server(xc, 0, 0, NULL);
2313 return 0;
2316 compile_prog "" "$xen_libs"
2317 then
2318 xen_ctrl_version=40500
2319 xen=yes
2321 elif
2322 cat > $TMPC <<EOF &&
2323 #include <xenctrl.h>
2324 #include <xenstore.h>
2325 #include <stdint.h>
2326 #include <xen/hvm/hvm_info_table.h>
2327 #if !defined(HVM_MAX_VCPUS)
2328 # error HVM_MAX_VCPUS not defined
2329 #endif
2330 int main(void) {
2331 xc_interface *xc;
2332 xs_daemon_open();
2333 xc = xc_interface_open(0, 0, 0);
2334 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2335 xc_gnttab_open(NULL, 0);
2336 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2337 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2338 return 0;
2341 compile_prog "" "$xen_libs"
2342 then
2343 xen_ctrl_version=40200
2344 xen=yes
2346 else
2347 if test "$xen" = "yes" ; then
2348 feature_not_found "xen (unsupported version)" \
2349 "Install a supported xen (xen 4.2 or newer)"
2351 xen=no
2354 if test "$xen" = yes; then
2355 if test $xen_ctrl_version -ge 40701 ; then
2356 libs_softmmu="$xen_stable_libs $libs_softmmu"
2358 libs_softmmu="$xen_libs $libs_softmmu"
2363 if test "$xen_pci_passthrough" != "no"; then
2364 if test "$xen" = "yes" && test "$linux" = "yes"; then
2365 xen_pci_passthrough=yes
2366 else
2367 if test "$xen_pci_passthrough" = "yes"; then
2368 error_exit "User requested feature Xen PCI Passthrough" \
2369 " but this feature requires /sys from Linux"
2371 xen_pci_passthrough=no
2375 if test "$xen_pv_domain_build" = "yes" &&
2376 test "$xen" != "yes"; then
2377 error_exit "User requested Xen PV domain builder support" \
2378 "which requires Xen support."
2381 ##########################################
2382 # Sparse probe
2383 if test "$sparse" != "no" ; then
2384 if has cgcc; then
2385 sparse=yes
2386 else
2387 if test "$sparse" = "yes" ; then
2388 feature_not_found "sparse" "Install sparse binary"
2390 sparse=no
2394 ##########################################
2395 # X11 probe
2396 x11_cflags=
2397 x11_libs=-lX11
2398 if $pkg_config --exists "x11"; then
2399 x11_cflags=$($pkg_config --cflags x11)
2400 x11_libs=$($pkg_config --libs x11)
2403 ##########################################
2404 # GTK probe
2406 if test "$gtkabi" = ""; then
2407 # The GTK ABI was not specified explicitly, so try whether 3.0 is available.
2408 # Use 2.0 as a fallback if that is available.
2409 if $pkg_config --exists "gtk+-3.0 >= 3.0.0"; then
2410 gtkabi=3.0
2411 elif $pkg_config --exists "gtk+-2.0 >= 2.18.0"; then
2412 gtkabi=2.0
2413 else
2414 gtkabi=3.0
2418 if test "$gtk" != "no"; then
2419 gtkpackage="gtk+-$gtkabi"
2420 gtkx11package="gtk+-x11-$gtkabi"
2421 if test "$gtkabi" = "3.0" ; then
2422 gtkversion="3.0.0"
2423 else
2424 gtkversion="2.18.0"
2426 if $pkg_config --exists "$gtkpackage >= $gtkversion"; then
2427 gtk_cflags=$($pkg_config --cflags $gtkpackage)
2428 gtk_libs=$($pkg_config --libs $gtkpackage)
2429 gtk_version=$($pkg_config --modversion $gtkpackage)
2430 if $pkg_config --exists "$gtkx11package >= $gtkversion"; then
2431 gtk_cflags="$gtk_cflags $x11_cflags"
2432 gtk_libs="$gtk_libs $x11_libs"
2434 libs_softmmu="$gtk_libs $libs_softmmu"
2435 gtk="yes"
2436 elif test "$gtk" = "yes"; then
2437 feature_not_found "gtk" "Install gtk3-devel"
2438 else
2439 gtk="no"
2444 ##########################################
2445 # GNUTLS probe
2447 gnutls_works() {
2448 # Unfortunately some distros have bad pkg-config information for gnutls
2449 # such that it claims to exist but you get a compiler error if you try
2450 # to use the options returned by --libs. Specifically, Ubuntu for --static
2451 # builds doesn't work:
2452 # https://bugs.launchpad.net/ubuntu/+source/gnutls26/+bug/1478035
2454 # So sanity check the cflags/libs before assuming gnutls can be used.
2455 if ! $pkg_config --exists "gnutls"; then
2456 return 1
2459 write_c_skeleton
2460 compile_prog "$($pkg_config --cflags gnutls)" "$($pkg_config --libs gnutls)"
2463 gnutls_gcrypt=no
2464 gnutls_nettle=no
2465 if test "$gnutls" != "no"; then
2466 if gnutls_works; then
2467 gnutls_cflags=$($pkg_config --cflags gnutls)
2468 gnutls_libs=$($pkg_config --libs gnutls)
2469 libs_softmmu="$gnutls_libs $libs_softmmu"
2470 libs_tools="$gnutls_libs $libs_tools"
2471 QEMU_CFLAGS="$QEMU_CFLAGS $gnutls_cflags"
2472 gnutls="yes"
2474 # gnutls_rnd requires >= 2.11.0
2475 if $pkg_config --exists "gnutls >= 2.11.0"; then
2476 gnutls_rnd="yes"
2477 else
2478 gnutls_rnd="no"
2481 if $pkg_config --exists 'gnutls >= 3.0'; then
2482 gnutls_gcrypt=no
2483 gnutls_nettle=yes
2484 elif $pkg_config --exists 'gnutls >= 2.12'; then
2485 case $($pkg_config --libs --static gnutls) in
2486 *gcrypt*)
2487 gnutls_gcrypt=yes
2488 gnutls_nettle=no
2490 *nettle*)
2491 gnutls_gcrypt=no
2492 gnutls_nettle=yes
2495 gnutls_gcrypt=yes
2496 gnutls_nettle=no
2498 esac
2499 else
2500 gnutls_gcrypt=yes
2501 gnutls_nettle=no
2503 elif test "$gnutls" = "yes"; then
2504 feature_not_found "gnutls" "Install gnutls devel"
2505 else
2506 gnutls="no"
2507 gnutls_rnd="no"
2509 else
2510 gnutls_rnd="no"
2514 # If user didn't give a --disable/enable-gcrypt flag,
2515 # then mark as disabled if user requested nettle
2516 # explicitly, or if gnutls links to nettle
2517 if test -z "$gcrypt"
2518 then
2519 if test "$nettle" = "yes" || test "$gnutls_nettle" = "yes"
2520 then
2521 gcrypt="no"
2525 # If user didn't give a --disable/enable-nettle flag,
2526 # then mark as disabled if user requested gcrypt
2527 # explicitly, or if gnutls links to gcrypt
2528 if test -z "$nettle"
2529 then
2530 if test "$gcrypt" = "yes" || test "$gnutls_gcrypt" = "yes"
2531 then
2532 nettle="no"
2536 has_libgcrypt_config() {
2537 if ! has "libgcrypt-config"
2538 then
2539 return 1
2542 if test -n "$cross_prefix"
2543 then
2544 host=$(libgcrypt-config --host)
2545 if test "$host-" != $cross_prefix
2546 then
2547 return 1
2551 return 0
2554 if test "$gcrypt" != "no"; then
2555 if has_libgcrypt_config; then
2556 gcrypt_cflags=$(libgcrypt-config --cflags)
2557 gcrypt_libs=$(libgcrypt-config --libs)
2558 # Debian has remove -lgpg-error from libgcrypt-config
2559 # as it "spreads unnecessary dependencies" which in
2560 # turn breaks static builds...
2561 if test "$static" = "yes"
2562 then
2563 gcrypt_libs="$gcrypt_libs -lgpg-error"
2565 libs_softmmu="$gcrypt_libs $libs_softmmu"
2566 libs_tools="$gcrypt_libs $libs_tools"
2567 QEMU_CFLAGS="$QEMU_CFLAGS $gcrypt_cflags"
2568 gcrypt="yes"
2569 if test -z "$nettle"; then
2570 nettle="no"
2573 cat > $TMPC << EOF
2574 #include <gcrypt.h>
2575 int main(void) {
2576 gcry_kdf_derive(NULL, 0, GCRY_KDF_PBKDF2,
2577 GCRY_MD_SHA256,
2578 NULL, 0, 0, 0, NULL);
2579 return 0;
2582 if compile_prog "$gcrypt_cflags" "$gcrypt_libs" ; then
2583 gcrypt_kdf=yes
2586 cat > $TMPC << EOF
2587 #include <gcrypt.h>
2588 int main(void) {
2589 gcry_mac_hd_t handle;
2590 gcry_mac_open(&handle, GCRY_MAC_HMAC_MD5,
2591 GCRY_MAC_FLAG_SECURE, NULL);
2592 return 0;
2595 if compile_prog "$gcrypt_cflags" "$gcrypt_libs" ; then
2596 gcrypt_hmac=yes
2598 else
2599 if test "$gcrypt" = "yes"; then
2600 feature_not_found "gcrypt" "Install gcrypt devel"
2601 else
2602 gcrypt="no"
2608 if test "$nettle" != "no"; then
2609 if $pkg_config --exists "nettle"; then
2610 nettle_cflags=$($pkg_config --cflags nettle)
2611 nettle_libs=$($pkg_config --libs nettle)
2612 nettle_version=$($pkg_config --modversion nettle)
2613 libs_softmmu="$nettle_libs $libs_softmmu"
2614 libs_tools="$nettle_libs $libs_tools"
2615 QEMU_CFLAGS="$QEMU_CFLAGS $nettle_cflags"
2616 nettle="yes"
2618 cat > $TMPC << EOF
2619 #include <stddef.h>
2620 #include <nettle/pbkdf2.h>
2621 int main(void) {
2622 pbkdf2_hmac_sha256(8, NULL, 1000, 8, NULL, 8, NULL);
2623 return 0;
2626 if compile_prog "$nettle_cflags" "$nettle_libs" ; then
2627 nettle_kdf=yes
2629 else
2630 if test "$nettle" = "yes"; then
2631 feature_not_found "nettle" "Install nettle devel"
2632 else
2633 nettle="no"
2638 if test "$gcrypt" = "yes" && test "$nettle" = "yes"
2639 then
2640 error_exit "Only one of gcrypt & nettle can be enabled"
2643 ##########################################
2644 # libtasn1 - only for the TLS creds/session test suite
2646 tasn1=yes
2647 tasn1_cflags=""
2648 tasn1_libs=""
2649 if $pkg_config --exists "libtasn1"; then
2650 tasn1_cflags=$($pkg_config --cflags libtasn1)
2651 tasn1_libs=$($pkg_config --libs libtasn1)
2652 else
2653 tasn1=no
2657 ##########################################
2658 # getifaddrs (for tests/test-io-channel-socket )
2660 have_ifaddrs_h=yes
2661 if ! check_include "ifaddrs.h" ; then
2662 have_ifaddrs_h=no
2665 ##########################################
2666 # VTE probe
2668 if test "$vte" != "no"; then
2669 if test "$gtkabi" = "3.0"; then
2670 vteminversion="0.32.0"
2671 if $pkg_config --exists "vte-2.91"; then
2672 vtepackage="vte-2.91"
2673 else
2674 vtepackage="vte-2.90"
2676 else
2677 vtepackage="vte"
2678 vteminversion="0.24.0"
2680 if $pkg_config --exists "$vtepackage >= $vteminversion"; then
2681 vte_cflags=$($pkg_config --cflags $vtepackage)
2682 vte_libs=$($pkg_config --libs $vtepackage)
2683 vteversion=$($pkg_config --modversion $vtepackage)
2684 libs_softmmu="$vte_libs $libs_softmmu"
2685 vte="yes"
2686 elif test "$vte" = "yes"; then
2687 if test "$gtkabi" = "3.0"; then
2688 feature_not_found "vte" "Install libvte-2.90/2.91 devel"
2689 else
2690 feature_not_found "vte" "Install libvte devel"
2692 else
2693 vte="no"
2697 ##########################################
2698 # SDL probe
2700 # Look for sdl configuration program (pkg-config or sdl-config). Try
2701 # sdl-config even without cross prefix, and favour pkg-config over sdl-config.
2703 if test "$sdlabi" = ""; then
2704 if $pkg_config --exists "sdl2"; then
2705 sdlabi=2.0
2706 elif $pkg_config --exists "sdl"; then
2707 sdlabi=1.2
2708 else
2709 sdlabi=2.0
2713 if test $sdlabi = "2.0"; then
2714 sdl_config=$sdl2_config
2715 sdlname=sdl2
2716 sdlconfigname=sdl2_config
2717 elif test $sdlabi = "1.2"; then
2718 sdlname=sdl
2719 sdlconfigname=sdl_config
2720 else
2721 error_exit "Unknown sdlabi $sdlabi, must be 1.2 or 2.0"
2724 if test "$(basename $sdl_config)" != $sdlconfigname && ! has ${sdl_config}; then
2725 sdl_config=$sdlconfigname
2728 if $pkg_config $sdlname --exists; then
2729 sdlconfig="$pkg_config $sdlname"
2730 sdlversion=$($sdlconfig --modversion 2>/dev/null)
2731 elif has ${sdl_config}; then
2732 sdlconfig="$sdl_config"
2733 sdlversion=$($sdlconfig --version)
2734 else
2735 if test "$sdl" = "yes" ; then
2736 feature_not_found "sdl" "Install SDL2-devel"
2738 sdl=no
2740 if test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then
2741 echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
2744 sdl_too_old=no
2745 if test "$sdl" != "no" ; then
2746 cat > $TMPC << EOF
2747 #include <SDL.h>
2748 #undef main /* We don't want SDL to override our main() */
2749 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
2751 sdl_cflags=$($sdlconfig --cflags 2>/dev/null)
2752 if test "$static" = "yes" ; then
2753 if $pkg_config $sdlname --exists; then
2754 sdl_libs=$($pkg_config $sdlname --static --libs 2>/dev/null)
2755 else
2756 sdl_libs=$($sdlconfig --static-libs 2>/dev/null)
2758 else
2759 sdl_libs=$($sdlconfig --libs 2>/dev/null)
2761 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
2762 if test $(echo $sdlversion | sed 's/[^0-9]//g') -lt 121 ; then
2763 sdl_too_old=yes
2764 else
2765 sdl=yes
2768 # static link with sdl ? (note: sdl.pc's --static --libs is broken)
2769 if test "$sdl" = "yes" -a "$static" = "yes" ; then
2770 if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
2771 sdl_libs="$sdl_libs $(aalib-config --static-libs 2>/dev/null)"
2772 sdl_cflags="$sdl_cflags $(aalib-config --cflags 2>/dev/null)"
2774 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
2776 else
2777 sdl=no
2779 fi # static link
2780 else # sdl not found
2781 if test "$sdl" = "yes" ; then
2782 feature_not_found "sdl" "Install SDL devel"
2784 sdl=no
2785 fi # sdl compile test
2788 if test "$sdl" = "yes" ; then
2789 cat > $TMPC <<EOF
2790 #include <SDL.h>
2791 #if defined(SDL_VIDEO_DRIVER_X11)
2792 #include <X11/XKBlib.h>
2793 #else
2794 #error No x11 support
2795 #endif
2796 int main(void) { return 0; }
2798 if compile_prog "$sdl_cflags $x11_cflags" "$sdl_libs $x11_libs" ; then
2799 sdl_cflags="$sdl_cflags $x11_cflags"
2800 sdl_libs="$sdl_libs $x11_libs"
2802 libs_softmmu="$sdl_libs $libs_softmmu"
2805 ##########################################
2806 # RDMA needs OpenFabrics libraries
2807 if test "$rdma" != "no" ; then
2808 cat > $TMPC <<EOF
2809 #include <rdma/rdma_cma.h>
2810 int main(void) { return 0; }
2812 rdma_libs="-lrdmacm -libverbs"
2813 if compile_prog "" "$rdma_libs" ; then
2814 rdma="yes"
2815 libs_softmmu="$libs_softmmu $rdma_libs"
2816 else
2817 if test "$rdma" = "yes" ; then
2818 error_exit \
2819 " OpenFabrics librdmacm/libibverbs not present." \
2820 " Your options:" \
2821 " (1) Fast: Install infiniband packages from your distro." \
2822 " (2) Cleanest: Install libraries from www.openfabrics.org" \
2823 " (3) Also: Install softiwarp if you don't have RDMA hardware"
2825 rdma="no"
2830 ##########################################
2831 # VNC SASL detection
2832 if test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then
2833 cat > $TMPC <<EOF
2834 #include <sasl/sasl.h>
2835 #include <stdio.h>
2836 int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
2838 # Assuming Cyrus-SASL installed in /usr prefix
2839 vnc_sasl_cflags=""
2840 vnc_sasl_libs="-lsasl2"
2841 if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
2842 vnc_sasl=yes
2843 libs_softmmu="$vnc_sasl_libs $libs_softmmu"
2844 QEMU_CFLAGS="$QEMU_CFLAGS $vnc_sasl_cflags"
2845 else
2846 if test "$vnc_sasl" = "yes" ; then
2847 feature_not_found "vnc-sasl" "Install Cyrus SASL devel"
2849 vnc_sasl=no
2853 ##########################################
2854 # VNC JPEG detection
2855 if test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then
2856 cat > $TMPC <<EOF
2857 #include <stdio.h>
2858 #include <jpeglib.h>
2859 int main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
2861 vnc_jpeg_cflags=""
2862 vnc_jpeg_libs="-ljpeg"
2863 if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
2864 vnc_jpeg=yes
2865 libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
2866 QEMU_CFLAGS="$QEMU_CFLAGS $vnc_jpeg_cflags"
2867 else
2868 if test "$vnc_jpeg" = "yes" ; then
2869 feature_not_found "vnc-jpeg" "Install libjpeg-turbo devel"
2871 vnc_jpeg=no
2875 ##########################################
2876 # VNC PNG detection
2877 if test "$vnc" = "yes" -a "$vnc_png" != "no" ; then
2878 cat > $TMPC <<EOF
2879 //#include <stdio.h>
2880 #include <png.h>
2881 #include <stddef.h>
2882 int main(void) {
2883 png_structp png_ptr;
2884 png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
2885 return png_ptr != 0;
2888 if $pkg_config libpng --exists; then
2889 vnc_png_cflags=$($pkg_config libpng --cflags)
2890 vnc_png_libs=$($pkg_config libpng --libs)
2891 else
2892 vnc_png_cflags=""
2893 vnc_png_libs="-lpng"
2895 if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
2896 vnc_png=yes
2897 libs_softmmu="$vnc_png_libs $libs_softmmu"
2898 QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags"
2899 else
2900 if test "$vnc_png" = "yes" ; then
2901 feature_not_found "vnc-png" "Install libpng devel"
2903 vnc_png=no
2907 ##########################################
2908 # fnmatch() probe, used for ACL routines
2909 fnmatch="no"
2910 cat > $TMPC << EOF
2911 #include <fnmatch.h>
2912 int main(void)
2914 fnmatch("foo", "foo", 0);
2915 return 0;
2918 if compile_prog "" "" ; then
2919 fnmatch="yes"
2922 ##########################################
2923 # xfsctl() probe, used for file-posix.c
2924 if test "$xfs" != "no" ; then
2925 cat > $TMPC << EOF
2926 #include <stddef.h> /* NULL */
2927 #include <xfs/xfs.h>
2928 int main(void)
2930 xfsctl(NULL, 0, 0, NULL);
2931 return 0;
2934 if compile_prog "" "" ; then
2935 xfs="yes"
2936 else
2937 if test "$xfs" = "yes" ; then
2938 feature_not_found "xfs" "Instal xfsprogs/xfslibs devel"
2940 xfs=no
2944 ##########################################
2945 # vde libraries probe
2946 if test "$vde" != "no" ; then
2947 vde_libs="-lvdeplug"
2948 cat > $TMPC << EOF
2949 #include <libvdeplug.h>
2950 int main(void)
2952 struct vde_open_args a = {0, 0, 0};
2953 char s[] = "";
2954 vde_open(s, s, &a);
2955 return 0;
2958 if compile_prog "" "$vde_libs" ; then
2959 vde=yes
2960 libs_softmmu="$vde_libs $libs_softmmu"
2961 libs_tools="$vde_libs $libs_tools"
2962 else
2963 if test "$vde" = "yes" ; then
2964 feature_not_found "vde" "Install vde (Virtual Distributed Ethernet) devel"
2966 vde=no
2970 ##########################################
2971 # netmap support probe
2972 # Apart from looking for netmap headers, we make sure that the host API version
2973 # supports the netmap backend (>=11). The upper bound (15) is meant to simulate
2974 # a minor/major version number. Minor new features will be marked with values up
2975 # to 15, and if something happens that requires a change to the backend we will
2976 # move above 15, submit the backend fixes and modify this two bounds.
2977 if test "$netmap" != "no" ; then
2978 cat > $TMPC << EOF
2979 #include <inttypes.h>
2980 #include <net/if.h>
2981 #include <net/netmap.h>
2982 #include <net/netmap_user.h>
2983 #if (NETMAP_API < 11) || (NETMAP_API > 15)
2984 #error
2985 #endif
2986 int main(void) { return 0; }
2988 if compile_prog "" "" ; then
2989 netmap=yes
2990 else
2991 if test "$netmap" = "yes" ; then
2992 feature_not_found "netmap"
2994 netmap=no
2998 ##########################################
2999 # libcap-ng library probe
3000 if test "$cap_ng" != "no" ; then
3001 cap_libs="-lcap-ng"
3002 cat > $TMPC << EOF
3003 #include <cap-ng.h>
3004 int main(void)
3006 capng_capability_to_name(CAPNG_EFFECTIVE);
3007 return 0;
3010 if compile_prog "" "$cap_libs" ; then
3011 cap_ng=yes
3012 libs_tools="$cap_libs $libs_tools"
3013 else
3014 if test "$cap_ng" = "yes" ; then
3015 feature_not_found "cap_ng" "Install libcap-ng devel"
3017 cap_ng=no
3021 ##########################################
3022 # Sound support libraries probe
3024 audio_drv_probe()
3026 drv=$1
3027 hdr=$2
3028 lib=$3
3029 exp=$4
3030 cfl=$5
3031 cat > $TMPC << EOF
3032 #include <$hdr>
3033 int main(void) { $exp }
3035 if compile_prog "$cfl" "$lib" ; then
3037 else
3038 error_exit "$drv check failed" \
3039 "Make sure to have the $drv libs and headers installed."
3043 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/,/ /g')
3044 for drv in $audio_drv_list; do
3045 case $drv in
3046 alsa)
3047 audio_drv_probe $drv alsa/asoundlib.h -lasound \
3048 "return snd_pcm_close((snd_pcm_t *)0);"
3049 libs_softmmu="-lasound $libs_softmmu"
3053 audio_drv_probe $drv pulse/pulseaudio.h "-lpulse" \
3054 "pa_context_set_source_output_volume(NULL, 0, NULL, NULL, NULL); return 0;"
3055 libs_softmmu="-lpulse $libs_softmmu"
3056 audio_pt_int="yes"
3059 sdl)
3060 if test "$sdl" = "no"; then
3061 error_exit "sdl not found or disabled, can not use sdl audio driver"
3065 coreaudio)
3066 libs_softmmu="-framework CoreAudio $libs_softmmu"
3069 dsound)
3070 libs_softmmu="-lole32 -ldxguid $libs_softmmu"
3071 audio_win_int="yes"
3074 oss)
3075 libs_softmmu="$oss_lib $libs_softmmu"
3078 wav)
3079 # XXX: Probes for CoreAudio, DirectSound
3083 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
3084 error_exit "Unknown driver '$drv' selected" \
3085 "Possible drivers are: $audio_possible_drivers"
3088 esac
3089 done
3091 ##########################################
3092 # BrlAPI probe
3094 if test "$brlapi" != "no" ; then
3095 brlapi_libs="-lbrlapi"
3096 cat > $TMPC << EOF
3097 #include <brlapi.h>
3098 #include <stddef.h>
3099 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
3101 if compile_prog "" "$brlapi_libs" ; then
3102 brlapi=yes
3103 libs_softmmu="$brlapi_libs $libs_softmmu"
3104 else
3105 if test "$brlapi" = "yes" ; then
3106 feature_not_found "brlapi" "Install brlapi devel"
3108 brlapi=no
3112 ##########################################
3113 # curses probe
3114 if test "$curses" != "no" ; then
3115 if test "$mingw32" = "yes" ; then
3116 curses_inc_list="$($pkg_config --cflags ncurses 2>/dev/null):"
3117 curses_lib_list="$($pkg_config --libs ncurses 2>/dev/null):-lpdcurses"
3118 else
3119 curses_inc_list="$($pkg_config --cflags ncursesw 2>/dev/null):-I/usr/include/ncursesw:"
3120 curses_lib_list="$($pkg_config --libs ncursesw 2>/dev/null):-lncursesw:-lcursesw"
3122 curses_found=no
3123 cat > $TMPC << EOF
3124 #include <locale.h>
3125 #include <curses.h>
3126 #include <wchar.h>
3127 int main(void) {
3128 wchar_t wch = L'w';
3129 setlocale(LC_ALL, "");
3130 resize_term(0, 0);
3131 addwstr(L"wide chars\n");
3132 addnwstr(&wch, 1);
3133 add_wch(WACS_DEGREE);
3134 return 0;
3137 IFS=:
3138 for curses_inc in $curses_inc_list; do
3139 # Make sure we get the wide character prototypes
3140 curses_inc="-DNCURSES_WIDECHAR $curses_inc"
3141 IFS=:
3142 for curses_lib in $curses_lib_list; do
3143 unset IFS
3144 if compile_prog "$curses_inc" "$curses_lib" ; then
3145 curses_found=yes
3146 QEMU_CFLAGS="$curses_inc $QEMU_CFLAGS"
3147 libs_softmmu="$curses_lib $libs_softmmu"
3148 break
3150 done
3151 if test "$curses_found" = yes ; then
3152 break
3154 done
3155 unset IFS
3156 if test "$curses_found" = "yes" ; then
3157 curses=yes
3158 else
3159 if test "$curses" = "yes" ; then
3160 feature_not_found "curses" "Install ncurses devel"
3162 curses=no
3166 ##########################################
3167 # curl probe
3168 if test "$curl" != "no" ; then
3169 if $pkg_config libcurl --exists; then
3170 curlconfig="$pkg_config libcurl"
3171 else
3172 curlconfig=curl-config
3174 cat > $TMPC << EOF
3175 #include <curl/curl.h>
3176 int main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; }
3178 curl_cflags=$($curlconfig --cflags 2>/dev/null)
3179 curl_libs=$($curlconfig --libs 2>/dev/null)
3180 if compile_prog "$curl_cflags" "$curl_libs" ; then
3181 curl=yes
3182 else
3183 if test "$curl" = "yes" ; then
3184 feature_not_found "curl" "Install libcurl devel"
3186 curl=no
3188 fi # test "$curl"
3190 ##########################################
3191 # bluez support probe
3192 if test "$bluez" != "no" ; then
3193 cat > $TMPC << EOF
3194 #include <bluetooth/bluetooth.h>
3195 int main(void) { return bt_error(0); }
3197 bluez_cflags=$($pkg_config --cflags bluez 2>/dev/null)
3198 bluez_libs=$($pkg_config --libs bluez 2>/dev/null)
3199 if compile_prog "$bluez_cflags" "$bluez_libs" ; then
3200 bluez=yes
3201 libs_softmmu="$bluez_libs $libs_softmmu"
3202 else
3203 if test "$bluez" = "yes" ; then
3204 feature_not_found "bluez" "Install bluez-libs/libbluetooth devel"
3206 bluez="no"
3210 ##########################################
3211 # glib support probe
3213 if test "$mingw32" = yes; then
3214 glib_req_ver=2.30
3215 else
3216 glib_req_ver=2.22
3218 glib_modules=gthread-2.0
3219 if test "$modules" = yes; then
3220 glib_modules="$glib_modules gmodule-2.0"
3223 # This workaround is required due to a bug in pkg-config file for glib as it
3224 # doesn't define GLIB_STATIC_COMPILATION for pkg-config --static
3226 if test "$static" = yes -a "$mingw32" = yes; then
3227 QEMU_CFLAGS="-DGLIB_STATIC_COMPILATION $QEMU_CFLAGS"
3230 for i in $glib_modules; do
3231 if $pkg_config --atleast-version=$glib_req_ver $i; then
3232 glib_cflags=$($pkg_config --cflags $i)
3233 glib_libs=$($pkg_config --libs $i)
3234 QEMU_CFLAGS="$glib_cflags $QEMU_CFLAGS"
3235 LIBS="$glib_libs $LIBS"
3236 libs_qga="$glib_libs $libs_qga"
3237 else
3238 error_exit "glib-$glib_req_ver $i is required to compile QEMU"
3240 done
3242 # Sanity check that the current size_t matches the
3243 # size that glib thinks it should be. This catches
3244 # problems on multi-arch where people try to build
3245 # 32-bit QEMU while pointing at 64-bit glib headers
3246 cat > $TMPC <<EOF
3247 #include <glib.h>
3248 #include <unistd.h>
3250 #define QEMU_BUILD_BUG_ON(x) \
3251 typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused));
3253 int main(void) {
3254 QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T);
3255 return 0;
3259 if ! compile_prog "$CFLAGS" "$LIBS" ; then
3260 error_exit "sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T."\
3261 "You probably need to set PKG_CONFIG_LIBDIR"\
3262 "to point to the right pkg-config files for your"\
3263 "build target"
3266 # g_test_trap_subprocess added in 2.38. Used by some tests.
3267 glib_subprocess=yes
3268 if ! $pkg_config --atleast-version=2.38 glib-2.0; then
3269 glib_subprocess=no
3272 # Silence clang 3.5.0 warnings about glib attribute __alloc_size__ usage
3273 cat > $TMPC << EOF
3274 #include <glib.h>
3275 int main(void) { return 0; }
3277 if ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then
3278 if cc_has_warning_flag "-Wno-unknown-attributes"; then
3279 glib_cflags="-Wno-unknown-attributes $glib_cflags"
3280 CFLAGS="-Wno-unknown-attributes $CFLAGS"
3284 ##########################################
3285 # SHA command probe for modules
3286 if test "$modules" = yes; then
3287 shacmd_probe="sha1sum sha1 shasum"
3288 for c in $shacmd_probe; do
3289 if has $c; then
3290 shacmd="$c"
3291 break
3293 done
3294 if test "$shacmd" = ""; then
3295 error_exit "one of the checksum commands is required to enable modules: $shacmd_probe"
3299 ##########################################
3300 # pixman support probe
3302 if test "$pixman" = ""; then
3303 if test "$want_tools" = "no" -a "$softmmu" = "no"; then
3304 pixman="none"
3305 elif $pkg_config --atleast-version=0.21.8 pixman-1 > /dev/null 2>&1; then
3306 pixman="system"
3307 else
3308 pixman="internal"
3311 if test "$pixman" = "none"; then
3312 if test "$want_tools" != "no" -o "$softmmu" != "no"; then
3313 error_exit "pixman disabled but system emulation or tools build" \
3314 "enabled. You can turn off pixman only if you also" \
3315 "disable all system emulation targets and the tools" \
3316 "build with '--disable-tools --disable-system'."
3318 pixman_cflags=
3319 pixman_libs=
3320 elif test "$pixman" = "system"; then
3321 # pixman version has been checked above
3322 pixman_cflags=$($pkg_config --cflags pixman-1)
3323 pixman_libs=$($pkg_config --libs pixman-1)
3324 else
3325 if test ! -d ${source_path}/pixman/pixman; then
3326 error_exit "pixman >= 0.21.8 not present. Your options:" \
3327 " (1) Preferred: Install the pixman devel package (any recent" \
3328 " distro should have packages as Xorg needs pixman too)." \
3329 " (2) Fetch the pixman submodule, using:" \
3330 " git submodule update --init pixman"
3332 mkdir -p pixman/pixman
3333 pixman_cflags="-I\$(SRC_PATH)/pixman/pixman -I\$(BUILD_DIR)/pixman/pixman"
3334 pixman_libs="-L\$(BUILD_DIR)/pixman/pixman/.libs -lpixman-1"
3337 ##########################################
3338 # libcap probe
3340 if test "$cap" != "no" ; then
3341 cat > $TMPC <<EOF
3342 #include <stdio.h>
3343 #include <sys/capability.h>
3344 int main(void) { cap_t caps; caps = cap_init(); return caps != NULL; }
3346 if compile_prog "" "-lcap" ; then
3347 cap=yes
3348 else
3349 cap=no
3353 ##########################################
3354 # pthread probe
3355 PTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2"
3357 pthread=no
3358 cat > $TMPC << EOF
3359 #include <pthread.h>
3360 static void *f(void *p) { return NULL; }
3361 int main(void) {
3362 pthread_t thread;
3363 pthread_create(&thread, 0, f, 0);
3364 return 0;
3367 if compile_prog "" "" ; then
3368 pthread=yes
3369 else
3370 for pthread_lib in $PTHREADLIBS_LIST; do
3371 if compile_prog "" "$pthread_lib" ; then
3372 pthread=yes
3373 found=no
3374 for lib_entry in $LIBS; do
3375 if test "$lib_entry" = "$pthread_lib"; then
3376 found=yes
3377 break
3379 done
3380 if test "$found" = "no"; then
3381 LIBS="$pthread_lib $LIBS"
3383 PTHREAD_LIB="$pthread_lib"
3384 break
3386 done
3389 if test "$mingw32" != yes -a "$pthread" = no; then
3390 error_exit "pthread check failed" \
3391 "Make sure to have the pthread libs and headers installed."
3394 # check for pthread_setname_np
3395 pthread_setname_np=no
3396 cat > $TMPC << EOF
3397 #include <pthread.h>
3399 static void *f(void *p) { return NULL; }
3400 int main(void)
3402 pthread_t thread;
3403 pthread_create(&thread, 0, f, 0);
3404 pthread_setname_np(thread, "QEMU");
3405 return 0;
3408 if compile_prog "" "$pthread_lib" ; then
3409 pthread_setname_np=yes
3412 ##########################################
3413 # rbd probe
3414 if test "$rbd" != "no" ; then
3415 cat > $TMPC <<EOF
3416 #include <stdio.h>
3417 #include <rbd/librbd.h>
3418 int main(void) {
3419 rados_t cluster;
3420 rados_create(&cluster, NULL);
3421 return 0;
3424 rbd_libs="-lrbd -lrados"
3425 if compile_prog "" "$rbd_libs" ; then
3426 rbd=yes
3427 else
3428 if test "$rbd" = "yes" ; then
3429 feature_not_found "rados block device" "Install librbd/ceph devel"
3431 rbd=no
3435 ##########################################
3436 # libssh2 probe
3437 min_libssh2_version=1.2.8
3438 if test "$libssh2" != "no" ; then
3439 if $pkg_config --atleast-version=$min_libssh2_version libssh2; then
3440 libssh2_cflags=$($pkg_config libssh2 --cflags)
3441 libssh2_libs=$($pkg_config libssh2 --libs)
3442 libssh2=yes
3443 else
3444 if test "$libssh2" = "yes" ; then
3445 error_exit "libssh2 >= $min_libssh2_version required for --enable-libssh2"
3447 libssh2=no
3451 ##########################################
3452 # libssh2_sftp_fsync probe
3454 if test "$libssh2" = "yes"; then
3455 cat > $TMPC <<EOF
3456 #include <stdio.h>
3457 #include <libssh2.h>
3458 #include <libssh2_sftp.h>
3459 int main(void) {
3460 LIBSSH2_SESSION *session;
3461 LIBSSH2_SFTP *sftp;
3462 LIBSSH2_SFTP_HANDLE *sftp_handle;
3463 session = libssh2_session_init ();
3464 sftp = libssh2_sftp_init (session);
3465 sftp_handle = libssh2_sftp_open (sftp, "/", 0, 0);
3466 libssh2_sftp_fsync (sftp_handle);
3467 return 0;
3470 # libssh2_cflags/libssh2_libs defined in previous test.
3471 if compile_prog "$libssh2_cflags" "$libssh2_libs" ; then
3472 QEMU_CFLAGS="-DHAS_LIBSSH2_SFTP_FSYNC $QEMU_CFLAGS"
3476 ##########################################
3477 # linux-aio probe
3479 if test "$linux_aio" != "no" ; then
3480 cat > $TMPC <<EOF
3481 #include <libaio.h>
3482 #include <sys/eventfd.h>
3483 #include <stddef.h>
3484 int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
3486 if compile_prog "" "-laio" ; then
3487 linux_aio=yes
3488 else
3489 if test "$linux_aio" = "yes" ; then
3490 feature_not_found "linux AIO" "Install libaio devel"
3492 linux_aio=no
3496 ##########################################
3497 # TPM passthrough is only on x86 Linux
3499 if test "$targetos" = Linux && test "$cpu" = i386 -o "$cpu" = x86_64; then
3500 tpm_passthrough=$tpm
3501 else
3502 tpm_passthrough=no
3505 ##########################################
3506 # attr probe
3508 if test "$attr" != "no" ; then
3509 cat > $TMPC <<EOF
3510 #include <stdio.h>
3511 #include <sys/types.h>
3512 #ifdef CONFIG_LIBATTR
3513 #include <attr/xattr.h>
3514 #else
3515 #include <sys/xattr.h>
3516 #endif
3517 int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
3519 if compile_prog "" "" ; then
3520 attr=yes
3521 # Older distros have <attr/xattr.h>, and need -lattr:
3522 elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then
3523 attr=yes
3524 LIBS="-lattr $LIBS"
3525 libattr=yes
3526 else
3527 if test "$attr" = "yes" ; then
3528 feature_not_found "ATTR" "Install libc6 or libattr devel"
3530 attr=no
3534 ##########################################
3535 # iovec probe
3536 cat > $TMPC <<EOF
3537 #include <sys/types.h>
3538 #include <sys/uio.h>
3539 #include <unistd.h>
3540 int main(void) { return sizeof(struct iovec); }
3542 iovec=no
3543 if compile_prog "" "" ; then
3544 iovec=yes
3547 ##########################################
3548 # preadv probe
3549 cat > $TMPC <<EOF
3550 #include <sys/types.h>
3551 #include <sys/uio.h>
3552 #include <unistd.h>
3553 int main(void) { return preadv(0, 0, 0, 0); }
3555 preadv=no
3556 if compile_prog "" "" ; then
3557 preadv=yes
3560 ##########################################
3561 # fdt probe
3562 # fdt support is mandatory for at least some target architectures,
3563 # so insist on it if we're building those system emulators.
3564 fdt_required=no
3565 for target in $target_list; do
3566 case $target in
3567 aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu|mips64el-softmmu)
3568 fdt_required=yes
3570 esac
3571 done
3573 if test "$fdt_required" = "yes"; then
3574 if test "$fdt" = "no"; then
3575 error_exit "fdt disabled but some requested targets require it." \
3576 "You can turn off fdt only if you also disable all the system emulation" \
3577 "targets which need it (by specifying a cut down --target-list)."
3579 fdt=yes
3582 if test "$fdt" != "no" ; then
3583 fdt_libs="-lfdt"
3584 # explicitly check for libfdt_env.h as it is missing in some stable installs
3585 # and test for required functions to make sure we are on a version >= 1.4.2
3586 cat > $TMPC << EOF
3587 #include <libfdt.h>
3588 #include <libfdt_env.h>
3589 int main(void) { fdt_first_subnode(0, 0); return 0; }
3591 if compile_prog "" "$fdt_libs" ; then
3592 # system DTC is good - use it
3593 fdt=yes
3594 elif test -d ${source_path}/dtc/libfdt ; then
3595 # have submodule DTC - use it
3596 fdt=yes
3597 dtc_internal="yes"
3598 mkdir -p dtc
3599 if [ "$pwd_is_source_path" != "y" ] ; then
3600 symlink "$source_path/dtc/Makefile" "dtc/Makefile"
3601 symlink "$source_path/dtc/scripts" "dtc/scripts"
3603 fdt_cflags="-I\$(SRC_PATH)/dtc/libfdt"
3604 fdt_libs="-L\$(BUILD_DIR)/dtc/libfdt $fdt_libs"
3605 elif test "$fdt" = "yes" ; then
3606 # have neither and want - prompt for system/submodule install
3607 error_exit "DTC (libfdt) version >= 1.4.2 not present. Your options:" \
3608 " (1) Preferred: Install the DTC (libfdt) devel package" \
3609 " (2) Fetch the DTC submodule, using:" \
3610 " git submodule update --init dtc"
3611 else
3612 # don't have and don't want
3613 fdt_libs=
3614 fdt=no
3618 libs_softmmu="$libs_softmmu $fdt_libs"
3620 ##########################################
3621 # opengl probe (for sdl2, gtk, milkymist-tmu2)
3623 if test "$opengl" != "no" ; then
3624 opengl_pkgs="epoxy libdrm gbm"
3625 if $pkg_config $opengl_pkgs x11; then
3626 opengl_cflags="$($pkg_config --cflags $opengl_pkgs) $x11_cflags"
3627 opengl_libs="$($pkg_config --libs $opengl_pkgs) $x11_libs"
3628 opengl=yes
3629 if test "$gtk" = "yes" && $pkg_config --exists "$gtkpackage >= 3.16"; then
3630 gtk_gl="yes"
3632 QEMU_CFLAGS="$QEMU_CFLAGS $opengl_cflags"
3633 else
3634 if test "$opengl" = "yes" ; then
3635 feature_not_found "opengl" "Please install opengl (mesa) devel pkgs: $opengl_pkgs"
3637 opengl_cflags=""
3638 opengl_libs=""
3639 opengl=no
3643 if test "$opengl" = "yes"; then
3644 cat > $TMPC << EOF
3645 #include <epoxy/egl.h>
3646 #ifndef EGL_MESA_image_dma_buf_export
3647 # error mesa/epoxy lacks support for dmabufs (mesa 10.6+)
3648 #endif
3649 int main(void) { return 0; }
3651 if compile_prog "" "" ; then
3652 opengl_dmabuf=yes
3657 ##########################################
3658 # glusterfs probe
3659 if test "$glusterfs" != "no" ; then
3660 if $pkg_config --atleast-version=3 glusterfs-api; then
3661 glusterfs="yes"
3662 glusterfs_cflags=$($pkg_config --cflags glusterfs-api)
3663 glusterfs_libs=$($pkg_config --libs glusterfs-api)
3664 if $pkg_config --atleast-version=4 glusterfs-api; then
3665 glusterfs_xlator_opt="yes"
3667 if $pkg_config --atleast-version=5 glusterfs-api; then
3668 glusterfs_discard="yes"
3670 if $pkg_config --atleast-version=6 glusterfs-api; then
3671 glusterfs_fallocate="yes"
3672 glusterfs_zerofill="yes"
3674 else
3675 if test "$glusterfs" = "yes" ; then
3676 feature_not_found "GlusterFS backend support" \
3677 "Install glusterfs-api devel >= 3"
3679 glusterfs="no"
3683 # Check for inotify functions when we are building linux-user
3684 # emulator. This is done because older glibc versions don't
3685 # have syscall stubs for these implemented. In that case we
3686 # don't provide them even if kernel supports them.
3688 inotify=no
3689 cat > $TMPC << EOF
3690 #include <sys/inotify.h>
3693 main(void)
3695 /* try to start inotify */
3696 return inotify_init();
3699 if compile_prog "" "" ; then
3700 inotify=yes
3703 inotify1=no
3704 cat > $TMPC << EOF
3705 #include <sys/inotify.h>
3708 main(void)
3710 /* try to start inotify */
3711 return inotify_init1(0);
3714 if compile_prog "" "" ; then
3715 inotify1=yes
3718 # check if pipe2 is there
3719 pipe2=no
3720 cat > $TMPC << EOF
3721 #include <unistd.h>
3722 #include <fcntl.h>
3724 int main(void)
3726 int pipefd[2];
3727 return pipe2(pipefd, O_CLOEXEC);
3730 if compile_prog "" "" ; then
3731 pipe2=yes
3734 # check if accept4 is there
3735 accept4=no
3736 cat > $TMPC << EOF
3737 #include <sys/socket.h>
3738 #include <stddef.h>
3740 int main(void)
3742 accept4(0, NULL, NULL, SOCK_CLOEXEC);
3743 return 0;
3746 if compile_prog "" "" ; then
3747 accept4=yes
3750 # check if tee/splice is there. vmsplice was added same time.
3751 splice=no
3752 cat > $TMPC << EOF
3753 #include <unistd.h>
3754 #include <fcntl.h>
3755 #include <limits.h>
3757 int main(void)
3759 int len, fd = 0;
3760 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
3761 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
3762 return 0;
3765 if compile_prog "" "" ; then
3766 splice=yes
3769 ##########################################
3770 # libnuma probe
3772 if test "$numa" != "no" ; then
3773 cat > $TMPC << EOF
3774 #include <numa.h>
3775 int main(void) { return numa_available(); }
3778 if compile_prog "" "-lnuma" ; then
3779 numa=yes
3780 libs_softmmu="-lnuma $libs_softmmu"
3781 else
3782 if test "$numa" = "yes" ; then
3783 feature_not_found "numa" "install numactl devel"
3785 numa=no
3789 if test "$tcmalloc" = "yes" && test "$jemalloc" = "yes" ; then
3790 echo "ERROR: tcmalloc && jemalloc can't be used at the same time"
3791 exit 1
3794 ##########################################
3795 # tcmalloc probe
3797 if test "$tcmalloc" = "yes" ; then
3798 cat > $TMPC << EOF
3799 #include <stdlib.h>
3800 int main(void) { malloc(1); return 0; }
3803 if compile_prog "" "-ltcmalloc" ; then
3804 LIBS="-ltcmalloc $LIBS"
3805 else
3806 feature_not_found "tcmalloc" "install gperftools devel"
3810 ##########################################
3811 # jemalloc probe
3813 if test "$jemalloc" = "yes" ; then
3814 cat > $TMPC << EOF
3815 #include <stdlib.h>
3816 int main(void) { malloc(1); return 0; }
3819 if compile_prog "" "-ljemalloc" ; then
3820 LIBS="-ljemalloc $LIBS"
3821 else
3822 feature_not_found "jemalloc" "install jemalloc devel"
3826 ##########################################
3827 # signalfd probe
3828 signalfd="no"
3829 cat > $TMPC << EOF
3830 #include <unistd.h>
3831 #include <sys/syscall.h>
3832 #include <signal.h>
3833 int main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
3836 if compile_prog "" "" ; then
3837 signalfd=yes
3840 # check if eventfd is supported
3841 eventfd=no
3842 cat > $TMPC << EOF
3843 #include <sys/eventfd.h>
3845 int main(void)
3847 return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
3850 if compile_prog "" "" ; then
3851 eventfd=yes
3854 # check if memfd is supported
3855 memfd=no
3856 cat > $TMPC << EOF
3857 #include <sys/memfd.h>
3859 int main(void)
3861 return memfd_create("foo", MFD_ALLOW_SEALING);
3864 if compile_prog "" "" ; then
3865 memfd=yes
3870 # check for fallocate
3871 fallocate=no
3872 cat > $TMPC << EOF
3873 #include <fcntl.h>
3875 int main(void)
3877 fallocate(0, 0, 0, 0);
3878 return 0;
3881 if compile_prog "" "" ; then
3882 fallocate=yes
3885 # check for fallocate hole punching
3886 fallocate_punch_hole=no
3887 cat > $TMPC << EOF
3888 #include <fcntl.h>
3889 #include <linux/falloc.h>
3891 int main(void)
3893 fallocate(0, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, 0, 0);
3894 return 0;
3897 if compile_prog "" "" ; then
3898 fallocate_punch_hole=yes
3901 # check that fallocate supports range zeroing inside the file
3902 fallocate_zero_range=no
3903 cat > $TMPC << EOF
3904 #include <fcntl.h>
3905 #include <linux/falloc.h>
3907 int main(void)
3909 fallocate(0, FALLOC_FL_ZERO_RANGE, 0, 0);
3910 return 0;
3913 if compile_prog "" "" ; then
3914 fallocate_zero_range=yes
3917 # check for posix_fallocate
3918 posix_fallocate=no
3919 cat > $TMPC << EOF
3920 #include <fcntl.h>
3922 int main(void)
3924 posix_fallocate(0, 0, 0);
3925 return 0;
3928 if compile_prog "" "" ; then
3929 posix_fallocate=yes
3932 # check for sync_file_range
3933 sync_file_range=no
3934 cat > $TMPC << EOF
3935 #include <fcntl.h>
3937 int main(void)
3939 sync_file_range(0, 0, 0, 0);
3940 return 0;
3943 if compile_prog "" "" ; then
3944 sync_file_range=yes
3947 # check for linux/fiemap.h and FS_IOC_FIEMAP
3948 fiemap=no
3949 cat > $TMPC << EOF
3950 #include <sys/ioctl.h>
3951 #include <linux/fs.h>
3952 #include <linux/fiemap.h>
3954 int main(void)
3956 ioctl(0, FS_IOC_FIEMAP, 0);
3957 return 0;
3960 if compile_prog "" "" ; then
3961 fiemap=yes
3964 # check for dup3
3965 dup3=no
3966 cat > $TMPC << EOF
3967 #include <unistd.h>
3969 int main(void)
3971 dup3(0, 0, 0);
3972 return 0;
3975 if compile_prog "" "" ; then
3976 dup3=yes
3979 # check for ppoll support
3980 ppoll=no
3981 cat > $TMPC << EOF
3982 #include <poll.h>
3984 int main(void)
3986 struct pollfd pfd = { .fd = 0, .events = 0, .revents = 0 };
3987 ppoll(&pfd, 1, 0, 0);
3988 return 0;
3991 if compile_prog "" "" ; then
3992 ppoll=yes
3995 # check for prctl(PR_SET_TIMERSLACK , ... ) support
3996 prctl_pr_set_timerslack=no
3997 cat > $TMPC << EOF
3998 #include <sys/prctl.h>
4000 int main(void)
4002 prctl(PR_SET_TIMERSLACK, 1, 0, 0, 0);
4003 return 0;
4006 if compile_prog "" "" ; then
4007 prctl_pr_set_timerslack=yes
4010 # check for epoll support
4011 epoll=no
4012 cat > $TMPC << EOF
4013 #include <sys/epoll.h>
4015 int main(void)
4017 epoll_create(0);
4018 return 0;
4021 if compile_prog "" "" ; then
4022 epoll=yes
4025 # epoll_create1 is a later addition
4026 # so we must check separately for its presence
4027 epoll_create1=no
4028 cat > $TMPC << EOF
4029 #include <sys/epoll.h>
4031 int main(void)
4033 /* Note that we use epoll_create1 as a value, not as
4034 * a function being called. This is necessary so that on
4035 * old SPARC glibc versions where the function was present in
4036 * the library but not declared in the header file we will
4037 * fail the configure check. (Otherwise we will get a compiler
4038 * warning but not an error, and will proceed to fail the
4039 * qemu compile where we compile with -Werror.)
4041 return (int)(uintptr_t)&epoll_create1;
4044 if compile_prog "" "" ; then
4045 epoll_create1=yes
4048 # check for sendfile support
4049 sendfile=no
4050 cat > $TMPC << EOF
4051 #include <sys/sendfile.h>
4053 int main(void)
4055 return sendfile(0, 0, 0, 0);
4058 if compile_prog "" "" ; then
4059 sendfile=yes
4062 # check for timerfd support (glibc 2.8 and newer)
4063 timerfd=no
4064 cat > $TMPC << EOF
4065 #include <sys/timerfd.h>
4067 int main(void)
4069 return(timerfd_create(CLOCK_REALTIME, 0));
4072 if compile_prog "" "" ; then
4073 timerfd=yes
4076 # check for setns and unshare support
4077 setns=no
4078 cat > $TMPC << EOF
4079 #include <sched.h>
4081 int main(void)
4083 int ret;
4084 ret = setns(0, 0);
4085 ret = unshare(0);
4086 return ret;
4089 if compile_prog "" "" ; then
4090 setns=yes
4093 # clock_adjtime probe
4094 clock_adjtime=no
4095 cat > $TMPC <<EOF
4096 #include <time.h>
4098 int main(void)
4100 return clock_adjtime(0, 0);
4103 clock_adjtime=no
4104 if compile_prog "" "" ; then
4105 clock_adjtime=yes
4108 # syncfs probe
4109 syncfs=no
4110 cat > $TMPC <<EOF
4111 #include <unistd.h>
4113 int main(void)
4115 return syncfs(0);
4118 syncfs=no
4119 if compile_prog "" "" ; then
4120 syncfs=yes
4123 # Check if tools are available to build documentation.
4124 if test "$docs" != "no" ; then
4125 if has makeinfo && has pod2man; then
4126 docs=yes
4127 else
4128 if test "$docs" = "yes" ; then
4129 feature_not_found "docs" "Install texinfo and Perl/perl-podlators"
4131 docs=no
4135 # Search for bswap_32 function
4136 byteswap_h=no
4137 cat > $TMPC << EOF
4138 #include <byteswap.h>
4139 int main(void) { return bswap_32(0); }
4141 if compile_prog "" "" ; then
4142 byteswap_h=yes
4145 # Search for bswap32 function
4146 bswap_h=no
4147 cat > $TMPC << EOF
4148 #include <sys/endian.h>
4149 #include <sys/types.h>
4150 #include <machine/bswap.h>
4151 int main(void) { return bswap32(0); }
4153 if compile_prog "" "" ; then
4154 bswap_h=yes
4157 ##########################################
4158 # Do we have libiscsi >= 1.9.0
4159 if test "$libiscsi" != "no" ; then
4160 if $pkg_config --atleast-version=1.9.0 libiscsi; then
4161 libiscsi="yes"
4162 libiscsi_cflags=$($pkg_config --cflags libiscsi)
4163 libiscsi_libs=$($pkg_config --libs libiscsi)
4164 else
4165 if test "$libiscsi" = "yes" ; then
4166 feature_not_found "libiscsi" "Install libiscsi >= 1.9.0"
4168 libiscsi="no"
4172 ##########################################
4173 # Do we need libm
4174 cat > $TMPC << EOF
4175 #include <math.h>
4176 int main(int argc, char **argv) { return isnan(sin((double)argc)); }
4178 if compile_prog "" "" ; then
4180 elif compile_prog "" "-lm" ; then
4181 LIBS="-lm $LIBS"
4182 libs_qga="-lm $libs_qga"
4183 else
4184 error_exit "libm check failed"
4187 ##########################################
4188 # Do we need librt
4189 # uClibc provides 2 versions of clock_gettime(), one with realtime
4190 # support and one without. This means that the clock_gettime() don't
4191 # need -lrt. We still need it for timer_create() so we check for this
4192 # function in addition.
4193 cat > $TMPC <<EOF
4194 #include <signal.h>
4195 #include <time.h>
4196 int main(void) {
4197 timer_create(CLOCK_REALTIME, NULL, NULL);
4198 return clock_gettime(CLOCK_REALTIME, NULL);
4202 if compile_prog "" "" ; then
4204 # we need pthread for static linking. use previous pthread test result
4205 elif compile_prog "" "$pthread_lib -lrt" ; then
4206 LIBS="$LIBS -lrt"
4207 libs_qga="$libs_qga -lrt"
4210 if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
4211 "$aix" != "yes" -a "$haiku" != "yes" ; then
4212 libs_softmmu="-lutil $libs_softmmu"
4215 ##########################################
4216 # spice probe
4217 if test "$spice" != "no" ; then
4218 cat > $TMPC << EOF
4219 #include <spice.h>
4220 int main(void) { spice_server_new(); return 0; }
4222 spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
4223 spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
4224 if $pkg_config --atleast-version=0.12.0 spice-server && \
4225 $pkg_config --atleast-version=0.12.3 spice-protocol && \
4226 compile_prog "$spice_cflags" "$spice_libs" ; then
4227 spice="yes"
4228 libs_softmmu="$libs_softmmu $spice_libs"
4229 QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags"
4230 spice_protocol_version=$($pkg_config --modversion spice-protocol)
4231 spice_server_version=$($pkg_config --modversion spice-server)
4232 else
4233 if test "$spice" = "yes" ; then
4234 feature_not_found "spice" \
4235 "Install spice-server(>=0.12.0) and spice-protocol(>=0.12.3) devel"
4237 spice="no"
4241 # check for smartcard support
4242 smartcard_cflags=""
4243 if test "$smartcard" != "no"; then
4244 if $pkg_config libcacard; then
4245 libcacard_cflags=$($pkg_config --cflags libcacard)
4246 libcacard_libs=$($pkg_config --libs libcacard)
4247 QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags"
4248 libs_softmmu="$libs_softmmu $libcacard_libs"
4249 smartcard="yes"
4250 else
4251 if test "$smartcard" = "yes"; then
4252 feature_not_found "smartcard" "Install libcacard devel"
4254 smartcard="no"
4258 # check for libusb
4259 if test "$libusb" != "no" ; then
4260 if $pkg_config --atleast-version=1.0.13 libusb-1.0; then
4261 libusb="yes"
4262 libusb_cflags=$($pkg_config --cflags libusb-1.0)
4263 libusb_libs=$($pkg_config --libs libusb-1.0)
4264 QEMU_CFLAGS="$QEMU_CFLAGS $libusb_cflags"
4265 libs_softmmu="$libs_softmmu $libusb_libs"
4266 else
4267 if test "$libusb" = "yes"; then
4268 feature_not_found "libusb" "Install libusb devel >= 1.0.13"
4270 libusb="no"
4274 # check for usbredirparser for usb network redirection support
4275 if test "$usb_redir" != "no" ; then
4276 if $pkg_config --atleast-version=0.6 libusbredirparser-0.5; then
4277 usb_redir="yes"
4278 usb_redir_cflags=$($pkg_config --cflags libusbredirparser-0.5)
4279 usb_redir_libs=$($pkg_config --libs libusbredirparser-0.5)
4280 QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags"
4281 libs_softmmu="$libs_softmmu $usb_redir_libs"
4282 else
4283 if test "$usb_redir" = "yes"; then
4284 feature_not_found "usb-redir" "Install usbredir devel"
4286 usb_redir="no"
4290 ##########################################
4291 # check if we have VSS SDK headers for win
4293 if test "$mingw32" = "yes" -a "$guest_agent" != "no" -a "$vss_win32_sdk" != "no" ; then
4294 case "$vss_win32_sdk" in
4295 "") vss_win32_include="-isystem $source_path" ;;
4296 *\ *) # The SDK is installed in "Program Files" by default, but we cannot
4297 # handle path with spaces. So we symlink the headers into ".sdk/vss".
4298 vss_win32_include="-isystem $source_path/.sdk/vss"
4299 symlink "$vss_win32_sdk/inc" "$source_path/.sdk/vss/inc"
4301 *) vss_win32_include="-isystem $vss_win32_sdk"
4302 esac
4303 cat > $TMPC << EOF
4304 #define __MIDL_user_allocate_free_DEFINED__
4305 #include <inc/win2003/vss.h>
4306 int main(void) { return VSS_CTX_BACKUP; }
4308 if compile_prog "$vss_win32_include" "" ; then
4309 guest_agent_with_vss="yes"
4310 QEMU_CFLAGS="$QEMU_CFLAGS $vss_win32_include"
4311 libs_qga="-lole32 -loleaut32 -lshlwapi -lstdc++ -Wl,--enable-stdcall-fixup $libs_qga"
4312 qga_vss_provider="qga/vss-win32/qga-vss.dll qga/vss-win32/qga-vss.tlb"
4313 else
4314 if test "$vss_win32_sdk" != "" ; then
4315 echo "ERROR: Please download and install Microsoft VSS SDK:"
4316 echo "ERROR: http://www.microsoft.com/en-us/download/details.aspx?id=23490"
4317 echo "ERROR: On POSIX-systems, you can extract the SDK headers by:"
4318 echo "ERROR: scripts/extract-vsssdk-headers setup.exe"
4319 echo "ERROR: The headers are extracted in the directory \`inc'."
4320 feature_not_found "VSS support"
4322 guest_agent_with_vss="no"
4326 ##########################################
4327 # lookup Windows platform SDK (if not specified)
4328 # The SDK is needed only to build .tlb (type library) file of guest agent
4329 # VSS provider from the source. It is usually unnecessary because the
4330 # pre-compiled .tlb file is included.
4332 if test "$mingw32" = "yes" -a "$guest_agent" != "no" -a "$guest_agent_with_vss" = "yes" ; then
4333 if test -z "$win_sdk"; then
4334 programfiles="$PROGRAMFILES"
4335 test -n "$PROGRAMW6432" && programfiles="$PROGRAMW6432"
4336 if test -n "$programfiles"; then
4337 win_sdk=$(ls -d "$programfiles/Microsoft SDKs/Windows/v"* | tail -1) 2>/dev/null
4338 else
4339 feature_not_found "Windows SDK"
4341 elif test "$win_sdk" = "no"; then
4342 win_sdk=""
4346 ##########################################
4347 # check if mingw environment provides a recent ntddscsi.h
4348 if test "$mingw32" = "yes" -a "$guest_agent" != "no"; then
4349 cat > $TMPC << EOF
4350 #include <windows.h>
4351 #include <ntddscsi.h>
4352 int main(void) {
4353 #if !defined(IOCTL_SCSI_GET_ADDRESS)
4354 #error Missing required ioctl definitions
4355 #endif
4356 SCSI_ADDRESS addr = { .Lun = 0, .TargetId = 0, .PathId = 0 };
4357 return addr.Lun;
4360 if compile_prog "" "" ; then
4361 guest_agent_ntddscsi=yes
4362 libs_qga="-lsetupapi $libs_qga"
4366 ##########################################
4367 # virgl renderer probe
4369 if test "$virglrenderer" != "no" ; then
4370 cat > $TMPC << EOF
4371 #include <virglrenderer.h>
4372 int main(void) { virgl_renderer_poll(); return 0; }
4374 virgl_cflags=$($pkg_config --cflags virglrenderer 2>/dev/null)
4375 virgl_libs=$($pkg_config --libs virglrenderer 2>/dev/null)
4376 if $pkg_config virglrenderer >/dev/null 2>&1 && \
4377 compile_prog "$virgl_cflags" "$virgl_libs" ; then
4378 virglrenderer="yes"
4379 else
4380 if test "$virglrenderer" = "yes" ; then
4381 feature_not_found "virglrenderer"
4383 virglrenderer="no"
4387 ##########################################
4388 # check if we have fdatasync
4390 fdatasync=no
4391 cat > $TMPC << EOF
4392 #include <unistd.h>
4393 int main(void) {
4394 #if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
4395 return fdatasync(0);
4396 #else
4397 #error Not supported
4398 #endif
4401 if compile_prog "" "" ; then
4402 fdatasync=yes
4405 ##########################################
4406 # check if we have madvise
4408 madvise=no
4409 cat > $TMPC << EOF
4410 #include <sys/types.h>
4411 #include <sys/mman.h>
4412 #include <stddef.h>
4413 int main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
4415 if compile_prog "" "" ; then
4416 madvise=yes
4419 ##########################################
4420 # check if we have posix_madvise
4422 posix_madvise=no
4423 cat > $TMPC << EOF
4424 #include <sys/mman.h>
4425 #include <stddef.h>
4426 int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
4428 if compile_prog "" "" ; then
4429 posix_madvise=yes
4432 ##########################################
4433 # check if we have posix_syslog
4435 posix_syslog=no
4436 cat > $TMPC << EOF
4437 #include <syslog.h>
4438 int main(void) { openlog("qemu", LOG_PID, LOG_DAEMON); syslog(LOG_INFO, "configure"); return 0; }
4440 if compile_prog "" "" ; then
4441 posix_syslog=yes
4444 ##########################################
4445 # check if trace backend exists
4447 $python "$source_path/scripts/tracetool.py" "--backends=$trace_backends" --check-backends > /dev/null 2> /dev/null
4448 if test "$?" -ne 0 ; then
4449 error_exit "invalid trace backends" \
4450 "Please choose supported trace backends."
4453 ##########################################
4454 # For 'ust' backend, test if ust headers are present
4455 if have_backend "ust"; then
4456 cat > $TMPC << EOF
4457 #include <lttng/tracepoint.h>
4458 int main(void) { return 0; }
4460 if compile_prog "" "-Wl,--no-as-needed -ldl" ; then
4461 if $pkg_config lttng-ust --exists; then
4462 lttng_ust_libs=$($pkg_config --libs lttng-ust)
4463 else
4464 lttng_ust_libs="-llttng-ust -ldl"
4466 if $pkg_config liburcu-bp --exists; then
4467 urcu_bp_libs=$($pkg_config --libs liburcu-bp)
4468 else
4469 urcu_bp_libs="-lurcu-bp"
4472 LIBS="$lttng_ust_libs $urcu_bp_libs $LIBS"
4473 libs_qga="$lttng_ust_libs $urcu_bp_libs $libs_qga"
4474 else
4475 error_exit "Trace backend 'ust' missing lttng-ust header files"
4479 ##########################################
4480 # For 'dtrace' backend, test if 'dtrace' command is present
4481 if have_backend "dtrace"; then
4482 if ! has 'dtrace' ; then
4483 error_exit "dtrace command is not found in PATH $PATH"
4485 trace_backend_stap="no"
4486 if has 'stap' ; then
4487 trace_backend_stap="yes"
4491 ##########################################
4492 # check and set a backend for coroutine
4494 # We prefer ucontext, but it's not always possible. The fallback
4495 # is sigcontext. On Windows the only valid backend is the Windows
4496 # specific one.
4498 ucontext_works=no
4499 if test "$darwin" != "yes"; then
4500 cat > $TMPC << EOF
4501 #include <ucontext.h>
4502 #ifdef __stub_makecontext
4503 #error Ignoring glibc stub makecontext which will always fail
4504 #endif
4505 int main(void) { makecontext(0, 0, 0); return 0; }
4507 if compile_prog "" "" ; then
4508 ucontext_works=yes
4512 if test "$coroutine" = ""; then
4513 if test "$mingw32" = "yes"; then
4514 coroutine=win32
4515 elif test "$ucontext_works" = "yes"; then
4516 coroutine=ucontext
4517 else
4518 coroutine=sigaltstack
4520 else
4521 case $coroutine in
4522 windows)
4523 if test "$mingw32" != "yes"; then
4524 error_exit "'windows' coroutine backend only valid for Windows"
4526 # Unfortunately the user visible backend name doesn't match the
4527 # coroutine-*.c filename for this case, so we have to adjust it here.
4528 coroutine=win32
4530 ucontext)
4531 if test "$ucontext_works" != "yes"; then
4532 feature_not_found "ucontext"
4535 sigaltstack)
4536 if test "$mingw32" = "yes"; then
4537 error_exit "only the 'windows' coroutine backend is valid for Windows"
4541 error_exit "unknown coroutine backend $coroutine"
4543 esac
4546 if test "$coroutine_pool" = ""; then
4547 coroutine_pool=yes
4550 if test "$debug_stack_usage" = "yes"; then
4551 if test "$cpu" = "ia64" -o "$cpu" = "hppa"; then
4552 error_exit "stack usage debugging is not supported for $cpu"
4554 if test "$coroutine_pool" = "yes"; then
4555 echo "WARN: disabling coroutine pool for stack usage debugging"
4556 coroutine_pool=no
4561 ##########################################
4562 # check if we have open_by_handle_at
4564 open_by_handle_at=no
4565 cat > $TMPC << EOF
4566 #include <fcntl.h>
4567 #if !defined(AT_EMPTY_PATH)
4568 # error missing definition
4569 #else
4570 int main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); }
4571 #endif
4573 if compile_prog "" "" ; then
4574 open_by_handle_at=yes
4577 ########################################
4578 # check if we have linux/magic.h
4580 linux_magic_h=no
4581 cat > $TMPC << EOF
4582 #include <linux/magic.h>
4583 int main(void) {
4584 return 0;
4587 if compile_prog "" "" ; then
4588 linux_magic_h=yes
4591 ########################################
4592 # check whether we can disable warning option with a pragma (this is needed
4593 # to silence warnings in the headers of some versions of external libraries).
4594 # This test has to be compiled with -Werror as otherwise an unknown pragma is
4595 # only a warning.
4597 # If we can't selectively disable warning in the code, disable -Werror so that
4598 # the build doesn't fail anyway.
4600 pragma_disable_unused_but_set=no
4601 cat > $TMPC << EOF
4602 #pragma GCC diagnostic push
4603 #pragma GCC diagnostic ignored "-Wunused-but-set-variable"
4604 #pragma GCC diagnostic ignored "-Wstrict-prototypes"
4605 #pragma GCC diagnostic pop
4607 int main(void) {
4608 return 0;
4611 if compile_prog "-Werror" "" ; then
4612 pragma_diagnostic_available=yes
4613 else
4614 werror=no
4617 ########################################
4618 # check if we have valgrind/valgrind.h
4620 valgrind_h=no
4621 cat > $TMPC << EOF
4622 #include <valgrind/valgrind.h>
4623 int main(void) {
4624 return 0;
4627 if compile_prog "" "" ; then
4628 valgrind_h=yes
4631 ########################################
4632 # check if environ is declared
4634 has_environ=no
4635 cat > $TMPC << EOF
4636 #include <unistd.h>
4637 int main(void) {
4638 environ = 0;
4639 return 0;
4642 if compile_prog "" "" ; then
4643 has_environ=yes
4646 ########################################
4647 # check if cpuid.h is usable.
4649 cpuid_h=no
4650 cat > $TMPC << EOF
4651 #include <cpuid.h>
4652 int main(void) {
4653 unsigned a, b, c, d;
4654 int max = __get_cpuid_max(0, 0);
4656 if (max >= 1) {
4657 __cpuid(1, a, b, c, d);
4660 if (max >= 7) {
4661 __cpuid_count(7, 0, a, b, c, d);
4664 return 0;
4667 if compile_prog "" "" ; then
4668 cpuid_h=yes
4671 ########################################
4672 # check if __[u]int128_t is usable.
4674 int128=no
4675 cat > $TMPC << EOF
4676 #if defined(__clang_major__) && defined(__clang_minor__)
4677 # if ((__clang_major__ < 3) || (__clang_major__ == 3) && (__clang_minor__ < 2))
4678 # error __int128_t does not work in CLANG before 3.2
4679 # endif
4680 #endif
4681 __int128_t a;
4682 __uint128_t b;
4683 int main (void) {
4684 a = a + b;
4685 b = a * b;
4686 a = a * a;
4687 return 0;
4690 if compile_prog "" "" ; then
4691 int128=yes
4694 #########################################
4695 # See if 128-bit atomic operations are supported.
4697 atomic128=no
4698 if test "$int128" = "yes"; then
4699 cat > $TMPC << EOF
4700 int main(void)
4702 unsigned __int128 x = 0, y = 0;
4703 y = __atomic_load_16(&x, 0);
4704 __atomic_store_16(&x, y, 0);
4705 __atomic_compare_exchange_16(&x, &y, x, 0, 0, 0);
4706 return 0;
4709 if compile_prog "" "" ; then
4710 atomic128=yes
4714 #########################################
4715 # See if 64-bit atomic operations are supported.
4716 # Note that without __atomic builtins, we can only
4717 # assume atomic loads/stores max at pointer size.
4719 cat > $TMPC << EOF
4720 #include <stdint.h>
4721 int main(void)
4723 uint64_t x = 0, y = 0;
4724 #ifdef __ATOMIC_RELAXED
4725 y = __atomic_load_8(&x, 0);
4726 __atomic_store_8(&x, y, 0);
4727 __atomic_compare_exchange_8(&x, &y, x, 0, 0, 0);
4728 __atomic_exchange_8(&x, y, 0);
4729 __atomic_fetch_add_8(&x, y, 0);
4730 #else
4731 typedef char is_host64[sizeof(void *) >= sizeof(uint64_t) ? 1 : -1];
4732 __sync_lock_test_and_set(&x, y);
4733 __sync_val_compare_and_swap(&x, y, 0);
4734 __sync_fetch_and_add(&x, y);
4735 #endif
4736 return 0;
4739 if compile_prog "" "" ; then
4740 atomic64=yes
4743 ########################################
4744 # check if getauxval is available.
4746 getauxval=no
4747 cat > $TMPC << EOF
4748 #include <sys/auxv.h>
4749 int main(void) {
4750 return getauxval(AT_HWCAP) == 0;
4753 if compile_prog "" "" ; then
4754 getauxval=yes
4757 ########################################
4758 # check if ccache is interfering with
4759 # semantic analysis of macros
4761 unset CCACHE_CPP2
4762 ccache_cpp2=no
4763 cat > $TMPC << EOF
4764 static const int Z = 1;
4765 #define fn() ({ Z; })
4766 #define TAUT(X) ((X) == Z)
4767 #define PAREN(X, Y) (X == Y)
4768 #define ID(X) (X)
4769 int main(int argc, char *argv[])
4771 int x = 0, y = 0;
4772 x = ID(x);
4773 x = fn();
4774 fn();
4775 if (PAREN(x, y)) return 0;
4776 if (TAUT(Z)) return 0;
4777 return 0;
4781 if ! compile_object "-Werror"; then
4782 ccache_cpp2=yes
4785 #################################################
4786 # clang does not support glibc + FORTIFY_SOURCE.
4788 if test "$fortify_source" != "no"; then
4789 if echo | $cc -dM -E - | grep __clang__ > /dev/null 2>&1 ; then
4790 fortify_source="no";
4791 elif test -n "$cxx" && has $cxx &&
4792 echo | $cxx -dM -E - | grep __clang__ >/dev/null 2>&1 ; then
4793 fortify_source="no";
4794 else
4795 fortify_source="yes"
4799 ##########################################
4800 # check if struct fsxattr is available via linux/fs.h
4802 have_fsxattr=no
4803 cat > $TMPC << EOF
4804 #include <linux/fs.h>
4805 struct fsxattr foo;
4806 int main(void) {
4807 return 0;
4810 if compile_prog "" "" ; then
4811 have_fsxattr=yes
4814 ##########################################
4815 # check if rtnetlink.h exists and is useful
4816 have_rtnetlink=no
4817 cat > $TMPC << EOF
4818 #include <linux/rtnetlink.h>
4819 int main(void) {
4820 return IFLA_PROTO_DOWN;
4823 if compile_prog "" "" ; then
4824 have_rtnetlink=yes
4827 ##########################################
4828 # check for usable AF_VSOCK environment
4829 have_af_vsock=no
4830 cat > $TMPC << EOF
4831 #include <errno.h>
4832 #include <sys/types.h>
4833 #include <sys/socket.h>
4834 #if !defined(AF_VSOCK)
4835 # error missing AF_VSOCK flag
4836 #endif
4837 #include <linux/vm_sockets.h>
4838 int main(void) {
4839 int sock, ret;
4840 struct sockaddr_vm svm;
4841 socklen_t len = sizeof(svm);
4842 sock = socket(AF_VSOCK, SOCK_STREAM, 0);
4843 ret = getpeername(sock, (struct sockaddr *)&svm, &len);
4844 if ((ret == -1) && (errno == ENOTCONN)) {
4845 return 0;
4847 return -1;
4850 if compile_prog "" "" ; then
4851 have_af_vsock=yes
4854 ##########################################
4855 # check for usable AF_ALG environment
4856 hava_afalg=no
4857 cat > $TMPC << EOF
4858 #include <errno.h>
4859 #include <sys/types.h>
4860 #include <sys/socket.h>
4861 #include <linux/if_alg.h>
4862 int main(void) {
4863 int sock;
4864 sock = socket(AF_ALG, SOCK_SEQPACKET, 0);
4865 return sock;
4868 if compile_prog "" "" ; then
4869 have_afalg=yes
4871 if test "$crypto_afalg" = "yes"
4872 then
4873 if test "$have_afalg" != "yes"
4874 then
4875 error_exit "AF_ALG requested but could not be detected"
4880 #################################################
4881 # Sparc implicitly links with --relax, which is
4882 # incompatible with -r, so --no-relax should be
4883 # given. It does no harm to give it on other
4884 # platforms too.
4886 # Note: the prototype is needed since QEMU_CFLAGS
4887 # contains -Wmissing-prototypes
4888 cat > $TMPC << EOF
4889 extern int foo(void);
4890 int foo(void) { return 0; }
4892 if ! compile_object ""; then
4893 error_exit "Failed to compile object file for LD_REL_FLAGS test"
4895 for i in '-Wl,-r -Wl,--no-relax' -Wl,-r -r; do
4896 if do_cc -nostdlib $i -o $TMPMO $TMPO; then
4897 LD_REL_FLAGS=$i
4898 break
4900 done
4901 if test "$modules" = "yes" && test "$LD_REL_FLAGS" = ""; then
4902 feature_not_found "modules" "Cannot find how to build relocatable objects"
4905 ##########################################
4906 # check for sysmacros.h
4908 have_sysmacros=no
4909 cat > $TMPC << EOF
4910 #include <sys/sysmacros.h>
4911 int main(void) {
4912 return makedev(0, 0);
4915 if compile_prog "" "" ; then
4916 have_sysmacros=yes
4919 ##########################################
4920 # Veritas HyperScale block driver VxHS
4921 # Check if libvxhs is installed
4923 if test "$vxhs" != "no" ; then
4924 cat > $TMPC <<EOF
4925 #include <stdint.h>
4926 #include <qnio/qnio_api.h>
4928 void *vxhs_callback;
4930 int main(void) {
4931 iio_init(QNIO_VERSION, vxhs_callback);
4932 return 0;
4935 vxhs_libs="-lvxhs -lssl"
4936 if compile_prog "" "$vxhs_libs" ; then
4937 vxhs=yes
4938 else
4939 if test "$vxhs" = "yes" ; then
4940 feature_not_found "vxhs block device" "Install libvxhs See github"
4942 vxhs=no
4946 ##########################################
4947 # check for _Static_assert()
4949 have_static_assert=no
4950 cat > $TMPC << EOF
4951 _Static_assert(1, "success");
4952 int main(void) {
4953 return 0;
4956 if compile_prog "" "" ; then
4957 have_static_assert=yes
4960 ##########################################
4961 # check for utmpx.h, it is missing e.g. on OpenBSD
4963 have_utmpx=no
4964 cat > $TMPC << EOF
4965 #include <utmpx.h>
4966 struct utmpx user_info;
4967 int main(void) {
4968 return 0;
4971 if compile_prog "" "" ; then
4972 have_utmpx=yes
4975 ##########################################
4976 # End of CC checks
4977 # After here, no more $cc or $ld runs
4979 if test "$gcov" = "yes" ; then
4980 CFLAGS="-fprofile-arcs -ftest-coverage -g $CFLAGS"
4981 LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS"
4982 elif test "$fortify_source" = "yes" ; then
4983 CFLAGS="-O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $CFLAGS"
4984 elif test "$debug" = "no"; then
4985 CFLAGS="-O2 $CFLAGS"
4988 ##########################################
4989 # Do we have libnfs
4990 if test "$libnfs" != "no" ; then
4991 if $pkg_config --atleast-version=1.9.3 libnfs; then
4992 libnfs="yes"
4993 libnfs_libs=$($pkg_config --libs libnfs)
4994 else
4995 if test "$libnfs" = "yes" ; then
4996 feature_not_found "libnfs" "Install libnfs devel >= 1.9.3"
4998 libnfs="no"
5002 # Now we've finished running tests it's OK to add -Werror to the compiler flags
5003 if test "$werror" = "yes"; then
5004 QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
5007 if test "$solaris" = "no" ; then
5008 if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
5009 LDFLAGS="-Wl,--warn-common $LDFLAGS"
5013 # test if pod2man has --utf8 option
5014 if pod2man --help | grep -q utf8; then
5015 POD2MAN="pod2man --utf8"
5016 else
5017 POD2MAN="pod2man"
5020 # Use ASLR, no-SEH and DEP if available
5021 if test "$mingw32" = "yes" ; then
5022 for flag in --dynamicbase --no-seh --nxcompat; do
5023 if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
5024 LDFLAGS="-Wl,$flag $LDFLAGS"
5026 done
5029 qemu_confdir=$sysconfdir$confsuffix
5030 qemu_moddir=$libdir$confsuffix
5031 qemu_datadir=$datadir$confsuffix
5032 qemu_localedir="$datadir/locale"
5034 # We can only support ivshmem if we have eventfd
5035 if [ "$eventfd" = "yes" ]; then
5036 ivshmem=yes
5039 tools=""
5040 if test "$want_tools" = "yes" ; then
5041 tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
5042 if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
5043 tools="qemu-nbd\$(EXESUF) $tools"
5045 if [ "$ivshmem" = "yes" ]; then
5046 tools="ivshmem-client\$(EXESUF) ivshmem-server\$(EXESUF) $tools"
5049 if test "$softmmu" = yes ; then
5050 if test "$virtfs" != no ; then
5051 if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then
5052 virtfs=yes
5053 tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
5054 else
5055 if test "$virtfs" = yes; then
5056 error_exit "VirtFS is supported only on Linux and requires libcap devel and libattr devel"
5058 virtfs=no
5063 # Probe for guest agent support/options
5065 if [ "$guest_agent" != "no" ]; then
5066 if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32" = "yes" ] ; then
5067 tools="qemu-ga $tools"
5068 guest_agent=yes
5069 elif [ "$guest_agent" != yes ]; then
5070 guest_agent=no
5071 else
5072 error_exit "Guest agent is not supported on this platform"
5076 # Guest agent Window MSI package
5078 if test "$guest_agent" != yes; then
5079 if test "$guest_agent_msi" = yes; then
5080 error_exit "MSI guest agent package requires guest agent enabled"
5082 guest_agent_msi=no
5083 elif test "$mingw32" != "yes"; then
5084 if test "$guest_agent_msi" = "yes"; then
5085 error_exit "MSI guest agent package is available only for MinGW Windows cross-compilation"
5087 guest_agent_msi=no
5088 elif ! has wixl; then
5089 if test "$guest_agent_msi" = "yes"; then
5090 error_exit "MSI guest agent package requires wixl tool installed ( usually from msitools package )"
5092 guest_agent_msi=no
5093 else
5094 # we support qemu-ga, mingw32, and wixl: default to MSI enabled if it wasn't
5095 # disabled explicitly
5096 if test "$guest_agent_msi" != "no"; then
5097 guest_agent_msi=yes
5101 if test "$guest_agent_msi" = "yes"; then
5102 if test "$guest_agent_with_vss" = "yes"; then
5103 QEMU_GA_MSI_WITH_VSS="-D InstallVss"
5106 if test "$QEMU_GA_MANUFACTURER" = ""; then
5107 QEMU_GA_MANUFACTURER=QEMU
5110 if test "$QEMU_GA_DISTRO" = ""; then
5111 QEMU_GA_DISTRO=Linux
5114 if test "$QEMU_GA_VERSION" = ""; then
5115 QEMU_GA_VERSION=$(cat $source_path/VERSION)
5118 QEMU_GA_MSI_MINGW_DLL_PATH="-D Mingw_dlls=$($pkg_config --variable=prefix glib-2.0)/bin"
5120 case "$cpu" in
5121 x86_64)
5122 QEMU_GA_MSI_ARCH="-a x64 -D Arch=64"
5124 i386)
5125 QEMU_GA_MSI_ARCH="-D Arch=32"
5128 error_exit "CPU $cpu not supported for building installation package"
5130 esac
5133 # Mac OS X ships with a broken assembler
5134 roms=
5135 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
5136 "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
5137 "$softmmu" = yes ; then
5138 # Different host OS linkers have different ideas about the name of the ELF
5139 # emulation. Linux and OpenBSD use 'elf_i386'; FreeBSD uses the _fbsd
5140 # variant; and Windows uses i386pe.
5141 for emu in elf_i386 elf_i386_fbsd i386pe; do
5142 if "$ld" -verbose 2>&1 | grep -q "^[[:space:]]*$emu[[:space:]]*$"; then
5143 ld_i386_emulation="$emu"
5144 roms="optionrom"
5145 break
5147 done
5149 if test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then
5150 roms="$roms spapr-rtas"
5153 if test "$cpu" = "s390x" ; then
5154 roms="$roms s390-ccw"
5157 # Probe for the need for relocating the user-only binary.
5158 if ( [ "$linux_user" = yes ] || [ "$bsd_user" = yes ] ) && [ "$pie" = no ]; then
5159 textseg_addr=
5160 case "$cpu" in
5161 arm | i386 | ppc* | s390* | sparc* | x86_64 | x32)
5162 # ??? Rationale for choosing this address
5163 textseg_addr=0x60000000
5165 mips)
5166 # A 256M aligned address, high in the address space, with enough
5167 # room for the code_gen_buffer above it before the stack.
5168 textseg_addr=0x60000000
5170 esac
5171 if [ -n "$textseg_addr" ]; then
5172 cat > $TMPC <<EOF
5173 int main(void) { return 0; }
5175 textseg_ldflags="-Wl,-Ttext-segment=$textseg_addr"
5176 if ! compile_prog "" "$textseg_ldflags"; then
5177 # In case ld does not support -Ttext-segment, edit the default linker
5178 # script via sed to set the .text start addr. This is needed on FreeBSD
5179 # at least.
5180 if ! $ld --verbose >/dev/null 2>&1; then
5181 error_exit \
5182 "We need to link the QEMU user mode binaries at a" \
5183 "specific text address. Unfortunately your linker" \
5184 "doesn't support either the -Ttext-segment option or" \
5185 "printing the default linker script with --verbose." \
5186 "If you don't want the user mode binaries, pass the" \
5187 "--disable-user option to configure."
5190 $ld --verbose | sed \
5191 -e '1,/==================================================/d' \
5192 -e '/==================================================/,$d' \
5193 -e "s/[.] = [0-9a-fx]* [+] SIZEOF_HEADERS/. = $textseg_addr + SIZEOF_HEADERS/" \
5194 -e "s/__executable_start = [0-9a-fx]*/__executable_start = $textseg_addr/" > config-host.ld
5195 textseg_ldflags="-Wl,-T../config-host.ld"
5200 # Check that the C++ compiler exists and works with the C compiler.
5201 # All the QEMU_CXXFLAGS are based on QEMU_CFLAGS. Keep this at the end to don't miss any other that could be added.
5202 if has $cxx; then
5203 cat > $TMPC <<EOF
5204 int c_function(void);
5205 int main(void) { return c_function(); }
5208 compile_object
5210 cat > $TMPCXX <<EOF
5211 extern "C" {
5212 int c_function(void);
5214 int c_function(void) { return 42; }
5217 update_cxxflags
5219 if do_cxx $QEMU_CXXFLAGS -o $TMPE $TMPCXX $TMPO $LDFLAGS; then
5220 # C++ compiler $cxx works ok with C compiler $cc
5222 else
5223 echo "C++ compiler $cxx does not work with C compiler $cc"
5224 echo "Disabling C++ specific optional code"
5225 cxx=
5227 else
5228 echo "No C++ compiler available; disabling C++ specific optional code"
5229 cxx=
5232 echo_version() {
5233 if test "$1" = "yes" ; then
5234 echo "($2)"
5238 # prepend pixman and ftd flags after all config tests are done
5239 QEMU_CFLAGS="$pixman_cflags $fdt_cflags $QEMU_CFLAGS"
5240 libs_softmmu="$pixman_libs $libs_softmmu"
5242 echo "Install prefix $prefix"
5243 echo "BIOS directory $(eval echo $qemu_datadir)"
5244 echo "binary directory $(eval echo $bindir)"
5245 echo "library directory $(eval echo $libdir)"
5246 echo "module directory $(eval echo $qemu_moddir)"
5247 echo "libexec directory $(eval echo $libexecdir)"
5248 echo "include directory $(eval echo $includedir)"
5249 echo "config directory $(eval echo $sysconfdir)"
5250 if test "$mingw32" = "no" ; then
5251 echo "local state directory $(eval echo $local_statedir)"
5252 echo "Manual directory $(eval echo $mandir)"
5253 echo "ELF interp prefix $interp_prefix"
5254 else
5255 echo "local state directory queried at runtime"
5256 echo "Windows SDK $win_sdk"
5258 echo "Source path $source_path"
5259 echo "C compiler $cc"
5260 echo "Host C compiler $host_cc"
5261 echo "C++ compiler $cxx"
5262 echo "Objective-C compiler $objcc"
5263 echo "ARFLAGS $ARFLAGS"
5264 echo "CFLAGS $CFLAGS"
5265 echo "QEMU_CFLAGS $QEMU_CFLAGS"
5266 echo "LDFLAGS $LDFLAGS"
5267 echo "make $make"
5268 echo "install $install"
5269 echo "python $python"
5270 if test "$slirp" = "yes" ; then
5271 echo "smbd $smbd"
5273 echo "module support $modules"
5274 echo "host CPU $cpu"
5275 echo "host big endian $bigendian"
5276 echo "target list $target_list"
5277 echo "gprof enabled $gprof"
5278 echo "sparse enabled $sparse"
5279 echo "strip binaries $strip_opt"
5280 echo "profiler $profiler"
5281 echo "static build $static"
5282 if test "$darwin" = "yes" ; then
5283 echo "Cocoa support $cocoa"
5285 echo "pixman $pixman"
5286 echo "SDL support $sdl $(echo_version $sdl $sdlversion)"
5287 echo "GTK support $gtk $(echo_version $gtk $gtk_version)"
5288 echo "GTK GL support $gtk_gl"
5289 echo "VTE support $vte $(echo_version $vte $vteversion)"
5290 echo "TLS priority $tls_priority"
5291 echo "GNUTLS support $gnutls"
5292 echo "GNUTLS rnd $gnutls_rnd"
5293 echo "libgcrypt $gcrypt"
5294 echo "libgcrypt kdf $gcrypt_kdf"
5295 echo "nettle $nettle $(echo_version $nettle $nettle_version)"
5296 echo "nettle kdf $nettle_kdf"
5297 echo "libtasn1 $tasn1"
5298 echo "curses support $curses"
5299 echo "virgl support $virglrenderer"
5300 echo "curl support $curl"
5301 echo "mingw32 support $mingw32"
5302 echo "Audio drivers $audio_drv_list"
5303 echo "Block whitelist (rw) $block_drv_rw_whitelist"
5304 echo "Block whitelist (ro) $block_drv_ro_whitelist"
5305 echo "VirtFS support $virtfs"
5306 echo "VNC support $vnc"
5307 if test "$vnc" = "yes" ; then
5308 echo "VNC SASL support $vnc_sasl"
5309 echo "VNC JPEG support $vnc_jpeg"
5310 echo "VNC PNG support $vnc_png"
5312 if test -n "$sparc_cpu"; then
5313 echo "Target Sparc Arch $sparc_cpu"
5315 echo "xen support $xen"
5316 if test "$xen" = "yes" ; then
5317 echo "xen ctrl version $xen_ctrl_version"
5318 echo "pv dom build $xen_pv_domain_build"
5320 echo "brlapi support $brlapi"
5321 echo "bluez support $bluez"
5322 echo "Documentation $docs"
5323 echo "PIE $pie"
5324 echo "vde support $vde"
5325 echo "netmap support $netmap"
5326 echo "Linux AIO support $linux_aio"
5327 echo "ATTR/XATTR support $attr"
5328 echo "Install blobs $blobs"
5329 echo "KVM support $kvm"
5330 echo "HAX support $hax"
5331 echo "TCG support $tcg"
5332 if test "$tcg" = "yes" ; then
5333 echo "TCG debug enabled $debug_tcg"
5334 echo "TCG interpreter $tcg_interpreter"
5336 echo "RDMA support $rdma"
5337 echo "fdt support $fdt"
5338 echo "preadv support $preadv"
5339 echo "fdatasync $fdatasync"
5340 echo "madvise $madvise"
5341 echo "posix_madvise $posix_madvise"
5342 echo "libcap-ng support $cap_ng"
5343 echo "vhost-net support $vhost_net"
5344 echo "vhost-scsi support $vhost_scsi"
5345 echo "vhost-vsock support $vhost_vsock"
5346 echo "Trace backends $trace_backends"
5347 if have_backend "simple"; then
5348 echo "Trace output file $trace_file-<pid>"
5350 echo "spice support $spice $(echo_version $spice $spice_protocol_version/$spice_server_version)"
5351 echo "rbd support $rbd"
5352 echo "xfsctl support $xfs"
5353 echo "smartcard support $smartcard"
5354 echo "libusb $libusb"
5355 echo "usb net redir $usb_redir"
5356 echo "OpenGL support $opengl"
5357 echo "OpenGL dmabufs $opengl_dmabuf"
5358 echo "libiscsi support $libiscsi"
5359 echo "libnfs support $libnfs"
5360 echo "build guest agent $guest_agent"
5361 echo "QGA VSS support $guest_agent_with_vss"
5362 echo "QGA w32 disk info $guest_agent_ntddscsi"
5363 echo "QGA MSI support $guest_agent_msi"
5364 echo "seccomp support $seccomp"
5365 echo "coroutine backend $coroutine"
5366 echo "coroutine pool $coroutine_pool"
5367 echo "debug stack usage $debug_stack_usage"
5368 echo "crypto afalg $crypto_afalg"
5369 echo "GlusterFS support $glusterfs"
5370 echo "gcov $gcov_tool"
5371 echo "gcov enabled $gcov"
5372 echo "TPM support $tpm"
5373 echo "libssh2 support $libssh2"
5374 echo "TPM passthrough $tpm_passthrough"
5375 echo "QOM debugging $qom_cast_debug"
5376 echo "Live block migration $live_block_migration"
5377 echo "lzo support $lzo"
5378 echo "snappy support $snappy"
5379 echo "bzip2 support $bzip2"
5380 echo "NUMA host support $numa"
5381 echo "tcmalloc support $tcmalloc"
5382 echo "jemalloc support $jemalloc"
5383 echo "avx2 optimization $avx2_opt"
5384 echo "replication support $replication"
5385 echo "VxHS block device $vxhs"
5387 if test "$sdl_too_old" = "yes"; then
5388 echo "-> Your SDL version is too old - please upgrade to have SDL support"
5391 if test "$supported_cpu" = "no"; then
5392 echo
5393 echo "WARNING: SUPPORT FOR THIS HOST CPU WILL GO AWAY IN FUTURE RELEASES!"
5394 echo
5395 echo "CPU host architecture $cpu support is not currently maintained."
5396 echo "The QEMU project intends to remove support for this host CPU in"
5397 echo "a future release if nobody volunteers to maintain it and to"
5398 echo "provide a build host for our continuous integration setup."
5399 echo "configure has succeeded and you can continue to build, but"
5400 echo "if you care about QEMU on this platform you should contact"
5401 echo "us upstream at qemu-devel@nongnu.org."
5404 if test "$supported_os" = "no"; then
5405 echo
5406 echo "WARNING: SUPPORT FOR THIS HOST OS WILL GO AWAY IN FUTURE RELEASES!"
5407 echo
5408 echo "Host OS $targetos support is not currently maintained."
5409 echo "The QEMU project intends to remove support for this host OS in"
5410 echo "a future release if nobody volunteers to maintain it and to"
5411 echo "provide a build host for our continuous integration setup."
5412 echo "configure has succeeded and you can continue to build, but"
5413 echo "if you care about QEMU on this platform you should contact"
5414 echo "us upstream at qemu-devel@nongnu.org."
5417 config_host_mak="config-host.mak"
5419 echo "# Automatically generated by configure - do not modify" >config-all-disas.mak
5421 echo "# Automatically generated by configure - do not modify" > $config_host_mak
5422 echo >> $config_host_mak
5424 echo all: >> $config_host_mak
5425 echo "prefix=$prefix" >> $config_host_mak
5426 echo "bindir=$bindir" >> $config_host_mak
5427 echo "libdir=$libdir" >> $config_host_mak
5428 echo "libexecdir=$libexecdir" >> $config_host_mak
5429 echo "includedir=$includedir" >> $config_host_mak
5430 echo "mandir=$mandir" >> $config_host_mak
5431 echo "sysconfdir=$sysconfdir" >> $config_host_mak
5432 echo "qemu_confdir=$qemu_confdir" >> $config_host_mak
5433 echo "qemu_datadir=$qemu_datadir" >> $config_host_mak
5434 echo "qemu_docdir=$qemu_docdir" >> $config_host_mak
5435 echo "qemu_moddir=$qemu_moddir" >> $config_host_mak
5436 if test "$mingw32" = "no" ; then
5437 echo "qemu_localstatedir=$local_statedir" >> $config_host_mak
5439 echo "qemu_helperdir=$libexecdir" >> $config_host_mak
5440 echo "extra_cflags=$EXTRA_CFLAGS" >> $config_host_mak
5441 echo "extra_cxxflags=$EXTRA_CXXFLAGS" >> $config_host_mak
5442 echo "extra_ldflags=$EXTRA_LDFLAGS" >> $config_host_mak
5443 echo "qemu_localedir=$qemu_localedir" >> $config_host_mak
5444 echo "libs_softmmu=$libs_softmmu" >> $config_host_mak
5446 echo "ARCH=$ARCH" >> $config_host_mak
5448 if test "$debug_tcg" = "yes" ; then
5449 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
5451 if test "$strip_opt" = "yes" ; then
5452 echo "STRIP=${strip}" >> $config_host_mak
5454 if test "$bigendian" = "yes" ; then
5455 echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
5457 if test "$mingw32" = "yes" ; then
5458 echo "CONFIG_WIN32=y" >> $config_host_mak
5459 rc_version=$(cat $source_path/VERSION)
5460 version_major=${rc_version%%.*}
5461 rc_version=${rc_version#*.}
5462 version_minor=${rc_version%%.*}
5463 rc_version=${rc_version#*.}
5464 version_subminor=${rc_version%%.*}
5465 version_micro=0
5466 echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
5467 echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
5468 if test "$guest_agent_with_vss" = "yes" ; then
5469 echo "CONFIG_QGA_VSS=y" >> $config_host_mak
5470 echo "QGA_VSS_PROVIDER=$qga_vss_provider" >> $config_host_mak
5471 echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak
5473 if test "$guest_agent_ntddscsi" = "yes" ; then
5474 echo "CONFIG_QGA_NTDDDISK=y" >> $config_host_mak
5476 if test "$guest_agent_msi" = "yes"; then
5477 echo "QEMU_GA_MSI_ENABLED=yes" >> $config_host_mak
5478 echo "QEMU_GA_MSI_MINGW_DLL_PATH=${QEMU_GA_MSI_MINGW_DLL_PATH}" >> $config_host_mak
5479 echo "QEMU_GA_MSI_WITH_VSS=${QEMU_GA_MSI_WITH_VSS}" >> $config_host_mak
5480 echo "QEMU_GA_MSI_ARCH=${QEMU_GA_MSI_ARCH}" >> $config_host_mak
5481 echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER}" >> $config_host_mak
5482 echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO}" >> $config_host_mak
5483 echo "QEMU_GA_VERSION=${QEMU_GA_VERSION}" >> $config_host_mak
5485 else
5486 echo "CONFIG_POSIX=y" >> $config_host_mak
5489 if test "$linux" = "yes" ; then
5490 echo "CONFIG_LINUX=y" >> $config_host_mak
5493 if test "$darwin" = "yes" ; then
5494 echo "CONFIG_DARWIN=y" >> $config_host_mak
5497 if test "$aix" = "yes" ; then
5498 echo "CONFIG_AIX=y" >> $config_host_mak
5501 if test "$solaris" = "yes" ; then
5502 echo "CONFIG_SOLARIS=y" >> $config_host_mak
5504 if test "$haiku" = "yes" ; then
5505 echo "CONFIG_HAIKU=y" >> $config_host_mak
5507 if test "$static" = "yes" ; then
5508 echo "CONFIG_STATIC=y" >> $config_host_mak
5510 if test "$profiler" = "yes" ; then
5511 echo "CONFIG_PROFILER=y" >> $config_host_mak
5513 if test "$slirp" = "yes" ; then
5514 echo "CONFIG_SLIRP=y" >> $config_host_mak
5515 echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak
5517 if test "$vde" = "yes" ; then
5518 echo "CONFIG_VDE=y" >> $config_host_mak
5520 if test "$netmap" = "yes" ; then
5521 echo "CONFIG_NETMAP=y" >> $config_host_mak
5523 if test "$l2tpv3" = "yes" ; then
5524 echo "CONFIG_L2TPV3=y" >> $config_host_mak
5526 if test "$cap_ng" = "yes" ; then
5527 echo "CONFIG_LIBCAP=y" >> $config_host_mak
5529 echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
5530 for drv in $audio_drv_list; do
5531 def=CONFIG_$(echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]')
5532 echo "$def=y" >> $config_host_mak
5533 done
5534 if test "$audio_pt_int" = "yes" ; then
5535 echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
5537 if test "$audio_win_int" = "yes" ; then
5538 echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
5540 echo "CONFIG_BDRV_RW_WHITELIST=$block_drv_rw_whitelist" >> $config_host_mak
5541 echo "CONFIG_BDRV_RO_WHITELIST=$block_drv_ro_whitelist" >> $config_host_mak
5542 if test "$vnc" = "yes" ; then
5543 echo "CONFIG_VNC=y" >> $config_host_mak
5545 if test "$vnc_sasl" = "yes" ; then
5546 echo "CONFIG_VNC_SASL=y" >> $config_host_mak
5548 if test "$vnc_jpeg" = "yes" ; then
5549 echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
5551 if test "$vnc_png" = "yes" ; then
5552 echo "CONFIG_VNC_PNG=y" >> $config_host_mak
5554 if test "$fnmatch" = "yes" ; then
5555 echo "CONFIG_FNMATCH=y" >> $config_host_mak
5557 if test "$xfs" = "yes" ; then
5558 echo "CONFIG_XFS=y" >> $config_host_mak
5560 qemu_version=$(head $source_path/VERSION)
5561 echo "VERSION=$qemu_version" >>$config_host_mak
5562 echo "PKGVERSION=$pkgversion" >>$config_host_mak
5563 echo "SRC_PATH=$source_path" >> $config_host_mak
5564 echo "TARGET_DIRS=$target_list" >> $config_host_mak
5565 if [ "$docs" = "yes" ] ; then
5566 echo "BUILD_DOCS=yes" >> $config_host_mak
5568 if test "$modules" = "yes"; then
5569 # $shacmd can generate a hash started with digit, which the compiler doesn't
5570 # like as an symbol. So prefix it with an underscore
5571 echo "CONFIG_STAMP=_$( (echo $qemu_version; echo $pkgversion; cat $0) | $shacmd - | cut -f1 -d\ )" >> $config_host_mak
5572 echo "CONFIG_MODULES=y" >> $config_host_mak
5574 if test "$sdl" = "yes" ; then
5575 echo "CONFIG_SDL=y" >> $config_host_mak
5576 echo "CONFIG_SDLABI=$sdlabi" >> $config_host_mak
5577 echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
5579 if test "$cocoa" = "yes" ; then
5580 echo "CONFIG_COCOA=y" >> $config_host_mak
5582 if test "$curses" = "yes" ; then
5583 echo "CONFIG_CURSES=y" >> $config_host_mak
5585 if test "$pipe2" = "yes" ; then
5586 echo "CONFIG_PIPE2=y" >> $config_host_mak
5588 if test "$accept4" = "yes" ; then
5589 echo "CONFIG_ACCEPT4=y" >> $config_host_mak
5591 if test "$splice" = "yes" ; then
5592 echo "CONFIG_SPLICE=y" >> $config_host_mak
5594 if test "$eventfd" = "yes" ; then
5595 echo "CONFIG_EVENTFD=y" >> $config_host_mak
5597 if test "$memfd" = "yes" ; then
5598 echo "CONFIG_MEMFD=y" >> $config_host_mak
5600 if test "$fallocate" = "yes" ; then
5601 echo "CONFIG_FALLOCATE=y" >> $config_host_mak
5603 if test "$fallocate_punch_hole" = "yes" ; then
5604 echo "CONFIG_FALLOCATE_PUNCH_HOLE=y" >> $config_host_mak
5606 if test "$fallocate_zero_range" = "yes" ; then
5607 echo "CONFIG_FALLOCATE_ZERO_RANGE=y" >> $config_host_mak
5609 if test "$posix_fallocate" = "yes" ; then
5610 echo "CONFIG_POSIX_FALLOCATE=y" >> $config_host_mak
5612 if test "$sync_file_range" = "yes" ; then
5613 echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak
5615 if test "$fiemap" = "yes" ; then
5616 echo "CONFIG_FIEMAP=y" >> $config_host_mak
5618 if test "$dup3" = "yes" ; then
5619 echo "CONFIG_DUP3=y" >> $config_host_mak
5621 if test "$ppoll" = "yes" ; then
5622 echo "CONFIG_PPOLL=y" >> $config_host_mak
5624 if test "$prctl_pr_set_timerslack" = "yes" ; then
5625 echo "CONFIG_PRCTL_PR_SET_TIMERSLACK=y" >> $config_host_mak
5627 if test "$epoll" = "yes" ; then
5628 echo "CONFIG_EPOLL=y" >> $config_host_mak
5630 if test "$epoll_create1" = "yes" ; then
5631 echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak
5633 if test "$sendfile" = "yes" ; then
5634 echo "CONFIG_SENDFILE=y" >> $config_host_mak
5636 if test "$timerfd" = "yes" ; then
5637 echo "CONFIG_TIMERFD=y" >> $config_host_mak
5639 if test "$setns" = "yes" ; then
5640 echo "CONFIG_SETNS=y" >> $config_host_mak
5642 if test "$clock_adjtime" = "yes" ; then
5643 echo "CONFIG_CLOCK_ADJTIME=y" >> $config_host_mak
5645 if test "$syncfs" = "yes" ; then
5646 echo "CONFIG_SYNCFS=y" >> $config_host_mak
5648 if test "$inotify" = "yes" ; then
5649 echo "CONFIG_INOTIFY=y" >> $config_host_mak
5651 if test "$inotify1" = "yes" ; then
5652 echo "CONFIG_INOTIFY1=y" >> $config_host_mak
5654 if test "$byteswap_h" = "yes" ; then
5655 echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
5657 if test "$bswap_h" = "yes" ; then
5658 echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
5660 if test "$curl" = "yes" ; then
5661 echo "CONFIG_CURL=m" >> $config_host_mak
5662 echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
5663 echo "CURL_LIBS=$curl_libs" >> $config_host_mak
5665 if test "$brlapi" = "yes" ; then
5666 echo "CONFIG_BRLAPI=y" >> $config_host_mak
5668 if test "$bluez" = "yes" ; then
5669 echo "CONFIG_BLUEZ=y" >> $config_host_mak
5670 echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
5672 if test "$glib_subprocess" = "yes" ; then
5673 echo "CONFIG_HAS_GLIB_SUBPROCESS_TESTS=y" >> $config_host_mak
5675 if test "$gtk" = "yes" ; then
5676 echo "CONFIG_GTK=y" >> $config_host_mak
5677 echo "CONFIG_GTKABI=$gtkabi" >> $config_host_mak
5678 echo "GTK_CFLAGS=$gtk_cflags" >> $config_host_mak
5679 echo "GTK_LIBS=$gtk_libs" >> $config_host_mak
5680 if test "$gtk_gl" = "yes" ; then
5681 echo "CONFIG_GTK_GL=y" >> $config_host_mak
5684 echo "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak
5685 if test "$gnutls" = "yes" ; then
5686 echo "CONFIG_GNUTLS=y" >> $config_host_mak
5688 if test "$gnutls_rnd" = "yes" ; then
5689 echo "CONFIG_GNUTLS_RND=y" >> $config_host_mak
5691 if test "$gcrypt" = "yes" ; then
5692 echo "CONFIG_GCRYPT=y" >> $config_host_mak
5693 if test "$gcrypt_hmac" = "yes" ; then
5694 echo "CONFIG_GCRYPT_HMAC=y" >> $config_host_mak
5696 if test "$gcrypt_kdf" = "yes" ; then
5697 echo "CONFIG_GCRYPT_KDF=y" >> $config_host_mak
5700 if test "$nettle" = "yes" ; then
5701 echo "CONFIG_NETTLE=y" >> $config_host_mak
5702 echo "CONFIG_NETTLE_VERSION_MAJOR=${nettle_version%%.*}" >> $config_host_mak
5703 if test "$nettle_kdf" = "yes" ; then
5704 echo "CONFIG_NETTLE_KDF=y" >> $config_host_mak
5707 if test "$tasn1" = "yes" ; then
5708 echo "CONFIG_TASN1=y" >> $config_host_mak
5710 if test "$have_ifaddrs_h" = "yes" ; then
5711 echo "HAVE_IFADDRS_H=y" >> $config_host_mak
5713 if test "$have_broken_size_max" = "yes" ; then
5714 echo "HAVE_BROKEN_SIZE_MAX=y" >> $config_host_mak
5717 # Work around a system header bug with some kernel/XFS header
5718 # versions where they both try to define 'struct fsxattr':
5719 # xfs headers will not try to redefine structs from linux headers
5720 # if this macro is set.
5721 if test "$have_fsxattr" = "yes" ; then
5722 echo "HAVE_FSXATTR=y" >> $config_host_mak
5724 if test "$vte" = "yes" ; then
5725 echo "CONFIG_VTE=y" >> $config_host_mak
5726 echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak
5728 if test "$virglrenderer" = "yes" ; then
5729 echo "CONFIG_VIRGL=y" >> $config_host_mak
5730 echo "VIRGL_CFLAGS=$virgl_cflags" >> $config_host_mak
5731 echo "VIRGL_LIBS=$virgl_libs" >> $config_host_mak
5733 if test "$xen" = "yes" ; then
5734 echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak
5735 echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
5736 if test "$xen_pv_domain_build" = "yes" ; then
5737 echo "CONFIG_XEN_PV_DOMAIN_BUILD=y" >> $config_host_mak
5740 if test "$linux_aio" = "yes" ; then
5741 echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
5743 if test "$attr" = "yes" ; then
5744 echo "CONFIG_ATTR=y" >> $config_host_mak
5746 if test "$libattr" = "yes" ; then
5747 echo "CONFIG_LIBATTR=y" >> $config_host_mak
5749 if test "$virtfs" = "yes" ; then
5750 echo "CONFIG_VIRTFS=y" >> $config_host_mak
5752 if test "$vhost_scsi" = "yes" ; then
5753 echo "CONFIG_VHOST_SCSI=y" >> $config_host_mak
5755 if test "$vhost_net" = "yes" ; then
5756 echo "CONFIG_VHOST_NET_USED=y" >> $config_host_mak
5758 if test "$vhost_vsock" = "yes" ; then
5759 echo "CONFIG_VHOST_VSOCK=y" >> $config_host_mak
5761 if test "$blobs" = "yes" ; then
5762 echo "INSTALL_BLOBS=yes" >> $config_host_mak
5764 if test "$iovec" = "yes" ; then
5765 echo "CONFIG_IOVEC=y" >> $config_host_mak
5767 if test "$preadv" = "yes" ; then
5768 echo "CONFIG_PREADV=y" >> $config_host_mak
5770 if test "$fdt" = "yes" ; then
5771 echo "CONFIG_FDT=y" >> $config_host_mak
5773 if test "$signalfd" = "yes" ; then
5774 echo "CONFIG_SIGNALFD=y" >> $config_host_mak
5776 if test "$tcg" = "yes"; then
5777 echo "CONFIG_TCG=y" >> $config_host_mak
5778 if test "$tcg_interpreter" = "yes" ; then
5779 echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak
5782 if test "$fdatasync" = "yes" ; then
5783 echo "CONFIG_FDATASYNC=y" >> $config_host_mak
5785 if test "$madvise" = "yes" ; then
5786 echo "CONFIG_MADVISE=y" >> $config_host_mak
5788 if test "$posix_madvise" = "yes" ; then
5789 echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
5792 if test "$spice" = "yes" ; then
5793 echo "CONFIG_SPICE=y" >> $config_host_mak
5796 if test "$smartcard" = "yes" ; then
5797 echo "CONFIG_SMARTCARD=y" >> $config_host_mak
5800 if test "$libusb" = "yes" ; then
5801 echo "CONFIG_USB_LIBUSB=y" >> $config_host_mak
5804 if test "$usb_redir" = "yes" ; then
5805 echo "CONFIG_USB_REDIR=y" >> $config_host_mak
5808 if test "$opengl" = "yes" ; then
5809 echo "CONFIG_OPENGL=y" >> $config_host_mak
5810 echo "OPENGL_LIBS=$opengl_libs" >> $config_host_mak
5811 if test "$opengl_dmabuf" = "yes" ; then
5812 echo "CONFIG_OPENGL_DMABUF=y" >> $config_host_mak
5816 if test "$avx2_opt" = "yes" ; then
5817 echo "CONFIG_AVX2_OPT=y" >> $config_host_mak
5820 if test "$lzo" = "yes" ; then
5821 echo "CONFIG_LZO=y" >> $config_host_mak
5824 if test "$snappy" = "yes" ; then
5825 echo "CONFIG_SNAPPY=y" >> $config_host_mak
5828 if test "$bzip2" = "yes" ; then
5829 echo "CONFIG_BZIP2=y" >> $config_host_mak
5830 echo "BZIP2_LIBS=-lbz2" >> $config_host_mak
5833 if test "$libiscsi" = "yes" ; then
5834 echo "CONFIG_LIBISCSI=m" >> $config_host_mak
5835 echo "LIBISCSI_CFLAGS=$libiscsi_cflags" >> $config_host_mak
5836 echo "LIBISCSI_LIBS=$libiscsi_libs" >> $config_host_mak
5839 if test "$libnfs" = "yes" ; then
5840 echo "CONFIG_LIBNFS=m" >> $config_host_mak
5841 echo "LIBNFS_LIBS=$libnfs_libs" >> $config_host_mak
5844 if test "$seccomp" = "yes"; then
5845 echo "CONFIG_SECCOMP=y" >> $config_host_mak
5848 # XXX: suppress that
5849 if [ "$bsd" = "yes" ] ; then
5850 echo "CONFIG_BSD=y" >> $config_host_mak
5853 if test "$localtime_r" = "yes" ; then
5854 echo "CONFIG_LOCALTIME_R=y" >> $config_host_mak
5856 if test "$qom_cast_debug" = "yes" ; then
5857 echo "CONFIG_QOM_CAST_DEBUG=y" >> $config_host_mak
5859 if test "$rbd" = "yes" ; then
5860 echo "CONFIG_RBD=m" >> $config_host_mak
5861 echo "RBD_CFLAGS=$rbd_cflags" >> $config_host_mak
5862 echo "RBD_LIBS=$rbd_libs" >> $config_host_mak
5865 echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak
5866 if test "$coroutine_pool" = "yes" ; then
5867 echo "CONFIG_COROUTINE_POOL=1" >> $config_host_mak
5868 else
5869 echo "CONFIG_COROUTINE_POOL=0" >> $config_host_mak
5872 if test "$debug_stack_usage" = "yes" ; then
5873 echo "CONFIG_DEBUG_STACK_USAGE=y" >> $config_host_mak
5876 if test "$crypto_afalg" = "yes" ; then
5877 echo "CONFIG_AF_ALG=y" >> $config_host_mak
5880 if test "$open_by_handle_at" = "yes" ; then
5881 echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak
5884 if test "$linux_magic_h" = "yes" ; then
5885 echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak
5888 if test "$pragma_diagnostic_available" = "yes" ; then
5889 echo "CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE=y" >> $config_host_mak
5892 if test "$valgrind_h" = "yes" ; then
5893 echo "CONFIG_VALGRIND_H=y" >> $config_host_mak
5896 if test "$has_environ" = "yes" ; then
5897 echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak
5900 if test "$cpuid_h" = "yes" ; then
5901 echo "CONFIG_CPUID_H=y" >> $config_host_mak
5904 if test "$int128" = "yes" ; then
5905 echo "CONFIG_INT128=y" >> $config_host_mak
5908 if test "$atomic128" = "yes" ; then
5909 echo "CONFIG_ATOMIC128=y" >> $config_host_mak
5912 if test "$atomic64" = "yes" ; then
5913 echo "CONFIG_ATOMIC64=y" >> $config_host_mak
5916 if test "$getauxval" = "yes" ; then
5917 echo "CONFIG_GETAUXVAL=y" >> $config_host_mak
5920 if test "$glusterfs" = "yes" ; then
5921 echo "CONFIG_GLUSTERFS=m" >> $config_host_mak
5922 echo "GLUSTERFS_CFLAGS=$glusterfs_cflags" >> $config_host_mak
5923 echo "GLUSTERFS_LIBS=$glusterfs_libs" >> $config_host_mak
5926 if test "$glusterfs_xlator_opt" = "yes" ; then
5927 echo "CONFIG_GLUSTERFS_XLATOR_OPT=y" >> $config_host_mak
5930 if test "$glusterfs_discard" = "yes" ; then
5931 echo "CONFIG_GLUSTERFS_DISCARD=y" >> $config_host_mak
5934 if test "$glusterfs_fallocate" = "yes" ; then
5935 echo "CONFIG_GLUSTERFS_FALLOCATE=y" >> $config_host_mak
5938 if test "$glusterfs_zerofill" = "yes" ; then
5939 echo "CONFIG_GLUSTERFS_ZEROFILL=y" >> $config_host_mak
5942 if test "$libssh2" = "yes" ; then
5943 echo "CONFIG_LIBSSH2=m" >> $config_host_mak
5944 echo "LIBSSH2_CFLAGS=$libssh2_cflags" >> $config_host_mak
5945 echo "LIBSSH2_LIBS=$libssh2_libs" >> $config_host_mak
5948 if test "$live_block_migration" = "yes" ; then
5949 echo "CONFIG_LIVE_BLOCK_MIGRATION=y" >> $config_host_mak
5952 # USB host support
5953 if test "$libusb" = "yes"; then
5954 echo "HOST_USB=libusb legacy" >> $config_host_mak
5955 else
5956 echo "HOST_USB=stub" >> $config_host_mak
5959 # TPM passthrough support?
5960 if test "$tpm" = "yes"; then
5961 echo 'CONFIG_TPM=$(CONFIG_SOFTMMU)' >> $config_host_mak
5962 if test "$tpm_passthrough" = "yes"; then
5963 echo "CONFIG_TPM_PASSTHROUGH=y" >> $config_host_mak
5967 echo "TRACE_BACKENDS=$trace_backends" >> $config_host_mak
5968 if have_backend "nop"; then
5969 echo "CONFIG_TRACE_NOP=y" >> $config_host_mak
5971 if have_backend "simple"; then
5972 echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak
5973 # Set the appropriate trace file.
5974 trace_file="\"$trace_file-\" FMT_pid"
5976 if have_backend "log"; then
5977 echo "CONFIG_TRACE_LOG=y" >> $config_host_mak
5979 if have_backend "ust"; then
5980 echo "CONFIG_TRACE_UST=y" >> $config_host_mak
5982 if have_backend "dtrace"; then
5983 echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak
5984 if test "$trace_backend_stap" = "yes" ; then
5985 echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak
5988 if have_backend "ftrace"; then
5989 if test "$linux" = "yes" ; then
5990 echo "CONFIG_TRACE_FTRACE=y" >> $config_host_mak
5991 else
5992 feature_not_found "ftrace(trace backend)" "ftrace requires Linux"
5995 if have_backend "syslog"; then
5996 if test "$posix_syslog" = "yes" ; then
5997 echo "CONFIG_TRACE_SYSLOG=y" >> $config_host_mak
5998 else
5999 feature_not_found "syslog(trace backend)" "syslog not available"
6002 echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
6004 if test "$rdma" = "yes" ; then
6005 echo "CONFIG_RDMA=y" >> $config_host_mak
6008 if test "$have_rtnetlink" = "yes" ; then
6009 echo "CONFIG_RTNETLINK=y" >> $config_host_mak
6012 if test "$replication" = "yes" ; then
6013 echo "CONFIG_REPLICATION=y" >> $config_host_mak
6016 if test "$have_af_vsock" = "yes" ; then
6017 echo "CONFIG_AF_VSOCK=y" >> $config_host_mak
6020 if test "$have_sysmacros" = "yes" ; then
6021 echo "CONFIG_SYSMACROS=y" >> $config_host_mak
6024 if test "$have_static_assert" = "yes" ; then
6025 echo "CONFIG_STATIC_ASSERT=y" >> $config_host_mak
6028 if test "$have_utmpx" = "yes" ; then
6029 echo "HAVE_UTMPX=y" >> $config_host_mak
6032 if test "$ivshmem" = "yes" ; then
6033 echo "CONFIG_IVSHMEM=y" >> $config_host_mak
6036 # Hold two types of flag:
6037 # CONFIG_THREAD_SETNAME_BYTHREAD - we've got a way of setting the name on
6038 # a thread we have a handle to
6039 # CONFIG_PTHREAD_SETNAME_NP - A way of doing it on a particular
6040 # platform
6041 if test "$pthread_setname_np" = "yes" ; then
6042 echo "CONFIG_THREAD_SETNAME_BYTHREAD=y" >> $config_host_mak
6043 echo "CONFIG_PTHREAD_SETNAME_NP=y" >> $config_host_mak
6046 if test "$vxhs" = "yes" ; then
6047 echo "CONFIG_VXHS=y" >> $config_host_mak
6048 echo "VXHS_LIBS=$vxhs_libs" >> $config_host_mak
6051 if test "$tcg_interpreter" = "yes"; then
6052 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/tci $QEMU_INCLUDES"
6053 elif test "$ARCH" = "sparc64" ; then
6054 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/sparc $QEMU_INCLUDES"
6055 elif test "$ARCH" = "s390x" ; then
6056 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/s390 $QEMU_INCLUDES"
6057 elif test "$ARCH" = "x86_64" -o "$ARCH" = "x32" ; then
6058 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/i386 $QEMU_INCLUDES"
6059 elif test "$ARCH" = "ppc64" ; then
6060 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/ppc $QEMU_INCLUDES"
6061 else
6062 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/\$(ARCH) $QEMU_INCLUDES"
6064 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg $QEMU_INCLUDES"
6066 echo "TOOLS=$tools" >> $config_host_mak
6067 echo "ROMS=$roms" >> $config_host_mak
6068 echo "MAKE=$make" >> $config_host_mak
6069 echo "INSTALL=$install" >> $config_host_mak
6070 echo "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak
6071 echo "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak
6072 echo "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak
6073 echo "INSTALL_LIB=$install -c -m 0644" >> $config_host_mak
6074 echo "PYTHON=$python" >> $config_host_mak
6075 echo "CC=$cc" >> $config_host_mak
6076 if $iasl -h > /dev/null 2>&1; then
6077 echo "IASL=$iasl" >> $config_host_mak
6079 echo "CC_I386=$cc_i386" >> $config_host_mak
6080 echo "HOST_CC=$host_cc" >> $config_host_mak
6081 echo "CXX=$cxx" >> $config_host_mak
6082 echo "OBJCC=$objcc" >> $config_host_mak
6083 echo "AR=$ar" >> $config_host_mak
6084 echo "ARFLAGS=$ARFLAGS" >> $config_host_mak
6085 echo "AS=$as" >> $config_host_mak
6086 echo "CCAS=$ccas" >> $config_host_mak
6087 echo "CPP=$cpp" >> $config_host_mak
6088 echo "OBJCOPY=$objcopy" >> $config_host_mak
6089 echo "LD=$ld" >> $config_host_mak
6090 echo "NM=$nm" >> $config_host_mak
6091 echo "WINDRES=$windres" >> $config_host_mak
6092 echo "CFLAGS=$CFLAGS" >> $config_host_mak
6093 echo "CFLAGS_NOPIE=$CFLAGS_NOPIE" >> $config_host_mak
6094 echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
6095 echo "QEMU_CXXFLAGS=$QEMU_CXXFLAGS" >> $config_host_mak
6096 echo "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak
6097 if test "$sparse" = "yes" ; then
6098 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak
6099 echo "CPP := REAL_CC=\"\$(CPP)\" cgcc" >> $config_host_mak
6100 echo "CXX := REAL_CC=\"\$(CXX)\" cgcc" >> $config_host_mak
6101 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak
6102 echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
6104 if test "$cross_prefix" != ""; then
6105 echo "AUTOCONF_HOST := --host=${cross_prefix%-}" >> $config_host_mak
6106 else
6107 echo "AUTOCONF_HOST := " >> $config_host_mak
6109 echo "LDFLAGS=$LDFLAGS" >> $config_host_mak
6110 echo "LDFLAGS_NOPIE=$LDFLAGS_NOPIE" >> $config_host_mak
6111 echo "LD_REL_FLAGS=$LD_REL_FLAGS" >> $config_host_mak
6112 echo "LD_I386_EMULATION=$ld_i386_emulation" >> $config_host_mak
6113 echo "LIBS+=$LIBS" >> $config_host_mak
6114 echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
6115 echo "PTHREAD_LIB=$PTHREAD_LIB" >> $config_host_mak
6116 echo "EXESUF=$EXESUF" >> $config_host_mak
6117 echo "DSOSUF=$DSOSUF" >> $config_host_mak
6118 echo "LDFLAGS_SHARED=$LDFLAGS_SHARED" >> $config_host_mak
6119 echo "LIBS_QGA+=$libs_qga" >> $config_host_mak
6120 echo "TASN1_LIBS=$tasn1_libs" >> $config_host_mak
6121 echo "TASN1_CFLAGS=$tasn1_cflags" >> $config_host_mak
6122 echo "POD2MAN=$POD2MAN" >> $config_host_mak
6123 echo "TRANSLATE_OPT_CFLAGS=$TRANSLATE_OPT_CFLAGS" >> $config_host_mak
6124 if test "$gcov" = "yes" ; then
6125 echo "CONFIG_GCOV=y" >> $config_host_mak
6126 echo "GCOV=$gcov_tool" >> $config_host_mak
6129 # use included Linux headers
6130 if test "$linux" = "yes" ; then
6131 mkdir -p linux-headers
6132 case "$cpu" in
6133 i386|x86_64|x32)
6134 linux_arch=x86
6136 ppcemb|ppc|ppc64)
6137 linux_arch=powerpc
6139 s390x)
6140 linux_arch=s390
6142 aarch64)
6143 linux_arch=arm64
6145 mips64)
6146 linux_arch=mips
6149 # For most CPUs the kernel architecture name and QEMU CPU name match.
6150 linux_arch="$cpu"
6152 esac
6153 # For non-KVM architectures we will not have asm headers
6154 if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then
6155 symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm
6159 for target in $target_list; do
6160 target_dir="$target"
6161 config_target_mak=$target_dir/config-target.mak
6162 target_name=$(echo $target | cut -d '-' -f 1)
6163 target_bigendian="no"
6165 case "$target_name" in
6166 armeb|hppa|lm32|m68k|microblaze|mips|mipsn32|mips64|moxie|or1k|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb)
6167 target_bigendian=yes
6169 esac
6170 target_softmmu="no"
6171 target_user_only="no"
6172 target_linux_user="no"
6173 target_bsd_user="no"
6174 case "$target" in
6175 ${target_name}-softmmu)
6176 target_softmmu="yes"
6178 ${target_name}-linux-user)
6179 target_user_only="yes"
6180 target_linux_user="yes"
6182 ${target_name}-bsd-user)
6183 target_user_only="yes"
6184 target_bsd_user="yes"
6187 error_exit "Target '$target' not recognised"
6188 exit 1
6190 esac
6192 mkdir -p $target_dir
6193 echo "# Automatically generated by configure - do not modify" > $config_target_mak
6195 bflt="no"
6196 mttcg="no"
6197 interp_prefix1=$(echo "$interp_prefix" | sed "s/%M/$target_name/g")
6198 gdb_xml_files=""
6200 TARGET_ARCH="$target_name"
6201 TARGET_BASE_ARCH=""
6202 TARGET_ABI_DIR=""
6204 case "$target_name" in
6205 i386)
6206 gdb_xml_files="i386-32bit.xml i386-32bit-core.xml i386-32bit-sse.xml"
6208 x86_64)
6209 TARGET_BASE_ARCH=i386
6210 gdb_xml_files="i386-64bit.xml i386-64bit-core.xml i386-64bit-sse.xml"
6212 alpha)
6213 mttcg="yes"
6215 arm|armeb)
6216 TARGET_ARCH=arm
6217 bflt="yes"
6218 mttcg="yes"
6219 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
6221 aarch64)
6222 TARGET_BASE_ARCH=arm
6223 bflt="yes"
6224 mttcg="yes"
6225 gdb_xml_files="aarch64-core.xml aarch64-fpu.xml arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
6227 cris)
6229 hppa)
6231 lm32)
6233 m68k)
6234 bflt="yes"
6235 gdb_xml_files="cf-core.xml cf-fp.xml m68k-fp.xml"
6237 microblaze|microblazeel)
6238 TARGET_ARCH=microblaze
6239 bflt="yes"
6241 mips|mipsel)
6242 TARGET_ARCH=mips
6243 echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
6245 mipsn32|mipsn32el)
6246 TARGET_ARCH=mips64
6247 TARGET_BASE_ARCH=mips
6248 echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
6249 echo "TARGET_ABI32=y" >> $config_target_mak
6251 mips64|mips64el)
6252 TARGET_ARCH=mips64
6253 TARGET_BASE_ARCH=mips
6254 echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
6256 moxie)
6258 nios2)
6260 or1k)
6261 TARGET_ARCH=openrisc
6262 TARGET_BASE_ARCH=openrisc
6264 ppc)
6265 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
6267 ppcemb)
6268 TARGET_BASE_ARCH=ppc
6269 TARGET_ABI_DIR=ppc
6270 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
6272 ppc64)
6273 TARGET_BASE_ARCH=ppc
6274 TARGET_ABI_DIR=ppc
6275 mttcg=yes
6276 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
6278 ppc64le)
6279 TARGET_ARCH=ppc64
6280 TARGET_BASE_ARCH=ppc
6281 TARGET_ABI_DIR=ppc
6282 mttcg=yes
6283 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
6285 ppc64abi32)
6286 TARGET_ARCH=ppc64
6287 TARGET_BASE_ARCH=ppc
6288 TARGET_ABI_DIR=ppc
6289 echo "TARGET_ABI32=y" >> $config_target_mak
6290 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
6292 sh4|sh4eb)
6293 TARGET_ARCH=sh4
6294 bflt="yes"
6296 sparc)
6298 sparc64)
6299 TARGET_BASE_ARCH=sparc
6301 sparc32plus)
6302 TARGET_ARCH=sparc64
6303 TARGET_BASE_ARCH=sparc
6304 TARGET_ABI_DIR=sparc
6305 echo "TARGET_ABI32=y" >> $config_target_mak
6307 s390x)
6308 gdb_xml_files="s390x-core64.xml s390-acr.xml s390-fpr.xml s390-vx.xml s390-cr.xml s390-virt.xml s390-gs.xml"
6310 tilegx)
6312 tricore)
6314 unicore32)
6316 xtensa|xtensaeb)
6317 TARGET_ARCH=xtensa
6320 error_exit "Unsupported target CPU"
6322 esac
6323 # TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
6324 if [ "$TARGET_BASE_ARCH" = "" ]; then
6325 TARGET_BASE_ARCH=$TARGET_ARCH
6328 symlink "$source_path/Makefile.target" "$target_dir/Makefile"
6330 upper() {
6331 echo "$@"| LC_ALL=C tr '[a-z]' '[A-Z]'
6334 target_arch_name="$(upper $TARGET_ARCH)"
6335 echo "TARGET_$target_arch_name=y" >> $config_target_mak
6336 echo "TARGET_NAME=$target_name" >> $config_target_mak
6337 echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
6338 if [ "$TARGET_ABI_DIR" = "" ]; then
6339 TARGET_ABI_DIR=$TARGET_ARCH
6341 echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
6342 if [ "$HOST_VARIANT_DIR" != "" ]; then
6343 echo "HOST_VARIANT_DIR=$HOST_VARIANT_DIR" >> $config_target_mak
6346 if supported_xen_target $target; then
6347 echo "CONFIG_XEN=y" >> $config_target_mak
6348 if test "$xen_pci_passthrough" = yes; then
6349 echo "CONFIG_XEN_PCI_PASSTHROUGH=y" >> "$config_target_mak"
6352 if supported_kvm_target $target; then
6353 echo "CONFIG_KVM=y" >> $config_target_mak
6354 if test "$vhost_net" = "yes" ; then
6355 echo "CONFIG_VHOST_NET=y" >> $config_target_mak
6356 echo "CONFIG_VHOST_NET_TEST_$target_name=y" >> $config_host_mak
6359 if supported_hax_target $target; then
6360 echo "CONFIG_HAX=y" >> $config_target_mak
6362 if test "$target_bigendian" = "yes" ; then
6363 echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
6365 if test "$target_softmmu" = "yes" ; then
6366 echo "CONFIG_SOFTMMU=y" >> $config_target_mak
6367 if test "$mttcg" = "yes" ; then
6368 echo "TARGET_SUPPORTS_MTTCG=y" >> $config_target_mak
6371 if test "$target_user_only" = "yes" ; then
6372 echo "CONFIG_USER_ONLY=y" >> $config_target_mak
6373 echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
6375 if test "$target_linux_user" = "yes" ; then
6376 echo "CONFIG_LINUX_USER=y" >> $config_target_mak
6378 list=""
6379 if test ! -z "$gdb_xml_files" ; then
6380 for x in $gdb_xml_files; do
6381 list="$list $source_path/gdb-xml/$x"
6382 done
6383 echo "TARGET_XML_FILES=$list" >> $config_target_mak
6386 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
6387 echo "TARGET_HAS_BFLT=y" >> $config_target_mak
6389 if test "$target_bsd_user" = "yes" ; then
6390 echo "CONFIG_BSD_USER=y" >> $config_target_mak
6393 # generate QEMU_CFLAGS/LDFLAGS for targets
6395 cflags=""
6396 ldflags=""
6398 disas_config() {
6399 echo "CONFIG_${1}_DIS=y" >> $config_target_mak
6400 echo "CONFIG_${1}_DIS=y" >> config-all-disas.mak
6403 for i in $ARCH $TARGET_BASE_ARCH ; do
6404 case "$i" in
6405 alpha)
6406 disas_config "ALPHA"
6408 aarch64)
6409 if test -n "${cxx}"; then
6410 disas_config "ARM_A64"
6413 arm)
6414 disas_config "ARM"
6415 if test -n "${cxx}"; then
6416 disas_config "ARM_A64"
6419 cris)
6420 disas_config "CRIS"
6422 hppa)
6423 disas_config "HPPA"
6425 i386|x86_64|x32)
6426 disas_config "I386"
6428 ia64*)
6429 disas_config "IA64"
6431 lm32)
6432 disas_config "LM32"
6434 m68k)
6435 disas_config "M68K"
6437 microblaze*)
6438 disas_config "MICROBLAZE"
6440 mips*)
6441 disas_config "MIPS"
6443 moxie*)
6444 disas_config "MOXIE"
6446 nios2)
6447 disas_config "NIOS2"
6449 or1k)
6450 disas_config "OPENRISC"
6452 ppc*)
6453 disas_config "PPC"
6455 s390*)
6456 disas_config "S390"
6458 sh4)
6459 disas_config "SH4"
6461 sparc*)
6462 disas_config "SPARC"
6464 xtensa*)
6465 disas_config "XTENSA"
6467 esac
6468 done
6469 if test "$tcg_interpreter" = "yes" ; then
6470 disas_config "TCI"
6473 case "$ARCH" in
6474 alpha)
6475 # Ensure there's only a single GP
6476 cflags="-msmall-data $cflags"
6478 esac
6480 if test "$gprof" = "yes" ; then
6481 echo "TARGET_GPROF=yes" >> $config_target_mak
6482 if test "$target_linux_user" = "yes" ; then
6483 cflags="-p $cflags"
6484 ldflags="-p $ldflags"
6486 if test "$target_softmmu" = "yes" ; then
6487 ldflags="-p $ldflags"
6488 echo "GPROF_CFLAGS=-p" >> $config_target_mak
6492 if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
6493 ldflags="$ldflags $textseg_ldflags"
6496 echo "LDFLAGS+=$ldflags" >> $config_target_mak
6497 echo "QEMU_CFLAGS+=$cflags" >> $config_target_mak
6499 done # for target in $targets
6501 if [ "$pixman" = "internal" ]; then
6502 echo "config-host.h: subdir-pixman" >> $config_host_mak
6505 if [ "$dtc_internal" = "yes" ]; then
6506 echo "config-host.h: subdir-dtc" >> $config_host_mak
6509 if test "$numa" = "yes"; then
6510 echo "CONFIG_NUMA=y" >> $config_host_mak
6513 if test "$ccache_cpp2" = "yes"; then
6514 echo "export CCACHE_CPP2=y" >> $config_host_mak
6517 # build tree in object directory in case the source is not in the current directory
6518 DIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32 tests/libqos tests/qapi-schema tests/tcg/xtensa tests/qemu-iotests"
6519 DIRS="$DIRS docs docs/interop fsdev"
6520 DIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas pc-bios/s390-ccw"
6521 DIRS="$DIRS roms/seabios roms/vgabios"
6522 DIRS="$DIRS qapi-generated"
6523 FILES="Makefile tests/tcg/Makefile qdict-test-data.txt"
6524 FILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit"
6525 FILES="$FILES tests/tcg/lm32/Makefile tests/tcg/xtensa/Makefile po/Makefile"
6526 FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps"
6527 FILES="$FILES pc-bios/spapr-rtas/Makefile"
6528 FILES="$FILES pc-bios/s390-ccw/Makefile"
6529 FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
6530 FILES="$FILES pc-bios/qemu-icon.bmp"
6531 FILES="$FILES .gdbinit scripts" # scripts needed by relative path in .gdbinit
6532 for bios_file in \
6533 $source_path/pc-bios/*.bin \
6534 $source_path/pc-bios/*.lid \
6535 $source_path/pc-bios/*.aml \
6536 $source_path/pc-bios/*.rom \
6537 $source_path/pc-bios/*.dtb \
6538 $source_path/pc-bios/*.img \
6539 $source_path/pc-bios/openbios-* \
6540 $source_path/pc-bios/u-boot.* \
6541 $source_path/pc-bios/palcode-*
6543 FILES="$FILES pc-bios/$(basename $bios_file)"
6544 done
6545 for test_file in $(find $source_path/tests/acpi-test-data -type f)
6547 FILES="$FILES tests/acpi-test-data$(echo $test_file | sed -e 's/.*acpi-test-data//')"
6548 done
6549 mkdir -p $DIRS
6550 for f in $FILES ; do
6551 if [ -e "$source_path/$f" ] && [ "$pwd_is_source_path" != "y" ]; then
6552 symlink "$source_path/$f" "$f"
6554 done
6556 # temporary config to build submodules
6557 for rom in seabios vgabios ; do
6558 config_mak=roms/$rom/config.mak
6559 echo "# Automatically generated by configure - do not modify" > $config_mak
6560 echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
6561 echo "AS=$as" >> $config_mak
6562 echo "CCAS=$ccas" >> $config_mak
6563 echo "CC=$cc" >> $config_mak
6564 echo "BCC=bcc" >> $config_mak
6565 echo "CPP=$cpp" >> $config_mak
6566 echo "OBJCOPY=objcopy" >> $config_mak
6567 echo "IASL=$iasl" >> $config_mak
6568 echo "LD=$ld" >> $config_mak
6569 done
6571 # set up tests data directory
6572 if [ ! -e tests/data ]; then
6573 symlink "$source_path/tests/data" tests/data
6576 # set up qemu-iotests in this build directory
6577 iotests_common_env="tests/qemu-iotests/common.env"
6578 iotests_check="tests/qemu-iotests/check"
6580 echo "# Automatically generated by configure - do not modify" > "$iotests_common_env"
6581 echo >> "$iotests_common_env"
6582 echo "export PYTHON='$python'" >> "$iotests_common_env"
6584 if [ ! -e "$iotests_check" ]; then
6585 symlink "$source_path/$iotests_check" "$iotests_check"
6588 # Save the configure command line for later reuse.
6589 cat <<EOD >config.status
6590 #!/bin/sh
6591 # Generated by configure.
6592 # Run this file to recreate the current configuration.
6593 # Compiler output produced by configure, useful for debugging
6594 # configure, is in config.log if it exists.
6596 printf "exec" >>config.status
6597 printf " '%s'" "$0" "$@" >>config.status
6598 echo ' "$@"' >>config.status
6599 chmod +x config.status
6601 rm -r "$TMPDIR1"