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.)
23 echo "ERROR: failed to create temporary directory"
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"
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
41 echo "#" >> config.log
46 while test -n "$2"; do
59 # Run the compiler, capturing its output to the log. First argument
60 # is compiler binary to execute.
63 if test -n "$BASH_VERSION"; then eval '
66 lines: ${BASH_LINENO[*]}"
68 echo $compiler "$@" >> config.log
69 $compiler "$@" >> config.log 2>&1 || return $?
70 # Test passed. If this is an --enable-werror build, rerun
71 # the test with -Werror and bail out if it fails. This
72 # makes warning-generating-errors in configure test code
73 # obvious to developers.
74 if test "$werror" != "yes"; then
77 # Don't bother rerunning the compile if we were already using -Werror
83 echo $compiler -Werror "$@" >> config.log
84 $compiler -Werror "$@" >> config.log 2>&1 && return $?
85 error_exit "configure test passed without -Werror but failed with -Werror." \
86 "This is probably a bug in the configure script. The failing command" \
87 "will be at the bottom of config.log." \
88 "You can run configure with --disable-werror to bypass this check."
92 do_compiler "$cc" "$@"
96 do_compiler "$cxx" "$@"
100 # Set QEMU_CXXFLAGS from QEMU_CFLAGS by filtering out those
101 # options which some versions of GCC's C++ compiler complain about
102 # because they only make sense for C programs.
103 QEMU_CXXFLAGS="$QEMU_CXXFLAGS -D__STDC_LIMIT_MACROS"
105 for arg in $QEMU_CFLAGS; do
107 -Wstrict-prototypes|-Wmissing-prototypes|-Wnested-externs|\
108 -Wold-style-declaration|-Wold-style-definition|-Wredundant-decls)
111 QEMU_CXXFLAGS=${QEMU_CXXFLAGS:+$QEMU_CXXFLAGS }"-std=gnu++98"
114 QEMU_CXXFLAGS=${QEMU_CXXFLAGS:+$QEMU_CXXFLAGS }$arg
122 do_cc $QEMU_CFLAGS $local_cflags -c -o $TMPO $TMPC
128 do_cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
131 # symbolically link $1 to $2. Portable version of "ln -sf".
134 mkdir -p "$(dirname "$2")"
138 # check whether a command is available to this shell (may be either an
139 # executable or a builtin)
141 type "$1" >/dev/null 2>&1
144 # search for an executable in PATH
150 # pathname has a dir component?
151 if [ "${local_command#*/}" != "$local_command" ]; then
152 if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then
153 echo "$local_command"
157 if [ -z "$local_command" ]; then
162 for local_dir in $PATH; do
163 if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then
164 echo "$local_dir/$local_command"
165 IFS="${local_ifs:-$(printf ' \t\n')}"
170 IFS="${local_ifs:-$(printf ' \t\n')}"
175 echo "$trace_backends" | grep "$1" >/dev/null
179 eval test -z '"${1#'"$2"'}"'
182 supported_hax_target() {
183 test "$hax" = "yes" || return 1
184 glob "$1" "*-softmmu" || return 1
185 case "${1%-softmmu}" in
193 supported_kvm_target() {
194 test "$kvm" = "yes" || return 1
195 glob "$1" "*-softmmu" || return 1
196 case "${1%-softmmu}:$cpu" in
197 arm:arm | aarch64:aarch64 | \
198 i386:i386 | i386:x86_64 | i386:x32 | \
199 x86_64:i386 | x86_64:x86_64 | x86_64:x32 | \
200 mips:mips | mipsel:mips | \
201 ppc:ppc | ppc64:ppc | ppc:ppc64 | ppc64:ppc64 | ppc64:ppc64le | \
209 supported_xen_target() {
210 test "$xen" = "yes" || return 1
211 glob "$1" "*-softmmu" || return 1
212 # Only i386 and x86_64 provide the xenpv machine.
213 case "${1%-softmmu}" in
221 supported_hvf_target() {
222 test "$hvf" = "yes" || return 1
223 glob "$1" "*-softmmu" || return 1
224 case "${1%-softmmu}" in
232 supported_whpx_target() {
233 test "$whpx" = "yes" || return 1
234 glob "$1" "*-softmmu" || return 1
235 case "${1%-softmmu}" in
248 if test "$linux" != "yes"; then
249 print_error "Target '$target' is only available on a Linux host"
254 if test "$bsd" != "yes"; then
255 print_error "Target '$target' is only available on a BSD host"
260 print_error "Invalid target name '$target'"
264 test "$tcg" = "yes" && return 0
265 supported_kvm_target "$1" && return 0
266 supported_xen_target "$1" && return 0
267 supported_hax_target "$1" && return 0
268 supported_hvf_target "$1" && return 0
269 supported_whpx_target "$1" && return 0
270 print_error "TCG disabled, but hardware accelerator not available for '$target'"
276 $ld --help 2>/dev/null | grep ".$1" >/dev/null 2>&1
279 # make source path absolute
280 source_path=$(cd "$(dirname -- "$0")"; pwd)
282 if printf %s\\n "$source_path" "$PWD" | grep -q "[[:space:]:]";
284 error_exit "main directory cannot contain spaces nor colons"
290 interp_prefix="/usr/gnemul/qemu-%M"
294 block_drv_rw_whitelist=""
295 block_drv_ro_whitelist=""
306 if test -e "$source_path/.git"
309 git_submodules="ui/keycodemapdb"
310 git_submodules="$git_submodules tests/fp/berkeley-testfloat-3"
311 git_submodules="$git_submodules tests/fp/berkeley-softfloat-3"
316 if ! test -f "$source_path/ui/keycodemapdb/README"
319 echo "ERROR: missing file $source_path/ui/keycodemapdb/README"
321 echo "This is not a GIT checkout but module content appears to"
322 echo "be missing. Do not use 'git archive' or GitHub download links"
323 echo "to acquire QEMU source archives. Non-GIT builds are only"
324 echo "supported with source archives linked from:"
326 echo " https://www.qemu.org/download/#source"
328 echo "Developers working with GIT can use scripts/archive-source.sh"
329 echo "if they need to create valid source archives."
336 # Don't accept a target_list environment variable.
338 unset target_list_exclude
340 # Default value for a variable defining feature "foo".
341 # * foo="no" feature will only be used if --enable-foo arg is given
342 # * foo="" feature will be searched for, and if found, will be used
343 # unless --disable-foo is given
344 # * foo="yes" this value will only be set by --enable-foo flag.
345 # feature will searched for,
346 # if not found, configure exits with error
348 # Always add --enable-foo and --disable-foo command line args.
349 # Distributions want to ensure that several features are compiled in, and it
350 # is impossible without a --enable-foo that exits if a feature is not found.
372 xen_pci_passthrough=""
404 LDFLAGS_SHARED="-shared"
407 mandir="\${prefix}/share/man"
408 datadir="\${prefix}/share"
409 firmwarepath="\${prefix}/share/qemu-firmware"
410 qemu_docdir="\${prefix}/share/doc/qemu"
411 bindir="\${prefix}/bin"
412 libdir="\${prefix}/lib"
413 libexecdir="\${prefix}/libexec"
414 includedir="\${prefix}/include"
415 sysconfdir="\${prefix}/etc"
416 local_statedir="\${prefix}/var"
450 guest_agent_with_vss="no"
451 guest_agent_ntddscsi="no"
460 debug_stack_usage="no"
464 glusterfs_xlator_opt="no"
465 glusterfs_discard="no"
466 glusterfs_fallocate="no"
467 glusterfs_zerofill="no"
468 glusterfs_ftruncate_has_stat="no"
469 glusterfs_iocb_has_stat="no"
472 tls_priority="NORMAL"
482 live_block_migration="yes"
501 default_devices="yes"
503 # cross compilers defaults, can be overridden with --cross-cc-ARCH
504 cross_cc_aarch64="aarch64-linux-gnu-gcc"
505 cross_cc_aarch64_be="$cross_cc_aarch64"
506 cross_cc_cflags_aarch64_be="-mbig-endian"
507 cross_cc_arm="arm-linux-gnueabihf-gcc"
508 cross_cc_cflags_armeb="-mbig-endian"
509 cross_cc_i386="i386-pc-linux-gnu-gcc"
510 cross_cc_cflags_i386=""
511 cross_cc_ppc="powerpc-linux-gnu-gcc"
512 cross_cc_cflags_ppc="-m32"
513 cross_cc_ppc64="powerpc-linux-gnu-gcc"
514 cross_cc_cflags_ppc64="-m64"
515 cross_cc_ppc64le="powerpc64le-linux-gnu-gcc"
517 enabled_cross_compilers=""
524 # parse CC options first
526 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
528 --cross-prefix=*) cross_prefix="$optarg"
532 --cxx=*) CXX="$optarg"
534 --cpu=*) cpu="$optarg"
536 --extra-cflags=*) QEMU_CFLAGS="$QEMU_CFLAGS $optarg"
538 --extra-cxxflags=*) QEMU_CXXFLAGS="$QEMU_CXXFLAGS $optarg"
540 --extra-ldflags=*) LDFLAGS="$LDFLAGS $optarg"
541 EXTRA_LDFLAGS="$optarg"
543 --enable-debug-info) debug_info="yes"
545 --disable-debug-info) debug_info="no"
547 --cross-cc-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-cc-FOO option"
549 --cross-cc-cflags-*) cc_arch=${opt#--cross-cc-flags-}; cc_arch=${cc_arch%%=*}
550 eval "cross_cc_cflags_${cc_arch}=\$optarg"
552 --cross-cc-*) cc_arch=${opt#--cross-cc-}; cc_arch=${cc_arch%%=*}
553 eval "cross_cc_${cc_arch}=\$optarg"
558 # Using uname is really, really broken. Once we have the right set of checks
559 # we can eliminate its usage altogether.
561 # Preferred compiler:
563 # ${cross_prefix}gcc (if cross-prefix specified)
565 if test -z "${CC}${cross_prefix}"; then
568 cc="${CC-${cross_prefix}gcc}"
571 if test -z "${CXX}${cross_prefix}"; then
574 cxx="${CXX-${cross_prefix}g++}"
577 ar="${AR-${cross_prefix}ar}"
578 as="${AS-${cross_prefix}as}"
581 objcopy="${OBJCOPY-${cross_prefix}objcopy}"
582 ld="${LD-${cross_prefix}ld}"
583 ranlib="${RANLIB-${cross_prefix}ranlib}"
584 nm="${NM-${cross_prefix}nm}"
585 strip="${STRIP-${cross_prefix}strip}"
586 windres="${WINDRES-${cross_prefix}windres}"
587 pkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}"
589 "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@"
591 pkg_config=query_pkg_config
592 sdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}"
594 # If the user hasn't specified ARFLAGS, default to 'rv', just as make does.
595 ARFLAGS="${ARFLAGS-rv}"
597 # default flags for all hosts
598 # We use -fwrapv to tell the compiler that we require a C dialect where
599 # left shift of signed integers is well defined and has the expected
600 # 2s-complement style results. (Both clang and gcc agree that it
601 # provides these semantics.)
602 QEMU_CFLAGS="-fno-strict-aliasing -fno-common -fwrapv -std=gnu99 $QEMU_CFLAGS"
603 QEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
604 QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
605 QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
606 QEMU_INCLUDES="-iquote . -iquote \$(SRC_PATH) -iquote \$(SRC_PATH)/accel/tcg -iquote \$(SRC_PATH)/include"
607 if test "$debug_info" = "yes"; then
609 LDFLAGS="-g $LDFLAGS"
612 # running configure in the source tree?
613 # we know that's the case if configure is there.
614 if test -f "./configure"; then
615 pwd_is_source_path="y"
617 pwd_is_source_path="n"
623 #error $1 not defined
625 int main(void) { return 0; }
633 int main(void) { return 0; }
640 int main(void) { return 0; }
644 if check_define __linux__ ; then
646 elif check_define _WIN32 ; then
648 elif check_define __OpenBSD__ ; then
650 elif check_define __sun__ ; then
652 elif check_define __HAIKU__ ; then
654 elif check_define __FreeBSD__ ; then
656 elif check_define __FreeBSD_kernel__ && check_define __GLIBC__; then
657 targetos='GNU/kFreeBSD'
658 elif check_define __DragonFly__ ; then
660 elif check_define __NetBSD__; then
662 elif check_define __APPLE__; then
665 # This is a fatal error, but don't report it yet, because we
666 # might be going to just print the --help text, or it might
667 # be the result of a missing compiler.
672 # Some host OSes need non-standard checks for which CPU to use.
673 # Note that these checks are broken for cross-compilation: if you're
674 # cross-compiling to one of these OSes then you'll need to specify
675 # the correct CPU with the --cpu option.
678 # on Leopard most of the system is 32-bit, so we have to ask the kernel if we can
679 # run 64-bit userspace code.
680 # If the user didn't specify a CPU explicitly and the kernel says this is
681 # 64 bit hw, then assume x86_64. Otherwise fall through to the usual detection code.
682 if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
687 # $(uname -m) returns i86pc even on an x86_64 box, so default based on isainfo
688 if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
693 if test ! -z "$cpu" ; then
694 # command line argument
696 elif check_define __i386__ ; then
698 elif check_define __x86_64__ ; then
699 if check_define __ILP32__ ; then
704 elif check_define __sparc__ ; then
705 if check_define __arch64__ ; then
710 elif check_define _ARCH_PPC ; then
711 if check_define _ARCH_PPC64 ; then
712 if check_define _LITTLE_ENDIAN ; then
720 elif check_define __mips__ ; then
722 elif check_define __s390__ ; then
723 if check_define __s390x__ ; then
728 elif check_define __riscv ; then
729 if check_define _LP64 ; then
734 elif check_define __arm__ ; then
736 elif check_define __aarch64__ ; then
743 # Normalise host CPU name and set ARCH.
744 # Note that this case should only have supported host CPUs, not guests.
746 ppc|ppc64|s390|s390x|sparc64|x32|riscv32|riscv64)
748 eval "cross_cc_${cpu}=\$host_cc"
753 cross_cc_ppc64le=$host_cc
755 i386|i486|i586|i686|i86pc|BePC)
758 cross_cc_i386=$host_cc
763 cross_cc_x86_64=$host_cc
768 cross_cc_arm=$host_cc
773 cross_cc_aarch64=$host_cc
778 cross_cc_mips=$host_cc
783 cross_cc_sparc=$host_cc
786 # This will result in either an error or falling back to TCI later
790 if test -z "$ARCH"; then
796 # host *BSD for user mode
804 audio_possible_drivers="dsound sdl"
805 if check_include dsound.h; then
806 audio_drv_list="dsound"
814 audio_drv_list="oss try-sdl"
815 audio_possible_drivers="oss sdl pa"
820 audio_drv_list="oss try-sdl"
821 audio_possible_drivers="oss sdl pa"
822 # needed for kinfo_getvmmap(3) in libutil.h
824 # needed for kinfo_getproc
825 libs_qga="-lutil $libs_qga"
826 netmap="" # enable netmap autodetect
827 HOST_VARIANT_DIR="freebsd"
833 audio_drv_list="oss try-sdl"
834 audio_possible_drivers="oss sdl pa"
835 HOST_VARIANT_DIR="dragonfly"
841 audio_drv_list="oss try-sdl"
842 audio_possible_drivers="oss sdl"
844 HOST_VARIANT_DIR="netbsd"
850 audio_drv_list="try-sdl"
851 audio_possible_drivers="sdl"
852 HOST_VARIANT_DIR="openbsd"
860 LDFLAGS_SHARED="-bundle -undefined dynamic_lookup"
861 if [ "$cpu" = "x86_64" ] ; then
862 QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
863 LDFLAGS="-arch x86_64 $LDFLAGS"
866 audio_drv_list="coreaudio try-sdl"
867 audio_possible_drivers="coreaudio sdl"
868 LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
869 libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
870 # Disable attempts to use ObjectiveC features in os/object.h since they
871 # won't work when we're compiling with gcc as a C compiler.
872 QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS"
873 HOST_VARIANT_DIR="darwin"
879 install="${INSTALL-ginstall}"
880 smbd="${SMBD-/usr/sfw/sbin/smbd}"
881 if test -f /usr/include/sys/soundcard.h ; then
882 audio_drv_list="oss try-sdl"
884 audio_possible_drivers="oss sdl"
885 # needed for CMSG_ macros in sys/socket.h
886 QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
887 # needed for TIOCWIN* defines in termios.h
888 QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
889 QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
890 solarisnetlibs="-lsocket -lnsl -lresolv"
891 LIBS="$solarisnetlibs $LIBS"
892 libs_qga="$solarisnetlibs $libs_qga"
896 QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
897 LIBS="-lposix_error_mapper -lnetwork $LIBS"
900 audio_drv_list="try-pa oss"
901 audio_possible_drivers="oss alsa sdl pa"
905 QEMU_INCLUDES="-I\$(SRC_PATH)/linux-headers -I$PWD/linux-headers $QEMU_INCLUDES"
911 if [ "$bsd" = "yes" ] ; then
912 if [ "$darwin" != "yes" ] ; then
917 : ${make=${MAKE-make}}
918 : ${install=${INSTALL-install}}
919 # We prefer python 3.x. A bare 'python' is traditionally
920 # python 2.x, but some distros have it as python 3.x, so
921 # we check that before python2
923 for binary in "${PYTHON-python3}" python python2
931 : ${smbd=${SMBD-/usr/sbin/smbd}}
933 # Default objcc to clang if available, otherwise use CC
940 if test "$mingw32" = "yes" ; then
943 # MinGW needs -mthreads for TLS and macro _MT.
944 QEMU_CFLAGS="-mthreads $QEMU_CFLAGS"
945 LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
947 if compile_prog "" "-liberty" ; then
948 LIBS="-liberty $LIBS"
950 prefix="c:/Program Files/QEMU"
953 qemu_docdir="\${prefix}"
955 sysconfdir="\${prefix}"
958 libs_qga="-lws2_32 -lwinmm -lpowrprof -lwtsapi32 -lwininet -liphlpapi -lnetapi32 $libs_qga"
964 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
966 --help|-h) show_help=yes
968 --version|-V) exec cat $source_path/VERSION
970 --prefix=*) prefix="$optarg"
972 --interp-prefix=*) interp_prefix="$optarg"
978 --host-cc=*) host_cc="$optarg"
982 --iasl=*) iasl="$optarg"
984 --objcc=*) objcc="$optarg"
986 --make=*) make="$optarg"
988 --install=*) install="$optarg"
990 --python=*) python="$optarg"
992 --gcov=*) gcov_tool="$optarg"
994 --smbd=*) smbd="$optarg"
1002 --enable-debug-info)
1004 --disable-debug-info)
1016 --target-list=*) target_list="$optarg"
1017 if test "$target_list_exclude"; then
1018 error_exit "Can't mix --target-list with --target-list-exclude"
1021 --target-list-exclude=*) target_list_exclude="$optarg"
1022 if test "$target_list"; then
1023 error_exit "Can't mix --target-list-exclude with --target-list"
1026 --enable-trace-backends=*) trace_backends="$optarg"
1028 # XXX: backwards compatibility
1029 --enable-trace-backend=*) trace_backends="$optarg"
1031 --with-trace-file=*) trace_file="$optarg"
1033 --with-default-devices) default_devices="yes"
1035 --without-default-devices) default_devices="no"
1037 --enable-gprof) gprof="yes"
1039 --enable-gcov) gcov="yes"
1043 LDFLAGS="-static $LDFLAGS"
1044 QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS"
1046 --mandir=*) mandir="$optarg"
1048 --bindir=*) bindir="$optarg"
1050 --libdir=*) libdir="$optarg"
1052 --libexecdir=*) libexecdir="$optarg"
1054 --includedir=*) includedir="$optarg"
1056 --datadir=*) datadir="$optarg"
1058 --with-confsuffix=*) confsuffix="$optarg"
1060 --docdir=*) qemu_docdir="$optarg"
1062 --sysconfdir=*) sysconfdir="$optarg"
1064 --localstatedir=*) local_statedir="$optarg"
1066 --firmwarepath=*) firmwarepath="$optarg"
1068 --host=*|--build=*|\
1069 --disable-dependency-tracking|\
1070 --sbindir=*|--sharedstatedir=*|\
1071 --oldincludedir=*|--datarootdir=*|--infodir=*|--localedir=*|\
1072 --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*)
1073 # These switches are silently ignored, for compatibility with
1074 # autoconf-generated configure scripts. This allows QEMU's
1075 # configure to be used by RPM and similar macros that set
1076 # lots of directory switches by default.
1078 --disable-sdl) sdl="no"
1080 --enable-sdl) sdl="yes"
1082 --disable-sdl-image) sdl_image="no"
1084 --enable-sdl-image) sdl_image="yes"
1086 --disable-qom-cast-debug) qom_cast_debug="no"
1088 --enable-qom-cast-debug) qom_cast_debug="yes"
1090 --disable-virtfs) virtfs="no"
1092 --enable-virtfs) virtfs="yes"
1094 --disable-mpath) mpath="no"
1096 --enable-mpath) mpath="yes"
1098 --disable-vnc) vnc="no"
1100 --enable-vnc) vnc="yes"
1102 --oss-lib=*) oss_lib="$optarg"
1104 --audio-drv-list=*) audio_drv_list="$optarg"
1106 --block-drv-rw-whitelist=*|--block-drv-whitelist=*) block_drv_rw_whitelist=$(echo "$optarg" | sed -e 's/,/ /g')
1108 --block-drv-ro-whitelist=*) block_drv_ro_whitelist=$(echo "$optarg" | sed -e 's/,/ /g')
1110 --enable-debug-tcg) debug_tcg="yes"
1112 --disable-debug-tcg) debug_tcg="no"
1115 # Enable debugging options that aren't excessively noisy
1122 --enable-sanitizers) sanitizers="yes"
1124 --disable-sanitizers) sanitizers="no"
1126 --enable-sparse) sparse="yes"
1128 --disable-sparse) sparse="no"
1130 --disable-strip) strip_opt="no"
1132 --disable-vnc-sasl) vnc_sasl="no"
1134 --enable-vnc-sasl) vnc_sasl="yes"
1136 --disable-vnc-jpeg) vnc_jpeg="no"
1138 --enable-vnc-jpeg) vnc_jpeg="yes"
1140 --disable-vnc-png) vnc_png="no"
1142 --enable-vnc-png) vnc_png="yes"
1144 --disable-slirp) slirp="no"
1146 --enable-slirp=git) slirp="git"
1148 --enable-slirp=system) slirp="system"
1150 --disable-vde) vde="no"
1152 --enable-vde) vde="yes"
1154 --disable-netmap) netmap="no"
1156 --enable-netmap) netmap="yes"
1158 --disable-xen) xen="no"
1160 --enable-xen) xen="yes"
1162 --disable-xen-pci-passthrough) xen_pci_passthrough="no"
1164 --enable-xen-pci-passthrough) xen_pci_passthrough="yes"
1166 --disable-brlapi) brlapi="no"
1168 --enable-brlapi) brlapi="yes"
1170 --disable-bluez) bluez="no"
1172 --enable-bluez) bluez="yes"
1174 --disable-kvm) kvm="no"
1176 --enable-kvm) kvm="yes"
1178 --disable-hax) hax="no"
1180 --enable-hax) hax="yes"
1182 --disable-hvf) hvf="no"
1184 --enable-hvf) hvf="yes"
1186 --disable-whpx) whpx="no"
1188 --enable-whpx) whpx="yes"
1190 --disable-tcg-interpreter) tcg_interpreter="no"
1192 --enable-tcg-interpreter) tcg_interpreter="yes"
1194 --disable-cap-ng) cap_ng="no"
1196 --enable-cap-ng) cap_ng="yes"
1198 --disable-tcg) tcg="no"
1200 --enable-tcg) tcg="yes"
1202 --disable-malloc-trim) malloc_trim="no"
1204 --enable-malloc-trim) malloc_trim="yes"
1206 --disable-spice) spice="no"
1208 --enable-spice) spice="yes"
1210 --disable-libiscsi) libiscsi="no"
1212 --enable-libiscsi) libiscsi="yes"
1214 --disable-libnfs) libnfs="no"
1216 --enable-libnfs) libnfs="yes"
1218 --enable-profiler) profiler="yes"
1220 --disable-cocoa) cocoa="no"
1224 audio_drv_list="coreaudio $(echo $audio_drv_list | sed s,coreaudio,,g)"
1226 --disable-system) softmmu="no"
1228 --enable-system) softmmu="yes"
1235 --disable-linux-user) linux_user="no"
1237 --enable-linux-user) linux_user="yes"
1239 --disable-bsd-user) bsd_user="no"
1241 --enable-bsd-user) bsd_user="yes"
1243 --enable-pie) pie="yes"
1245 --disable-pie) pie="no"
1247 --enable-werror) werror="yes"
1249 --disable-werror) werror="no"
1251 --enable-stack-protector) stack_protector="yes"
1253 --disable-stack-protector) stack_protector="no"
1255 --disable-curses) curses="no"
1257 --enable-curses) curses="yes"
1259 --disable-iconv) iconv="no"
1261 --enable-iconv) iconv="yes"
1263 --disable-curl) curl="no"
1265 --enable-curl) curl="yes"
1267 --disable-fdt) fdt="no"
1269 --enable-fdt) fdt="yes"
1271 --disable-linux-aio) linux_aio="no"
1273 --enable-linux-aio) linux_aio="yes"
1275 --disable-attr) attr="no"
1277 --enable-attr) attr="yes"
1279 --disable-membarrier) membarrier="no"
1281 --enable-membarrier) membarrier="yes"
1283 --disable-blobs) blobs="no"
1285 --with-pkgversion=*) pkgversion="$optarg"
1287 --with-coroutine=*) coroutine="$optarg"
1289 --disable-coroutine-pool) coroutine_pool="no"
1291 --enable-coroutine-pool) coroutine_pool="yes"
1293 --enable-debug-stack-usage) debug_stack_usage="yes"
1295 --enable-crypto-afalg) crypto_afalg="yes"
1297 --disable-crypto-afalg) crypto_afalg="no"
1299 --disable-docs) docs="no"
1301 --enable-docs) docs="yes"
1303 --disable-vhost-net) vhost_net="no"
1305 --enable-vhost-net) vhost_net="yes"
1307 --disable-vhost-crypto) vhost_crypto="no"
1309 --enable-vhost-crypto) vhost_crypto="yes"
1311 --disable-vhost-scsi) vhost_scsi="no"
1313 --enable-vhost-scsi) vhost_scsi="yes"
1315 --disable-vhost-vsock) vhost_vsock="no"
1317 --enable-vhost-vsock) vhost_vsock="yes"
1319 --disable-opengl) opengl="no"
1321 --enable-opengl) opengl="yes"
1323 --disable-rbd) rbd="no"
1325 --enable-rbd) rbd="yes"
1327 --disable-xfsctl) xfs="no"
1329 --enable-xfsctl) xfs="yes"
1331 --disable-smartcard) smartcard="no"
1333 --enable-smartcard) smartcard="yes"
1335 --disable-libusb) libusb="no"
1337 --enable-libusb) libusb="yes"
1339 --disable-usb-redir) usb_redir="no"
1341 --enable-usb-redir) usb_redir="yes"
1343 --disable-zlib-test) zlib="no"
1345 --disable-lzo) lzo="no"
1347 --enable-lzo) lzo="yes"
1349 --disable-snappy) snappy="no"
1351 --enable-snappy) snappy="yes"
1353 --disable-bzip2) bzip2="no"
1355 --enable-bzip2) bzip2="yes"
1357 --enable-lzfse) lzfse="yes"
1359 --disable-lzfse) lzfse="no"
1361 --enable-guest-agent) guest_agent="yes"
1363 --disable-guest-agent) guest_agent="no"
1365 --enable-guest-agent-msi) guest_agent_msi="yes"
1367 --disable-guest-agent-msi) guest_agent_msi="no"
1369 --with-vss-sdk) vss_win32_sdk=""
1371 --with-vss-sdk=*) vss_win32_sdk="$optarg"
1373 --without-vss-sdk) vss_win32_sdk="no"
1375 --with-win-sdk) win_sdk=""
1377 --with-win-sdk=*) win_sdk="$optarg"
1379 --without-win-sdk) win_sdk="no"
1381 --enable-tools) want_tools="yes"
1383 --disable-tools) want_tools="no"
1385 --enable-seccomp) seccomp="yes"
1387 --disable-seccomp) seccomp="no"
1389 --disable-glusterfs) glusterfs="no"
1391 --disable-avx2) avx2_opt="no"
1393 --enable-avx2) avx2_opt="yes"
1395 --enable-glusterfs) glusterfs="yes"
1397 --disable-virtio-blk-data-plane|--enable-virtio-blk-data-plane)
1398 echo "$0: $opt is obsolete, virtio-blk data-plane is always on" >&2
1400 --enable-vhdx|--disable-vhdx)
1401 echo "$0: $opt is obsolete, VHDX driver is always built" >&2
1403 --enable-uuid|--disable-uuid)
1404 echo "$0: $opt is obsolete, UUID support is always built" >&2
1406 --disable-gtk) gtk="no"
1408 --enable-gtk) gtk="yes"
1410 --tls-priority=*) tls_priority="$optarg"
1412 --disable-gnutls) gnutls="no"
1414 --enable-gnutls) gnutls="yes"
1416 --disable-nettle) nettle="no"
1418 --enable-nettle) nettle="yes"
1420 --disable-gcrypt) gcrypt="no"
1422 --enable-gcrypt) gcrypt="yes"
1424 --disable-auth-pam) auth_pam="no"
1426 --enable-auth-pam) auth_pam="yes"
1428 --enable-rdma) rdma="yes"
1430 --disable-rdma) rdma="no"
1432 --enable-pvrdma) pvrdma="yes"
1434 --disable-pvrdma) pvrdma="no"
1436 --disable-vte) vte="no"
1438 --enable-vte) vte="yes"
1440 --disable-virglrenderer) virglrenderer="no"
1442 --enable-virglrenderer) virglrenderer="yes"
1444 --disable-tpm) tpm="no"
1446 --enable-tpm) tpm="yes"
1448 --disable-libssh) libssh="no"
1450 --enable-libssh) libssh="yes"
1452 --disable-live-block-migration) live_block_migration="no"
1454 --enable-live-block-migration) live_block_migration="yes"
1456 --disable-numa) numa="no"
1458 --enable-numa) numa="yes"
1460 --disable-libxml2) libxml2="no"
1462 --enable-libxml2) libxml2="yes"
1464 --disable-tcmalloc) tcmalloc="no"
1466 --enable-tcmalloc) tcmalloc="yes"
1468 --disable-jemalloc) jemalloc="no"
1470 --enable-jemalloc) jemalloc="yes"
1472 --disable-replication) replication="no"
1474 --enable-replication) replication="yes"
1476 --disable-vxhs) vxhs="no"
1478 --enable-vxhs) vxhs="yes"
1480 --disable-bochs) bochs="no"
1482 --enable-bochs) bochs="yes"
1484 --disable-cloop) cloop="no"
1486 --enable-cloop) cloop="yes"
1488 --disable-dmg) dmg="no"
1490 --enable-dmg) dmg="yes"
1492 --disable-qcow1) qcow1="no"
1494 --enable-qcow1) qcow1="yes"
1496 --disable-vdi) vdi="no"
1498 --enable-vdi) vdi="yes"
1500 --disable-vvfat) vvfat="no"
1502 --enable-vvfat) vvfat="yes"
1504 --disable-qed) qed="no"
1506 --enable-qed) qed="yes"
1508 --disable-parallels) parallels="no"
1510 --enable-parallels) parallels="yes"
1512 --disable-sheepdog) sheepdog="no"
1514 --enable-sheepdog) sheepdog="yes"
1516 --disable-vhost-user) vhost_user="no"
1518 --enable-vhost-user) vhost_user="yes"
1520 --disable-vhost-kernel) vhost_kernel="no"
1522 --enable-vhost-kernel) vhost_kernel="yes"
1524 --disable-capstone) capstone="no"
1526 --enable-capstone) capstone="yes"
1528 --enable-capstone=git) capstone="git"
1530 --enable-capstone=system) capstone="system"
1532 --with-git=*) git="$optarg"
1534 --enable-git-update) git_update=yes
1536 --disable-git-update) git_update=no
1538 --enable-debug-mutex) debug_mutex=yes
1540 --disable-debug-mutex) debug_mutex=no
1542 --enable-libpmem) libpmem=yes
1544 --disable-libpmem) libpmem=no
1547 echo "ERROR: unknown option $opt"
1548 echo "Try '$0 --help' for more information"
1557 LDFLAGS="-m32 $LDFLAGS"
1559 cross_cc_cflags_ppc="$CPU_CFLAGS"
1563 LDFLAGS="-m64 $LDFLAGS"
1565 cross_cc_cflags_ppc64="$CPU_CFLAGS"
1568 CPU_CFLAGS="-m32 -mv8plus -mcpu=ultrasparc"
1569 LDFLAGS="-m32 -mv8plus $LDFLAGS"
1571 cross_cc_cflags_sparc="$CPU_CFLAGS"
1574 CPU_CFLAGS="-m64 -mcpu=ultrasparc"
1575 LDFLAGS="-m64 $LDFLAGS"
1576 cross_cc_sparc64=$cc
1577 cross_cc_cflags_sparc64="$CPU_CFLAGS"
1581 LDFLAGS="-m31 $LDFLAGS"
1583 cross_cc_cflags_s390="$CPU_CFLAGS"
1587 LDFLAGS="-m64 $LDFLAGS"
1589 cross_cc_cflags_s390x="$CPU_CFLAGS"
1593 LDFLAGS="-m32 $LDFLAGS"
1595 cross_cc_cflags_i386="$CPU_CFLAGS"
1598 # ??? Only extremely old AMD cpus do not have cmpxchg16b.
1599 # If we truly care, we should simply detect this case at
1600 # runtime and generate the fallback to serial emulation.
1601 CPU_CFLAGS="-m64 -mcx16"
1602 LDFLAGS="-m64 $LDFLAGS"
1604 cross_cc_cflags_x86_64="$CPU_CFLAGS"
1608 LDFLAGS="-mx32 $LDFLAGS"
1610 cross_cc_cflags_i386="$CPU_CFLAGS"
1612 # No special flags required for other host CPUs
1615 QEMU_CFLAGS="$CPU_CFLAGS $QEMU_CFLAGS"
1617 # For user-mode emulation the host arch has to be one we explicitly
1618 # support, even if we're using TCI.
1619 if [ "$ARCH" = "unknown" ]; then
1624 default_target_list=""
1628 if [ "$softmmu" = "yes" ]; then
1629 mak_wilds="${mak_wilds} $source_path/default-configs/*-softmmu.mak"
1631 if [ "$linux_user" = "yes" ]; then
1632 mak_wilds="${mak_wilds} $source_path/default-configs/*-linux-user.mak"
1634 if [ "$bsd_user" = "yes" ]; then
1635 mak_wilds="${mak_wilds} $source_path/default-configs/*-bsd-user.mak"
1638 if test -z "$target_list_exclude"; then
1639 for config in $mak_wilds; do
1640 default_target_list="${default_target_list} $(basename "$config" .mak)"
1643 exclude_list=$(echo "$target_list_exclude" | sed -e 's/,/ /g')
1644 for config in $mak_wilds; do
1645 target="$(basename "$config" .mak)"
1647 for excl in $exclude_list; do
1648 if test "$excl" = "$target"; then
1653 if test "$exclude" = "no"; then
1654 default_target_list="${default_target_list} $target"
1659 # Enumerate public trace backends for --help output
1660 trace_backend_list=$(echo $(grep -le '^PUBLIC = True$' "$source_path"/scripts/tracetool/backend/*.py | sed -e 's/^.*\/\(.*\)\.py$/\1/'))
1662 if test x"$show_help" = x"yes" ; then
1665 Usage: configure [options]
1666 Options: [defaults in brackets after descriptions]
1669 --help print this message
1670 --prefix=PREFIX install in PREFIX [$prefix]
1671 --interp-prefix=PREFIX where to find shared libraries, etc.
1672 use %M for cpu name [$interp_prefix]
1673 --target-list=LIST set target list (default: build everything)
1674 $(echo Available targets: $default_target_list | \
1675 fold -s -w 53 | sed -e 's/^/ /')
1676 --target-list-exclude=LIST exclude a set of targets from the default target-list
1678 Advanced options (experts only):
1679 --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]
1680 --cc=CC use C compiler CC [$cc]
1681 --iasl=IASL use ACPI compiler IASL [$iasl]
1682 --host-cc=CC use C compiler CC [$host_cc] for code run at
1684 --cxx=CXX use C++ compiler CXX [$cxx]
1685 --objcc=OBJCC use Objective-C compiler OBJCC [$objcc]
1686 --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS
1687 --extra-cxxflags=CXXFLAGS append extra C++ compiler flags QEMU_CXXFLAGS
1688 --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS
1689 --cross-cc-ARCH=CC use compiler when building ARCH guest test cases
1690 --cross-cc-flags-ARCH= use compiler flags when building ARCH guest tests
1691 --make=MAKE use specified make [$make]
1692 --install=INSTALL use specified install [$install]
1693 --python=PYTHON use specified python [$python]
1694 --smbd=SMBD use specified smbd [$smbd]
1695 --with-git=GIT use specified git [$git]
1696 --static enable static build [$static]
1697 --mandir=PATH install man pages in PATH
1698 --datadir=PATH install firmware in PATH$confsuffix
1699 --docdir=PATH install documentation in PATH$confsuffix
1700 --bindir=PATH install binaries in PATH
1701 --libdir=PATH install libraries in PATH
1702 --libexecdir=PATH install helper binaries in PATH
1703 --sysconfdir=PATH install config in PATH$confsuffix
1704 --localstatedir=PATH install local state in PATH (set at runtime on win32)
1705 --firmwarepath=PATH search PATH for firmware files
1706 --with-confsuffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir [$confsuffix]
1707 --with-pkgversion=VERS use specified string as sub-version of the package
1708 --enable-debug enable common debug build options
1709 --enable-sanitizers enable default sanitizers
1710 --disable-strip disable stripping binaries
1711 --disable-werror disable compilation abort on warning
1712 --disable-stack-protector disable compiler-provided stack protection
1713 --audio-drv-list=LIST set audio drivers list:
1714 Available drivers: $audio_possible_drivers
1715 --block-drv-whitelist=L Same as --block-drv-rw-whitelist=L
1716 --block-drv-rw-whitelist=L
1717 set block driver read-write whitelist
1718 (affects only QEMU, not qemu-img)
1719 --block-drv-ro-whitelist=L
1720 set block driver read-only whitelist
1721 (affects only QEMU, not qemu-img)
1722 --enable-trace-backends=B Set trace backend
1723 Available backends: $trace_backend_list
1724 --with-trace-file=NAME Full PATH,NAME of file to store traces
1726 --disable-slirp disable SLIRP userspace network connectivity
1727 --enable-tcg-interpreter enable TCG with bytecode interpreter (TCI)
1728 --enable-malloc-trim enable libc malloc_trim() for memory optimization
1729 --oss-lib path to OSS library
1730 --cpu=CPU Build for host CPU [$cpu]
1731 --with-coroutine=BACKEND coroutine backend. Supported options:
1732 ucontext, sigaltstack, windows
1733 --enable-gcov enable test coverage analysis with gcov
1734 --gcov=GCOV use specified gcov [$gcov_tool]
1735 --disable-blobs disable installing provided firmware blobs
1736 --with-vss-sdk=SDK-path enable Windows VSS support in QEMU Guest Agent
1737 --with-win-sdk=SDK-path path to Windows Platform SDK (to build VSS .tlb)
1738 --tls-priority default TLS protocol/cipher priority string
1739 --enable-gprof QEMU profiling with gprof
1740 --enable-profiler profiler support
1741 --enable-debug-stack-usage
1742 track the maximum stack usage of stacks created by qemu_alloc_stack
1744 Optional features, enabled with --enable-FEATURE and
1745 disabled with --disable-FEATURE, default is enabled if available:
1747 system all system emulation targets
1748 user supported user emulation targets
1749 linux-user all linux usermode emulation targets
1750 bsd-user all BSD usermode emulation targets
1751 docs build documentation
1752 guest-agent build the QEMU Guest Agent
1753 guest-agent-msi build guest agent Windows MSI installation package
1754 pie Position Independent Executables
1755 modules modules support (non-Windows)
1756 debug-tcg TCG debugging (default is disabled)
1757 debug-info debugging information
1758 sparse sparse checker
1760 gnutls GNUTLS cryptography support
1761 nettle nettle cryptography support
1762 gcrypt libgcrypt cryptography support
1763 auth-pam PAM access control
1765 sdl-image SDL Image support for icons
1767 vte vte support for the gtk UI
1769 iconv font glyph conversion support
1771 vnc-sasl SASL encryption for VNC server
1772 vnc-jpeg JPEG lossy compression for VNC server
1773 vnc-png PNG compression for VNC server
1774 cocoa Cocoa UI (Mac OS X only)
1776 mpath Multipath persistent reservation passthrough
1777 xen xen backend driver support
1778 xen-pci-passthrough PCI passthrough support for Xen
1779 brlapi BrlAPI (Braile)
1780 curl curl connectivity
1781 membarrier membarrier system call (for Linux 4.14+ or Windows)
1783 bluez bluez stack connectivity
1784 kvm KVM acceleration support
1785 hax HAX acceleration support
1786 hvf Hypervisor.framework acceleration support
1787 whpx Windows Hypervisor Platform acceleration support
1788 rdma Enable RDMA-based migration
1789 pvrdma Enable PVRDMA support
1790 vde support for vde network
1791 netmap support for netmap network
1792 linux-aio Linux AIO support
1793 cap-ng libcap-ng support
1794 attr attr and xattr support
1795 vhost-net vhost-net kernel acceleration support
1796 vhost-vsock virtio sockets device support
1797 vhost-scsi vhost-scsi kernel target support
1798 vhost-crypto vhost-user-crypto backend support
1799 vhost-kernel vhost kernel backend support
1800 vhost-user vhost-user backend support
1802 rbd rados block device (rbd)
1803 libiscsi iscsi support
1805 smartcard smartcard support (libcacard)
1806 libusb libusb (for usb passthrough)
1807 live-block-migration Block migration in the main migration stream
1808 usb-redir usb network redirection support
1809 lzo support of lzo compression library
1810 snappy support of snappy compression library
1811 bzip2 support of bzip2 compression library
1812 (for reading bzip2-compressed dmg images)
1813 lzfse support of lzfse compression library
1814 (for reading lzfse-compressed dmg images)
1815 seccomp seccomp support
1816 coroutine-pool coroutine freelist (better performance)
1817 glusterfs GlusterFS backend
1819 libssh ssh block device support
1820 numa libnuma support
1821 libxml2 for Parallels image format
1822 tcmalloc tcmalloc support
1823 jemalloc jemalloc support
1824 avx2 AVX2 optimization support
1825 replication replication support
1826 opengl opengl support
1827 virglrenderer virgl rendering support
1828 xfsctl xfsctl support
1829 qom-cast-debug cast debugging support
1830 tools build qemu-io, qemu-nbd and qemu-img tools
1831 vxhs Veritas HyperScale vDisk backend support
1832 bochs bochs image format support
1833 cloop cloop image format support
1834 dmg dmg image format support
1835 qcow1 qcow v1 image format support
1836 vdi vdi image format support
1837 vvfat vvfat image format support
1838 qed qed image format support
1839 parallels parallels image format support
1840 sheepdog sheepdog block driver support
1841 crypto-afalg Linux AF_ALG crypto backend driver
1842 capstone capstone disassembler support
1843 debug-mutex mutex debugging support
1844 libpmem libpmem support
1846 NOTE: The object files are built at the place where configure is launched
1851 # Remove old dependency files to make sure that they get properly regenerated
1852 rm -f */config-devices.mak.d
1854 if test -z "$python"
1856 error_exit "Python not found. Use --python=/path/to/python"
1859 # Note that if the Python conditional here evaluates True we will exit
1860 # with status 1 which is a shell 'false' value.
1861 if ! $python -c 'import sys; sys.exit(sys.version_info < (2,7))'; then
1862 error_exit "Cannot use '$python', Python 2 >= 2.7 or Python 3 is required." \
1863 "Use --python=/path/to/python to specify a supported Python."
1866 # Preserve python version since some functionality is dependent on it
1867 python_version=$($python -V 2>&1 | sed -e 's/Python\ //')
1869 # Suppress writing compiled files
1872 # Check that the C compiler works. Doing this here before testing
1873 # the host CPU ensures that we had a valid CC to autodetect the
1874 # $cpu var (and we should bail right here if that's not the case).
1875 # It also allows the help message to be printed without a CC.
1877 if compile_object ; then
1878 : C compiler works ok
1880 error_exit "\"$cc\" either does not exist or does not work"
1882 if ! compile_prog ; then
1883 error_exit "\"$cc\" cannot build an executable (is your linker broken?)"
1886 # Now we have handled --enable-tcg-interpreter and know we're not just
1887 # printing the help message, bail out if the host CPU isn't supported.
1888 if test "$ARCH" = "unknown"; then
1889 if test "$tcg_interpreter" = "yes" ; then
1890 echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)"
1892 error_exit "Unsupported CPU = $cpu, try --enable-tcg-interpreter"
1896 # Consult white-list to determine whether to enable werror
1897 # by default. Only enable by default for git builds
1898 if test -z "$werror" ; then
1899 if test -e "$source_path/.git" && \
1900 { test "$linux" = "yes" || test "$mingw32" = "yes"; }; then
1907 if test "$bogus_os" = "yes"; then
1908 # Now that we know that we're not printing the help and that
1909 # the compiler works (so the results of the check_defines we used
1910 # to identify the OS are reliable), if we didn't recognize the
1911 # host OS we should stop now.
1912 error_exit "Unrecognized host OS (uname -s reports '$(uname -s)')"
1915 # Check whether the compiler matches our minimum requirements:
1917 #if defined(__clang_major__) && defined(__clang_minor__)
1918 # ifdef __apple_build_version__
1919 # if __clang_major__ < 5 || (__clang_major__ == 5 && __clang_minor__ < 1)
1920 # error You need at least XCode Clang v5.1 to compile QEMU
1923 # if __clang_major__ < 3 || (__clang_major__ == 3 && __clang_minor__ < 4)
1924 # error You need at least Clang v3.4 to compile QEMU
1927 #elif defined(__GNUC__) && defined(__GNUC_MINOR__)
1928 # if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 8)
1929 # error You need at least GCC v4.8 to compile QEMU
1932 # error You either need GCC or Clang to compiler QEMU
1934 int main (void) { return 0; }
1936 if ! compile_prog "" "" ; then
1937 error_exit "You need at least GCC v4.8 or Clang v3.4 (or XCode Clang v5.1)"
1940 gcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
1941 gcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
1942 gcc_flags="-Wno-missing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
1943 gcc_flags="-Wendif-labels -Wno-shift-negative-value $gcc_flags"
1944 gcc_flags="-Wno-initializer-overrides -Wexpansion-to-defined $gcc_flags"
1945 gcc_flags="-Wno-string-plus-int -Wno-typedef-redefinition $gcc_flags"
1946 # Note that we do not add -Werror to gcc_flags here, because that would
1947 # enable it for all configure tests. If a configure test failed due
1948 # to -Werror this would just silently disable some features,
1949 # so it's too error prone.
1951 cc_has_warning_flag() {
1954 # Use the positive sense of the flag when testing for -Wno-wombat
1955 # support (gcc will happily accept the -Wno- form of unknown
1957 optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')"
1958 compile_prog "-Werror $optflag" ""
1961 for flag in $gcc_flags; do
1962 if cc_has_warning_flag $flag ; then
1963 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
1967 if test "$stack_protector" != "no"; then
1969 int main(int argc, char *argv[])
1971 char arr[64], *p = arr, *c = argv[0];
1978 gcc_flags="-fstack-protector-strong -fstack-protector-all"
1980 for flag in $gcc_flags; do
1981 # We need to check both a compile and a link, since some compiler
1982 # setups fail only on a .c->.o compile and some only at link time
1983 if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC &&
1984 compile_prog "-Werror $flag" ""; then
1985 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
1990 if test "$stack_protector" = yes; then
1991 if test $sp_on = 0; then
1992 error_exit "Stack protector not supported"
1997 # Disable -Wmissing-braces on older compilers that warn even for
1998 # the "universal" C zero initializer {0}.
2004 if compile_object "-Werror" "" ; then
2007 QEMU_CFLAGS="$QEMU_CFLAGS -Wno-missing-braces"
2010 # Our module code doesn't support Windows
2011 if test "$modules" = "yes" && test "$mingw32" = "yes" ; then
2012 error_exit "Modules are not available for Windows"
2015 # Static linking is not possible with modules or PIE
2016 if test "$static" = "yes" ; then
2017 if test "$modules" = "yes" ; then
2018 error_exit "static and modules are mutually incompatible"
2020 if test "$pie" = "yes" ; then
2021 error_exit "static and pie are mutually incompatible"
2027 # Unconditional check for compiler __thread support
2029 static __thread int tls_var;
2030 int main(void) { return tls_var; }
2033 if ! compile_prog "-Werror" "" ; then
2034 error_exit "Your compiler does not support the __thread specifier for " \
2035 "Thread-Local Storage (TLS). Please upgrade to a version that does."
2038 if test "$pie" = ""; then
2039 case "$cpu-$targetos" in
2040 i386-Linux|x86_64-Linux|x32-Linux|i386-OpenBSD|x86_64-OpenBSD)
2048 if test "$pie" != "no" ; then
2052 # define THREAD __thread
2057 static THREAD int tls_var;
2059 int main(void) { return tls_var; }
2062 if compile_prog "-fPIE -DPIE" "-pie"; then
2063 QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS"
2064 LDFLAGS="-pie $LDFLAGS"
2066 if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then
2067 LDFLAGS="-Wl,-z,relro -Wl,-z,now $LDFLAGS"
2070 if test "$pie" = "yes"; then
2071 error_exit "PIE not available due to missing toolchain support"
2073 echo "Disabling PIE due to missing toolchain support"
2078 if compile_prog "-Werror -fno-pie" "-nopie"; then
2079 CFLAGS_NOPIE="-fno-pie"
2080 LDFLAGS_NOPIE="-nopie"
2084 ##########################################
2085 # __sync_fetch_and_and requires at least -march=i486. Many toolchains
2086 # use i686 as default anyway, but for those that don't, an explicit
2087 # specification is necessary
2089 if test "$cpu" = "i386"; then
2091 static int sfaa(int *ptr)
2093 return __sync_fetch_and_and(ptr, 0);
2099 val = __sync_val_compare_and_swap(&val, 0, 1);
2104 if ! compile_prog "" "" ; then
2105 QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS"
2109 #########################################
2110 # Solaris specific configure tool chain decisions
2112 if test "$solaris" = "yes" ; then
2113 if has $install; then
2116 error_exit "Solaris install program not found. Use --install=/usr/ucb/install or" \
2117 "install fileutils from www.blastwave.org using pkg-get -i fileutils" \
2118 "to get ginstall which is used by default (which lives in /opt/csw/bin)"
2120 if test "$(path_of $install)" = "/usr/sbin/install" ; then
2121 error_exit "Solaris /usr/sbin/install is not an appropriate install program." \
2122 "try ginstall from the GNU fileutils available from www.blastwave.org" \
2123 "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
2128 if test -f /usr/ccs/bin/ar ; then
2129 error_exit "No path includes ar" \
2130 "Add /usr/ccs/bin to your path and rerun configure"
2132 error_exit "No path includes ar"
2136 if test -z "${target_list+xxx}" ; then
2137 for target in $default_target_list; do
2138 supported_target $target 2>/dev/null && \
2139 target_list="$target_list $target"
2141 target_list="${target_list# }"
2143 target_list=$(echo "$target_list" | sed -e 's/,/ /g')
2144 for target in $target_list; do
2145 # Check that we recognised the target name; this allows a more
2146 # friendly error message than if we let it fall through.
2147 case " $default_target_list " in
2151 error_exit "Unknown target name '$target'"
2154 supported_target $target || exit 1
2158 # see if system emulation was really requested
2159 case " $target_list " in
2160 *"-softmmu "*) softmmu=yes
2166 feature_not_found() {
2170 error_exit "User requested feature $feature" \
2171 "configure was not able to find it." \
2176 # big/little endian test
2178 short big_endian[] = { 0x4269, 0x4765, 0x4e64, 0x4961, 0x4e00, 0, };
2179 short little_endian[] = { 0x694c, 0x7454, 0x654c, 0x6e45, 0x6944, 0x6e41, 0, };
2180 extern int foo(short *, short *);
2181 int main(int argc, char *argv[]) {
2182 return foo(big_endian, little_endian);
2186 if compile_object ; then
2187 if strings -a $TMPO | grep -q BiGeNdIaN ; then
2189 elif strings -a $TMPO | grep -q LiTtLeEnDiAn ; then
2192 echo big/little test failed
2195 echo big/little test failed
2198 ##########################################
2199 # cocoa implies not SDL or GTK
2200 # (the cocoa UI code currently assumes it is always the active UI
2201 # and doesn't interact well with other UI frontend code)
2202 if test "$cocoa" = "yes"; then
2203 if test "$sdl" = "yes"; then
2204 error_exit "Cocoa and SDL UIs cannot both be enabled at once"
2206 if test "$gtk" = "yes"; then
2207 error_exit "Cocoa and GTK UIs cannot both be enabled at once"
2213 # Some versions of Mac OS X incorrectly define SIZE_MAX
2217 int main(int argc, char *argv[]) {
2218 return printf("%zu", SIZE_MAX);
2221 have_broken_size_max=no
2222 if ! compile_object -Werror ; then
2223 have_broken_size_max=yes
2226 ##########################################
2230 #include <sys/socket.h>
2231 #include <linux/ip.h>
2232 int main(void) { return sizeof(struct mmsghdr); }
2234 if compile_prog "" "" ; then
2240 #########################################
2241 # vhost interdependencies and host support
2244 test "$vhost_user" = "" && vhost_user=yes
2245 if test "$vhost_user" = "yes" && test "$mingw32" = "yes"; then
2246 error_exit "vhost-user isn't available on win32"
2248 test "$vhost_kernel" = "" && vhost_kernel=$linux
2249 if test "$vhost_kernel" = "yes" && test "$linux" != "yes"; then
2250 error_exit "vhost-kernel is only available on Linux"
2253 # vhost-kernel devices
2254 test "$vhost_scsi" = "" && vhost_scsi=$vhost_kernel
2255 if test "$vhost_scsi" = "yes" && test "$vhost_kernel" != "yes"; then
2256 error_exit "--enable-vhost-scsi requires --enable-vhost-kernel"
2258 test "$vhost_vsock" = "" && vhost_vsock=$vhost_kernel
2259 if test "$vhost_vsock" = "yes" && test "$vhost_kernel" != "yes"; then
2260 error_exit "--enable-vhost-vsock requires --enable-vhost-kernel"
2263 # vhost-user backends
2264 test "$vhost_net_user" = "" && vhost_net_user=$vhost_user
2265 if test "$vhost_net_user" = "yes" && test "$vhost_user" = "no"; then
2266 error_exit "--enable-vhost-net-user requires --enable-vhost-user"
2268 test "$vhost_crypto" = "" && vhost_crypto=$vhost_user
2269 if test "$vhost_crypto" = "yes" && test "$vhost_user" = "no"; then
2270 error_exit "--enable-vhost-crypto requires --enable-vhost-user"
2273 # OR the vhost-kernel and vhost-user values for simplicity
2274 if test "$vhost_net" = ""; then
2275 test "$vhost_net_user" = "yes" && vhost_net=yes
2276 test "$vhost_kernel" = "yes" && vhost_net=yes
2279 ##########################################
2280 # MinGW / Mingw-w64 localtime_r/gmtime_r check
2282 if test "$mingw32" = "yes"; then
2283 # Some versions of MinGW / Mingw-w64 lack localtime_r
2284 # and gmtime_r entirely.
2286 # Some versions of Mingw-w64 define a macro for
2287 # localtime_r/gmtime_r.
2289 # Some versions of Mingw-w64 will define functions
2290 # for localtime_r/gmtime_r, but only if you have
2291 # _POSIX_THREAD_SAFE_FUNCTIONS defined. For fun
2292 # though, unistd.h and pthread.h both define
2295 # So this #undef localtime_r and #include <unistd.h>
2296 # are not in fact redundant.
2301 int main(void) { localtime_r(NULL, NULL); return 0; }
2303 if compile_prog "" "" ; then
2310 ##########################################
2313 if ! has "$pkg_config_exe"; then
2314 error_exit "pkg-config binary '$pkg_config_exe' not found"
2317 ##########################################
2320 if test "$linux_user" = "yes"; then
2323 #include <linux/futex.h>
2325 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
2331 if ! compile_object ; then
2332 feature_not_found "nptl" "Install glibc and linux kernel headers."
2336 ##########################################
2339 if test "$lzo" != "no" ; then
2341 #include <lzo/lzo1x.h>
2342 int main(void) { lzo_version(); return 0; }
2344 if compile_prog "" "-llzo2" ; then
2345 libs_softmmu="$libs_softmmu -llzo2"
2348 if test "$lzo" = "yes"; then
2349 feature_not_found "liblzo2" "Install liblzo2 devel"
2355 ##########################################
2358 if test "$snappy" != "no" ; then
2360 #include <snappy-c.h>
2361 int main(void) { snappy_max_compressed_length(4096); return 0; }
2363 if compile_prog "" "-lsnappy" ; then
2364 libs_softmmu="$libs_softmmu -lsnappy"
2367 if test "$snappy" = "yes"; then
2368 feature_not_found "libsnappy" "Install libsnappy devel"
2374 ##########################################
2377 if test "$bzip2" != "no" ; then
2380 int main(void) { BZ2_bzlibVersion(); return 0; }
2382 if compile_prog "" "-lbz2" ; then
2385 if test "$bzip2" = "yes"; then
2386 feature_not_found "libbzip2" "Install libbzip2 devel"
2392 ##########################################
2395 if test "$lzfse" != "no" ; then
2398 int main(void) { lzfse_decode_scratch_size(); return 0; }
2400 if compile_prog "" "-llzfse" ; then
2403 if test "$lzfse" = "yes"; then
2404 feature_not_found "lzfse" "Install lzfse devel"
2410 ##########################################
2413 if test "$seccomp" != "no" ; then
2414 libseccomp_minver="2.3.0"
2415 if $pkg_config --atleast-version=$libseccomp_minver libseccomp ; then
2416 seccomp_cflags="$($pkg_config --cflags libseccomp)"
2417 seccomp_libs="$($pkg_config --libs libseccomp)"
2420 if test "$seccomp" = "yes" ; then
2421 feature_not_found "libseccomp" \
2422 "Install libseccomp devel >= $libseccomp_minver"
2427 ##########################################
2430 if test "$xen" != "no" ; then
2431 # Check whether Xen library path is specified via --extra-ldflags to avoid
2432 # overriding this setting with pkg-config output. If not, try pkg-config
2433 # to obtain all needed flags.
2435 if ! echo $EXTRA_LDFLAGS | grep tools/libxc > /dev/null && \
2436 $pkg_config --exists xencontrol ; then
2437 xen_ctrl_version="$(printf '%d%02d%02d' \
2438 $($pkg_config --modversion xencontrol | sed 's/\./ /g') )"
2440 xen_pc="xencontrol xenstore xenguest xenforeignmemory xengnttab"
2441 xen_pc="$xen_pc xenevtchn xendevicemodel"
2442 if $pkg_config --exists xentoolcore; then
2443 xen_pc="$xen_pc xentoolcore"
2445 QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags $xen_pc)"
2446 libs_softmmu="$($pkg_config --libs $xen_pc) $libs_softmmu"
2449 xen_libs="-lxenstore -lxenctrl -lxenguest"
2450 xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn"
2452 # First we test whether Xen headers and libraries are available.
2453 # If no, we are done and there is no Xen support.
2454 # If yes, more tests are run to detect the Xen version.
2458 #include <xenctrl.h>
2463 if ! compile_prog "" "$xen_libs" ; then
2465 if test "$xen" = "yes" ; then
2466 feature_not_found "xen" "Install xen devel"
2472 cat > $TMPC <<EOF &&
2473 #undef XC_WANT_COMPAT_DEVICEMODEL_API
2474 #define __XEN_TOOLS__
2475 #include <xendevicemodel.h>
2476 #include <xenforeignmemory.h>
2478 xendevicemodel_handle *xd;
2479 xenforeignmemory_handle *xfmem;
2481 xd = xendevicemodel_open(0, 0);
2482 xendevicemodel_pin_memory_cacheattr(xd, 0, 0, 0, 0);
2484 xfmem = xenforeignmemory_open(0, 0);
2485 xenforeignmemory_map_resource(xfmem, 0, 0, 0, 0, 0, NULL, 0, 0);
2490 compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore"
2492 xen_stable_libs="-lxendevicemodel $xen_stable_libs -lxentoolcore"
2493 xen_ctrl_version=41100
2496 cat > $TMPC <<EOF &&
2497 #undef XC_WANT_COMPAT_MAP_FOREIGN_API
2498 #include <xenforeignmemory.h>
2499 #include <xentoolcore.h>
2501 xenforeignmemory_handle *xfmem;
2503 xfmem = xenforeignmemory_open(0, 0);
2504 xenforeignmemory_map2(xfmem, 0, 0, 0, 0, 0, 0, 0);
2505 xentoolcore_restrict_all(0);
2510 compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore"
2512 xen_stable_libs="-lxendevicemodel $xen_stable_libs -lxentoolcore"
2513 xen_ctrl_version=41000
2516 cat > $TMPC <<EOF &&
2517 #undef XC_WANT_COMPAT_DEVICEMODEL_API
2518 #define __XEN_TOOLS__
2519 #include <xendevicemodel.h>
2521 xendevicemodel_handle *xd;
2523 xd = xendevicemodel_open(0, 0);
2524 xendevicemodel_close(xd);
2529 compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs"
2531 xen_stable_libs="-lxendevicemodel $xen_stable_libs"
2532 xen_ctrl_version=40900
2535 cat > $TMPC <<EOF &&
2537 * If we have stable libs the we don't want the libxc compat
2538 * layers, regardless of what CFLAGS we may have been given.
2540 * Also, check if xengnttab_grant_copy_segment_t is defined and
2541 * grant copy operation is implemented.
2543 #undef XC_WANT_COMPAT_EVTCHN_API
2544 #undef XC_WANT_COMPAT_GNTTAB_API
2545 #undef XC_WANT_COMPAT_MAP_FOREIGN_API
2546 #include <xenctrl.h>
2547 #include <xenstore.h>
2548 #include <xenevtchn.h>
2549 #include <xengnttab.h>
2550 #include <xenforeignmemory.h>
2552 #include <xen/hvm/hvm_info_table.h>
2553 #if !defined(HVM_MAX_VCPUS)
2554 # error HVM_MAX_VCPUS not defined
2557 xc_interface *xc = NULL;
2558 xenforeignmemory_handle *xfmem;
2559 xenevtchn_handle *xe;
2560 xengnttab_handle *xg;
2561 xengnttab_grant_copy_segment_t* seg = NULL;
2565 xc = xc_interface_open(0, 0, 0);
2566 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2567 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2568 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2569 xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
2571 xfmem = xenforeignmemory_open(0, 0);
2572 xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0);
2574 xe = xenevtchn_open(0, 0);
2577 xg = xengnttab_open(0, 0);
2578 xengnttab_grant_copy(xg, 0, seg);
2583 compile_prog "" "$xen_libs $xen_stable_libs"
2585 xen_ctrl_version=40800
2588 cat > $TMPC <<EOF &&
2590 * If we have stable libs the we don't want the libxc compat
2591 * layers, regardless of what CFLAGS we may have been given.
2593 #undef XC_WANT_COMPAT_EVTCHN_API
2594 #undef XC_WANT_COMPAT_GNTTAB_API
2595 #undef XC_WANT_COMPAT_MAP_FOREIGN_API
2596 #include <xenctrl.h>
2597 #include <xenstore.h>
2598 #include <xenevtchn.h>
2599 #include <xengnttab.h>
2600 #include <xenforeignmemory.h>
2602 #include <xen/hvm/hvm_info_table.h>
2603 #if !defined(HVM_MAX_VCPUS)
2604 # error HVM_MAX_VCPUS not defined
2607 xc_interface *xc = NULL;
2608 xenforeignmemory_handle *xfmem;
2609 xenevtchn_handle *xe;
2610 xengnttab_handle *xg;
2614 xc = xc_interface_open(0, 0, 0);
2615 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2616 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2617 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2618 xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
2620 xfmem = xenforeignmemory_open(0, 0);
2621 xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0);
2623 xe = xenevtchn_open(0, 0);
2626 xg = xengnttab_open(0, 0);
2627 xengnttab_map_grant_ref(xg, 0, 0, 0);
2632 compile_prog "" "$xen_libs $xen_stable_libs"
2634 xen_ctrl_version=40701
2639 cat > $TMPC <<EOF &&
2640 #include <xenctrl.h>
2641 #include <xenstore.h>
2643 #include <xen/hvm/hvm_info_table.h>
2644 #if !defined(HVM_MAX_VCPUS)
2645 # error HVM_MAX_VCPUS not defined
2650 xc = xc_interface_open(0, 0, 0);
2651 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2652 xc_gnttab_open(NULL, 0);
2653 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2654 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2655 xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
2656 xc_reserved_device_memory_map(xc, 0, 0, 0, 0, NULL, 0);
2660 compile_prog "" "$xen_libs"
2662 xen_ctrl_version=40600
2667 cat > $TMPC <<EOF &&
2668 #include <xenctrl.h>
2669 #include <xenstore.h>
2671 #include <xen/hvm/hvm_info_table.h>
2672 #if !defined(HVM_MAX_VCPUS)
2673 # error HVM_MAX_VCPUS not defined
2678 xc = xc_interface_open(0, 0, 0);
2679 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2680 xc_gnttab_open(NULL, 0);
2681 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2682 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2683 xc_hvm_create_ioreq_server(xc, 0, 0, NULL);
2687 compile_prog "" "$xen_libs"
2689 xen_ctrl_version=40500
2693 cat > $TMPC <<EOF &&
2694 #include <xenctrl.h>
2695 #include <xenstore.h>
2697 #include <xen/hvm/hvm_info_table.h>
2698 #if !defined(HVM_MAX_VCPUS)
2699 # error HVM_MAX_VCPUS not defined
2704 xc = xc_interface_open(0, 0, 0);
2705 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2706 xc_gnttab_open(NULL, 0);
2707 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2708 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2712 compile_prog "" "$xen_libs"
2714 xen_ctrl_version=40200
2718 if test "$xen" = "yes" ; then
2719 feature_not_found "xen (unsupported version)" \
2720 "Install a supported xen (xen 4.2 or newer)"
2725 if test "$xen" = yes; then
2726 if test $xen_ctrl_version -ge 40701 ; then
2727 libs_softmmu="$xen_stable_libs $libs_softmmu"
2729 libs_softmmu="$xen_libs $libs_softmmu"
2734 if test "$xen_pci_passthrough" != "no"; then
2735 if test "$xen" = "yes" && test "$linux" = "yes"; then
2736 xen_pci_passthrough=yes
2738 if test "$xen_pci_passthrough" = "yes"; then
2739 error_exit "User requested feature Xen PCI Passthrough" \
2740 " but this feature requires /sys from Linux"
2742 xen_pci_passthrough=no
2746 ##########################################
2747 # Windows Hypervisor Platform accelerator (WHPX) check
2748 if test "$whpx" != "no" ; then
2749 if check_include "WinHvPlatform.h" && check_include "WinHvEmulation.h"; then
2752 if test "$whpx" = "yes"; then
2753 feature_not_found "WinHvPlatform" "WinHvEmulation is not installed"
2759 ##########################################
2761 if test "$sparse" != "no" ; then
2765 if test "$sparse" = "yes" ; then
2766 feature_not_found "sparse" "Install sparse binary"
2772 ##########################################
2774 if $pkg_config --exists "x11"; then
2776 x11_cflags=$($pkg_config --cflags x11)
2777 x11_libs=$($pkg_config --libs x11)
2780 ##########################################
2783 if test "$gtk" != "no"; then
2784 gtkpackage="gtk+-3.0"
2785 gtkx11package="gtk+-x11-3.0"
2787 if $pkg_config --exists "$gtkpackage >= $gtkversion"; then
2788 gtk_cflags=$($pkg_config --cflags $gtkpackage)
2789 gtk_libs=$($pkg_config --libs $gtkpackage)
2790 gtk_version=$($pkg_config --modversion $gtkpackage)
2791 if $pkg_config --exists "$gtkx11package >= $gtkversion"; then
2793 gtk_cflags="$gtk_cflags $x11_cflags"
2794 gtk_libs="$gtk_libs $x11_libs"
2797 elif test "$gtk" = "yes"; then
2798 feature_not_found "gtk" "Install gtk3-devel"
2805 ##########################################
2808 if test "$gnutls" != "no"; then
2810 if $pkg_config --exists "gnutls >= 3.1.18"; then
2811 gnutls_cflags=$($pkg_config --cflags gnutls)
2812 gnutls_libs=$($pkg_config --libs gnutls)
2813 # Packaging for the static libraries is not always correct.
2814 # At least ubuntu 18.04 ships only shared libraries.
2816 if compile_prog "" "$gnutls_libs" ; then
2817 LIBS="$gnutls_libs $LIBS"
2818 QEMU_CFLAGS="$QEMU_CFLAGS $gnutls_cflags"
2822 if test "$pass" = "no" && test "$gnutls" = "yes"; then
2823 feature_not_found "gnutls" "Install gnutls devel >= 3.1.18"
2830 # If user didn't give a --disable/enable-gcrypt flag,
2831 # then mark as disabled if user requested nettle
2833 if test -z "$gcrypt"
2835 if test "$nettle" = "yes"
2841 # If user didn't give a --disable/enable-nettle flag,
2842 # then mark as disabled if user requested gcrypt
2844 if test -z "$nettle"
2846 if test "$gcrypt" = "yes"
2853 if ! has "libgcrypt-config"
2858 if test -n "$cross_prefix"
2860 host=$(libgcrypt-config --host)
2861 if test "$host-" != $cross_prefix
2867 maj=`libgcrypt-config --version | awk -F . '{print $1}'`
2868 min=`libgcrypt-config --version | awk -F . '{print $2}'`
2870 if test $maj != 1 || test $min -lt 5
2879 if test "$nettle" != "no"; then
2881 if $pkg_config --exists "nettle >= 2.7.1"; then
2882 nettle_cflags=$($pkg_config --cflags nettle)
2883 nettle_libs=$($pkg_config --libs nettle)
2884 nettle_version=$($pkg_config --modversion nettle)
2885 # Link test to make sure the given libraries work (e.g for static).
2887 if compile_prog "" "$nettle_libs" ; then
2888 LIBS="$nettle_libs $LIBS"
2889 QEMU_CFLAGS="$QEMU_CFLAGS $nettle_cflags"
2890 if test -z "$gcrypt"; then
2896 if test "$pass" = "no" && test "$nettle" = "yes"; then
2897 feature_not_found "nettle" "Install nettle devel >= 2.7.1"
2903 if test "$gcrypt" != "no"; then
2905 if has_libgcrypt; then
2906 gcrypt_cflags=$(libgcrypt-config --cflags)
2907 gcrypt_libs=$(libgcrypt-config --libs)
2908 # Debian has removed -lgpg-error from libgcrypt-config
2909 # as it "spreads unnecessary dependencies" which in
2910 # turn breaks static builds...
2911 if test "$static" = "yes"
2913 gcrypt_libs="$gcrypt_libs -lgpg-error"
2916 # Link test to make sure the given libraries work (e.g for static).
2918 if compile_prog "" "$gcrypt_libs" ; then
2919 LIBS="$gcrypt_libs $LIBS"
2920 QEMU_CFLAGS="$QEMU_CFLAGS $gcrypt_cflags"
2924 if test "$pass" = "yes"; then
2929 gcry_mac_hd_t handle;
2930 gcry_mac_open(&handle, GCRY_MAC_HMAC_MD5,
2931 GCRY_MAC_FLAG_SECURE, NULL);
2935 if compile_prog "$gcrypt_cflags" "$gcrypt_libs" ; then
2938 elif test "$gcrypt" = "yes"; then
2939 feature_not_found "gcrypt" "Install gcrypt devel >= 1.5.0"
2946 if test "$gcrypt" = "yes" && test "$nettle" = "yes"
2948 error_exit "Only one of gcrypt & nettle can be enabled"
2951 ##########################################
2952 # libtasn1 - only for the TLS creds/session test suite
2957 if $pkg_config --exists "libtasn1"; then
2958 tasn1_cflags=$($pkg_config --cflags libtasn1)
2959 tasn1_libs=$($pkg_config --libs libtasn1)
2965 ##########################################
2968 if test "$auth_pam" != "no"; then
2970 #include <security/pam_appl.h>
2973 const char *service_name = "qemu";
2974 const char *user = "frank";
2975 const struct pam_conv pam_conv = { 0 };
2976 pam_handle_t *pamh = NULL;
2977 pam_start(service_name, user, &pam_conv, &pamh);
2981 if compile_prog "" "-lpam" ; then
2984 if test "$auth_pam" = "yes"; then
2985 feature_not_found "PAM" "Install PAM development package"
2992 ##########################################
2993 # getifaddrs (for tests/test-io-channel-socket )
2996 if ! check_include "ifaddrs.h" ; then
3000 ##########################################
3003 if test "$vte" != "no"; then
3004 vteminversion="0.32.0"
3005 if $pkg_config --exists "vte-2.91"; then
3006 vtepackage="vte-2.91"
3008 vtepackage="vte-2.90"
3010 if $pkg_config --exists "$vtepackage >= $vteminversion"; then
3011 vte_cflags=$($pkg_config --cflags $vtepackage)
3012 vte_libs=$($pkg_config --libs $vtepackage)
3013 vteversion=$($pkg_config --modversion $vtepackage)
3015 elif test "$vte" = "yes"; then
3016 feature_not_found "vte" "Install libvte-2.90/2.91 devel"
3022 ##########################################
3025 # Look for sdl configuration program (pkg-config or sdl2-config). Try
3026 # sdl2-config even without cross prefix, and favour pkg-config over sdl2-config.
3030 if $pkg_config sdl2 --exists; then
3031 sdlconfig="$pkg_config sdl2"
3032 sdlversion=$($sdlconfig --modversion 2>/dev/null)
3033 elif has "$sdl2_config"; then
3034 sdlconfig="$sdl2_config"
3035 sdlversion=$($sdlconfig --version)
3037 if test "$sdl" = "yes" ; then
3038 feature_not_found "sdl" "Install SDL2-devel"
3041 # no need to do the rest
3044 if test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl2-config; then
3045 echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
3050 #undef main /* We don't want SDL to override our main() */
3051 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
3053 sdl_cflags=$($sdlconfig --cflags 2>/dev/null)
3054 sdl_cflags="$sdl_cflags -Wno-undef" # workaround 2.0.8 bug
3055 if test "$static" = "yes" ; then
3056 if $pkg_config sdl2 --exists; then
3057 sdl_libs=$($pkg_config sdl2 --static --libs 2>/dev/null)
3059 sdl_libs=$($sdlconfig --static-libs 2>/dev/null)
3062 sdl_libs=$($sdlconfig --libs 2>/dev/null)
3064 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
3067 # static link with sdl ? (note: sdl.pc's --static --libs is broken)
3068 if test "$sdl" = "yes" && test "$static" = "yes" ; then
3069 if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
3070 sdl_libs="$sdl_libs $(aalib-config --static-libs 2>/dev/null)"
3071 sdl_cflags="$sdl_cflags $(aalib-config --cflags 2>/dev/null)"
3073 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
3079 else # sdl not found
3080 if test "$sdl" = "yes" ; then
3081 feature_not_found "sdl" "Install SDL2 devel"
3084 fi # sdl compile test
3089 if test "$sdl_image" != "no" ; then
3090 if $pkg_config SDL2_image --exists; then
3091 if test "$static" = "yes"; then
3092 sdl_image_libs=$($pkg_config SDL2_image --libs --static 2>/dev/null)
3094 sdl_image_libs=$($pkg_config SDL2_image --libs 2>/dev/null)
3096 sdl_image_cflags=$($pkg_config SDL2_image --cflags 2>/dev/null)
3099 sdl_cflags="$sdl_cflags $sdl_image_cflags"
3100 sdl_libs="$sdl_libs $sdl_image_libs"
3102 if test "$sdl_image" = "yes" ; then
3103 feature_not_found "sdl_image" "Install SDL Image devel"
3111 if test "$sdl" != "no" ; then
3115 if test "$sdl" = "yes" ; then
3118 if test "$sdl_image" = "yes"; then
3119 echo "warning: SDL Image requested, but SDL is not available, disabling"
3124 if test "$sdl" = "yes" ; then
3127 #if defined(SDL_VIDEO_DRIVER_X11)
3128 #include <X11/XKBlib.h>
3130 #error No x11 support
3132 int main(void) { return 0; }
3134 if compile_prog "$sdl_cflags $x11_cflags" "$sdl_libs $x11_libs" ; then
3136 sdl_cflags="$sdl_cflags $x11_cflags"
3137 sdl_libs="$sdl_libs $x11_libs"
3141 ##########################################
3142 # RDMA needs OpenFabrics libraries
3143 if test "$rdma" != "no" ; then
3145 #include <rdma/rdma_cma.h>
3146 int main(void) { return 0; }
3148 rdma_libs="-lrdmacm -libverbs -libumad"
3149 if compile_prog "" "$rdma_libs" ; then
3151 libs_softmmu="$libs_softmmu $rdma_libs"
3153 if test "$rdma" = "yes" ; then
3155 " OpenFabrics librdmacm/libibverbs/libibumad not present." \
3157 " (1) Fast: Install infiniband packages (devel) from your distro." \
3158 " (2) Cleanest: Install libraries from www.openfabrics.org" \
3159 " (3) Also: Install softiwarp if you don't have RDMA hardware"
3165 ##########################################
3168 cat > $TMPC <<EOF &&
3169 #include <sys/mman.h>
3176 addr = mremap(addr, 0, 1, MREMAP_MAYMOVE | MREMAP_FIXED);
3182 if test "$rdma" = "yes" ; then
3185 if compile_prog "" ""; then
3192 if ! compile_prog "" ""; then
3193 error_exit "PVRDMA is not supported since mremap is not implemented"
3202 if test "$pvrdma" = "yes" ; then
3203 error_exit "PVRDMA requires rdma suppport"
3208 ##########################################
3209 # VNC SASL detection
3210 if test "$vnc" = "yes" && test "$vnc_sasl" != "no" ; then
3212 #include <sasl/sasl.h>
3214 int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
3216 # Assuming Cyrus-SASL installed in /usr prefix
3218 vnc_sasl_libs="-lsasl2"
3219 if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
3221 libs_softmmu="$vnc_sasl_libs $libs_softmmu"
3222 QEMU_CFLAGS="$QEMU_CFLAGS $vnc_sasl_cflags"
3224 if test "$vnc_sasl" = "yes" ; then
3225 feature_not_found "vnc-sasl" "Install Cyrus SASL devel"
3231 ##########################################
3232 # VNC JPEG detection
3233 if test "$vnc" = "yes" && test "$vnc_jpeg" != "no" ; then
3236 #include <jpeglib.h>
3237 int main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
3240 vnc_jpeg_libs="-ljpeg"
3241 if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
3243 libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
3244 QEMU_CFLAGS="$QEMU_CFLAGS $vnc_jpeg_cflags"
3246 if test "$vnc_jpeg" = "yes" ; then
3247 feature_not_found "vnc-jpeg" "Install libjpeg-turbo devel"
3253 ##########################################
3255 if test "$vnc" = "yes" && test "$vnc_png" != "no" ; then
3257 //#include <stdio.h>
3261 png_structp png_ptr;
3262 png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
3263 return png_ptr != 0;
3266 if $pkg_config libpng --exists; then
3267 vnc_png_cflags=$($pkg_config libpng --cflags)
3268 vnc_png_libs=$($pkg_config libpng --libs)
3271 vnc_png_libs="-lpng"
3273 if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
3275 libs_softmmu="$vnc_png_libs $libs_softmmu"
3276 QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags"
3278 if test "$vnc_png" = "yes" ; then
3279 feature_not_found "vnc-png" "Install libpng devel"
3285 ##########################################
3287 if test "$xkbcommon" != "no" ; then
3288 if $pkg_config xkbcommon --exists; then
3289 xkbcommon_cflags=$($pkg_config xkbcommon --cflags)
3290 xkbcommon_libs=$($pkg_config xkbcommon --libs)
3293 if test "$xkbcommon" = "yes" ; then
3294 feature_not_found "xkbcommon" "Install libxkbcommon-devel"
3301 ##########################################
3302 # xfsctl() probe, used for file-posix.c
3303 if test "$xfs" != "no" ; then
3305 #include <stddef.h> /* NULL */
3306 #include <xfs/xfs.h>
3309 xfsctl(NULL, 0, 0, NULL);
3313 if compile_prog "" "" ; then
3316 if test "$xfs" = "yes" ; then
3317 feature_not_found "xfs" "Instal xfsprogs/xfslibs devel"
3323 ##########################################
3324 # vde libraries probe
3325 if test "$vde" != "no" ; then
3326 vde_libs="-lvdeplug"
3328 #include <libvdeplug.h>
3331 struct vde_open_args a = {0, 0, 0};
3337 if compile_prog "" "$vde_libs" ; then
3340 if test "$vde" = "yes" ; then
3341 feature_not_found "vde" "Install vde (Virtual Distributed Ethernet) devel"
3347 ##########################################
3348 # netmap support probe
3349 # Apart from looking for netmap headers, we make sure that the host API version
3350 # supports the netmap backend (>=11). The upper bound (15) is meant to simulate
3351 # a minor/major version number. Minor new features will be marked with values up
3352 # to 15, and if something happens that requires a change to the backend we will
3353 # move above 15, submit the backend fixes and modify this two bounds.
3354 if test "$netmap" != "no" ; then
3356 #include <inttypes.h>
3358 #include <net/netmap.h>
3359 #include <net/netmap_user.h>
3360 #if (NETMAP_API < 11) || (NETMAP_API > 15)
3363 int main(void) { return 0; }
3365 if compile_prog "" "" ; then
3368 if test "$netmap" = "yes" ; then
3369 feature_not_found "netmap"
3375 ##########################################
3376 # libcap-ng library probe
3377 if test "$cap_ng" != "no" ; then
3383 capng_capability_to_name(CAPNG_EFFECTIVE);
3387 if compile_prog "" "$cap_libs" ; then
3389 libs_tools="$cap_libs $libs_tools"
3391 if test "$cap_ng" = "yes" ; then
3392 feature_not_found "cap_ng" "Install libcap-ng devel"
3398 ##########################################
3399 # Sound support libraries probe
3401 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/,/ /g')
3402 for drv in $audio_drv_list; do
3405 if $pkg_config alsa --exists; then
3406 alsa_libs=$($pkg_config alsa --libs)
3407 if test "$drv" = "try-alsa"; then
3408 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-alsa/alsa/')
3411 if test "$drv" = "try-alsa"; then
3412 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-alsa//')
3414 error_exit "$drv check failed" \
3415 "Make sure to have the $drv libs and headers installed."
3421 if $pkg_config libpulse --exists; then
3422 pulse_libs=$($pkg_config libpulse --libs)
3424 if test "$drv" = "try-pa"; then
3425 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-pa/pa/')
3428 if test "$drv" = "try-pa"; then
3429 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-pa//')
3431 error_exit "$drv check failed" \
3432 "Make sure to have the $drv libs and headers installed."
3438 if test "$sdl" = "no"; then
3439 error_exit "sdl not found or disabled, can not use sdl audio driver"
3444 if test "$sdl" = "no"; then
3445 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-sdl//')
3447 audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-sdl/sdl/')
3452 coreaudio_libs="-framework CoreAudio"
3456 dsound_libs="-lole32 -ldxguid"
3465 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
3466 error_exit "Unknown driver '$drv' selected" \
3467 "Possible drivers are: $audio_possible_drivers"
3473 ##########################################
3476 if test "$brlapi" != "no" ; then
3477 brlapi_libs="-lbrlapi"
3481 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
3483 if compile_prog "" "$brlapi_libs" ; then
3486 if test "$brlapi" = "yes" ; then
3487 feature_not_found "brlapi" "Install brlapi devel"
3493 ##########################################
3495 if test "$iconv" != "no" ; then
3499 iconv_t conv = iconv_open("WCHAR_T", "UCS-2");
3500 return conv != (iconv_t) -1;
3503 iconv_prefix_list="/usr/local:/usr"
3504 iconv_lib_list=":-liconv"
3506 for iconv_prefix in $iconv_prefix_list; do
3508 iconv_cflags="-I$iconv_prefix/include"
3509 iconv_ldflags="-L$iconv_prefix/lib"
3510 for iconv_link in $iconv_lib_list; do
3512 iconv_lib="$iconv_ldflags $iconv_link"
3513 echo "looking at iconv in '$iconv_cflags' '$iconv_lib'" >> config.log
3514 if compile_prog "$iconv_cflags" "$iconv_lib" ; then
3519 if test "$iconv_found" = yes ; then
3523 if test "$iconv_found" = "yes" ; then
3526 if test "$iconv" = "yes" ; then
3527 feature_not_found "iconv" "Install iconv devel"
3533 ##########################################
3535 if test "$iconv" = "no" ; then
3536 # curses will need iconv
3539 if test "$curses" != "no" ; then
3540 if test "$mingw32" = "yes" ; then
3541 curses_inc_list="$($pkg_config --cflags ncurses 2>/dev/null):"
3542 curses_lib_list="$($pkg_config --libs ncurses 2>/dev/null):-lpdcurses"
3544 curses_inc_list="$($pkg_config --cflags ncursesw 2>/dev/null):-I/usr/include/ncursesw:"
3545 curses_lib_list="$($pkg_config --libs ncursesw 2>/dev/null):-lncursesw:-lcursesw"
3552 #include <langinfo.h>
3554 const char *codeset;
3556 setlocale(LC_ALL, "");
3558 addwstr(L"wide chars\n");
3560 add_wch(WACS_DEGREE);
3561 codeset = nl_langinfo(CODESET);
3562 return codeset != 0;
3566 for curses_inc in $curses_inc_list; do
3567 # Make sure we get the wide character prototypes
3568 curses_inc="-DNCURSES_WIDECHAR $curses_inc"
3570 for curses_lib in $curses_lib_list; do
3572 if compile_prog "$curses_inc" "$curses_lib" ; then
3577 if test "$curses_found" = yes ; then
3582 if test "$curses_found" = "yes" ; then
3585 if test "$curses" = "yes" ; then
3586 feature_not_found "curses" "Install ncurses devel"
3592 ##########################################
3594 if test "$curl" != "no" ; then
3595 if $pkg_config libcurl --exists; then
3596 curlconfig="$pkg_config libcurl"
3598 curlconfig=curl-config
3601 #include <curl/curl.h>
3602 int main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; }
3604 curl_cflags=$($curlconfig --cflags 2>/dev/null)
3605 curl_libs=$($curlconfig --libs 2>/dev/null)
3606 if compile_prog "$curl_cflags" "$curl_libs" ; then
3609 if test "$curl" = "yes" ; then
3610 feature_not_found "curl" "Install libcurl devel"
3616 ##########################################
3617 # bluez support probe
3618 if test "$bluez" != "no" ; then
3620 #include <bluetooth/bluetooth.h>
3621 int main(void) { return bt_error(0); }
3623 bluez_cflags=$($pkg_config --cflags bluez 2>/dev/null)
3624 bluez_libs=$($pkg_config --libs bluez 2>/dev/null)
3625 if compile_prog "$bluez_cflags" "$bluez_libs" ; then
3627 libs_softmmu="$bluez_libs $libs_softmmu"
3629 if test "$bluez" = "yes" ; then
3630 feature_not_found "bluez" "Install bluez-libs/libbluetooth devel"
3636 ##########################################
3637 # glib support probe
3640 glib_modules=gthread-2.0
3641 if test "$modules" = yes; then
3642 glib_modules="$glib_modules gmodule-export-2.0"
3645 # This workaround is required due to a bug in pkg-config file for glib as it
3646 # doesn't define GLIB_STATIC_COMPILATION for pkg-config --static
3648 if test "$static" = yes && test "$mingw32" = yes; then
3649 QEMU_CFLAGS="-DGLIB_STATIC_COMPILATION $QEMU_CFLAGS"
3652 for i in $glib_modules; do
3653 if $pkg_config --atleast-version=$glib_req_ver $i; then
3654 glib_cflags=$($pkg_config --cflags $i)
3655 glib_libs=$($pkg_config --libs $i)
3656 QEMU_CFLAGS="$glib_cflags $QEMU_CFLAGS"
3657 LIBS="$glib_libs $LIBS"
3658 libs_qga="$glib_libs $libs_qga"
3660 error_exit "glib-$glib_req_ver $i is required to compile QEMU"
3664 if $pkg_config --atleast-version=$glib_req_ver gio-2.0; then
3666 gio_cflags=$($pkg_config --cflags gio-2.0)
3667 gio_libs=$($pkg_config --libs gio-2.0)
3672 # Sanity check that the current size_t matches the
3673 # size that glib thinks it should be. This catches
3674 # problems on multi-arch where people try to build
3675 # 32-bit QEMU while pointing at 64-bit glib headers
3680 #define QEMU_BUILD_BUG_ON(x) \
3681 typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused));
3684 QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T);
3689 if ! compile_prog "$CFLAGS" "$LIBS" ; then
3690 error_exit "sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T."\
3691 "You probably need to set PKG_CONFIG_LIBDIR"\
3692 "to point to the right pkg-config files for your"\
3696 # Silence clang 3.5.0 warnings about glib attribute __alloc_size__ usage
3699 int main(void) { return 0; }
3701 if ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then
3702 if cc_has_warning_flag "-Wno-unknown-attributes"; then
3703 glib_cflags="-Wno-unknown-attributes $glib_cflags"
3704 CFLAGS="-Wno-unknown-attributes $CFLAGS"
3708 #########################################
3711 if test "$zlib" != "no" ; then
3712 if $pkg_config --exists zlib; then
3713 zlib_cflags=$($pkg_config --cflags zlib)
3714 zlib_libs=$($pkg_config --libs zlib)
3715 QEMU_CFLAGS="$zlib_cflags $QEMU_CFLAGS"
3716 LIBS="$zlib_libs $LIBS"
3720 int main(void) { zlibVersion(); return 0; }
3722 if compile_prog "" "-lz" ; then
3725 error_exit "zlib check failed" \
3726 "Make sure to have the zlib libs and headers installed."
3731 ##########################################
3732 # SHA command probe for modules
3733 if test "$modules" = yes; then
3734 shacmd_probe="sha1sum sha1 shasum"
3735 for c in $shacmd_probe; do
3741 if test "$shacmd" = ""; then
3742 error_exit "one of the checksum commands is required to enable modules: $shacmd_probe"
3746 ##########################################
3747 # pixman support probe
3749 if test "$want_tools" = "no" && test "$softmmu" = "no"; then
3752 elif $pkg_config --atleast-version=0.21.8 pixman-1 > /dev/null 2>&1; then
3753 pixman_cflags=$($pkg_config --cflags pixman-1)
3754 pixman_libs=$($pkg_config --libs pixman-1)
3756 error_exit "pixman >= 0.21.8 not present." \
3757 "Please install the pixman devel package."
3760 ##########################################
3761 # libmpathpersist probe
3763 if test "$mpath" != "no" ; then
3764 # probe for the new API
3766 #include <libudev.h>
3767 #include <mpath_persist.h>
3768 unsigned mpath_mx_alloc_len = 1024;
3770 static struct config *multipath_conf;
3771 extern struct udev *udev;
3772 extern struct config *get_multipath_config(void);
3773 extern void put_multipath_config(struct config *conf);
3775 struct config *get_multipath_config(void) { return multipath_conf; }
3776 void put_multipath_config(struct config *conf) { }
3780 multipath_conf = mpath_lib_init();
3784 if compile_prog "" "-ludev -lmultipath -lmpathpersist" ; then
3786 mpathpersist_new_api=yes
3788 # probe for the old API
3790 #include <libudev.h>
3791 #include <mpath_persist.h>
3792 unsigned mpath_mx_alloc_len = 1024;
3795 struct udev *udev = udev_new();
3796 mpath_lib_init(udev);
3800 if compile_prog "" "-ludev -lmultipath -lmpathpersist" ; then
3802 mpathpersist_new_api=no
3811 ##########################################
3814 if test "$cap" != "no" ; then
3817 #include <sys/capability.h>
3818 int main(void) { cap_t caps; caps = cap_init(); return caps != NULL; }
3820 if compile_prog "" "-lcap" ; then
3827 ##########################################
3829 PTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2"
3833 #include <pthread.h>
3834 static void *f(void *p) { return NULL; }
3837 pthread_create(&thread, 0, f, 0);
3841 if compile_prog "" "" ; then
3844 for pthread_lib in $PTHREADLIBS_LIST; do
3845 if compile_prog "" "$pthread_lib" ; then
3848 for lib_entry in $LIBS; do
3849 if test "$lib_entry" = "$pthread_lib"; then
3854 if test "$found" = "no"; then
3855 LIBS="$pthread_lib $LIBS"
3856 libs_qga="$pthread_lib $libs_qga"
3858 PTHREAD_LIB="$pthread_lib"
3864 if test "$mingw32" != yes && test "$pthread" = no; then
3865 error_exit "pthread check failed" \
3866 "Make sure to have the pthread libs and headers installed."
3869 # check for pthread_setname_np with thread id
3870 pthread_setname_np_w_tid=no
3872 #include <pthread.h>
3874 static void *f(void *p) { return NULL; }
3878 pthread_create(&thread, 0, f, 0);
3879 pthread_setname_np(thread, "QEMU");
3883 if compile_prog "" "$pthread_lib" ; then
3884 pthread_setname_np_w_tid=yes
3887 # check for pthread_setname_np without thread id
3888 pthread_setname_np_wo_tid=no
3890 #include <pthread.h>
3892 static void *f(void *p) { pthread_setname_np("QEMU"); }
3896 pthread_create(&thread, 0, f, 0);
3900 if compile_prog "" "$pthread_lib" ; then
3901 pthread_setname_np_wo_tid=yes
3904 ##########################################
3906 if test "$rbd" != "no" ; then
3909 #include <rbd/librbd.h>
3912 rados_create(&cluster, NULL);
3916 rbd_libs="-lrbd -lrados"
3917 if compile_prog "" "$rbd_libs" ; then
3920 if test "$rbd" = "yes" ; then
3921 feature_not_found "rados block device" "Install librbd/ceph devel"
3927 ##########################################
3929 if test "$libssh" != "no" ; then
3930 if $pkg_config --exists libssh; then
3931 libssh_cflags=$($pkg_config libssh --cflags)
3932 libssh_libs=$($pkg_config libssh --libs)
3935 if test "$libssh" = "yes" ; then
3936 error_exit "libssh required for --enable-libssh"
3942 ##########################################
3943 # Check for libssh 0.8
3944 # This is done like this instead of using the LIBSSH_VERSION_* and
3945 # SSH_VERSION_* macros because some distributions in the past shipped
3946 # snapshots of the future 0.8 from Git, and those snapshots did not
3947 # have updated version numbers (still referring to 0.7.0).
3949 if test "$libssh" = "yes"; then
3951 #include <libssh/libssh.h>
3952 int main(void) { return ssh_get_server_publickey(NULL, NULL); }
3954 if compile_prog "$libssh_cflags" "$libssh_libs"; then
3955 libssh_cflags="-DHAVE_LIBSSH_0_8 $libssh_cflags"
3959 ##########################################
3962 if test "$linux_aio" != "no" ; then
3965 #include <sys/eventfd.h>
3967 int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
3969 if compile_prog "" "-laio" ; then
3972 if test "$linux_aio" = "yes" ; then
3973 feature_not_found "linux AIO" "Install libaio devel"
3979 ##########################################
3980 # TPM emulation is only on POSIX
3982 if test "$tpm" = ""; then
3983 if test "$mingw32" = "yes"; then
3988 elif test "$tpm" = "yes"; then
3989 if test "$mingw32" = "yes" ; then
3990 error_exit "TPM emulation only available on POSIX systems"
3994 ##########################################
3997 if test "$attr" != "no" ; then
4000 #include <sys/types.h>
4001 #ifdef CONFIG_LIBATTR
4002 #include <attr/xattr.h>
4004 #include <sys/xattr.h>
4006 int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
4008 if compile_prog "" "" ; then
4010 # Older distros have <attr/xattr.h>, and need -lattr:
4011 elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then
4016 if test "$attr" = "yes" ; then
4017 feature_not_found "ATTR" "Install libc6 or libattr devel"
4023 ##########################################
4026 #include <sys/types.h>
4027 #include <sys/uio.h>
4029 int main(void) { return sizeof(struct iovec); }
4032 if compile_prog "" "" ; then
4036 ##########################################
4039 #include <sys/types.h>
4040 #include <sys/uio.h>
4042 int main(void) { return preadv(0, 0, 0, 0); }
4045 if compile_prog "" "" ; then
4049 ##########################################
4051 # fdt support is mandatory for at least some target architectures,
4052 # so insist on it if we're building those system emulators.
4054 for target in $target_list; do
4056 aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu|mips64el-softmmu|riscv*-softmmu)
4062 if test "$fdt_required" = "yes"; then
4063 if test "$fdt" = "no"; then
4064 error_exit "fdt disabled but some requested targets require it." \
4065 "You can turn off fdt only if you also disable all the system emulation" \
4066 "targets which need it (by specifying a cut down --target-list)."
4071 if test "$fdt" != "no" ; then
4073 # explicitly check for libfdt_env.h as it is missing in some stable installs
4074 # and test for required functions to make sure we are on a version >= 1.4.2
4077 #include <libfdt_env.h>
4078 int main(void) { fdt_check_full(NULL, 0); return 0; }
4080 if compile_prog "" "$fdt_libs" ; then
4081 # system DTC is good - use it
4084 # have GIT checkout, so activate dtc submodule
4085 if test -e "${source_path}/.git" ; then
4086 git_submodules="${git_submodules} dtc"
4088 if test -d "${source_path}/dtc/libfdt" || test -e "${source_path}/.git" ; then
4091 if [ "$pwd_is_source_path" != "y" ] ; then
4092 symlink "$source_path/dtc/Makefile" "dtc/Makefile"
4093 symlink "$source_path/dtc/scripts" "dtc/scripts"
4095 fdt_cflags="-I\$(SRC_PATH)/dtc/libfdt"
4096 fdt_ldflags="-L\$(BUILD_DIR)/dtc/libfdt"
4097 fdt_libs="$fdt_libs"
4098 elif test "$fdt" = "yes" ; then
4099 # Not a git build & no libfdt found, prompt for system install
4100 error_exit "DTC (libfdt) version >= 1.4.2 not present." \
4101 "Please install the DTC (libfdt) devel package"
4103 # don't have and don't want
4110 libs_softmmu="$libs_softmmu $fdt_libs"
4112 ##########################################
4113 # opengl probe (for sdl2, gtk, milkymist-tmu2)
4116 if $pkg_config gbm; then
4117 gbm_cflags="$($pkg_config --cflags gbm)"
4118 gbm_libs="$($pkg_config --libs gbm)"
4122 if test "$opengl" != "no" ; then
4123 opengl_pkgs="epoxy gbm"
4124 if $pkg_config $opengl_pkgs; then
4125 opengl_cflags="$($pkg_config --cflags $opengl_pkgs)"
4126 opengl_libs="$($pkg_config --libs $opengl_pkgs)"
4128 if test "$gtk" = "yes" && $pkg_config --exists "$gtkpackage >= 3.16"; then
4131 QEMU_CFLAGS="$QEMU_CFLAGS $opengl_cflags"
4133 if test "$opengl" = "yes" ; then
4134 feature_not_found "opengl" "Please install opengl (mesa) devel pkgs: $opengl_pkgs"
4142 if test "$opengl" = "yes"; then
4144 #include <epoxy/egl.h>
4145 #ifndef EGL_MESA_image_dma_buf_export
4146 # error mesa/epoxy lacks support for dmabufs (mesa 10.6+)
4148 int main(void) { return 0; }
4150 if compile_prog "" "" ; then
4155 if test "$opengl" = "yes" && test "$have_x11" = "yes"; then
4156 for target in $target_list; do
4158 lm32-softmmu) # milkymist-tmu2 requires X11 and OpenGL
4165 ##########################################
4167 if test "$libxml2" != "no" ; then
4168 if $pkg_config --exists libxml-2.0; then
4170 libxml2_cflags=$($pkg_config --cflags libxml-2.0)
4171 libxml2_libs=$($pkg_config --libs libxml-2.0)
4173 if test "$libxml2" = "yes"; then
4174 feature_not_found "libxml2" "Install libxml2 devel"
4180 ##########################################
4182 if test "$glusterfs" != "no" ; then
4183 if $pkg_config --atleast-version=3 glusterfs-api; then
4185 glusterfs_cflags=$($pkg_config --cflags glusterfs-api)
4186 glusterfs_libs=$($pkg_config --libs glusterfs-api)
4187 if $pkg_config --atleast-version=4 glusterfs-api; then
4188 glusterfs_xlator_opt="yes"
4190 if $pkg_config --atleast-version=5 glusterfs-api; then
4191 glusterfs_discard="yes"
4193 if $pkg_config --atleast-version=6 glusterfs-api; then
4194 glusterfs_fallocate="yes"
4195 glusterfs_zerofill="yes"
4198 #include <glusterfs/api/glfs.h>
4203 /* new glfs_ftruncate() passes two additional args */
4204 return glfs_ftruncate(NULL, 0, NULL, NULL);
4207 if compile_prog "$glusterfs_cflags" "$glusterfs_libs" ; then
4208 glusterfs_ftruncate_has_stat="yes"
4211 #include <glusterfs/api/glfs.h>
4213 /* new glfs_io_cbk() passes two additional glfs_stat structs */
4215 glusterfs_iocb(glfs_fd_t *fd, ssize_t ret, struct glfs_stat *prestat, struct glfs_stat *poststat, void *data)