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 # make source path absolute
15 source_path
=$
(cd "$(dirname -- "$0")"; pwd)
17 if test "$PWD" = "$source_path"
19 echo "Using './build' as the directory for build output"
21 MARKER
=build
/auto-created-by-configure
29 echo "ERROR: ./build dir already exists and was not previously created by configure"
37 cat > GNUmakefile
<<'EOF'
38 # This file is auto-generated by configure to support in-source tree
39 # 'make' command invocation
41 ifeq ($(MAKECMDGOALS),)
47 @echo 'changing dir to build for $(MAKE) "$(MAKECMDGOALS)"...'
48 @$(MAKE) -C build -f Makefile $(MAKECMDGOALS)
49 @if test "$(MAKECMDGOALS)" = "distclean" && \
50 test -e build/auto-created-by-configure ; \
52 rm -rf build GNUmakefile ; \
60 exec $source_path/configure
"$@"
63 # Temporary directory used for files created while
64 # configure runs. Since it is in the build directory
65 # we can safely blow away any previous version of it
66 # (and we need not jump through hoops to try to delete
67 # it when configure exits.)
72 echo "ERROR: failed to create temporary directory"
77 TMPC
="${TMPDIR1}/${TMPB}.c"
78 TMPO
="${TMPDIR1}/${TMPB}.o"
79 TMPCXX
="${TMPDIR1}/${TMPB}.cxx"
80 TMPE
="${TMPDIR1}/${TMPB}.exe"
81 TMPTXT
="${TMPDIR1}/${TMPB}.txt"
85 # Print a helpful header at the top of config.log
86 echo "# QEMU configure log $(date)" >> config.log
87 printf "# Configured with:" >> config.log
88 printf " '%s'" "$0" "$@" >> config.log
90 echo "#" >> config.log
93 printf "%s" "$1" |
sed "s,','\\\\'',g; s,.*,'&',"
99 while test -n "$2"; do
112 # Run the compiler, capturing its output to the log. First argument
113 # is compiler binary to execute.
116 if test -n "$BASH_VERSION"; then eval '
118 funcs: ${FUNCNAME[*]}
119 lines: ${BASH_LINENO[*]}"
121 echo $compiler "$@" >> config.log
122 $compiler "$@" >> config.log
2>&1 ||
return $?
123 # Test passed. If this is an --enable-werror build, rerun
124 # the test with -Werror and bail out if it fails. This
125 # makes warning-generating-errors in configure test code
126 # obvious to developers.
127 if test "$werror" != "yes"; then
130 # Don't bother rerunning the compile if we were already using -Werror
136 echo $compiler -Werror "$@" >> config.log
137 $compiler -Werror "$@" >> config.log
2>&1 && return $?
138 error_exit
"configure test passed without -Werror but failed with -Werror." \
139 "This is probably a bug in the configure script. The failing command" \
140 "will be at the bottom of config.log." \
141 "You can run configure with --disable-werror to bypass this check."
145 do_compiler
"$cc" "$@"
149 do_compiler
"$cxx" "$@"
152 # Append $2 to the variable named $1, with space separation
154 eval $1=\
${$1:+\"\$$1 \"}\
$2
158 # Set QEMU_CXXFLAGS from QEMU_CFLAGS by filtering out those
159 # options which some versions of GCC's C++ compiler complain about
160 # because they only make sense for C programs.
161 QEMU_CXXFLAGS
="$QEMU_CXXFLAGS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS"
162 CONFIGURE_CXXFLAGS
=$
(echo "$CONFIGURE_CFLAGS" |
sed s
/-std=gnu11
/-std=gnu
++11/)
163 for arg
in $QEMU_CFLAGS; do
165 -Wstrict-prototypes|
-Wmissing-prototypes|
-Wnested-externs|\
166 -Wold-style-declaration|
-Wold-style-definition|
-Wredundant-decls)
169 QEMU_CXXFLAGS
=${QEMU_CXXFLAGS:+$QEMU_CXXFLAGS }$arg
177 do_cc
$CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -c -o $TMPO $TMPC
183 do_cc
$CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC \
184 $LDFLAGS $CONFIGURE_LDFLAGS $QEMU_LDFLAGS $local_ldflags
187 # symbolically link $1 to $2. Portable version of "ln -sf".
190 mkdir
-p "$(dirname "$2")"
194 # check whether a command is available to this shell (may be either an
195 # executable or a builtin)
197 type "$1" >/dev
/null
2>&1
201 local_ver1
=$
(expr "$1" : '\([0-9.]*\)' |
tr .
' ')
202 local_ver2
=$
(echo "$2" |
tr .
' ')
206 # 'shift 2' if $2 is set, or 'shift' if $2 is not set
210 # the second argument finished, the first must be greater or equal
211 test $# = 1 && return 0
212 test $local_first -lt $2 && return 1
213 test $local_first -gt $2 && return 0
220 echo "$trace_backends" |
grep "$1" >/dev
/null
224 eval test -z '"${1#'"$2"'}"'
228 $ld --help 2>/dev
/null |
grep ".$1" >/dev
/null
2>&1
231 if printf %s
\\n
"$source_path" "$PWD" |
grep -q "[[:space:]:]";
233 error_exit
"main directory cannot contain spaces nor colons"
239 interp_prefix
="/usr/gnemul/qemu-%M"
244 block_drv_rw_whitelist
=""
245 block_drv_ro_whitelist
=""
246 block_drv_whitelist_tools
="no"
255 gdb_bin
=$
(command -v "gdb-multiarch" ||
command -v "gdb")
257 if test -e "$source_path/.git"
259 git_submodules_action
="update"
261 git_submodules_action
="ignore"
264 git_submodules
="ui/keycodemapdb"
267 # Don't accept a target_list environment variable.
269 unset target_list_exclude
271 # Default value for a variable defining feature "foo".
272 # * foo="no" feature will only be used if --enable-foo arg is given
273 # * foo="" feature will be searched for, and if found, will be used
274 # unless --disable-foo is given
275 # * foo="yes" this value will only be set by --enable-foo flag.
276 # feature will searched for,
277 # if not found, configure exits with error
279 # Always add --enable-foo and --disable-foo command line args.
280 # Distributions want to ensure that several features are compiled in, and it
281 # is impossible without a --enable-foo that exits if a feature is not found.
284 # parse CC options second
286 optarg
=$
(expr "x$opt" : 'x[^=]*=\(.*\)')
288 --without-default-features)
310 vde
="$default_feature"
315 xen
="$default_feature"
316 xen_ctrl_version
="$default_feature"
317 xen_pci_passthrough
="auto"
318 linux_aio
="$default_feature"
319 linux_io_uring
="auto"
322 xfs
="$default_feature"
324 membarrier
="$default_feature"
325 vhost_net
="$default_feature"
326 vhost_crypto
="$default_feature"
327 vhost_scsi
="$default_feature"
328 vhost_vsock
="$default_feature"
330 vhost_user_blk_server
="auto"
331 vhost_user_fs
="$default_feature"
338 rdma
="$default_feature"
339 pvrdma
="$default_feature"
345 fortify_source
="$default_feature"
347 tcg_interpreter
="false"
373 spice
="$default_feature"
374 spice_protocol
="auto"
380 opengl
="$default_feature"
382 avx2_opt
="$default_feature"
389 guest_agent
="$default_feature"
390 guest_agent_with_vss
="no"
391 guest_agent_ntddscsi
="no"
392 guest_agent_msi
="auto"
393 vss_win32_sdk
="$default_feature"
395 want_tools
="$default_feature"
399 coroutine_pool
="$default_feature"
400 debug_stack_usage
="no"
407 tls_priority
="NORMAL"
414 tpm
="$default_feature"
415 libssh
="$default_feature"
416 live_block_migration
=${default_feature:-yes}
417 numa
="$default_feature"
420 replication
=${default_feature:-yes}
421 bochs
=${default_feature:-yes}
422 cloop
=${default_feature:-yes}
423 dmg
=${default_feature:-yes}
424 qcow1
=${default_feature:-yes}
425 vdi
=${default_feature:-yes}
426 vvfat
=${default_feature:-yes}
427 qed
=${default_feature:-yes}
428 parallels
=${default_feature:-yes}
432 default_devices
="true"
433 plugins
="$default_feature"
436 secret_keyring
="$default_feature"
445 slirp_smbd
="$default_feature"
448 gio
="$default_feature"
450 # parse CC options second
452 optarg
=$
(expr "x$opt" : 'x[^=]*=\(.*\)')
454 --cross-prefix=*) cross_prefix
="$optarg"
459 --cxx=*) CXX
="$optarg"
461 --cpu=*) cpu
="$optarg"
463 --extra-cflags=*) QEMU_CFLAGS
="$QEMU_CFLAGS $optarg"
464 QEMU_LDFLAGS
="$QEMU_LDFLAGS $optarg"
466 --extra-cxxflags=*) QEMU_CXXFLAGS
="$QEMU_CXXFLAGS $optarg"
468 --extra-ldflags=*) QEMU_LDFLAGS
="$QEMU_LDFLAGS $optarg"
469 EXTRA_LDFLAGS
="$optarg"
471 --enable-debug-info) debug_info
="yes"
473 --disable-debug-info) debug_info
="no"
475 --cross-cc-*[!a-zA-Z0-9_-
]*=*) error_exit
"Passed bad --cross-cc-FOO option"
477 --cross-cc-cflags-*) cc_arch
=${opt#--cross-cc-flags-}; cc_arch
=${cc_arch%%=*}
478 eval "cross_cc_cflags_${cc_arch}=\$optarg"
479 cross_cc_vars
="$cross_cc_vars cross_cc_cflags_${cc_arch}"
481 --cross-cc-*) cc_arch
=${opt#--cross-cc-}; cc_arch
=${cc_arch%%=*}
482 cc_archs
="$cc_archs $cc_arch"
483 eval "cross_cc_${cc_arch}=\$optarg"
484 cross_cc_vars
="$cross_cc_vars cross_cc_${cc_arch}"
489 # Using uname is really, really broken. Once we have the right set of checks
490 # we can eliminate its usage altogether.
492 # Preferred compiler:
494 # ${cross_prefix}gcc (if cross-prefix specified)
496 if test -z "${CC}${cross_prefix}"; then
499 cc
="${CC-${cross_prefix}gcc}"
502 if test -z "${CXX}${cross_prefix}"; then
505 cxx
="${CXX-${cross_prefix}g++}"
508 ar="${AR-${cross_prefix}ar}"
509 as
="${AS-${cross_prefix}as}"
512 objcopy
="${OBJCOPY-${cross_prefix}objcopy}"
513 ld
="${LD-${cross_prefix}ld}"
514 ranlib
="${RANLIB-${cross_prefix}ranlib}"
515 nm
="${NM-${cross_prefix}nm}"
516 strip
="${STRIP-${cross_prefix}strip}"
517 windres
="${WINDRES-${cross_prefix}windres}"
518 pkg_config_exe
="${PKG_CONFIG-${cross_prefix}pkg-config}"
520 "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@"
522 pkg_config
=query_pkg_config
523 sdl2_config
="${SDL2_CONFIG-${cross_prefix}sdl2-config}"
525 # default flags for all hosts
526 # We use -fwrapv to tell the compiler that we require a C dialect where
527 # left shift of signed integers is well defined and has the expected
528 # 2s-complement style results. (Both clang and gcc agree that it
529 # provides these semantics.)
530 QEMU_CFLAGS
="-fno-strict-aliasing -fno-common -fwrapv $QEMU_CFLAGS"
531 QEMU_CFLAGS
="-Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
532 QEMU_CFLAGS
="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
533 QEMU_CFLAGS
="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
535 # Flags that are needed during configure but later taken care of by Meson
536 CONFIGURE_CFLAGS
="-std=gnu11 -Wall"
543 #error $1 not defined
545 int main(void) { return 0; }
553 int main(void) { return 0; }
560 int main(void) { return 0; }
564 write_c_fuzzer_skeleton
() {
567 #include <sys/types.h>
568 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
569 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { return 0; }
573 if check_define __linux__
; then
575 elif check_define _WIN32
; then
577 elif check_define __OpenBSD__
; then
579 elif check_define __sun__
; then
581 elif check_define __HAIKU__
; then
583 elif check_define __FreeBSD__
; then
585 elif check_define __FreeBSD_kernel__
&& check_define __GLIBC__
; then
586 targetos
='GNU/kFreeBSD'
587 elif check_define __DragonFly__
; then
589 elif check_define __NetBSD__
; then
591 elif check_define __APPLE__
; then
594 # This is a fatal error, but don't report it yet, because we
595 # might be going to just print the --help text, or it might
596 # be the result of a missing compiler.
600 # Some host OSes need non-standard checks for which CPU to use.
601 # Note that these checks are broken for cross-compilation: if you're
602 # cross-compiling to one of these OSes then you'll need to specify
603 # the correct CPU with the --cpu option.
609 # $(uname -m) returns i86pc even on an x86_64 box, so default based on isainfo
610 if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
615 if test ! -z "$cpu" ; then
616 # command line argument
618 elif check_define __i386__
; then
620 elif check_define __x86_64__
; then
621 if check_define __ILP32__
; then
626 elif check_define __sparc__
; then
627 if check_define __arch64__
; then
632 elif check_define _ARCH_PPC
; then
633 if check_define _ARCH_PPC64
; then
634 if check_define _LITTLE_ENDIAN
; then
642 elif check_define __mips__
; then
644 elif check_define __s390__
; then
645 if check_define __s390x__
; then
650 elif check_define __riscv
; then
651 if check_define _LP64
; then
656 elif check_define __arm__
; then
658 elif check_define __aarch64__
; then
665 # Normalise host CPU name and set ARCH.
666 # Note that this case should only have supported host CPUs, not guests.
668 ppc|ppc64|s390x|sparc64|x32|riscv32|riscv64
)
673 i386|i486|i586|i686|i86pc|BePC
)
692 # This will result in either an error or falling back to TCI later
696 if test -z "$ARCH"; then
705 audio_possible_drivers
="dsound sdl"
706 if check_include dsound.h
; then
707 audio_drv_list
="dsound"
717 audio_drv_list
="oss try-sdl"
718 audio_possible_drivers
="oss sdl pa"
723 audio_drv_list
="oss try-sdl"
724 audio_possible_drivers
="oss sdl pa"
725 # needed for kinfo_getvmmap(3) in libutil.h
726 netmap
="" # enable netmap autodetect
731 audio_drv_list
="oss try-sdl"
732 audio_possible_drivers
="oss sdl pa"
737 audio_drv_list
="oss try-sdl"
738 audio_possible_drivers
="oss sdl"
744 audio_drv_list
="try-sdl"
745 audio_possible_drivers
="sdl"
750 audio_drv_list
="try-coreaudio try-sdl"
751 audio_possible_drivers
="coreaudio sdl"
752 # Disable attempts to use ObjectiveC features in os/object.h since they
753 # won't work when we're compiling with gcc as a C compiler.
754 QEMU_CFLAGS
="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS"
759 smbd
="${SMBD-/usr/sfw/sbin/smbd}"
760 if test -f /usr
/include
/sys
/soundcard.h
; then
761 audio_drv_list
="oss try-sdl"
763 audio_possible_drivers
="oss sdl"
764 # needed for CMSG_ macros in sys/socket.h
765 QEMU_CFLAGS
="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
766 # needed for TIOCWIN* defines in termios.h
767 QEMU_CFLAGS
="-D__EXTENSIONS__ $QEMU_CFLAGS"
771 QEMU_CFLAGS
="-DB_USE_POSITIVE_POSIX_ERRORS -D_BSD_SOURCE $QEMU_CFLAGS"
774 audio_drv_list
="try-pa oss"
775 audio_possible_drivers
="oss alsa sdl pa"
778 vhost_user
=${default_feature:-yes}
782 if [ "$bsd" = "yes" ] ; then
783 if [ "$darwin" != "yes" ] ; then
788 : ${make=${MAKE-make}}
790 # We prefer python 3.x. A bare 'python' is traditionally
791 # python 2.x, but some distros have it as python 3.x, so
795 for binary
in "${PYTHON-python3}" python
799 python
=$
(command -v "$binary")
805 # Check for ancillary tools used in testing
807 for binary
in genisoimage mkisofs
811 genisoimage
=$
(command -v "$binary")
816 # Default objcc to clang if available, otherwise use CC
823 if test "$mingw32" = "yes" ; then
826 # MinGW needs -mthreads for TLS and macro _MT.
827 CONFIGURE_CFLAGS
="-mthreads $CONFIGURE_CFLAGS"
831 libs_qga
="-lws2_32 -lwinmm -lpowrprof -lwtsapi32 -lwininet -liphlpapi -lnetapi32 $libs_qga"
837 optarg
=$
(expr "x$opt" : 'x[^=]*=\(.*\)')
839 --help|
-h) show_help
=yes
841 --version|
-V) exec cat $source_path/VERSION
843 --prefix=*) prefix
="$optarg"
845 --interp-prefix=*) interp_prefix
="$optarg"
851 --host-cc=*) host_cc
="$optarg"
855 --iasl=*) iasl
="$optarg"
857 --objcc=*) objcc
="$optarg"
859 --make=*) make="$optarg"
863 --python=*) python
="$optarg" ; explicit_python
=yes
865 --sphinx-build=*) sphinx_build
="$optarg"
867 --skip-meson) skip_meson
=yes
869 --meson=*) meson
="$optarg"
871 --ninja=*) ninja
="$optarg"
873 --smbd=*) smbd
="$optarg"
883 --disable-debug-info)
893 --disable-module-upgrades) module_upgrades
="no"
895 --enable-module-upgrades) module_upgrades
="yes"
899 --target-list=*) target_list
="$optarg"
900 if test "$target_list_exclude"; then
901 error_exit
"Can't mix --target-list with --target-list-exclude"
904 --target-list-exclude=*) target_list_exclude
="$optarg"
905 if test "$target_list"; then
906 error_exit
"Can't mix --target-list-exclude with --target-list"
909 --enable-trace-backends=*) trace_backends
="$optarg"
911 # XXX: backwards compatibility
912 --enable-trace-backend=*) trace_backends
="$optarg"
914 --with-trace-file=*) trace_file
="$optarg"
916 --with-default-devices) default_devices
="true"
918 --without-default-devices) default_devices
="false"
920 --with-devices-*[!a-zA-Z0-9_-
]*=*) error_exit
"Passed bad --with-devices-FOO option"
922 --with-devices-*) device_arch
=${opt#--with-devices-};
923 device_arch
=${device_arch%%=*}
924 cf
=$source_path/configs
/devices
/$device_arch-softmmu/$optarg.mak
925 if test -f "$cf"; then
926 device_archs
="$device_archs $device_arch"
927 eval "devices_${device_arch}=\$optarg"
929 error_exit
"File $cf does not exist"
932 --without-default-features) # processed above
934 --enable-gprof) gprof
="yes"
936 --enable-gcov) gcov
="yes"
940 QEMU_PKG_CONFIG_FLAGS
="--static $QEMU_PKG_CONFIG_FLAGS"
942 --mandir=*) mandir
="$optarg"
944 --bindir=*) bindir
="$optarg"
946 --libdir=*) libdir
="$optarg"
948 --libexecdir=*) libexecdir
="$optarg"
950 --includedir=*) includedir
="$optarg"
952 --datadir=*) datadir
="$optarg"
954 --with-suffix=*) qemu_suffix
="$optarg"
956 --docdir=*) docdir
="$optarg"
958 --localedir=*) localedir
="$optarg"
960 --sysconfdir=*) sysconfdir
="$optarg"
962 --localstatedir=*) local_statedir
="$optarg"
964 --firmwarepath=*) firmwarepath
="$optarg"
967 --disable-dependency-tracking|\
968 --sbindir=*|
--sharedstatedir=*|\
969 --oldincludedir=*|
--datarootdir=*|
--infodir=*|\
970 --htmldir=*|
--dvidir=*|
--pdfdir=*|
--psdir=*)
971 # These switches are silently ignored, for compatibility with
972 # autoconf-generated configure scripts. This allows QEMU's
973 # configure to be used by RPM and similar macros that set
974 # lots of directory switches by default.
976 --disable-sdl) sdl
="disabled"
978 --enable-sdl) sdl
="enabled"
980 --disable-sdl-image) sdl_image
="disabled"
982 --enable-sdl-image) sdl_image
="enabled"
984 --disable-qom-cast-debug) qom_cast_debug
="no"
986 --enable-qom-cast-debug) qom_cast_debug
="yes"
988 --disable-virtfs) virtfs
="disabled"
990 --enable-virtfs) virtfs
="enabled"
992 --disable-libudev) libudev
="disabled"
994 --enable-libudev) libudev
="enabled"
996 --disable-virtiofsd) virtiofsd
="disabled"
998 --enable-virtiofsd) virtiofsd
="enabled"
1000 --disable-mpath) mpath
="disabled"
1002 --enable-mpath) mpath
="enabled"
1004 --disable-vnc) vnc
="disabled"
1006 --enable-vnc) vnc
="enabled"
1008 --disable-gettext) gettext="disabled"
1010 --enable-gettext) gettext="enabled"
1012 --oss-lib=*) oss_lib
="$optarg"
1014 --audio-drv-list=*) audio_drv_list
="$optarg"
1016 --block-drv-rw-whitelist=*|
--block-drv-whitelist=*) block_drv_rw_whitelist
=$
(echo "$optarg" |
sed -e 's/,/ /g')
1018 --block-drv-ro-whitelist=*) block_drv_ro_whitelist
=$
(echo "$optarg" |
sed -e 's/,/ /g')
1020 --enable-block-drv-whitelist-in-tools) block_drv_whitelist_tools
="yes"
1022 --disable-block-drv-whitelist-in-tools) block_drv_whitelist_tools
="no"
1024 --enable-debug-tcg) debug_tcg
="yes"
1026 --disable-debug-tcg) debug_tcg
="no"
1029 # Enable debugging options that aren't excessively noisy
1036 --enable-sanitizers) sanitizers
="yes"
1038 --disable-sanitizers) sanitizers
="no"
1040 --enable-tsan) tsan
="yes"
1042 --disable-tsan) tsan
="no"
1044 --enable-sparse) sparse
="enabled"
1046 --disable-sparse) sparse
="disabled"
1048 --disable-strip) strip_opt
="no"
1050 --disable-vnc-sasl) vnc_sasl
="disabled"
1052 --enable-vnc-sasl) vnc_sasl
="enabled"
1054 --disable-vnc-jpeg) vnc_jpeg
="disabled"
1056 --enable-vnc-jpeg) vnc_jpeg
="enabled"
1058 --disable-vnc-png) vnc_png
="disabled"
1060 --enable-vnc-png) vnc_png
="enabled"
1062 --disable-slirp) slirp
="disabled"
1064 --enable-slirp) slirp
="enabled"
1066 --enable-slirp=git
) slirp
="internal"
1068 --enable-slirp=system
) slirp
="system"
1070 --disable-vde) vde
="no"
1072 --enable-vde) vde
="yes"
1074 --disable-netmap) netmap
="no"
1076 --enable-netmap) netmap
="yes"
1078 --disable-xen) xen
="disabled"
1080 --enable-xen) xen
="enabled"
1082 --disable-xen-pci-passthrough) xen_pci_passthrough
="disabled"
1084 --enable-xen-pci-passthrough) xen_pci_passthrough
="enabled"
1086 --disable-brlapi) brlapi
="disabled"
1088 --enable-brlapi) brlapi
="enabled"
1090 --disable-kvm) kvm
="disabled"
1092 --enable-kvm) kvm
="enabled"
1094 --disable-hax) hax
="disabled"
1096 --enable-hax) hax
="enabled"
1098 --disable-hvf) hvf
="disabled"
1100 --enable-hvf) hvf
="enabled"
1102 --disable-nvmm) nvmm
="disabled"
1104 --enable-nvmm) nvmm
="enabled"
1106 --disable-whpx) whpx
="disabled"
1108 --enable-whpx) whpx
="enabled"
1110 --disable-tcg-interpreter) tcg_interpreter
="false"
1112 --enable-tcg-interpreter) tcg_interpreter
="true"
1114 --disable-cap-ng) cap_ng
="disabled"
1116 --enable-cap-ng) cap_ng
="enabled"
1118 --disable-tcg) tcg
="disabled"
1121 --enable-tcg) tcg
="enabled"
1123 --disable-malloc-trim) malloc_trim
="disabled"
1125 --enable-malloc-trim) malloc_trim
="enabled"
1127 --disable-spice) spice
="no"
1130 spice_protocol
="yes"
1133 --disable-spice-protocol)
1137 --enable-spice-protocol) spice_protocol
="yes"
1139 --disable-libiscsi) libiscsi
="disabled"
1141 --enable-libiscsi) libiscsi
="enabled"
1143 --disable-libnfs) libnfs
="disabled"
1145 --enable-libnfs) libnfs
="enabled"
1147 --enable-profiler) profiler
="yes"
1149 --disable-cocoa) cocoa
="disabled"
1151 --enable-cocoa) cocoa
="enabled"
1153 --disable-system) softmmu
="no"
1155 --enable-system) softmmu
="yes"
1162 --disable-linux-user) linux_user
="no"
1164 --enable-linux-user) linux_user
="yes"
1166 --disable-bsd-user) bsd_user
="no"
1168 --enable-bsd-user) bsd_user
="yes"
1170 --enable-pie) pie
="yes"
1172 --disable-pie) pie
="no"
1174 --enable-werror) werror
="yes"
1176 --disable-werror) werror
="no"
1178 --enable-lto) lto
="true"
1180 --disable-lto) lto
="false"
1182 --enable-stack-protector) stack_protector
="yes"
1184 --disable-stack-protector) stack_protector
="no"
1186 --enable-safe-stack) safe_stack
="yes"
1188 --disable-safe-stack) safe_stack
="no"
1194 --disable-cfi) cfi
="false"
1196 --enable-cfi-debug) cfi_debug
="true"
1198 --disable-cfi-debug) cfi_debug
="false"
1200 --disable-curses) curses
="disabled"
1202 --enable-curses) curses
="enabled"
1204 --disable-iconv) iconv="disabled"
1206 --enable-iconv) iconv="enabled"
1208 --disable-curl) curl
="disabled"
1210 --enable-curl) curl
="enabled"
1212 --disable-fdt) fdt
="disabled"
1214 --enable-fdt) fdt
="enabled"
1216 --enable-fdt=git
) fdt
="internal"
1218 --enable-fdt=system
) fdt
="system"
1220 --disable-linux-aio) linux_aio
="no"
1222 --enable-linux-aio) linux_aio
="yes"
1224 --disable-linux-io-uring) linux_io_uring
="disabled"
1226 --enable-linux-io-uring) linux_io_uring
="enabled"
1228 --disable-attr) attr
="disabled"
1230 --enable-attr) attr
="enabled"
1232 --disable-membarrier) membarrier
="no"
1234 --enable-membarrier) membarrier
="yes"
1236 --disable-bpf) bpf
="disabled"
1238 --enable-bpf) bpf
="enabled"
1240 --disable-blobs) blobs
="false"
1242 --with-pkgversion=*) pkgversion
="$optarg"
1244 --with-coroutine=*) coroutine
="$optarg"
1246 --disable-coroutine-pool) coroutine_pool
="no"
1248 --enable-coroutine-pool) coroutine_pool
="yes"
1250 --enable-debug-stack-usage) debug_stack_usage
="yes"
1252 --enable-crypto-afalg) crypto_afalg
="yes"
1254 --disable-crypto-afalg) crypto_afalg
="no"
1256 --disable-docs) docs
="disabled"
1258 --enable-docs) docs
="enabled"
1260 --disable-vhost-net) vhost_net
="no"
1262 --enable-vhost-net) vhost_net
="yes"
1264 --disable-vhost-crypto) vhost_crypto
="no"
1266 --enable-vhost-crypto) vhost_crypto
="yes"
1268 --disable-vhost-scsi) vhost_scsi
="no"
1270 --enable-vhost-scsi) vhost_scsi
="yes"
1272 --disable-vhost-vsock) vhost_vsock
="no"
1274 --enable-vhost-vsock) vhost_vsock
="yes"
1276 --disable-vhost-user-blk-server) vhost_user_blk_server
="disabled"
1278 --enable-vhost-user-blk-server) vhost_user_blk_server
="enabled"
1280 --disable-vhost-user-fs) vhost_user_fs
="no"
1282 --enable-vhost-user-fs) vhost_user_fs
="yes"
1284 --disable-opengl) opengl
="no"
1286 --enable-opengl) opengl
="yes"
1288 --disable-rbd) rbd
="disabled"
1290 --enable-rbd) rbd
="enabled"
1292 --disable-xfsctl) xfs
="no"
1294 --enable-xfsctl) xfs
="yes"
1296 --disable-smartcard) smartcard
="disabled"
1298 --enable-smartcard) smartcard
="enabled"
1300 --disable-u2f) u2f
="disabled"
1302 --enable-u2f) u2f
="enabled"
1304 --disable-libusb) libusb
="disabled"
1306 --enable-libusb) libusb
="enabled"
1308 --disable-usb-redir) usb_redir
="disabled"
1310 --enable-usb-redir) usb_redir
="enabled"
1312 --disable-zlib-test)
1314 --disable-lzo) lzo
="disabled"
1316 --enable-lzo) lzo
="enabled"
1318 --disable-snappy) snappy
="disabled"
1320 --enable-snappy) snappy
="enabled"
1322 --disable-bzip2) bzip2="disabled"
1324 --enable-bzip2) bzip2="enabled"
1326 --enable-lzfse) lzfse
="enabled"
1328 --disable-lzfse) lzfse
="disabled"
1330 --disable-zstd) zstd
="disabled"
1332 --enable-zstd) zstd
="enabled"
1334 --enable-guest-agent) guest_agent
="yes"
1336 --disable-guest-agent) guest_agent
="no"
1338 --enable-guest-agent-msi) guest_agent_msi
="enabled"
1340 --disable-guest-agent-msi) guest_agent_msi
="disabled"
1342 --with-vss-sdk) vss_win32_sdk
=""
1344 --with-vss-sdk=*) vss_win32_sdk
="$optarg"
1346 --without-vss-sdk) vss_win32_sdk
="no"
1348 --with-win-sdk) win_sdk
=""
1350 --with-win-sdk=*) win_sdk
="$optarg"
1352 --without-win-sdk) win_sdk
="no"
1354 --enable-tools) want_tools
="yes"
1356 --disable-tools) want_tools
="no"
1358 --enable-seccomp) seccomp
="enabled"
1360 --disable-seccomp) seccomp
="disabled"
1362 --disable-glusterfs) glusterfs
="disabled"
1364 --disable-avx2) avx2_opt
="no"
1366 --enable-avx2) avx2_opt
="yes"
1368 --disable-avx512f) avx512f_opt
="no"
1370 --enable-avx512f) avx512f_opt
="yes"
1373 --enable-glusterfs) glusterfs
="enabled"
1375 --disable-virtio-blk-data-plane|
--enable-virtio-blk-data-plane)
1376 echo "$0: $opt is obsolete, virtio-blk data-plane is always on" >&2
1378 --enable-vhdx|
--disable-vhdx)
1379 echo "$0: $opt is obsolete, VHDX driver is always built" >&2
1381 --enable-uuid|
--disable-uuid)
1382 echo "$0: $opt is obsolete, UUID support is always built" >&2
1384 --disable-gtk) gtk
="disabled"
1386 --enable-gtk) gtk
="enabled"
1388 --tls-priority=*) tls_priority
="$optarg"
1390 --disable-gnutls) gnutls
="disabled"
1392 --enable-gnutls) gnutls
="enabled"
1394 --disable-nettle) nettle
="disabled"
1396 --enable-nettle) nettle
="enabled"
1398 --disable-gcrypt) gcrypt
="disabled"
1400 --enable-gcrypt) gcrypt
="enabled"
1402 --disable-auth-pam) auth_pam
="disabled"
1404 --enable-auth-pam) auth_pam
="enabled"
1406 --enable-rdma) rdma
="yes"
1408 --disable-rdma) rdma
="no"
1410 --enable-pvrdma) pvrdma
="yes"
1412 --disable-pvrdma) pvrdma
="no"
1414 --disable-vte) vte
="disabled"
1416 --enable-vte) vte
="enabled"
1418 --disable-virglrenderer) virglrenderer
="disabled"
1420 --enable-virglrenderer) virglrenderer
="enabled"
1422 --disable-tpm) tpm
="no"
1424 --enable-tpm) tpm
="yes"
1426 --disable-libssh) libssh
="no"
1428 --enable-libssh) libssh
="yes"
1430 --disable-live-block-migration) live_block_migration
="no"
1432 --enable-live-block-migration) live_block_migration
="yes"
1434 --disable-numa) numa
="no"
1436 --enable-numa) numa
="yes"
1438 --disable-libxml2) libxml2
="disabled"
1440 --enable-libxml2) libxml2
="enabled"
1442 --disable-tcmalloc) tcmalloc
="no"
1444 --enable-tcmalloc) tcmalloc
="yes"
1446 --disable-jemalloc) jemalloc
="no"
1448 --enable-jemalloc) jemalloc
="yes"
1450 --disable-replication) replication
="no"
1452 --enable-replication) replication
="yes"
1454 --disable-bochs) bochs
="no"
1456 --enable-bochs) bochs
="yes"
1458 --disable-cloop) cloop
="no"
1460 --enable-cloop) cloop
="yes"
1462 --disable-dmg) dmg
="no"
1464 --enable-dmg) dmg
="yes"
1466 --disable-qcow1) qcow1
="no"
1468 --enable-qcow1) qcow1
="yes"
1470 --disable-vdi) vdi
="no"
1472 --enable-vdi) vdi
="yes"
1474 --disable-vvfat) vvfat
="no"
1476 --enable-vvfat) vvfat
="yes"
1478 --disable-qed) qed
="no"
1480 --enable-qed) qed
="yes"
1482 --disable-parallels) parallels
="no"
1484 --enable-parallels) parallels
="yes"
1486 --disable-vhost-user) vhost_user
="no"
1488 --enable-vhost-user) vhost_user
="yes"
1490 --disable-vhost-vdpa) vhost_vdpa
="no"
1492 --enable-vhost-vdpa) vhost_vdpa
="yes"
1494 --disable-vhost-kernel) vhost_kernel
="no"
1496 --enable-vhost-kernel) vhost_kernel
="yes"
1498 --disable-capstone) capstone
="disabled"
1500 --enable-capstone) capstone
="enabled"
1502 --enable-capstone=git
) capstone
="internal"
1504 --enable-capstone=system
) capstone
="system"
1506 --with-git=*) git
="$optarg"
1508 --enable-git-update)
1509 git_submodules_action
="update"
1510 echo "--enable-git-update deprecated, use --with-git-submodules=update"
1512 --disable-git-update)
1513 git_submodules_action
="validate"
1514 echo "--disable-git-update deprecated, use --with-git-submodules=validate"
1516 --with-git-submodules=*)
1517 git_submodules_action
="$optarg"
1519 --enable-debug-mutex) debug_mutex
=yes
1521 --disable-debug-mutex) debug_mutex
=no
1523 --enable-libpmem) libpmem
="enabled"
1525 --disable-libpmem) libpmem
="disabled"
1527 --enable-xkbcommon) xkbcommon
="enabled"
1529 --disable-xkbcommon) xkbcommon
="disabled"
1531 --enable-plugins) if test "$mingw32" = "yes"; then
1532 error_exit
"TCG plugins not currently supported on Windows platforms"
1537 --disable-plugins) plugins
="no"
1539 --enable-containers) use_containers
="yes"
1541 --disable-containers) use_containers
="no"
1543 --enable-fuzzing) fuzzing
=yes
1545 --disable-fuzzing) fuzzing
=no
1547 --gdb=*) gdb_bin
="$optarg"
1549 --enable-rng-none) rng_none
=yes
1551 --disable-rng-none) rng_none
=no
1553 --enable-keyring) secret_keyring
="yes"
1555 --disable-keyring) secret_keyring
="no"
1557 --enable-libdaxctl) libdaxctl
="enabled"
1559 --disable-libdaxctl) libdaxctl
="disabled"
1561 --enable-fuse) fuse
="enabled"
1563 --disable-fuse) fuse
="disabled"
1565 --enable-fuse-lseek) fuse_lseek
="enabled"
1567 --disable-fuse-lseek) fuse_lseek
="disabled"
1569 --enable-multiprocess) multiprocess
="enabled"
1571 --disable-multiprocess) multiprocess
="disabled"
1573 --enable-gio) gio
=yes
1575 --disable-gio) gio
=no
1577 --enable-slirp-smbd) slirp_smbd
=yes
1579 --disable-slirp-smbd) slirp_smbd
=no
1582 echo "ERROR: unknown option $opt"
1583 echo "Try '$0 --help' for more information"
1589 # test for any invalid configuration combinations
1590 if test "$plugins" = "yes" -a "$tcg" = "disabled"; then
1591 error_exit
"Can't enable plugins on non-TCG builds"
1594 case $git_submodules_action in
1596 if test ! -e "$source_path/.git"; then
1597 echo "ERROR: cannot $git_submodules_action git submodules without .git"
1602 if ! test -f "$source_path/ui/keycodemapdb/README"
1605 echo "ERROR: missing GIT submodules"
1607 if test -e "$source_path/.git"; then
1608 echo "--with-git-submodules=ignore specified but submodules were not"
1609 echo "checked out. Please initialize and update submodules."
1611 echo "This is not a GIT checkout but module content appears to"
1612 echo "be missing. Do not use 'git archive' or GitHub download links"
1613 echo "to acquire QEMU source archives. Non-GIT builds are only"
1614 echo "supported with source archives linked from:"
1616 echo " https://www.qemu.org/download/#source"
1618 echo "Developers working with GIT can use scripts/archive-source.sh"
1619 echo "if they need to create valid source archives."
1626 echo "ERROR: invalid --with-git-submodules= value '$git_submodules_action'"
1631 libdir
="${libdir:-$prefix/lib}"
1632 libexecdir
="${libexecdir:-$prefix/libexec}"
1633 includedir
="${includedir:-$prefix/include}"
1635 if test "$mingw32" = "yes" ; then
1636 bindir
="${bindir:-$prefix}"
1638 bindir
="${bindir:-$prefix/bin}"
1640 mandir
="${mandir:-$prefix/share/man}"
1641 datadir
="${datadir:-$prefix/share}"
1642 docdir
="${docdir:-$prefix/share/doc}"
1643 sysconfdir
="${sysconfdir:-$prefix/etc}"
1644 local_statedir
="${local_statedir:-$prefix/var}"
1645 firmwarepath
="${firmwarepath:-$datadir/qemu-firmware}"
1646 localedir
="${localedir:-$datadir/locale}"
1651 QEMU_LDFLAGS
="-m32 $QEMU_LDFLAGS"
1655 QEMU_LDFLAGS
="-m64 $QEMU_LDFLAGS"
1658 CPU_CFLAGS
="-m32 -mv8plus -mcpu=ultrasparc"
1659 QEMU_LDFLAGS
="-m32 -mv8plus $QEMU_LDFLAGS"
1662 CPU_CFLAGS
="-m64 -mcpu=ultrasparc"
1663 QEMU_LDFLAGS
="-m64 $QEMU_LDFLAGS"
1667 QEMU_LDFLAGS
="-m31 $QEMU_LDFLAGS"
1671 QEMU_LDFLAGS
="-m64 $QEMU_LDFLAGS"
1675 QEMU_LDFLAGS
="-m32 $QEMU_LDFLAGS"
1678 # ??? Only extremely old AMD cpus do not have cmpxchg16b.
1679 # If we truly care, we should simply detect this case at
1680 # runtime and generate the fallback to serial emulation.
1681 CPU_CFLAGS
="-m64 -mcx16"
1682 QEMU_LDFLAGS
="-m64 $QEMU_LDFLAGS"
1686 QEMU_LDFLAGS
="-mx32 $QEMU_LDFLAGS"
1688 # No special flags required for other host CPUs
1691 eval "cross_cc_${cpu}=\$cc"
1692 cross_cc_vars
="$cross_cc_vars cross_cc_${cpu}"
1693 QEMU_CFLAGS
="$CPU_CFLAGS $QEMU_CFLAGS"
1695 # For user-mode emulation the host arch has to be one we explicitly
1696 # support, even if we're using TCI.
1697 if [ "$ARCH" = "unknown" ]; then
1702 default_target_list
=""
1703 deprecated_targets_list
=ppc64abi32-linux-user
1704 deprecated_features
=""
1707 if [ "$softmmu" = "yes" ]; then
1708 mak_wilds
="${mak_wilds} $source_path/configs/targets/*-softmmu.mak"
1710 if [ "$linux_user" = "yes" ]; then
1711 mak_wilds
="${mak_wilds} $source_path/configs/targets/*-linux-user.mak"
1713 if [ "$bsd_user" = "yes" ]; then
1714 mak_wilds
="${mak_wilds} $source_path/configs/targets/*-bsd-user.mak"
1717 # If the user doesn't explicitly specify a deprecated target we will
1719 if test -z "$target_list"; then
1720 if test -z "$target_list_exclude"; then
1721 target_list_exclude
="$deprecated_targets_list"
1723 target_list_exclude
="$target_list_exclude,$deprecated_targets_list"
1727 for config
in $mak_wilds; do
1728 target
="$(basename "$config" .mak)"
1729 if echo "$target_list_exclude" |
grep -vq "$target"; then
1730 default_target_list
="${default_target_list} $target"
1734 # Enumerate public trace backends for --help output
1735 trace_backend_list
=$
(echo $
(grep -le '^PUBLIC = True$' "$source_path"/scripts
/tracetool
/backend
/*.py |
sed -e 's/^.*\/\(.*\)\.py$/\1/'))
1737 if test x
"$show_help" = x
"yes" ; then
1740 Usage: configure [options]
1741 Options: [defaults in brackets after descriptions]
1744 --help print this message
1745 --prefix=PREFIX install in PREFIX [$prefix]
1746 --interp-prefix=PREFIX where to find shared libraries, etc.
1747 use %M for cpu name [$interp_prefix]
1748 --target-list=LIST set target list (default: build all non-deprecated)
1749 $(echo Available targets: $default_target_list | \
1750 fold -s -w 53 | sed -e 's/^/ /')
1751 $(echo Deprecated targets: $deprecated_targets_list | \
1752 fold -s -w 53 | sed -e 's/^/ /')
1753 --target-list-exclude=LIST exclude a set of targets from the default target-list
1755 Advanced options (experts only):
1756 --cross-prefix=PREFIX use PREFIX for compile tools, PREFIX can be blank [$cross_prefix]
1757 --cc=CC use C compiler CC [$cc]
1758 --iasl=IASL use ACPI compiler IASL [$iasl]
1759 --host-cc=CC use C compiler CC [$host_cc] for code run at
1761 --cxx=CXX use C++ compiler CXX [$cxx]
1762 --objcc=OBJCC use Objective-C compiler OBJCC [$objcc]
1763 --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS
1764 --extra-cxxflags=CXXFLAGS append extra C++ compiler flags QEMU_CXXFLAGS
1765 --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS
1766 --cross-cc-ARCH=CC use compiler when building ARCH guest test cases
1767 --cross-cc-flags-ARCH= use compiler flags when building ARCH guest tests
1768 --make=MAKE use specified make [$make]
1769 --python=PYTHON use specified python [$python]
1770 --sphinx-build=SPHINX use specified sphinx-build [$sphinx_build]
1771 --meson=MESON use specified meson [$meson]
1772 --ninja=NINJA use specified ninja [$ninja]
1773 --smbd=SMBD use specified smbd [$smbd]
1774 --with-git=GIT use specified git [$git]
1775 --with-git-submodules=update update git submodules (default if .git dir exists)
1776 --with-git-submodules=validate fail if git submodules are not up to date
1777 --with-git-submodules=ignore do not update or check git submodules (default if no .git dir)
1778 --static enable static build [$static]
1779 --mandir=PATH install man pages in PATH
1780 --datadir=PATH install firmware in PATH/$qemu_suffix
1781 --localedir=PATH install translation in PATH/$qemu_suffix
1782 --docdir=PATH install documentation in PATH/$qemu_suffix
1783 --bindir=PATH install binaries in PATH
1784 --libdir=PATH install libraries in PATH
1785 --libexecdir=PATH install helper binaries in PATH
1786 --sysconfdir=PATH install config in PATH/$qemu_suffix
1787 --localstatedir=PATH install local state in PATH (set at runtime on win32)
1788 --firmwarepath=PATH search PATH for firmware files
1789 --efi-aarch64=PATH PATH of efi file to use for aarch64 VMs.
1790 --with-suffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir/docdir [$qemu_suffix]
1791 --with-pkgversion=VERS use specified string as sub-version of the package
1792 --without-default-features default all --enable-* options to "disabled"
1793 --without-default-devices do not include any device that is not needed to
1794 start the emulator (only use if you are including
1795 desired devices in configs/devices/)
1796 --with-devices-ARCH=NAME override default configs/devices
1797 --enable-debug enable common debug build options
1798 --enable-sanitizers enable default sanitizers
1799 --enable-tsan enable thread sanitizer
1800 --disable-strip disable stripping binaries
1801 --disable-werror disable compilation abort on warning
1802 --disable-stack-protector disable compiler-provided stack protection
1803 --audio-drv-list=LIST set audio drivers list:
1804 Available drivers: $audio_possible_drivers
1805 --block-drv-whitelist=L Same as --block-drv-rw-whitelist=L
1806 --block-drv-rw-whitelist=L
1807 set block driver read-write whitelist
1808 (by default affects only QEMU, not tools like qemu-img)
1809 --block-drv-ro-whitelist=L
1810 set block driver read-only whitelist
1811 (by default affects only QEMU, not tools like qemu-img)
1812 --enable-block-drv-whitelist-in-tools
1813 use block whitelist also in tools instead of only QEMU
1814 --enable-trace-backends=B Set trace backend
1815 Available backends: $trace_backend_list
1816 --with-trace-file=NAME Full PATH,NAME of file to store traces
1818 --disable-slirp disable SLIRP userspace network connectivity
1819 --enable-tcg-interpreter enable TCI (TCG with bytecode interpreter, experimental and slow)
1820 --enable-malloc-trim enable libc malloc_trim() for memory optimization
1821 --oss-lib path to OSS library
1822 --cpu=CPU Build for host CPU [$cpu]
1823 --with-coroutine=BACKEND coroutine backend. Supported options:
1824 ucontext, sigaltstack, windows
1825 --enable-gcov enable test coverage analysis with gcov
1826 --disable-blobs disable installing provided firmware blobs
1827 --with-vss-sdk=SDK-path enable Windows VSS support in QEMU Guest Agent
1828 --with-win-sdk=SDK-path path to Windows Platform SDK (to build VSS .tlb)
1829 --tls-priority default TLS protocol/cipher priority string
1830 --enable-gprof QEMU profiling with gprof
1831 --enable-profiler profiler support
1832 --enable-debug-stack-usage
1833 track the maximum stack usage of stacks created by qemu_alloc_stack
1835 enable plugins via shared library loading
1836 --disable-containers don't use containers for cross-building
1837 --gdb=GDB-path gdb to use for gdbstub tests [$gdb_bin]
1839 Optional features, enabled with --enable-FEATURE and
1840 disabled with --disable-FEATURE, default is enabled if available
1841 (unless built with --without-default-features):
1843 system all system emulation targets
1844 user supported user emulation targets
1845 linux-user all linux usermode emulation targets
1846 bsd-user all BSD usermode emulation targets
1847 docs build documentation
1848 guest-agent build the QEMU Guest Agent
1849 guest-agent-msi build guest agent Windows MSI installation package
1850 pie Position Independent Executables
1851 modules modules support (non-Windows)
1852 module-upgrades try to load modules from alternate paths for upgrades
1853 debug-tcg TCG debugging (default is disabled)
1854 debug-info debugging information
1855 lto Enable Link-Time Optimization.
1856 sparse sparse checker
1857 safe-stack SafeStack Stack Smash Protection. Depends on
1858 clang/llvm >= 3.7 and requires coroutine backend ucontext.
1859 cfi Enable Control-Flow Integrity for indirect function calls.
1860 In case of a cfi violation, QEMU is terminated with SIGILL
1861 Depends on lto and is incompatible with modules
1862 Automatically enables Link-Time Optimization (lto)
1863 cfi-debug In case of a cfi violation, a message containing the line that
1864 triggered the error is written to stderr. After the error,
1865 QEMU is still terminated with SIGILL
1866 gnutls GNUTLS cryptography support
1867 nettle nettle cryptography support
1868 gcrypt libgcrypt cryptography support
1869 auth-pam PAM access control
1871 sdl-image SDL Image support for icons
1873 vte vte support for the gtk UI
1875 iconv font glyph conversion support
1877 vnc-sasl SASL encryption for VNC server
1878 vnc-jpeg JPEG lossy compression for VNC server
1879 vnc-png PNG compression for VNC server
1880 cocoa Cocoa UI (Mac OS X only)
1882 virtiofsd build virtiofs daemon (virtiofsd)
1883 libudev Use libudev to enumerate host devices
1884 mpath Multipath persistent reservation passthrough
1885 xen xen backend driver support
1886 xen-pci-passthrough PCI passthrough support for Xen
1887 brlapi BrlAPI (Braile)
1888 curl curl connectivity
1889 membarrier membarrier system call (for Linux 4.14+ or Windows)
1891 kvm KVM acceleration support
1892 hax HAX acceleration support
1893 hvf Hypervisor.framework acceleration support
1894 nvmm NVMM acceleration support
1895 whpx Windows Hypervisor Platform acceleration support
1896 rdma Enable RDMA-based migration
1897 pvrdma Enable PVRDMA support
1898 vde support for vde network
1899 netmap support for netmap network
1900 linux-aio Linux AIO support
1901 linux-io-uring Linux io_uring support
1902 cap-ng libcap-ng support
1903 attr attr and xattr support
1904 vhost-net vhost-net kernel acceleration support
1905 vhost-vsock virtio sockets device support
1906 vhost-scsi vhost-scsi kernel target support
1907 vhost-crypto vhost-user-crypto backend support
1908 vhost-kernel vhost kernel backend support
1909 vhost-user vhost-user backend support
1910 vhost-user-blk-server vhost-user-blk server support
1911 vhost-vdpa vhost-vdpa kernel backend support
1912 bpf BPF kernel support
1914 spice-protocol spice-protocol
1915 rbd rados block device (rbd)
1916 libiscsi iscsi support
1918 smartcard smartcard support (libcacard)
1919 u2f U2F support (u2f-emu)
1920 libusb libusb (for usb passthrough)
1921 live-block-migration Block migration in the main migration stream
1922 usb-redir usb network redirection support
1923 lzo support of lzo compression library
1924 snappy support of snappy compression library
1925 bzip2 support of bzip2 compression library
1926 (for reading bzip2-compressed dmg images)
1927 lzfse support of lzfse compression library
1928 (for reading lzfse-compressed dmg images)
1929 zstd support for zstd compression library
1930 (for migration compression and qcow2 cluster compression)
1931 seccomp seccomp support
1932 coroutine-pool coroutine freelist (better performance)
1933 glusterfs GlusterFS backend
1935 libssh ssh block device support
1936 numa libnuma support
1937 libxml2 for Parallels image format
1938 tcmalloc tcmalloc support
1939 jemalloc jemalloc support
1940 avx2 AVX2 optimization support
1941 avx512f AVX512F optimization support
1942 replication replication support
1943 opengl opengl support
1944 virglrenderer virgl rendering support
1945 xfsctl xfsctl support
1946 qom-cast-debug cast debugging support
1947 tools build qemu-io, qemu-nbd and qemu-img tools
1948 bochs bochs image format support
1949 cloop cloop image format support
1950 dmg dmg image format support
1951 qcow1 qcow v1 image format support
1952 vdi vdi image format support
1953 vvfat vvfat image format support
1954 qed qed image format support
1955 parallels parallels image format support
1956 crypto-afalg Linux AF_ALG crypto backend driver
1957 capstone capstone disassembler support
1958 debug-mutex mutex debugging support
1959 libpmem libpmem support
1960 xkbcommon xkbcommon support
1961 rng-none dummy RNG, avoid using /dev/(u)random and getrandom()
1962 libdaxctl libdaxctl support
1963 fuse FUSE block device export
1964 fuse-lseek SEEK_HOLE/SEEK_DATA support for FUSE exports
1965 multiprocess Out of process device emulation support
1967 slirp-smbd use smbd (at path --smbd=*) in slirp networking
1969 NOTE: The object files are built at the place where configure is launched
1974 # Remove old dependency files to make sure that they get properly regenerated
1975 rm -f */config-devices.mak.d
1977 if test -z "$python"
1979 error_exit
"Python not found. Use --python=/path/to/python"
1983 error_exit
"GNU make ($make) not found"
1986 # Note that if the Python conditional here evaluates True we will exit
1987 # with status 1 which is a shell 'false' value.
1988 if ! $python -c 'import sys; sys.exit(sys.version_info < (3,6))'; then
1989 error_exit
"Cannot use '$python', Python >= 3.6 is required." \
1990 "Use --python=/path/to/python to specify a supported Python."
1993 # Preserve python version since some functionality is dependent on it
1994 python_version
=$
($python -c 'import sys; print("%d.%d.%d" % (sys.version_info[0], sys.version_info[1], sys.version_info[2]))' 2>/dev
/null
)
1996 # Suppress writing compiled files
1999 if test -z "$meson"; then
2000 if test "$explicit_python" = no
&& has meson
&& version_ge
"$(meson --version)" 0.55.3; then
2002 elif test $git_submodules_action != 'ignore' ; then
2004 elif test -e "${source_path}/meson/meson.py" ; then
2007 if test "$explicit_python" = yes; then
2008 error_exit
"--python requires using QEMU's embedded Meson distribution, but it was not found."
2010 error_exit
"Meson not found. Use --meson=/path/to/meson"
2014 # Meson uses its own Python interpreter to invoke other Python scripts,
2015 # but the user wants to use the one they specified with --python.
2017 # We do not want to override the distro Python interpreter (and sometimes
2018 # cannot: for example in Homebrew /usr/bin/meson is a bash script), so
2019 # just require --meson=git|internal together with --python.
2020 if test "$explicit_python" = yes; then
2023 *) error_exit
"--python requires using QEMU's embedded Meson distribution." ;;
2028 if test "$meson" = git
; then
2029 git_submodules
="${git_submodules} meson"
2034 meson
="$python ${source_path}/meson/meson.py"
2036 *) meson
=$
(command -v "$meson") ;;
2041 if test -z "$ninja"; then
2042 for c
in ninja ninja-build samu
; do
2044 ninja
=$
(command -v "$c")
2048 if test -z "$ninja"; then
2049 error_exit
"Cannot find Ninja"
2053 # Check that the C compiler works. Doing this here before testing
2054 # the host CPU ensures that we had a valid CC to autodetect the
2055 # $cpu var (and we should bail right here if that's not the case).
2056 # It also allows the help message to be printed without a CC.
2058 if compile_object
; then
2059 : C compiler works ok
2061 error_exit
"\"$cc\" either does not exist or does not work"
2063 if ! compile_prog
; then
2064 error_exit
"\"$cc\" cannot build an executable (is your linker broken?)"
2067 # Consult white-list to determine whether to enable werror
2068 # by default. Only enable by default for git builds
2069 if test -z "$werror" ; then
2070 if test "$git_submodules_action" != "ignore" && \
2071 { test "$linux" = "yes" ||
test "$mingw32" = "yes"; }; then
2078 if test "$targetos" = "bogus"; then
2079 # Now that we know that we're not printing the help and that
2080 # the compiler works (so the results of the check_defines we used
2081 # to identify the OS are reliable), if we didn't recognize the
2082 # host OS we should stop now.
2083 error_exit
"Unrecognized host OS (uname -s reports '$(uname -s)')"
2086 # Check whether the compiler matches our minimum requirements:
2088 #if defined(__clang_major__) && defined(__clang_minor__)
2089 # ifdef __apple_build_version__
2090 # if __clang_major__ < 10 || (__clang_major__ == 10 && __clang_minor__ < 0)
2091 # error You need at least XCode Clang v10.0 to compile QEMU
2094 # if __clang_major__ < 6 || (__clang_major__ == 6 && __clang_minor__ < 0)
2095 # error You need at least Clang v6.0 to compile QEMU
2098 #elif defined(__GNUC__) && defined(__GNUC_MINOR__)
2099 # if __GNUC__ < 7 || (__GNUC__ == 7 && __GNUC_MINOR__ < 5)
2100 # error You need at least GCC v7.5.0 to compile QEMU
2103 # error You either need GCC or Clang to compiler QEMU
2105 int main (void) { return 0; }
2107 if ! compile_prog
"" "" ; then
2108 error_exit
"You need at least GCC v7.5 or Clang v6.0 (or XCode Clang v10.0)"
2111 # Accumulate -Wfoo and -Wno-bar separately.
2112 # We will list all of the enable flags first, and the disable flags second.
2113 # Note that we do not add -Werror, because that would enable it for all
2114 # configure tests. If a configure test failed due to -Werror this would
2115 # just silently disable some features, so it's too error prone.
2118 add_to warn_flags
-Wold-style-declaration
2119 add_to warn_flags
-Wold-style-definition
2120 add_to warn_flags
-Wtype-limits
2121 add_to warn_flags
-Wformat-security
2122 add_to warn_flags
-Wformat-y2k
2123 add_to warn_flags
-Winit-self
2124 add_to warn_flags
-Wignored-qualifiers
2125 add_to warn_flags
-Wempty-body
2126 add_to warn_flags
-Wnested-externs
2127 add_to warn_flags
-Wendif-labels
2128 add_to warn_flags
-Wexpansion-to-defined
2129 add_to warn_flags
-Wimplicit-fallthrough=2
2132 add_to nowarn_flags
-Wno-initializer-overrides
2133 add_to nowarn_flags
-Wno-missing-include-dirs
2134 add_to nowarn_flags
-Wno-shift-negative-value
2135 add_to nowarn_flags
-Wno-string-plus-int
2136 add_to nowarn_flags
-Wno-typedef-redefinition
2137 add_to nowarn_flags
-Wno-tautological-type-limit-compare
2138 add_to nowarn_flags
-Wno-psabi
2140 gcc_flags
="$warn_flags $nowarn_flags"
2142 cc_has_warning_flag
() {
2145 # Use the positive sense of the flag when testing for -Wno-wombat
2146 # support (gcc will happily accept the -Wno- form of unknown
2148 optflag
="$(echo $1 | sed -e 's/^-Wno-/-W/')"
2149 compile_prog
"-Werror $optflag" ""
2152 for flag
in $gcc_flags; do
2153 if cc_has_warning_flag
$flag ; then
2154 QEMU_CFLAGS
="$QEMU_CFLAGS $flag"
2158 if test "$stack_protector" != "no"; then
2160 int main(int argc, char *argv[])
2162 char arr[64], *p = arr, *c = argv[0];
2169 gcc_flags
="-fstack-protector-strong -fstack-protector-all"
2171 for flag
in $gcc_flags; do
2172 # We need to check both a compile and a link, since some compiler
2173 # setups fail only on a .c->.o compile and some only at link time
2174 if compile_object
"-Werror $flag" &&
2175 compile_prog
"-Werror $flag" ""; then
2176 QEMU_CFLAGS
="$QEMU_CFLAGS $flag"
2177 QEMU_LDFLAGS
="$QEMU_LDFLAGS $flag"
2182 if test "$stack_protector" = yes; then
2183 if test $sp_on = 0; then
2184 error_exit
"Stack protector not supported"
2189 # Disable -Wmissing-braces on older compilers that warn even for
2190 # the "universal" C zero initializer {0}.
2196 if compile_object
"-Werror" "" ; then
2199 QEMU_CFLAGS
="$QEMU_CFLAGS -Wno-missing-braces"
2202 # Our module code doesn't support Windows
2203 if test "$modules" = "yes" && test "$mingw32" = "yes" ; then
2204 error_exit
"Modules are not available for Windows"
2207 # module_upgrades is only reasonable if modules are enabled
2208 if test "$modules" = "no" && test "$module_upgrades" = "yes" ; then
2209 error_exit
"Can't enable module-upgrades as Modules are not enabled"
2212 # Static linking is not possible with plugins, modules or PIE
2213 if test "$static" = "yes" ; then
2214 if test "$modules" = "yes" ; then
2215 error_exit
"static and modules are mutually incompatible"
2217 if test "$plugins" = "yes"; then
2218 error_exit
"static and plugins are mutually incompatible"
2224 # Unconditional check for compiler __thread support
2226 static __thread int tls_var;
2227 int main(void) { return tls_var; }
2230 if ! compile_prog
"-Werror" "" ; then
2231 error_exit
"Your compiler does not support the __thread specifier for " \
2232 "Thread-Local Storage (TLS). Please upgrade to a version that does."
2238 # define THREAD __thread
2242 static THREAD int tls_var;
2243 int main(void) { return tls_var; }
2246 # Check we support --no-pie first; we will need this for building ROMs.
2247 if compile_prog
"-Werror -fno-pie" "-no-pie"; then
2248 CFLAGS_NOPIE
="-fno-pie"
2251 if test "$static" = "yes"; then
2252 if test "$pie" != "no" && compile_prog
"-Werror -fPIE -DPIE" "-static-pie"; then
2253 CONFIGURE_CFLAGS
="-fPIE -DPIE $CONFIGURE_CFLAGS"
2254 QEMU_LDFLAGS
="-static-pie $QEMU_LDFLAGS"
2256 elif test "$pie" = "yes"; then
2257 error_exit
"-static-pie not available due to missing toolchain support"
2259 QEMU_LDFLAGS
="-static $QEMU_LDFLAGS"
2262 elif test "$pie" = "no"; then
2263 CONFIGURE_CFLAGS
="$CFLAGS_NOPIE $CONFIGURE_CFLAGS"
2264 elif compile_prog
"-Werror -fPIE -DPIE" "-pie"; then
2265 CONFIGURE_CFLAGS
="-fPIE -DPIE $CONFIGURE_CFLAGS"
2266 CONFIGURE_LDFLAGS
="-pie $CONFIGURE_LDFLAGS"
2268 elif test "$pie" = "yes"; then
2269 error_exit
"PIE not available due to missing toolchain support"
2271 echo "Disabling PIE due to missing toolchain support"
2275 # Detect support for PT_GNU_RELRO + DT_BIND_NOW.
2276 # The combination is known as "full relro", because .got.plt is read-only too.
2277 if compile_prog
"" "-Wl,-z,relro -Wl,-z,now" ; then
2278 QEMU_LDFLAGS
="-Wl,-z,relro -Wl,-z,now $QEMU_LDFLAGS"
2281 ##########################################
2282 # __sync_fetch_and_and requires at least -march=i486. Many toolchains
2283 # use i686 as default anyway, but for those that don't, an explicit
2284 # specification is necessary
2286 if test "$cpu" = "i386"; then
2288 static int sfaa(int *ptr)
2290 return __sync_fetch_and_and(ptr, 0);
2296 val = __sync_val_compare_and_swap(&val, 0, 1);
2301 if ! compile_prog
"" "" ; then
2302 QEMU_CFLAGS
="-march=i486 $QEMU_CFLAGS"
2306 #########################################
2307 # Solaris specific configure tool chain decisions
2309 if test "$solaris" = "yes" ; then
2313 if test -f /usr
/ccs
/bin
/ar ; then
2314 error_exit
"No path includes ar" \
2315 "Add /usr/ccs/bin to your path and rerun configure"
2317 error_exit
"No path includes ar"
2321 if test "$tcg" = "enabled"; then
2322 git_submodules
="$git_submodules tests/fp/berkeley-testfloat-3"
2323 git_submodules
="$git_submodules tests/fp/berkeley-softfloat-3"
2326 if test -z "${target_list+xxx}" ; then
2328 for target
in $default_target_list; do
2329 target_list
="$target_list $target"
2331 target_list
="${target_list# }"
2334 target_list
=$
(echo "$target_list" |
sed -e 's/,/ /g')
2335 for target
in $target_list; do
2336 # Check that we recognised the target name; this allows a more
2337 # friendly error message than if we let it fall through.
2338 case " $default_target_list " in
2342 error_exit
"Unknown target name '$target'"
2348 for target
in $target_list; do
2349 # if a deprecated target is enabled we note it here
2350 if echo "$deprecated_targets_list" |
grep -q "$target"; then
2351 add_to deprecated_features
$target
2355 # see if system emulation was really requested
2356 case " $target_list " in
2357 *"-softmmu "*) softmmu
=yes
2363 feature_not_found
() {
2367 error_exit
"User requested feature $feature" \
2368 "configure was not able to find it." \
2373 # big/little endian test
2376 short big_endian[] = { 0x4269, 0x4765, 0x4e64, 0x4961, 0x4e00, 0, };
2377 short little_endian[] = { 0x694c, 0x7454, 0x654c, 0x6e45, 0x6944, 0x6e41, 0, };
2378 int main(int argc, char *argv[])
2380 return printf("%s %s\n", (char *)big_endian, (char *)little_endian);
2384 if compile_prog
; then
2385 if strings -a $TMPE |
grep -q BiGeNdIaN
; then
2387 elif strings -a $TMPE |
grep -q LiTtLeEnDiAn
; then
2390 echo big
/little
test failed
2394 echo big
/little
test failed
2398 ##########################################
2400 if test -z "$want_tools"; then
2401 if test "$softmmu" = "no"; then
2408 ##########################################
2409 # Disable features only meaningful for system-mode emulation
2410 if test "$softmmu" = "no"; then
2414 ##########################################
2418 #include <sys/socket.h>
2419 #include <linux/ip.h>
2420 int main(void) { return sizeof(struct mmsghdr); }
2422 if compile_prog
"" "" ; then
2429 #include <sys/mman.h>
2430 int main(int argc, char *argv[]) {
2431 return mlockall(MCL_FUTURE);
2434 if compile_prog
"" "" ; then
2440 #########################################
2441 # vhost interdependencies and host support
2444 if test "$vhost_user" = "yes" && test "$linux" != "yes"; then
2445 error_exit
"vhost-user is only available on Linux"
2447 test "$vhost_vdpa" = "" && vhost_vdpa
=$linux
2448 if test "$vhost_vdpa" = "yes" && test "$linux" != "yes"; then
2449 error_exit
"vhost-vdpa is only available on Linux"
2451 test "$vhost_kernel" = "" && vhost_kernel
=$linux
2452 if test "$vhost_kernel" = "yes" && test "$linux" != "yes"; then
2453 error_exit
"vhost-kernel is only available on Linux"
2456 # vhost-kernel devices
2457 test "$vhost_scsi" = "" && vhost_scsi
=$vhost_kernel
2458 if test "$vhost_scsi" = "yes" && test "$vhost_kernel" != "yes"; then
2459 error_exit
"--enable-vhost-scsi requires --enable-vhost-kernel"
2461 test "$vhost_vsock" = "" && vhost_vsock
=$vhost_kernel
2462 if test "$vhost_vsock" = "yes" && test "$vhost_kernel" != "yes"; then
2463 error_exit
"--enable-vhost-vsock requires --enable-vhost-kernel"
2466 # vhost-user backends
2467 test "$vhost_net_user" = "" && vhost_net_user
=$vhost_user
2468 if test "$vhost_net_user" = "yes" && test "$vhost_user" = "no"; then
2469 error_exit
"--enable-vhost-net-user requires --enable-vhost-user"
2471 test "$vhost_crypto" = "" && vhost_crypto
=$vhost_user
2472 if test "$vhost_crypto" = "yes" && test "$vhost_user" = "no"; then
2473 error_exit
"--enable-vhost-crypto requires --enable-vhost-user"
2475 test "$vhost_user_fs" = "" && vhost_user_fs
=$vhost_user
2476 if test "$vhost_user_fs" = "yes" && test "$vhost_user" = "no"; then
2477 error_exit
"--enable-vhost-user-fs requires --enable-vhost-user"
2479 #vhost-vdpa backends
2480 test "$vhost_net_vdpa" = "" && vhost_net_vdpa
=$vhost_vdpa
2481 if test "$vhost_net_vdpa" = "yes" && test "$vhost_vdpa" = "no"; then
2482 error_exit
"--enable-vhost-net-vdpa requires --enable-vhost-vdpa"
2485 # OR the vhost-kernel, vhost-vdpa and vhost-user values for simplicity
2486 if test "$vhost_net" = ""; then
2487 test "$vhost_net_user" = "yes" && vhost_net
=yes
2488 test "$vhost_net_vdpa" = "yes" && vhost_net
=yes
2489 test "$vhost_kernel" = "yes" && vhost_net
=yes
2492 ##########################################
2495 if ! has
"$pkg_config_exe"; then
2496 error_exit
"pkg-config binary '$pkg_config_exe' not found"
2499 ##########################################
2502 if test "$linux_user" = "yes"; then
2505 #include <linux/futex.h>
2507 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
2513 if ! compile_object
; then
2514 feature_not_found
"nptl" "Install glibc and linux kernel headers."
2518 ##########################################
2521 if test "$xen" != "disabled" ; then
2522 # Check whether Xen library path is specified via --extra-ldflags to avoid
2523 # overriding this setting with pkg-config output. If not, try pkg-config
2524 # to obtain all needed flags.
2526 if ! echo $EXTRA_LDFLAGS |
grep tools
/libxc
> /dev
/null
&& \
2527 $pkg_config --exists xencontrol
; then
2528 xen_ctrl_version
="$(printf '%d%02d%02d' \
2529 $($pkg_config --modversion xencontrol | sed 's/\./ /g') )"
2531 xen_pc
="xencontrol xenstore xenforeignmemory xengnttab"
2532 xen_pc
="$xen_pc xenevtchn xendevicemodel"
2533 if $pkg_config --exists xentoolcore
; then
2534 xen_pc
="$xen_pc xentoolcore"
2536 xen_cflags
="$($pkg_config --cflags $xen_pc)"
2537 xen_libs
="$($pkg_config --libs $xen_pc)"
2540 xen_libs
="-lxenstore -lxenctrl"
2541 xen_stable_libs
="-lxenforeignmemory -lxengnttab -lxenevtchn"
2543 # First we test whether Xen headers and libraries are available.
2544 # If no, we are done and there is no Xen support.
2545 # If yes, more tests are run to detect the Xen version.
2549 #include <xenctrl.h>
2554 if ! compile_prog
"" "$xen_libs" ; then
2556 if test "$xen" = "enabled" ; then
2557 feature_not_found
"xen" "Install xen devel"
2563 cat > $TMPC <<EOF &&
2564 #undef XC_WANT_COMPAT_DEVICEMODEL_API
2565 #define __XEN_TOOLS__
2566 #include <xendevicemodel.h>
2567 #include <xenforeignmemory.h>
2569 xendevicemodel_handle *xd;
2570 xenforeignmemory_handle *xfmem;
2572 xd = xendevicemodel_open(0, 0);
2573 xendevicemodel_pin_memory_cacheattr(xd, 0, 0, 0, 0);
2575 xfmem = xenforeignmemory_open(0, 0);
2576 xenforeignmemory_map_resource(xfmem, 0, 0, 0, 0, 0, NULL, 0, 0);
2581 compile_prog
"" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore"
2583 xen_stable_libs
="-lxendevicemodel $xen_stable_libs -lxentoolcore"
2584 xen_ctrl_version
=41100
2587 cat > $TMPC <<EOF &&
2588 #undef XC_WANT_COMPAT_MAP_FOREIGN_API
2589 #include <xenforeignmemory.h>
2590 #include <xentoolcore.h>
2592 xenforeignmemory_handle *xfmem;
2594 xfmem = xenforeignmemory_open(0, 0);
2595 xenforeignmemory_map2(xfmem, 0, 0, 0, 0, 0, 0, 0);
2596 xentoolcore_restrict_all(0);
2601 compile_prog
"" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore"
2603 xen_stable_libs
="-lxendevicemodel $xen_stable_libs -lxentoolcore"
2604 xen_ctrl_version
=41000
2607 cat > $TMPC <<EOF &&
2608 #undef XC_WANT_COMPAT_DEVICEMODEL_API
2609 #define __XEN_TOOLS__
2610 #include <xendevicemodel.h>
2612 xendevicemodel_handle *xd;
2614 xd = xendevicemodel_open(0, 0);
2615 xendevicemodel_close(xd);
2620 compile_prog
"" "$xen_libs -lxendevicemodel $xen_stable_libs"
2622 xen_stable_libs
="-lxendevicemodel $xen_stable_libs"
2623 xen_ctrl_version
=40900
2626 cat > $TMPC <<EOF &&
2628 * If we have stable libs the we don't want the libxc compat
2629 * layers, regardless of what CFLAGS we may have been given.
2631 * Also, check if xengnttab_grant_copy_segment_t is defined and
2632 * grant copy operation is implemented.
2634 #undef XC_WANT_COMPAT_EVTCHN_API
2635 #undef XC_WANT_COMPAT_GNTTAB_API
2636 #undef XC_WANT_COMPAT_MAP_FOREIGN_API
2637 #include <xenctrl.h>
2638 #include <xenstore.h>
2639 #include <xenevtchn.h>
2640 #include <xengnttab.h>
2641 #include <xenforeignmemory.h>
2643 #include <xen/hvm/hvm_info_table.h>
2644 #if !defined(HVM_MAX_VCPUS)
2645 # error HVM_MAX_VCPUS not defined
2648 xc_interface *xc = NULL;
2649 xenforeignmemory_handle *xfmem;
2650 xenevtchn_handle *xe;
2651 xengnttab_handle *xg;
2652 xengnttab_grant_copy_segment_t* seg = NULL;
2656 xc = xc_interface_open(0, 0, 0);
2657 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2658 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2659 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2660 xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
2662 xfmem = xenforeignmemory_open(0, 0);
2663 xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0);
2665 xe = xenevtchn_open(0, 0);
2668 xg = xengnttab_open(0, 0);
2669 xengnttab_grant_copy(xg, 0, seg);
2674 compile_prog
"" "$xen_libs $xen_stable_libs"
2676 xen_ctrl_version
=40800
2679 cat > $TMPC <<EOF &&
2681 * If we have stable libs the we don't want the libxc compat
2682 * layers, regardless of what CFLAGS we may have been given.
2684 #undef XC_WANT_COMPAT_EVTCHN_API
2685 #undef XC_WANT_COMPAT_GNTTAB_API
2686 #undef XC_WANT_COMPAT_MAP_FOREIGN_API
2687 #include <xenctrl.h>
2688 #include <xenstore.h>
2689 #include <xenevtchn.h>
2690 #include <xengnttab.h>
2691 #include <xenforeignmemory.h>
2693 #include <xen/hvm/hvm_info_table.h>
2694 #if !defined(HVM_MAX_VCPUS)
2695 # error HVM_MAX_VCPUS not defined
2698 xc_interface *xc = NULL;
2699 xenforeignmemory_handle *xfmem;
2700 xenevtchn_handle *xe;
2701 xengnttab_handle *xg;
2705 xc = xc_interface_open(0, 0, 0);
2706 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2707 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2708 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2709 xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
2711 xfmem = xenforeignmemory_open(0, 0);
2712 xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0);
2714 xe = xenevtchn_open(0, 0);
2717 xg = xengnttab_open(0, 0);
2718 xengnttab_map_grant_ref(xg, 0, 0, 0);
2723 compile_prog
"" "$xen_libs $xen_stable_libs"
2725 xen_ctrl_version
=40701
2730 cat > $TMPC <<EOF &&
2731 #include <xenctrl.h>
2732 #include <xenstore.h>
2734 #include <xen/hvm/hvm_info_table.h>
2735 #if !defined(HVM_MAX_VCPUS)
2736 # error HVM_MAX_VCPUS not defined
2741 xc = xc_interface_open(0, 0, 0);
2742 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2743 xc_gnttab_open(NULL, 0);
2744 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2745 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2746 xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
2747 xc_reserved_device_memory_map(xc, 0, 0, 0, 0, NULL, 0);
2751 compile_prog
"" "$xen_libs"
2753 xen_ctrl_version
=40600
2758 cat > $TMPC <<EOF &&
2759 #include <xenctrl.h>
2760 #include <xenstore.h>
2762 #include <xen/hvm/hvm_info_table.h>
2763 #if !defined(HVM_MAX_VCPUS)
2764 # error HVM_MAX_VCPUS not defined
2769 xc = xc_interface_open(0, 0, 0);
2770 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2771 xc_gnttab_open(NULL, 0);
2772 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2773 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2774 xc_hvm_create_ioreq_server(xc, 0, 0, NULL);
2778 compile_prog
"" "$xen_libs"
2780 xen_ctrl_version
=40500
2784 cat > $TMPC <<EOF &&
2785 #include <xenctrl.h>
2786 #include <xenstore.h>
2788 #include <xen/hvm/hvm_info_table.h>
2789 #if !defined(HVM_MAX_VCPUS)
2790 # error HVM_MAX_VCPUS not defined
2795 xc = xc_interface_open(0, 0, 0);
2796 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2797 xc_gnttab_open(NULL, 0);
2798 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2799 xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2803 compile_prog
"" "$xen_libs"
2805 xen_ctrl_version
=40200
2809 if test "$xen" = "enabled" ; then
2810 feature_not_found
"xen (unsupported version)" \
2811 "Install a supported xen (xen 4.2 or newer)"
2816 if test "$xen" = enabled
; then
2817 if test $xen_ctrl_version -ge 40701 ; then
2818 xen_libs
="$xen_libs $xen_stable_libs "
2824 ##########################################
2825 # RDMA needs OpenFabrics libraries
2826 if test "$rdma" != "no" ; then
2828 #include <rdma/rdma_cma.h>
2829 int main(void) { return 0; }
2831 rdma_libs
="-lrdmacm -libverbs -libumad"
2832 if compile_prog
"" "$rdma_libs" ; then
2835 if test "$rdma" = "yes" ; then
2837 " OpenFabrics librdmacm/libibverbs/libibumad not present." \
2839 " (1) Fast: Install infiniband packages (devel) from your distro." \
2840 " (2) Cleanest: Install libraries from www.openfabrics.org" \
2841 " (3) Also: Install softiwarp if you don't have RDMA hardware"
2847 ##########################################
2850 cat > $TMPC <<EOF &&
2851 #include <sys/mman.h>
2858 addr = mremap(addr, 0, 1, MREMAP_MAYMOVE | MREMAP_FIXED);
2864 if test "$rdma" = "yes" ; then
2867 if compile_prog
"" ""; then
2874 if ! compile_prog
"" ""; then
2875 error_exit
"PVRDMA is not supported since mremap is not implemented"
2884 if test "$pvrdma" = "yes" ; then
2885 error_exit
"PVRDMA requires rdma suppport"
2890 # Let's see if enhanced reg_mr is supported
2891 if test "$pvrdma" = "yes" ; then
2893 cat > $TMPC <<EOF &&
2894 #include <infiniband/verbs.h>
2900 struct ibv_pd *pd = NULL;
2906 mr = ibv_reg_mr_iova(pd, addr, length, iova, access);
2913 if ! compile_prog
"" "-libverbs"; then
2914 QEMU_CFLAGS
="$QEMU_CFLAGS -DLEGACY_RDMA_REG_MR"
2918 ##########################################
2919 # xfsctl() probe, used for file-posix.c
2920 if test "$xfs" != "no" ; then
2922 #include <stddef.h> /* NULL */
2923 #include <xfs/xfs.h>
2926 xfsctl(NULL, 0, 0, NULL);
2930 if compile_prog
"" "" ; then
2933 if test "$xfs" = "yes" ; then
2934 feature_not_found
"xfs" "Install xfsprogs/xfslibs devel"
2940 ##########################################
2941 # vde libraries probe
2942 if test "$vde" != "no" ; then
2943 vde_libs
="-lvdeplug"
2945 #include <libvdeplug.h>
2948 struct vde_open_args a = {0, 0, 0};
2954 if compile_prog
"" "$vde_libs" ; then
2957 if test "$vde" = "yes" ; then
2958 feature_not_found
"vde" "Install vde (Virtual Distributed Ethernet) devel"
2964 ##########################################
2965 # netmap support probe
2966 # Apart from looking for netmap headers, we make sure that the host API version
2967 # supports the netmap backend (>=11). The upper bound (15) is meant to simulate
2968 # a minor/major version number. Minor new features will be marked with values up
2969 # to 15, and if something happens that requires a change to the backend we will
2970 # move above 15, submit the backend fixes and modify this two bounds.
2971 if test "$netmap" != "no" ; then
2973 #include <inttypes.h>
2975 #include <net/netmap.h>
2976 #include <net/netmap_user.h>
2977 #if (NETMAP_API < 11) || (NETMAP_API > 15)
2980 int main(void) { return 0; }
2982 if compile_prog
"" "" ; then
2985 if test "$netmap" = "yes" ; then
2986 feature_not_found
"netmap"
2992 ##########################################
2994 if test "$coreaudio" != "no" ; then
2995 coreaudio_libs
="-framework CoreAudio"
2997 #include <CoreAudio/CoreAudio.h>
3000 return (int)AudioGetCurrentHostTime();
3003 if compile_prog
"" "$coreaudio_libs" ; then
3010 ##########################################
3011 # Sound support libraries probe
3013 audio_drv_list
=$
(echo "$audio_drv_list" |
sed -e 's/,/ /g')
3014 for drv
in $audio_drv_list; do
3017 if $pkg_config alsa
--exists; then
3018 alsa_libs
=$
($pkg_config alsa
--libs)
3019 alsa_cflags
=$
($pkg_config alsa
--cflags)
3021 if test "$drv" = "try-alsa"; then
3022 audio_drv_list
=$
(echo "$audio_drv_list" |
sed -e 's/try-alsa/alsa/')
3025 if test "$drv" = "try-alsa"; then
3026 audio_drv_list
=$
(echo "$audio_drv_list" |
sed -e 's/try-alsa//')
3028 error_exit
"$drv check failed" \
3029 "Make sure to have the $drv libs and headers installed."
3035 if $pkg_config libpulse
--exists; then
3037 pulse_libs
=$
($pkg_config libpulse
--libs)
3038 pulse_cflags
=$
($pkg_config libpulse
--cflags)
3039 if test "$drv" = "try-pa"; then
3040 audio_drv_list
=$
(echo "$audio_drv_list" |
sed -e 's/try-pa/pa/')
3043 if test "$drv" = "try-pa"; then
3044 audio_drv_list
=$
(echo "$audio_drv_list" |
sed -e 's/try-pa//')
3046 error_exit
"$drv check failed" \
3047 "Make sure to have the $drv libs and headers installed."
3053 if test "$sdl" = "no"; then
3054 error_exit
"sdl not found or disabled, can not use sdl audio driver"
3059 if test "$sdl" = "no"; then
3060 audio_drv_list
=$
(echo "$audio_drv_list" |
sed -e 's/try-sdl//')
3062 audio_drv_list
=$
(echo "$audio_drv_list" |
sed -e 's/try-sdl/sdl/')
3066 coreaudio | try-coreaudio
)
3067 if test "$coreaudio" = "no"; then
3068 if test "$drv" = "try-coreaudio"; then
3069 audio_drv_list
=$
(echo "$audio_drv_list" |
sed -e 's/try-coreaudio//')
3071 error_exit
"$drv check failed" \
3072 "Make sure to have the $drv is available."
3075 coreaudio_libs
="-framework CoreAudio"
3076 if test "$drv" = "try-coreaudio"; then
3077 audio_drv_list
=$
(echo "$audio_drv_list" |
sed -e 's/try-coreaudio/coreaudio/')
3083 dsound_libs
="-lole32 -ldxguid"
3092 if $pkg_config jack
--exists; then
3094 jack_libs
=$
($pkg_config jack
--libs)
3095 if test "$drv" = "try-jack"; then
3096 audio_drv_list
=$
(echo "$audio_drv_list" |
sed -e 's/try-jack/jack/')
3099 if test "$drv" = "try-jack"; then
3100 audio_drv_list
=$
(echo "$audio_drv_list" |
sed -e 's/try-jack//')
3102 error_exit
"$drv check failed" \
3103 "Make sure to have the $drv libs and headers installed."
3109 echo "$audio_possible_drivers" |
grep -q "\<$drv\>" ||
{
3110 error_exit
"Unknown driver '$drv' selected" \
3111 "Possible drivers are: $audio_possible_drivers"
3117 ##########################################
3118 # plugin linker support probe
3120 if test "$plugins" != "no"; then
3122 #########################################
3123 # See if --dynamic-list is supported by the linker
3125 ld_dynamic_list
="no"
3148 if compile_prog
"" "-Wl,--dynamic-list=$TMPTXT" ; then
3149 ld_dynamic_list
="yes"
3152 #########################################
3153 # See if -exported_symbols_list is supported by the linker
3155 ld_exported_symbols_list
="no"
3160 if compile_prog
"" "-Wl,-exported_symbols_list,$TMPTXT" ; then
3161 ld_exported_symbols_list
="yes"
3164 if test "$ld_dynamic_list" = "no" &&
3165 test "$ld_exported_symbols_list" = "no" ; then
3166 if test "$plugins" = "yes"; then
3168 "Plugin support requires dynamic linking and specifying a set of symbols " \
3169 "that are exported to plugins. Unfortunately your linker doesn't " \
3170 "support the flag (--dynamic-list or -exported_symbols_list) used " \
3180 ##########################################
3181 # glib support probe
3184 glib_modules
=gthread-2.0
3185 if test "$modules" = yes; then
3186 glib_modules
="$glib_modules gmodule-export-2.0"
3188 if test "$plugins" = "yes"; then
3189 glib_modules
="$glib_modules gmodule-2.0"
3192 for i
in $glib_modules; do
3193 if $pkg_config --atleast-version=$glib_req_ver $i; then
3194 glib_cflags
=$
($pkg_config --cflags $i)
3195 glib_libs
=$
($pkg_config --libs $i)
3197 error_exit
"glib-$glib_req_ver $i is required to compile QEMU"
3201 # This workaround is required due to a bug in pkg-config file for glib as it
3202 # doesn't define GLIB_STATIC_COMPILATION for pkg-config --static
3204 if test "$static" = yes && test "$mingw32" = yes; then
3205 glib_cflags
="-DGLIB_STATIC_COMPILATION $glib_cflags"
3208 if ! test "$gio" = "no"; then
3210 if $pkg_config --atleast-version=$glib_req_ver gio-2.0
; then
3211 gio_cflags
=$
($pkg_config --cflags gio-2.0
)
3212 gio_libs
=$
($pkg_config --libs gio-2.0
)
3213 gdbus_codegen
=$
($pkg_config --variable=gdbus_codegen gio-2.0
)
3214 if ! has
"$gdbus_codegen"; then
3217 # Check that the libraries actually work -- Ubuntu 18.04 ships
3218 # with pkg-config --static --libs data for gio-2.0 that is missing
3219 # -lblkid and will give a link error.
3221 #include <gio/gio.h>
3224 g_dbus_proxy_new_sync(0, 0, 0, 0, 0, 0, 0, 0);
3228 if compile_prog
"$gio_cflags" "$gio_libs" ; then
3234 if test "$pass" = "yes" &&
3235 $pkg_config --atleast-version=$glib_req_ver gio-unix-2.0
; then
3236 gio_cflags
="$gio_cflags $($pkg_config --cflags gio-unix-2.0)"
3237 gio_libs
="$gio_libs $($pkg_config --libs gio-unix-2.0)"
3241 if test "$pass" = "no"; then
3242 if test "$gio" = "yes"; then
3243 feature_not_found
"gio" "Install libgio >= 2.0"
3252 # Sanity check that the current size_t matches the
3253 # size that glib thinks it should be. This catches
3254 # problems on multi-arch where people try to build
3255 # 32-bit QEMU while pointing at 64-bit glib headers
3260 #define QEMU_BUILD_BUG_ON(x) \
3261 typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused));
3264 QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T);
3269 if ! compile_prog
"$glib_cflags" "$glib_libs" ; then
3270 error_exit
"sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T."\
3271 "You probably need to set PKG_CONFIG_LIBDIR"\
3272 "to point to the right pkg-config files for your"\
3276 # Silence clang 3.5.0 warnings about glib attribute __alloc_size__ usage
3279 int main(void) { return 0; }
3281 if ! compile_prog
"$glib_cflags -Werror" "$glib_libs" ; then
3282 if cc_has_warning_flag
"-Wno-unknown-attributes"; then
3283 glib_cflags
="-Wno-unknown-attributes $glib_cflags"
3284 CONFIGURE_CFLAGS
="-Wno-unknown-attributes $CONFIGURE_CFLAGS"
3288 # Silence clang warnings triggered by glib < 2.57.2
3291 typedef struct Foo {
3294 static void foo_free(Foo *f)
3298 G_DEFINE_AUTOPTR_CLEANUP_FUNC(Foo, foo_free);
3299 int main(void) { return 0; }
3301 if ! compile_prog
"$glib_cflags -Werror" "$glib_libs" ; then
3302 if cc_has_warning_flag
"-Wno-unused-function"; then
3303 glib_cflags
="$glib_cflags -Wno-unused-function"
3304 CONFIGURE_CFLAGS
="$CONFIGURE_CFLAGS -Wno-unused-function"
3308 ##########################################
3309 # SHA command probe for modules
3310 if test "$modules" = yes; then
3311 shacmd_probe
="sha1sum sha1 shasum"
3312 for c
in $shacmd_probe; do
3318 if test "$shacmd" = ""; then
3319 error_exit
"one of the checksum commands is required to enable modules: $shacmd_probe"
3323 ##########################################
3325 PTHREADLIBS_LIST
="-pthread -lpthread -lpthreadGC2"
3329 #include <pthread.h>
3330 static void *f(void *p) { return NULL; }
3333 pthread_create(&thread, 0, f, 0);
3337 if compile_prog
"" "" ; then
3340 for pthread_lib
in $PTHREADLIBS_LIST; do
3341 if compile_prog
"" "$pthread_lib" ; then
3348 if test "$mingw32" != yes && test "$pthread" = no
; then
3349 error_exit
"pthread check failed" \
3350 "Make sure to have the pthread libs and headers installed."
3353 # check for pthread_setname_np with thread id
3354 pthread_setname_np_w_tid
=no
3356 #include <pthread.h>
3358 static void *f(void *p) { return NULL; }
3362 pthread_create(&thread, 0, f, 0);
3363 pthread_setname_np(thread, "QEMU");
3367 if compile_prog
"" "$pthread_lib" ; then
3368 pthread_setname_np_w_tid
=yes
3371 # check for pthread_setname_np without thread id
3372 pthread_setname_np_wo_tid
=no
3374 #include <pthread.h>
3376 static void *f(void *p) { pthread_setname_np("QEMU"); return NULL; }
3380 pthread_create(&thread, 0, f, 0);
3384 if compile_prog
"" "$pthread_lib" ; then
3385 pthread_setname_np_wo_tid
=yes
3388 ##########################################
3390 if test "$libssh" != "no" ; then
3391 if $pkg_config --exists "libssh >= 0.8.7"; then
3392 libssh_cflags
=$
($pkg_config libssh
--cflags)
3393 libssh_libs
=$
($pkg_config libssh
--libs)
3396 if test "$libssh" = "yes" ; then
3397 error_exit
"libssh required for --enable-libssh"
3403 ##########################################
3406 if test "$linux_aio" != "no" ; then
3409 #include <sys/eventfd.h>
3411 int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
3413 if compile_prog
"" "-laio" ; then
3416 if test "$linux_aio" = "yes" ; then
3417 feature_not_found
"linux AIO" "Install libaio devel"
3423 ##########################################
3424 # TPM emulation is only on POSIX
3426 if test "$tpm" = ""; then
3427 if test "$mingw32" = "yes"; then
3432 elif test "$tpm" = "yes"; then
3433 if test "$mingw32" = "yes" ; then
3434 error_exit
"TPM emulation only available on POSIX systems"
3438 ##########################################
3441 #include <sys/types.h>
3442 #include <sys/uio.h>
3444 int main(void) { return sizeof(struct iovec); }
3447 if compile_prog
"" "" ; then
3451 ##########################################
3455 auto | enabled | internal
)
3456 # Simpler to always update submodule, even if not needed.
3457 git_submodules
="${git_submodules} dtc"
3461 ##########################################
3462 # opengl probe (for sdl2, gtk)
3465 if $pkg_config gbm
; then
3466 gbm_cflags
="$($pkg_config --cflags gbm)"
3467 gbm_libs
="$($pkg_config --libs gbm)"
3471 if test "$opengl" != "no" ; then
3473 if $pkg_config epoxy
; then
3475 #include <epoxy/egl.h>
3476 int main(void) { return 0; }
3478 if compile_prog
"" "" ; then
3483 if test "$epoxy" = "yes" ; then
3484 opengl_cflags
="$($pkg_config --cflags epoxy)"
3485 opengl_libs
="$($pkg_config --libs epoxy)"
3488 if test "$opengl" = "yes" ; then
3489 feature_not_found
"opengl" "Please install epoxy with EGL"
3497 ##########################################
3500 if test "$numa" != "no" ; then
3503 int main(void) { return numa_available(); }
3506 if compile_prog
"" "-lnuma" ; then
3510 if test "$numa" = "yes" ; then
3511 feature_not_found
"numa" "install numactl devel"
3518 if test "$tcmalloc" = "yes" && test "$jemalloc" = "yes" ; then
3519 echo "ERROR: tcmalloc && jemalloc can't be used at the same time"
3521 elif test "$tcmalloc" = "yes" ; then
3523 elif test "$jemalloc" = "yes" ; then
3529 if test "$linux_user" = "yes"; then
3531 #include <linux/usbdevice_fs.h>
3533 #ifndef USBDEVFS_GET_CAPABILITIES
3534 #error "USBDEVFS_GET_CAPABILITIES undefined"
3537 #ifndef USBDEVFS_DISCONNECT_CLAIM
3538 #error "USBDEVFS_DISCONNECT_CLAIM undefined"
3546 if compile_prog
"" ""; then
3551 ##########################################
3553 if test "$spice_protocol" != "no" ; then
3554 spice_protocol_cflags
=$
($pkg_config --cflags spice-protocol
2>/dev
/null
)
3555 if $pkg_config --atleast-version=0.12.3 spice-protocol
; then
3556 spice_protocol
="yes"
3558 if test "$spice_protocol" = "yes" ; then
3559 feature_not_found
"spice_protocol" \
3560 "Install spice-protocol(>=0.12.3) devel"
3566 if test "$spice" != "no" ; then
3569 int main(void) { spice_server_new(); return 0; }
3571 spice_cflags
=$
($pkg_config --cflags spice-protocol spice-server
2>/dev
/null
)
3572 spice_libs
=$
($pkg_config --libs spice-protocol spice-server
2>/dev
/null
)
3573 if $pkg_config --atleast-version=0.12.5 spice-server
&& \
3574 test "$spice_protocol" = "yes" && \
3575 compile_prog
"$spice_cflags" "$spice_libs" ; then
3578 if test "$spice" = "yes" ; then
3579 feature_not_found
"spice" \
3580 "Install spice-server(>=0.12.5) devel"
3586 ##########################################
3587 # check if we have VSS SDK headers for win
3589 if test "$mingw32" = "yes" && test "$guest_agent" != "no" && \
3590 test "$vss_win32_sdk" != "no" ; then
3591 case "$vss_win32_sdk" in
3592 "") vss_win32_include
="-isystem $source_path" ;;
3593 *\
*) # The SDK is installed in "Program Files" by default, but we cannot
3594 # handle path with spaces. So we symlink the headers into ".sdk/vss".
3595 vss_win32_include
="-isystem $source_path/.sdk/vss"
3596 symlink
"$vss_win32_sdk/inc" "$source_path/.sdk/vss/inc"
3598 *) vss_win32_include
="-isystem $vss_win32_sdk"
3601 #define __MIDL_user_allocate_free_DEFINED__
3602 #include <inc/win2003/vss.h>
3603 int main(void) { return VSS_CTX_BACKUP; }
3605 if compile_prog
"$vss_win32_include" "" ; then
3606 guest_agent_with_vss
="yes"
3607 QEMU_CFLAGS
="$QEMU_CFLAGS $vss_win32_include"
3608 libs_qga
="-lole32 -loleaut32 -lshlwapi -lstdc++ -Wl,--enable-stdcall-fixup $libs_qga"
3609 qga_vss_provider
="qga/vss-win32/qga-vss.dll qga/vss-win32/qga-vss.tlb"
3611 if test "$vss_win32_sdk" != "" ; then
3612 echo "ERROR: Please download and install Microsoft VSS SDK:"
3613 echo "ERROR: http://www.microsoft.com/en-us/download/details.aspx?id=23490"
3614 echo "ERROR: On POSIX-systems, you can extract the SDK headers by:"
3615 echo "ERROR: scripts/extract-vsssdk-headers setup.exe"
3616 echo "ERROR: The headers are extracted in the directory \`inc'."
3617 feature_not_found
"VSS support"
3619 guest_agent_with_vss
="no"
3623 ##########################################
3624 # lookup Windows platform SDK (if not specified)
3625 # The SDK is needed only to build .tlb (type library) file of guest agent
3626 # VSS provider from the source. It is usually unnecessary because the
3627 # pre-compiled .tlb file is included.
3629 if test "$mingw32" = "yes" && test "$guest_agent" != "no" && \
3630 test "$guest_agent_with_vss" = "yes" ; then
3631 if test -z "$win_sdk"; then
3632 programfiles
="$PROGRAMFILES"
3633 test -n "$PROGRAMW6432" && programfiles
="$PROGRAMW6432"
3634 if test -n "$programfiles"; then
3635 win_sdk
=$
(ls -d "$programfiles/Microsoft SDKs/Windows/v"* |
tail -1) 2>/dev
/null
3637 feature_not_found
"Windows SDK"
3639 elif test "$win_sdk" = "no"; then
3644 ##########################################
3645 # check if mingw environment provides a recent ntddscsi.h
3646 if test "$mingw32" = "yes" && test "$guest_agent" != "no"; then
3648 #include <windows.h>
3649 #include <ntddscsi.h>
3651 #if !defined(IOCTL_SCSI_GET_ADDRESS)
3652 #error Missing required ioctl definitions
3654 SCSI_ADDRESS addr = { .Lun = 0, .TargetId = 0, .PathId = 0 };
3658 if compile_prog
"" "" ; then
3659 guest_agent_ntddscsi
=yes
3660 libs_qga
="-lsetupapi -lcfgmgr32 $libs_qga"
3664 ##########################################
3668 auto | enabled | internal
)
3669 # Simpler to always update submodule, even if not needed.
3670 git_submodules
="${git_submodules} capstone"
3674 ##########################################
3675 # check if we have posix_syslog
3680 int main(void) { openlog("qemu", LOG_PID, LOG_DAEMON); syslog(LOG_INFO, "configure"); return 0; }
3682 if compile_prog
"" "" ; then
3686 ##########################################
3687 # check if trace backend exists
3689 $python "$source_path/scripts/tracetool.py" "--backends=$trace_backends" --check-backends > /dev
/null
2> /dev
/null
3690 if test "$?" -ne 0 ; then
3691 error_exit
"invalid trace backends" \
3692 "Please choose supported trace backends."
3695 ##########################################
3696 # For 'ust' backend, test if ust headers are present
3697 if have_backend
"ust"; then
3698 if $pkg_config lttng-ust
--exists; then
3699 lttng_ust_libs
=$
($pkg_config --libs lttng-ust
)
3701 error_exit
"Trace backend 'ust' missing lttng-ust header files"
3705 ##########################################
3706 # For 'dtrace' backend, test if 'dtrace' command is present
3707 if have_backend
"dtrace"; then
3708 if ! has
'dtrace' ; then
3709 error_exit
"dtrace command is not found in PATH $PATH"
3711 trace_backend_stap
="no"
3712 if has
'stap' ; then
3713 trace_backend_stap
="yes"
3715 # Workaround to avoid dtrace(1) producing a file with 'hidden' symbol
3716 # visibility. Define STAP_SDT_V2 to produce 'default' symbol visibility
3717 # instead. QEMU --enable-modules depends on this because the SystemTap
3718 # semaphores are linked into the main binary and not the module's shared
3720 QEMU_CFLAGS
="$QEMU_CFLAGS -DSTAP_SDT_V2"
3724 ##########################################
3725 # check and set a backend for coroutine
3727 # We prefer ucontext, but it's not always possible. The fallback
3728 # is sigcontext. On Windows the only valid backend is the Windows
3732 if test "$darwin" != "yes"; then
3734 #include <ucontext.h>
3735 #ifdef __stub_makecontext
3736 #error Ignoring glibc stub makecontext which will always fail
3738 int main(void) { makecontext(0, 0, 0); return 0; }
3740 if compile_prog
"" "" ; then
3745 if test "$coroutine" = ""; then
3746 if test "$mingw32" = "yes"; then
3748 elif test "$ucontext_works" = "yes"; then
3751 coroutine
=sigaltstack
3756 if test "$mingw32" != "yes"; then
3757 error_exit
"'windows' coroutine backend only valid for Windows"
3759 # Unfortunately the user visible backend name doesn't match the
3760 # coroutine-*.c filename for this case, so we have to adjust it here.
3764 if test "$ucontext_works" != "yes"; then
3765 feature_not_found
"ucontext"
3769 if test "$mingw32" = "yes"; then
3770 error_exit
"only the 'windows' coroutine backend is valid for Windows"
3774 error_exit
"unknown coroutine backend $coroutine"
3779 if test "$coroutine_pool" = ""; then
3783 if test "$debug_stack_usage" = "yes"; then
3784 if test "$coroutine_pool" = "yes"; then
3785 echo "WARN: disabling coroutine pool for stack usage debugging"
3790 ##################################################
3794 if test "$safe_stack" = "yes"; then
3796 int main(int argc, char *argv[])
3798 #if ! __has_feature(safe_stack)
3799 #error SafeStack Disabled
3804 flag
="-fsanitize=safe-stack"
3805 # Check that safe-stack is supported and enabled.
3806 if compile_prog
"-Werror $flag" "$flag"; then
3807 # Flag needed both at compilation and at linking
3808 QEMU_CFLAGS
="$QEMU_CFLAGS $flag"
3809 QEMU_LDFLAGS
="$QEMU_LDFLAGS $flag"
3811 error_exit
"SafeStack not supported by your compiler"
3813 if test "$coroutine" != "ucontext"; then
3814 error_exit
"SafeStack is only supported by the coroutine backend ucontext"
3818 int main(int argc, char *argv[])
3820 #if defined(__has_feature)
3821 #if __has_feature(safe_stack)
3822 #error SafeStack Enabled
3828 if test "$safe_stack" = "no"; then
3829 # Make sure that safe-stack is disabled
3830 if ! compile_prog
"-Werror" ""; then
3831 # SafeStack was already enabled, try to explicitly remove the feature
3832 flag
="-fno-sanitize=safe-stack"
3833 if ! compile_prog
"-Werror $flag" "$flag"; then
3834 error_exit
"Configure cannot disable SafeStack"
3836 QEMU_CFLAGS
="$QEMU_CFLAGS $flag"
3837 QEMU_LDFLAGS
="$QEMU_LDFLAGS $flag"
3839 else # "$safe_stack" = ""
3840 # Set safe_stack to yes or no based on pre-existing flags
3841 if compile_prog
"-Werror" ""; then
3845 if test "$coroutine" != "ucontext"; then
3846 error_exit
"SafeStack is only supported by the coroutine backend ucontext"
3852 ########################################
3853 # check if cpuid.h is usable.
3858 unsigned a, b, c, d;
3859 int max = __get_cpuid_max(0, 0);
3862 __cpuid(1, a, b, c, d);
3866 __cpuid_count(7, 0, a, b, c, d);
3872 if compile_prog
"" "" ; then
3876 ##########################################
3877 # avx2 optimization requirement check
3879 # There is no point enabling this if cpuid.h is not usable,
3880 # since we won't be able to select the new routines.
3882 if test "$cpuid_h" = "yes" && test "$avx2_opt" != "no"; then
3884 #pragma GCC push_options
3885 #pragma GCC target("avx2")
3887 #include <immintrin.h>
3888 static int bar(void *a) {
3889 __m256i x = *(__m256i *)a;
3890 return _mm256_testz_si256(x, x);
3892 int main(int argc, char *argv[]) { return bar(argv[0]); }
3894 if compile_object
"" ; then
3901 ##########################################
3902 # avx512f optimization requirement check
3904 # There is no point enabling this if cpuid.h is not usable,
3905 # since we won't be able to select the new routines.
3906 # by default, it is turned off.
3907 # if user explicitly want to enable it, check environment
3909 if test "$cpuid_h" = "yes" && test "$avx512f_opt" = "yes"; then
3911 #pragma GCC push_options
3912 #pragma GCC target("avx512f")
3914 #include <immintrin.h>
3915 static int bar(void *a) {
3916 __m512i x = *(__m512i *)a;
3917 return _mm512_test_epi64_mask(x, x);
3919 int main(int argc, char *argv[])
3921 return bar(argv[0]);
3924 if ! compile_object
"" ; then
3931 ########################################
3932 # check if __[u]int128_t is usable.
3945 if compile_prog
"" "" ; then
3949 #########################################
3950 # See if 128-bit atomic operations are supported.
3953 if test "$int128" = "yes"; then
3957 unsigned __int128 x = 0, y = 0;
3958 y = __atomic_load(&x, 0);
3959 __atomic_store(&x, y, 0);
3960 __atomic_compare_exchange(&x, &y, x, 0, 0, 0);
3964 if compile_prog
"" "" ; then
3970 if test "$int128" = yes && test "$atomic128" = no
; then
3974 unsigned __int128 x = 0, y = 0;
3975 __sync_val_compare_and_swap_16(&x, y, x);
3979 if compile_prog
"" "" ; then
3984 #########################################
3985 # See if 64-bit atomic operations are supported.
3986 # Note that without __atomic builtins, we can only
3987 # assume atomic loads/stores max at pointer size.
3993 uint64_t x = 0, y = 0;
3994 #ifdef __ATOMIC_RELAXED
3995 y = __atomic_load_n(&x, __ATOMIC_RELAXED);
3996 __atomic_store_n(&x, y, __ATOMIC_RELAXED);
3997 __atomic_compare_exchange_n(&x, &y, x, 0, __ATOMIC_RELAXED, __ATOMIC_RELAXED);
3998 __atomic_exchange_n(&x, y, __ATOMIC_RELAXED);
3999 __atomic_fetch_add(&x, y, __ATOMIC_RELAXED);
4001 typedef char is_host64[sizeof(void *) >= sizeof(uint64_t) ? 1 : -1];
4002 __sync_lock_test_and_set(&x, y);
4003 __sync_val_compare_and_swap(&x, y, 0);
4004 __sync_fetch_and_add(&x, y);
4009 if compile_prog
"" "" ; then
4013 ########################################
4014 # check if getauxval is available.
4018 #include <sys/auxv.h>
4020 return getauxval(AT_HWCAP) == 0;
4023 if compile_prog
"" "" ; then
4027 ########################################
4028 # check if ccache is interfering with
4029 # semantic analysis of macros
4034 static const int Z = 1;
4035 #define fn() ({ Z; })
4036 #define TAUT(X) ((X) == Z)
4037 #define PAREN(X, Y) (X == Y)
4039 int main(int argc, char *argv[])
4045 if (PAREN(x, y)) return 0;
4046 if (TAUT(Z)) return 0;
4051 if ! compile_object
"-Werror"; then
4055 #################################################
4056 # clang does not support glibc + FORTIFY_SOURCE.
4058 if test "$fortify_source" != "no"; then
4059 if echo |
$cc -dM -E - |
grep __clang__
> /dev
/null
2>&1 ; then
4060 fortify_source
="no";
4061 elif test -n "$cxx" && has
$cxx &&
4062 echo |
$cxx -dM -E - |
grep __clang__
>/dev
/null
2>&1 ; then
4063 fortify_source
="no";
4065 fortify_source
="yes"
4069 ##########################################
4070 # check if struct fsxattr is available via linux/fs.h
4074 #include <linux/fs.h>
4080 if compile_prog
"" "" ; then
4084 ##########################################
4085 # check for usable membarrier system call
4086 if test "$membarrier" = "yes"; then
4088 if test "$mingw32" = "yes" ; then
4090 elif test "$linux" = "yes" ; then
4092 #include <linux/membarrier.h>
4093 #include <sys/syscall.h>
4097 syscall(__NR_membarrier, MEMBARRIER_CMD_QUERY, 0);
4098 syscall(__NR_membarrier, MEMBARRIER_CMD_SHARED, 0);
4102 if compile_prog
"" "" ; then
4106 if test "$have_membarrier" = "no"; then
4107 feature_not_found
"membarrier" "membarrier system call not available"
4110 # Do not enable it by default even for Mingw32, because it doesn't
4115 ##########################################
4116 # check for usable AF_VSOCK environment
4120 #include <sys/types.h>
4121 #include <sys/socket.h>
4122 #if !defined(AF_VSOCK)
4123 # error missing AF_VSOCK flag
4125 #include <linux/vm_sockets.h>
4128 struct sockaddr_vm svm;
4129 socklen_t len = sizeof(svm);
4130 sock = socket(AF_VSOCK, SOCK_STREAM, 0);
4131 ret = getpeername(sock, (struct sockaddr *)&svm, &len);
4132 if ((ret == -1) && (errno == ENOTCONN)) {
4138 if compile_prog
"" "" ; then
4142 ##########################################
4143 # check for usable AF_ALG environment
4147 #include <sys/types.h>
4148 #include <sys/socket.h>
4149 #include <linux/if_alg.h>
4152 sock = socket(AF_ALG, SOCK_SEQPACKET, 0);
4156 if compile_prog
"" "" ; then
4159 if test "$crypto_afalg" = "yes"
4161 if test "$have_afalg" != "yes"
4163 error_exit
"AF_ALG requested but could not be detected"
4168 ##########################################
4169 # checks for sanitizers
4173 have_asan_iface_h
=no
4174 have_asan_iface_fiber
=no
4176 if test "$sanitizers" = "yes" ; then
4178 if compile_prog
"$CPU_CFLAGS -Werror -fsanitize=address" ""; then
4182 # we could use a simple skeleton for flags checks, but this also
4183 # detect the static linking issue of ubsan, see also:
4184 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84285
4188 void *tmp = malloc(10);
4190 return *(int *)(tmp + 2);
4195 if compile_prog
"$CPU_CFLAGS -Werror -fsanitize=undefined" ""; then
4199 if check_include
"sanitizer/asan_interface.h" ; then
4200 have_asan_iface_h
=yes
4204 #include <sanitizer/asan_interface.h>
4206 __sanitizer_start_switch_fiber(0, 0, 0);
4210 if compile_prog
"$CPU_CFLAGS -Werror -fsanitize=address" "" ; then
4211 have_asan_iface_fiber
=yes
4215 ##########################################
4217 if test "$fuzzing" = "yes" && test -z "${LIB_FUZZING_ENGINE+xxx}"; then
4218 write_c_fuzzer_skeleton
4219 if compile_prog
"$CPU_CFLAGS -Werror -fsanitize=fuzzer" ""; then
4222 error_exit
"Your compiler doesn't support -fsanitize=fuzzer"
4227 # Thread sanitizer is, for now, much noisier than the other sanitizers;
4228 # keep it separate until that is not the case.
4229 if test "$tsan" = "yes" && test "$sanitizers" = "yes"; then
4230 error_exit
"TSAN is not supported with other sanitiziers."
4233 have_tsan_iface_fiber
=no
4234 if test "$tsan" = "yes" ; then
4236 if compile_prog
"$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then
4240 #include <sanitizer/tsan_interface.h>
4242 __tsan_create_fiber(0);
4246 if compile_prog
"$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then
4247 have_tsan_iface_fiber
=yes
4251 ##########################################
4255 auto | enabled | internal
)
4256 # Simpler to always update submodule, even if not needed.
4257 git_submodules
="${git_submodules} slirp"
4261 # Check for slirp smbd dupport
4262 : ${smbd=${SMBD-/usr/sbin/smbd}}
4263 if test "$slirp_smbd" != "no" ; then
4264 if test "$mingw32" = "yes" ; then
4265 if test "$slirp_smbd" = "yes" ; then
4266 error_exit
"Host smbd not supported on this platform."
4274 ##########################################
4275 # check for usable __NR_keyctl syscall
4277 if test "$linux" = "yes" ; then
4282 #include <asm/unistd.h>
4283 #include <linux/keyctl.h>
4286 return syscall(__NR_keyctl, KEYCTL_READ, 0, NULL, NULL, 0);
4289 if compile_prog
"" "" ; then
4293 if test "$secret_keyring" != "no"
4295 if test "$have_keyring" = "yes"
4299 if test "$secret_keyring" = "yes"
4301 error_exit
"syscall __NR_keyctl requested, \
4302 but not implemented on your system"
4309 ##########################################
4311 # After here, no more $cc or $ld runs
4315 if test "$gcov" = "yes" ; then
4317 elif test "$fortify_source" = "yes" ; then
4318 QEMU_CFLAGS
="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
4324 # Ensure there's only a single GP
4325 QEMU_CFLAGS
="-msmall-data $QEMU_CFLAGS"
4329 if test "$gprof" = "yes" ; then
4330 QEMU_CFLAGS
="-p $QEMU_CFLAGS"
4331 QEMU_LDFLAGS
="-p $QEMU_LDFLAGS"
4334 if test "$have_asan" = "yes"; then
4335 QEMU_CFLAGS
="-fsanitize=address $QEMU_CFLAGS"
4336 QEMU_LDFLAGS
="-fsanitize=address $QEMU_LDFLAGS"
4337 if test "$have_asan_iface_h" = "no" ; then
4338 echo "ASAN build enabled, but ASAN header missing." \
4339 "Without code annotation, the report may be inferior."
4340 elif test "$have_asan_iface_fiber" = "no" ; then
4341 echo "ASAN build enabled, but ASAN header is too old." \
4342 "Without code annotation, the report may be inferior."
4345 if test "$have_tsan" = "yes" ; then
4346 if test "$have_tsan_iface_fiber" = "yes" ; then
4347 QEMU_CFLAGS
="-fsanitize=thread $QEMU_CFLAGS"
4348 QEMU_LDFLAGS
="-fsanitize=thread $QEMU_LDFLAGS"
4350 error_exit
"Cannot enable TSAN due to missing fiber annotation interface."
4352 elif test "$tsan" = "yes" ; then
4353 error_exit
"Cannot enable TSAN due to missing sanitize thread interface."
4355 if test "$have_ubsan" = "yes"; then
4356 QEMU_CFLAGS
="-fsanitize=undefined $QEMU_CFLAGS"
4357 QEMU_LDFLAGS
="-fsanitize=undefined $QEMU_LDFLAGS"
4360 ##########################################
4362 # Exclude --warn-common with TSan to suppress warnings from the TSan libraries.
4363 if test "$solaris" = "no" && test "$tsan" = "no"; then
4364 if $ld --version 2>/dev
/null |
grep "GNU ld" >/dev
/null
2>/dev
/null
; then
4365 QEMU_LDFLAGS
="-Wl,--warn-common $QEMU_LDFLAGS"
4369 # Use ASLR, no-SEH and DEP if available
4370 if test "$mingw32" = "yes" ; then
4371 flags
="--no-seh --nxcompat"
4373 # Disable ASLR for debug builds to allow debugging with gdb
4374 if test "$debug" = "no" ; then
4375 flags
="--dynamicbase $flags"
4378 for flag
in $flags; do
4379 if ld_has
$flag ; then
4380 QEMU_LDFLAGS
="-Wl,$flag $QEMU_LDFLAGS"
4385 # Probe for guest agent support/options
4387 if [ "$guest_agent" != "no" ]; then
4388 if [ "$softmmu" = no
-a "$want_tools" = no
] ; then
4390 elif [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32" = "yes" ] ; then
4392 elif [ "$guest_agent" != yes ]; then
4395 error_exit
"Guest agent is not supported on this platform"
4399 # Guest agent Windows MSI package
4401 if test "$QEMU_GA_MANUFACTURER" = ""; then
4402 QEMU_GA_MANUFACTURER
=QEMU
4404 if test "$QEMU_GA_DISTRO" = ""; then
4405 QEMU_GA_DISTRO
=Linux
4407 if test "$QEMU_GA_VERSION" = ""; then
4408 QEMU_GA_VERSION
=$
(cat $source_path/VERSION
)
4411 QEMU_GA_MSI_MINGW_DLL_PATH
="$($pkg_config --variable=prefix glib-2.0)/bin"
4413 # Mac OS X ships with a broken assembler
4415 if { test "$cpu" = "i386" ||
test "$cpu" = "x86_64"; } && \
4416 test "$targetos" != "Darwin" && test "$targetos" != "SunOS" && \
4417 test "$targetos" != "Haiku" && test "$softmmu" = yes ; then
4418 # Different host OS linkers have different ideas about the name of the ELF
4419 # emulation. Linux and OpenBSD/amd64 use 'elf_i386'; FreeBSD uses the _fbsd
4420 # variant; OpenBSD/i386 uses the _obsd variant; and Windows uses i386pe.
4421 for emu
in elf_i386 elf_i386_fbsd elf_i386_obsd i386pe
; do
4422 if "$ld" -verbose 2>&1 |
grep -q "^[[:space:]]*$emu[[:space:]]*$"; then
4423 ld_i386_emulation
="$emu"
4430 # Only build s390-ccw bios if we're on s390x and the compiler has -march=z900
4431 # or -march=z10 (which is the lowest architecture level that Clang supports)
4432 if test "$cpu" = "s390x" ; then
4434 compile_prog
"-march=z900" ""
4436 if [ $has_z900 = 0 ] || compile_object
"-march=z10 -msoft-float -Werror"; then
4437 if [ $has_z900 != 0 ]; then
4438 echo "WARNING: Your compiler does not support the z900!"
4439 echo " The s390-ccw bios will only work with guest CPUs >= z10."
4441 roms
="$roms s390-ccw"
4442 # SLOF is required for building the s390-ccw firmware on s390x,
4443 # since it is using the libnet code from SLOF for network booting.
4444 git_submodules
="${git_submodules} roms/SLOF"
4448 # Check that the C++ compiler exists and works with the C compiler.
4449 # All the QEMU_CXXFLAGS are based on QEMU_CFLAGS. Keep this at the end to don't miss any other that could be added.
4452 int c_function(void);
4453 int main(void) { return c_function(); }
4460 int c_function(void);
4462 int c_function(void) { return 42; }
4467 if do_cxx
$CXXFLAGS $CONFIGURE_CXXFLAGS $QEMU_CXXFLAGS -o $TMPE $TMPCXX $TMPO $QEMU_LDFLAGS; then
4468 # C++ compiler $cxx works ok with C compiler $cc
4471 echo "C++ compiler $cxx does not work with C compiler $cc"
4472 echo "Disabling C++ specific optional code"
4476 echo "No C++ compiler available; disabling C++ specific optional code"
4480 if !(GIT
="$git" "$source_path/scripts/git-submodule.sh" "$git_submodules_action" "$git_submodules"); then
4484 config_host_mak
="config-host.mak"
4486 echo "# Automatically generated by configure - do not modify" > $config_host_mak
4487 echo >> $config_host_mak
4489 echo all
: >> $config_host_mak
4490 echo "GIT=$git" >> $config_host_mak
4491 echo "GIT_SUBMODULES=$git_submodules" >> $config_host_mak
4492 echo "GIT_SUBMODULES_ACTION=$git_submodules_action" >> $config_host_mak
4494 echo "ARCH=$ARCH" >> $config_host_mak
4496 if test "$debug_tcg" = "yes" ; then
4497 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
4499 if test "$strip_opt" = "yes" ; then
4500 echo "STRIP=${strip}" >> $config_host_mak
4502 if test "$bigendian" = "yes" ; then
4503 echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
4505 if test "$mingw32" = "yes" ; then
4506 echo "CONFIG_WIN32=y" >> $config_host_mak
4507 if test "$guest_agent_with_vss" = "yes" ; then
4508 echo "CONFIG_QGA_VSS=y" >> $config_host_mak
4509 echo "QGA_VSS_PROVIDER=$qga_vss_provider" >> $config_host_mak
4510 echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak
4512 if test "$guest_agent_ntddscsi" = "yes" ; then
4513 echo "CONFIG_QGA_NTDDSCSI=y" >> $config_host_mak
4515 echo "QEMU_GA_MSI_MINGW_DLL_PATH=${QEMU_GA_MSI_MINGW_DLL_PATH}" >> $config_host_mak
4516 echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER}" >> $config_host_mak
4517 echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO}" >> $config_host_mak
4518 echo "QEMU_GA_VERSION=${QEMU_GA_VERSION}" >> $config_host_mak
4520 echo "CONFIG_POSIX=y" >> $config_host_mak
4523 if test "$linux" = "yes" ; then
4524 echo "CONFIG_LINUX=y" >> $config_host_mak
4527 if test "$darwin" = "yes" ; then
4528 echo "CONFIG_DARWIN=y" >> $config_host_mak
4531 if test "$solaris" = "yes" ; then
4532 echo "CONFIG_SOLARIS=y" >> $config_host_mak
4534 if test "$haiku" = "yes" ; then
4535 echo "CONFIG_HAIKU=y" >> $config_host_mak
4537 if test "$static" = "yes" ; then
4538 echo "CONFIG_STATIC=y" >> $config_host_mak
4540 if test "$profiler" = "yes" ; then
4541 echo "CONFIG_PROFILER=y" >> $config_host_mak
4543 if test "$want_tools" = "yes" ; then
4544 echo "CONFIG_TOOLS=y" >> $config_host_mak
4546 if test "$guest_agent" = "yes" ; then
4547 echo "CONFIG_GUEST_AGENT=y" >> $config_host_mak
4549 if test "$slirp_smbd" = "yes" ; then
4550 echo "CONFIG_SLIRP_SMBD=y" >> $config_host_mak
4551 echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak
4553 if test "$vde" = "yes" ; then
4554 echo "CONFIG_VDE=y" >> $config_host_mak
4555 echo "VDE_LIBS=$vde_libs" >> $config_host_mak
4557 if test "$netmap" = "yes" ; then
4558 echo "CONFIG_NETMAP=y" >> $config_host_mak
4560 if test "$l2tpv3" = "yes" ; then
4561 echo "CONFIG_L2TPV3=y" >> $config_host_mak
4563 if test "$gprof" = "yes" ; then
4564 echo "CONFIG_GPROF=y" >> $config_host_mak
4566 echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
4567 for drv
in $audio_drv_list; do
4568 def
=CONFIG_AUDIO_$
(echo $drv | LC_ALL
=C
tr '[a-z]' '[A-Z]')
4569 echo "$def=y" >> $config_host_mak
4571 if test "$alsa" = "yes" ; then
4572 echo "CONFIG_ALSA=y" >> $config_host_mak
4574 echo "ALSA_LIBS=$alsa_libs" >> $config_host_mak
4575 echo "ALSA_CFLAGS=$alsa_cflags" >> $config_host_mak
4576 if test "$libpulse" = "yes" ; then
4577 echo "CONFIG_LIBPULSE=y" >> $config_host_mak
4579 echo "PULSE_LIBS=$pulse_libs" >> $config_host_mak
4580 echo "PULSE_CFLAGS=$pulse_cflags" >> $config_host_mak
4581 echo "COREAUDIO_LIBS=$coreaudio_libs" >> $config_host_mak
4582 echo "DSOUND_LIBS=$dsound_libs" >> $config_host_mak
4583 echo "OSS_LIBS=$oss_libs" >> $config_host_mak
4584 if test "$libjack" = "yes" ; then
4585 echo "CONFIG_LIBJACK=y" >> $config_host_mak
4587 echo "JACK_LIBS=$jack_libs" >> $config_host_mak
4588 if test "$audio_win_int" = "yes" ; then
4589 echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
4591 echo "CONFIG_BDRV_RW_WHITELIST=$block_drv_rw_whitelist" >> $config_host_mak
4592 echo "CONFIG_BDRV_RO_WHITELIST=$block_drv_ro_whitelist" >> $config_host_mak
4593 if test "$block_drv_whitelist_tools" = "yes" ; then
4594 echo "CONFIG_BDRV_WHITELIST_TOOLS=y" >> $config_host_mak
4596 if test "$xfs" = "yes" ; then
4597 echo "CONFIG_XFS=y" >> $config_host_mak
4599 qemu_version
=$
(head $source_path/VERSION
)
4600 echo "PKGVERSION=$pkgversion" >>$config_host_mak
4601 echo "SRC_PATH=$source_path" >> $config_host_mak
4602 echo "TARGET_DIRS=$target_list" >> $config_host_mak
4603 if test "$modules" = "yes"; then
4604 # $shacmd can generate a hash started with digit, which the compiler doesn't
4605 # like as an symbol. So prefix it with an underscore
4606 echo "CONFIG_STAMP=_$( (echo $qemu_version; echo $pkgversion; cat $0) | $shacmd - | cut -f1 -d\ )" >> $config_host_mak
4607 echo "CONFIG_MODULES=y" >> $config_host_mak
4609 if test "$module_upgrades" = "yes"; then
4610 echo "CONFIG_MODULE_UPGRADES=y" >> $config_host_mak
4612 if test "$have_usbfs" = "yes" ; then
4613 echo "CONFIG_USBFS=y" >> $config_host_mak
4615 if test "$gio" = "yes" ; then
4616 echo "CONFIG_GIO=y" >> $config_host_mak
4617 echo "GIO_CFLAGS=$gio_cflags" >> $config_host_mak
4618 echo "GIO_LIBS=$gio_libs" >> $config_host_mak
4620 if test "$gdbus_codegen" != "" ; then
4621 echo "GDBUS_CODEGEN=$gdbus_codegen" >> $config_host_mak
4623 echo "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak
4625 # Work around a system header bug with some kernel/XFS header
4626 # versions where they both try to define 'struct fsxattr':
4627 # xfs headers will not try to redefine structs from linux headers
4628 # if this macro is set.
4629 if test "$have_fsxattr" = "yes" ; then
4630 echo "HAVE_FSXATTR=y" >> $config_host_mak
4632 if test "$xen" = "enabled" ; then
4633 echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak
4634 echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
4635 echo "XEN_CFLAGS=$xen_cflags" >> $config_host_mak
4636 echo "XEN_LIBS=$xen_libs" >> $config_host_mak
4638 if test "$linux_aio" = "yes" ; then
4639 echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
4641 if test "$vhost_scsi" = "yes" ; then
4642 echo "CONFIG_VHOST_SCSI=y" >> $config_host_mak
4644 if test "$vhost_net" = "yes" ; then
4645 echo "CONFIG_VHOST_NET=y" >> $config_host_mak
4647 if test "$vhost_net_user" = "yes" ; then
4648 echo "CONFIG_VHOST_NET_USER=y" >> $config_host_mak
4650 if test "$vhost_net_vdpa" = "yes" ; then
4651 echo "CONFIG_VHOST_NET_VDPA=y" >> $config_host_mak
4653 if test "$vhost_crypto" = "yes" ; then
4654 echo "CONFIG_VHOST_CRYPTO=y" >> $config_host_mak
4656 if test "$vhost_vsock" = "yes" ; then
4657 echo "CONFIG_VHOST_VSOCK=y" >> $config_host_mak
4658 if test "$vhost_user" = "yes" ; then
4659 echo "CONFIG_VHOST_USER_VSOCK=y" >> $config_host_mak
4662 if test "$vhost_kernel" = "yes" ; then
4663 echo "CONFIG_VHOST_KERNEL=y" >> $config_host_mak
4665 if test "$vhost_user" = "yes" ; then
4666 echo "CONFIG_VHOST_USER=y" >> $config_host_mak
4668 if test "$vhost_vdpa" = "yes" ; then
4669 echo "CONFIG_VHOST_VDPA=y" >> $config_host_mak
4671 if test "$vhost_user_fs" = "yes" ; then
4672 echo "CONFIG_VHOST_USER_FS=y" >> $config_host_mak
4674 if test "$iovec" = "yes" ; then
4675 echo "CONFIG_IOVEC=y" >> $config_host_mak
4677 if test "$membarrier" = "yes" ; then
4678 echo "CONFIG_MEMBARRIER=y" >> $config_host_mak
4680 if test "$tcg" = "enabled" -a "$tcg_interpreter" = "true" ; then
4681 echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak
4684 if test "$spice_protocol" = "yes" ; then
4685 echo "CONFIG_SPICE_PROTOCOL=y" >> $config_host_mak
4686 echo "SPICE_PROTOCOL_CFLAGS=$spice_protocol_cflags" >> $config_host_mak
4688 if test "$spice" = "yes" ; then
4689 echo "CONFIG_SPICE=y" >> $config_host_mak
4690 echo "SPICE_CFLAGS=$spice_cflags $spice_protocol_cflags" >> $config_host_mak
4691 echo "SPICE_LIBS=$spice_libs" >> $config_host_mak
4694 if test "$opengl" = "yes" ; then
4695 echo "CONFIG_OPENGL=y" >> $config_host_mak
4696 echo "OPENGL_CFLAGS=$opengl_cflags" >> $config_host_mak
4697 echo "OPENGL_LIBS=$opengl_libs" >> $config_host_mak
4700 if test "$gbm" = "yes" ; then
4701 echo "CONFIG_GBM=y" >> $config_host_mak
4702 echo "GBM_LIBS=$gbm_libs" >> $config_host_mak
4703 echo "GBM_CFLAGS=$gbm_cflags" >> $config_host_mak
4707 if test "$avx2_opt" = "yes" ; then
4708 echo "CONFIG_AVX2_OPT=y" >> $config_host_mak
4711 if test "$avx512f_opt" = "yes" ; then
4712 echo "CONFIG_AVX512F_OPT=y" >> $config_host_mak
4715 # XXX: suppress that
4716 if [ "$bsd" = "yes" ] ; then
4717 echo "CONFIG_BSD=y" >> $config_host_mak
4720 if test "$qom_cast_debug" = "yes" ; then
4721 echo "CONFIG_QOM_CAST_DEBUG=y" >> $config_host_mak
4724 echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak
4725 if test "$coroutine_pool" = "yes" ; then
4726 echo "CONFIG_COROUTINE_POOL=1" >> $config_host_mak
4728 echo "CONFIG_COROUTINE_POOL=0" >> $config_host_mak
4731 if test "$debug_stack_usage" = "yes" ; then
4732 echo "CONFIG_DEBUG_STACK_USAGE=y" >> $config_host_mak
4735 if test "$crypto_afalg" = "yes" ; then
4736 echo "CONFIG_AF_ALG=y" >> $config_host_mak
4739 if test "$have_asan_iface_fiber" = "yes" ; then
4740 echo "CONFIG_ASAN_IFACE_FIBER=y" >> $config_host_mak
4743 if test "$have_tsan" = "yes" && test "$have_tsan_iface_fiber" = "yes" ; then
4744 echo "CONFIG_TSAN=y" >> $config_host_mak
4747 if test "$cpuid_h" = "yes" ; then
4748 echo "CONFIG_CPUID_H=y" >> $config_host_mak
4751 if test "$int128" = "yes" ; then
4752 echo "CONFIG_INT128=y" >> $config_host_mak
4755 if test "$atomic128" = "yes" ; then
4756 echo "CONFIG_ATOMIC128=y" >> $config_host_mak
4759 if test "$cmpxchg128" = "yes" ; then
4760 echo "CONFIG_CMPXCHG128=y" >> $config_host_mak
4763 if test "$atomic64" = "yes" ; then
4764 echo "CONFIG_ATOMIC64=y" >> $config_host_mak
4767 if test "$getauxval" = "yes" ; then
4768 echo "CONFIG_GETAUXVAL=y" >> $config_host_mak
4771 if test "$libssh" = "yes" ; then
4772 echo "CONFIG_LIBSSH=y" >> $config_host_mak
4773 echo "LIBSSH_CFLAGS=$libssh_cflags" >> $config_host_mak
4774 echo "LIBSSH_LIBS=$libssh_libs" >> $config_host_mak
4777 if test "$live_block_migration" = "yes" ; then
4778 echo "CONFIG_LIVE_BLOCK_MIGRATION=y" >> $config_host_mak
4781 if test "$tpm" = "yes"; then
4782 echo 'CONFIG_TPM=y' >> $config_host_mak
4785 echo "TRACE_BACKENDS=$trace_backends" >> $config_host_mak
4786 if have_backend
"nop"; then
4787 echo "CONFIG_TRACE_NOP=y" >> $config_host_mak
4789 if have_backend
"simple"; then
4790 echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak
4791 # Set the appropriate trace file.
4792 trace_file
="\"$trace_file-\" FMT_pid"
4794 if have_backend
"log"; then
4795 echo "CONFIG_TRACE_LOG=y" >> $config_host_mak
4797 if have_backend
"ust"; then
4798 echo "CONFIG_TRACE_UST=y" >> $config_host_mak
4799 echo "LTTNG_UST_LIBS=$lttng_ust_libs" >> $config_host_mak
4801 if have_backend
"dtrace"; then
4802 echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak
4803 if test "$trace_backend_stap" = "yes" ; then
4804 echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak
4807 if have_backend
"ftrace"; then
4808 if test "$linux" = "yes" ; then
4809 echo "CONFIG_TRACE_FTRACE=y" >> $config_host_mak
4811 feature_not_found
"ftrace(trace backend)" "ftrace requires Linux"
4814 if have_backend
"syslog"; then
4815 if test "$posix_syslog" = "yes" ; then
4816 echo "CONFIG_TRACE_SYSLOG=y" >> $config_host_mak
4818 feature_not_found
"syslog(trace backend)" "syslog not available"
4821 echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
4823 if test "$rdma" = "yes" ; then
4824 echo "CONFIG_RDMA=y" >> $config_host_mak
4825 echo "RDMA_LIBS=$rdma_libs" >> $config_host_mak
4828 if test "$pvrdma" = "yes" ; then
4829 echo "CONFIG_PVRDMA=y" >> $config_host_mak
4832 if test "$replication" = "yes" ; then
4833 echo "CONFIG_REPLICATION=y" >> $config_host_mak
4836 if test "$have_af_vsock" = "yes" ; then
4837 echo "CONFIG_AF_VSOCK=y" >> $config_host_mak
4840 if test "$debug_mutex" = "yes" ; then
4841 echo "CONFIG_DEBUG_MUTEX=y" >> $config_host_mak
4844 # Hold two types of flag:
4845 # CONFIG_THREAD_SETNAME_BYTHREAD - we've got a way of setting the name on
4846 # a thread we have a handle to
4847 # CONFIG_PTHREAD_SETNAME_NP_W_TID - A way of doing it on a particular
4849 if test "$pthread_setname_np_w_tid" = "yes" ; then
4850 echo "CONFIG_THREAD_SETNAME_BYTHREAD=y" >> $config_host_mak
4851 echo "CONFIG_PTHREAD_SETNAME_NP_W_TID=y" >> $config_host_mak
4852 elif test "$pthread_setname_np_wo_tid" = "yes" ; then
4853 echo "CONFIG_THREAD_SETNAME_BYTHREAD=y" >> $config_host_mak
4854 echo "CONFIG_PTHREAD_SETNAME_NP_WO_TID=y" >> $config_host_mak
4857 if test "$bochs" = "yes" ; then
4858 echo "CONFIG_BOCHS=y" >> $config_host_mak
4860 if test "$cloop" = "yes" ; then
4861 echo "CONFIG_CLOOP=y" >> $config_host_mak
4863 if test "$dmg" = "yes" ; then
4864 echo "CONFIG_DMG=y" >> $config_host_mak
4866 if test "$qcow1" = "yes" ; then
4867 echo "CONFIG_QCOW1=y" >> $config_host_mak
4869 if test "$vdi" = "yes" ; then
4870 echo "CONFIG_VDI=y" >> $config_host_mak
4872 if test "$vvfat" = "yes" ; then
4873 echo "CONFIG_VVFAT=y" >> $config_host_mak
4875 if test "$qed" = "yes" ; then
4876 echo "CONFIG_QED=y" >> $config_host_mak
4878 if test "$parallels" = "yes" ; then
4879 echo "CONFIG_PARALLELS=y" >> $config_host_mak
4881 if test "$have_mlockall" = "yes" ; then
4882 echo "HAVE_MLOCKALL=y" >> $config_host_mak
4884 if test "$fuzzing" = "yes" ; then
4885 # If LIB_FUZZING_ENGINE is set, assume we are running on OSS-Fuzz, and the
4886 # needed CFLAGS have already been provided
4887 if test -z "${LIB_FUZZING_ENGINE+xxx}" ; then
4888 # Add CFLAGS to tell clang to add fuzzer-related instrumentation to all the
4890 QEMU_CFLAGS
="$QEMU_CFLAGS -fsanitize=fuzzer-no-link"
4891 # To build non-fuzzer binaries with --enable-fuzzing, link everything with
4892 # fsanitize=fuzzer-no-link. Otherwise, the linker will be unable to bind
4893 # the fuzzer-related callbacks added by instrumentation.
4894 QEMU_LDFLAGS
="$QEMU_LDFLAGS -fsanitize=fuzzer-no-link"
4895 # For the actual fuzzer binaries, we need to link against the libfuzzer
4896 # library. Provide the flags for doing this in FUZZ_EXE_LDFLAGS. The meson
4897 # rule for the fuzzer adds these to the link_args. They need to be
4898 # configurable, to support OSS-Fuzz
4899 FUZZ_EXE_LDFLAGS
="-fsanitize=fuzzer"
4901 FUZZ_EXE_LDFLAGS
="$LIB_FUZZING_ENGINE"
4905 if test "$plugins" = "yes" ; then
4906 echo "CONFIG_PLUGIN=y" >> $config_host_mak
4907 # Copy the export object list to the build dir
4908 if test "$ld_dynamic_list" = "yes" ; then
4909 echo "CONFIG_HAS_LD_DYNAMIC_LIST=yes" >> $config_host_mak
4910 ld_symbols
=qemu-plugins-ld.symbols
4911 cp "$source_path/plugins/qemu-plugins.symbols" $ld_symbols
4912 elif test "$ld_exported_symbols_list" = "yes" ; then
4913 echo "CONFIG_HAS_LD_EXPORTED_SYMBOLS_LIST=yes" >> $config_host_mak
4914 ld64_symbols
=qemu-plugins-ld64.symbols
4915 echo "# Automatically generated by configure - do not modify" > $ld64_symbols
4916 grep 'qemu_' "$source_path/plugins/qemu-plugins.symbols" |
sed 's/;//g' | \
4917 sed -E 's/^[[:space:]]*(.*)/_\1/' >> $ld64_symbols
4920 "If \$plugins=yes, either \$ld_dynamic_list or " \
4921 "\$ld_exported_symbols_list should have been set to 'yes'."
4925 if test -n "$gdb_bin"; then
4926 gdb_version
=$
($gdb_bin --version |
head -n 1)
4927 if version_ge
${gdb_version##* } 9.1; then
4928 echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
4932 if test "$secret_keyring" = "yes" ; then
4933 echo "CONFIG_SECRET_KEYRING=y" >> $config_host_mak
4936 echo "ROMS=$roms" >> $config_host_mak
4937 echo "MAKE=$make" >> $config_host_mak
4938 echo "PYTHON=$python" >> $config_host_mak
4939 echo "GENISOIMAGE=$genisoimage" >> $config_host_mak
4940 echo "MESON=$meson" >> $config_host_mak
4941 echo "NINJA=$ninja" >> $config_host_mak
4942 echo "CC=$cc" >> $config_host_mak
4943 echo "HOST_CC=$host_cc" >> $config_host_mak
4944 if $iasl -h > /dev
/null
2>&1; then
4945 echo "CONFIG_IASL=$iasl" >> $config_host_mak
4947 echo "AR=$ar" >> $config_host_mak
4948 echo "AS=$as" >> $config_host_mak
4949 echo "CCAS=$ccas" >> $config_host_mak
4950 echo "CPP=$cpp" >> $config_host_mak
4951 echo "OBJCOPY=$objcopy" >> $config_host_mak
4952 echo "LD=$ld" >> $config_host_mak
4953 echo "CFLAGS_NOPIE=$CFLAGS_NOPIE" >> $config_host_mak
4954 echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
4955 echo "QEMU_CXXFLAGS=$QEMU_CXXFLAGS" >> $config_host_mak
4956 echo "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak
4957 echo "GLIB_LIBS=$glib_libs" >> $config_host_mak
4958 echo "QEMU_LDFLAGS=$QEMU_LDFLAGS" >> $config_host_mak
4959 echo "LD_I386_EMULATION=$ld_i386_emulation" >> $config_host_mak
4960 echo "EXESUF=$EXESUF" >> $config_host_mak
4961 echo "HOST_DSOSUF=$HOST_DSOSUF" >> $config_host_mak
4962 echo "LIBS_QGA=$libs_qga" >> $config_host_mak
4963 if test "$gcov" = "yes" ; then
4964 echo "CONFIG_GCOV=y" >> $config_host_mak
4967 if test "$fuzzing" != "no"; then
4968 echo "CONFIG_FUZZ=y" >> $config_host_mak
4970 echo "FUZZ_EXE_LDFLAGS=$FUZZ_EXE_LDFLAGS" >> $config_host_mak
4972 if test "$rng_none" = "yes"; then
4973 echo "CONFIG_RNG_NONE=y" >> $config_host_mak
4976 # use included Linux headers
4977 if test "$linux" = "yes" ; then
4978 mkdir
-p linux-headers
4996 # For most CPUs the kernel architecture name and QEMU CPU name match.
5000 # For non-KVM architectures we will not have asm headers
5001 if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then
5002 symlink
"$source_path/linux-headers/asm-$linux_arch" linux-headers
/asm
5006 for target
in $target_list; do
5007 target_dir
="$target"
5008 target_name
=$
(echo $target | cut
-d '-' -f 1)
5009 mkdir
-p $target_dir
5011 *-user) symlink
"../qemu-$target_name" "$target_dir/qemu-$target_name" ;;
5012 *) symlink
"../qemu-system-$target_name" "$target_dir/qemu-system-$target_name" ;;
5016 echo "CONFIG_QEMU_INTERP_PREFIX=$interp_prefix" |
sed 's/%M/@0@/' >> $config_host_mak
5017 if test "$default_targets" = "yes"; then
5018 echo "CONFIG_DEFAULT_TARGETS=y" >> $config_host_mak
5021 if test "$numa" = "yes"; then
5022 echo "CONFIG_NUMA=y" >> $config_host_mak
5023 echo "NUMA_LIBS=$numa_libs" >> $config_host_mak
5026 if test "$ccache_cpp2" = "yes"; then
5027 echo "export CCACHE_CPP2=y" >> $config_host_mak
5030 if test "$safe_stack" = "yes"; then
5031 echo "CONFIG_SAFESTACK=y" >> $config_host_mak
5034 # If we're using a separate build tree, set it up now.
5035 # DIRS are directories which we simply mkdir in the build tree;
5036 # LINKS are things to symlink back into the source tree
5037 # (these can be both files and directories).
5038 # Caution: do not add files or directories here using wildcards. This
5039 # will result in problems later if a new file matching the wildcard is
5040 # added to the source tree -- nothing will cause configure to be rerun
5041 # so the build tree will be missing the link back to the new file, and
5042 # tests might fail. Prefer to keep the relevant files in their own
5043 # directory and symlink the directory instead.
5044 # UNLINK is used to remove symlinks from older development versions
5045 # that might get into the way when doing "git update" without doing
5046 # a "make distclean" in between.
5047 DIRS
="tests tests/tcg tests/qapi-schema tests/qtest/libqos"
5048 DIRS
="$DIRS tests/qtest tests/qemu-iotests tests/vm tests/fp tests/qgraph"
5049 DIRS
="$DIRS docs docs/interop fsdev scsi"
5050 DIRS
="$DIRS pc-bios/optionrom pc-bios/s390-ccw"
5051 DIRS
="$DIRS roms/seabios"
5052 DIRS
="$DIRS contrib/plugins/"
5054 LINKS
="$LINKS tests/tcg/Makefile.target"
5055 LINKS
="$LINKS pc-bios/optionrom/Makefile"
5056 LINKS
="$LINKS pc-bios/s390-ccw/Makefile"
5057 LINKS
="$LINKS roms/seabios/Makefile"
5058 LINKS
="$LINKS pc-bios/qemu-icon.bmp"
5059 LINKS
="$LINKS .gdbinit scripts" # scripts needed by relative path in .gdbinit
5060 LINKS
="$LINKS tests/acceptance tests/data"
5061 LINKS
="$LINKS tests/qemu-iotests/check"
5062 LINKS
="$LINKS python"
5063 LINKS
="$LINKS contrib/plugins/Makefile "
5064 UNLINK
="pc-bios/keymaps"
5066 $source_path/pc-bios
/*.bin \
5067 $source_path/pc-bios
/*.elf \
5068 $source_path/pc-bios
/*.lid \
5069 $source_path/pc-bios
/*.rom \
5070 $source_path/pc-bios
/*.dtb \
5071 $source_path/pc-bios
/*.img \
5072 $source_path/pc-bios
/openbios-
* \
5073 $source_path/pc-bios
/u-boot.
* \
5074 $source_path/pc-bios
/edk2-
*.fd.bz2 \
5075 $source_path/pc-bios
/palcode-
*
5077 LINKS
="$LINKS pc-bios/$(basename $bios_file)"
5080 for f
in $LINKS ; do
5081 if [ -e "$source_path/$f" ]; then
5082 symlink
"$source_path/$f" "$f"
5085 for f
in $UNLINK ; do
5086 if [ -L "$f" ]; then
5091 (for i
in $cross_cc_vars; do
5094 export target_list source_path use_containers ARCH
5095 $source_path/tests
/tcg
/configure.sh
)
5097 # temporary config to build submodules
5098 for rom
in seabios
; do
5099 config_mak
=roms
/$rom/config.mak
5100 echo "# Automatically generated by configure - do not modify" > $config_mak
5101 echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
5102 echo "AS=$as" >> $config_mak
5103 echo "CCAS=$ccas" >> $config_mak
5104 echo "CC=$cc" >> $config_mak
5105 echo "BCC=bcc" >> $config_mak
5106 echo "CPP=$cpp" >> $config_mak
5107 echo "OBJCOPY=objcopy" >> $config_mak
5108 echo "IASL=$iasl" >> $config_mak
5109 echo "LD=$ld" >> $config_mak
5110 echo "RANLIB=$ranlib" >> $config_mak
5113 if test "$skip_meson" = no
; then
5114 cross
="config-meson.cross.new"
5116 echo "'$(echo $* | sed "s
/ /','/g
")'"
5119 echo "# Automatically generated by configure - do not modify" > $cross
5120 echo "[properties]" >> $cross
5122 # unroll any custom device configs
5123 if test -n "$device_archs"; then
5124 for a
in $device_archs; do
5125 eval "c=\$devices_${a}"
5126 echo "${a}-softmmu = '$c'" >> $cross
5130 test -z "$cxx" && echo "link_language = 'c'" >> $cross
5131 echo "[built-in options]" >> $cross
5132 echo "c_args = [${CFLAGS:+$(meson_quote $CFLAGS)}]" >> $cross
5133 echo "cpp_args = [${CXXFLAGS:+$(meson_quote $CXXFLAGS)}]" >> $cross
5134 echo "c_link_args = [${LDFLAGS:+$(meson_quote $LDFLAGS)}]" >> $cross
5135 echo "cpp_link_args = [${LDFLAGS:+$(meson_quote $LDFLAGS)}]" >> $cross
5136 echo "[binaries]" >> $cross
5137 echo "c = [$(meson_quote $cc)]" >> $cross
5138 test -n "$cxx" && echo "cpp = [$(meson_quote $cxx)]" >> $cross
5139 test -n "$objcc" && echo "objc = [$(meson_quote $objcc)]" >> $cross
5140 echo "ar = [$(meson_quote $ar)]" >> $cross
5141 echo "nm = [$(meson_quote $nm)]" >> $cross
5142 echo "pkgconfig = [$(meson_quote $pkg_config_exe)]" >> $cross
5143 echo "ranlib = [$(meson_quote $ranlib)]" >> $cross
5144 if has
$sdl2_config; then
5145 echo "sdl2-config = [$(meson_quote $sdl2_config)]" >> $cross
5147 echo "strip = [$(meson_quote $strip)]" >> $cross
5148 echo "windres = [$(meson_quote $windres)]" >> $cross
5149 if test "$cross_compile" = "yes"; then
5150 cross_arg
="--cross-file config-meson.cross"
5151 echo "[host_machine]" >> $cross
5152 if test "$mingw32" = "yes" ; then
5153 echo "system = 'windows'" >> $cross
5155 if test "$linux" = "yes" ; then
5156 echo "system = 'linux'" >> $cross
5158 if test "$darwin" = "yes" ; then
5159 echo "system = 'darwin'" >> $cross
5163 echo "cpu_family = 'x86'" >> $cross
5166 echo "cpu_family = 'x86_64'" >> $cross
5169 echo "cpu_family = 'ppc64'" >> $cross
5172 echo "cpu_family = '$ARCH'" >> $cross
5175 echo "cpu = '$cpu'" >> $cross
5176 if test "$bigendian" = "yes" ; then
5177 echo "endian = 'big'" >> $cross
5179 echo "endian = 'little'" >> $cross
5182 cross_arg
="--native-file config-meson.cross"
5184 mv $cross config-meson.cross
5186 rm -rf meson-private meson-info meson-logs
5188 if ! version_ge
"$($meson --version)" 0.56.0; then
5189 staticpic
=$
(if test "$pie" = yes; then echo true
; else echo false
; fi)
5191 NINJA
=$ninja $meson setup \
5192 --prefix "$prefix" \
5193 --libdir "$libdir" \
5194 --libexecdir "$libexecdir" \
5195 --bindir "$bindir" \
5196 --includedir "$includedir" \
5197 --datadir "$datadir" \
5198 --mandir "$mandir" \
5199 --sysconfdir "$sysconfdir" \
5200 --localedir "$localedir" \
5201 --localstatedir "$local_statedir" \
5202 -Ddocdir="$docdir" \
5203 -Dqemu_firmwarepath="$firmwarepath" \
5204 -Dqemu_suffix="$qemu_suffix" \
5205 -Doptimization=$
(if test "$debug" = yes; then echo 0; else echo 2; fi) \
5206 -Ddebug=$
(if test "$debug_info" = yes; then echo true
; else echo false
; fi) \
5207 -Dwerror=$
(if test "$werror" = yes; then echo true
; else echo false
; fi) \
5208 -Dstrip=$
(if test "$strip_opt" = yes; then echo true
; else echo false
; fi) \
5209 -Db_pie=$
(if test "$pie" = yes; then echo true
; else echo false
; fi) \
5210 ${staticpic:+-Db_staticpic=$staticpic} \
5211 -Db_coverage=$
(if test "$gcov" = yes; then echo true
; else echo false
; fi) \
5212 -Db_lto=$lto -Dcfi=$cfi -Dcfi_debug=$cfi_debug \
5213 -Dmalloc=$malloc -Dmalloc_trim=$malloc_trim -Dsparse=$sparse \
5214 -Dkvm=$kvm -Dhax=$hax -Dwhpx=$whpx -Dhvf=$hvf -Dnvmm=$nvmm \
5215 -Dxen=$xen -Dxen_pci_passthrough=$xen_pci_passthrough -Dtcg=$tcg \
5216 -Dcocoa=$cocoa -Dgtk=$gtk -Dmpath=$mpath -Dsdl=$sdl -Dsdl_image=$sdl_image \
5217 -Dlibusb=$libusb -Dsmartcard=$smartcard -Dusb_redir=$usb_redir -Dvte=$vte \
5218 -Dvnc=$vnc -Dvnc_sasl=$vnc_sasl -Dvnc_jpeg=$vnc_jpeg -Dvnc_png=$vnc_png \
5219 -Dgettext=$gettext -Dxkbcommon=$xkbcommon -Du2f=$u2f -Dvirtiofsd=$virtiofsd \
5220 -Dcapstone=$capstone -Dslirp=$slirp -Dfdt=$fdt -Dbrlapi=$brlapi \
5221 -Dcurl=$curl -Dglusterfs=$glusterfs -Dbzip2=$bzip2 -Dlibiscsi=$libiscsi \
5222 -Dlibnfs=$libnfs -Diconv=$iconv -Dcurses=$curses -Dlibudev=$libudev\
5223 -Drbd=$rbd -Dlzo=$lzo -Dsnappy=$snappy -Dlzfse=$lzfse -Dlibxml2=$libxml2 \
5224 -Dlibdaxctl=$libdaxctl -Dlibpmem=$libpmem -Dlinux_io_uring=$linux_io_uring \
5225 -Dgnutls=$gnutls -Dnettle=$nettle -Dgcrypt=$gcrypt -Dauth_pam=$auth_pam \
5226 -Dzstd=$zstd -Dseccomp=$seccomp -Dvirtfs=$virtfs -Dcap_ng=$cap_ng \
5227 -Dattr=$attr -Ddefault_devices=$default_devices -Dvirglrenderer=$virglrenderer \
5228 -Ddocs=$docs -Dsphinx_build=$sphinx_build -Dinstall_blobs=$blobs \
5229 -Dvhost_user_blk_server=$vhost_user_blk_server -Dmultiprocess=$multiprocess \
5230 -Dfuse=$fuse -Dfuse_lseek=$fuse_lseek -Dguest_agent_msi=$guest_agent_msi -Dbpf=$bpf\
5231 $
(if test "$default_features" = no
; then echo "-Dauto_features=disabled"; fi) \
5232 -Dtcg_interpreter=$tcg_interpreter \
5234 "$PWD" "$source_path"
5236 if test "$?" -ne 0 ; then
5237 error_exit
"meson setup failed"
5240 if test -f meson-private
/cmd_line.txt
; then
5241 # Adjust old command line options whose type was changed
5242 # Avoids having to use "setup --wipe" when Meson is upgraded
5244 s/^gettext = true$/gettext = auto/;
5245 s/^gettext = false$/gettext = disabled/;
5246 print;' meson-private
/cmd_line.txt
5250 if test -n "${deprecated_features}"; then
5251 echo "Warning, deprecated features enabled."
5252 echo "Please see docs/system/deprecated.rst"
5253 echo " features: ${deprecated_features}"
5256 # Create list of config switches that should be poisoned in common code...
5257 # but filter out CONFIG_TCG and CONFIG_USER_ONLY which are special.
5258 target_configs_h
=$
(ls *-config-devices.h
*-config-target.h
2>/dev
/null
)
5259 if test -n "$target_configs_h" ; then
5260 sed -n -e '/CONFIG_TCG/d' -e '/CONFIG_USER_ONLY/d' \
5261 -e '/^#define / { s///; s/ .*//; s/^/#pragma GCC poison /p; }' \
5262 $target_configs_h |
sort -u > config-poison.h
5267 # Save the configure command line for later reuse.
5268 cat <<EOD >config.status
5270 # Generated by configure.
5271 # Run this file to recreate the current configuration.
5272 # Compiler output produced by configure, useful for debugging
5273 # configure, is in config.log if it exists.
5279 eval envval
=\$
$envname
5281 if test -n "$envval"
5283 echo "$envname='$envval'" >> config.status
5284 echo "export $envname" >> config.status
5286 echo "unset $envname" >> config.status
5290 # Preserve various env variables that influence what
5291 # features/build target configure will detect
5297 preserve_env INSTALL
5299 preserve_env LD_LIBRARY_PATH
5300 preserve_env LIBTOOL
5303 preserve_env OBJCOPY
5305 preserve_env PKG_CONFIG
5306 preserve_env PKG_CONFIG_LIBDIR
5307 preserve_env PKG_CONFIG_PATH
5309 preserve_env SDL2_CONFIG
5312 preserve_env WINDRES
5314 printf "exec" >>config.status
5315 for i
in "$0" "$@"; do
5316 test "$i" = --skip-meson ||
printf " %s" "$(quote_sh "$i")" >>config.status
5318 echo ' "$@"' >>config.status
5319 chmod +x config.status