bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 3 | # qemu configure script (c) 2003 Fabrice Bellard |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 4 | # |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 5 | |
Cornelia Huck | 99519e6 | 2014-05-28 12:39:17 +0200 | [diff] [blame] | 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 |
| 10 | |
John Snow | 5e4dfd3 | 2015-10-28 13:56:40 -0400 | [diff] [blame] | 11 | # Don't allow CCACHE, if present, to use cached results of compile tests! |
| 12 | export CCACHE_RECACHE=yes |
| 13 | |
Daniel P. Berrangé | dedad02 | 2020-08-21 12:22:04 +0200 | [diff] [blame] | 14 | # make source path absolute |
| 15 | source_path=$(cd "$(dirname -- "$0")"; pwd) |
| 16 | |
| 17 | if test "$PWD" = "$source_path" |
| 18 | then |
| 19 | echo "Using './build' as the directory for build output" |
| 20 | |
| 21 | MARKER=build/auto-created-by-configure |
| 22 | |
| 23 | if test -e build |
| 24 | then |
| 25 | if test -f $MARKER |
| 26 | then |
| 27 | rm -rf build |
| 28 | else |
| 29 | echo "ERROR: ./build dir already exists and was not previously created by configure" |
| 30 | exit 1 |
| 31 | fi |
| 32 | fi |
| 33 | |
| 34 | mkdir build |
| 35 | touch $MARKER |
| 36 | |
| 37 | cat > GNUmakefile <<'EOF' |
| 38 | # This file is auto-generated by configure to support in-source tree |
| 39 | # 'make' command invocation |
| 40 | |
| 41 | ifeq ($(MAKECMDGOALS),) |
| 42 | recurse: all |
| 43 | endif |
| 44 | |
| 45 | .NOTPARALLEL: % |
| 46 | %: force |
| 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 ; \ |
| 51 | then \ |
| 52 | rm -rf build GNUmakefile ; \ |
| 53 | fi |
| 54 | force: ; |
| 55 | .PHONY: force |
| 56 | GNUmakefile: ; |
| 57 | |
| 58 | EOF |
| 59 | cd build |
| 60 | exec $source_path/configure "$@" |
| 61 | fi |
| 62 | |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 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.) |
| 68 | TMPDIR1="config-temp" |
| 69 | rm -rf "${TMPDIR1}" |
| 70 | mkdir -p "${TMPDIR1}" |
| 71 | if [ $? -ne 0 ]; then |
| 72 | echo "ERROR: failed to create temporary directory" |
| 73 | exit 1 |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 74 | fi |
| 75 | |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 76 | TMPB="qemu-conf" |
| 77 | TMPC="${TMPDIR1}/${TMPB}.c" |
Don Slutz | 66518bf | 2014-01-02 21:12:46 -0500 | [diff] [blame] | 78 | TMPO="${TMPDIR1}/${TMPB}.o" |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 79 | TMPCXX="${TMPDIR1}/${TMPB}.cxx" |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 80 | TMPE="${TMPDIR1}/${TMPB}.exe" |
Emilio G. Cota | 26fffe2 | 2018-10-21 13:56:29 -0400 | [diff] [blame] | 81 | TMPTXT="${TMPDIR1}/${TMPB}.txt" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 82 | |
Gerd Hoffmann | da1d85e | 2010-04-23 13:44:10 +0200 | [diff] [blame] | 83 | rm -f config.log |
malc | 9ac81bb | 2008-11-29 20:09:56 +0000 | [diff] [blame] | 84 | |
Peter Maydell | b48e361 | 2011-11-23 17:26:44 +0000 | [diff] [blame] | 85 | # Print a helpful header at the top of config.log |
| 86 | echo "# QEMU configure log $(date)" >> config.log |
Peter Maydell | 979ae16 | 2012-03-07 12:16:29 +0000 | [diff] [blame] | 87 | printf "# Configured with:" >> config.log |
| 88 | printf " '%s'" "$0" "$@" >> config.log |
| 89 | echo >> config.log |
Peter Maydell | b48e361 | 2011-11-23 17:26:44 +0000 | [diff] [blame] | 90 | echo "#" >> config.log |
| 91 | |
Paolo Bonzini | 835af89 | 2020-09-08 13:20:45 +0200 | [diff] [blame] | 92 | quote_sh() { |
| 93 | printf "%s" "$1" | sed "s,','\\\\'',g; s,.*,'&'," |
| 94 | } |
| 95 | |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 96 | print_error() { |
| 97 | (echo |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 98 | echo "ERROR: $1" |
| 99 | while test -n "$2"; do |
| 100 | echo " $2" |
| 101 | shift |
| 102 | done |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 103 | echo) >&2 |
| 104 | } |
| 105 | |
| 106 | error_exit() { |
| 107 | print_error "$@" |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 108 | exit 1 |
| 109 | } |
| 110 | |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 111 | do_compiler() { |
| 112 | # Run the compiler, capturing its output to the log. First argument |
| 113 | # is compiler binary to execute. |
David CARLIER | 630d86b | 2020-07-18 14:19:10 +0100 | [diff] [blame] | 114 | compiler="$1" |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 115 | shift |
Ian Jackson | 8bbe05d | 2017-09-25 16:41:03 +0100 | [diff] [blame] | 116 | if test -n "$BASH_VERSION"; then eval ' |
| 117 | echo >>config.log " |
| 118 | funcs: ${FUNCNAME[*]} |
| 119 | lines: ${BASH_LINENO[*]}" |
| 120 | '; fi |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 121 | echo $compiler "$@" >> config.log |
| 122 | $compiler "$@" >> config.log 2>&1 || return $? |
Peter Maydell | 8dc38a7 | 2012-07-18 15:10:28 +0100 | [diff] [blame] | 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 |
| 128 | return 0 |
| 129 | fi |
| 130 | # Don't bother rerunning the compile if we were already using -Werror |
| 131 | case "$*" in |
| 132 | *-Werror*) |
| 133 | return 0 |
| 134 | ;; |
| 135 | esac |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 136 | echo $compiler -Werror "$@" >> config.log |
| 137 | $compiler -Werror "$@" >> config.log 2>&1 && return $? |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 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." |
Peter Maydell | 8dc38a7 | 2012-07-18 15:10:28 +0100 | [diff] [blame] | 142 | } |
| 143 | |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 144 | do_cc() { |
| 145 | do_compiler "$cc" "$@" |
| 146 | } |
| 147 | |
| 148 | do_cxx() { |
| 149 | do_compiler "$cxx" "$@" |
| 150 | } |
| 151 | |
Richard Henderson | 00849b9 | 2020-06-17 13:13:06 -0700 | [diff] [blame] | 152 | # Append $2 to the variable named $1, with space separation |
| 153 | add_to() { |
| 154 | eval $1=\${$1:+\"\$$1 \"}\$2 |
| 155 | } |
| 156 | |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 157 | update_cxxflags() { |
| 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. |
Paolo Bonzini | 5342204 | 2019-07-29 12:50:04 +0200 | [diff] [blame] | 161 | QEMU_CXXFLAGS="$QEMU_CXXFLAGS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS" |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 162 | CONFIGURE_CXXFLAGS=$(echo "$CONFIGURE_CFLAGS" | sed s/-std=gnu99/-std=gnu++11/) |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 163 | for arg in $QEMU_CFLAGS; do |
| 164 | case $arg in |
| 165 | -Wstrict-prototypes|-Wmissing-prototypes|-Wnested-externs|\ |
| 166 | -Wold-style-declaration|-Wold-style-definition|-Wredundant-decls) |
| 167 | ;; |
| 168 | *) |
| 169 | QEMU_CXXFLAGS=${QEMU_CXXFLAGS:+$QEMU_CXXFLAGS }$arg |
| 170 | ;; |
| 171 | esac |
| 172 | done |
| 173 | } |
| 174 | |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 175 | compile_object() { |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 176 | local_cflags="$1" |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 177 | do_cc $CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -c -o $TMPO $TMPC |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | compile_prog() { |
| 181 | local_cflags="$1" |
| 182 | local_ldflags="$2" |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 183 | do_cc $CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC \ |
| 184 | $LDFLAGS $CONFIGURE_LDFLAGS $QEMU_LDFLAGS $local_ldflags |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 185 | } |
| 186 | |
Paolo Bonzini | 11568d6 | 2010-12-23 11:43:58 +0100 | [diff] [blame] | 187 | # symbolically link $1 to $2. Portable version of "ln -sf". |
| 188 | symlink() { |
Stefan Weil | 72b8b5a | 2012-03-19 13:20:47 +0100 | [diff] [blame] | 189 | rm -rf "$2" |
Anthony Liguori | ec5b06d | 2012-06-06 16:57:00 +0800 | [diff] [blame] | 190 | mkdir -p "$(dirname "$2")" |
Stefan Weil | 72b8b5a | 2012-03-19 13:20:47 +0100 | [diff] [blame] | 191 | ln -s "$1" "$2" |
Paolo Bonzini | 11568d6 | 2010-12-23 11:43:58 +0100 | [diff] [blame] | 192 | } |
| 193 | |
Loïc Minier | 0dba619 | 2010-01-28 21:26:51 +0000 | [diff] [blame] | 194 | # check whether a command is available to this shell (may be either an |
| 195 | # executable or a builtin) |
| 196 | has() { |
| 197 | type "$1" >/dev/null 2>&1 |
| 198 | } |
| 199 | |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 200 | version_ge () { |
Alex Bennée | 2df52b9 | 2021-02-02 13:39:52 +0000 | [diff] [blame] | 201 | local_ver1=$(expr "$1" : '\([0-9.]*\)' | tr . ' ') |
| 202 | local_ver2=$(echo "$2" | tr . ' ') |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 203 | while true; do |
| 204 | set x $local_ver1 |
| 205 | local_first=${2-0} |
Stefano Garzarella | c44a33e | 2020-08-21 22:35:58 +0200 | [diff] [blame] | 206 | # 'shift 2' if $2 is set, or 'shift' if $2 is not set |
| 207 | shift ${2:+2} |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 208 | local_ver1=$* |
| 209 | set x $local_ver2 |
| 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 |
Stefano Garzarella | c44a33e | 2020-08-21 22:35:58 +0200 | [diff] [blame] | 214 | shift ${2:+2} |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 215 | local_ver2=$* |
| 216 | done |
| 217 | } |
| 218 | |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 219 | have_backend () { |
| 220 | echo "$trace_backends" | grep "$1" >/dev/null |
| 221 | } |
| 222 | |
Paolo Bonzini | 3b6b755 | 2012-09-17 11:59:41 +0200 | [diff] [blame] | 223 | glob() { |
| 224 | eval test -z '"${1#'"$2"'}"' |
| 225 | } |
| 226 | |
Christian Borntraeger | e9a3591 | 2017-08-23 12:16:23 +0200 | [diff] [blame] | 227 | ld_has() { |
| 228 | $ld --help 2>/dev/null | grep ".$1" >/dev/null 2>&1 |
| 229 | } |
| 230 | |
Antonio Ospite | 4ace32e | 2019-05-26 16:47:47 +0200 | [diff] [blame] | 231 | if printf %s\\n "$source_path" "$PWD" | grep -q "[[:space:]:]"; |
| 232 | then |
| 233 | error_exit "main directory cannot contain spaces nor colons" |
| 234 | fi |
| 235 | |
Antonio Ospite | 1421182 | 2019-05-26 16:47:46 +0200 | [diff] [blame] | 236 | # default parameters |
Juan Quintela | 2ff6b91 | 2009-08-03 14:45:55 +0200 | [diff] [blame] | 237 | cpu="" |
Michael S. Tsirkin | a31a864 | 2013-07-24 18:56:03 +0300 | [diff] [blame] | 238 | iasl="iasl" |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 239 | interp_prefix="/usr/gnemul/qemu-%M" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 240 | static="no" |
Joelle van Dyne | 3812c0c | 2021-01-25 17:24:48 -0800 | [diff] [blame] | 241 | cross_compile="no" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 242 | cross_prefix="" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 243 | audio_drv_list="" |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 244 | block_drv_rw_whitelist="" |
| 245 | block_drv_ro_whitelist="" |
Peter Maydell | e49d021 | 2012-12-07 15:39:13 +0000 | [diff] [blame] | 246 | host_cc="cc" |
malc | d563163 | 2009-10-10 01:13:41 +0400 | [diff] [blame] | 247 | audio_win_int="" |
Michael Roth | 957f1f9 | 2011-08-11 15:38:12 -0500 | [diff] [blame] | 248 | libs_qga="" |
Gerd Hoffmann | 5bc62e0 | 2012-02-08 13:54:13 +0100 | [diff] [blame] | 249 | debug_info="yes" |
Daniele Buono | cdad781 | 2020-12-04 18:06:11 -0500 | [diff] [blame] | 250 | lto="false" |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 251 | stack_protector="" |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 252 | safe_stack="" |
Alex Bennée | afc3a8f | 2019-11-28 16:35:24 +0100 | [diff] [blame] | 253 | use_containers="yes" |
Alex Bennée | f238539 | 2020-04-30 20:01:14 +0100 | [diff] [blame] | 254 | gdb_bin=$(command -v "gdb-multiarch" || command -v "gdb") |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 255 | |
Daniel P. Berrange | 9271282 | 2017-09-29 11:11:58 +0100 | [diff] [blame] | 256 | if test -e "$source_path/.git" |
| 257 | then |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 258 | git_submodules_action="update" |
Daniel P. Berrange | 9271282 | 2017-09-29 11:11:58 +0100 | [diff] [blame] | 259 | else |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 260 | git_submodules_action="ignore" |
Daniel P. Berrange | 9271282 | 2017-09-29 11:11:58 +0100 | [diff] [blame] | 261 | fi |
Paolo Bonzini | 2d652f2 | 2021-05-12 09:21:56 +0200 | [diff] [blame] | 262 | |
| 263 | git_submodules="ui/keycodemapdb" |
Daniel P. Berrange | cc84d63 | 2017-10-20 15:02:43 +0100 | [diff] [blame] | 264 | git="git" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 265 | |
Stefan Weil | afb63eb | 2012-09-26 22:04:38 +0200 | [diff] [blame] | 266 | # Don't accept a target_list environment variable. |
| 267 | unset target_list |
Alex Bennée | 447e133 | 2019-03-19 11:59:12 +0000 | [diff] [blame] | 268 | unset target_list_exclude |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 269 | |
| 270 | # Default value for a variable defining feature "foo". |
| 271 | # * foo="no" feature will only be used if --enable-foo arg is given |
| 272 | # * foo="" feature will be searched for, and if found, will be used |
| 273 | # unless --disable-foo is given |
| 274 | # * foo="yes" this value will only be set by --enable-foo flag. |
| 275 | # feature will searched for, |
| 276 | # if not found, configure exits with error |
| 277 | # |
| 278 | # Always add --enable-foo and --disable-foo command line args. |
| 279 | # Distributions want to ensure that several features are compiled in, and it |
| 280 | # is impossible without a --enable-foo that exits if a feature is not found. |
| 281 | |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 282 | default_feature="" |
| 283 | # parse CC options second |
| 284 | for opt do |
| 285 | optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') |
| 286 | case "$opt" in |
| 287 | --without-default-features) |
| 288 | default_feature="no" |
| 289 | ;; |
| 290 | esac |
| 291 | done |
| 292 | |
Paolo Bonzini | 8c6d4ff | 2020-11-17 13:02:17 +0100 | [diff] [blame] | 293 | brlapi="auto" |
Paolo Bonzini | f9cd86f | 2020-11-17 12:43:15 +0100 | [diff] [blame] | 294 | curl="auto" |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 295 | iconv="auto" |
| 296 | curses="auto" |
Yonggang Luo | e366766 | 2020-10-16 06:06:25 +0800 | [diff] [blame] | 297 | docs="auto" |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 298 | fdt="auto" |
Vincenzo Maffione | 5895213 | 2013-11-06 11:44:06 +0100 | [diff] [blame] | 299 | netmap="no" |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 300 | sdl="auto" |
| 301 | sdl_image="auto" |
Joelle van Dyne | 422a5fd | 2021-01-25 17:24:56 -0800 | [diff] [blame] | 302 | coreaudio="auto" |
Misono Tomohiro | cece116 | 2020-10-08 19:31:33 +0900 | [diff] [blame] | 303 | virtiofsd="auto" |
Paolo Bonzini | 69202b4 | 2020-11-17 14:46:21 +0100 | [diff] [blame] | 304 | virtfs="auto" |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 305 | libudev="auto" |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 306 | mpath="auto" |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 307 | vnc="enabled" |
Paolo Bonzini | deb6237 | 2020-09-01 07:51:16 -0400 | [diff] [blame] | 308 | sparse="auto" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 309 | vde="$default_feature" |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 310 | vnc_sasl="auto" |
| 311 | vnc_jpeg="auto" |
| 312 | vnc_png="auto" |
Laurent Vivier | 4113f4c | 2020-08-24 17:24:29 +0200 | [diff] [blame] | 313 | xkbcommon="auto" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 314 | xen="$default_feature" |
| 315 | xen_ctrl_version="$default_feature" |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 316 | xen_pci_passthrough="auto" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 317 | linux_aio="$default_feature" |
| 318 | linux_io_uring="$default_feature" |
Paolo Bonzini | 727c8bb | 2020-11-17 14:46:58 +0100 | [diff] [blame] | 319 | cap_ng="auto" |
Paolo Bonzini | f7f2d65 | 2020-11-17 14:45:24 +0100 | [diff] [blame] | 320 | attr="auto" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 321 | xfs="$default_feature" |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 322 | tcg="enabled" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 323 | membarrier="$default_feature" |
| 324 | vhost_net="$default_feature" |
| 325 | vhost_crypto="$default_feature" |
| 326 | vhost_scsi="$default_feature" |
| 327 | vhost_vsock="$default_feature" |
Stefan Hajnoczi | d88618f | 2020-11-10 17:11:21 +0000 | [diff] [blame] | 328 | vhost_user="no" |
Stefan Hajnoczi | e5e856c | 2020-11-10 17:11:19 +0000 | [diff] [blame] | 329 | vhost_user_blk_server="auto" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 330 | vhost_user_fs="$default_feature" |
Paolo Bonzini | 3bd40ec | 2020-09-18 05:22:37 -0400 | [diff] [blame] | 331 | kvm="auto" |
| 332 | hax="auto" |
| 333 | hvf="auto" |
| 334 | whpx="auto" |
Reinoud Zandijk | 74a414a | 2021-04-02 22:25:32 +0200 | [diff] [blame] | 335 | nvmm="auto" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 336 | rdma="$default_feature" |
| 337 | pvrdma="$default_feature" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 338 | gprof="no" |
| 339 | debug_tcg="no" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 340 | debug="no" |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 341 | sanitizers="no" |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 342 | tsan="no" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 343 | fortify_source="$default_feature" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 344 | strip_opt="yes" |
Paolo Bonzini | 23a77b2 | 2020-12-14 12:01:45 +0100 | [diff] [blame] | 345 | tcg_interpreter="false" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 346 | bigendian="no" |
| 347 | mingw32="no" |
Blue Swirl | 1d728c3 | 2012-05-01 18:45:39 +0000 | [diff] [blame] | 348 | gcov="no" |
Miroslav Rezanina | c732827 | 2021-03-31 10:18:45 +0200 | [diff] [blame] | 349 | EXESUF="" |
Paolo Bonzini | 484e2cc | 2019-12-12 13:30:36 +0100 | [diff] [blame] | 350 | HOST_DSOSUF=".so" |
Fam Zheng | 1796926 | 2014-02-10 14:48:56 +0800 | [diff] [blame] | 351 | modules="no" |
Christian Ehrhardt | bd83c86 | 2020-03-10 15:58:06 +0100 | [diff] [blame] | 352 | module_upgrades="no" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 353 | prefix="/usr/local" |
Marc-André Lureau | 10ff82d | 2020-08-26 15:04:13 +0400 | [diff] [blame] | 354 | qemu_suffix="qemu" |
Paolo Bonzini | 4d34a86 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 355 | slirp="auto" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 356 | oss_lib="" |
| 357 | bsd="no" |
| 358 | linux="no" |
| 359 | solaris="no" |
| 360 | profiler="no" |
Paolo Bonzini | b4e312e | 2020-09-01 11:28:59 -0400 | [diff] [blame] | 361 | cocoa="auto" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 362 | softmmu="yes" |
| 363 | linux_user="no" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 364 | bsd_user="no" |
Paolo Bonzini | c8d5450 | 2020-10-16 03:32:52 -0400 | [diff] [blame] | 365 | blobs="true" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 366 | pkgversion="" |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 367 | pie="" |
Paolo Bonzini | 3556c23 | 2013-05-10 14:16:40 +0200 | [diff] [blame] | 368 | qom_cast_debug="yes" |
Paolo Bonzini | baf86d6 | 2016-01-07 16:55:31 +0300 | [diff] [blame] | 369 | trace_backends="log" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 370 | trace_file="trace" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 371 | spice="$default_feature" |
Gerd Hoffmann | 58d3f3f | 2021-05-19 07:39:32 +0200 | [diff] [blame] | 372 | spice_protocol="auto" |
Paolo Bonzini | fabd1e9 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 373 | rbd="auto" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 374 | smartcard="$default_feature" |
César Belley | 0a40bcb | 2020-08-26 13:42:04 +0200 | [diff] [blame] | 375 | u2f="auto" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 376 | libusb="$default_feature" |
| 377 | usb_redir="$default_feature" |
| 378 | opengl="$default_feature" |
Richard Henderson | 5dd8990 | 2017-07-18 18:40:18 -1000 | [diff] [blame] | 379 | cpuid_h="no" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 380 | avx2_opt="$default_feature" |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 381 | capstone="auto" |
Paolo Bonzini | 0c32a0a | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 382 | lzo="auto" |
Paolo Bonzini | 241611e | 2020-11-17 13:32:34 +0100 | [diff] [blame] | 383 | snappy="auto" |
Paolo Bonzini | 29ba611 | 2020-11-17 13:07:52 +0100 | [diff] [blame] | 384 | bzip2="auto" |
Paolo Bonzini | ecea369 | 2020-11-17 13:35:28 +0100 | [diff] [blame] | 385 | lzfse="auto" |
Paolo Bonzini | b1def33 | 2020-11-17 13:37:39 +0100 | [diff] [blame] | 386 | zstd="auto" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 387 | guest_agent="$default_feature" |
Tomoki Sekiyama | d9840e2 | 2013-08-07 11:40:03 -0400 | [diff] [blame] | 388 | guest_agent_with_vss="no" |
Michael Roth | 50cbebb | 2015-07-07 18:10:09 -0500 | [diff] [blame] | 389 | guest_agent_ntddscsi="no" |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 390 | guest_agent_msi="auto" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 391 | vss_win32_sdk="$default_feature" |
Tomoki Sekiyama | d9840e2 | 2013-08-07 11:40:03 -0400 | [diff] [blame] | 392 | win_sdk="no" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 393 | want_tools="$default_feature" |
Paolo Bonzini | 9db405a | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 394 | libiscsi="auto" |
Paolo Bonzini | 30045c0 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 395 | libnfs="auto" |
Alex Barcelo | 519175a | 2012-02-28 12:25:50 +0100 | [diff] [blame] | 396 | coroutine="" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 397 | coroutine_pool="$default_feature" |
Peter Lieven | 7d992e4 | 2016-09-27 11:58:45 +0200 | [diff] [blame] | 398 | debug_stack_usage="no" |
Longpeng(Mike) | f0d92b5 | 2017-07-14 14:04:05 -0400 | [diff] [blame] | 399 | crypto_afalg="no" |
Daniele Buono | 9e62ba4 | 2020-12-04 18:06:14 -0500 | [diff] [blame] | 400 | cfi="false" |
| 401 | cfi_debug="false" |
Paolo Bonzini | 90835c2 | 2020-11-17 14:22:24 +0100 | [diff] [blame] | 402 | seccomp="auto" |
Paolo Bonzini | 08821ca | 2020-11-17 13:01:26 +0100 | [diff] [blame] | 403 | glusterfs="auto" |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 404 | gtk="auto" |
Daniel P. Berrange | a1c5e94 | 2016-06-06 10:05:06 +0100 | [diff] [blame] | 405 | tls_priority="NORMAL" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 406 | gnutls="$default_feature" |
| 407 | nettle="$default_feature" |
Daniel P. Berrangé | dc2207a | 2019-10-14 17:28:27 +0100 | [diff] [blame] | 408 | nettle_xts="no" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 409 | gcrypt="$default_feature" |
Daniel P. Berrangé | e057694 | 2019-10-14 17:28:27 +0100 | [diff] [blame] | 410 | gcrypt_xts="no" |
| 411 | qemu_private_xts="yes" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 412 | auth_pam="$default_feature" |
| 413 | vte="$default_feature" |
| 414 | virglrenderer="$default_feature" |
| 415 | tpm="$default_feature" |
| 416 | libssh="$default_feature" |
| 417 | live_block_migration=${default_feature:-yes} |
| 418 | numa="$default_feature" |
Fam Zheng | 2847b46 | 2015-03-26 11:03:12 +0800 | [diff] [blame] | 419 | tcmalloc="no" |
Alexandre Derumier | 7b01cb9 | 2015-06-19 12:56:58 +0200 | [diff] [blame] | 420 | jemalloc="no" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 421 | replication=${default_feature:-yes} |
| 422 | bochs=${default_feature:-yes} |
| 423 | cloop=${default_feature:-yes} |
| 424 | dmg=${default_feature:-yes} |
| 425 | qcow1=${default_feature:-yes} |
| 426 | vdi=${default_feature:-yes} |
| 427 | vvfat=${default_feature:-yes} |
| 428 | qed=${default_feature:-yes} |
| 429 | parallels=${default_feature:-yes} |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 430 | libxml2="$default_feature" |
Paolo Bonzini | ba59fb7 | 2018-06-13 14:23:08 +0200 | [diff] [blame] | 431 | debug_mutex="no" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 432 | libpmem="$default_feature" |
Paolo Bonzini | 7bc3ca7 | 2020-11-20 08:38:22 +0100 | [diff] [blame] | 433 | default_devices="true" |
Alex Bennée | 40e8c6f | 2019-06-13 14:52:25 +0100 | [diff] [blame] | 434 | plugins="no" |
Alexander Bulekov | adc2802 | 2020-02-19 23:11:14 -0500 | [diff] [blame] | 435 | fuzzing="no" |
Marek Marczykowski-Górecki | b767d25 | 2020-05-20 15:20:23 +0200 | [diff] [blame] | 436 | rng_none="no" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 437 | secret_keyring="$default_feature" |
| 438 | libdaxctl="$default_feature" |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 439 | meson="" |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 440 | ninja="" |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 441 | skip_meson=no |
Alex Bennée | 0e8e77d | 2020-12-10 19:04:12 +0000 | [diff] [blame] | 442 | gettext="auto" |
Max Reitz | a484a71 | 2020-10-27 20:05:41 +0100 | [diff] [blame] | 443 | fuse="auto" |
Max Reitz | df4ea70 | 2020-10-27 20:05:46 +0100 | [diff] [blame] | 444 | fuse_lseek="auto" |
Paolo Bonzini | 106ad1f | 2021-02-17 16:24:25 +0100 | [diff] [blame] | 445 | multiprocess="auto" |
Joelle van Dyne | b8e0c49 | 2021-03-15 11:03:41 -0700 | [diff] [blame] | 446 | slirp_smbd="$default_feature" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 447 | |
Paolo Bonzini | aa08796 | 2020-09-01 11:15:30 -0400 | [diff] [blame] | 448 | malloc_trim="auto" |
Denis Plotnikov | 20cf7b8 | 2021-03-12 18:14:40 +0300 | [diff] [blame] | 449 | gio="$default_feature" |
Peter Maydell | 898be3e | 2017-03-21 14:31:57 +0000 | [diff] [blame] | 450 | |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 451 | # parse CC options second |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 452 | for opt do |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 453 | optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 454 | case "$opt" in |
| 455 | --cross-prefix=*) cross_prefix="$optarg" |
Joelle van Dyne | 3812c0c | 2021-01-25 17:24:48 -0800 | [diff] [blame] | 456 | cross_compile="yes" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 457 | ;; |
Paolo Bonzini | 3d8df64 | 2010-12-23 11:43:48 +0100 | [diff] [blame] | 458 | --cc=*) CC="$optarg" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 459 | ;; |
Tomoki Sekiyama | 83f73fc | 2013-08-07 11:39:36 -0400 | [diff] [blame] | 460 | --cxx=*) CXX="$optarg" |
| 461 | ;; |
Juan Quintela | 2ff6b91 | 2009-08-03 14:45:55 +0200 | [diff] [blame] | 462 | --cpu=*) cpu="$optarg" |
| 463 | ;; |
Alex Bennée | de38528 | 2015-06-03 09:56:37 +0100 | [diff] [blame] | 464 | --extra-cflags=*) QEMU_CFLAGS="$QEMU_CFLAGS $optarg" |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 465 | QEMU_LDFLAGS="$QEMU_LDFLAGS $optarg" |
Juan Quintela | e2a2ed0 | 2009-08-03 14:46:02 +0200 | [diff] [blame] | 466 | ;; |
Bruno Dominguez | 11cde1c | 2017-06-06 14:07:47 +0100 | [diff] [blame] | 467 | --extra-cxxflags=*) QEMU_CXXFLAGS="$QEMU_CXXFLAGS $optarg" |
Bruno Dominguez | 11cde1c | 2017-06-06 14:07:47 +0100 | [diff] [blame] | 468 | ;; |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 469 | --extra-ldflags=*) QEMU_LDFLAGS="$QEMU_LDFLAGS $optarg" |
Gerd Hoffmann | f9943cd | 2013-01-04 10:15:53 +0100 | [diff] [blame] | 470 | EXTRA_LDFLAGS="$optarg" |
Juan Quintela | e2a2ed0 | 2009-08-03 14:46:02 +0200 | [diff] [blame] | 471 | ;; |
Gerd Hoffmann | 5bc62e0 | 2012-02-08 13:54:13 +0100 | [diff] [blame] | 472 | --enable-debug-info) debug_info="yes" |
| 473 | ;; |
| 474 | --disable-debug-info) debug_info="no" |
| 475 | ;; |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 476 | --cross-cc-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-cc-FOO option" |
| 477 | ;; |
Alex Bennée | d422b2b | 2018-04-13 11:07:58 +0100 | [diff] [blame] | 478 | --cross-cc-cflags-*) cc_arch=${opt#--cross-cc-flags-}; cc_arch=${cc_arch%%=*} |
| 479 | eval "cross_cc_cflags_${cc_arch}=\$optarg" |
Paolo Bonzini | 2038f8c | 2019-08-07 16:35:23 +0200 | [diff] [blame] | 480 | cross_cc_vars="$cross_cc_vars cross_cc_cflags_${cc_arch}" |
Alex Bennée | d422b2b | 2018-04-13 11:07:58 +0100 | [diff] [blame] | 481 | ;; |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 482 | --cross-cc-*) cc_arch=${opt#--cross-cc-}; cc_arch=${cc_arch%%=*} |
Paolo Bonzini | 2038f8c | 2019-08-07 16:35:23 +0200 | [diff] [blame] | 483 | cc_archs="$cc_archs $cc_arch" |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 484 | eval "cross_cc_${cc_arch}=\$optarg" |
Paolo Bonzini | 2038f8c | 2019-08-07 16:35:23 +0200 | [diff] [blame] | 485 | cross_cc_vars="$cross_cc_vars cross_cc_${cc_arch}" |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 486 | ;; |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 487 | esac |
| 488 | done |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 489 | # OS specific |
| 490 | # Using uname is really, really broken. Once we have the right set of checks |
Stefan Weil | 93148aa | 2012-02-26 18:46:12 +0100 | [diff] [blame] | 491 | # we can eliminate its usage altogether. |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 492 | |
Peter Maydell | e49d021 | 2012-12-07 15:39:13 +0000 | [diff] [blame] | 493 | # Preferred compiler: |
| 494 | # ${CC} (if set) |
| 495 | # ${cross_prefix}gcc (if cross-prefix specified) |
| 496 | # system compiler |
| 497 | if test -z "${CC}${cross_prefix}"; then |
| 498 | cc="$host_cc" |
| 499 | else |
| 500 | cc="${CC-${cross_prefix}gcc}" |
| 501 | fi |
| 502 | |
Tomoki Sekiyama | 83f73fc | 2013-08-07 11:39:36 -0400 | [diff] [blame] | 503 | if test -z "${CXX}${cross_prefix}"; then |
| 504 | cxx="c++" |
| 505 | else |
| 506 | cxx="${CXX-${cross_prefix}g++}" |
| 507 | fi |
| 508 | |
Stuart Yoder | b3198cc | 2011-08-04 17:10:08 -0500 | [diff] [blame] | 509 | ar="${AR-${cross_prefix}ar}" |
Richard Henderson | cdbd727 | 2016-07-07 21:49:36 -0700 | [diff] [blame] | 510 | as="${AS-${cross_prefix}as}" |
Richard Henderson | 5f6f0e2 | 2016-06-23 10:39:18 -0700 | [diff] [blame] | 511 | ccas="${CCAS-$cc}" |
Blue Swirl | 3dd46c7 | 2013-01-05 10:10:27 +0000 | [diff] [blame] | 512 | cpp="${CPP-$cc -E}" |
Stuart Yoder | b3198cc | 2011-08-04 17:10:08 -0500 | [diff] [blame] | 513 | objcopy="${OBJCOPY-${cross_prefix}objcopy}" |
| 514 | ld="${LD-${cross_prefix}ld}" |
Alistair Francis | 9f81aeb | 2017-11-07 17:10:46 -0800 | [diff] [blame] | 515 | ranlib="${RANLIB-${cross_prefix}ranlib}" |
Stefan Weil | 4852ee9 | 2014-09-18 21:55:08 +0200 | [diff] [blame] | 516 | nm="${NM-${cross_prefix}nm}" |
Stuart Yoder | b3198cc | 2011-08-04 17:10:08 -0500 | [diff] [blame] | 517 | strip="${STRIP-${cross_prefix}strip}" |
| 518 | windres="${WINDRES-${cross_prefix}windres}" |
Sergei Trofimovich | 17884d7 | 2012-01-31 22:03:45 +0300 | [diff] [blame] | 519 | pkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}" |
| 520 | query_pkg_config() { |
| 521 | "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@" |
| 522 | } |
| 523 | pkg_config=query_pkg_config |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 524 | sdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 525 | |
Peter Maydell | 45d285a | 2013-10-21 21:03:06 +0100 | [diff] [blame] | 526 | # If the user hasn't specified ARFLAGS, default to 'rv', just as make does. |
| 527 | ARFLAGS="${ARFLAGS-rv}" |
| 528 | |
Michael S. Tsirkin | be17dc9 | 2009-11-11 13:50:09 +0200 | [diff] [blame] | 529 | # default flags for all hosts |
Peter Maydell | 2d31515 | 2016-09-12 14:10:08 +0100 | [diff] [blame] | 530 | # We use -fwrapv to tell the compiler that we require a C dialect where |
| 531 | # left shift of signed integers is well defined and has the expected |
| 532 | # 2s-complement style results. (Both clang and gcc agree that it |
| 533 | # provides these semantics.) |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 534 | QEMU_CFLAGS="-fno-strict-aliasing -fno-common -fwrapv $QEMU_CFLAGS" |
| 535 | QEMU_CFLAGS="-Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS" |
Kevin Wolf | c95e308 | 2013-02-22 21:08:51 +0100 | [diff] [blame] | 536 | QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS" |
Michael S. Tsirkin | be17dc9 | 2009-11-11 13:50:09 +0200 | [diff] [blame] | 537 | QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS" |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 538 | |
| 539 | # Flags that are needed during configure but later taken care of by Meson |
| 540 | CONFIGURE_CFLAGS="-std=gnu99 -Wall" |
| 541 | CONFIGURE_LDFLAGS= |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 542 | |
Michael S. Tsirkin | be17dc9 | 2009-11-11 13:50:09 +0200 | [diff] [blame] | 543 | |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 544 | check_define() { |
| 545 | cat > $TMPC <<EOF |
| 546 | #if !defined($1) |
Peter Maydell | fd786e1 | 2011-11-23 17:26:43 +0000 | [diff] [blame] | 547 | #error $1 not defined |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 548 | #endif |
| 549 | int main(void) { return 0; } |
| 550 | EOF |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 551 | compile_object |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 552 | } |
| 553 | |
Gerd Hoffmann | 307119e | 2015-06-10 09:07:35 +0200 | [diff] [blame] | 554 | check_include() { |
| 555 | cat > $TMPC <<EOF |
| 556 | #include <$1> |
| 557 | int main(void) { return 0; } |
| 558 | EOF |
| 559 | compile_object |
| 560 | } |
| 561 | |
John Snow | 93b2586 | 2015-03-25 18:57:37 -0400 | [diff] [blame] | 562 | write_c_skeleton() { |
| 563 | cat > $TMPC <<EOF |
| 564 | int main(void) { return 0; } |
| 565 | EOF |
| 566 | } |
| 567 | |
Alexander Bulekov | adc2802 | 2020-02-19 23:11:14 -0500 | [diff] [blame] | 568 | write_c_fuzzer_skeleton() { |
| 569 | cat > $TMPC <<EOF |
| 570 | #include <stdint.h> |
| 571 | #include <sys/types.h> |
| 572 | int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size); |
| 573 | int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { return 0; } |
| 574 | EOF |
| 575 | } |
| 576 | |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 577 | if check_define __linux__ ; then |
| 578 | targetos="Linux" |
| 579 | elif check_define _WIN32 ; then |
| 580 | targetos='MINGW32' |
| 581 | elif check_define __OpenBSD__ ; then |
| 582 | targetos='OpenBSD' |
| 583 | elif check_define __sun__ ; then |
| 584 | targetos='SunOS' |
| 585 | elif check_define __HAIKU__ ; then |
| 586 | targetos='Haiku' |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 587 | elif check_define __FreeBSD__ ; then |
| 588 | targetos='FreeBSD' |
| 589 | elif check_define __FreeBSD_kernel__ && check_define __GLIBC__; then |
| 590 | targetos='GNU/kFreeBSD' |
| 591 | elif check_define __DragonFly__ ; then |
| 592 | targetos='DragonFly' |
| 593 | elif check_define __NetBSD__; then |
| 594 | targetos='NetBSD' |
| 595 | elif check_define __APPLE__; then |
| 596 | targetos='Darwin' |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 597 | else |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 598 | # This is a fatal error, but don't report it yet, because we |
| 599 | # might be going to just print the --help text, or it might |
| 600 | # be the result of a missing compiler. |
| 601 | targetos='bogus' |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 602 | fi |
| 603 | |
| 604 | # Some host OSes need non-standard checks for which CPU to use. |
| 605 | # Note that these checks are broken for cross-compilation: if you're |
| 606 | # cross-compiling to one of these OSes then you'll need to specify |
| 607 | # the correct CPU with the --cpu option. |
| 608 | case $targetos in |
| 609 | Darwin) |
Gerd Hoffmann | 5869f8d | 2020-10-27 13:06:03 +0100 | [diff] [blame] | 610 | HOST_DSOSUF=".dylib" |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 611 | ;; |
| 612 | SunOS) |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 613 | # $(uname -m) returns i86pc even on an x86_64 box, so default based on isainfo |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 614 | if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then |
| 615 | cpu="x86_64" |
| 616 | fi |
| 617 | esac |
| 618 | |
Juan Quintela | 2ff6b91 | 2009-08-03 14:45:55 +0200 | [diff] [blame] | 619 | if test ! -z "$cpu" ; then |
| 620 | # command line argument |
| 621 | : |
| 622 | elif check_define __i386__ ; then |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 623 | cpu="i386" |
| 624 | elif check_define __x86_64__ ; then |
Richard Henderson | c72b26e | 2013-08-20 12:20:05 -0700 | [diff] [blame] | 625 | if check_define __ILP32__ ; then |
| 626 | cpu="x32" |
| 627 | else |
| 628 | cpu="x86_64" |
| 629 | fi |
blueswir1 | 3aa9bd6 | 2008-12-31 16:55:26 +0000 | [diff] [blame] | 630 | elif check_define __sparc__ ; then |
blueswir1 | 3aa9bd6 | 2008-12-31 16:55:26 +0000 | [diff] [blame] | 631 | if check_define __arch64__ ; then |
| 632 | cpu="sparc64" |
| 633 | else |
| 634 | cpu="sparc" |
| 635 | fi |
malc | fdf7ed9 | 2009-01-14 18:39:52 +0000 | [diff] [blame] | 636 | elif check_define _ARCH_PPC ; then |
| 637 | if check_define _ARCH_PPC64 ; then |
Richard Henderson | f8378ac | 2019-05-01 15:38:18 -0700 | [diff] [blame] | 638 | if check_define _LITTLE_ENDIAN ; then |
| 639 | cpu="ppc64le" |
| 640 | else |
| 641 | cpu="ppc64" |
| 642 | fi |
malc | fdf7ed9 | 2009-01-14 18:39:52 +0000 | [diff] [blame] | 643 | else |
| 644 | cpu="ppc" |
| 645 | fi |
Aurelien Jarno | afa0523 | 2009-10-17 14:17:47 +0200 | [diff] [blame] | 646 | elif check_define __mips__ ; then |
| 647 | cpu="mips" |
Aurelien Jarno | d66ed0e | 2010-06-13 12:28:21 +0200 | [diff] [blame] | 648 | elif check_define __s390__ ; then |
| 649 | if check_define __s390x__ ; then |
| 650 | cpu="s390x" |
| 651 | else |
| 652 | cpu="s390" |
| 653 | fi |
Alistair Francis | c4f8054 | 2018-12-19 19:20:19 +0000 | [diff] [blame] | 654 | elif check_define __riscv ; then |
| 655 | if check_define _LP64 ; then |
| 656 | cpu="riscv64" |
| 657 | else |
| 658 | cpu="riscv32" |
| 659 | fi |
Peter Maydell | 21d89f8 | 2011-11-30 10:57:48 +0100 | [diff] [blame] | 660 | elif check_define __arm__ ; then |
| 661 | cpu="arm" |
Claudio Fontana | 1f08031 | 2013-06-12 16:20:23 +0100 | [diff] [blame] | 662 | elif check_define __aarch64__ ; then |
| 663 | cpu="aarch64" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 664 | else |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 665 | cpu=$(uname -m) |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 666 | fi |
| 667 | |
Peter Maydell | 359bc95 | 2011-12-24 13:07:25 +0000 | [diff] [blame] | 668 | ARCH= |
| 669 | # Normalise host CPU name and set ARCH. |
| 670 | # Note that this case should only have supported host CPUs, not guests. |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 671 | case "$cpu" in |
Thomas Huth | ee35e96 | 2019-09-28 21:03:34 +0200 | [diff] [blame] | 672 | ppc|ppc64|s390x|sparc64|x32|riscv32|riscv64) |
Peter Maydell | 898be3e | 2017-03-21 14:31:57 +0000 | [diff] [blame] | 673 | ;; |
Richard Henderson | f8378ac | 2019-05-01 15:38:18 -0700 | [diff] [blame] | 674 | ppc64le) |
| 675 | ARCH="ppc64" |
Richard Henderson | f8378ac | 2019-05-01 15:38:18 -0700 | [diff] [blame] | 676 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 677 | i386|i486|i586|i686|i86pc|BePC) |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 678 | cpu="i386" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 679 | ;; |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 680 | x86_64|amd64) |
| 681 | cpu="x86_64" |
| 682 | ;; |
Peter Maydell | 21d89f8 | 2011-11-30 10:57:48 +0100 | [diff] [blame] | 683 | armv*b|armv*l|arm) |
| 684 | cpu="arm" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 685 | ;; |
Claudio Fontana | 1f08031 | 2013-06-12 16:20:23 +0100 | [diff] [blame] | 686 | aarch64) |
| 687 | cpu="aarch64" |
| 688 | ;; |
Aurelien Jarno | afa0523 | 2009-10-17 14:17:47 +0200 | [diff] [blame] | 689 | mips*) |
| 690 | cpu="mips" |
| 691 | ;; |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 692 | sparc|sun4[cdmuv]) |
bellard | ae22853 | 2003-05-13 18:59:59 +0000 | [diff] [blame] | 693 | cpu="sparc" |
| 694 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 695 | *) |
Peter Maydell | 359bc95 | 2011-12-24 13:07:25 +0000 | [diff] [blame] | 696 | # This will result in either an error or falling back to TCI later |
| 697 | ARCH=unknown |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 698 | ;; |
| 699 | esac |
Peter Maydell | 359bc95 | 2011-12-24 13:07:25 +0000 | [diff] [blame] | 700 | if test -z "$ARCH"; then |
| 701 | ARCH="$cpu" |
| 702 | fi |
Juan Quintela | e2d52ad | 2009-08-12 18:20:24 +0200 | [diff] [blame] | 703 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 704 | # OS specific |
Juan Quintela | 0dbfc67 | 2009-08-03 14:46:13 +0200 | [diff] [blame] | 705 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 706 | case $targetos in |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 707 | MINGW32*) |
Juan Quintela | 0dbfc67 | 2009-08-03 14:46:13 +0200 | [diff] [blame] | 708 | mingw32="yes" |
Kővágó, Zoltán | 3cec7cc | 2015-06-03 23:03:46 +0200 | [diff] [blame] | 709 | audio_possible_drivers="dsound sdl" |
Gerd Hoffmann | 307119e | 2015-06-10 09:07:35 +0200 | [diff] [blame] | 710 | if check_include dsound.h; then |
| 711 | audio_drv_list="dsound" |
| 712 | else |
| 713 | audio_drv_list="" |
| 714 | fi |
Peter Maydell | 898be3e | 2017-03-21 14:31:57 +0000 | [diff] [blame] | 715 | supported_os="yes" |
Daniel P. Berrangé | fb648e9 | 2020-08-24 17:31:09 +0100 | [diff] [blame] | 716 | pie="no" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 717 | ;; |
ths | 5c40d2b | 2007-06-23 16:03:36 +0000 | [diff] [blame] | 718 | GNU/kFreeBSD) |
Aurelien Jarno | a167ba5 | 2009-11-29 18:00:41 +0100 | [diff] [blame] | 719 | bsd="yes" |
Gerd Hoffmann | 6a48541 | 2019-01-24 12:20:55 +0100 | [diff] [blame] | 720 | audio_drv_list="oss try-sdl" |
Kővágó, Zoltán | 0bac111 | 2015-06-03 23:03:44 +0200 | [diff] [blame] | 721 | audio_possible_drivers="oss sdl pa" |
ths | 5c40d2b | 2007-06-23 16:03:36 +0000 | [diff] [blame] | 722 | ;; |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 723 | FreeBSD) |
Juan Quintela | 0dbfc67 | 2009-08-03 14:46:13 +0200 | [diff] [blame] | 724 | bsd="yes" |
Paolo Bonzini | 0db4a06 | 2010-12-23 11:43:49 +0100 | [diff] [blame] | 725 | make="${MAKE-gmake}" |
Gerd Hoffmann | 6a48541 | 2019-01-24 12:20:55 +0100 | [diff] [blame] | 726 | audio_drv_list="oss try-sdl" |
Kővágó, Zoltán | 0bac111 | 2015-06-03 23:03:44 +0200 | [diff] [blame] | 727 | audio_possible_drivers="oss sdl pa" |
Juergen Lock | f01576f | 2010-03-25 22:32:16 +0100 | [diff] [blame] | 728 | # needed for kinfo_getvmmap(3) in libutil.h |
Vincenzo Maffione | 5895213 | 2013-11-06 11:44:06 +0100 | [diff] [blame] | 729 | netmap="" # enable netmap autodetect |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 730 | ;; |
blueswir1 | c5e9723 | 2009-03-07 20:06:23 +0000 | [diff] [blame] | 731 | DragonFly) |
Juan Quintela | 0dbfc67 | 2009-08-03 14:46:13 +0200 | [diff] [blame] | 732 | bsd="yes" |
Paolo Bonzini | 0db4a06 | 2010-12-23 11:43:49 +0100 | [diff] [blame] | 733 | make="${MAKE-gmake}" |
Gerd Hoffmann | 6a48541 | 2019-01-24 12:20:55 +0100 | [diff] [blame] | 734 | audio_drv_list="oss try-sdl" |
Kővágó, Zoltán | 0bac111 | 2015-06-03 23:03:44 +0200 | [diff] [blame] | 735 | audio_possible_drivers="oss sdl pa" |
blueswir1 | c5e9723 | 2009-03-07 20:06:23 +0000 | [diff] [blame] | 736 | ;; |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 737 | NetBSD) |
Juan Quintela | 0dbfc67 | 2009-08-03 14:46:13 +0200 | [diff] [blame] | 738 | bsd="yes" |
Paolo Bonzini | 0db4a06 | 2010-12-23 11:43:49 +0100 | [diff] [blame] | 739 | make="${MAKE-gmake}" |
Gerd Hoffmann | 6a48541 | 2019-01-24 12:20:55 +0100 | [diff] [blame] | 740 | audio_drv_list="oss try-sdl" |
Kővágó, Zoltán | 0bac111 | 2015-06-03 23:03:44 +0200 | [diff] [blame] | 741 | audio_possible_drivers="oss sdl" |
Juan Quintela | 0dbfc67 | 2009-08-03 14:46:13 +0200 | [diff] [blame] | 742 | oss_lib="-lossaudio" |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 743 | ;; |
| 744 | OpenBSD) |
Juan Quintela | 0dbfc67 | 2009-08-03 14:46:13 +0200 | [diff] [blame] | 745 | bsd="yes" |
Paolo Bonzini | 0db4a06 | 2010-12-23 11:43:49 +0100 | [diff] [blame] | 746 | make="${MAKE-gmake}" |
Gerd Hoffmann | f92c716 | 2019-01-24 12:20:52 +0100 | [diff] [blame] | 747 | audio_drv_list="try-sdl" |
Kővágó, Zoltán | 0bac111 | 2015-06-03 23:03:44 +0200 | [diff] [blame] | 748 | audio_possible_drivers="sdl" |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 749 | ;; |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 750 | Darwin) |
Juan Quintela | 0dbfc67 | 2009-08-03 14:46:13 +0200 | [diff] [blame] | 751 | bsd="yes" |
| 752 | darwin="yes" |
Joelle van Dyne | 422a5fd | 2021-01-25 17:24:56 -0800 | [diff] [blame] | 753 | audio_drv_list="try-coreaudio try-sdl" |
Kővágó, Zoltán | 1438260 | 2015-06-03 23:03:45 +0200 | [diff] [blame] | 754 | audio_possible_drivers="coreaudio sdl" |
Peter Maydell | a0b7cf6 | 2012-08-11 22:34:39 +0100 | [diff] [blame] | 755 | # Disable attempts to use ObjectiveC features in os/object.h since they |
| 756 | # won't work when we're compiling with gcc as a C compiler. |
| 757 | QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS" |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 758 | ;; |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 759 | SunOS) |
Juan Quintela | 0dbfc67 | 2009-08-03 14:46:13 +0200 | [diff] [blame] | 760 | solaris="yes" |
Paolo Bonzini | 0db4a06 | 2010-12-23 11:43:49 +0100 | [diff] [blame] | 761 | make="${MAKE-gmake}" |
Brad | e2d8830 | 2011-09-02 16:53:28 -0400 | [diff] [blame] | 762 | smbd="${SMBD-/usr/sfw/sbin/smbd}" |
Juan Quintela | 0dbfc67 | 2009-08-03 14:46:13 +0200 | [diff] [blame] | 763 | if test -f /usr/include/sys/soundcard.h ; then |
Gerd Hoffmann | 6a48541 | 2019-01-24 12:20:55 +0100 | [diff] [blame] | 764 | audio_drv_list="oss try-sdl" |
Juan Quintela | 0dbfc67 | 2009-08-03 14:46:13 +0200 | [diff] [blame] | 765 | fi |
| 766 | audio_possible_drivers="oss sdl" |
Blue Swirl | d741429 | 2009-09-12 12:36:04 +0000 | [diff] [blame] | 767 | # needed for CMSG_ macros in sys/socket.h |
| 768 | QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS" |
| 769 | # needed for TIOCWIN* defines in termios.h |
| 770 | QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS" |
ths | 86b2bd9 | 2007-02-11 00:31:33 +0000 | [diff] [blame] | 771 | ;; |
Andreas Färber | 179cf40 | 2010-09-20 00:50:43 +0200 | [diff] [blame] | 772 | Haiku) |
| 773 | haiku="yes" |
Thomas Huth | cde9925 | 2020-11-14 09:51:22 +0100 | [diff] [blame] | 774 | QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS -D_BSD_SOURCE $QEMU_CFLAGS" |
Andreas Färber | 179cf40 | 2010-09-20 00:50:43 +0200 | [diff] [blame] | 775 | ;; |
Peter Maydell | 898be3e | 2017-03-21 14:31:57 +0000 | [diff] [blame] | 776 | Linux) |
Gerd Hoffmann | 7183834 | 2019-02-19 13:42:57 +0100 | [diff] [blame] | 777 | audio_drv_list="try-pa oss" |
Kővágó, Zoltán | 0bac111 | 2015-06-03 23:03:44 +0200 | [diff] [blame] | 778 | audio_possible_drivers="oss alsa sdl pa" |
Juan Quintela | 0dbfc67 | 2009-08-03 14:46:13 +0200 | [diff] [blame] | 779 | linux="yes" |
| 780 | linux_user="yes" |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 781 | vhost_user=${default_feature:-yes} |
Peter Maydell | 898be3e | 2017-03-21 14:31:57 +0000 | [diff] [blame] | 782 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 783 | esac |
| 784 | |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 785 | if [ "$bsd" = "yes" ] ; then |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 786 | if [ "$darwin" != "yes" ] ; then |
Andreas Färber | 08de394 | 2012-04-26 11:57:39 +0200 | [diff] [blame] | 787 | bsd_user="yes" |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 788 | fi |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 789 | fi |
| 790 | |
Paolo Bonzini | 0db4a06 | 2010-12-23 11:43:49 +0100 | [diff] [blame] | 791 | : ${make=${MAKE-make}} |
Paolo Bonzini | b6daf4d | 2020-09-01 06:38:04 -0400 | [diff] [blame] | 792 | |
Daniel P. Berrangé | faf4414 | 2019-03-27 17:07:01 +0000 | [diff] [blame] | 793 | # We prefer python 3.x. A bare 'python' is traditionally |
| 794 | # python 2.x, but some distros have it as python 3.x, so |
Eduardo Habkost | ddf9069 | 2019-10-16 19:42:37 -0300 | [diff] [blame] | 795 | # we check that too |
Daniel P. Berrangé | faf4414 | 2019-03-27 17:07:01 +0000 | [diff] [blame] | 796 | python= |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 797 | explicit_python=no |
Eduardo Habkost | ddf9069 | 2019-10-16 19:42:37 -0300 | [diff] [blame] | 798 | for binary in "${PYTHON-python3}" python |
Daniel P. Berrangé | faf4414 | 2019-03-27 17:07:01 +0000 | [diff] [blame] | 799 | do |
| 800 | if has "$binary" |
| 801 | then |
Paolo Bonzini | 95c5f2d | 2019-06-10 12:03:44 +0200 | [diff] [blame] | 802 | python=$(command -v "$binary") |
Daniel P. Berrangé | faf4414 | 2019-03-27 17:07:01 +0000 | [diff] [blame] | 803 | break |
| 804 | fi |
| 805 | done |
Markus Armbruster | 903458c | 2020-02-14 18:18:41 +0100 | [diff] [blame] | 806 | |
Markus Armbruster | 903458c | 2020-02-14 18:18:41 +0100 | [diff] [blame] | 807 | |
Alex Bennée | 39d87c8 | 2020-03-03 15:06:20 +0000 | [diff] [blame] | 808 | # Check for ancillary tools used in testing |
| 809 | genisoimage= |
Alex Bennée | 3df437c | 2020-05-19 09:22:48 -0400 | [diff] [blame] | 810 | for binary in genisoimage mkisofs |
Alex Bennée | 39d87c8 | 2020-03-03 15:06:20 +0000 | [diff] [blame] | 811 | do |
| 812 | if has $binary |
| 813 | then |
| 814 | genisoimage=$(command -v "$binary") |
| 815 | break |
| 816 | fi |
| 817 | done |
| 818 | |
Peter Maydell | 3c4a4d0 | 2012-08-11 22:34:40 +0100 | [diff] [blame] | 819 | # Default objcc to clang if available, otherwise use CC |
| 820 | if has clang; then |
| 821 | objcc=clang |
| 822 | else |
| 823 | objcc="$cc" |
| 824 | fi |
| 825 | |
Juan Quintela | 3457a3f | 2009-08-03 14:46:07 +0200 | [diff] [blame] | 826 | if test "$mingw32" = "yes" ; then |
Juan Quintela | 3457a3f | 2009-08-03 14:46:07 +0200 | [diff] [blame] | 827 | EXESUF=".exe" |
Paolo Bonzini | 484e2cc | 2019-12-12 13:30:36 +0100 | [diff] [blame] | 828 | HOST_DSOSUF=".dll" |
Stefan Weil | 78e9d4a | 2015-11-26 12:13:12 +0100 | [diff] [blame] | 829 | # MinGW needs -mthreads for TLS and macro _MT. |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 830 | CONFIGURE_CFLAGS="-mthreads $CONFIGURE_CFLAGS" |
John Snow | 93b2586 | 2015-03-25 18:57:37 -0400 | [diff] [blame] | 831 | write_c_skeleton; |
Paolo Bonzini | d17f305 | 2020-08-18 12:17:01 +0200 | [diff] [blame] | 832 | prefix="/qemu" |
Marc-André Lureau | 77433a5 | 2020-08-26 15:04:12 +0400 | [diff] [blame] | 833 | qemu_suffix="" |
Bishara AbuHattoum | 105fad6 | 2017-08-22 16:55:04 +0300 | [diff] [blame] | 834 | libs_qga="-lws2_32 -lwinmm -lpowrprof -lwtsapi32 -lwininet -liphlpapi -lnetapi32 $libs_qga" |
Juan Quintela | 3457a3f | 2009-08-03 14:46:07 +0200 | [diff] [blame] | 835 | fi |
| 836 | |
Anthony Liguori | 487fefd | 2009-06-11 13:28:25 -0500 | [diff] [blame] | 837 | werror="" |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 838 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 839 | for opt do |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 840 | optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 841 | case "$opt" in |
bellard | 2efc326 | 2005-12-18 19:14:49 +0000 | [diff] [blame] | 842 | --help|-h) show_help=yes |
| 843 | ;; |
Mike Frysinger | 99123e1 | 2011-04-07 01:12:28 -0400 | [diff] [blame] | 844 | --version|-V) exec cat $source_path/VERSION |
| 845 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 846 | --prefix=*) prefix="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 847 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 848 | --interp-prefix=*) interp_prefix="$optarg" |
bellard | 32ce633 | 2003-04-11 00:16:16 +0000 | [diff] [blame] | 849 | ;; |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 850 | --cross-prefix=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 851 | ;; |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 852 | --cc=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 853 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 854 | --host-cc=*) host_cc="$optarg" |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 855 | ;; |
Tomoki Sekiyama | 83f73fc | 2013-08-07 11:39:36 -0400 | [diff] [blame] | 856 | --cxx=*) |
| 857 | ;; |
Michael S. Tsirkin | e007dbe | 2013-11-24 11:38:05 +0200 | [diff] [blame] | 858 | --iasl=*) iasl="$optarg" |
| 859 | ;; |
Peter Maydell | 3c4a4d0 | 2012-08-11 22:34:40 +0100 | [diff] [blame] | 860 | --objcc=*) objcc="$optarg" |
| 861 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 862 | --make=*) make="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 863 | ;; |
Paolo Bonzini | b6daf4d | 2020-09-01 06:38:04 -0400 | [diff] [blame] | 864 | --install=*) |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 865 | ;; |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 866 | --python=*) python="$optarg" ; explicit_python=yes |
Blue Swirl | c886edf | 2011-07-22 21:08:09 +0000 | [diff] [blame] | 867 | ;; |
Peter Maydell | 2eb054c | 2020-02-13 17:56:18 +0000 | [diff] [blame] | 868 | --sphinx-build=*) sphinx_build="$optarg" |
| 869 | ;; |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 870 | --skip-meson) skip_meson=yes |
| 871 | ;; |
| 872 | --meson=*) meson="$optarg" |
| 873 | ;; |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 874 | --ninja=*) ninja="$optarg" |
| 875 | ;; |
Brad | e2d8830 | 2011-09-02 16:53:28 -0400 | [diff] [blame] | 876 | --smbd=*) smbd="$optarg" |
| 877 | ;; |
Juan Quintela | e2a2ed0 | 2009-08-03 14:46:02 +0200 | [diff] [blame] | 878 | --extra-cflags=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 879 | ;; |
Bruno Dominguez | 11cde1c | 2017-06-06 14:07:47 +0100 | [diff] [blame] | 880 | --extra-cxxflags=*) |
| 881 | ;; |
Juan Quintela | e2a2ed0 | 2009-08-03 14:46:02 +0200 | [diff] [blame] | 882 | --extra-ldflags=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 883 | ;; |
Gerd Hoffmann | 5bc62e0 | 2012-02-08 13:54:13 +0100 | [diff] [blame] | 884 | --enable-debug-info) |
| 885 | ;; |
| 886 | --disable-debug-info) |
| 887 | ;; |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 888 | --cross-cc-*) |
| 889 | ;; |
Fam Zheng | 1796926 | 2014-02-10 14:48:56 +0800 | [diff] [blame] | 890 | --enable-modules) |
| 891 | modules="yes" |
| 892 | ;; |
Stefan Hajnoczi | 3aa88b3 | 2015-11-02 14:06:23 +0000 | [diff] [blame] | 893 | --disable-modules) |
| 894 | modules="no" |
| 895 | ;; |
Christian Ehrhardt | bd83c86 | 2020-03-10 15:58:06 +0100 | [diff] [blame] | 896 | --disable-module-upgrades) module_upgrades="no" |
| 897 | ;; |
| 898 | --enable-module-upgrades) module_upgrades="yes" |
| 899 | ;; |
Juan Quintela | 2ff6b91 | 2009-08-03 14:45:55 +0200 | [diff] [blame] | 900 | --cpu=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 901 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 902 | --target-list=*) target_list="$optarg" |
Alex Bennée | 447e133 | 2019-03-19 11:59:12 +0000 | [diff] [blame] | 903 | if test "$target_list_exclude"; then |
| 904 | error_exit "Can't mix --target-list with --target-list-exclude" |
| 905 | fi |
| 906 | ;; |
| 907 | --target-list-exclude=*) target_list_exclude="$optarg" |
| 908 | if test "$target_list"; then |
| 909 | error_exit "Can't mix --target-list-exclude with --target-list" |
| 910 | fi |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 911 | ;; |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 912 | --enable-trace-backends=*) trace_backends="$optarg" |
| 913 | ;; |
| 914 | # XXX: backwards compatibility |
| 915 | --enable-trace-backend=*) trace_backends="$optarg" |
Stefan Hajnoczi | 94a420b | 2010-05-22 17:52:39 +0100 | [diff] [blame] | 916 | ;; |
Paolo Bonzini | 74242e0 | 2010-12-23 11:44:02 +0100 | [diff] [blame] | 917 | --with-trace-file=*) trace_file="$optarg" |
Prerna Saxena | 9410b56 | 2010-07-13 09:26:32 +0100 | [diff] [blame] | 918 | ;; |
Paolo Bonzini | 7bc3ca7 | 2020-11-20 08:38:22 +0100 | [diff] [blame] | 919 | --with-default-devices) default_devices="true" |
Paolo Bonzini | f349474 | 2019-01-23 14:56:17 +0800 | [diff] [blame] | 920 | ;; |
Paolo Bonzini | 7bc3ca7 | 2020-11-20 08:38:22 +0100 | [diff] [blame] | 921 | --without-default-devices) default_devices="false" |
Paolo Bonzini | f349474 | 2019-01-23 14:56:17 +0800 | [diff] [blame] | 922 | ;; |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 923 | --without-default-features) # processed above |
| 924 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 925 | --enable-gprof) gprof="yes" |
| 926 | ;; |
Blue Swirl | 1d728c3 | 2012-05-01 18:45:39 +0000 | [diff] [blame] | 927 | --enable-gcov) gcov="yes" |
| 928 | ;; |
Loïc Minier | 7942769 | 2010-01-31 12:23:45 +0100 | [diff] [blame] | 929 | --static) |
| 930 | static="yes" |
Sergei Trofimovich | 17884d7 | 2012-01-31 22:03:45 +0300 | [diff] [blame] | 931 | QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 932 | ;; |
Paolo Bonzini | 0b24e75 | 2010-05-26 16:08:26 +0200 | [diff] [blame] | 933 | --mandir=*) mandir="$optarg" |
| 934 | ;; |
| 935 | --bindir=*) bindir="$optarg" |
| 936 | ;; |
Alon Levy | 3aa5d2b | 2011-05-15 12:08:59 +0300 | [diff] [blame] | 937 | --libdir=*) libdir="$optarg" |
| 938 | ;; |
Michael Tokarev | 8bf188a | 2012-06-07 01:11:00 +0400 | [diff] [blame] | 939 | --libexecdir=*) libexecdir="$optarg" |
| 940 | ;; |
Alon Levy | 0f94d6d | 2011-06-27 11:58:20 +0200 | [diff] [blame] | 941 | --includedir=*) includedir="$optarg" |
| 942 | ;; |
Eduardo Habkost | 528ae5b | 2012-04-18 16:55:49 -0300 | [diff] [blame] | 943 | --datadir=*) datadir="$optarg" |
Paolo Bonzini | 0b24e75 | 2010-05-26 16:08:26 +0200 | [diff] [blame] | 944 | ;; |
Marc-André Lureau | 77433a5 | 2020-08-26 15:04:12 +0400 | [diff] [blame] | 945 | --with-suffix=*) qemu_suffix="$optarg" |
Eduardo Habkost | 023d3d6 | 2012-04-18 16:55:50 -0300 | [diff] [blame] | 946 | ;; |
Bruce Rogers | c650263 | 2020-10-15 13:07:42 -0600 | [diff] [blame] | 947 | --docdir=*) docdir="$optarg" |
Paolo Bonzini | 0b24e75 | 2010-05-26 16:08:26 +0200 | [diff] [blame] | 948 | ;; |
Paolo Bonzini | fe0038b | 2020-10-16 04:35:10 -0400 | [diff] [blame] | 949 | --localedir=*) localedir="$optarg" |
| 950 | ;; |
Andre Przywara | ca2fb93 | 2010-03-08 14:09:48 +0100 | [diff] [blame] | 951 | --sysconfdir=*) sysconfdir="$optarg" |
Anthony Liguori | 07381cc | 2010-01-21 10:30:29 -0600 | [diff] [blame] | 952 | ;; |
Luiz Capitulino | 785c23a | 2012-10-03 18:35:57 -0300 | [diff] [blame] | 953 | --localstatedir=*) local_statedir="$optarg" |
| 954 | ;; |
Gerd Hoffmann | 3d5eeca | 2017-09-14 13:42:36 +0200 | [diff] [blame] | 955 | --firmwarepath=*) firmwarepath="$optarg" |
| 956 | ;; |
Olaf Hering | 181ce1d | 2018-04-18 09:50:44 +0200 | [diff] [blame] | 957 | --host=*|--build=*|\ |
| 958 | --disable-dependency-tracking|\ |
Luiz Capitulino | 785c23a | 2012-10-03 18:35:57 -0300 | [diff] [blame] | 959 | --sbindir=*|--sharedstatedir=*|\ |
Paolo Bonzini | fe0038b | 2020-10-16 04:35:10 -0400 | [diff] [blame] | 960 | --oldincludedir=*|--datarootdir=*|--infodir=*|\ |
Max Filippov | 023ddd7 | 2011-11-24 16:11:31 +0400 | [diff] [blame] | 961 | --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*) |
| 962 | # These switches are silently ignored, for compatibility with |
| 963 | # autoconf-generated configure scripts. This allows QEMU's |
| 964 | # configure to be used by RPM and similar macros that set |
| 965 | # lots of directory switches by default. |
| 966 | ;; |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 967 | --disable-sdl) sdl="disabled" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 968 | ;; |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 969 | --enable-sdl) sdl="enabled" |
Juan Quintela | c419815 | 2009-08-12 18:29:53 +0200 | [diff] [blame] | 970 | ;; |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 971 | --disable-sdl-image) sdl_image="disabled" |
Daniel P. Berrangé | a442fe2 | 2019-01-10 12:00:47 +0000 | [diff] [blame] | 972 | ;; |
Paolo Bonzini | 35be72b | 2020-02-06 14:17:15 +0100 | [diff] [blame] | 973 | --enable-sdl-image) sdl_image="enabled" |
Daniel P. Berrangé | a442fe2 | 2019-01-10 12:00:47 +0000 | [diff] [blame] | 974 | ;; |
Paolo Bonzini | 3556c23 | 2013-05-10 14:16:40 +0200 | [diff] [blame] | 975 | --disable-qom-cast-debug) qom_cast_debug="no" |
| 976 | ;; |
| 977 | --enable-qom-cast-debug) qom_cast_debug="yes" |
| 978 | ;; |
Paolo Bonzini | 69202b4 | 2020-11-17 14:46:21 +0100 | [diff] [blame] | 979 | --disable-virtfs) virtfs="disabled" |
Meador Inge | 983eef5 | 2012-02-24 14:00:42 +0530 | [diff] [blame] | 980 | ;; |
Paolo Bonzini | 69202b4 | 2020-11-17 14:46:21 +0100 | [diff] [blame] | 981 | --enable-virtfs) virtfs="enabled" |
Meador Inge | 983eef5 | 2012-02-24 14:00:42 +0530 | [diff] [blame] | 982 | ;; |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 983 | --disable-libudev) libudev="disabled" |
| 984 | ;; |
| 985 | --enable-libudev) libudev="enabled" |
| 986 | ;; |
Misono Tomohiro | cece116 | 2020-10-08 19:31:33 +0900 | [diff] [blame] | 987 | --disable-virtiofsd) virtiofsd="disabled" |
| 988 | ;; |
| 989 | --enable-virtiofsd) virtiofsd="enabled" |
| 990 | ;; |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 991 | --disable-mpath) mpath="disabled" |
Paolo Bonzini | fe8fc5a | 2017-08-22 06:50:55 +0200 | [diff] [blame] | 992 | ;; |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 993 | --enable-mpath) mpath="enabled" |
Paolo Bonzini | fe8fc5a | 2017-08-22 06:50:55 +0200 | [diff] [blame] | 994 | ;; |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 995 | --disable-vnc) vnc="disabled" |
Jes Sorensen | 821601e | 2011-03-16 13:33:36 +0100 | [diff] [blame] | 996 | ;; |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 997 | --enable-vnc) vnc="enabled" |
Jes Sorensen | 821601e | 2011-03-16 13:33:36 +0100 | [diff] [blame] | 998 | ;; |
Alex Bennée | 0e8e77d | 2020-12-10 19:04:12 +0000 | [diff] [blame] | 999 | --disable-gettext) gettext="disabled" |
Marc-André Lureau | e8f3bd7 | 2019-09-19 21:02:09 +0400 | [diff] [blame] | 1000 | ;; |
Alex Bennée | 0e8e77d | 2020-12-10 19:04:12 +0000 | [diff] [blame] | 1001 | --enable-gettext) gettext="enabled" |
Marc-André Lureau | e8f3bd7 | 2019-09-19 21:02:09 +0400 | [diff] [blame] | 1002 | ;; |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 1003 | --oss-lib=*) oss_lib="$optarg" |
| 1004 | ;; |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1005 | --audio-drv-list=*) audio_drv_list="$optarg" |
| 1006 | ;; |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 1007 | --block-drv-rw-whitelist=*|--block-drv-whitelist=*) block_drv_rw_whitelist=$(echo "$optarg" | sed -e 's/,/ /g') |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 1008 | ;; |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 1009 | --block-drv-ro-whitelist=*) block_drv_ro_whitelist=$(echo "$optarg" | sed -e 's/,/ /g') |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 1010 | ;; |
aurel32 | f839394 | 2009-04-13 18:45:38 +0000 | [diff] [blame] | 1011 | --enable-debug-tcg) debug_tcg="yes" |
| 1012 | ;; |
| 1013 | --disable-debug-tcg) debug_tcg="no" |
| 1014 | ;; |
Paul Brook | f3d08ee | 2009-06-04 11:39:04 +0100 | [diff] [blame] | 1015 | --enable-debug) |
| 1016 | # Enable debugging options that aren't excessively noisy |
| 1017 | debug_tcg="yes" |
Peter Xu | 1fcc6d4 | 2018-04-25 10:54:59 +0800 | [diff] [blame] | 1018 | debug_mutex="yes" |
Paul Brook | f3d08ee | 2009-06-04 11:39:04 +0100 | [diff] [blame] | 1019 | debug="yes" |
| 1020 | strip_opt="no" |
John Snow | b553a04 | 2015-11-03 15:43:42 -0500 | [diff] [blame] | 1021 | fortify_source="no" |
Paul Brook | f3d08ee | 2009-06-04 11:39:04 +0100 | [diff] [blame] | 1022 | ;; |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1023 | --enable-sanitizers) sanitizers="yes" |
| 1024 | ;; |
| 1025 | --disable-sanitizers) sanitizers="no" |
| 1026 | ;; |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 1027 | --enable-tsan) tsan="yes" |
| 1028 | ;; |
| 1029 | --disable-tsan) tsan="no" |
| 1030 | ;; |
Paolo Bonzini | deb6237 | 2020-09-01 07:51:16 -0400 | [diff] [blame] | 1031 | --enable-sparse) sparse="enabled" |
aliguori | 03b4fe7 | 2008-10-07 19:16:17 +0000 | [diff] [blame] | 1032 | ;; |
Paolo Bonzini | deb6237 | 2020-09-01 07:51:16 -0400 | [diff] [blame] | 1033 | --disable-sparse) sparse="disabled" |
aliguori | 03b4fe7 | 2008-10-07 19:16:17 +0000 | [diff] [blame] | 1034 | ;; |
aliguori | 1625af8 | 2009-04-05 17:41:02 +0000 | [diff] [blame] | 1035 | --disable-strip) strip_opt="no" |
| 1036 | ;; |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 1037 | --disable-vnc-sasl) vnc_sasl="disabled" |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 1038 | ;; |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 1039 | --enable-vnc-sasl) vnc_sasl="enabled" |
Juan Quintela | ea784e3 | 2009-08-12 18:20:29 +0200 | [diff] [blame] | 1040 | ;; |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 1041 | --disable-vnc-jpeg) vnc_jpeg="disabled" |
Corentin Chary | 2f6f5c7 | 2010-07-07 20:57:49 +0200 | [diff] [blame] | 1042 | ;; |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 1043 | --enable-vnc-jpeg) vnc_jpeg="enabled" |
Corentin Chary | 2f6f5c7 | 2010-07-07 20:57:49 +0200 | [diff] [blame] | 1044 | ;; |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 1045 | --disable-vnc-png) vnc_png="disabled" |
Corentin Chary | efe556a | 2010-07-07 20:57:56 +0200 | [diff] [blame] | 1046 | ;; |
Paolo Bonzini | a0b9323 | 2020-02-06 15:48:52 +0100 | [diff] [blame] | 1047 | --enable-vnc-png) vnc_png="enabled" |
Corentin Chary | efe556a | 2010-07-07 20:57:56 +0200 | [diff] [blame] | 1048 | ;; |
Paolo Bonzini | 4d34a86 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1049 | --disable-slirp) slirp="disabled" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 1050 | ;; |
Paolo Bonzini | fd6fc21 | 2020-11-20 11:19:38 +0100 | [diff] [blame] | 1051 | --enable-slirp) slirp="enabled" |
| 1052 | ;; |
Paolo Bonzini | 4d34a86 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1053 | --enable-slirp=git) slirp="internal" |
Marc-André Lureau | 7c57bdd8 | 2019-04-24 13:00:41 +0200 | [diff] [blame] | 1054 | ;; |
Marc-André Lureau | 675b9b5 | 2019-02-12 17:25:23 +0100 | [diff] [blame] | 1055 | --enable-slirp=system) slirp="system" |
| 1056 | ;; |
aliguori | e0e6c8c0 | 2008-07-23 18:14:33 +0000 | [diff] [blame] | 1057 | --disable-vde) vde="no" |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 1058 | ;; |
Juan Quintela | dfb278b | 2009-08-12 18:20:27 +0200 | [diff] [blame] | 1059 | --enable-vde) vde="yes" |
| 1060 | ;; |
Vincenzo Maffione | 5895213 | 2013-11-06 11:44:06 +0100 | [diff] [blame] | 1061 | --disable-netmap) netmap="no" |
| 1062 | ;; |
| 1063 | --enable-netmap) netmap="yes" |
| 1064 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1065 | --disable-xen) xen="disabled" |
aliguori | e37630c | 2009-04-22 15:19:10 +0000 | [diff] [blame] | 1066 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1067 | --enable-xen) xen="enabled" |
Juan Quintela | fc321b4 | 2009-08-12 18:29:55 +0200 | [diff] [blame] | 1068 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1069 | --disable-xen-pci-passthrough) xen_pci_passthrough="disabled" |
Anthony PERARD | eb6fda0 | 2012-06-21 15:32:59 +0000 | [diff] [blame] | 1070 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1071 | --enable-xen-pci-passthrough) xen_pci_passthrough="enabled" |
Anthony PERARD | eb6fda0 | 2012-06-21 15:32:59 +0000 | [diff] [blame] | 1072 | ;; |
Paolo Bonzini | 8c6d4ff | 2020-11-17 13:02:17 +0100 | [diff] [blame] | 1073 | --disable-brlapi) brlapi="disabled" |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 1074 | ;; |
Paolo Bonzini | 8c6d4ff | 2020-11-17 13:02:17 +0100 | [diff] [blame] | 1075 | --enable-brlapi) brlapi="enabled" |
Juan Quintela | 4ffcedb | 2009-08-12 18:20:26 +0200 | [diff] [blame] | 1076 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1077 | --disable-kvm) kvm="disabled" |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1078 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1079 | --enable-kvm) kvm="enabled" |
Juan Quintela | b31a027 | 2009-08-12 18:29:56 +0200 | [diff] [blame] | 1080 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1081 | --disable-hax) hax="disabled" |
zhanghailiang | 180fb75 | 2016-10-27 14:43:08 +0800 | [diff] [blame] | 1082 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1083 | --enable-hax) hax="enabled" |
zhanghailiang | 180fb75 | 2016-10-27 14:43:08 +0800 | [diff] [blame] | 1084 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1085 | --disable-hvf) hvf="disabled" |
Sergio Andres Gomez Del Real | c97d6d2 | 2017-09-13 04:05:09 -0500 | [diff] [blame] | 1086 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1087 | --enable-hvf) hvf="enabled" |
Sergio Andres Gomez Del Real | c97d6d2 | 2017-09-13 04:05:09 -0500 | [diff] [blame] | 1088 | ;; |
Reinoud Zandijk | 74a414a | 2021-04-02 22:25:32 +0200 | [diff] [blame] | 1089 | --disable-nvmm) nvmm="disabled" |
| 1090 | ;; |
| 1091 | --enable-nvmm) nvmm="enabled" |
| 1092 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1093 | --disable-whpx) whpx="disabled" |
Justin Terry (VM) | d661d9a | 2018-01-22 13:07:46 -0800 | [diff] [blame] | 1094 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1095 | --enable-whpx) whpx="enabled" |
Justin Terry (VM) | d661d9a | 2018-01-22 13:07:46 -0800 | [diff] [blame] | 1096 | ;; |
Richard Henderson | c6fbea4 | 2021-01-24 11:10:55 -1000 | [diff] [blame] | 1097 | --disable-tcg-interpreter) tcg_interpreter="false" |
Stefan Weil | 9195b2c | 2011-10-19 07:07:18 +0200 | [diff] [blame] | 1098 | ;; |
Richard Henderson | c6fbea4 | 2021-01-24 11:10:55 -1000 | [diff] [blame] | 1099 | --enable-tcg-interpreter) tcg_interpreter="true" |
Stefan Weil | 9195b2c | 2011-10-19 07:07:18 +0200 | [diff] [blame] | 1100 | ;; |
Paolo Bonzini | 727c8bb | 2020-11-17 14:46:58 +0100 | [diff] [blame] | 1101 | --disable-cap-ng) cap_ng="disabled" |
Corey Bryant | 47e9865 | 2012-01-26 09:42:26 -0500 | [diff] [blame] | 1102 | ;; |
Paolo Bonzini | 727c8bb | 2020-11-17 14:46:58 +0100 | [diff] [blame] | 1103 | --enable-cap-ng) cap_ng="enabled" |
Corey Bryant | 47e9865 | 2012-01-26 09:42:26 -0500 | [diff] [blame] | 1104 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1105 | --disable-tcg) tcg="disabled" |
Paolo Bonzini | b3f6ea7 | 2017-07-03 16:59:07 +0200 | [diff] [blame] | 1106 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 1107 | --enable-tcg) tcg="enabled" |
Paolo Bonzini | b3f6ea7 | 2017-07-03 16:59:07 +0200 | [diff] [blame] | 1108 | ;; |
Paolo Bonzini | aa08796 | 2020-09-01 11:15:30 -0400 | [diff] [blame] | 1109 | --disable-malloc-trim) malloc_trim="disabled" |
Yang Zhong | 5a22ab7 | 2017-12-20 21:16:46 +0800 | [diff] [blame] | 1110 | ;; |
Paolo Bonzini | aa08796 | 2020-09-01 11:15:30 -0400 | [diff] [blame] | 1111 | --enable-malloc-trim) malloc_trim="enabled" |
Yang Zhong | 5a22ab7 | 2017-12-20 21:16:46 +0800 | [diff] [blame] | 1112 | ;; |
Gerd Hoffmann | cd4ec0b | 2010-03-24 10:26:51 +0100 | [diff] [blame] | 1113 | --disable-spice) spice="no" |
| 1114 | ;; |
Gerd Hoffmann | 58d3f3f | 2021-05-19 07:39:32 +0200 | [diff] [blame] | 1115 | --enable-spice) |
| 1116 | spice_protocol="yes" |
| 1117 | spice="yes" |
| 1118 | ;; |
| 1119 | --disable-spice-protocol) |
| 1120 | spice_protocol="no" |
| 1121 | spice="no" |
| 1122 | ;; |
| 1123 | --enable-spice-protocol) spice_protocol="yes" |
Gerd Hoffmann | cd4ec0b | 2010-03-24 10:26:51 +0100 | [diff] [blame] | 1124 | ;; |
Paolo Bonzini | 9db405a | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1125 | --disable-libiscsi) libiscsi="disabled" |
Ronnie Sahlberg | c589b24 | 2011-10-25 19:24:24 +1100 | [diff] [blame] | 1126 | ;; |
Paolo Bonzini | 9db405a | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1127 | --enable-libiscsi) libiscsi="enabled" |
Ronnie Sahlberg | c589b24 | 2011-10-25 19:24:24 +1100 | [diff] [blame] | 1128 | ;; |
Paolo Bonzini | 30045c0 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1129 | --disable-libnfs) libnfs="disabled" |
Peter Lieven | 6542aa9 | 2014-02-03 10:26:13 +0100 | [diff] [blame] | 1130 | ;; |
Paolo Bonzini | 30045c0 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1131 | --enable-libnfs) libnfs="enabled" |
Peter Lieven | 6542aa9 | 2014-02-03 10:26:13 +0100 | [diff] [blame] | 1132 | ;; |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 1133 | --enable-profiler) profiler="yes" |
| 1134 | ;; |
Paolo Bonzini | b4e312e | 2020-09-01 11:28:59 -0400 | [diff] [blame] | 1135 | --disable-cocoa) cocoa="disabled" |
Pavel Borzenkov | 1482103 | 2011-11-10 22:40:07 +0400 | [diff] [blame] | 1136 | ;; |
Paolo Bonzini | a23a678 | 2021-01-07 13:32:12 +0100 | [diff] [blame] | 1137 | --enable-cocoa) cocoa="enabled" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 1138 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 1139 | --disable-system) softmmu="no" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 1140 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 1141 | --enable-system) softmmu="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 1142 | ;; |
Zachary Amsden | 0953a80 | 2009-07-30 00:14:59 -1000 | [diff] [blame] | 1143 | --disable-user) |
| 1144 | linux_user="no" ; |
| 1145 | bsd_user="no" ; |
Zachary Amsden | 0953a80 | 2009-07-30 00:14:59 -1000 | [diff] [blame] | 1146 | ;; |
| 1147 | --enable-user) ;; |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1148 | --disable-linux-user) linux_user="no" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 1149 | ;; |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1150 | --enable-linux-user) linux_user="yes" |
| 1151 | ;; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 1152 | --disable-bsd-user) bsd_user="no" |
| 1153 | ;; |
| 1154 | --enable-bsd-user) bsd_user="yes" |
| 1155 | ;; |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 1156 | --enable-pie) pie="yes" |
Kirill A. Shutemov | 34005a0 | 2009-09-12 02:17:55 +0300 | [diff] [blame] | 1157 | ;; |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 1158 | --disable-pie) pie="no" |
Kirill A. Shutemov | 34005a0 | 2009-09-12 02:17:55 +0300 | [diff] [blame] | 1159 | ;; |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 1160 | --enable-werror) werror="yes" |
| 1161 | ;; |
| 1162 | --disable-werror) werror="no" |
| 1163 | ;; |
Daniele Buono | cdad781 | 2020-12-04 18:06:11 -0500 | [diff] [blame] | 1164 | --enable-lto) lto="true" |
| 1165 | ;; |
| 1166 | --disable-lto) lto="false" |
| 1167 | ;; |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 1168 | --enable-stack-protector) stack_protector="yes" |
| 1169 | ;; |
| 1170 | --disable-stack-protector) stack_protector="no" |
| 1171 | ;; |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 1172 | --enable-safe-stack) safe_stack="yes" |
| 1173 | ;; |
| 1174 | --disable-safe-stack) safe_stack="no" |
| 1175 | ;; |
Daniele Buono | 9e62ba4 | 2020-12-04 18:06:14 -0500 | [diff] [blame] | 1176 | --enable-cfi) |
| 1177 | cfi="true"; |
| 1178 | lto="true"; |
| 1179 | ;; |
| 1180 | --disable-cfi) cfi="false" |
| 1181 | ;; |
| 1182 | --enable-cfi-debug) cfi_debug="true" |
| 1183 | ;; |
| 1184 | --disable-cfi-debug) cfi_debug="false" |
| 1185 | ;; |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 1186 | --disable-curses) curses="disabled" |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 1187 | ;; |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 1188 | --enable-curses) curses="enabled" |
Juan Quintela | c584a6d | 2009-08-12 18:20:30 +0200 | [diff] [blame] | 1189 | ;; |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 1190 | --disable-iconv) iconv="disabled" |
Samuel Thibault | e08bb30 | 2019-03-11 14:51:26 +0100 | [diff] [blame] | 1191 | ;; |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 1192 | --enable-iconv) iconv="enabled" |
Samuel Thibault | e08bb30 | 2019-03-11 14:51:26 +0100 | [diff] [blame] | 1193 | ;; |
Paolo Bonzini | f9cd86f | 2020-11-17 12:43:15 +0100 | [diff] [blame] | 1194 | --disable-curl) curl="disabled" |
Alexander Graf | 769ce76 | 2009-05-11 17:41:42 +0200 | [diff] [blame] | 1195 | ;; |
Paolo Bonzini | f9cd86f | 2020-11-17 12:43:15 +0100 | [diff] [blame] | 1196 | --enable-curl) curl="enabled" |
Juan Quintela | 788c819 | 2009-08-12 18:29:47 +0200 | [diff] [blame] | 1197 | ;; |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1198 | --disable-fdt) fdt="disabled" |
Juan Quintela | 2df87df | 2009-08-12 18:29:54 +0200 | [diff] [blame] | 1199 | ;; |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1200 | --enable-fdt) fdt="enabled" |
| 1201 | ;; |
| 1202 | --enable-fdt=git) fdt="internal" |
| 1203 | ;; |
| 1204 | --enable-fdt=system) fdt="system" |
Juan Quintela | 2df87df | 2009-08-12 18:29:54 +0200 | [diff] [blame] | 1205 | ;; |
Christoph Hellwig | 5c6c3a6 | 2009-08-20 16:58:35 +0200 | [diff] [blame] | 1206 | --disable-linux-aio) linux_aio="no" |
| 1207 | ;; |
| 1208 | --enable-linux-aio) linux_aio="yes" |
| 1209 | ;; |
Aarushi Mehta | c10dd85 | 2020-01-20 14:18:44 +0000 | [diff] [blame] | 1210 | --disable-linux-io-uring) linux_io_uring="no" |
| 1211 | ;; |
| 1212 | --enable-linux-io-uring) linux_io_uring="yes" |
| 1213 | ;; |
Paolo Bonzini | f7f2d65 | 2020-11-17 14:45:24 +0100 | [diff] [blame] | 1214 | --disable-attr) attr="disabled" |
Venkateswararao Jujjuri (JV) | 758e8e3 | 2010-06-14 13:34:41 -0700 | [diff] [blame] | 1215 | ;; |
Paolo Bonzini | f7f2d65 | 2020-11-17 14:45:24 +0100 | [diff] [blame] | 1216 | --enable-attr) attr="enabled" |
Venkateswararao Jujjuri (JV) | 758e8e3 | 2010-06-14 13:34:41 -0700 | [diff] [blame] | 1217 | ;; |
Paolo Bonzini | a40161c | 2018-02-16 10:05:23 +0100 | [diff] [blame] | 1218 | --disable-membarrier) membarrier="no" |
| 1219 | ;; |
| 1220 | --enable-membarrier) membarrier="yes" |
| 1221 | ;; |
Paolo Bonzini | c8d5450 | 2020-10-16 03:32:52 -0400 | [diff] [blame] | 1222 | --disable-blobs) blobs="false" |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 1223 | ;; |
Thomas Huth | 7e563bf | 2018-02-15 12:06:47 +0100 | [diff] [blame] | 1224 | --with-pkgversion=*) pkgversion="$optarg" |
pbrook | 4a19f1e | 2009-04-07 23:17:49 +0000 | [diff] [blame] | 1225 | ;; |
Alex Barcelo | 519175a | 2012-02-28 12:25:50 +0100 | [diff] [blame] | 1226 | --with-coroutine=*) coroutine="$optarg" |
| 1227 | ;; |
Stefan Hajnoczi | 70c60c0 | 2013-09-11 16:42:35 +0200 | [diff] [blame] | 1228 | --disable-coroutine-pool) coroutine_pool="no" |
| 1229 | ;; |
| 1230 | --enable-coroutine-pool) coroutine_pool="yes" |
| 1231 | ;; |
Peter Lieven | 7d992e4 | 2016-09-27 11:58:45 +0200 | [diff] [blame] | 1232 | --enable-debug-stack-usage) debug_stack_usage="yes" |
| 1233 | ;; |
Longpeng(Mike) | f0d92b5 | 2017-07-14 14:04:05 -0400 | [diff] [blame] | 1234 | --enable-crypto-afalg) crypto_afalg="yes" |
| 1235 | ;; |
| 1236 | --disable-crypto-afalg) crypto_afalg="no" |
| 1237 | ;; |
Yonggang Luo | e366766 | 2020-10-16 06:06:25 +0800 | [diff] [blame] | 1238 | --disable-docs) docs="disabled" |
Anthony Liguori | 70ec5dc | 2009-05-14 08:25:04 -0500 | [diff] [blame] | 1239 | ;; |
Yonggang Luo | e366766 | 2020-10-16 06:06:25 +0800 | [diff] [blame] | 1240 | --enable-docs) docs="enabled" |
Juan Quintela | 83a3ab8 | 2009-08-12 18:29:51 +0200 | [diff] [blame] | 1241 | ;; |
Michael S. Tsirkin | d597005 | 2010-03-17 13:08:17 +0200 | [diff] [blame] | 1242 | --disable-vhost-net) vhost_net="no" |
| 1243 | ;; |
| 1244 | --enable-vhost-net) vhost_net="yes" |
| 1245 | ;; |
Gonglei | 042cea2 | 2018-03-01 21:46:28 +0800 | [diff] [blame] | 1246 | --disable-vhost-crypto) vhost_crypto="no" |
| 1247 | ;; |
Paolo Bonzini | 299e6f1 | 2019-02-14 18:35:53 +0100 | [diff] [blame] | 1248 | --enable-vhost-crypto) vhost_crypto="yes" |
Gonglei | 042cea2 | 2018-03-01 21:46:28 +0800 | [diff] [blame] | 1249 | ;; |
Nicholas Bellinger | 5e9be92 | 2013-03-29 01:08:16 +0000 | [diff] [blame] | 1250 | --disable-vhost-scsi) vhost_scsi="no" |
| 1251 | ;; |
| 1252 | --enable-vhost-scsi) vhost_scsi="yes" |
| 1253 | ;; |
Stefan Hajnoczi | fc0b9b0 | 2016-08-16 13:27:22 +0100 | [diff] [blame] | 1254 | --disable-vhost-vsock) vhost_vsock="no" |
| 1255 | ;; |
| 1256 | --enable-vhost-vsock) vhost_vsock="yes" |
| 1257 | ;; |
Stefan Hajnoczi | e5e856c | 2020-11-10 17:11:19 +0000 | [diff] [blame] | 1258 | --disable-vhost-user-blk-server) vhost_user_blk_server="disabled" |
Stefan Hajnoczi | bc15e44 | 2020-10-27 17:35:18 +0000 | [diff] [blame] | 1259 | ;; |
Stefan Hajnoczi | e5e856c | 2020-11-10 17:11:19 +0000 | [diff] [blame] | 1260 | --enable-vhost-user-blk-server) vhost_user_blk_server="enabled" |
Stefan Hajnoczi | bc15e44 | 2020-10-27 17:35:18 +0000 | [diff] [blame] | 1261 | ;; |
Dr. David Alan Gilbert | 98fc1ad | 2019-09-30 11:51:34 +0100 | [diff] [blame] | 1262 | --disable-vhost-user-fs) vhost_user_fs="no" |
| 1263 | ;; |
| 1264 | --enable-vhost-user-fs) vhost_user_fs="yes" |
| 1265 | ;; |
Gerd Hoffmann | da076ff | 2014-11-20 09:49:44 +0100 | [diff] [blame] | 1266 | --disable-opengl) opengl="no" |
Michael Walle | 20ff075 | 2011-03-07 23:32:39 +0100 | [diff] [blame] | 1267 | ;; |
Gerd Hoffmann | da076ff | 2014-11-20 09:49:44 +0100 | [diff] [blame] | 1268 | --enable-opengl) opengl="yes" |
Michael Walle | 20ff075 | 2011-03-07 23:32:39 +0100 | [diff] [blame] | 1269 | ;; |
Paolo Bonzini | fabd1e9 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1270 | --disable-rbd) rbd="disabled" |
Christian Brunner | f27aaf4 | 2010-12-06 20:53:01 +0100 | [diff] [blame] | 1271 | ;; |
Paolo Bonzini | fabd1e9 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1272 | --enable-rbd) rbd="enabled" |
Christian Brunner | f27aaf4 | 2010-12-06 20:53:01 +0100 | [diff] [blame] | 1273 | ;; |
Sergei Trofimovich | 8c84cf1 | 2012-01-24 20:42:40 +0300 | [diff] [blame] | 1274 | --disable-xfsctl) xfs="no" |
| 1275 | ;; |
| 1276 | --enable-xfsctl) xfs="yes" |
| 1277 | ;; |
Marc-André Lureau | 7b02f54 | 2015-08-30 11:48:40 +0200 | [diff] [blame] | 1278 | --disable-smartcard) smartcard="no" |
Robert Relyea | 111a38b | 2010-11-28 16:36:38 +0200 | [diff] [blame] | 1279 | ;; |
Marc-André Lureau | 7b02f54 | 2015-08-30 11:48:40 +0200 | [diff] [blame] | 1280 | --enable-smartcard) smartcard="yes" |
Robert Relyea | 111a38b | 2010-11-28 16:36:38 +0200 | [diff] [blame] | 1281 | ;; |
César Belley | 0a40bcb | 2020-08-26 13:42:04 +0200 | [diff] [blame] | 1282 | --disable-u2f) u2f="disabled" |
| 1283 | ;; |
| 1284 | --enable-u2f) u2f="enabled" |
| 1285 | ;; |
Gerd Hoffmann | 2b2325f | 2012-11-30 16:02:11 +0100 | [diff] [blame] | 1286 | --disable-libusb) libusb="no" |
| 1287 | ;; |
| 1288 | --enable-libusb) libusb="yes" |
| 1289 | ;; |
Hans de Goede | 69354a8 | 2011-07-19 11:04:10 +0200 | [diff] [blame] | 1290 | --disable-usb-redir) usb_redir="no" |
| 1291 | ;; |
| 1292 | --enable-usb-redir) usb_redir="yes" |
| 1293 | ;; |
Paolo Bonzini | 1ffb3bb | 2020-08-28 19:33:54 +0200 | [diff] [blame] | 1294 | --disable-zlib-test) |
Alon Levy | 1ece990 | 2011-07-26 12:30:40 +0300 | [diff] [blame] | 1295 | ;; |
Paolo Bonzini | 0c32a0a | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1296 | --disable-lzo) lzo="disabled" |
Stefan Weil | b25c9df | 2014-04-29 08:21:16 +0200 | [diff] [blame] | 1297 | ;; |
Paolo Bonzini | 0c32a0a | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 1298 | --enable-lzo) lzo="enabled" |
qiaonuohan | 607dacd | 2014-02-18 14:11:30 +0800 | [diff] [blame] | 1299 | ;; |
Paolo Bonzini | 241611e | 2020-11-17 13:32:34 +0100 | [diff] [blame] | 1300 | --disable-snappy) snappy="disabled" |
Stefan Weil | b25c9df | 2014-04-29 08:21:16 +0200 | [diff] [blame] | 1301 | ;; |
Paolo Bonzini | 241611e | 2020-11-17 13:32:34 +0100 | [diff] [blame] | 1302 | --enable-snappy) snappy="enabled" |
qiaonuohan | 607dacd | 2014-02-18 14:11:30 +0800 | [diff] [blame] | 1303 | ;; |
Paolo Bonzini | 29ba611 | 2020-11-17 13:07:52 +0100 | [diff] [blame] | 1304 | --disable-bzip2) bzip2="disabled" |
Peter Wu | 6b383c0 | 2015-01-06 18:48:14 +0100 | [diff] [blame] | 1305 | ;; |
Paolo Bonzini | 29ba611 | 2020-11-17 13:07:52 +0100 | [diff] [blame] | 1306 | --enable-bzip2) bzip2="enabled" |
Peter Wu | 6b383c0 | 2015-01-06 18:48:14 +0100 | [diff] [blame] | 1307 | ;; |
Paolo Bonzini | ecea369 | 2020-11-17 13:35:28 +0100 | [diff] [blame] | 1308 | --enable-lzfse) lzfse="enabled" |
Julio Faracco | 83bc1f9 | 2018-11-05 13:08:04 -0200 | [diff] [blame] | 1309 | ;; |
Paolo Bonzini | ecea369 | 2020-11-17 13:35:28 +0100 | [diff] [blame] | 1310 | --disable-lzfse) lzfse="disabled" |
Julio Faracco | 83bc1f9 | 2018-11-05 13:08:04 -0200 | [diff] [blame] | 1311 | ;; |
Paolo Bonzini | b1def33 | 2020-11-17 13:37:39 +0100 | [diff] [blame] | 1312 | --disable-zstd) zstd="disabled" |
Juan Quintela | 3a67848 | 2019-12-17 21:15:24 +0100 | [diff] [blame] | 1313 | ;; |
Paolo Bonzini | b1def33 | 2020-11-17 13:37:39 +0100 | [diff] [blame] | 1314 | --enable-zstd) zstd="enabled" |
Juan Quintela | 3a67848 | 2019-12-17 21:15:24 +0100 | [diff] [blame] | 1315 | ;; |
Michael Roth | d138cee | 2011-08-01 14:52:57 -0500 | [diff] [blame] | 1316 | --enable-guest-agent) guest_agent="yes" |
| 1317 | ;; |
| 1318 | --disable-guest-agent) guest_agent="no" |
| 1319 | ;; |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 1320 | --enable-guest-agent-msi) guest_agent_msi="enabled" |
Yossi Hindin | 9dacf32 | 2015-05-06 14:57:40 +0300 | [diff] [blame] | 1321 | ;; |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 1322 | --disable-guest-agent-msi) guest_agent_msi="disabled" |
Yossi Hindin | 9dacf32 | 2015-05-06 14:57:40 +0300 | [diff] [blame] | 1323 | ;; |
Tomoki Sekiyama | d9840e2 | 2013-08-07 11:40:03 -0400 | [diff] [blame] | 1324 | --with-vss-sdk) vss_win32_sdk="" |
| 1325 | ;; |
| 1326 | --with-vss-sdk=*) vss_win32_sdk="$optarg" |
| 1327 | ;; |
| 1328 | --without-vss-sdk) vss_win32_sdk="no" |
| 1329 | ;; |
| 1330 | --with-win-sdk) win_sdk="" |
| 1331 | ;; |
| 1332 | --with-win-sdk=*) win_sdk="$optarg" |
| 1333 | ;; |
| 1334 | --without-win-sdk) win_sdk="no" |
| 1335 | ;; |
Daniel P. Berrange | 4b1c11f | 2012-09-10 12:26:29 +0100 | [diff] [blame] | 1336 | --enable-tools) want_tools="yes" |
| 1337 | ;; |
| 1338 | --disable-tools) want_tools="no" |
| 1339 | ;; |
Paolo Bonzini | 90835c2 | 2020-11-17 14:22:24 +0100 | [diff] [blame] | 1340 | --enable-seccomp) seccomp="enabled" |
Eduardo Otubo | f794573 | 2012-08-14 18:44:05 -0300 | [diff] [blame] | 1341 | ;; |
Paolo Bonzini | 90835c2 | 2020-11-17 14:22:24 +0100 | [diff] [blame] | 1342 | --disable-seccomp) seccomp="disabled" |
Eduardo Otubo | f794573 | 2012-08-14 18:44:05 -0300 | [diff] [blame] | 1343 | ;; |
Paolo Bonzini | 08821ca | 2020-11-17 13:01:26 +0100 | [diff] [blame] | 1344 | --disable-glusterfs) glusterfs="disabled" |
Bharata B Rao | eb10039 | 2012-09-24 14:42:45 +0530 | [diff] [blame] | 1345 | ;; |
Liam Merwick | 86583a0 | 2018-10-19 21:38:59 +0100 | [diff] [blame] | 1346 | --disable-avx2) avx2_opt="no" |
| 1347 | ;; |
| 1348 | --enable-avx2) avx2_opt="yes" |
| 1349 | ;; |
Robert Hoo | 6b8cd44 | 2020-02-29 20:34:34 +0800 | [diff] [blame] | 1350 | --disable-avx512f) avx512f_opt="no" |
| 1351 | ;; |
| 1352 | --enable-avx512f) avx512f_opt="yes" |
| 1353 | ;; |
| 1354 | |
Paolo Bonzini | 08821ca | 2020-11-17 13:01:26 +0100 | [diff] [blame] | 1355 | --enable-glusterfs) glusterfs="enabled" |
Bharata B Rao | eb10039 | 2012-09-24 14:42:45 +0530 | [diff] [blame] | 1356 | ;; |
Fam Zheng | 52b53c0 | 2014-09-10 14:17:51 +0800 | [diff] [blame] | 1357 | --disable-virtio-blk-data-plane|--enable-virtio-blk-data-plane) |
| 1358 | echo "$0: $opt is obsolete, virtio-blk data-plane is always on" >&2 |
Stefan Hajnoczi | 583f6e7 | 2012-11-14 15:04:15 +0100 | [diff] [blame] | 1359 | ;; |
Fam Zheng | cb6414d | 2016-09-21 12:27:16 +0800 | [diff] [blame] | 1360 | --enable-vhdx|--disable-vhdx) |
| 1361 | echo "$0: $opt is obsolete, VHDX driver is always built" >&2 |
| 1362 | ;; |
Fam Zheng | 315d318 | 2016-09-21 12:27:21 +0800 | [diff] [blame] | 1363 | --enable-uuid|--disable-uuid) |
| 1364 | echo "$0: $opt is obsolete, UUID support is always built" >&2 |
| 1365 | ;; |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 1366 | --disable-gtk) gtk="disabled" |
Anthony Liguori | a4ccabc | 2013-02-20 07:43:20 -0600 | [diff] [blame] | 1367 | ;; |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 1368 | --enable-gtk) gtk="enabled" |
Anthony Liguori | a4ccabc | 2013-02-20 07:43:20 -0600 | [diff] [blame] | 1369 | ;; |
Daniel P. Berrange | a1c5e94 | 2016-06-06 10:05:06 +0100 | [diff] [blame] | 1370 | --tls-priority=*) tls_priority="$optarg" |
| 1371 | ;; |
Daniel P. Berrange | ddbb0d0 | 2015-07-01 18:10:29 +0100 | [diff] [blame] | 1372 | --disable-gnutls) gnutls="no" |
| 1373 | ;; |
| 1374 | --enable-gnutls) gnutls="yes" |
| 1375 | ;; |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 1376 | --disable-nettle) nettle="no" |
| 1377 | ;; |
| 1378 | --enable-nettle) nettle="yes" |
| 1379 | ;; |
| 1380 | --disable-gcrypt) gcrypt="no" |
| 1381 | ;; |
| 1382 | --enable-gcrypt) gcrypt="yes" |
| 1383 | ;; |
Daniel P. Berrange | 8953caf | 2016-07-27 14:13:56 +0100 | [diff] [blame] | 1384 | --disable-auth-pam) auth_pam="no" |
| 1385 | ;; |
| 1386 | --enable-auth-pam) auth_pam="yes" |
| 1387 | ;; |
Michael R. Hines | 2da776d | 2013-07-22 10:01:54 -0400 | [diff] [blame] | 1388 | --enable-rdma) rdma="yes" |
| 1389 | ;; |
| 1390 | --disable-rdma) rdma="no" |
| 1391 | ;; |
Marcel Apfelbaum | 21ab34c | 2018-08-16 18:16:37 +0300 | [diff] [blame] | 1392 | --enable-pvrdma) pvrdma="yes" |
| 1393 | ;; |
| 1394 | --disable-pvrdma) pvrdma="no" |
| 1395 | ;; |
Stefan Weil | bbbf9bf | 2014-02-19 07:04:34 +0100 | [diff] [blame] | 1396 | --disable-vte) vte="no" |
| 1397 | ;; |
| 1398 | --enable-vte) vte="yes" |
| 1399 | ;; |
Gerd Hoffmann | 9d9e152 | 2014-07-11 12:51:43 +0200 | [diff] [blame] | 1400 | --disable-virglrenderer) virglrenderer="no" |
| 1401 | ;; |
| 1402 | --enable-virglrenderer) virglrenderer="yes" |
| 1403 | ;; |
Cole Robinson | e91c793 | 2014-06-16 15:32:47 -0400 | [diff] [blame] | 1404 | --disable-tpm) tpm="no" |
| 1405 | ;; |
Stefan Berger | ab214c2 | 2013-02-27 12:47:52 -0500 | [diff] [blame] | 1406 | --enable-tpm) tpm="yes" |
| 1407 | ;; |
Pino Toscano | b10d49d | 2019-06-20 22:08:40 +0200 | [diff] [blame] | 1408 | --disable-libssh) libssh="no" |
Richard W.M. Jones | 0a12ec8 | 2013-04-09 15:30:53 +0100 | [diff] [blame] | 1409 | ;; |
Pino Toscano | b10d49d | 2019-06-20 22:08:40 +0200 | [diff] [blame] | 1410 | --enable-libssh) libssh="yes" |
Richard W.M. Jones | 0a12ec8 | 2013-04-09 15:30:53 +0100 | [diff] [blame] | 1411 | ;; |
Dr. David Alan Gilbert | ed1701c | 2017-05-15 15:05:29 +0100 | [diff] [blame] | 1412 | --disable-live-block-migration) live_block_migration="no" |
| 1413 | ;; |
| 1414 | --enable-live-block-migration) live_block_migration="yes" |
| 1415 | ;; |
Wanlong Gao | a99d57b | 2014-05-14 17:43:28 +0800 | [diff] [blame] | 1416 | --disable-numa) numa="no" |
| 1417 | ;; |
| 1418 | --enable-numa) numa="yes" |
| 1419 | ;; |
Klim Kireev | ed279a0 | 2018-01-12 12:01:19 +0300 | [diff] [blame] | 1420 | --disable-libxml2) libxml2="no" |
| 1421 | ;; |
| 1422 | --enable-libxml2) libxml2="yes" |
| 1423 | ;; |
Fam Zheng | 2847b46 | 2015-03-26 11:03:12 +0800 | [diff] [blame] | 1424 | --disable-tcmalloc) tcmalloc="no" |
| 1425 | ;; |
| 1426 | --enable-tcmalloc) tcmalloc="yes" |
| 1427 | ;; |
Alexandre Derumier | 7b01cb9 | 2015-06-19 12:56:58 +0200 | [diff] [blame] | 1428 | --disable-jemalloc) jemalloc="no" |
| 1429 | ;; |
| 1430 | --enable-jemalloc) jemalloc="yes" |
| 1431 | ;; |
Changlong Xie | a6b1d4c | 2016-07-27 15:01:48 +0800 | [diff] [blame] | 1432 | --disable-replication) replication="no" |
| 1433 | ;; |
| 1434 | --enable-replication) replication="yes" |
| 1435 | ;; |
Jeff Cody | 2f74013 | 2018-11-07 07:36:44 +0100 | [diff] [blame] | 1436 | --disable-bochs) bochs="no" |
| 1437 | ;; |
| 1438 | --enable-bochs) bochs="yes" |
| 1439 | ;; |
| 1440 | --disable-cloop) cloop="no" |
| 1441 | ;; |
| 1442 | --enable-cloop) cloop="yes" |
| 1443 | ;; |
| 1444 | --disable-dmg) dmg="no" |
| 1445 | ;; |
| 1446 | --enable-dmg) dmg="yes" |
| 1447 | ;; |
| 1448 | --disable-qcow1) qcow1="no" |
| 1449 | ;; |
| 1450 | --enable-qcow1) qcow1="yes" |
| 1451 | ;; |
| 1452 | --disable-vdi) vdi="no" |
| 1453 | ;; |
| 1454 | --enable-vdi) vdi="yes" |
| 1455 | ;; |
| 1456 | --disable-vvfat) vvfat="no" |
| 1457 | ;; |
| 1458 | --enable-vvfat) vvfat="yes" |
| 1459 | ;; |
| 1460 | --disable-qed) qed="no" |
| 1461 | ;; |
| 1462 | --enable-qed) qed="yes" |
| 1463 | ;; |
| 1464 | --disable-parallels) parallels="no" |
| 1465 | ;; |
| 1466 | --enable-parallels) parallels="yes" |
| 1467 | ;; |
Marc-André Lureau | e6a7486 | 2017-08-03 11:07:46 +0200 | [diff] [blame] | 1468 | --disable-vhost-user) vhost_user="no" |
| 1469 | ;; |
Paolo Bonzini | 299e6f1 | 2019-02-14 18:35:53 +0100 | [diff] [blame] | 1470 | --enable-vhost-user) vhost_user="yes" |
| 1471 | ;; |
Cindy Lu | 108a648 | 2020-07-01 22:55:37 +0800 | [diff] [blame] | 1472 | --disable-vhost-vdpa) vhost_vdpa="no" |
| 1473 | ;; |
| 1474 | --enable-vhost-vdpa) vhost_vdpa="yes" |
| 1475 | ;; |
Paolo Bonzini | 299e6f1 | 2019-02-14 18:35:53 +0100 | [diff] [blame] | 1476 | --disable-vhost-kernel) vhost_kernel="no" |
| 1477 | ;; |
| 1478 | --enable-vhost-kernel) vhost_kernel="yes" |
Marc-André Lureau | e6a7486 | 2017-08-03 11:07:46 +0200 | [diff] [blame] | 1479 | ;; |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1480 | --disable-capstone) capstone="disabled" |
Richard Henderson | 8ca8076 | 2017-09-14 09:41:12 -0700 | [diff] [blame] | 1481 | ;; |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1482 | --enable-capstone) capstone="enabled" |
Richard Henderson | 8ca8076 | 2017-09-14 09:41:12 -0700 | [diff] [blame] | 1483 | ;; |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 1484 | --enable-capstone=git) capstone="internal" |
Richard Henderson | e219c49 | 2017-09-28 09:01:23 -0700 | [diff] [blame] | 1485 | ;; |
| 1486 | --enable-capstone=system) capstone="system" |
| 1487 | ;; |
Daniel P. Berrange | cc84d63 | 2017-10-20 15:02:43 +0100 | [diff] [blame] | 1488 | --with-git=*) git="$optarg" |
| 1489 | ;; |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 1490 | --enable-git-update) |
| 1491 | git_submodules_action="update" |
| 1492 | echo "--enable-git-update deprecated, use --with-git-submodules=update" |
Daniel P. Berrange | f62bbee | 2017-10-26 13:52:26 +0100 | [diff] [blame] | 1493 | ;; |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 1494 | --disable-git-update) |
| 1495 | git_submodules_action="validate" |
| 1496 | echo "--disable-git-update deprecated, use --with-git-submodules=validate" |
| 1497 | ;; |
| 1498 | --with-git-submodules=*) |
| 1499 | git_submodules_action="$optarg" |
Daniel P. Berrange | f62bbee | 2017-10-26 13:52:26 +0100 | [diff] [blame] | 1500 | ;; |
Paolo Bonzini | ba59fb7 | 2018-06-13 14:23:08 +0200 | [diff] [blame] | 1501 | --enable-debug-mutex) debug_mutex=yes |
| 1502 | ;; |
| 1503 | --disable-debug-mutex) debug_mutex=no |
| 1504 | ;; |
Junyan He | 1782440 | 2018-07-18 15:47:59 +0800 | [diff] [blame] | 1505 | --enable-libpmem) libpmem=yes |
| 1506 | ;; |
| 1507 | --disable-libpmem) libpmem=no |
| 1508 | ;; |
Laurent Vivier | 4113f4c | 2020-08-24 17:24:29 +0200 | [diff] [blame] | 1509 | --enable-xkbcommon) xkbcommon="enabled" |
James Le Cuirot | 7541191 | 2019-09-14 15:51:55 +0100 | [diff] [blame] | 1510 | ;; |
Laurent Vivier | 4113f4c | 2020-08-24 17:24:29 +0200 | [diff] [blame] | 1511 | --disable-xkbcommon) xkbcommon="disabled" |
James Le Cuirot | 7541191 | 2019-09-14 15:51:55 +0100 | [diff] [blame] | 1512 | ;; |
Alex Bennée | 40e8c6f | 2019-06-13 14:52:25 +0100 | [diff] [blame] | 1513 | --enable-plugins) plugins="yes" |
| 1514 | ;; |
| 1515 | --disable-plugins) plugins="no" |
| 1516 | ;; |
Alex Bennée | afc3a8f | 2019-11-28 16:35:24 +0100 | [diff] [blame] | 1517 | --enable-containers) use_containers="yes" |
| 1518 | ;; |
| 1519 | --disable-containers) use_containers="no" |
| 1520 | ;; |
Alexander Bulekov | adc2802 | 2020-02-19 23:11:14 -0500 | [diff] [blame] | 1521 | --enable-fuzzing) fuzzing=yes |
| 1522 | ;; |
| 1523 | --disable-fuzzing) fuzzing=no |
| 1524 | ;; |
Alex Bennée | f48e590 | 2020-03-16 17:21:48 +0000 | [diff] [blame] | 1525 | --gdb=*) gdb_bin="$optarg" |
| 1526 | ;; |
Marek Marczykowski-Górecki | b767d25 | 2020-05-20 15:20:23 +0200 | [diff] [blame] | 1527 | --enable-rng-none) rng_none=yes |
| 1528 | ;; |
| 1529 | --disable-rng-none) rng_none=no |
| 1530 | ;; |
Alexey Krasikov | 54e7aac | 2020-05-25 14:19:12 +0300 | [diff] [blame] | 1531 | --enable-keyring) secret_keyring="yes" |
| 1532 | ;; |
| 1533 | --disable-keyring) secret_keyring="no" |
| 1534 | ;; |
Jingqi Liu | 21b2eca | 2020-04-29 16:50:11 +0800 | [diff] [blame] | 1535 | --enable-libdaxctl) libdaxctl=yes |
| 1536 | ;; |
| 1537 | --disable-libdaxctl) libdaxctl=no |
| 1538 | ;; |
Max Reitz | a484a71 | 2020-10-27 20:05:41 +0100 | [diff] [blame] | 1539 | --enable-fuse) fuse="enabled" |
| 1540 | ;; |
| 1541 | --disable-fuse) fuse="disabled" |
| 1542 | ;; |
Max Reitz | df4ea70 | 2020-10-27 20:05:46 +0100 | [diff] [blame] | 1543 | --enable-fuse-lseek) fuse_lseek="enabled" |
| 1544 | ;; |
| 1545 | --disable-fuse-lseek) fuse_lseek="disabled" |
| 1546 | ;; |
Paolo Bonzini | 106ad1f | 2021-02-17 16:24:25 +0100 | [diff] [blame] | 1547 | --enable-multiprocess) multiprocess="enabled" |
Jagannathan Raman | 3090de6 | 2021-01-29 11:46:05 -0500 | [diff] [blame] | 1548 | ;; |
Paolo Bonzini | 106ad1f | 2021-02-17 16:24:25 +0100 | [diff] [blame] | 1549 | --disable-multiprocess) multiprocess="disabled" |
Jagannathan Raman | 3090de6 | 2021-01-29 11:46:05 -0500 | [diff] [blame] | 1550 | ;; |
Denis Plotnikov | 20cf7b8 | 2021-03-12 18:14:40 +0300 | [diff] [blame] | 1551 | --enable-gio) gio=yes |
| 1552 | ;; |
| 1553 | --disable-gio) gio=no |
| 1554 | ;; |
Joelle van Dyne | b8e0c49 | 2021-03-15 11:03:41 -0700 | [diff] [blame] | 1555 | --enable-slirp-smbd) slirp_smbd=yes |
| 1556 | ;; |
| 1557 | --disable-slirp-smbd) slirp_smbd=no |
| 1558 | ;; |
Fam Zheng | 2d2ad6d | 2014-04-18 14:55:36 +0800 | [diff] [blame] | 1559 | *) |
| 1560 | echo "ERROR: unknown option $opt" |
| 1561 | echo "Try '$0 --help' for more information" |
| 1562 | exit 1 |
balrog | 7f1559c | 2007-11-17 10:24:32 +0000 | [diff] [blame] | 1563 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1564 | esac |
| 1565 | done |
| 1566 | |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 1567 | case $git_submodules_action in |
| 1568 | update|validate) |
| 1569 | if test ! -e "$source_path/.git"; then |
| 1570 | echo "ERROR: cannot $git_submodules_action git submodules without .git" |
| 1571 | exit 1 |
| 1572 | fi |
| 1573 | ;; |
| 1574 | ignore) |
Paolo Bonzini | b80fd28 | 2021-05-12 09:18:55 +0200 | [diff] [blame] | 1575 | if ! test -f "$source_path/ui/keycodemapdb/README" |
| 1576 | then |
| 1577 | echo |
| 1578 | echo "ERROR: missing GIT submodules" |
| 1579 | echo |
| 1580 | if test -e "$source_path/.git"; then |
| 1581 | echo "--with-git-submodules=ignore specified but submodules were not" |
| 1582 | echo "checked out. Please initialize and update submodules." |
| 1583 | else |
| 1584 | echo "This is not a GIT checkout but module content appears to" |
| 1585 | echo "be missing. Do not use 'git archive' or GitHub download links" |
| 1586 | echo "to acquire QEMU source archives. Non-GIT builds are only" |
| 1587 | echo "supported with source archives linked from:" |
| 1588 | echo |
| 1589 | echo " https://www.qemu.org/download/#source" |
| 1590 | echo |
| 1591 | echo "Developers working with GIT can use scripts/archive-source.sh" |
| 1592 | echo "if they need to create valid source archives." |
| 1593 | fi |
| 1594 | echo |
| 1595 | exit 1 |
| 1596 | fi |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 1597 | ;; |
| 1598 | *) |
| 1599 | echo "ERROR: invalid --with-git-submodules= value '$git_submodules_action'" |
| 1600 | exit 1 |
| 1601 | ;; |
| 1602 | esac |
| 1603 | |
Marc-André Lureau | 22a8780 | 2019-07-11 19:13:39 +0400 | [diff] [blame] | 1604 | libdir="${libdir:-$prefix/lib}" |
| 1605 | libexecdir="${libexecdir:-$prefix/libexec}" |
| 1606 | includedir="${includedir:-$prefix/include}" |
| 1607 | |
| 1608 | if test "$mingw32" = "yes" ; then |
Joshua Watt | 15588a6 | 2021-01-12 15:02:39 -0600 | [diff] [blame] | 1609 | bindir="${bindir:-$prefix}" |
Marc-André Lureau | 22a8780 | 2019-07-11 19:13:39 +0400 | [diff] [blame] | 1610 | else |
Marc-André Lureau | 22a8780 | 2019-07-11 19:13:39 +0400 | [diff] [blame] | 1611 | bindir="${bindir:-$prefix/bin}" |
Marc-André Lureau | 22a8780 | 2019-07-11 19:13:39 +0400 | [diff] [blame] | 1612 | fi |
Joshua Watt | 15588a6 | 2021-01-12 15:02:39 -0600 | [diff] [blame] | 1613 | mandir="${mandir:-$prefix/share/man}" |
| 1614 | datadir="${datadir:-$prefix/share}" |
| 1615 | docdir="${docdir:-$prefix/share/doc}" |
| 1616 | sysconfdir="${sysconfdir:-$prefix/etc}" |
| 1617 | local_statedir="${local_statedir:-$prefix/var}" |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 1618 | firmwarepath="${firmwarepath:-$datadir/qemu-firmware}" |
| 1619 | localedir="${localedir:-$datadir/locale}" |
Marc-André Lureau | 22a8780 | 2019-07-11 19:13:39 +0400 | [diff] [blame] | 1620 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 1621 | case "$cpu" in |
Richard Henderson | e3608d6 | 2013-08-28 15:48:21 -0700 | [diff] [blame] | 1622 | ppc) |
| 1623 | CPU_CFLAGS="-m32" |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 1624 | QEMU_LDFLAGS="-m32 $QEMU_LDFLAGS" |
Richard Henderson | e3608d6 | 2013-08-28 15:48:21 -0700 | [diff] [blame] | 1625 | ;; |
| 1626 | ppc64) |
| 1627 | CPU_CFLAGS="-m64" |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 1628 | QEMU_LDFLAGS="-m64 $QEMU_LDFLAGS" |
Richard Henderson | e3608d6 | 2013-08-28 15:48:21 -0700 | [diff] [blame] | 1629 | ;; |
Richard Henderson | 9b9c37c | 2012-09-21 10:34:21 -0700 | [diff] [blame] | 1630 | sparc) |
Richard Henderson | f1079bb | 2017-04-26 10:39:08 -0700 | [diff] [blame] | 1631 | CPU_CFLAGS="-m32 -mv8plus -mcpu=ultrasparc" |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 1632 | QEMU_LDFLAGS="-m32 -mv8plus $QEMU_LDFLAGS" |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 1633 | ;; |
Juan Quintela | ed968ff | 2009-08-03 14:46:11 +0200 | [diff] [blame] | 1634 | sparc64) |
Peter Crosthwaite | 79f3b12 | 2013-04-18 14:46:14 +1000 | [diff] [blame] | 1635 | CPU_CFLAGS="-m64 -mcpu=ultrasparc" |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 1636 | QEMU_LDFLAGS="-m64 $QEMU_LDFLAGS" |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 1637 | ;; |
ths | 76d83bd | 2007-11-18 21:22:10 +0000 | [diff] [blame] | 1638 | s390) |
Richard Henderson | 061cdd8 | 2014-03-31 13:40:49 -0400 | [diff] [blame] | 1639 | CPU_CFLAGS="-m31" |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 1640 | QEMU_LDFLAGS="-m31 $QEMU_LDFLAGS" |
Richard Henderson | 28d7cc4 | 2010-06-04 12:14:09 -0700 | [diff] [blame] | 1641 | ;; |
| 1642 | s390x) |
Richard Henderson | 061cdd8 | 2014-03-31 13:40:49 -0400 | [diff] [blame] | 1643 | CPU_CFLAGS="-m64" |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 1644 | QEMU_LDFLAGS="-m64 $QEMU_LDFLAGS" |
ths | 76d83bd | 2007-11-18 21:22:10 +0000 | [diff] [blame] | 1645 | ;; |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 1646 | i386) |
Peter Crosthwaite | 79f3b12 | 2013-04-18 14:46:14 +1000 | [diff] [blame] | 1647 | CPU_CFLAGS="-m32" |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 1648 | QEMU_LDFLAGS="-m32 $QEMU_LDFLAGS" |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 1649 | ;; |
| 1650 | x86_64) |
Richard Henderson | 7ebee43 | 2016-06-29 21:10:59 -0700 | [diff] [blame] | 1651 | # ??? Only extremely old AMD cpus do not have cmpxchg16b. |
| 1652 | # If we truly care, we should simply detect this case at |
| 1653 | # runtime and generate the fallback to serial emulation. |
| 1654 | CPU_CFLAGS="-m64 -mcx16" |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 1655 | QEMU_LDFLAGS="-m64 $QEMU_LDFLAGS" |
Paul Brook | 379f669 | 2009-07-17 12:48:08 +0100 | [diff] [blame] | 1656 | ;; |
Richard Henderson | c72b26e | 2013-08-20 12:20:05 -0700 | [diff] [blame] | 1657 | x32) |
| 1658 | CPU_CFLAGS="-mx32" |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 1659 | QEMU_LDFLAGS="-mx32 $QEMU_LDFLAGS" |
Richard Henderson | c72b26e | 2013-08-20 12:20:05 -0700 | [diff] [blame] | 1660 | ;; |
Peter Maydell | 30163d8 | 2012-10-09 03:16:49 +0000 | [diff] [blame] | 1661 | # No special flags required for other host CPUs |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 1662 | esac |
| 1663 | |
Alex Bennée | b1aa4de | 2021-05-12 11:20:51 +0100 | [diff] [blame] | 1664 | eval "cross_cc_${cpu}=\$cc" |
Paolo Bonzini | 2038f8c | 2019-08-07 16:35:23 +0200 | [diff] [blame] | 1665 | cross_cc_vars="$cross_cc_vars cross_cc_${cpu}" |
Peter Crosthwaite | 79f3b12 | 2013-04-18 14:46:14 +1000 | [diff] [blame] | 1666 | QEMU_CFLAGS="$CPU_CFLAGS $QEMU_CFLAGS" |
Peter Crosthwaite | 79f3b12 | 2013-04-18 14:46:14 +1000 | [diff] [blame] | 1667 | |
Peter Maydell | affc88c | 2016-06-13 11:32:24 +0100 | [diff] [blame] | 1668 | # For user-mode emulation the host arch has to be one we explicitly |
| 1669 | # support, even if we're using TCI. |
| 1670 | if [ "$ARCH" = "unknown" ]; then |
| 1671 | bsd_user="no" |
| 1672 | linux_user="no" |
| 1673 | fi |
| 1674 | |
Peter Maydell | 60e0df2 | 2011-05-03 14:50:13 +0100 | [diff] [blame] | 1675 | default_target_list="" |
Markus Armbruster | 4369223 | 2021-05-03 10:40:34 +0200 | [diff] [blame] | 1676 | deprecated_targets_list=ppc64abi32-linux-user |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1677 | deprecated_features="" |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 1678 | mak_wilds="" |
| 1679 | |
| 1680 | if [ "$softmmu" = "yes" ]; then |
Paolo Bonzini | 73362fc | 2020-09-18 06:44:16 -0400 | [diff] [blame] | 1681 | mak_wilds="${mak_wilds} $source_path/default-configs/targets/*-softmmu.mak" |
Peter Maydell | 60e0df2 | 2011-05-03 14:50:13 +0100 | [diff] [blame] | 1682 | fi |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 1683 | if [ "$linux_user" = "yes" ]; then |
Paolo Bonzini | 73362fc | 2020-09-18 06:44:16 -0400 | [diff] [blame] | 1684 | mak_wilds="${mak_wilds} $source_path/default-configs/targets/*-linux-user.mak" |
Peter Maydell | 60e0df2 | 2011-05-03 14:50:13 +0100 | [diff] [blame] | 1685 | fi |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 1686 | if [ "$bsd_user" = "yes" ]; then |
Paolo Bonzini | 73362fc | 2020-09-18 06:44:16 -0400 | [diff] [blame] | 1687 | mak_wilds="${mak_wilds} $source_path/default-configs/targets/*-bsd-user.mak" |
Peter Maydell | 60e0df2 | 2011-05-03 14:50:13 +0100 | [diff] [blame] | 1688 | fi |
| 1689 | |
Alex Bennée | 3a5ae4a | 2020-09-15 14:43:13 +0100 | [diff] [blame] | 1690 | # If the user doesn't explicitly specify a deprecated target we will |
| 1691 | # skip it. |
| 1692 | if test -z "$target_list"; then |
| 1693 | if test -z "$target_list_exclude"; then |
| 1694 | target_list_exclude="$deprecated_targets_list" |
| 1695 | else |
| 1696 | target_list_exclude="$target_list_exclude,$deprecated_targets_list" |
| 1697 | fi |
Alex Bennée | 2d838d9 | 2020-09-09 12:27:37 +0100 | [diff] [blame] | 1698 | fi |
| 1699 | |
Alex Bennée | 2d838d9 | 2020-09-09 12:27:37 +0100 | [diff] [blame] | 1700 | for config in $mak_wilds; do |
| 1701 | target="$(basename "$config" .mak)" |
Alex Bennée | 98db9a0 | 2020-09-15 14:43:14 +0100 | [diff] [blame] | 1702 | if echo "$target_list_exclude" | grep -vq "$target"; then |
Alex Bennée | 2d838d9 | 2020-09-09 12:27:37 +0100 | [diff] [blame] | 1703 | default_target_list="${default_target_list} $target" |
| 1704 | fi |
| 1705 | done |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 1706 | |
Stefan Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1707 | # Enumerate public trace backends for --help output |
Greg Kurz | 64a6047 | 2017-04-26 15:36:07 +0200 | [diff] [blame] | 1708 | trace_backend_list=$(echo $(grep -le '^PUBLIC = True$' "$source_path"/scripts/tracetool/backend/*.py | sed -e 's/^.*\/\(.*\)\.py$/\1/')) |
Stefan Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1709 | |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 1710 | if test x"$show_help" = x"yes" ; then |
| 1711 | cat << EOF |
| 1712 | |
| 1713 | Usage: configure [options] |
| 1714 | Options: [defaults in brackets after descriptions] |
| 1715 | |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1716 | Standard options: |
| 1717 | --help print this message |
| 1718 | --prefix=PREFIX install in PREFIX [$prefix] |
| 1719 | --interp-prefix=PREFIX where to find shared libraries, etc. |
| 1720 | use %M for cpu name [$interp_prefix] |
Alex Bennée | 2deca81 | 2020-10-29 20:14:49 +0000 | [diff] [blame] | 1721 | --target-list=LIST set target list (default: build all non-deprecated) |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1722 | $(echo Available targets: $default_target_list | \ |
| 1723 | fold -s -w 53 | sed -e 's/^/ /') |
Alex Bennée | 2deca81 | 2020-10-29 20:14:49 +0000 | [diff] [blame] | 1724 | $(echo Deprecated targets: $deprecated_targets_list | \ |
| 1725 | fold -s -w 53 | sed -e 's/^/ /') |
Alex Bennée | 447e133 | 2019-03-19 11:59:12 +0000 | [diff] [blame] | 1726 | --target-list-exclude=LIST exclude a set of targets from the default target-list |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1727 | |
| 1728 | Advanced options (experts only): |
Joelle van Dyne | 3812c0c | 2021-01-25 17:24:48 -0800 | [diff] [blame] | 1729 | --cross-prefix=PREFIX use PREFIX for compile tools, PREFIX can be blank [$cross_prefix] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1730 | --cc=CC use C compiler CC [$cc] |
| 1731 | --iasl=IASL use ACPI compiler IASL [$iasl] |
| 1732 | --host-cc=CC use C compiler CC [$host_cc] for code run at |
| 1733 | build time |
| 1734 | --cxx=CXX use C++ compiler CXX [$cxx] |
| 1735 | --objcc=OBJCC use Objective-C compiler OBJCC [$objcc] |
| 1736 | --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS |
Bruno Dominguez | 11cde1c | 2017-06-06 14:07:47 +0100 | [diff] [blame] | 1737 | --extra-cxxflags=CXXFLAGS append extra C++ compiler flags QEMU_CXXFLAGS |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1738 | --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 1739 | --cross-cc-ARCH=CC use compiler when building ARCH guest test cases |
Alex Bennée | d422b2b | 2018-04-13 11:07:58 +0100 | [diff] [blame] | 1740 | --cross-cc-flags-ARCH= use compiler flags when building ARCH guest tests |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1741 | --make=MAKE use specified make [$make] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1742 | --python=PYTHON use specified python [$python] |
Peter Maydell | 2eb054c | 2020-02-13 17:56:18 +0000 | [diff] [blame] | 1743 | --sphinx-build=SPHINX use specified sphinx-build [$sphinx_build] |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1744 | --meson=MESON use specified meson [$meson] |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 1745 | --ninja=NINJA use specified ninja [$ninja] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1746 | --smbd=SMBD use specified smbd [$smbd] |
Thomas Huth | db1b5f1 | 2018-03-27 17:09:30 +0200 | [diff] [blame] | 1747 | --with-git=GIT use specified git [$git] |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 1748 | --with-git-submodules=update update git submodules (default if .git dir exists) |
| 1749 | --with-git-submodules=validate fail if git submodules are not up to date |
| 1750 | --with-git-submodules=ignore do not update or check git submodules (default if no .git dir) |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1751 | --static enable static build [$static] |
| 1752 | --mandir=PATH install man pages in PATH |
Marc-André Lureau | 10ff82d | 2020-08-26 15:04:13 +0400 | [diff] [blame] | 1753 | --datadir=PATH install firmware in PATH/$qemu_suffix |
Paolo Bonzini | fe0038b | 2020-10-16 04:35:10 -0400 | [diff] [blame] | 1754 | --localedir=PATH install translation in PATH/$qemu_suffix |
Marc-André Lureau | 10ff82d | 2020-08-26 15:04:13 +0400 | [diff] [blame] | 1755 | --docdir=PATH install documentation in PATH/$qemu_suffix |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1756 | --bindir=PATH install binaries in PATH |
| 1757 | --libdir=PATH install libraries in PATH |
Thomas Huth | db1b5f1 | 2018-03-27 17:09:30 +0200 | [diff] [blame] | 1758 | --libexecdir=PATH install helper binaries in PATH |
Marc-André Lureau | 10ff82d | 2020-08-26 15:04:13 +0400 | [diff] [blame] | 1759 | --sysconfdir=PATH install config in PATH/$qemu_suffix |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1760 | --localstatedir=PATH install local state in PATH (set at runtime on win32) |
Gerd Hoffmann | 3d5eeca | 2017-09-14 13:42:36 +0200 | [diff] [blame] | 1761 | --firmwarepath=PATH search PATH for firmware files |
Robert Foley | 1333660 | 2020-07-01 14:56:21 +0100 | [diff] [blame] | 1762 | --efi-aarch64=PATH PATH of efi file to use for aarch64 VMs. |
Marc-André Lureau | ca8c090 | 2020-08-26 15:04:14 +0400 | [diff] [blame] | 1763 | --with-suffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir/docdir [$qemu_suffix] |
Thomas Huth | db1b5f1 | 2018-03-27 17:09:30 +0200 | [diff] [blame] | 1764 | --with-pkgversion=VERS use specified string as sub-version of the package |
Paolo Bonzini | c035c8d | 2020-12-14 11:34:47 +0100 | [diff] [blame] | 1765 | --without-default-features default all --enable-* options to "disabled" |
| 1766 | --without-default-devices do not include any device that is not needed to |
| 1767 | start the emulator (only use if you are including |
| 1768 | desired devices in default-configs/devices/) |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1769 | --enable-debug enable common debug build options |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1770 | --enable-sanitizers enable default sanitizers |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 1771 | --enable-tsan enable thread sanitizer |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1772 | --disable-strip disable stripping binaries |
| 1773 | --disable-werror disable compilation abort on warning |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 1774 | --disable-stack-protector disable compiler-provided stack protection |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1775 | --audio-drv-list=LIST set audio drivers list: |
| 1776 | Available drivers: $audio_possible_drivers |
| 1777 | --block-drv-whitelist=L Same as --block-drv-rw-whitelist=L |
| 1778 | --block-drv-rw-whitelist=L |
| 1779 | set block driver read-write whitelist |
| 1780 | (affects only QEMU, not qemu-img) |
| 1781 | --block-drv-ro-whitelist=L |
| 1782 | set block driver read-only whitelist |
| 1783 | (affects only QEMU, not qemu-img) |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 1784 | --enable-trace-backends=B Set trace backend |
Stefan Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1785 | Available backends: $trace_backend_list |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1786 | --with-trace-file=NAME Full PATH,NAME of file to store traces |
| 1787 | Default:trace-<pid> |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1788 | --disable-slirp disable SLIRP userspace network connectivity |
Philippe Mathieu-Daudé | e9a16e3 | 2021-01-25 15:45:28 +0100 | [diff] [blame] | 1789 | --enable-tcg-interpreter enable TCI (TCG with bytecode interpreter, experimental and slow) |
Yang Zhong | 5a22ab7 | 2017-12-20 21:16:46 +0800 | [diff] [blame] | 1790 | --enable-malloc-trim enable libc malloc_trim() for memory optimization |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1791 | --oss-lib path to OSS library |
| 1792 | --cpu=CPU Build for host CPU [$cpu] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1793 | --with-coroutine=BACKEND coroutine backend. Supported options: |
Daniel P. Berrange | 33c53c5 | 2017-04-28 13:24:44 +0100 | [diff] [blame] | 1794 | ucontext, sigaltstack, windows |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1795 | --enable-gcov enable test coverage analysis with gcov |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1796 | --disable-blobs disable installing provided firmware blobs |
| 1797 | --with-vss-sdk=SDK-path enable Windows VSS support in QEMU Guest Agent |
| 1798 | --with-win-sdk=SDK-path path to Windows Platform SDK (to build VSS .tlb) |
Daniel P. Berrange | a1c5e94 | 2016-06-06 10:05:06 +0100 | [diff] [blame] | 1799 | --tls-priority default TLS protocol/cipher priority string |
Lin Ma | c12d66a | 2017-03-10 18:14:05 +0800 | [diff] [blame] | 1800 | --enable-gprof QEMU profiling with gprof |
| 1801 | --enable-profiler profiler support |
Lin Ma | c12d66a | 2017-03-10 18:14:05 +0800 | [diff] [blame] | 1802 | --enable-debug-stack-usage |
| 1803 | track the maximum stack usage of stacks created by qemu_alloc_stack |
Alex Bennée | 40e8c6f | 2019-06-13 14:52:25 +0100 | [diff] [blame] | 1804 | --enable-plugins |
| 1805 | enable plugins via shared library loading |
Alex Bennée | afc3a8f | 2019-11-28 16:35:24 +0100 | [diff] [blame] | 1806 | --disable-containers don't use containers for cross-building |
Alex Bennée | f48e590 | 2020-03-16 17:21:48 +0000 | [diff] [blame] | 1807 | --gdb=GDB-path gdb to use for gdbstub tests [$gdb_bin] |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1808 | |
| 1809 | Optional features, enabled with --enable-FEATURE and |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 1810 | disabled with --disable-FEATURE, default is enabled if available |
| 1811 | (unless built with --without-default-features): |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1812 | |
| 1813 | system all system emulation targets |
| 1814 | user supported user emulation targets |
| 1815 | linux-user all linux usermode emulation targets |
| 1816 | bsd-user all BSD usermode emulation targets |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1817 | docs build documentation |
| 1818 | guest-agent build the QEMU Guest Agent |
| 1819 | guest-agent-msi build guest agent Windows MSI installation package |
| 1820 | pie Position Independent Executables |
Marc-André Lureau | 21e709a | 2019-07-18 16:04:13 +0400 | [diff] [blame] | 1821 | modules modules support (non-Windows) |
Christian Ehrhardt | bd83c86 | 2020-03-10 15:58:06 +0100 | [diff] [blame] | 1822 | module-upgrades try to load modules from alternate paths for upgrades |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1823 | debug-tcg TCG debugging (default is disabled) |
| 1824 | debug-info debugging information |
Daniele Buono | cdad781 | 2020-12-04 18:06:11 -0500 | [diff] [blame] | 1825 | lto Enable Link-Time Optimization. |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1826 | sparse sparse checker |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 1827 | safe-stack SafeStack Stack Smash Protection. Depends on |
| 1828 | clang/llvm >= 3.7 and requires coroutine backend ucontext. |
Daniele Buono | 9e62ba4 | 2020-12-04 18:06:14 -0500 | [diff] [blame] | 1829 | cfi Enable Control-Flow Integrity for indirect function calls. |
| 1830 | In case of a cfi violation, QEMU is terminated with SIGILL |
| 1831 | Depends on lto and is incompatible with modules |
| 1832 | Automatically enables Link-Time Optimization (lto) |
| 1833 | cfi-debug In case of a cfi violation, a message containing the line that |
| 1834 | triggered the error is written to stderr. After the error, |
| 1835 | QEMU is still terminated with SIGILL |
Daniel P. Berrange | ddbb0d0 | 2015-07-01 18:10:29 +0100 | [diff] [blame] | 1836 | gnutls GNUTLS cryptography support |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 1837 | nettle nettle cryptography support |
| 1838 | gcrypt libgcrypt cryptography support |
Daniel P. Berrange | 8953caf | 2016-07-27 14:13:56 +0100 | [diff] [blame] | 1839 | auth-pam PAM access control |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1840 | sdl SDL UI |
Markus Armbruster | 04c6e16 | 2019-05-17 20:32:46 +0200 | [diff] [blame] | 1841 | sdl-image SDL Image support for icons |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1842 | gtk gtk UI |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1843 | vte vte support for the gtk UI |
| 1844 | curses curses UI |
Samuel Thibault | e08bb30 | 2019-03-11 14:51:26 +0100 | [diff] [blame] | 1845 | iconv font glyph conversion support |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1846 | vnc VNC UI support |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1847 | vnc-sasl SASL encryption for VNC server |
| 1848 | vnc-jpeg JPEG lossy compression for VNC server |
| 1849 | vnc-png PNG compression for VNC server |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1850 | cocoa Cocoa UI (Mac OS X only) |
| 1851 | virtfs VirtFS |
Misono Tomohiro | cece116 | 2020-10-08 19:31:33 +0900 | [diff] [blame] | 1852 | virtiofsd build virtiofs daemon (virtiofsd) |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 1853 | libudev Use libudev to enumerate host devices |
Paolo Bonzini | fe8fc5a | 2017-08-22 06:50:55 +0200 | [diff] [blame] | 1854 | mpath Multipath persistent reservation passthrough |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1855 | xen xen backend driver support |
Anthony PERARD | 70c292a | 2018-05-04 10:17:56 +0100 | [diff] [blame] | 1856 | xen-pci-passthrough PCI passthrough support for Xen |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1857 | brlapi BrlAPI (Braile) |
| 1858 | curl curl connectivity |
Paolo Bonzini | a40161c | 2018-02-16 10:05:23 +0100 | [diff] [blame] | 1859 | membarrier membarrier system call (for Linux 4.14+ or Windows) |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1860 | fdt fdt device tree |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1861 | kvm KVM acceleration support |
Vincent Palatin | b0cb0a6 | 2017-01-10 11:59:57 +0100 | [diff] [blame] | 1862 | hax HAX acceleration support |
Sergio Andres Gomez Del Real | c97d6d2 | 2017-09-13 04:05:09 -0500 | [diff] [blame] | 1863 | hvf Hypervisor.framework acceleration support |
Reinoud Zandijk | 74a414a | 2021-04-02 22:25:32 +0200 | [diff] [blame] | 1864 | nvmm NVMM acceleration support |
Justin Terry (VM) | d661d9a | 2018-01-22 13:07:46 -0800 | [diff] [blame] | 1865 | whpx Windows Hypervisor Platform acceleration support |
Marcel Apfelbaum | 21ab34c | 2018-08-16 18:16:37 +0300 | [diff] [blame] | 1866 | rdma Enable RDMA-based migration |
| 1867 | pvrdma Enable PVRDMA support |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1868 | vde support for vde network |
| 1869 | netmap support for netmap network |
| 1870 | linux-aio Linux AIO support |
Aarushi Mehta | c10dd85 | 2020-01-20 14:18:44 +0000 | [diff] [blame] | 1871 | linux-io-uring Linux io_uring support |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1872 | cap-ng libcap-ng support |
| 1873 | attr attr and xattr support |
Paolo Bonzini | 299e6f1 | 2019-02-14 18:35:53 +0100 | [diff] [blame] | 1874 | vhost-net vhost-net kernel acceleration support |
| 1875 | vhost-vsock virtio sockets device support |
| 1876 | vhost-scsi vhost-scsi kernel target support |
| 1877 | vhost-crypto vhost-user-crypto backend support |
| 1878 | vhost-kernel vhost kernel backend support |
| 1879 | vhost-user vhost-user backend support |
Stefan Hajnoczi | bc15e44 | 2020-10-27 17:35:18 +0000 | [diff] [blame] | 1880 | vhost-user-blk-server vhost-user-blk server support |
Cindy Lu | 108a648 | 2020-07-01 22:55:37 +0800 | [diff] [blame] | 1881 | vhost-vdpa vhost-vdpa kernel backend support |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1882 | spice spice |
Gerd Hoffmann | 58d3f3f | 2021-05-19 07:39:32 +0200 | [diff] [blame] | 1883 | spice-protocol spice-protocol |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1884 | rbd rados block device (rbd) |
| 1885 | libiscsi iscsi support |
| 1886 | libnfs nfs support |
Marc-André Lureau | 7b02f54 | 2015-08-30 11:48:40 +0200 | [diff] [blame] | 1887 | smartcard smartcard support (libcacard) |
César Belley | 0a40bcb | 2020-08-26 13:42:04 +0200 | [diff] [blame] | 1888 | u2f U2F support (u2f-emu) |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1889 | libusb libusb (for usb passthrough) |
Dr. David Alan Gilbert | ed1701c | 2017-05-15 15:05:29 +0100 | [diff] [blame] | 1890 | live-block-migration Block migration in the main migration stream |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1891 | usb-redir usb network redirection support |
| 1892 | lzo support of lzo compression library |
| 1893 | snappy support of snappy compression library |
| 1894 | bzip2 support of bzip2 compression library |
| 1895 | (for reading bzip2-compressed dmg images) |
Julio Faracco | 83bc1f9 | 2018-11-05 13:08:04 -0200 | [diff] [blame] | 1896 | lzfse support of lzfse compression library |
| 1897 | (for reading lzfse-compressed dmg images) |
Juan Quintela | 3a67848 | 2019-12-17 21:15:24 +0100 | [diff] [blame] | 1898 | zstd support for zstd compression library |
Denis Plotnikov | d298ac1 | 2020-05-07 11:25:20 +0300 | [diff] [blame] | 1899 | (for migration compression and qcow2 cluster compression) |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1900 | seccomp seccomp support |
| 1901 | coroutine-pool coroutine freelist (better performance) |
| 1902 | glusterfs GlusterFS backend |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1903 | tpm TPM support |
Pino Toscano | b10d49d | 2019-06-20 22:08:40 +0200 | [diff] [blame] | 1904 | libssh ssh block device support |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1905 | numa libnuma support |
Klim Kireev | ed279a0 | 2018-01-12 12:01:19 +0300 | [diff] [blame] | 1906 | libxml2 for Parallels image format |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1907 | tcmalloc tcmalloc support |
Alexandre Derumier | 7b01cb9 | 2015-06-19 12:56:58 +0200 | [diff] [blame] | 1908 | jemalloc jemalloc support |
Liam Merwick | 86583a0 | 2018-10-19 21:38:59 +0100 | [diff] [blame] | 1909 | avx2 AVX2 optimization support |
Robert Hoo | 6b8cd44 | 2020-02-29 20:34:34 +0800 | [diff] [blame] | 1910 | avx512f AVX512F optimization support |
Changlong Xie | a6b1d4c | 2016-07-27 15:01:48 +0800 | [diff] [blame] | 1911 | replication replication support |
Lin Ma | c12d66a | 2017-03-10 18:14:05 +0800 | [diff] [blame] | 1912 | opengl opengl support |
| 1913 | virglrenderer virgl rendering support |
| 1914 | xfsctl xfsctl support |
| 1915 | qom-cast-debug cast debugging support |
Cleber Rosa | 8de73fa | 2019-02-07 14:36:03 -0500 | [diff] [blame] | 1916 | tools build qemu-io, qemu-nbd and qemu-img tools |
Jeff Cody | 2f74013 | 2018-11-07 07:36:44 +0100 | [diff] [blame] | 1917 | bochs bochs image format support |
| 1918 | cloop cloop image format support |
| 1919 | dmg dmg image format support |
| 1920 | qcow1 qcow v1 image format support |
| 1921 | vdi vdi image format support |
| 1922 | vvfat vvfat image format support |
| 1923 | qed qed image format support |
| 1924 | parallels parallels image format support |
Longpeng(Mike) | f0d92b5 | 2017-07-14 14:04:05 -0400 | [diff] [blame] | 1925 | crypto-afalg Linux AF_ALG crypto backend driver |
Richard Henderson | 8ca8076 | 2017-09-14 09:41:12 -0700 | [diff] [blame] | 1926 | capstone capstone disassembler support |
Paolo Bonzini | ba59fb7 | 2018-06-13 14:23:08 +0200 | [diff] [blame] | 1927 | debug-mutex mutex debugging support |
Junyan He | 1782440 | 2018-07-18 15:47:59 +0800 | [diff] [blame] | 1928 | libpmem libpmem support |
James Le Cuirot | 7541191 | 2019-09-14 15:51:55 +0100 | [diff] [blame] | 1929 | xkbcommon xkbcommon support |
Marek Marczykowski-Górecki | b767d25 | 2020-05-20 15:20:23 +0200 | [diff] [blame] | 1930 | rng-none dummy RNG, avoid using /dev/(u)random and getrandom() |
Jingqi Liu | 21b2eca | 2020-04-29 16:50:11 +0800 | [diff] [blame] | 1931 | libdaxctl libdaxctl support |
Max Reitz | a484a71 | 2020-10-27 20:05:41 +0100 | [diff] [blame] | 1932 | fuse FUSE block device export |
Max Reitz | df4ea70 | 2020-10-27 20:05:46 +0100 | [diff] [blame] | 1933 | fuse-lseek SEEK_HOLE/SEEK_DATA support for FUSE exports |
Paolo Bonzini | 106ad1f | 2021-02-17 16:24:25 +0100 | [diff] [blame] | 1934 | multiprocess Out of process device emulation support |
Denis Plotnikov | 20cf7b8 | 2021-03-12 18:14:40 +0300 | [diff] [blame] | 1935 | gio libgio support |
Joelle van Dyne | b8e0c49 | 2021-03-15 11:03:41 -0700 | [diff] [blame] | 1936 | slirp-smbd use smbd (at path --smbd=*) in slirp networking |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1937 | |
| 1938 | NOTE: The object files are built at the place where configure is launched |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 1939 | EOF |
Fam Zheng | 2d2ad6d | 2014-04-18 14:55:36 +0800 | [diff] [blame] | 1940 | exit 0 |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 1941 | fi |
| 1942 | |
Thomas Huth | 9c79024 | 2019-03-11 11:20:34 +0100 | [diff] [blame] | 1943 | # Remove old dependency files to make sure that they get properly regenerated |
Thomas Huth | bb768f7 | 2019-05-10 10:11:59 +0200 | [diff] [blame] | 1944 | rm -f */config-devices.mak.d |
Thomas Huth | 9c79024 | 2019-03-11 11:20:34 +0100 | [diff] [blame] | 1945 | |
Daniel P. Berrangé | faf4414 | 2019-03-27 17:07:01 +0000 | [diff] [blame] | 1946 | if test -z "$python" |
| 1947 | then |
| 1948 | error_exit "Python not found. Use --python=/path/to/python" |
Stefan Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1949 | fi |
Roman Bolshakov | 8e2c76b | 2020-08-25 23:27:55 +0300 | [diff] [blame] | 1950 | if ! has "$make" |
| 1951 | then |
| 1952 | error_exit "GNU make ($make) not found" |
| 1953 | fi |
Stefan Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1954 | |
| 1955 | # Note that if the Python conditional here evaluates True we will exit |
| 1956 | # with status 1 which is a shell 'false' value. |
Thomas Huth | 1b11f28 | 2020-09-25 16:40:27 +0100 | [diff] [blame] | 1957 | if ! $python -c 'import sys; sys.exit(sys.version_info < (3,6))'; then |
| 1958 | error_exit "Cannot use '$python', Python >= 3.6 is required." \ |
Stefan Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1959 | "Use --python=/path/to/python to specify a supported Python." |
| 1960 | fi |
| 1961 | |
Cleber Rosa | 755ee70 | 2018-11-09 10:07:07 -0500 | [diff] [blame] | 1962 | # Preserve python version since some functionality is dependent on it |
Cleber Rosa | 406ab2f | 2019-08-26 11:58:32 -0400 | [diff] [blame] | 1963 | 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) |
Cleber Rosa | 755ee70 | 2018-11-09 10:07:07 -0500 | [diff] [blame] | 1964 | |
Stefan Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1965 | # Suppress writing compiled files |
| 1966 | python="$python -B" |
| 1967 | |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1968 | if test -z "$meson"; then |
Paolo Bonzini | 6ebd89c | 2020-10-15 03:20:45 -0400 | [diff] [blame] | 1969 | if test "$explicit_python" = no && has meson && version_ge "$(meson --version)" 0.55.3; then |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1970 | meson=meson |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 1971 | elif test $git_submodules_action != 'ignore' ; then |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1972 | meson=git |
| 1973 | elif test -e "${source_path}/meson/meson.py" ; then |
| 1974 | meson=internal |
| 1975 | else |
| 1976 | if test "$explicit_python" = yes; then |
| 1977 | error_exit "--python requires using QEMU's embedded Meson distribution, but it was not found." |
| 1978 | else |
| 1979 | error_exit "Meson not found. Use --meson=/path/to/meson" |
| 1980 | fi |
| 1981 | fi |
| 1982 | else |
| 1983 | # Meson uses its own Python interpreter to invoke other Python scripts, |
| 1984 | # but the user wants to use the one they specified with --python. |
| 1985 | # |
| 1986 | # We do not want to override the distro Python interpreter (and sometimes |
| 1987 | # cannot: for example in Homebrew /usr/bin/meson is a bash script), so |
| 1988 | # just require --meson=git|internal together with --python. |
| 1989 | if test "$explicit_python" = yes; then |
| 1990 | case "$meson" in |
| 1991 | git | internal) ;; |
| 1992 | *) error_exit "--python requires using QEMU's embedded Meson distribution." ;; |
| 1993 | esac |
| 1994 | fi |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1995 | fi |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1996 | |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1997 | if test "$meson" = git; then |
| 1998 | git_submodules="${git_submodules} meson" |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1999 | fi |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 2000 | |
| 2001 | case "$meson" in |
| 2002 | git | internal) |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 2003 | meson="$python ${source_path}/meson/meson.py" |
| 2004 | ;; |
Paolo Bonzini | 84ec0c2 | 2020-09-04 10:00:26 -0400 | [diff] [blame] | 2005 | *) meson=$(command -v "$meson") ;; |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 2006 | esac |
| 2007 | |
Paolo Bonzini | 09e9332 | 2020-08-13 09:28:11 -0400 | [diff] [blame] | 2008 | # Probe for ninja |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 2009 | |
| 2010 | if test -z "$ninja"; then |
| 2011 | for c in ninja ninja-build samu; do |
| 2012 | if has $c; then |
| 2013 | ninja=$(command -v "$c") |
| 2014 | break |
| 2015 | fi |
| 2016 | done |
Paolo Bonzini | 09e9332 | 2020-08-13 09:28:11 -0400 | [diff] [blame] | 2017 | if test -z "$ninja"; then |
| 2018 | error_exit "Cannot find Ninja" |
| 2019 | fi |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 2020 | fi |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 2021 | |
Daniel Henrique Barboza | 9aae6e5 | 2017-11-02 07:09:06 -0200 | [diff] [blame] | 2022 | # Check that the C compiler works. Doing this here before testing |
| 2023 | # the host CPU ensures that we had a valid CC to autodetect the |
| 2024 | # $cpu var (and we should bail right here if that's not the case). |
| 2025 | # It also allows the help message to be printed without a CC. |
| 2026 | write_c_skeleton; |
| 2027 | if compile_object ; then |
| 2028 | : C compiler works ok |
| 2029 | else |
| 2030 | error_exit "\"$cc\" either does not exist or does not work" |
| 2031 | fi |
| 2032 | if ! compile_prog ; then |
| 2033 | error_exit "\"$cc\" cannot build an executable (is your linker broken?)" |
| 2034 | fi |
| 2035 | |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 2036 | # Consult white-list to determine whether to enable werror |
| 2037 | # by default. Only enable by default for git builds |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 2038 | if test -z "$werror" ; then |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 2039 | if test "$git_submodules_action" != "ignore" && \ |
Eric Blake | e633a5c | 2019-02-04 20:39:37 -0600 | [diff] [blame] | 2040 | { test "$linux" = "yes" || test "$mingw32" = "yes"; }; then |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 2041 | werror="yes" |
| 2042 | else |
| 2043 | werror="no" |
| 2044 | fi |
| 2045 | fi |
| 2046 | |
Paolo Bonzini | 975ff03 | 2020-11-20 10:34:10 +0100 | [diff] [blame] | 2047 | if test "$targetos" = "bogus"; then |
Peter Maydell | fb59dab | 2017-03-28 14:01:52 +0100 | [diff] [blame] | 2048 | # Now that we know that we're not printing the help and that |
| 2049 | # the compiler works (so the results of the check_defines we used |
| 2050 | # to identify the OS are reliable), if we didn't recognize the |
| 2051 | # host OS we should stop now. |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 2052 | error_exit "Unrecognized host OS (uname -s reports '$(uname -s)')" |
Peter Maydell | fb59dab | 2017-03-28 14:01:52 +0100 | [diff] [blame] | 2053 | fi |
| 2054 | |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 2055 | # Check whether the compiler matches our minimum requirements: |
| 2056 | cat > $TMPC << EOF |
| 2057 | #if defined(__clang_major__) && defined(__clang_minor__) |
| 2058 | # ifdef __apple_build_version__ |
Daniel P. Berrangé | 2a85a08 | 2021-05-14 13:04:15 +0100 | [diff] [blame] | 2059 | # if __clang_major__ < 10 || (__clang_major__ == 10 && __clang_minor__ < 0) |
| 2060 | # error You need at least XCode Clang v10.0 to compile QEMU |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 2061 | # endif |
| 2062 | # else |
Daniel P. Berrangé | 2a85a08 | 2021-05-14 13:04:15 +0100 | [diff] [blame] | 2063 | # if __clang_major__ < 6 || (__clang_major__ == 6 && __clang_minor__ < 0) |
| 2064 | # error You need at least Clang v6.0 to compile QEMU |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 2065 | # endif |
| 2066 | # endif |
| 2067 | #elif defined(__GNUC__) && defined(__GNUC_MINOR__) |
Daniel P. Berrangé | 56208a0 | 2021-05-14 13:04:14 +0100 | [diff] [blame] | 2068 | # if __GNUC__ < 7 || (__GNUC__ == 7 && __GNUC_MINOR__ < 5) |
| 2069 | # error You need at least GCC v7.5.0 to compile QEMU |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 2070 | # endif |
| 2071 | #else |
| 2072 | # error You either need GCC or Clang to compiler QEMU |
| 2073 | #endif |
| 2074 | int main (void) { return 0; } |
| 2075 | EOF |
| 2076 | if ! compile_prog "" "" ; then |
Daniel P. Berrangé | 2a85a08 | 2021-05-14 13:04:15 +0100 | [diff] [blame] | 2077 | error_exit "You need at least GCC v7.5 or Clang v6.0 (or XCode Clang v10.0)" |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 2078 | fi |
| 2079 | |
Richard Henderson | 00849b9 | 2020-06-17 13:13:06 -0700 | [diff] [blame] | 2080 | # Accumulate -Wfoo and -Wno-bar separately. |
| 2081 | # We will list all of the enable flags first, and the disable flags second. |
| 2082 | # Note that we do not add -Werror, because that would enable it for all |
| 2083 | # configure tests. If a configure test failed due to -Werror this would |
| 2084 | # just silently disable some features, so it's too error prone. |
| 2085 | |
| 2086 | warn_flags= |
| 2087 | add_to warn_flags -Wold-style-declaration |
| 2088 | add_to warn_flags -Wold-style-definition |
| 2089 | add_to warn_flags -Wtype-limits |
| 2090 | add_to warn_flags -Wformat-security |
| 2091 | add_to warn_flags -Wformat-y2k |
| 2092 | add_to warn_flags -Winit-self |
| 2093 | add_to warn_flags -Wignored-qualifiers |
| 2094 | add_to warn_flags -Wempty-body |
| 2095 | add_to warn_flags -Wnested-externs |
| 2096 | add_to warn_flags -Wendif-labels |
| 2097 | add_to warn_flags -Wexpansion-to-defined |
Thomas Huth | 0a2ebce | 2020-12-11 16:24:26 +0100 | [diff] [blame] | 2098 | add_to warn_flags -Wimplicit-fallthrough=2 |
Richard Henderson | 00849b9 | 2020-06-17 13:13:06 -0700 | [diff] [blame] | 2099 | |
| 2100 | nowarn_flags= |
| 2101 | add_to nowarn_flags -Wno-initializer-overrides |
| 2102 | add_to nowarn_flags -Wno-missing-include-dirs |
| 2103 | add_to nowarn_flags -Wno-shift-negative-value |
| 2104 | add_to nowarn_flags -Wno-string-plus-int |
| 2105 | add_to nowarn_flags -Wno-typedef-redefinition |
Richard Henderson | aabab96 | 2020-06-17 13:13:07 -0700 | [diff] [blame] | 2106 | add_to nowarn_flags -Wno-tautological-type-limit-compare |
Richard Henderson | bac8d22 | 2020-06-17 13:13:08 -0700 | [diff] [blame] | 2107 | add_to nowarn_flags -Wno-psabi |
Richard Henderson | 00849b9 | 2020-06-17 13:13:06 -0700 | [diff] [blame] | 2108 | |
| 2109 | gcc_flags="$warn_flags $nowarn_flags" |
John Snow | 93b2586 | 2015-03-25 18:57:37 -0400 | [diff] [blame] | 2110 | |
| 2111 | cc_has_warning_flag() { |
| 2112 | write_c_skeleton; |
| 2113 | |
Peter Maydell | a1d29d6 | 2012-10-27 22:19:07 +0100 | [diff] [blame] | 2114 | # Use the positive sense of the flag when testing for -Wno-wombat |
| 2115 | # support (gcc will happily accept the -Wno- form of unknown |
| 2116 | # warning options). |
John Snow | 93b2586 | 2015-03-25 18:57:37 -0400 | [diff] [blame] | 2117 | optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')" |
| 2118 | compile_prog "-Werror $optflag" "" |
| 2119 | } |
| 2120 | |
| 2121 | for flag in $gcc_flags; do |
| 2122 | if cc_has_warning_flag $flag ; then |
| 2123 | QEMU_CFLAGS="$QEMU_CFLAGS $flag" |
Paolo Bonzini | 8d05095 | 2010-12-23 11:43:52 +0100 | [diff] [blame] | 2124 | fi |
| 2125 | done |
| 2126 | |
Miroslav Rezanina | 3b463a3 | 2014-07-02 10:05:24 +0200 | [diff] [blame] | 2127 | if test "$stack_protector" != "no"; then |
Rodrigo Rebello | fccd35a | 2015-11-12 12:04:28 -0200 | [diff] [blame] | 2128 | cat > $TMPC << EOF |
| 2129 | int main(int argc, char *argv[]) |
| 2130 | { |
| 2131 | char arr[64], *p = arr, *c = argv[0]; |
| 2132 | while (*c) { |
| 2133 | *p++ = *c++; |
| 2134 | } |
| 2135 | return 0; |
| 2136 | } |
| 2137 | EOF |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 2138 | gcc_flags="-fstack-protector-strong -fstack-protector-all" |
Miroslav Rezanina | 3b463a3 | 2014-07-02 10:05:24 +0200 | [diff] [blame] | 2139 | sp_on=0 |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 2140 | for flag in $gcc_flags; do |
Peter Maydell | 590e5dd | 2014-04-11 17:13:52 +0100 | [diff] [blame] | 2141 | # We need to check both a compile and a link, since some compiler |
| 2142 | # setups fail only on a .c->.o compile and some only at link time |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 2143 | if compile_object "-Werror $flag" && |
Peter Maydell | 590e5dd | 2014-04-11 17:13:52 +0100 | [diff] [blame] | 2144 | compile_prog "-Werror $flag" ""; then |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 2145 | QEMU_CFLAGS="$QEMU_CFLAGS $flag" |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 2146 | QEMU_LDFLAGS="$QEMU_LDFLAGS $flag" |
Miroslav Rezanina | 3b463a3 | 2014-07-02 10:05:24 +0200 | [diff] [blame] | 2147 | sp_on=1 |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 2148 | break |
| 2149 | fi |
| 2150 | done |
Miroslav Rezanina | 3b463a3 | 2014-07-02 10:05:24 +0200 | [diff] [blame] | 2151 | if test "$stack_protector" = yes; then |
| 2152 | if test $sp_on = 0; then |
| 2153 | error_exit "Stack protector not supported" |
| 2154 | fi |
| 2155 | fi |
Marc-André Lureau | 37746c5 | 2013-02-25 23:31:12 +0100 | [diff] [blame] | 2156 | fi |
| 2157 | |
Paolo Bonzini | 20bc94a | 2017-10-20 12:11:32 +0200 | [diff] [blame] | 2158 | # Disable -Wmissing-braces on older compilers that warn even for |
| 2159 | # the "universal" C zero initializer {0}. |
| 2160 | cat > $TMPC << EOF |
| 2161 | struct { |
| 2162 | int a[2]; |
| 2163 | } x = {0}; |
| 2164 | EOF |
| 2165 | if compile_object "-Werror" "" ; then |
| 2166 | : |
| 2167 | else |
| 2168 | QEMU_CFLAGS="$QEMU_CFLAGS -Wno-missing-braces" |
| 2169 | fi |
| 2170 | |
Marc-André Lureau | 21e709a | 2019-07-18 16:04:13 +0400 | [diff] [blame] | 2171 | # Our module code doesn't support Windows |
| 2172 | if test "$modules" = "yes" && test "$mingw32" = "yes" ; then |
| 2173 | error_exit "Modules are not available for Windows" |
| 2174 | fi |
| 2175 | |
Christian Ehrhardt | bd83c86 | 2020-03-10 15:58:06 +0100 | [diff] [blame] | 2176 | # module_upgrades is only reasonable if modules are enabled |
| 2177 | if test "$modules" = "no" && test "$module_upgrades" = "yes" ; then |
| 2178 | error_exit "Can't enable module-upgrades as Modules are not enabled" |
| 2179 | fi |
| 2180 | |
Thomas Huth | d376e9d | 2018-12-03 11:41:38 +0100 | [diff] [blame] | 2181 | # Static linking is not possible with modules or PIE |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 2182 | if test "$static" = "yes" ; then |
Paolo Bonzini | aa0d1f4 | 2014-02-25 17:36:55 +0100 | [diff] [blame] | 2183 | if test "$modules" = "yes" ; then |
| 2184 | error_exit "static and modules are mutually incompatible" |
| 2185 | fi |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 2186 | fi |
| 2187 | |
Emilio G. Cota | 768b785 | 2015-04-29 13:09:02 +0200 | [diff] [blame] | 2188 | # Unconditional check for compiler __thread support |
| 2189 | cat > $TMPC << EOF |
| 2190 | static __thread int tls_var; |
| 2191 | int main(void) { return tls_var; } |
| 2192 | EOF |
| 2193 | |
| 2194 | if ! compile_prog "-Werror" "" ; then |
| 2195 | error_exit "Your compiler does not support the __thread specifier for " \ |
| 2196 | "Thread-Local Storage (TLS). Please upgrade to a version that does." |
| 2197 | fi |
| 2198 | |
Richard Henderson | b263412 | 2019-12-17 13:54:56 -1000 | [diff] [blame] | 2199 | cat > $TMPC << EOF |
Avi Kivity | 21d4a79 | 2011-11-23 11:24:25 +0200 | [diff] [blame] | 2200 | |
| 2201 | #ifdef __linux__ |
| 2202 | # define THREAD __thread |
| 2203 | #else |
| 2204 | # define THREAD |
| 2205 | #endif |
Avi Kivity | 21d4a79 | 2011-11-23 11:24:25 +0200 | [diff] [blame] | 2206 | static THREAD int tls_var; |
Avi Kivity | 21d4a79 | 2011-11-23 11:24:25 +0200 | [diff] [blame] | 2207 | int main(void) { return tls_var; } |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 2208 | EOF |
Alex Bennée | 412aeac | 2019-08-15 19:41:51 +0000 | [diff] [blame] | 2209 | |
Richard Henderson | b263412 | 2019-12-17 13:54:56 -1000 | [diff] [blame] | 2210 | # Check we support --no-pie first; we will need this for building ROMs. |
| 2211 | if compile_prog "-Werror -fno-pie" "-no-pie"; then |
| 2212 | CFLAGS_NOPIE="-fno-pie" |
Richard Henderson | b263412 | 2019-12-17 13:54:56 -1000 | [diff] [blame] | 2213 | fi |
| 2214 | |
Richard Henderson | 1278146 | 2019-12-17 15:30:14 -1000 | [diff] [blame] | 2215 | if test "$static" = "yes"; then |
Richard Henderson | eca7a8e | 2020-04-03 20:11:50 +0100 | [diff] [blame] | 2216 | if test "$pie" != "no" && compile_prog "-Werror -fPIE -DPIE" "-static-pie"; then |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 2217 | CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS" |
Richard Henderson | 1278146 | 2019-12-17 15:30:14 -1000 | [diff] [blame] | 2218 | QEMU_LDFLAGS="-static-pie $QEMU_LDFLAGS" |
| 2219 | pie="yes" |
| 2220 | elif test "$pie" = "yes"; then |
| 2221 | error_exit "-static-pie not available due to missing toolchain support" |
| 2222 | else |
| 2223 | QEMU_LDFLAGS="-static $QEMU_LDFLAGS" |
| 2224 | pie="no" |
| 2225 | fi |
| 2226 | elif test "$pie" = "no"; then |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 2227 | CONFIGURE_CFLAGS="$CFLAGS_NOPIE $CONFIGURE_CFLAGS" |
Richard Henderson | eca7a8e | 2020-04-03 20:11:50 +0100 | [diff] [blame] | 2228 | elif compile_prog "-Werror -fPIE -DPIE" "-pie"; then |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 2229 | CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS" |
| 2230 | CONFIGURE_LDFLAGS="-pie $CONFIGURE_LDFLAGS" |
Richard Henderson | 2c67410 | 2019-12-17 15:15:01 -1000 | [diff] [blame] | 2231 | pie="yes" |
| 2232 | elif test "$pie" = "yes"; then |
| 2233 | error_exit "PIE not available due to missing toolchain support" |
| 2234 | else |
| 2235 | echo "Disabling PIE due to missing toolchain support" |
| 2236 | pie="no" |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 2237 | fi |
| 2238 | |
Richard Henderson | e6cbd75 | 2019-12-17 14:00:39 -1000 | [diff] [blame] | 2239 | # Detect support for PT_GNU_RELRO + DT_BIND_NOW. |
| 2240 | # The combination is known as "full relro", because .got.plt is read-only too. |
| 2241 | if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then |
| 2242 | QEMU_LDFLAGS="-Wl,-z,relro -Wl,-z,now $QEMU_LDFLAGS" |
| 2243 | fi |
| 2244 | |
Paolo Bonzini | 09dada4 | 2013-04-17 16:26:47 +0200 | [diff] [blame] | 2245 | ########################################## |
| 2246 | # __sync_fetch_and_and requires at least -march=i486. Many toolchains |
| 2247 | # use i686 as default anyway, but for those that don't, an explicit |
| 2248 | # specification is necessary |
| 2249 | |
| 2250 | if test "$cpu" = "i386"; then |
| 2251 | cat > $TMPC << EOF |
| 2252 | static int sfaa(int *ptr) |
| 2253 | { |
| 2254 | return __sync_fetch_and_and(ptr, 0); |
| 2255 | } |
| 2256 | |
| 2257 | int main(void) |
| 2258 | { |
| 2259 | int val = 42; |
Stefan Weil | 1405b62 | 2013-05-11 21:46:58 +0200 | [diff] [blame] | 2260 | val = __sync_val_compare_and_swap(&val, 0, 1); |
Paolo Bonzini | 09dada4 | 2013-04-17 16:26:47 +0200 | [diff] [blame] | 2261 | sfaa(&val); |
| 2262 | return val; |
| 2263 | } |
| 2264 | EOF |
| 2265 | if ! compile_prog "" "" ; then |
| 2266 | QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS" |
| 2267 | fi |
| 2268 | fi |
| 2269 | |
| 2270 | ######################################### |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 2271 | # Solaris specific configure tool chain decisions |
Paolo Bonzini | 09dada4 | 2013-04-17 16:26:47 +0200 | [diff] [blame] | 2272 | |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 2273 | if test "$solaris" = "yes" ; then |
Loïc Minier | 6792aa1 | 2010-01-20 11:35:54 +0100 | [diff] [blame] | 2274 | if has ar; then |
| 2275 | : |
| 2276 | else |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 2277 | if test -f /usr/ccs/bin/ar ; then |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 2278 | error_exit "No path includes ar" \ |
| 2279 | "Add /usr/ccs/bin to your path and rerun configure" |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 2280 | fi |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 2281 | error_exit "No path includes ar" |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 2282 | fi |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2283 | fi |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 2284 | |
Philippe Mathieu-Daudé | 56267b6 | 2021-05-12 06:58:21 +0200 | [diff] [blame] | 2285 | if test "$tcg" = "enabled"; then |
| 2286 | git_submodules="$git_submodules tests/fp/berkeley-testfloat-3" |
| 2287 | git_submodules="$git_submodules tests/fp/berkeley-softfloat-3" |
| 2288 | fi |
| 2289 | |
Stefan Weil | afb63eb | 2012-09-26 22:04:38 +0200 | [diff] [blame] | 2290 | if test -z "${target_list+xxx}" ; then |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 2291 | default_targets=yes |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 2292 | for target in $default_target_list; do |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 2293 | target_list="$target_list $target" |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 2294 | done |
| 2295 | target_list="${target_list# }" |
Anthony Liguori | 121afa9 | 2012-09-14 08:17:03 -0500 | [diff] [blame] | 2296 | else |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 2297 | default_targets=no |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 2298 | target_list=$(echo "$target_list" | sed -e 's/,/ /g') |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 2299 | for target in $target_list; do |
| 2300 | # Check that we recognised the target name; this allows a more |
| 2301 | # friendly error message than if we let it fall through. |
| 2302 | case " $default_target_list " in |
| 2303 | *" $target "*) |
| 2304 | ;; |
| 2305 | *) |
| 2306 | error_exit "Unknown target name '$target'" |
| 2307 | ;; |
| 2308 | esac |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 2309 | done |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 2310 | fi |
Peter Maydell | 25b4833 | 2013-05-20 16:16:16 +0100 | [diff] [blame] | 2311 | |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 2312 | for target in $target_list; do |
| 2313 | # if a deprecated target is enabled we note it here |
| 2314 | if echo "$deprecated_targets_list" | grep -q "$target"; then |
| 2315 | add_to deprecated_features $target |
| 2316 | fi |
| 2317 | done |
| 2318 | |
Paolo Bonzini | f55fe27 | 2010-05-26 16:08:17 +0200 | [diff] [blame] | 2319 | # see if system emulation was really requested |
| 2320 | case " $target_list " in |
| 2321 | *"-softmmu "*) softmmu=yes |
| 2322 | ;; |
| 2323 | *) softmmu=no |
| 2324 | ;; |
| 2325 | esac |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 2326 | |
Juan Quintela | 249247c | 2009-08-12 18:20:25 +0200 | [diff] [blame] | 2327 | feature_not_found() { |
| 2328 | feature=$1 |
Stewart Smith | 21684af | 2014-01-24 12:39:10 +1100 | [diff] [blame] | 2329 | remedy=$2 |
Juan Quintela | 249247c | 2009-08-12 18:20:25 +0200 | [diff] [blame] | 2330 | |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 2331 | error_exit "User requested feature $feature" \ |
Stewart Smith | 21684af | 2014-01-24 12:39:10 +1100 | [diff] [blame] | 2332 | "configure was not able to find it." \ |
| 2333 | "$remedy" |
Juan Quintela | 249247c | 2009-08-12 18:20:25 +0200 | [diff] [blame] | 2334 | } |
| 2335 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 2336 | # --- |
| 2337 | # big/little endian test |
| 2338 | cat > $TMPC << EOF |
Mike Frysinger | 61cc919 | 2013-06-30 23:30:18 -0400 | [diff] [blame] | 2339 | short big_endian[] = { 0x4269, 0x4765, 0x4e64, 0x4961, 0x4e00, 0, }; |
| 2340 | short little_endian[] = { 0x694c, 0x7454, 0x654c, 0x6e45, 0x6944, 0x6e41, 0, }; |
| 2341 | extern int foo(short *, short *); |
| 2342 | int main(int argc, char *argv[]) { |
| 2343 | return foo(big_endian, little_endian); |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 2344 | } |
| 2345 | EOF |
| 2346 | |
Mike Frysinger | 61cc919 | 2013-06-30 23:30:18 -0400 | [diff] [blame] | 2347 | if compile_object ; then |
Alice Frosi | 12f15c9 | 2018-01-30 14:38:28 +0100 | [diff] [blame] | 2348 | if strings -a $TMPO | grep -q BiGeNdIaN ; then |
Mike Frysinger | 61cc919 | 2013-06-30 23:30:18 -0400 | [diff] [blame] | 2349 | bigendian="yes" |
Alice Frosi | 12f15c9 | 2018-01-30 14:38:28 +0100 | [diff] [blame] | 2350 | elif strings -a $TMPO | grep -q LiTtLeEnDiAn ; then |
Mike Frysinger | 61cc919 | 2013-06-30 23:30:18 -0400 | [diff] [blame] | 2351 | bigendian="no" |
| 2352 | else |
| 2353 | echo big/little test failed |
Peter Maydell | 21d89f8 | 2011-11-30 10:57:48 +0100 | [diff] [blame] | 2354 | fi |
Mike Frysinger | 61cc919 | 2013-06-30 23:30:18 -0400 | [diff] [blame] | 2355 | else |
| 2356 | echo big/little test failed |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 2357 | fi |
| 2358 | |
Juan Quintela | b0a47e7 | 2009-08-12 18:29:49 +0200 | [diff] [blame] | 2359 | ########################################## |
Philippe Mathieu-Daudé | e10ee3f | 2020-02-17 14:33:27 +0100 | [diff] [blame] | 2360 | # system tools |
| 2361 | if test -z "$want_tools"; then |
| 2362 | if test "$softmmu" = "no"; then |
| 2363 | want_tools=no |
| 2364 | else |
| 2365 | want_tools=yes |
| 2366 | fi |
| 2367 | fi |
| 2368 | |
| 2369 | ########################################## |
Philippe Mathieu-Daudé | 90520ee | 2021-01-22 21:44:30 +0100 | [diff] [blame] | 2370 | # Disable features only meaningful for system-mode emulation |
| 2371 | if test "$softmmu" = "no"; then |
| 2372 | audio_drv_list="" |
| 2373 | fi |
| 2374 | |
| 2375 | ########################################## |
Eric Blake | 6b39b06 | 2016-10-11 10:46:23 -0500 | [diff] [blame] | 2376 | # Some versions of Mac OS X incorrectly define SIZE_MAX |
| 2377 | cat > $TMPC << EOF |
| 2378 | #include <stdint.h> |
| 2379 | #include <stdio.h> |
| 2380 | int main(int argc, char *argv[]) { |
| 2381 | return printf("%zu", SIZE_MAX); |
| 2382 | } |
| 2383 | EOF |
| 2384 | have_broken_size_max=no |
| 2385 | if ! compile_object -Werror ; then |
| 2386 | have_broken_size_max=yes |
| 2387 | fi |
| 2388 | |
Peter Maydell | a30878e | 2015-08-14 16:10:52 +0100 | [diff] [blame] | 2389 | ########################################## |
Gonglei | 015a33b | 2014-07-01 20:58:08 +0800 | [diff] [blame] | 2390 | # L2TPV3 probe |
| 2391 | |
| 2392 | cat > $TMPC <<EOF |
| 2393 | #include <sys/socket.h> |
Michael Tokarev | bff6cb7 | 2014-08-01 23:20:24 +0400 | [diff] [blame] | 2394 | #include <linux/ip.h> |
Gonglei | 015a33b | 2014-07-01 20:58:08 +0800 | [diff] [blame] | 2395 | int main(void) { return sizeof(struct mmsghdr); } |
| 2396 | EOF |
| 2397 | if compile_prog "" "" ; then |
| 2398 | l2tpv3=yes |
| 2399 | else |
| 2400 | l2tpv3=no |
| 2401 | fi |
| 2402 | |
David CARLIER | 195588c | 2020-07-13 14:36:09 +0100 | [diff] [blame] | 2403 | cat > $TMPC <<EOF |
| 2404 | #include <sys/mman.h> |
| 2405 | int main(int argc, char *argv[]) { |
| 2406 | return mlockall(MCL_FUTURE); |
| 2407 | } |
| 2408 | EOF |
| 2409 | if compile_prog "" "" ; then |
| 2410 | have_mlockall=yes |
| 2411 | else |
| 2412 | have_mlockall=no |
| 2413 | fi |
| 2414 | |
Paolo Bonzini | 299e6f1 | 2019-02-14 18:35:53 +0100 | [diff] [blame] | 2415 | ######################################### |
| 2416 | # vhost interdependencies and host support |
| 2417 | |
| 2418 | # vhost backends |
Stefan Hajnoczi | d88618f | 2020-11-10 17:11:21 +0000 | [diff] [blame] | 2419 | if test "$vhost_user" = "yes" && test "$linux" != "yes"; then |
| 2420 | error_exit "vhost-user is only available on Linux" |
Paolo Bonzini | 299e6f1 | 2019-02-14 18:35:53 +0100 | [diff] [blame] | 2421 | fi |
Cindy Lu | 108a648 | 2020-07-01 22:55:37 +0800 | [diff] [blame] | 2422 | test "$vhost_vdpa" = "" && vhost_vdpa=$linux |
| 2423 | if test "$vhost_vdpa" = "yes" && test "$linux" != "yes"; then |
| 2424 | error_exit "vhost-vdpa is only available on Linux" |
| 2425 | fi |
Paolo Bonzini | 299e6f1 | 2019-02-14 18:35:53 +0100 | [diff] [blame] | 2426 | test "$vhost_kernel" = "" && vhost_kernel=$linux |
| 2427 | if test "$vhost_kernel" = "yes" && test "$linux" != "yes"; then |
| 2428 | error_exit "vhost-kernel is only available on Linux" |
| 2429 | fi |
| 2430 | |
| 2431 | # vhost-kernel devices |
| 2432 | test "$vhost_scsi" = "" && vhost_scsi=$vhost_kernel |
| 2433 | if test "$vhost_scsi" = "yes" && test "$vhost_kernel" != "yes"; then |
| 2434 | error_exit "--enable-vhost-scsi requires --enable-vhost-kernel" |
| 2435 | fi |
| 2436 | test "$vhost_vsock" = "" && vhost_vsock=$vhost_kernel |
| 2437 | if test "$vhost_vsock" = "yes" && test "$vhost_kernel" != "yes"; then |
| 2438 | error_exit "--enable-vhost-vsock requires --enable-vhost-kernel" |
| 2439 | fi |
| 2440 | |
| 2441 | # vhost-user backends |
| 2442 | test "$vhost_net_user" = "" && vhost_net_user=$vhost_user |
| 2443 | if test "$vhost_net_user" = "yes" && test "$vhost_user" = "no"; then |
| 2444 | error_exit "--enable-vhost-net-user requires --enable-vhost-user" |
| 2445 | fi |
| 2446 | test "$vhost_crypto" = "" && vhost_crypto=$vhost_user |
| 2447 | if test "$vhost_crypto" = "yes" && test "$vhost_user" = "no"; then |
| 2448 | error_exit "--enable-vhost-crypto requires --enable-vhost-user" |
| 2449 | fi |
Dr. David Alan Gilbert | 98fc1ad | 2019-09-30 11:51:34 +0100 | [diff] [blame] | 2450 | test "$vhost_user_fs" = "" && vhost_user_fs=$vhost_user |
| 2451 | if test "$vhost_user_fs" = "yes" && test "$vhost_user" = "no"; then |
| 2452 | error_exit "--enable-vhost-user-fs requires --enable-vhost-user" |
| 2453 | fi |
Cindy Lu | 108a648 | 2020-07-01 22:55:37 +0800 | [diff] [blame] | 2454 | #vhost-vdpa backends |
| 2455 | test "$vhost_net_vdpa" = "" && vhost_net_vdpa=$vhost_vdpa |
| 2456 | if test "$vhost_net_vdpa" = "yes" && test "$vhost_vdpa" = "no"; then |
| 2457 | error_exit "--enable-vhost-net-vdpa requires --enable-vhost-vdpa" |
| 2458 | fi |
Paolo Bonzini | 299e6f1 | 2019-02-14 18:35:53 +0100 | [diff] [blame] | 2459 | |
Laurent Vivier | 40bc0ca | 2020-09-24 23:00:23 +0200 | [diff] [blame] | 2460 | # OR the vhost-kernel, vhost-vdpa and vhost-user values for simplicity |
Paolo Bonzini | 299e6f1 | 2019-02-14 18:35:53 +0100 | [diff] [blame] | 2461 | if test "$vhost_net" = ""; then |
| 2462 | test "$vhost_net_user" = "yes" && vhost_net=yes |
Laurent Vivier | 40bc0ca | 2020-09-24 23:00:23 +0200 | [diff] [blame] | 2463 | test "$vhost_net_vdpa" = "yes" && vhost_net=yes |
Paolo Bonzini | 299e6f1 | 2019-02-14 18:35:53 +0100 | [diff] [blame] | 2464 | test "$vhost_kernel" = "yes" && vhost_net=yes |
| 2465 | fi |
| 2466 | |
Gonglei | 015a33b | 2014-07-01 20:58:08 +0800 | [diff] [blame] | 2467 | ########################################## |
Stefan Weil | 779ab5e | 2012-12-16 11:29:45 +0100 | [diff] [blame] | 2468 | # pkg-config probe |
| 2469 | |
| 2470 | if ! has "$pkg_config_exe"; then |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 2471 | error_exit "pkg-config binary '$pkg_config_exe' not found" |
Stefan Weil | 779ab5e | 2012-12-16 11:29:45 +0100 | [diff] [blame] | 2472 | fi |
| 2473 | |
| 2474 | ########################################## |
Juan Quintela | b0a47e7 | 2009-08-12 18:29:49 +0200 | [diff] [blame] | 2475 | # NPTL probe |
| 2476 | |
Peter Maydell | 24cb36a | 2013-07-16 18:45:00 +0100 | [diff] [blame] | 2477 | if test "$linux_user" = "yes"; then |
Juan Quintela | b0a47e7 | 2009-08-12 18:29:49 +0200 | [diff] [blame] | 2478 | cat > $TMPC <<EOF |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 2479 | #include <sched.h> |
pbrook | 30813ce | 2008-06-02 15:45:44 +0000 | [diff] [blame] | 2480 | #include <linux/futex.h> |
Stefan Weil | 182eacc | 2011-12-17 09:27:30 +0100 | [diff] [blame] | 2481 | int main(void) { |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 2482 | #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) |
| 2483 | #error bork |
| 2484 | #endif |
Stefan Weil | 182eacc | 2011-12-17 09:27:30 +0100 | [diff] [blame] | 2485 | return 0; |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 2486 | } |
| 2487 | EOF |
Peter Maydell | 24cb36a | 2013-07-16 18:45:00 +0100 | [diff] [blame] | 2488 | if ! compile_object ; then |
Stewart Smith | 21684af | 2014-01-24 12:39:10 +1100 | [diff] [blame] | 2489 | feature_not_found "nptl" "Install glibc and linux kernel headers." |
Juan Quintela | b0a47e7 | 2009-08-12 18:29:49 +0200 | [diff] [blame] | 2490 | fi |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 2491 | fi |
| 2492 | |
balrog | ac62922 | 2008-10-11 09:56:04 +0000 | [diff] [blame] | 2493 | ########################################## |
aliguori | e37630c | 2009-04-22 15:19:10 +0000 | [diff] [blame] | 2494 | # xen probe |
| 2495 | |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2496 | if test "$xen" != "disabled" ; then |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2497 | # Check whether Xen library path is specified via --extra-ldflags to avoid |
| 2498 | # overriding this setting with pkg-config output. If not, try pkg-config |
| 2499 | # to obtain all needed flags. |
Anthony PERARD | d5b93dd | 2011-02-25 16:20:34 +0000 | [diff] [blame] | 2500 | |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2501 | if ! echo $EXTRA_LDFLAGS | grep tools/libxc > /dev/null && \ |
| 2502 | $pkg_config --exists xencontrol ; then |
| 2503 | xen_ctrl_version="$(printf '%d%02d%02d' \ |
| 2504 | $($pkg_config --modversion xencontrol | sed 's/\./ /g') )" |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2505 | xen=enabled |
Michael Tokarev | 5b6a8f4 | 2020-07-27 17:00:48 +0300 | [diff] [blame] | 2506 | xen_pc="xencontrol xenstore xenforeignmemory xengnttab" |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2507 | xen_pc="$xen_pc xenevtchn xendevicemodel" |
Anthony PERARD | 58ea9a7 | 2017-09-25 16:01:48 +0100 | [diff] [blame] | 2508 | if $pkg_config --exists xentoolcore; then |
| 2509 | xen_pc="$xen_pc xentoolcore" |
| 2510 | fi |
Marc-André Lureau | 582ea95 | 2019-08-15 15:15:32 +0400 | [diff] [blame] | 2511 | xen_cflags="$($pkg_config --cflags $xen_pc)" |
| 2512 | xen_libs="$($pkg_config --libs $xen_pc)" |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2513 | else |
Stefan Weil | 50ced5b | 2011-12-17 09:27:39 +0100 | [diff] [blame] | 2514 | |
Michael Tokarev | 5b6a8f4 | 2020-07-27 17:00:48 +0300 | [diff] [blame] | 2515 | xen_libs="-lxenstore -lxenctrl" |
Anthony PERARD | d9506ca | 2017-05-11 12:35:42 +0100 | [diff] [blame] | 2516 | xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn" |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2517 | |
| 2518 | # First we test whether Xen headers and libraries are available. |
| 2519 | # If no, we are done and there is no Xen support. |
| 2520 | # If yes, more tests are run to detect the Xen version. |
| 2521 | |
| 2522 | # Xen (any) |
| 2523 | cat > $TMPC <<EOF |
aliguori | e37630c | 2009-04-22 15:19:10 +0000 | [diff] [blame] | 2524 | #include <xenctrl.h> |
Stefan Weil | 50ced5b | 2011-12-17 09:27:39 +0100 | [diff] [blame] | 2525 | int main(void) { |
| 2526 | return 0; |
| 2527 | } |
| 2528 | EOF |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2529 | if ! compile_prog "" "$xen_libs" ; then |
| 2530 | # Xen not found |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2531 | if test "$xen" = "enabled" ; then |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2532 | feature_not_found "xen" "Install xen devel" |
| 2533 | fi |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2534 | xen=disabled |
Stefan Weil | 50ced5b | 2011-12-17 09:27:39 +0100 | [diff] [blame] | 2535 | |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2536 | # Xen unstable |
| 2537 | elif |
| 2538 | cat > $TMPC <<EOF && |
Ross Lagerwall | 2cbf890 | 2017-10-23 10:27:27 +0100 | [diff] [blame] | 2539 | #undef XC_WANT_COMPAT_DEVICEMODEL_API |
| 2540 | #define __XEN_TOOLS__ |
| 2541 | #include <xendevicemodel.h> |
Paul Durrant | d3c49eb | 2018-05-15 17:40:53 +0100 | [diff] [blame] | 2542 | #include <xenforeignmemory.h> |
Ross Lagerwall | 2cbf890 | 2017-10-23 10:27:27 +0100 | [diff] [blame] | 2543 | int main(void) { |
| 2544 | xendevicemodel_handle *xd; |
Paul Durrant | d3c49eb | 2018-05-15 17:40:53 +0100 | [diff] [blame] | 2545 | xenforeignmemory_handle *xfmem; |
Ross Lagerwall | 2cbf890 | 2017-10-23 10:27:27 +0100 | [diff] [blame] | 2546 | |
| 2547 | xd = xendevicemodel_open(0, 0); |
| 2548 | xendevicemodel_pin_memory_cacheattr(xd, 0, 0, 0, 0); |
| 2549 | |
Paul Durrant | d3c49eb | 2018-05-15 17:40:53 +0100 | [diff] [blame] | 2550 | xfmem = xenforeignmemory_open(0, 0); |
| 2551 | xenforeignmemory_map_resource(xfmem, 0, 0, 0, 0, 0, NULL, 0, 0); |
| 2552 | |
Ross Lagerwall | 2cbf890 | 2017-10-23 10:27:27 +0100 | [diff] [blame] | 2553 | return 0; |
| 2554 | } |
| 2555 | EOF |
| 2556 | compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore" |
| 2557 | then |
| 2558 | xen_stable_libs="-lxendevicemodel $xen_stable_libs -lxentoolcore" |
| 2559 | xen_ctrl_version=41100 |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2560 | xen=enabled |
Ross Lagerwall | 2cbf890 | 2017-10-23 10:27:27 +0100 | [diff] [blame] | 2561 | elif |
| 2562 | cat > $TMPC <<EOF && |
Igor Druzhinin | 5ba3d75 | 2017-07-10 23:40:02 +0100 | [diff] [blame] | 2563 | #undef XC_WANT_COMPAT_MAP_FOREIGN_API |
| 2564 | #include <xenforeignmemory.h> |
Anthony PERARD | 58ea9a7 | 2017-09-25 16:01:48 +0100 | [diff] [blame] | 2565 | #include <xentoolcore.h> |
Igor Druzhinin | 5ba3d75 | 2017-07-10 23:40:02 +0100 | [diff] [blame] | 2566 | int main(void) { |
| 2567 | xenforeignmemory_handle *xfmem; |
| 2568 | |
| 2569 | xfmem = xenforeignmemory_open(0, 0); |
| 2570 | xenforeignmemory_map2(xfmem, 0, 0, 0, 0, 0, 0, 0); |
Anthony PERARD | 58ea9a7 | 2017-09-25 16:01:48 +0100 | [diff] [blame] | 2571 | xentoolcore_restrict_all(0); |
Igor Druzhinin | 5ba3d75 | 2017-07-10 23:40:02 +0100 | [diff] [blame] | 2572 | |
| 2573 | return 0; |
| 2574 | } |
| 2575 | EOF |
Anthony PERARD | 58ea9a7 | 2017-09-25 16:01:48 +0100 | [diff] [blame] | 2576 | compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore" |
Igor Druzhinin | 5ba3d75 | 2017-07-10 23:40:02 +0100 | [diff] [blame] | 2577 | then |
Anthony PERARD | 58ea9a7 | 2017-09-25 16:01:48 +0100 | [diff] [blame] | 2578 | xen_stable_libs="-lxendevicemodel $xen_stable_libs -lxentoolcore" |
Igor Druzhinin | 5ba3d75 | 2017-07-10 23:40:02 +0100 | [diff] [blame] | 2579 | xen_ctrl_version=41000 |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2580 | xen=enabled |
Igor Druzhinin | 5ba3d75 | 2017-07-10 23:40:02 +0100 | [diff] [blame] | 2581 | elif |
| 2582 | cat > $TMPC <<EOF && |
Paul Durrant | da8090c | 2017-03-07 10:55:33 +0000 | [diff] [blame] | 2583 | #undef XC_WANT_COMPAT_DEVICEMODEL_API |
| 2584 | #define __XEN_TOOLS__ |
| 2585 | #include <xendevicemodel.h> |
| 2586 | int main(void) { |
| 2587 | xendevicemodel_handle *xd; |
| 2588 | |
| 2589 | xd = xendevicemodel_open(0, 0); |
| 2590 | xendevicemodel_close(xd); |
| 2591 | |
| 2592 | return 0; |
| 2593 | } |
| 2594 | EOF |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2595 | compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs" |
| 2596 | then |
| 2597 | xen_stable_libs="-lxendevicemodel $xen_stable_libs" |
| 2598 | xen_ctrl_version=40900 |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2599 | xen=enabled |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2600 | elif |
| 2601 | cat > $TMPC <<EOF && |
Ian Campbell | 5eeb39c | 2016-01-15 13:23:42 +0000 | [diff] [blame] | 2602 | /* |
| 2603 | * If we have stable libs the we don't want the libxc compat |
| 2604 | * layers, regardless of what CFLAGS we may have been given. |
Paulina Szubarczyk | b6eb9b4 | 2016-09-14 21:10:03 +0200 | [diff] [blame] | 2605 | * |
| 2606 | * Also, check if xengnttab_grant_copy_segment_t is defined and |
| 2607 | * grant copy operation is implemented. |
| 2608 | */ |
| 2609 | #undef XC_WANT_COMPAT_EVTCHN_API |
| 2610 | #undef XC_WANT_COMPAT_GNTTAB_API |
| 2611 | #undef XC_WANT_COMPAT_MAP_FOREIGN_API |
| 2612 | #include <xenctrl.h> |
| 2613 | #include <xenstore.h> |
| 2614 | #include <xenevtchn.h> |
| 2615 | #include <xengnttab.h> |
| 2616 | #include <xenforeignmemory.h> |
| 2617 | #include <stdint.h> |
| 2618 | #include <xen/hvm/hvm_info_table.h> |
| 2619 | #if !defined(HVM_MAX_VCPUS) |
| 2620 | # error HVM_MAX_VCPUS not defined |
| 2621 | #endif |
| 2622 | int main(void) { |
| 2623 | xc_interface *xc = NULL; |
| 2624 | xenforeignmemory_handle *xfmem; |
| 2625 | xenevtchn_handle *xe; |
| 2626 | xengnttab_handle *xg; |
Paulina Szubarczyk | b6eb9b4 | 2016-09-14 21:10:03 +0200 | [diff] [blame] | 2627 | xengnttab_grant_copy_segment_t* seg = NULL; |
| 2628 | |
| 2629 | xs_daemon_open(); |
| 2630 | |
| 2631 | xc = xc_interface_open(0, 0, 0); |
| 2632 | xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); |
| 2633 | xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); |
| 2634 | xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); |
| 2635 | xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL); |
Paulina Szubarczyk | b6eb9b4 | 2016-09-14 21:10:03 +0200 | [diff] [blame] | 2636 | |
| 2637 | xfmem = xenforeignmemory_open(0, 0); |
| 2638 | xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0); |
| 2639 | |
| 2640 | xe = xenevtchn_open(0, 0); |
| 2641 | xenevtchn_fd(xe); |
| 2642 | |
| 2643 | xg = xengnttab_open(0, 0); |
| 2644 | xengnttab_grant_copy(xg, 0, seg); |
| 2645 | |
| 2646 | return 0; |
| 2647 | } |
| 2648 | EOF |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2649 | compile_prog "" "$xen_libs $xen_stable_libs" |
| 2650 | then |
| 2651 | xen_ctrl_version=40800 |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2652 | xen=enabled |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2653 | elif |
| 2654 | cat > $TMPC <<EOF && |
Paulina Szubarczyk | b6eb9b4 | 2016-09-14 21:10:03 +0200 | [diff] [blame] | 2655 | /* |
| 2656 | * If we have stable libs the we don't want the libxc compat |
| 2657 | * layers, regardless of what CFLAGS we may have been given. |
Ian Campbell | 5eeb39c | 2016-01-15 13:23:42 +0000 | [diff] [blame] | 2658 | */ |
| 2659 | #undef XC_WANT_COMPAT_EVTCHN_API |
| 2660 | #undef XC_WANT_COMPAT_GNTTAB_API |
| 2661 | #undef XC_WANT_COMPAT_MAP_FOREIGN_API |
| 2662 | #include <xenctrl.h> |
| 2663 | #include <xenstore.h> |
| 2664 | #include <xenevtchn.h> |
| 2665 | #include <xengnttab.h> |
| 2666 | #include <xenforeignmemory.h> |
| 2667 | #include <stdint.h> |
| 2668 | #include <xen/hvm/hvm_info_table.h> |
| 2669 | #if !defined(HVM_MAX_VCPUS) |
| 2670 | # error HVM_MAX_VCPUS not defined |
| 2671 | #endif |
| 2672 | int main(void) { |
| 2673 | xc_interface *xc = NULL; |
| 2674 | xenforeignmemory_handle *xfmem; |
| 2675 | xenevtchn_handle *xe; |
| 2676 | xengnttab_handle *xg; |
Ian Campbell | 5eeb39c | 2016-01-15 13:23:42 +0000 | [diff] [blame] | 2677 | |
| 2678 | xs_daemon_open(); |
| 2679 | |
| 2680 | xc = xc_interface_open(0, 0, 0); |
| 2681 | xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); |
| 2682 | xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); |
| 2683 | xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); |
| 2684 | xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL); |
Ian Campbell | 5eeb39c | 2016-01-15 13:23:42 +0000 | [diff] [blame] | 2685 | |
| 2686 | xfmem = xenforeignmemory_open(0, 0); |
| 2687 | xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0); |
| 2688 | |
| 2689 | xe = xenevtchn_open(0, 0); |
| 2690 | xenevtchn_fd(xe); |
| 2691 | |
| 2692 | xg = xengnttab_open(0, 0); |
| 2693 | xengnttab_map_grant_ref(xg, 0, 0, 0); |
| 2694 | |
| 2695 | return 0; |
| 2696 | } |
| 2697 | EOF |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2698 | compile_prog "" "$xen_libs $xen_stable_libs" |
| 2699 | then |
| 2700 | xen_ctrl_version=40701 |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2701 | xen=enabled |
Roger Pau Monne | cdadde3 | 2015-11-13 17:38:06 +0000 | [diff] [blame] | 2702 | |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2703 | # Xen 4.6 |
| 2704 | elif |
| 2705 | cat > $TMPC <<EOF && |
Roger Pau Monne | cdadde3 | 2015-11-13 17:38:06 +0000 | [diff] [blame] | 2706 | #include <xenctrl.h> |
Anthony PERARD | e108a3c | 2012-06-21 11:44:35 +0000 | [diff] [blame] | 2707 | #include <xenstore.h> |
Anthony PERARD | d5b93dd | 2011-02-25 16:20:34 +0000 | [diff] [blame] | 2708 | #include <stdint.h> |
| 2709 | #include <xen/hvm/hvm_info_table.h> |
| 2710 | #if !defined(HVM_MAX_VCPUS) |
| 2711 | # error HVM_MAX_VCPUS not defined |
| 2712 | #endif |
| 2713 | int main(void) { |
| 2714 | xc_interface *xc; |
| 2715 | xs_daemon_open(); |
| 2716 | xc = xc_interface_open(0, 0, 0); |
| 2717 | xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); |
| 2718 | xc_gnttab_open(NULL, 0); |
Anthony PERARD | b87de24 | 2011-05-24 14:34:20 +0100 | [diff] [blame] | 2719 | xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); |
Stefano Stabellini | 8688e06 | 2012-04-17 17:04:18 +0000 | [diff] [blame] | 2720 | xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); |
Jan Beulich | d8b441a | 2015-07-24 03:38:28 -0600 | [diff] [blame] | 2721 | xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL); |
Konrad Rzeszutek Wilk | 20a544c | 2015-06-29 12:51:05 -0400 | [diff] [blame] | 2722 | xc_reserved_device_memory_map(xc, 0, 0, 0, 0, NULL, 0); |
Jan Beulich | d8b441a | 2015-07-24 03:38:28 -0600 | [diff] [blame] | 2723 | return 0; |
| 2724 | } |
| 2725 | EOF |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2726 | compile_prog "" "$xen_libs" |
| 2727 | then |
| 2728 | xen_ctrl_version=40600 |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2729 | xen=enabled |
Jan Beulich | d8b441a | 2015-07-24 03:38:28 -0600 | [diff] [blame] | 2730 | |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2731 | # Xen 4.5 |
| 2732 | elif |
| 2733 | cat > $TMPC <<EOF && |
Jan Beulich | d8b441a | 2015-07-24 03:38:28 -0600 | [diff] [blame] | 2734 | #include <xenctrl.h> |
| 2735 | #include <xenstore.h> |
| 2736 | #include <stdint.h> |
| 2737 | #include <xen/hvm/hvm_info_table.h> |
| 2738 | #if !defined(HVM_MAX_VCPUS) |
| 2739 | # error HVM_MAX_VCPUS not defined |
| 2740 | #endif |
| 2741 | int main(void) { |
| 2742 | xc_interface *xc; |
| 2743 | xs_daemon_open(); |
| 2744 | xc = xc_interface_open(0, 0, 0); |
| 2745 | xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); |
| 2746 | xc_gnttab_open(NULL, 0); |
| 2747 | xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); |
| 2748 | xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); |
Paul Durrant | 3996e85 | 2015-01-20 11:06:19 +0000 | [diff] [blame] | 2749 | xc_hvm_create_ioreq_server(xc, 0, 0, NULL); |
| 2750 | return 0; |
| 2751 | } |
| 2752 | EOF |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2753 | compile_prog "" "$xen_libs" |
| 2754 | then |
| 2755 | xen_ctrl_version=40500 |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2756 | xen=enabled |
Paul Durrant | 3996e85 | 2015-01-20 11:06:19 +0000 | [diff] [blame] | 2757 | |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2758 | elif |
| 2759 | cat > $TMPC <<EOF && |
Paul Durrant | 3996e85 | 2015-01-20 11:06:19 +0000 | [diff] [blame] | 2760 | #include <xenctrl.h> |
| 2761 | #include <xenstore.h> |
| 2762 | #include <stdint.h> |
| 2763 | #include <xen/hvm/hvm_info_table.h> |
| 2764 | #if !defined(HVM_MAX_VCPUS) |
| 2765 | # error HVM_MAX_VCPUS not defined |
| 2766 | #endif |
| 2767 | int main(void) { |
| 2768 | xc_interface *xc; |
| 2769 | xs_daemon_open(); |
| 2770 | xc = xc_interface_open(0, 0, 0); |
| 2771 | xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); |
| 2772 | xc_gnttab_open(NULL, 0); |
| 2773 | xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); |
| 2774 | xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); |
Stefano Stabellini | 8688e06 | 2012-04-17 17:04:18 +0000 | [diff] [blame] | 2775 | return 0; |
| 2776 | } |
| 2777 | EOF |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2778 | compile_prog "" "$xen_libs" |
| 2779 | then |
| 2780 | xen_ctrl_version=40200 |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2781 | xen=enabled |
Stefano Stabellini | 8688e06 | 2012-04-17 17:04:18 +0000 | [diff] [blame] | 2782 | |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2783 | else |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2784 | if test "$xen" = "enabled" ; then |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2785 | feature_not_found "xen (unsupported version)" \ |
| 2786 | "Install a supported xen (xen 4.2 or newer)" |
| 2787 | fi |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2788 | xen=disabled |
Juan Quintela | fc321b4 | 2009-08-12 18:29:55 +0200 | [diff] [blame] | 2789 | fi |
Anthony PERARD | d5b93dd | 2011-02-25 16:20:34 +0000 | [diff] [blame] | 2790 | |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 2791 | if test "$xen" = enabled; then |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2792 | if test $xen_ctrl_version -ge 40701 ; then |
Marc-André Lureau | 582ea95 | 2019-08-15 15:15:32 +0400 | [diff] [blame] | 2793 | xen_libs="$xen_libs $xen_stable_libs " |
Juergen Gross | c1cdd9d | 2017-03-27 09:42:45 +0200 | [diff] [blame] | 2794 | fi |
Ian Campbell | 5eeb39c | 2016-01-15 13:23:42 +0000 | [diff] [blame] | 2795 | fi |
Anthony PERARD | d5b93dd | 2011-02-25 16:20:34 +0000 | [diff] [blame] | 2796 | fi |
aliguori | e37630c | 2009-04-22 15:19:10 +0000 | [diff] [blame] | 2797 | fi |
| 2798 | |
| 2799 | ########################################## |
Daniel P. Berrange | ddbb0d0 | 2015-07-01 18:10:29 +0100 | [diff] [blame] | 2800 | # GNUTLS probe |
| 2801 | |
| 2802 | if test "$gnutls" != "no"; then |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2803 | pass="no" |
Daniel P. Berrangé | d4c7ee3 | 2021-05-14 13:04:09 +0100 | [diff] [blame] | 2804 | if $pkg_config --exists "gnutls >= 3.5.18"; then |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 2805 | gnutls_cflags=$($pkg_config --cflags gnutls) |
| 2806 | gnutls_libs=$($pkg_config --libs gnutls) |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2807 | # Packaging for the static libraries is not always correct. |
| 2808 | # At least ubuntu 18.04 ships only shared libraries. |
| 2809 | write_c_skeleton |
| 2810 | if compile_prog "" "$gnutls_libs" ; then |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2811 | pass="yes" |
| 2812 | fi |
| 2813 | fi |
| 2814 | if test "$pass" = "no" && test "$gnutls" = "yes"; then |
Daniel P. Berrangé | a072240 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2815 | feature_not_found "gnutls" "Install gnutls devel >= 3.1.18" |
Daniel P. Berrange | ddbb0d0 | 2015-07-01 18:10:29 +0100 | [diff] [blame] | 2816 | else |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2817 | gnutls="$pass" |
Daniel P. Berrange | ddbb0d0 | 2015-07-01 18:10:29 +0100 | [diff] [blame] | 2818 | fi |
Daniel P. Berrange | ddbb0d0 | 2015-07-01 18:10:29 +0100 | [diff] [blame] | 2819 | fi |
| 2820 | |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 2821 | |
| 2822 | # If user didn't give a --disable/enable-gcrypt flag, |
| 2823 | # then mark as disabled if user requested nettle |
Daniel P. Berrangé | a072240 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2824 | # explicitly |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 2825 | if test -z "$gcrypt" |
| 2826 | then |
Daniel P. Berrangé | a072240 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2827 | if test "$nettle" = "yes" |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 2828 | then |
| 2829 | gcrypt="no" |
| 2830 | fi |
| 2831 | fi |
| 2832 | |
| 2833 | # If user didn't give a --disable/enable-nettle flag, |
| 2834 | # then mark as disabled if user requested gcrypt |
Daniel P. Berrangé | a072240 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2835 | # explicitly |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 2836 | if test -z "$nettle" |
| 2837 | then |
Daniel P. Berrangé | a072240 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2838 | if test "$gcrypt" = "yes" |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 2839 | then |
| 2840 | nettle="no" |
| 2841 | fi |
| 2842 | fi |
| 2843 | |
Daniel P. Berrangé | dea7a64 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2844 | has_libgcrypt() { |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 2845 | if ! has "libgcrypt-config" |
| 2846 | then |
| 2847 | return 1 |
| 2848 | fi |
| 2849 | |
| 2850 | if test -n "$cross_prefix" |
| 2851 | then |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 2852 | host=$(libgcrypt-config --host) |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 2853 | if test "$host-" != $cross_prefix |
| 2854 | then |
| 2855 | return 1 |
| 2856 | fi |
| 2857 | fi |
| 2858 | |
Daniel P. Berrangé | dea7a64 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2859 | maj=`libgcrypt-config --version | awk -F . '{print $1}'` |
| 2860 | min=`libgcrypt-config --version | awk -F . '{print $2}'` |
| 2861 | |
Daniel P. Berrangé | b33a846 | 2021-05-14 13:04:08 +0100 | [diff] [blame] | 2862 | if test $maj != 1 || test $min -lt 8 |
Daniel P. Berrangé | dea7a64 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2863 | then |
| 2864 | return 1 |
| 2865 | fi |
| 2866 | |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 2867 | return 0 |
| 2868 | } |
| 2869 | |
Daniel P. Berrangé | a072240 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2870 | |
| 2871 | if test "$nettle" != "no"; then |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2872 | pass="no" |
Daniel P. Berrangé | 20ba7a4 | 2021-05-14 13:04:06 +0100 | [diff] [blame] | 2873 | if $pkg_config --exists "nettle >= 3.4"; then |
Daniel P. Berrangé | a072240 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2874 | nettle_cflags=$($pkg_config --cflags nettle) |
| 2875 | nettle_libs=$($pkg_config --libs nettle) |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2876 | # Link test to make sure the given libraries work (e.g for static). |
| 2877 | write_c_skeleton |
| 2878 | if compile_prog "" "$nettle_libs" ; then |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2879 | if test -z "$gcrypt"; then |
| 2880 | gcrypt="no" |
| 2881 | fi |
| 2882 | pass="yes" |
Daniel P. Berrangé | a072240 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2883 | fi |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2884 | fi |
Daniel P. Berrangé | dc2207a | 2019-10-14 17:28:27 +0100 | [diff] [blame] | 2885 | if test "$pass" = "yes" |
| 2886 | then |
| 2887 | cat > $TMPC << EOF |
| 2888 | #include <nettle/xts.h> |
| 2889 | int main(void) { |
| 2890 | return 0; |
| 2891 | } |
| 2892 | EOF |
| 2893 | if compile_prog "$nettle_cflags" "$nettle_libs" ; then |
| 2894 | nettle_xts=yes |
| 2895 | qemu_private_xts=no |
| 2896 | fi |
| 2897 | fi |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2898 | if test "$pass" = "no" && test "$nettle" = "yes"; then |
| 2899 | feature_not_found "nettle" "Install nettle devel >= 2.7.1" |
Daniel P. Berrangé | a072240 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2900 | else |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2901 | nettle="$pass" |
Daniel P. Berrangé | a072240 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2902 | fi |
| 2903 | fi |
| 2904 | |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 2905 | if test "$gcrypt" != "no"; then |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2906 | pass="no" |
Daniel P. Berrangé | dea7a64 | 2018-07-18 11:55:05 +0100 | [diff] [blame] | 2907 | if has_libgcrypt; then |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 2908 | gcrypt_cflags=$(libgcrypt-config --cflags) |
| 2909 | gcrypt_libs=$(libgcrypt-config --libs) |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2910 | # Debian has removed -lgpg-error from libgcrypt-config |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 2911 | # as it "spreads unnecessary dependencies" which in |
| 2912 | # turn breaks static builds... |
| 2913 | if test "$static" = "yes" |
| 2914 | then |
| 2915 | gcrypt_libs="$gcrypt_libs -lgpg-error" |
| 2916 | fi |
Longpeng(Mike) | 1f923c7 | 2016-12-13 18:42:55 +0800 | [diff] [blame] | 2917 | |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2918 | # Link test to make sure the given libraries work (e.g for static). |
| 2919 | write_c_skeleton |
| 2920 | if compile_prog "" "$gcrypt_libs" ; then |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2921 | pass="yes" |
| 2922 | fi |
| 2923 | fi |
| 2924 | if test "$pass" = "yes"; then |
| 2925 | gcrypt="yes" |
Longpeng(Mike) | 1f923c7 | 2016-12-13 18:42:55 +0800 | [diff] [blame] | 2926 | cat > $TMPC << EOF |
| 2927 | #include <gcrypt.h> |
| 2928 | int main(void) { |
Daniel P. Berrangé | e057694 | 2019-10-14 17:28:27 +0100 | [diff] [blame] | 2929 | gcry_cipher_hd_t handle; |
| 2930 | gcry_cipher_open(&handle, GCRY_CIPHER_AES, GCRY_CIPHER_MODE_XTS, 0); |
| 2931 | return 0; |
| 2932 | } |
| 2933 | EOF |
| 2934 | if compile_prog "$gcrypt_cflags" "$gcrypt_libs" ; then |
| 2935 | gcrypt_xts=yes |
| 2936 | qemu_private_xts=no |
| 2937 | fi |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2938 | elif test "$gcrypt" = "yes"; then |
| 2939 | feature_not_found "gcrypt" "Install gcrypt devel >= 1.5.0" |
Daniel P. Berrange | 62893b6 | 2015-07-01 18:10:33 +0100 | [diff] [blame] | 2940 | else |
Richard Henderson | a73e82e | 2019-05-09 18:24:35 -0700 | [diff] [blame] | 2941 | gcrypt="no" |
Daniel P. Berrange | 62893b6 | 2015-07-01 18:10:33 +0100 | [diff] [blame] | 2942 | fi |
| 2943 | fi |
| 2944 | |
Daniel P. Berrange | ddbb0d0 | 2015-07-01 18:10:29 +0100 | [diff] [blame] | 2945 | |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 2946 | if test "$gcrypt" = "yes" && test "$nettle" = "yes" |
| 2947 | then |
| 2948 | error_exit "Only one of gcrypt & nettle can be enabled" |
| 2949 | fi |
| 2950 | |
Daniel P. Berrange | 9a2fd43 | 2015-04-13 14:01:39 +0100 | [diff] [blame] | 2951 | ########################################## |
| 2952 | # libtasn1 - only for the TLS creds/session test suite |
| 2953 | |
| 2954 | tasn1=yes |
Daniel P. Berrange | 9024603 | 2015-09-21 17:25:34 +0100 | [diff] [blame] | 2955 | tasn1_cflags="" |
| 2956 | tasn1_libs="" |
Daniel P. Berrange | 9a2fd43 | 2015-04-13 14:01:39 +0100 | [diff] [blame] | 2957 | if $pkg_config --exists "libtasn1"; then |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 2958 | tasn1_cflags=$($pkg_config --cflags libtasn1) |
| 2959 | tasn1_libs=$($pkg_config --libs libtasn1) |
Daniel P. Berrange | 9a2fd43 | 2015-04-13 14:01:39 +0100 | [diff] [blame] | 2960 | else |
| 2961 | tasn1=no |
| 2962 | fi |
| 2963 | |
Daniel P. Berrange | ed75474 | 2015-07-01 18:10:34 +0100 | [diff] [blame] | 2964 | |
Stefan Weil | bbbf9bf | 2014-02-19 07:04:34 +0100 | [diff] [blame] | 2965 | ########################################## |
Daniel P. Berrange | 8953caf | 2016-07-27 14:13:56 +0100 | [diff] [blame] | 2966 | # PAM probe |
| 2967 | |
| 2968 | if test "$auth_pam" != "no"; then |
| 2969 | cat > $TMPC <<EOF |
| 2970 | #include <security/pam_appl.h> |
| 2971 | #include <stdio.h> |
| 2972 | int main(void) { |
| 2973 | const char *service_name = "qemu"; |
| 2974 | const char *user = "frank"; |
Dr. David Alan Gilbert | 9c9642d | 2019-04-04 10:17:25 +0100 | [diff] [blame] | 2975 | const struct pam_conv pam_conv = { 0 }; |
Daniel P. Berrange | 8953caf | 2016-07-27 14:13:56 +0100 | [diff] [blame] | 2976 | pam_handle_t *pamh = NULL; |
Dr. David Alan Gilbert | 9c9642d | 2019-04-04 10:17:25 +0100 | [diff] [blame] | 2977 | pam_start(service_name, user, &pam_conv, &pamh); |
Daniel P. Berrange | 8953caf | 2016-07-27 14:13:56 +0100 | [diff] [blame] | 2978 | return 0; |
| 2979 | } |
| 2980 | EOF |
| 2981 | if compile_prog "" "-lpam" ; then |
| 2982 | auth_pam=yes |
| 2983 | else |
| 2984 | if test "$auth_pam" = "yes"; then |
| 2985 | feature_not_found "PAM" "Install PAM development package" |
| 2986 | else |
| 2987 | auth_pam=no |
| 2988 | fi |
| 2989 | fi |
| 2990 | fi |
| 2991 | |
Daniel P. Berrange | 559607e | 2015-02-27 16:19:33 +0000 | [diff] [blame] | 2992 | ########################################## |
Stefan Weil | bbbf9bf | 2014-02-19 07:04:34 +0100 | [diff] [blame] | 2993 | # VTE probe |
| 2994 | |
| 2995 | if test "$vte" != "no"; then |
Daniel P. Berrangé | 89d85cd | 2018-08-22 14:15:52 +0100 | [diff] [blame] | 2996 | vteminversion="0.32.0" |
| 2997 | if $pkg_config --exists "vte-2.91"; then |
| 2998 | vtepackage="vte-2.91" |
Daniel P. Berrange | 528de90 | 2013-02-25 15:20:44 +0000 | [diff] [blame] | 2999 | else |
Daniel P. Berrangé | 89d85cd | 2018-08-22 14:15:52 +0100 | [diff] [blame] | 3000 | vtepackage="vte-2.90" |
Daniel P. Berrange | 528de90 | 2013-02-25 15:20:44 +0000 | [diff] [blame] | 3001 | fi |
Cole Robinson | c6feff9 | 2016-05-06 14:03:12 -0400 | [diff] [blame] | 3002 | if $pkg_config --exists "$vtepackage >= $vteminversion"; then |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 3003 | vte_cflags=$($pkg_config --cflags $vtepackage) |
| 3004 | vte_libs=$($pkg_config --libs $vtepackage) |
| 3005 | vteversion=$($pkg_config --modversion $vtepackage) |
Stefan Weil | bbbf9bf | 2014-02-19 07:04:34 +0100 | [diff] [blame] | 3006 | vte="yes" |
| 3007 | elif test "$vte" = "yes"; then |
Daniel P. Berrangé | 89d85cd | 2018-08-22 14:15:52 +0100 | [diff] [blame] | 3008 | feature_not_found "vte" "Install libvte-2.90/2.91 devel" |
Peter Maydell | 0d185e6 | 2013-07-18 16:42:01 +0100 | [diff] [blame] | 3009 | else |
Stefan Weil | bbbf9bf | 2014-02-19 07:04:34 +0100 | [diff] [blame] | 3010 | vte="no" |
Anthony Liguori | a4ccabc | 2013-02-20 07:43:20 -0600 | [diff] [blame] | 3011 | fi |
| 3012 | fi |
| 3013 | |
| 3014 | ########################################## |
Michael R. Hines | 2da776d | 2013-07-22 10:01:54 -0400 | [diff] [blame] | 3015 | # RDMA needs OpenFabrics libraries |
| 3016 | if test "$rdma" != "no" ; then |
| 3017 | cat > $TMPC <<EOF |
| 3018 | #include <rdma/rdma_cma.h> |
| 3019 | int main(void) { return 0; } |
| 3020 | EOF |
Yuval Shaia | ef6d4cc | 2018-02-09 15:23:18 +0200 | [diff] [blame] | 3021 | rdma_libs="-lrdmacm -libverbs -libumad" |
Michael R. Hines | 2da776d | 2013-07-22 10:01:54 -0400 | [diff] [blame] | 3022 | if compile_prog "" "$rdma_libs" ; then |
| 3023 | rdma="yes" |
Michael R. Hines | 2da776d | 2013-07-22 10:01:54 -0400 | [diff] [blame] | 3024 | else |
| 3025 | if test "$rdma" = "yes" ; then |
| 3026 | error_exit \ |
Yuval Shaia | ef6d4cc | 2018-02-09 15:23:18 +0200 | [diff] [blame] | 3027 | " OpenFabrics librdmacm/libibverbs/libibumad not present." \ |
Michael R. Hines | 2da776d | 2013-07-22 10:01:54 -0400 | [diff] [blame] | 3028 | " Your options:" \ |
Yuval Shaia | ef6d4cc | 2018-02-09 15:23:18 +0200 | [diff] [blame] | 3029 | " (1) Fast: Install infiniband packages (devel) from your distro." \ |
Michael R. Hines | 2da776d | 2013-07-22 10:01:54 -0400 | [diff] [blame] | 3030 | " (2) Cleanest: Install libraries from www.openfabrics.org" \ |
| 3031 | " (3) Also: Install softiwarp if you don't have RDMA hardware" |
| 3032 | fi |
| 3033 | rdma="no" |
| 3034 | fi |
| 3035 | fi |
| 3036 | |
Marcel Apfelbaum | 21ab34c | 2018-08-16 18:16:37 +0300 | [diff] [blame] | 3037 | ########################################## |
| 3038 | # PVRDMA detection |
| 3039 | |
| 3040 | cat > $TMPC <<EOF && |
| 3041 | #include <sys/mman.h> |
| 3042 | |
| 3043 | int |
| 3044 | main(void) |
| 3045 | { |
| 3046 | char buf = 0; |
| 3047 | void *addr = &buf; |
| 3048 | addr = mremap(addr, 0, 1, MREMAP_MAYMOVE | MREMAP_FIXED); |
| 3049 | |
| 3050 | return 0; |
| 3051 | } |
| 3052 | EOF |
| 3053 | |
| 3054 | if test "$rdma" = "yes" ; then |
| 3055 | case "$pvrdma" in |
| 3056 | "") |
| 3057 | if compile_prog "" ""; then |
| 3058 | pvrdma="yes" |
| 3059 | else |
| 3060 | pvrdma="no" |
| 3061 | fi |
| 3062 | ;; |
| 3063 | "yes") |
| 3064 | if ! compile_prog "" ""; then |
| 3065 | error_exit "PVRDMA is not supported since mremap is not implemented" |
| 3066 | fi |
| 3067 | pvrdma="yes" |
| 3068 | ;; |
| 3069 | "no") |
| 3070 | pvrdma="no" |
| 3071 | ;; |
| 3072 | esac |
| 3073 | else |
| 3074 | if test "$pvrdma" = "yes" ; then |
| 3075 | error_exit "PVRDMA requires rdma suppport" |
| 3076 | fi |
| 3077 | pvrdma="no" |
| 3078 | fi |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 3079 | |
Yuval Shaia | ee10858 | 2019-08-18 16:21:06 +0300 | [diff] [blame] | 3080 | # Let's see if enhanced reg_mr is supported |
| 3081 | if test "$pvrdma" = "yes" ; then |
| 3082 | |
| 3083 | cat > $TMPC <<EOF && |
| 3084 | #include <infiniband/verbs.h> |
| 3085 | |
| 3086 | int |
| 3087 | main(void) |
| 3088 | { |
| 3089 | struct ibv_mr *mr; |
| 3090 | struct ibv_pd *pd = NULL; |
| 3091 | size_t length = 10; |
| 3092 | uint64_t iova = 0; |
| 3093 | int access = 0; |
| 3094 | void *addr = NULL; |
| 3095 | |
| 3096 | mr = ibv_reg_mr_iova(pd, addr, length, iova, access); |
| 3097 | |
| 3098 | ibv_dereg_mr(mr); |
| 3099 | |
| 3100 | return 0; |
| 3101 | } |
| 3102 | EOF |
| 3103 | if ! compile_prog "" "-libverbs"; then |
| 3104 | QEMU_CFLAGS="$QEMU_CFLAGS -DLEGACY_RDMA_REG_MR" |
| 3105 | fi |
| 3106 | fi |
| 3107 | |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 3108 | ########################################## |
Eric Blake | c1bb86c | 2016-12-02 13:48:54 -0600 | [diff] [blame] | 3109 | # xfsctl() probe, used for file-posix.c |
Christoph Hellwig | dce512d | 2010-12-17 11:41:15 +0100 | [diff] [blame] | 3110 | if test "$xfs" != "no" ; then |
| 3111 | cat > $TMPC << EOF |
Stefan Weil | ffc41d1 | 2011-12-17 09:27:36 +0100 | [diff] [blame] | 3112 | #include <stddef.h> /* NULL */ |
Christoph Hellwig | dce512d | 2010-12-17 11:41:15 +0100 | [diff] [blame] | 3113 | #include <xfs/xfs.h> |
| 3114 | int main(void) |
| 3115 | { |
| 3116 | xfsctl(NULL, 0, 0, NULL); |
| 3117 | return 0; |
| 3118 | } |
| 3119 | EOF |
| 3120 | if compile_prog "" "" ; then |
| 3121 | xfs="yes" |
| 3122 | else |
| 3123 | if test "$xfs" = "yes" ; then |
zhaolichang | e3a6e0d | 2020-09-17 15:50:20 +0800 | [diff] [blame] | 3124 | feature_not_found "xfs" "Install xfsprogs/xfslibs devel" |
Christoph Hellwig | dce512d | 2010-12-17 11:41:15 +0100 | [diff] [blame] | 3125 | fi |
| 3126 | xfs=no |
| 3127 | fi |
| 3128 | fi |
| 3129 | |
| 3130 | ########################################## |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 3131 | # vde libraries probe |
Juan Quintela | dfb278b | 2009-08-12 18:20:27 +0200 | [diff] [blame] | 3132 | if test "$vde" != "no" ; then |
Juan Quintela | 4baae0a | 2009-07-27 16:13:19 +0200 | [diff] [blame] | 3133 | vde_libs="-lvdeplug" |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 3134 | cat > $TMPC << EOF |
| 3135 | #include <libvdeplug.h> |
pbrook | 4a7f0e0 | 2008-09-07 16:42:53 +0000 | [diff] [blame] | 3136 | int main(void) |
| 3137 | { |
| 3138 | struct vde_open_args a = {0, 0, 0}; |
Peter Maydell | fea08e0 | 2012-07-18 15:10:25 +0100 | [diff] [blame] | 3139 | char s[] = ""; |
| 3140 | vde_open(s, s, &a); |
pbrook | 4a7f0e0 | 2008-09-07 16:42:53 +0000 | [diff] [blame] | 3141 | return 0; |
| 3142 | } |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 3143 | EOF |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 3144 | if compile_prog "" "$vde_libs" ; then |
Juan Quintela | 4baae0a | 2009-07-27 16:13:19 +0200 | [diff] [blame] | 3145 | vde=yes |
Juan Quintela | dfb278b | 2009-08-12 18:20:27 +0200 | [diff] [blame] | 3146 | else |
| 3147 | if test "$vde" = "yes" ; then |
Stewart Smith | 21684af | 2014-01-24 12:39:10 +1100 | [diff] [blame] | 3148 | feature_not_found "vde" "Install vde (Virtual Distributed Ethernet) devel" |
Juan Quintela | dfb278b | 2009-08-12 18:20:27 +0200 | [diff] [blame] | 3149 | fi |
| 3150 | vde=no |
Juan Quintela | 4baae0a | 2009-07-27 16:13:19 +0200 | [diff] [blame] | 3151 | fi |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 3152 | fi |
| 3153 | |
| 3154 | ########################################## |
Vincenzo Maffione | 0a985b3 | 2014-02-20 15:40:43 +0100 | [diff] [blame] | 3155 | # netmap support probe |
| 3156 | # Apart from looking for netmap headers, we make sure that the host API version |
| 3157 | # supports the netmap backend (>=11). The upper bound (15) is meant to simulate |
| 3158 | # a minor/major version number. Minor new features will be marked with values up |
| 3159 | # to 15, and if something happens that requires a change to the backend we will |
| 3160 | # move above 15, submit the backend fixes and modify this two bounds. |
Vincenzo Maffione | 5895213 | 2013-11-06 11:44:06 +0100 | [diff] [blame] | 3161 | if test "$netmap" != "no" ; then |
| 3162 | cat > $TMPC << EOF |
| 3163 | #include <inttypes.h> |
| 3164 | #include <net/if.h> |
| 3165 | #include <net/netmap.h> |
| 3166 | #include <net/netmap_user.h> |
Vincenzo Maffione | 0a985b3 | 2014-02-20 15:40:43 +0100 | [diff] [blame] | 3167 | #if (NETMAP_API < 11) || (NETMAP_API > 15) |
| 3168 | #error |
| 3169 | #endif |
Vincenzo Maffione | 5895213 | 2013-11-06 11:44:06 +0100 | [diff] [blame] | 3170 | int main(void) { return 0; } |
| 3171 | EOF |
| 3172 | if compile_prog "" "" ; then |
| 3173 | netmap=yes |
| 3174 | else |
| 3175 | if test "$netmap" = "yes" ; then |
| 3176 | feature_not_found "netmap" |
| 3177 | fi |
| 3178 | netmap=no |
| 3179 | fi |
| 3180 | fi |
| 3181 | |
| 3182 | ########################################## |
Joelle van Dyne | 422a5fd | 2021-01-25 17:24:56 -0800 | [diff] [blame] | 3183 | # detect CoreAudio |
| 3184 | if test "$coreaudio" != "no" ; then |
| 3185 | coreaudio_libs="-framework CoreAudio" |
| 3186 | cat > $TMPC << EOF |
| 3187 | #include <CoreAudio/CoreAudio.h> |
| 3188 | int main(void) |
| 3189 | { |
| 3190 | return (int)AudioGetCurrentHostTime(); |
| 3191 | } |
| 3192 | EOF |
| 3193 | if compile_prog "" "$coreaudio_libs" ; then |
| 3194 | coreaudio=yes |
| 3195 | else |
| 3196 | coreaudio=no |
| 3197 | fi |
| 3198 | fi |
| 3199 | |
| 3200 | ########################################## |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 3201 | # Sound support libraries probe |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 3202 | |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 3203 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/,/ /g') |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 3204 | for drv in $audio_drv_list; do |
| 3205 | case $drv in |
Gerd Hoffmann | e42975a | 2019-01-24 12:20:51 +0100 | [diff] [blame] | 3206 | alsa | try-alsa) |
Gerd Hoffmann | c80a867 | 2019-01-24 12:20:50 +0100 | [diff] [blame] | 3207 | if $pkg_config alsa --exists; then |
| 3208 | alsa_libs=$($pkg_config alsa --libs) |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 3209 | alsa_cflags=$($pkg_config alsa --cflags) |
| 3210 | alsa=yes |
Gerd Hoffmann | e42975a | 2019-01-24 12:20:51 +0100 | [diff] [blame] | 3211 | if test "$drv" = "try-alsa"; then |
| 3212 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-alsa/alsa/') |
| 3213 | fi |
Gerd Hoffmann | c80a867 | 2019-01-24 12:20:50 +0100 | [diff] [blame] | 3214 | else |
Gerd Hoffmann | e42975a | 2019-01-24 12:20:51 +0100 | [diff] [blame] | 3215 | if test "$drv" = "try-alsa"; then |
| 3216 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-alsa//') |
| 3217 | else |
| 3218 | error_exit "$drv check failed" \ |
| 3219 | "Make sure to have the $drv libs and headers installed." |
| 3220 | fi |
Gerd Hoffmann | c80a867 | 2019-01-24 12:20:50 +0100 | [diff] [blame] | 3221 | fi |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 3222 | ;; |
| 3223 | |
Gerd Hoffmann | e42975a | 2019-01-24 12:20:51 +0100 | [diff] [blame] | 3224 | pa | try-pa) |
Gerd Hoffmann | c80a867 | 2019-01-24 12:20:50 +0100 | [diff] [blame] | 3225 | if $pkg_config libpulse --exists; then |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 3226 | libpulse=yes |
Gerd Hoffmann | c80a867 | 2019-01-24 12:20:50 +0100 | [diff] [blame] | 3227 | pulse_libs=$($pkg_config libpulse --libs) |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 3228 | pulse_cflags=$($pkg_config libpulse --cflags) |
Gerd Hoffmann | e42975a | 2019-01-24 12:20:51 +0100 | [diff] [blame] | 3229 | if test "$drv" = "try-pa"; then |
| 3230 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-pa/pa/') |
| 3231 | fi |
Gerd Hoffmann | c80a867 | 2019-01-24 12:20:50 +0100 | [diff] [blame] | 3232 | else |
Gerd Hoffmann | e42975a | 2019-01-24 12:20:51 +0100 | [diff] [blame] | 3233 | if test "$drv" = "try-pa"; then |
| 3234 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-pa//') |
| 3235 | else |
| 3236 | error_exit "$drv check failed" \ |
| 3237 | "Make sure to have the $drv libs and headers installed." |
| 3238 | fi |
Gerd Hoffmann | c80a867 | 2019-01-24 12:20:50 +0100 | [diff] [blame] | 3239 | fi |
malc | b8e59f1 | 2008-07-02 21:03:08 +0000 | [diff] [blame] | 3240 | ;; |
| 3241 | |
Gerd Hoffmann | 373967b | 2017-03-20 10:05:43 +0100 | [diff] [blame] | 3242 | sdl) |
| 3243 | if test "$sdl" = "no"; then |
| 3244 | error_exit "sdl not found or disabled, can not use sdl audio driver" |
| 3245 | fi |
| 3246 | ;; |
| 3247 | |
Gerd Hoffmann | e42975a | 2019-01-24 12:20:51 +0100 | [diff] [blame] | 3248 | try-sdl) |
| 3249 | if test "$sdl" = "no"; then |
| 3250 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-sdl//') |
| 3251 | else |
| 3252 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-sdl/sdl/') |
| 3253 | fi |
| 3254 | ;; |
| 3255 | |
Joelle van Dyne | 422a5fd | 2021-01-25 17:24:56 -0800 | [diff] [blame] | 3256 | coreaudio | try-coreaudio) |
| 3257 | if test "$coreaudio" = "no"; then |
| 3258 | if test "$drv" = "try-coreaudio"; then |
| 3259 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-coreaudio//') |
| 3260 | else |
| 3261 | error_exit "$drv check failed" \ |
| 3262 | "Make sure to have the $drv is available." |
| 3263 | fi |
| 3264 | else |
Fam Zheng | b114991 | 2017-09-07 16:29:13 +0800 | [diff] [blame] | 3265 | coreaudio_libs="-framework CoreAudio" |
Joelle van Dyne | 422a5fd | 2021-01-25 17:24:56 -0800 | [diff] [blame] | 3266 | if test "$drv" = "try-coreaudio"; then |
| 3267 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-coreaudio/coreaudio/') |
| 3268 | fi |
| 3269 | fi |
Juan Quintela | 997e690 | 2009-08-03 14:46:29 +0200 | [diff] [blame] | 3270 | ;; |
| 3271 | |
Juan Quintela | a4bf678 | 2009-08-03 14:46:30 +0200 | [diff] [blame] | 3272 | dsound) |
Fam Zheng | b114991 | 2017-09-07 16:29:13 +0800 | [diff] [blame] | 3273 | dsound_libs="-lole32 -ldxguid" |
malc | d563163 | 2009-10-10 01:13:41 +0400 | [diff] [blame] | 3274 | audio_win_int="yes" |
Juan Quintela | a4bf678 | 2009-08-03 14:46:30 +0200 | [diff] [blame] | 3275 | ;; |
| 3276 | |
| 3277 | oss) |
Fam Zheng | b114991 | 2017-09-07 16:29:13 +0800 | [diff] [blame] | 3278 | oss_libs="$oss_lib" |
Juan Quintela | a4bf678 | 2009-08-03 14:46:30 +0200 | [diff] [blame] | 3279 | ;; |
| 3280 | |
Geoffrey McRae | 2e44570 | 2020-04-29 15:53:58 +1000 | [diff] [blame] | 3281 | jack | try-jack) |
| 3282 | if $pkg_config jack --exists; then |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 3283 | libjack=yes |
Geoffrey McRae | 2e44570 | 2020-04-29 15:53:58 +1000 | [diff] [blame] | 3284 | jack_libs=$($pkg_config jack --libs) |
| 3285 | if test "$drv" = "try-jack"; then |
| 3286 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-jack/jack/') |
| 3287 | fi |
| 3288 | else |
| 3289 | if test "$drv" = "try-jack"; then |
| 3290 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-jack//') |
| 3291 | else |
| 3292 | error_exit "$drv check failed" \ |
| 3293 | "Make sure to have the $drv libs and headers installed." |
| 3294 | fi |
| 3295 | fi |
| 3296 | ;; |
| 3297 | |
malc | e4c63a6 | 2008-07-19 16:15:16 +0000 | [diff] [blame] | 3298 | *) |
malc | 1c9b2a5 | 2008-07-19 16:57:30 +0000 | [diff] [blame] | 3299 | echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 3300 | error_exit "Unknown driver '$drv' selected" \ |
| 3301 | "Possible drivers are: $audio_possible_drivers" |
malc | e4c63a6 | 2008-07-19 16:15:16 +0000 | [diff] [blame] | 3302 | } |
| 3303 | ;; |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 3304 | esac |
| 3305 | done |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 3306 | |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 3307 | ########################################## |
Anthony Liguori | e18df14 | 2011-07-19 14:50:29 -0500 | [diff] [blame] | 3308 | # glib support probe |
Paolo Bonzini | a52d28a | 2012-04-05 13:01:54 +0200 | [diff] [blame] | 3309 | |
Daniel P. Berrangé | b4c6036 | 2021-05-14 13:04:13 +0100 | [diff] [blame] | 3310 | glib_req_ver=2.56 |
Paolo Bonzini | aa0d1f4 | 2014-02-25 17:36:55 +0100 | [diff] [blame] | 3311 | glib_modules=gthread-2.0 |
| 3312 | if test "$modules" = yes; then |
Gerd Hoffmann | a88afc6 | 2018-03-08 09:53:00 +0100 | [diff] [blame] | 3313 | glib_modules="$glib_modules gmodule-export-2.0" |
Paolo Bonzini | aa0d1f4 | 2014-02-25 17:36:55 +0100 | [diff] [blame] | 3314 | fi |
Emilio G. Cota | 54cb65d | 2017-08-30 18:39:53 -0400 | [diff] [blame] | 3315 | if test "$plugins" = yes; then |
| 3316 | glib_modules="$glib_modules gmodule-2.0" |
| 3317 | fi |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 3318 | |
Paolo Bonzini | aa0d1f4 | 2014-02-25 17:36:55 +0100 | [diff] [blame] | 3319 | for i in $glib_modules; do |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 3320 | if $pkg_config --atleast-version=$glib_req_ver $i; then |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 3321 | glib_cflags=$($pkg_config --cflags $i) |
| 3322 | glib_libs=$($pkg_config --libs $i) |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 3323 | else |
| 3324 | error_exit "glib-$glib_req_ver $i is required to compile QEMU" |
| 3325 | fi |
| 3326 | done |
| 3327 | |
Paolo Bonzini | 215b0c2 | 2020-09-01 08:41:17 -0400 | [diff] [blame] | 3328 | # This workaround is required due to a bug in pkg-config file for glib as it |
| 3329 | # doesn't define GLIB_STATIC_COMPILATION for pkg-config --static |
| 3330 | |
| 3331 | if test "$static" = yes && test "$mingw32" = yes; then |
| 3332 | glib_cflags="-DGLIB_STATIC_COMPILATION $glib_cflags" |
| 3333 | fi |
| 3334 | |
Denis Plotnikov | 20cf7b8 | 2021-03-12 18:14:40 +0300 | [diff] [blame] | 3335 | if ! test "$gio" = "no"; then |
| 3336 | pass=no |
| 3337 | if $pkg_config --atleast-version=$glib_req_ver gio-2.0; then |
| 3338 | gio_cflags=$($pkg_config --cflags gio-2.0) |
| 3339 | gio_libs=$($pkg_config --libs gio-2.0) |
| 3340 | gdbus_codegen=$($pkg_config --variable=gdbus_codegen gio-2.0) |
Paolo Bonzini | 5ecfb76 | 2021-05-05 10:15:34 -0400 | [diff] [blame] | 3341 | if ! has "$gdbus_codegen"; then |
Denis Plotnikov | 20cf7b8 | 2021-03-12 18:14:40 +0300 | [diff] [blame] | 3342 | gdbus_codegen= |
| 3343 | fi |
| 3344 | # Check that the libraries actually work -- Ubuntu 18.04 ships |
| 3345 | # with pkg-config --static --libs data for gio-2.0 that is missing |
| 3346 | # -lblkid and will give a link error. |
| 3347 | cat > $TMPC <<EOF |
Peter Maydell | 13ceae6 | 2020-11-17 12:56:33 +0000 | [diff] [blame] | 3348 | #include <gio/gio.h> |
| 3349 | int main(void) |
| 3350 | { |
| 3351 | g_dbus_proxy_new_sync(0, 0, 0, 0, 0, 0, 0, 0); |
| 3352 | return 0; |
| 3353 | } |
| 3354 | EOF |
Denis Plotnikov | 20cf7b8 | 2021-03-12 18:14:40 +0300 | [diff] [blame] | 3355 | if compile_prog "$gio_cflags" "$gio_libs" ; then |
| 3356 | pass=yes |
| 3357 | else |
| 3358 | pass=no |
| 3359 | fi |
Marc-André Lureau | f876b76 | 2019-02-21 12:07:00 +0100 | [diff] [blame] | 3360 | |
Denis Plotnikov | 20cf7b8 | 2021-03-12 18:14:40 +0300 | [diff] [blame] | 3361 | if test "$pass" = "yes" && |
| 3362 | $pkg_config --atleast-version=$glib_req_ver gio-unix-2.0; then |
| 3363 | gio_cflags="$gio_cflags $($pkg_config --cflags gio-unix-2.0)" |
| 3364 | gio_libs="$gio_libs $($pkg_config --libs gio-unix-2.0)" |
| 3365 | fi |
| 3366 | fi |
| 3367 | |
| 3368 | if test "$pass" = "no"; then |
| 3369 | if test "$gio" = "yes"; then |
| 3370 | feature_not_found "gio" "Install libgio >= 2.0" |
| 3371 | else |
| 3372 | gio=no |
| 3373 | fi |
| 3374 | else |
| 3375 | gio=yes |
| 3376 | fi |
Marc-André Lureau | 25a97a5 | 2019-09-27 11:34:42 +0400 | [diff] [blame] | 3377 | fi |
| 3378 | |
Daniel P. Berrange | 977a82a | 2016-01-27 09:00:45 +0000 | [diff] [blame] | 3379 | # Sanity check that the current size_t matches the |
| 3380 | # size that glib thinks it should be. This catches |
| 3381 | # problems on multi-arch where people try to build |
| 3382 | # 32-bit QEMU while pointing at 64-bit glib headers |
| 3383 | cat > $TMPC <<EOF |
| 3384 | #include <glib.h> |
| 3385 | #include <unistd.h> |
| 3386 | |
| 3387 | #define QEMU_BUILD_BUG_ON(x) \ |
| 3388 | typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused)); |
| 3389 | |
| 3390 | int main(void) { |
| 3391 | QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T); |
| 3392 | return 0; |
| 3393 | } |
| 3394 | EOF |
| 3395 | |
Paolo Bonzini | 215b0c2 | 2020-09-01 08:41:17 -0400 | [diff] [blame] | 3396 | if ! compile_prog "$glib_cflags" "$glib_libs" ; then |
Daniel P. Berrange | 977a82a | 2016-01-27 09:00:45 +0000 | [diff] [blame] | 3397 | error_exit "sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T."\ |
| 3398 | "You probably need to set PKG_CONFIG_LIBDIR"\ |
| 3399 | "to point to the right pkg-config files for your"\ |
| 3400 | "build target" |
| 3401 | fi |
| 3402 | |
John Snow | bbbf2e0 | 2015-03-25 18:57:38 -0400 | [diff] [blame] | 3403 | # Silence clang 3.5.0 warnings about glib attribute __alloc_size__ usage |
| 3404 | cat > $TMPC << EOF |
| 3405 | #include <glib.h> |
| 3406 | int main(void) { return 0; } |
| 3407 | EOF |
| 3408 | if ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then |
| 3409 | if cc_has_warning_flag "-Wno-unknown-attributes"; then |
| 3410 | glib_cflags="-Wno-unknown-attributes $glib_cflags" |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 3411 | CONFIGURE_CFLAGS="-Wno-unknown-attributes $CONFIGURE_CFLAGS" |
John Snow | bbbf2e0 | 2015-03-25 18:57:38 -0400 | [diff] [blame] | 3412 | fi |
| 3413 | fi |
| 3414 | |
Eric Blake | 9bda600 | 2020-03-17 12:55:34 -0500 | [diff] [blame] | 3415 | # Silence clang warnings triggered by glib < 2.57.2 |
| 3416 | cat > $TMPC << EOF |
| 3417 | #include <glib.h> |
| 3418 | typedef struct Foo { |
| 3419 | int i; |
| 3420 | } Foo; |
| 3421 | static void foo_free(Foo *f) |
| 3422 | { |
| 3423 | g_free(f); |
| 3424 | } |
| 3425 | G_DEFINE_AUTOPTR_CLEANUP_FUNC(Foo, foo_free); |
| 3426 | int main(void) { return 0; } |
| 3427 | EOF |
| 3428 | if ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then |
| 3429 | if cc_has_warning_flag "-Wno-unused-function"; then |
| 3430 | glib_cflags="$glib_cflags -Wno-unused-function" |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 3431 | CONFIGURE_CFLAGS="$CONFIGURE_CFLAGS -Wno-unused-function" |
Eric Blake | 9bda600 | 2020-03-17 12:55:34 -0500 | [diff] [blame] | 3432 | fi |
| 3433 | fi |
| 3434 | |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 3435 | ########################################## |
| 3436 | # SHA command probe for modules |
| 3437 | if test "$modules" = yes; then |
| 3438 | shacmd_probe="sha1sum sha1 shasum" |
| 3439 | for c in $shacmd_probe; do |
Fam Zheng | 8ccefb9 | 2014-12-04 14:18:16 +0800 | [diff] [blame] | 3440 | if has $c; then |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 3441 | shacmd="$c" |
| 3442 | break |
| 3443 | fi |
| 3444 | done |
| 3445 | if test "$shacmd" = ""; then |
| 3446 | error_exit "one of the checksum commands is required to enable modules: $shacmd_probe" |
| 3447 | fi |
Anthony Liguori | e18df14 | 2011-07-19 14:50:29 -0500 | [diff] [blame] | 3448 | fi |
| 3449 | |
| 3450 | ########################################## |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 3451 | # pthread probe |
Brad | 4b29ec4 | 2011-08-07 20:02:11 -0400 | [diff] [blame] | 3452 | PTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2" |
aliguori | 3c529d9 | 2008-12-12 16:41:40 +0000 | [diff] [blame] | 3453 | |
Christoph Hellwig | 4dd75c7 | 2009-08-10 23:39:39 +0200 | [diff] [blame] | 3454 | pthread=no |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 3455 | cat > $TMPC << EOF |
aliguori | 3c529d9 | 2008-12-12 16:41:40 +0000 | [diff] [blame] | 3456 | #include <pthread.h> |
Stefan Weil | 7a42bbe | 2011-12-17 09:27:32 +0100 | [diff] [blame] | 3457 | static void *f(void *p) { return NULL; } |
| 3458 | int main(void) { |
| 3459 | pthread_t thread; |
| 3460 | pthread_create(&thread, 0, f, 0); |
| 3461 | return 0; |
| 3462 | } |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 3463 | EOF |
Andreas Färber | bd00d53 | 2010-09-20 00:50:44 +0200 | [diff] [blame] | 3464 | if compile_prog "" "" ; then |
| 3465 | pthread=yes |
| 3466 | else |
| 3467 | for pthread_lib in $PTHREADLIBS_LIST; do |
| 3468 | if compile_prog "" "$pthread_lib" ; then |
| 3469 | pthread=yes |
Andreas Färber | bd00d53 | 2010-09-20 00:50:44 +0200 | [diff] [blame] | 3470 | break |
| 3471 | fi |
| 3472 | done |
| 3473 | fi |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 3474 | |
Eric Blake | e633a5c | 2019-02-04 20:39:37 -0600 | [diff] [blame] | 3475 | if test "$mingw32" != yes && test "$pthread" = no; then |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 3476 | error_exit "pthread check failed" \ |
| 3477 | "Make sure to have the pthread libs and headers installed." |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 3478 | fi |
| 3479 | |
Roman Bolshakov | 479a574 | 2018-12-17 23:26:01 +0300 | [diff] [blame] | 3480 | # check for pthread_setname_np with thread id |
| 3481 | pthread_setname_np_w_tid=no |
Dr. David Alan Gilbert | 5c31207 | 2014-03-12 11:48:18 +0000 | [diff] [blame] | 3482 | cat > $TMPC << EOF |
| 3483 | #include <pthread.h> |
| 3484 | |
| 3485 | static void *f(void *p) { return NULL; } |
| 3486 | int main(void) |
| 3487 | { |
| 3488 | pthread_t thread; |
| 3489 | pthread_create(&thread, 0, f, 0); |
| 3490 | pthread_setname_np(thread, "QEMU"); |
| 3491 | return 0; |
| 3492 | } |
| 3493 | EOF |
| 3494 | if compile_prog "" "$pthread_lib" ; then |
Roman Bolshakov | 479a574 | 2018-12-17 23:26:01 +0300 | [diff] [blame] | 3495 | pthread_setname_np_w_tid=yes |
| 3496 | fi |
| 3497 | |
| 3498 | # check for pthread_setname_np without thread id |
| 3499 | pthread_setname_np_wo_tid=no |
| 3500 | cat > $TMPC << EOF |
| 3501 | #include <pthread.h> |
| 3502 | |
Thomas Huth | 12a9b8d | 2020-07-16 07:12:22 +0200 | [diff] [blame] | 3503 | static void *f(void *p) { pthread_setname_np("QEMU"); return NULL; } |
Roman Bolshakov | 479a574 | 2018-12-17 23:26:01 +0300 | [diff] [blame] | 3504 | int main(void) |
| 3505 | { |
| 3506 | pthread_t thread; |
| 3507 | pthread_create(&thread, 0, f, 0); |
| 3508 | return 0; |
| 3509 | } |
| 3510 | EOF |
| 3511 | if compile_prog "" "$pthread_lib" ; then |
| 3512 | pthread_setname_np_wo_tid=yes |
Dr. David Alan Gilbert | 5c31207 | 2014-03-12 11:48:18 +0000 | [diff] [blame] | 3513 | fi |
| 3514 | |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 3515 | ########################################## |
Pino Toscano | b10d49d | 2019-06-20 22:08:40 +0200 | [diff] [blame] | 3516 | # libssh probe |
| 3517 | if test "$libssh" != "no" ; then |
Thomas Huth | b4c10fc | 2021-05-19 17:58:59 +0200 | [diff] [blame] | 3518 | if $pkg_config --exists "libssh >= 0.8.7"; then |
Pino Toscano | b10d49d | 2019-06-20 22:08:40 +0200 | [diff] [blame] | 3519 | libssh_cflags=$($pkg_config libssh --cflags) |
| 3520 | libssh_libs=$($pkg_config libssh --libs) |
| 3521 | libssh=yes |
Richard W.M. Jones | 0a12ec8 | 2013-04-09 15:30:53 +0100 | [diff] [blame] | 3522 | else |
Pino Toscano | b10d49d | 2019-06-20 22:08:40 +0200 | [diff] [blame] | 3523 | if test "$libssh" = "yes" ; then |
| 3524 | error_exit "libssh required for --enable-libssh" |
Richard W.M. Jones | 0a12ec8 | 2013-04-09 15:30:53 +0100 | [diff] [blame] | 3525 | fi |
Pino Toscano | b10d49d | 2019-06-20 22:08:40 +0200 | [diff] [blame] | 3526 | libssh=no |
Richard W.M. Jones | 0a12ec8 | 2013-04-09 15:30:53 +0100 | [diff] [blame] | 3527 | fi |
| 3528 | fi |
| 3529 | |
| 3530 | ########################################## |
Christoph Hellwig | 5c6c3a6 | 2009-08-20 16:58:35 +0200 | [diff] [blame] | 3531 | # linux-aio probe |
Christoph Hellwig | 5c6c3a6 | 2009-08-20 16:58:35 +0200 | [diff] [blame] | 3532 | |
| 3533 | if test "$linux_aio" != "no" ; then |
| 3534 | cat > $TMPC <<EOF |
| 3535 | #include <libaio.h> |
| 3536 | #include <sys/eventfd.h> |
Scott Wood | 832ce9c | 2010-10-05 14:28:17 -0500 | [diff] [blame] | 3537 | #include <stddef.h> |
Christoph Hellwig | 5c6c3a6 | 2009-08-20 16:58:35 +0200 | [diff] [blame] | 3538 | int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; } |
| 3539 | EOF |
| 3540 | if compile_prog "" "-laio" ; then |
| 3541 | linux_aio=yes |
Christoph Hellwig | 5c6c3a6 | 2009-08-20 16:58:35 +0200 | [diff] [blame] | 3542 | else |
| 3543 | if test "$linux_aio" = "yes" ; then |
Stewart Smith | 21684af | 2014-01-24 12:39:10 +1100 | [diff] [blame] | 3544 | feature_not_found "linux AIO" "Install libaio devel" |
Christoph Hellwig | 5c6c3a6 | 2009-08-20 16:58:35 +0200 | [diff] [blame] | 3545 | fi |
Luiz Capitulino | 3cfcae3 | 2009-08-31 13:18:12 -0300 | [diff] [blame] | 3546 | linux_aio=no |
Christoph Hellwig | 5c6c3a6 | 2009-08-20 16:58:35 +0200 | [diff] [blame] | 3547 | fi |
| 3548 | fi |
Aarushi Mehta | c10dd85 | 2020-01-20 14:18:44 +0000 | [diff] [blame] | 3549 | ########################################## |
| 3550 | # linux-io-uring probe |
| 3551 | |
| 3552 | if test "$linux_io_uring" != "no" ; then |
| 3553 | if $pkg_config liburing; then |
| 3554 | linux_io_uring_cflags=$($pkg_config --cflags liburing) |
| 3555 | linux_io_uring_libs=$($pkg_config --libs liburing) |
| 3556 | linux_io_uring=yes |
| 3557 | else |
| 3558 | if test "$linux_io_uring" = "yes" ; then |
| 3559 | feature_not_found "linux io_uring" "Install liburing devel" |
| 3560 | fi |
| 3561 | linux_io_uring=no |
| 3562 | fi |
| 3563 | fi |
Christoph Hellwig | 5c6c3a6 | 2009-08-20 16:58:35 +0200 | [diff] [blame] | 3564 | |
| 3565 | ########################################## |
Paolo Bonzini | 7aaa6a1 | 2019-01-23 14:56:07 +0800 | [diff] [blame] | 3566 | # TPM emulation is only on POSIX |
Paolo Bonzini | 3b8acc1 | 2013-03-18 16:37:50 +0100 | [diff] [blame] | 3567 | |
Paolo Bonzini | 7aaa6a1 | 2019-01-23 14:56:07 +0800 | [diff] [blame] | 3568 | if test "$tpm" = ""; then |
| 3569 | if test "$mingw32" = "yes"; then |
| 3570 | tpm=no |
| 3571 | else |
| 3572 | tpm=yes |
| 3573 | fi |
| 3574 | elif test "$tpm" = "yes"; then |
| 3575 | if test "$mingw32" = "yes" ; then |
| 3576 | error_exit "TPM emulation only available on POSIX systems" |
| 3577 | fi |
Paolo Bonzini | 3b8acc1 | 2013-03-18 16:37:50 +0100 | [diff] [blame] | 3578 | fi |
| 3579 | |
| 3580 | ########################################## |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 3581 | # iovec probe |
| 3582 | cat > $TMPC <<EOF |
blueswir1 | db34f0b | 2009-01-14 18:03:53 +0000 | [diff] [blame] | 3583 | #include <sys/types.h> |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 3584 | #include <sys/uio.h> |
blueswir1 | db34f0b | 2009-01-14 18:03:53 +0000 | [diff] [blame] | 3585 | #include <unistd.h> |
Stefan Weil | f91f9be | 2011-12-17 09:27:33 +0100 | [diff] [blame] | 3586 | int main(void) { return sizeof(struct iovec); } |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 3587 | EOF |
| 3588 | iovec=no |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 3589 | if compile_prog "" "" ; then |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 3590 | iovec=yes |
| 3591 | fi |
| 3592 | |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame] | 3593 | ########################################## |
| 3594 | # fdt probe |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 3595 | |
| 3596 | case "$fdt" in |
| 3597 | auto | enabled | internal) |
| 3598 | # Simpler to always update submodule, even if not needed. |
Paolo Bonzini | 2d652f2 | 2021-05-12 09:21:56 +0200 | [diff] [blame] | 3599 | git_submodules="${git_submodules} dtc" |
Peter Maydell | e169e1e | 2013-05-24 16:26:54 +0100 | [diff] [blame] | 3600 | ;; |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 3601 | esac |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame] | 3602 | |
Michael Walle | 20ff075 | 2011-03-07 23:32:39 +0100 | [diff] [blame] | 3603 | ########################################## |
Markus Armbruster | 9d49bcf | 2021-05-03 10:40:33 +0200 | [diff] [blame] | 3604 | # opengl probe (for sdl2, gtk) |
Gerd Hoffmann | b1546f3 | 2015-03-16 10:03:53 +0100 | [diff] [blame] | 3605 | |
Marc-André Lureau | d52c454 | 2019-05-24 15:09:42 +0200 | [diff] [blame] | 3606 | gbm="no" |
| 3607 | if $pkg_config gbm; then |
| 3608 | gbm_cflags="$($pkg_config --cflags gbm)" |
| 3609 | gbm_libs="$($pkg_config --libs gbm)" |
| 3610 | gbm="yes" |
| 3611 | fi |
| 3612 | |
Gerd Hoffmann | da076ff | 2014-11-20 09:49:44 +0100 | [diff] [blame] | 3613 | if test "$opengl" != "no" ; then |
Akihiko Odaki | bc6a356 | 2021-02-23 15:03:07 +0900 | [diff] [blame] | 3614 | epoxy=no |
| 3615 | if $pkg_config epoxy; then |
| 3616 | cat > $TMPC << EOF |
| 3617 | #include <epoxy/egl.h> |
| 3618 | int main(void) { return 0; } |
| 3619 | EOF |
| 3620 | if compile_prog "" "" ; then |
| 3621 | epoxy=yes |
| 3622 | fi |
| 3623 | fi |
| 3624 | |
| 3625 | if test "$epoxy" = "yes" ; then |
| 3626 | opengl_cflags="$($pkg_config --cflags epoxy)" |
| 3627 | opengl_libs="$($pkg_config --libs epoxy)" |
Gerd Hoffmann | da076ff | 2014-11-20 09:49:44 +0100 | [diff] [blame] | 3628 | opengl=yes |
Michael Walle | 20ff075 | 2011-03-07 23:32:39 +0100 | [diff] [blame] | 3629 | else |
Gerd Hoffmann | da076ff | 2014-11-20 09:49:44 +0100 | [diff] [blame] | 3630 | if test "$opengl" = "yes" ; then |
Akihiko Odaki | bc6a356 | 2021-02-23 15:03:07 +0900 | [diff] [blame] | 3631 | feature_not_found "opengl" "Please install epoxy with EGL" |
Michael Walle | 20ff075 | 2011-03-07 23:32:39 +0100 | [diff] [blame] | 3632 | fi |
Jeremy White | f676c67 | 2015-01-09 13:08:49 -0600 | [diff] [blame] | 3633 | opengl_cflags="" |
Gerd Hoffmann | da076ff | 2014-11-20 09:49:44 +0100 | [diff] [blame] | 3634 | opengl_libs="" |
| 3635 | opengl=no |
Michael Walle | 20ff075 | 2011-03-07 23:32:39 +0100 | [diff] [blame] | 3636 | fi |
| 3637 | fi |
| 3638 | |
Klim Kireev | ed279a0 | 2018-01-12 12:01:19 +0300 | [diff] [blame] | 3639 | ########################################## |
| 3640 | # libxml2 probe |
| 3641 | if test "$libxml2" != "no" ; then |
| 3642 | if $pkg_config --exists libxml-2.0; then |
| 3643 | libxml2="yes" |
| 3644 | libxml2_cflags=$($pkg_config --cflags libxml-2.0) |
| 3645 | libxml2_libs=$($pkg_config --libs libxml-2.0) |
| 3646 | else |
| 3647 | if test "$libxml2" = "yes"; then |
| 3648 | feature_not_found "libxml2" "Install libxml2 devel" |
| 3649 | fi |
| 3650 | libxml2="no" |
| 3651 | fi |
| 3652 | fi |
Chrysostomos Nanakos | c9a12e7 | 2014-08-04 17:35:32 +0300 | [diff] [blame] | 3653 | |
aurel32 | 39386ac | 2009-04-15 19:48:17 +0000 | [diff] [blame] | 3654 | # Check for inotify functions when we are building linux-user |
aurel32 | 3b3f24a | 2009-04-15 16:12:13 +0000 | [diff] [blame] | 3655 | # emulator. This is done because older glibc versions don't |
| 3656 | # have syscall stubs for these implemented. In that case we |
| 3657 | # don't provide them even if kernel supports them. |
| 3658 | # |
| 3659 | inotify=no |
Riku Voipio | 67ba57f | 2009-06-29 17:26:11 +0300 | [diff] [blame] | 3660 | cat > $TMPC << EOF |
aurel32 | 3b3f24a | 2009-04-15 16:12:13 +0000 | [diff] [blame] | 3661 | #include <sys/inotify.h> |
| 3662 | |
| 3663 | int |
| 3664 | main(void) |
| 3665 | { |
| 3666 | /* try to start inotify */ |
aurel32 | 8690e42 | 2009-04-17 13:50:32 +0000 | [diff] [blame] | 3667 | return inotify_init(); |
aurel32 | 3b3f24a | 2009-04-15 16:12:13 +0000 | [diff] [blame] | 3668 | } |
| 3669 | EOF |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 3670 | if compile_prog "" "" ; then |
Riku Voipio | 67ba57f | 2009-06-29 17:26:11 +0300 | [diff] [blame] | 3671 | inotify=yes |
aurel32 | 3b3f24a | 2009-04-15 16:12:13 +0000 | [diff] [blame] | 3672 | fi |
| 3673 | |
Riku Voipio | c05c7a7 | 2010-03-26 15:25:11 +0000 | [diff] [blame] | 3674 | inotify1=no |
| 3675 | cat > $TMPC << EOF |
| 3676 | #include <sys/inotify.h> |
| 3677 | |
| 3678 | int |
| 3679 | main(void) |
| 3680 | { |
| 3681 | /* try to start inotify */ |
| 3682 | return inotify_init1(0); |
| 3683 | } |
| 3684 | EOF |
| 3685 | if compile_prog "" "" ; then |
| 3686 | inotify1=yes |
| 3687 | fi |
| 3688 | |
Riku Voipio | 099d6b0 | 2009-05-05 12:10:04 +0300 | [diff] [blame] | 3689 | # check if pipe2 is there |
| 3690 | pipe2=no |
| 3691 | cat > $TMPC << EOF |
Riku Voipio | 099d6b0 | 2009-05-05 12:10:04 +0300 | [diff] [blame] | 3692 | #include <unistd.h> |
| 3693 | #include <fcntl.h> |
| 3694 | |
| 3695 | int main(void) |
| 3696 | { |
| 3697 | int pipefd[2]; |
Bruce Rogers | 9bca816 | 2012-08-20 12:45:08 -0600 | [diff] [blame] | 3698 | return pipe2(pipefd, O_CLOEXEC); |
Riku Voipio | 099d6b0 | 2009-05-05 12:10:04 +0300 | [diff] [blame] | 3699 | } |
| 3700 | EOF |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 3701 | if compile_prog "" "" ; then |
Riku Voipio | 099d6b0 | 2009-05-05 12:10:04 +0300 | [diff] [blame] | 3702 | pipe2=yes |
| 3703 | fi |
| 3704 | |
Kevin Wolf | 40ff6d7 | 2009-12-02 12:24:42 +0100 | [diff] [blame] | 3705 | # check if accept4 is there |
| 3706 | accept4=no |
| 3707 | cat > $TMPC << EOF |
Kevin Wolf | 40ff6d7 | 2009-12-02 12:24:42 +0100 | [diff] [blame] | 3708 | #include <sys/socket.h> |
| 3709 | #include <stddef.h> |
| 3710 | |
| 3711 | int main(void) |
| 3712 | { |
| 3713 | accept4(0, NULL, NULL, SOCK_CLOEXEC); |
| 3714 | return 0; |
| 3715 | } |
| 3716 | EOF |
| 3717 | if compile_prog "" "" ; then |
| 3718 | accept4=yes |
| 3719 | fi |
| 3720 | |
vibisreenivasan | 3ce34df | 2009-05-16 18:32:41 +0530 | [diff] [blame] | 3721 | # check if tee/splice is there. vmsplice was added same time. |
| 3722 | splice=no |
| 3723 | cat > $TMPC << EOF |
vibisreenivasan | 3ce34df | 2009-05-16 18:32:41 +0530 | [diff] [blame] | 3724 | #include <unistd.h> |
| 3725 | #include <fcntl.h> |
| 3726 | #include <limits.h> |
| 3727 | |
| 3728 | int main(void) |
| 3729 | { |
Stefan Weil | 66ea0f2 | 2011-12-17 09:27:35 +0100 | [diff] [blame] | 3730 | int len, fd = 0; |
vibisreenivasan | 3ce34df | 2009-05-16 18:32:41 +0530 | [diff] [blame] | 3731 | len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK); |
| 3732 | splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE); |
| 3733 | return 0; |
| 3734 | } |
| 3735 | EOF |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 3736 | if compile_prog "" "" ; then |
vibisreenivasan | 3ce34df | 2009-05-16 18:32:41 +0530 | [diff] [blame] | 3737 | splice=yes |
| 3738 | fi |
| 3739 | |
Marcelo Tosatti | dcc38d1 | 2010-10-11 15:31:15 -0300 | [diff] [blame] | 3740 | ########################################## |
Wanlong Gao | a99d57b | 2014-05-14 17:43:28 +0800 | [diff] [blame] | 3741 | # libnuma probe |
| 3742 | |
| 3743 | if test "$numa" != "no" ; then |
| 3744 | cat > $TMPC << EOF |
| 3745 | #include <numa.h> |
| 3746 | int main(void) { return numa_available(); } |
| 3747 | EOF |
| 3748 | |
| 3749 | if compile_prog "" "-lnuma" ; then |
| 3750 | numa=yes |
Marc-André Lureau | ab31805 | 2019-07-24 19:23:16 +0400 | [diff] [blame] | 3751 | numa_libs="-lnuma" |
Wanlong Gao | a99d57b | 2014-05-14 17:43:28 +0800 | [diff] [blame] | 3752 | else |
| 3753 | if test "$numa" = "yes" ; then |
| 3754 | feature_not_found "numa" "install numactl devel" |
| 3755 | fi |
| 3756 | numa=no |
| 3757 | fi |
| 3758 | fi |
| 3759 | |
Paolo Bonzini | aa08796 | 2020-09-01 11:15:30 -0400 | [diff] [blame] | 3760 | malloc=system |
Alexandre Derumier | 7b01cb9 | 2015-06-19 12:56:58 +0200 | [diff] [blame] | 3761 | if test "$tcmalloc" = "yes" && test "$jemalloc" = "yes" ; then |
| 3762 | echo "ERROR: tcmalloc && jemalloc can't be used at the same time" |
| 3763 | exit 1 |
Paolo Bonzini | aa08796 | 2020-09-01 11:15:30 -0400 | [diff] [blame] | 3764 | elif test "$tcmalloc" = "yes" ; then |
| 3765 | malloc=tcmalloc |
| 3766 | elif test "$jemalloc" = "yes" ; then |
| 3767 | malloc=jemalloc |
Alexandre Derumier | 7b01cb9 | 2015-06-19 12:56:58 +0200 | [diff] [blame] | 3768 | fi |
| 3769 | |
| 3770 | ########################################## |
Marcelo Tosatti | dcc38d1 | 2010-10-11 15:31:15 -0300 | [diff] [blame] | 3771 | # signalfd probe |
| 3772 | signalfd="no" |
| 3773 | cat > $TMPC << EOF |
Marcelo Tosatti | dcc38d1 | 2010-10-11 15:31:15 -0300 | [diff] [blame] | 3774 | #include <unistd.h> |
| 3775 | #include <sys/syscall.h> |
| 3776 | #include <signal.h> |
| 3777 | int main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); } |
| 3778 | EOF |
| 3779 | |
| 3780 | if compile_prog "" "" ; then |
| 3781 | signalfd=yes |
| 3782 | fi |
| 3783 | |
Richard W.M. Jones | d339d76 | 2019-01-18 10:11:14 +0000 | [diff] [blame] | 3784 | # check if optreset global is declared by <getopt.h> |
| 3785 | optreset="no" |
| 3786 | cat > $TMPC << EOF |
| 3787 | #include <getopt.h> |
| 3788 | int main(void) { return optreset; } |
| 3789 | EOF |
| 3790 | |
| 3791 | if compile_prog "" "" ; then |
| 3792 | optreset=yes |
| 3793 | fi |
| 3794 | |
Riku Voipio | c2882b9 | 2009-08-12 15:08:24 +0300 | [diff] [blame] | 3795 | # check if eventfd is supported |
| 3796 | eventfd=no |
| 3797 | cat > $TMPC << EOF |
| 3798 | #include <sys/eventfd.h> |
| 3799 | |
| 3800 | int main(void) |
| 3801 | { |
Stefan Weil | 55cc7f3 | 2011-12-17 09:27:37 +0100 | [diff] [blame] | 3802 | return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); |
Riku Voipio | c2882b9 | 2009-08-12 15:08:24 +0300 | [diff] [blame] | 3803 | } |
| 3804 | EOF |
| 3805 | if compile_prog "" "" ; then |
| 3806 | eventfd=yes |
| 3807 | fi |
| 3808 | |
Marc-André Lureau | 751bcc3 | 2015-10-09 17:17:16 +0200 | [diff] [blame] | 3809 | # check if memfd is supported |
| 3810 | memfd=no |
| 3811 | cat > $TMPC << EOF |
Paolo Bonzini | 75e5b70 | 2017-11-28 11:51:27 +0100 | [diff] [blame] | 3812 | #include <sys/mman.h> |
Marc-André Lureau | 751bcc3 | 2015-10-09 17:17:16 +0200 | [diff] [blame] | 3813 | |
| 3814 | int main(void) |
| 3815 | { |
| 3816 | return memfd_create("foo", MFD_ALLOW_SEALING); |
| 3817 | } |
| 3818 | EOF |
| 3819 | if compile_prog "" "" ; then |
| 3820 | memfd=yes |
| 3821 | fi |
| 3822 | |
Cortland Tölva | 955727d | 2018-10-08 09:35:19 -0700 | [diff] [blame] | 3823 | # check for usbfs |
| 3824 | have_usbfs=no |
| 3825 | if test "$linux_user" = "yes"; then |
Thomas Petazzoni | 96566d0 | 2019-02-13 22:18:27 +0100 | [diff] [blame] | 3826 | cat > $TMPC << EOF |
| 3827 | #include <linux/usbdevice_fs.h> |
| 3828 | |
| 3829 | #ifndef USBDEVFS_GET_CAPABILITIES |
| 3830 | #error "USBDEVFS_GET_CAPABILITIES undefined" |
| 3831 | #endif |
| 3832 | |
| 3833 | #ifndef USBDEVFS_DISCONNECT_CLAIM |
| 3834 | #error "USBDEVFS_DISCONNECT_CLAIM undefined" |
| 3835 | #endif |
| 3836 | |
| 3837 | int main(void) |
| 3838 | { |
| 3839 | return 0; |
| 3840 | } |
| 3841 | EOF |
| 3842 | if compile_prog "" ""; then |
Cortland Tölva | 955727d | 2018-10-08 09:35:19 -0700 | [diff] [blame] | 3843 | have_usbfs=yes |
| 3844 | fi |
Cortland Tölva | 955727d | 2018-10-08 09:35:19 -0700 | [diff] [blame] | 3845 | fi |
Marc-André Lureau | 751bcc3 | 2015-10-09 17:17:16 +0200 | [diff] [blame] | 3846 | |
Ulrich Hecht | d092793 | 2009-09-17 20:22:14 +0300 | [diff] [blame] | 3847 | # check for fallocate |
| 3848 | fallocate=no |
| 3849 | cat > $TMPC << EOF |
| 3850 | #include <fcntl.h> |
| 3851 | |
| 3852 | int main(void) |
| 3853 | { |
| 3854 | fallocate(0, 0, 0, 0); |
| 3855 | return 0; |
| 3856 | } |
| 3857 | EOF |
Peter Maydell | 8fb0315 | 2012-04-04 17:03:15 +0100 | [diff] [blame] | 3858 | if compile_prog "" "" ; then |
Ulrich Hecht | d092793 | 2009-09-17 20:22:14 +0300 | [diff] [blame] | 3859 | fallocate=yes |
| 3860 | fi |
| 3861 | |
Kusanagi Kouichi | 3d4fa43 | 2013-01-14 16:26:52 +0100 | [diff] [blame] | 3862 | # check for fallocate hole punching |
| 3863 | fallocate_punch_hole=no |
| 3864 | cat > $TMPC << EOF |
| 3865 | #include <fcntl.h> |
| 3866 | #include <linux/falloc.h> |
| 3867 | |
| 3868 | int main(void) |
| 3869 | { |
| 3870 | fallocate(0, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, 0, 0); |
| 3871 | return 0; |
| 3872 | } |
| 3873 | EOF |
| 3874 | if compile_prog "" "" ; then |
| 3875 | fallocate_punch_hole=yes |
| 3876 | fi |
| 3877 | |
Denis V. Lunev | b953f07 | 2015-01-30 11:42:14 +0300 | [diff] [blame] | 3878 | # check that fallocate supports range zeroing inside the file |
| 3879 | fallocate_zero_range=no |
| 3880 | cat > $TMPC << EOF |
| 3881 | #include <fcntl.h> |
| 3882 | #include <linux/falloc.h> |
| 3883 | |
| 3884 | int main(void) |
| 3885 | { |
| 3886 | fallocate(0, FALLOC_FL_ZERO_RANGE, 0, 0); |
| 3887 | return 0; |
| 3888 | } |
| 3889 | EOF |
| 3890 | if compile_prog "" "" ; then |
| 3891 | fallocate_zero_range=yes |
| 3892 | fi |
| 3893 | |
Kevin Wolf | ed91143 | 2014-09-29 17:12:59 +0200 | [diff] [blame] | 3894 | # check for posix_fallocate |
| 3895 | posix_fallocate=no |
| 3896 | cat > $TMPC << EOF |
| 3897 | #include <fcntl.h> |
| 3898 | |
| 3899 | int main(void) |
| 3900 | { |
| 3901 | posix_fallocate(0, 0, 0); |
| 3902 | return 0; |
| 3903 | } |
| 3904 | EOF |
| 3905 | if compile_prog "" "" ; then |
| 3906 | posix_fallocate=yes |
| 3907 | fi |
| 3908 | |
Peter Maydell | c727f47 | 2011-01-06 11:05:10 +0000 | [diff] [blame] | 3909 | # check for sync_file_range |
| 3910 | sync_file_range=no |
| 3911 | cat > $TMPC << EOF |
| 3912 | #include <fcntl.h> |
| 3913 | |
| 3914 | int main(void) |
| 3915 | { |
| 3916 | sync_file_range(0, 0, 0, 0); |
| 3917 | return 0; |
| 3918 | } |
| 3919 | EOF |
Peter Maydell | 8fb0315 | 2012-04-04 17:03:15 +0100 | [diff] [blame] | 3920 | if compile_prog "" "" ; then |
Peter Maydell | c727f47 | 2011-01-06 11:05:10 +0000 | [diff] [blame] | 3921 | sync_file_range=yes |
| 3922 | fi |
| 3923 | |
Peter Maydell | dace20d | 2011-01-10 13:11:24 +0000 | [diff] [blame] | 3924 | # check for linux/fiemap.h and FS_IOC_FIEMAP |
| 3925 | fiemap=no |
| 3926 | cat > $TMPC << EOF |
| 3927 | #include <sys/ioctl.h> |
| 3928 | #include <linux/fs.h> |
| 3929 | #include <linux/fiemap.h> |
| 3930 | |
| 3931 | int main(void) |
| 3932 | { |
| 3933 | ioctl(0, FS_IOC_FIEMAP, 0); |
| 3934 | return 0; |
| 3935 | } |
| 3936 | EOF |
Peter Maydell | 8fb0315 | 2012-04-04 17:03:15 +0100 | [diff] [blame] | 3937 | if compile_prog "" "" ; then |
Peter Maydell | dace20d | 2011-01-10 13:11:24 +0000 | [diff] [blame] | 3938 | fiemap=yes |
| 3939 | fi |
| 3940 | |
Ulrich Hecht | d092793 | 2009-09-17 20:22:14 +0300 | [diff] [blame] | 3941 | # check for dup3 |
| 3942 | dup3=no |
| 3943 | cat > $TMPC << EOF |
| 3944 | #include <unistd.h> |
| 3945 | |
| 3946 | int main(void) |
| 3947 | { |
| 3948 | dup3(0, 0, 0); |
| 3949 | return 0; |
| 3950 | } |
| 3951 | EOF |
Jan Kiszka | 78f5d72 | 2009-11-03 10:54:44 +0100 | [diff] [blame] | 3952 | if compile_prog "" "" ; then |
Ulrich Hecht | d092793 | 2009-09-17 20:22:14 +0300 | [diff] [blame] | 3953 | dup3=yes |
| 3954 | fi |
| 3955 | |
Alex Bligh | 4e0c652 | 2013-08-21 16:02:43 +0100 | [diff] [blame] | 3956 | # check for ppoll support |
| 3957 | ppoll=no |
| 3958 | cat > $TMPC << EOF |
| 3959 | #include <poll.h> |
| 3960 | |
| 3961 | int main(void) |
| 3962 | { |
| 3963 | struct pollfd pfd = { .fd = 0, .events = 0, .revents = 0 }; |
| 3964 | ppoll(&pfd, 1, 0, 0); |
| 3965 | return 0; |
| 3966 | } |
| 3967 | EOF |
| 3968 | if compile_prog "" "" ; then |
| 3969 | ppoll=yes |
| 3970 | fi |
| 3971 | |
Alex Bligh | cd758dd | 2013-08-21 16:02:44 +0100 | [diff] [blame] | 3972 | # check for prctl(PR_SET_TIMERSLACK , ... ) support |
| 3973 | prctl_pr_set_timerslack=no |
| 3974 | cat > $TMPC << EOF |
| 3975 | #include <sys/prctl.h> |
| 3976 | |
| 3977 | int main(void) |
| 3978 | { |
| 3979 | prctl(PR_SET_TIMERSLACK, 1, 0, 0, 0); |
| 3980 | return 0; |
| 3981 | } |
| 3982 | EOF |
| 3983 | if compile_prog "" "" ; then |
| 3984 | prctl_pr_set_timerslack=yes |
| 3985 | fi |
| 3986 | |
Peter Maydell | 3b6edd1 | 2011-02-15 18:35:05 +0000 | [diff] [blame] | 3987 | # check for epoll support |
| 3988 | epoll=no |
| 3989 | cat > $TMPC << EOF |
| 3990 | #include <sys/epoll.h> |
| 3991 | |
| 3992 | int main(void) |
| 3993 | { |
| 3994 | epoll_create(0); |
| 3995 | return 0; |
| 3996 | } |
| 3997 | EOF |
Peter Maydell | 8fb0315 | 2012-04-04 17:03:15 +0100 | [diff] [blame] | 3998 | if compile_prog "" "" ; then |
Peter Maydell | 3b6edd1 | 2011-02-15 18:35:05 +0000 | [diff] [blame] | 3999 | epoll=yes |
| 4000 | fi |
| 4001 | |
Peter Maydell | 227f021 | 2016-06-06 19:58:11 +0100 | [diff] [blame] | 4002 | # epoll_create1 is a later addition |
| 4003 | # so we must check separately for its presence |
Peter Maydell | 3b6edd1 | 2011-02-15 18:35:05 +0000 | [diff] [blame] | 4004 | epoll_create1=no |
| 4005 | cat > $TMPC << EOF |
| 4006 | #include <sys/epoll.h> |
| 4007 | |
| 4008 | int main(void) |
| 4009 | { |
Peter Maydell | 19e83f6 | 2011-04-26 16:56:40 +0100 | [diff] [blame] | 4010 | /* Note that we use epoll_create1 as a value, not as |
| 4011 | * a function being called. This is necessary so that on |
| 4012 | * old SPARC glibc versions where the function was present in |
| 4013 | * the library but not declared in the header file we will |
| 4014 | * fail the configure check. (Otherwise we will get a compiler |
| 4015 | * warning but not an error, and will proceed to fail the |
| 4016 | * qemu compile where we compile with -Werror.) |
| 4017 | */ |
Blue Swirl | c075a72 | 2012-08-09 20:21:25 +0000 | [diff] [blame] | 4018 | return (int)(uintptr_t)&epoll_create1; |
Peter Maydell | 3b6edd1 | 2011-02-15 18:35:05 +0000 | [diff] [blame] | 4019 | } |
| 4020 | EOF |
Peter Maydell | 8fb0315 | 2012-04-04 17:03:15 +0100 | [diff] [blame] | 4021 | if compile_prog "" "" ; then |
Peter Maydell | 3b6edd1 | 2011-02-15 18:35:05 +0000 | [diff] [blame] | 4022 | epoll_create1=yes |
| 4023 | fi |
| 4024 | |
Peter Maydell | a8fd1ab | 2013-02-08 07:31:55 +0000 | [diff] [blame] | 4025 | # check for sendfile support |
| 4026 | sendfile=no |
| 4027 | cat > $TMPC << EOF |
| 4028 | #include <sys/sendfile.h> |
| 4029 | |
| 4030 | int main(void) |
| 4031 | { |
| 4032 | return sendfile(0, 0, 0, 0); |
| 4033 | } |
| 4034 | EOF |
| 4035 | if compile_prog "" "" ; then |
| 4036 | sendfile=yes |
| 4037 | fi |
| 4038 | |
Riku Voipio | 5183434 | 2014-06-22 11:25:42 +0100 | [diff] [blame] | 4039 | # check for timerfd support (glibc 2.8 and newer) |
| 4040 | timerfd=no |
| 4041 | cat > $TMPC << EOF |
| 4042 | #include <sys/timerfd.h> |
| 4043 | |
| 4044 | int main(void) |
| 4045 | { |
| 4046 | return(timerfd_create(CLOCK_REALTIME, 0)); |
| 4047 | } |
| 4048 | EOF |
| 4049 | if compile_prog "" "" ; then |
| 4050 | timerfd=yes |
| 4051 | fi |
| 4052 | |
Riku Voipio | 9af5c90 | 2014-08-12 15:58:57 +0300 | [diff] [blame] | 4053 | # check for setns and unshare support |
| 4054 | setns=no |
| 4055 | cat > $TMPC << EOF |
| 4056 | #include <sched.h> |
| 4057 | |
| 4058 | int main(void) |
| 4059 | { |
| 4060 | int ret; |
| 4061 | ret = setns(0, 0); |
| 4062 | ret = unshare(0); |
| 4063 | return ret; |
| 4064 | } |
| 4065 | EOF |
| 4066 | if compile_prog "" "" ; then |
| 4067 | setns=yes |
| 4068 | fi |
| 4069 | |
Aleksandar Markovic | 38860a0 | 2016-10-10 13:23:29 +0200 | [diff] [blame] | 4070 | # clock_adjtime probe |
| 4071 | clock_adjtime=no |
| 4072 | cat > $TMPC <<EOF |
| 4073 | #include <time.h> |
Jiaxun Yang | cd5d20e | 2021-01-18 14:38:00 +0800 | [diff] [blame] | 4074 | #include <sys/timex.h> |
Aleksandar Markovic | 38860a0 | 2016-10-10 13:23:29 +0200 | [diff] [blame] | 4075 | |
| 4076 | int main(void) |
| 4077 | { |
| 4078 | return clock_adjtime(0, 0); |
| 4079 | } |
| 4080 | EOF |
| 4081 | clock_adjtime=no |
| 4082 | if compile_prog "" "" ; then |
| 4083 | clock_adjtime=yes |
| 4084 | fi |
| 4085 | |
Aleksandar Markovic | 5a03cd0 | 2016-10-10 13:23:30 +0200 | [diff] [blame] | 4086 | # syncfs probe |
| 4087 | syncfs=no |
| 4088 | cat > $TMPC <<EOF |
| 4089 | #include <unistd.h> |
| 4090 | |
| 4091 | int main(void) |
| 4092 | { |
| 4093 | return syncfs(0); |
| 4094 | } |
| 4095 | EOF |
| 4096 | syncfs=no |
| 4097 | if compile_prog "" "" ; then |
| 4098 | syncfs=yes |
| 4099 | fi |
| 4100 | |
Stefan Weil | f514f41 | 2009-10-11 12:44:07 +0200 | [diff] [blame] | 4101 | # Search for bswap_32 function |
Juan Quintela | 6ae9a1f | 2009-08-03 14:45:58 +0200 | [diff] [blame] | 4102 | byteswap_h=no |
| 4103 | cat > $TMPC << EOF |
| 4104 | #include <byteswap.h> |
| 4105 | int main(void) { return bswap_32(0); } |
| 4106 | EOF |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 4107 | if compile_prog "" "" ; then |
Juan Quintela | 6ae9a1f | 2009-08-03 14:45:58 +0200 | [diff] [blame] | 4108 | byteswap_h=yes |
| 4109 | fi |
| 4110 | |
Stefan Weil | 75f1359 | 2013-01-05 12:17:38 +0100 | [diff] [blame] | 4111 | # Search for bswap32 function |
Juan Quintela | 6ae9a1f | 2009-08-03 14:45:58 +0200 | [diff] [blame] | 4112 | bswap_h=no |
| 4113 | cat > $TMPC << EOF |
| 4114 | #include <sys/endian.h> |
| 4115 | #include <sys/types.h> |
| 4116 | #include <machine/bswap.h> |
| 4117 | int main(void) { return bswap32(0); } |
| 4118 | EOF |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 4119 | if compile_prog "" "" ; then |
Juan Quintela | 6ae9a1f | 2009-08-03 14:45:58 +0200 | [diff] [blame] | 4120 | bswap_h=yes |
| 4121 | fi |
| 4122 | |
Paolo Bonzini | f2995ee | 2020-09-01 06:28:38 -0400 | [diff] [blame] | 4123 | # Check whether we have openpty() in either libc or libutil |
Thomas Huth | d99e97e | 2019-01-17 18:14:08 +0100 | [diff] [blame] | 4124 | cat > $TMPC << EOF |
| 4125 | extern int openpty(int *am, int *as, char *name, void *termp, void *winp); |
| 4126 | int main(void) { return openpty(0, 0, 0, 0, 0); } |
| 4127 | EOF |
| 4128 | |
Thomas Huth | 9df8b20 | 2020-06-29 14:13:24 +0200 | [diff] [blame] | 4129 | have_openpty="no" |
| 4130 | if compile_prog "" "" ; then |
| 4131 | have_openpty="yes" |
| 4132 | else |
Thomas Huth | d99e97e | 2019-01-17 18:14:08 +0100 | [diff] [blame] | 4133 | if compile_prog "" "-lutil" ; then |
Thomas Huth | 9df8b20 | 2020-06-29 14:13:24 +0200 | [diff] [blame] | 4134 | have_openpty="yes" |
Thomas Huth | d99e97e | 2019-01-17 18:14:08 +0100 | [diff] [blame] | 4135 | fi |
Juan Quintela | 6362a53 | 2009-08-03 14:46:32 +0200 | [diff] [blame] | 4136 | fi |
| 4137 | |
Blue Swirl | de5071c | 2009-09-12 09:58:46 +0000 | [diff] [blame] | 4138 | ########################################## |
Gerd Hoffmann | cd4ec0b | 2010-03-24 10:26:51 +0100 | [diff] [blame] | 4139 | # spice probe |
Gerd Hoffmann | 58d3f3f | 2021-05-19 07:39:32 +0200 | [diff] [blame] | 4140 | if test "$spice_protocol" != "no" ; then |
| 4141 | spice_protocol_cflags=$($pkg_config --cflags spice-protocol 2>/dev/null) |
| 4142 | if $pkg_config --atleast-version=0.12.3 spice-protocol; then |
| 4143 | spice_protocol="yes" |
| 4144 | else |
| 4145 | if test "$spice_protocol" = "yes" ; then |
| 4146 | feature_not_found "spice_protocol" \ |
| 4147 | "Install spice-protocol(>=0.12.3) devel" |
| 4148 | fi |
| 4149 | spice_protocol="no" |
| 4150 | fi |
| 4151 | fi |
| 4152 | |
Gerd Hoffmann | cd4ec0b | 2010-03-24 10:26:51 +0100 | [diff] [blame] | 4153 | if test "$spice" != "no" ; then |
| 4154 | cat > $TMPC << EOF |
| 4155 | #include <spice.h> |
| 4156 | int main(void) { spice_server_new(); return 0; } |
| 4157 | EOF |
Jiri Denemark | 710fc4f | 2011-01-24 13:20:29 +0100 | [diff] [blame] | 4158 | spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null) |
| 4159 | spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null) |
Marc-André Lureau | 1b63665 | 2018-11-28 19:59:32 +0400 | [diff] [blame] | 4160 | if $pkg_config --atleast-version=0.12.5 spice-server && \ |
Gerd Hoffmann | 58d3f3f | 2021-05-19 07:39:32 +0200 | [diff] [blame] | 4161 | test "$spice_protocol" = "yes" && \ |
Gerd Hoffmann | cd4ec0b | 2010-03-24 10:26:51 +0100 | [diff] [blame] | 4162 | compile_prog "$spice_cflags" "$spice_libs" ; then |
| 4163 | spice="yes" |
Gerd Hoffmann | cd4ec0b | 2010-03-24 10:26:51 +0100 | [diff] [blame] | 4164 | else |
| 4165 | if test "$spice" = "yes" ; then |
Hu Tao | 8efc936 | 2014-06-26 17:34:50 +0800 | [diff] [blame] | 4166 | feature_not_found "spice" \ |
Gerd Hoffmann | 58d3f3f | 2021-05-19 07:39:32 +0200 | [diff] [blame] | 4167 | "Install spice-server(>=0.12.5) devel" |
Gerd Hoffmann | cd4ec0b | 2010-03-24 10:26:51 +0100 | [diff] [blame] | 4168 | fi |
| 4169 | spice="no" |
| 4170 | fi |
| 4171 | fi |
| 4172 | |
Marc-André Lureau | 7b02f54 | 2015-08-30 11:48:40 +0200 | [diff] [blame] | 4173 | # check for smartcard support |
Marc-André Lureau | 7b02f54 | 2015-08-30 11:48:40 +0200 | [diff] [blame] | 4174 | if test "$smartcard" != "no"; then |
Michal Privoznik | 0f5c642 | 2018-04-03 12:34:37 +0200 | [diff] [blame] | 4175 | if $pkg_config --atleast-version=2.5.1 libcacard; then |
Marc-André Lureau | 7b02f54 | 2015-08-30 11:48:40 +0200 | [diff] [blame] | 4176 | libcacard_cflags=$($pkg_config --cflags libcacard) |
| 4177 | libcacard_libs=$($pkg_config --libs libcacard) |
Marc-André Lureau | 7b02f54 | 2015-08-30 11:48:40 +0200 | [diff] [blame] | 4178 | smartcard="yes" |
Paolo Bonzini | afd347a | 2012-12-20 20:39:36 +0100 | [diff] [blame] | 4179 | else |
Marc-André Lureau | 7b02f54 | 2015-08-30 11:48:40 +0200 | [diff] [blame] | 4180 | if test "$smartcard" = "yes"; then |
| 4181 | feature_not_found "smartcard" "Install libcacard devel" |
Paolo Bonzini | afd347a | 2012-12-20 20:39:36 +0100 | [diff] [blame] | 4182 | fi |
Marc-André Lureau | 7b02f54 | 2015-08-30 11:48:40 +0200 | [diff] [blame] | 4183 | smartcard="no" |
Paolo Bonzini | afd347a | 2012-12-20 20:39:36 +0100 | [diff] [blame] | 4184 | fi |
Robert Relyea | 111a38b | 2010-11-28 16:36:38 +0200 | [diff] [blame] | 4185 | fi |
| 4186 | |
Gerd Hoffmann | 2b2325f | 2012-11-30 16:02:11 +0100 | [diff] [blame] | 4187 | # check for libusb |
| 4188 | if test "$libusb" != "no" ; then |
Stefan Weil | 65d5d3f | 2013-08-27 21:09:13 +0200 | [diff] [blame] | 4189 | if $pkg_config --atleast-version=1.0.13 libusb-1.0; then |
Gerd Hoffmann | 2b2325f | 2012-11-30 16:02:11 +0100 | [diff] [blame] | 4190 | libusb="yes" |
Stefan Weil | ca871ec | 2013-08-27 21:09:12 +0200 | [diff] [blame] | 4191 | libusb_cflags=$($pkg_config --cflags libusb-1.0) |
| 4192 | libusb_libs=$($pkg_config --libs libusb-1.0) |
Gerd Hoffmann | 2b2325f | 2012-11-30 16:02:11 +0100 | [diff] [blame] | 4193 | else |
| 4194 | if test "$libusb" = "yes"; then |
Hu Tao | 8efc936 | 2014-06-26 17:34:50 +0800 | [diff] [blame] | 4195 | feature_not_found "libusb" "Install libusb devel >= 1.0.13" |
Gerd Hoffmann | 2b2325f | 2012-11-30 16:02:11 +0100 | [diff] [blame] | 4196 | fi |
| 4197 | libusb="no" |
| 4198 | fi |
| 4199 | fi |
| 4200 | |
Hans de Goede | 69354a8 | 2011-07-19 11:04:10 +0200 | [diff] [blame] | 4201 | # check for usbredirparser for usb network redirection support |
| 4202 | if test "$usb_redir" != "no" ; then |
Stefan Weil | 65d5d3f | 2013-08-27 21:09:13 +0200 | [diff] [blame] | 4203 | if $pkg_config --atleast-version=0.6 libusbredirparser-0.5; then |
Hans de Goede | 69354a8 | 2011-07-19 11:04:10 +0200 | [diff] [blame] | 4204 | usb_redir="yes" |
Stefan Weil | ca871ec | 2013-08-27 21:09:12 +0200 | [diff] [blame] | 4205 | usb_redir_cflags=$($pkg_config --cflags libusbredirparser-0.5) |
| 4206 | usb_redir_libs=$($pkg_config --libs libusbredirparser-0.5) |
Hans de Goede | 69354a8 | 2011-07-19 11:04:10 +0200 | [diff] [blame] | 4207 | else |
| 4208 | if test "$usb_redir" = "yes"; then |
Stewart Smith | 21684af | 2014-01-24 12:39:10 +1100 | [diff] [blame] | 4209 | feature_not_found "usb-redir" "Install usbredir devel" |
Hans de Goede | 69354a8 | 2011-07-19 11:04:10 +0200 | [diff] [blame] | 4210 | fi |
| 4211 | usb_redir="no" |
| 4212 | fi |
| 4213 | fi |
| 4214 | |
Gerd Hoffmann | cd4ec0b | 2010-03-24 10:26:51 +0100 | [diff] [blame] | 4215 | ########################################## |
Tomoki Sekiyama | d9840e2 | 2013-08-07 11:40:03 -0400 | [diff] [blame] | 4216 | # check if we have VSS SDK headers for win |
| 4217 | |
Eric Blake | e633a5c | 2019-02-04 20:39:37 -0600 | [diff] [blame] | 4218 | if test "$mingw32" = "yes" && test "$guest_agent" != "no" && \ |
| 4219 | test "$vss_win32_sdk" != "no" ; then |
Tomoki Sekiyama | d9840e2 | 2013-08-07 11:40:03 -0400 | [diff] [blame] | 4220 | case "$vss_win32_sdk" in |
Michael Roth | 690604f | 2016-06-28 17:31:49 -0500 | [diff] [blame] | 4221 | "") vss_win32_include="-isystem $source_path" ;; |
Tomoki Sekiyama | d9840e2 | 2013-08-07 11:40:03 -0400 | [diff] [blame] | 4222 | *\ *) # The SDK is installed in "Program Files" by default, but we cannot |
| 4223 | # handle path with spaces. So we symlink the headers into ".sdk/vss". |
Michael Roth | 690604f | 2016-06-28 17:31:49 -0500 | [diff] [blame] | 4224 | vss_win32_include="-isystem $source_path/.sdk/vss" |
Tomoki Sekiyama | d9840e2 | 2013-08-07 11:40:03 -0400 | [diff] [blame] | 4225 | symlink "$vss_win32_sdk/inc" "$source_path/.sdk/vss/inc" |
| 4226 | ;; |
Michael Roth | 690604f | 2016-06-28 17:31:49 -0500 | [diff] [blame] | 4227 | *) vss_win32_include="-isystem $vss_win32_sdk" |
Tomoki Sekiyama | d9840e2 | 2013-08-07 11:40:03 -0400 | [diff] [blame] | 4228 | esac |
| 4229 | cat > $TMPC << EOF |
| 4230 | #define __MIDL_user_allocate_free_DEFINED__ |
| 4231 | #include <inc/win2003/vss.h> |
| 4232 | int main(void) { return VSS_CTX_BACKUP; } |
| 4233 | EOF |
| 4234 | if compile_prog "$vss_win32_include" "" ; then |
| 4235 | guest_agent_with_vss="yes" |
| 4236 | QEMU_CFLAGS="$QEMU_CFLAGS $vss_win32_include" |
Fam Zheng | 315d318 | 2016-09-21 12:27:21 +0800 | [diff] [blame] | 4237 | libs_qga="-lole32 -loleaut32 -lshlwapi -lstdc++ -Wl,--enable-stdcall-fixup $libs_qga" |
Michael Roth | f33ca81 | 2015-08-26 16:19:41 -0500 | [diff] [blame] | 4238 | qga_vss_provider="qga/vss-win32/qga-vss.dll qga/vss-win32/qga-vss.tlb" |
Tomoki Sekiyama | d9840e2 | 2013-08-07 11:40:03 -0400 | [diff] [blame] | 4239 | else |
| 4240 | if test "$vss_win32_sdk" != "" ; then |
| 4241 | echo "ERROR: Please download and install Microsoft VSS SDK:" |
| 4242 | echo "ERROR: http://www.microsoft.com/en-us/download/details.aspx?id=23490" |
| 4243 | echo "ERROR: On POSIX-systems, you can extract the SDK headers by:" |
| 4244 | echo "ERROR: scripts/extract-vsssdk-headers setup.exe" |
| 4245 | echo "ERROR: The headers are extracted in the directory \`inc'." |
| 4246 | feature_not_found "VSS support" |
| 4247 | fi |
| 4248 | guest_agent_with_vss="no" |
| 4249 | fi |
| 4250 | fi |
| 4251 | |
| 4252 | ########################################## |
| 4253 | # lookup Windows platform SDK (if not specified) |
| 4254 | # The SDK is needed only to build .tlb (type library) file of guest agent |
| 4255 | # VSS provider from the source. It is usually unnecessary because the |
| 4256 | # pre-compiled .tlb file is included. |
| 4257 | |
Eric Blake | e633a5c | 2019-02-04 20:39:37 -0600 | [diff] [blame] | 4258 | if test "$mingw32" = "yes" && test "$guest_agent" != "no" && \ |
| 4259 | test "$guest_agent_with_vss" = "yes" ; then |
Tomoki Sekiyama | d9840e2 | 2013-08-07 11:40:03 -0400 | [diff] [blame] | 4260 | if test -z "$win_sdk"; then |
| 4261 | programfiles="$PROGRAMFILES" |
| 4262 | test -n "$PROGRAMW6432" && programfiles="$PROGRAMW6432" |
| 4263 | if test -n "$programfiles"; then |
| 4264 | win_sdk=$(ls -d "$programfiles/Microsoft SDKs/Windows/v"* | tail -1) 2>/dev/null |
| 4265 | else |
| 4266 | feature_not_found "Windows SDK" |
| 4267 | fi |
| 4268 | elif test "$win_sdk" = "no"; then |
| 4269 | win_sdk="" |
| 4270 | fi |
| 4271 | fi |
| 4272 | |
| 4273 | ########################################## |
Michael Roth | 50cbebb | 2015-07-07 18:10:09 -0500 | [diff] [blame] | 4274 | # check if mingw environment provides a recent ntddscsi.h |
Eric Blake | e633a5c | 2019-02-04 20:39:37 -0600 | [diff] [blame] | 4275 | if test "$mingw32" = "yes" && test "$guest_agent" != "no"; then |
Michael Roth | 50cbebb | 2015-07-07 18:10:09 -0500 | [diff] [blame] | 4276 | cat > $TMPC << EOF |
| 4277 | #include <windows.h> |
| 4278 | #include <ntddscsi.h> |
| 4279 | int main(void) { |
| 4280 | #if !defined(IOCTL_SCSI_GET_ADDRESS) |
| 4281 | #error Missing required ioctl definitions |
| 4282 | #endif |
| 4283 | SCSI_ADDRESS addr = { .Lun = 0, .TargetId = 0, .PathId = 0 }; |
| 4284 | return addr.Lun; |
| 4285 | } |
| 4286 | EOF |
| 4287 | if compile_prog "" "" ; then |
| 4288 | guest_agent_ntddscsi=yes |
Matt Hines | 996b9cd | 2019-01-28 14:30:56 -0800 | [diff] [blame] | 4289 | libs_qga="-lsetupapi -lcfgmgr32 $libs_qga" |
Michael Roth | 50cbebb | 2015-07-07 18:10:09 -0500 | [diff] [blame] | 4290 | fi |
| 4291 | fi |
| 4292 | |
| 4293 | ########################################## |
Gerd Hoffmann | 9d9e152 | 2014-07-11 12:51:43 +0200 | [diff] [blame] | 4294 | # virgl renderer probe |
| 4295 | |
| 4296 | if test "$virglrenderer" != "no" ; then |
| 4297 | cat > $TMPC << EOF |
| 4298 | #include <virglrenderer.h> |
| 4299 | int main(void) { virgl_renderer_poll(); return 0; } |
| 4300 | EOF |
| 4301 | virgl_cflags=$($pkg_config --cflags virglrenderer 2>/dev/null) |
| 4302 | virgl_libs=$($pkg_config --libs virglrenderer 2>/dev/null) |
Marc-André Lureau | 47479c5 | 2018-05-25 17:36:09 +0200 | [diff] [blame] | 4303 | virgl_version=$($pkg_config --modversion virglrenderer 2>/dev/null) |
Gerd Hoffmann | 9d9e152 | 2014-07-11 12:51:43 +0200 | [diff] [blame] | 4304 | if $pkg_config virglrenderer >/dev/null 2>&1 && \ |
| 4305 | compile_prog "$virgl_cflags" "$virgl_libs" ; then |
| 4306 | virglrenderer="yes" |
| 4307 | else |
| 4308 | if test "$virglrenderer" = "yes" ; then |
| 4309 | feature_not_found "virglrenderer" |
| 4310 | fi |
| 4311 | virglrenderer="no" |
| 4312 | fi |
| 4313 | fi |
| 4314 | |
| 4315 | ########################################## |
Richard Henderson | 8ca8076 | 2017-09-14 09:41:12 -0700 | [diff] [blame] | 4316 | # capstone |
| 4317 | |
Richard Henderson | e219c49 | 2017-09-28 09:01:23 -0700 | [diff] [blame] | 4318 | case "$capstone" in |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 4319 | auto | enabled | internal) |
| 4320 | # Simpler to always update submodule, even if not needed. |
Paolo Bonzini | 2d652f2 | 2021-05-12 09:21:56 +0200 | [diff] [blame] | 4321 | git_submodules="${git_submodules} capstone" |
Richard Henderson | e219c49 | 2017-09-28 09:01:23 -0700 | [diff] [blame] | 4322 | ;; |
| 4323 | esac |
Richard Henderson | 8ca8076 | 2017-09-14 09:41:12 -0700 | [diff] [blame] | 4324 | |
| 4325 | ########################################## |
Blue Swirl | 5f6b9e8 | 2009-09-20 06:56:26 +0000 | [diff] [blame] | 4326 | # check if we have fdatasync |
| 4327 | |
| 4328 | fdatasync=no |
| 4329 | cat > $TMPC << EOF |
| 4330 | #include <unistd.h> |
Alexandre Raymond | d1722a2 | 2011-05-29 18:22:48 -0400 | [diff] [blame] | 4331 | int main(void) { |
| 4332 | #if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0 |
| 4333 | return fdatasync(0); |
| 4334 | #else |
Stefan Weil | e172fe1 | 2012-04-06 21:33:20 +0200 | [diff] [blame] | 4335 | #error Not supported |
Alexandre Raymond | d1722a2 | 2011-05-29 18:22:48 -0400 | [diff] [blame] | 4336 | #endif |
| 4337 | } |
Blue Swirl | 5f6b9e8 | 2009-09-20 06:56:26 +0000 | [diff] [blame] | 4338 | EOF |
| 4339 | if compile_prog "" "" ; then |
| 4340 | fdatasync=yes |
| 4341 | fi |
| 4342 | |
Stefan Hajnoczi | 94a420b | 2010-05-22 17:52:39 +0100 | [diff] [blame] | 4343 | ########################################## |
Andreas Färber | e78815a | 2010-09-25 11:26:05 +0000 | [diff] [blame] | 4344 | # check if we have madvise |
| 4345 | |
| 4346 | madvise=no |
| 4347 | cat > $TMPC << EOF |
| 4348 | #include <sys/types.h> |
| 4349 | #include <sys/mman.h> |
Scott Wood | 832ce9c | 2010-10-05 14:28:17 -0500 | [diff] [blame] | 4350 | #include <stddef.h> |
Andreas Färber | e78815a | 2010-09-25 11:26:05 +0000 | [diff] [blame] | 4351 | int main(void) { return madvise(NULL, 0, MADV_DONTNEED); } |
| 4352 | EOF |
| 4353 | if compile_prog "" "" ; then |
| 4354 | madvise=yes |
| 4355 | fi |
| 4356 | |
| 4357 | ########################################## |
| 4358 | # check if we have posix_madvise |
| 4359 | |
| 4360 | posix_madvise=no |
| 4361 | cat > $TMPC << EOF |
| 4362 | #include <sys/mman.h> |
Scott Wood | 832ce9c | 2010-10-05 14:28:17 -0500 | [diff] [blame] | 4363 | #include <stddef.h> |
Andreas Färber | e78815a | 2010-09-25 11:26:05 +0000 | [diff] [blame] | 4364 | int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); } |
| 4365 | EOF |
| 4366 | if compile_prog "" "" ; then |
| 4367 | posix_madvise=yes |
| 4368 | fi |
| 4369 | |
| 4370 | ########################################## |
Andreas Gustafsson | 9bc5a71 | 2018-01-04 19:39:36 +0200 | [diff] [blame] | 4371 | # check if we have posix_memalign() |
| 4372 | |
| 4373 | posix_memalign=no |
| 4374 | cat > $TMPC << EOF |
| 4375 | #include <stdlib.h> |
| 4376 | int main(void) { |
| 4377 | void *p; |
| 4378 | return posix_memalign(&p, 8, 8); |
| 4379 | } |
| 4380 | EOF |
| 4381 | if compile_prog "" "" ; then |
| 4382 | posix_memalign=yes |
| 4383 | fi |
| 4384 | |
| 4385 | ########################################## |
Paul Durrant | 0a85241 | 2016-08-04 14:44:14 +0100 | [diff] [blame] | 4386 | # check if we have posix_syslog |
| 4387 | |
| 4388 | posix_syslog=no |
| 4389 | cat > $TMPC << EOF |
| 4390 | #include <syslog.h> |
| 4391 | int main(void) { openlog("qemu", LOG_PID, LOG_DAEMON); syslog(LOG_INFO, "configure"); return 0; } |
| 4392 | EOF |
| 4393 | if compile_prog "" "" ; then |
| 4394 | posix_syslog=yes |
| 4395 | fi |
| 4396 | |
| 4397 | ########################################## |
Peter Maydell | 401bc05 | 2017-09-05 13:19:32 +0100 | [diff] [blame] | 4398 | # check if we have sem_timedwait |
| 4399 | |
| 4400 | sem_timedwait=no |
| 4401 | cat > $TMPC << EOF |
| 4402 | #include <semaphore.h> |
Daniel P. Berrangé | 811294b | 2019-06-17 12:41:14 +0100 | [diff] [blame] | 4403 | int main(void) { sem_t s; struct timespec t = {0}; return sem_timedwait(&s, &t); } |
Peter Maydell | 401bc05 | 2017-09-05 13:19:32 +0100 | [diff] [blame] | 4404 | EOF |
| 4405 | if compile_prog "" "" ; then |
| 4406 | sem_timedwait=yes |
| 4407 | fi |
| 4408 | |
| 4409 | ########################################## |
Keno Fischer | 5c99fa3 | 2018-06-29 12:32:10 +0200 | [diff] [blame] | 4410 | # check if we have strchrnul |
| 4411 | |
| 4412 | strchrnul=no |
| 4413 | cat > $TMPC << EOF |
| 4414 | #include <string.h> |
| 4415 | int main(void); |
| 4416 | // Use a haystack that the compiler shouldn't be able to constant fold |
| 4417 | char *haystack = (char*)&main; |
| 4418 | int main(void) { return strchrnul(haystack, 'x') != &haystack[6]; } |
| 4419 | EOF |
| 4420 | if compile_prog "" "" ; then |
| 4421 | strchrnul=yes |
| 4422 | fi |
| 4423 | |
Jiufei Xue | 8a792b0 | 2019-04-17 03:08:56 +0800 | [diff] [blame] | 4424 | ######################################### |
| 4425 | # check if we have st_atim |
| 4426 | |
| 4427 | st_atim=no |
| 4428 | cat > $TMPC << EOF |
| 4429 | #include <sys/stat.h> |
| 4430 | #include <stddef.h> |
| 4431 | int main(void) { return offsetof(struct stat, st_atim); } |
| 4432 | EOF |
| 4433 | if compile_prog "" "" ; then |
| 4434 | st_atim=yes |
| 4435 | fi |
| 4436 | |
Keno Fischer | 5c99fa3 | 2018-06-29 12:32:10 +0200 | [diff] [blame] | 4437 | ########################################## |
Stefan Hajnoczi | 94a420b | 2010-05-22 17:52:39 +0100 | [diff] [blame] | 4438 | # check if trace backend exists |
| 4439 | |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 4440 | $python "$source_path/scripts/tracetool.py" "--backends=$trace_backends" --check-backends > /dev/null 2> /dev/null |
Stefan Hajnoczi | 94a420b | 2010-05-22 17:52:39 +0100 | [diff] [blame] | 4441 | if test "$?" -ne 0 ; then |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 4442 | error_exit "invalid trace backends" \ |
| 4443 | "Please choose supported trace backends." |
Stefan Hajnoczi | 94a420b | 2010-05-22 17:52:39 +0100 | [diff] [blame] | 4444 | fi |
| 4445 | |
Stefan Hajnoczi | 7e24e92 | 2010-05-22 21:11:33 +0100 | [diff] [blame] | 4446 | ########################################## |
| 4447 | # For 'ust' backend, test if ust headers are present |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 4448 | if have_backend "ust"; then |
Stefan Hajnoczi | 7e24e92 | 2010-05-22 21:11:33 +0100 | [diff] [blame] | 4449 | cat > $TMPC << EOF |
Mohamad Gebai | bf15f63 | 2014-01-29 22:47:54 -0500 | [diff] [blame] | 4450 | #include <lttng/tracepoint.h> |
Stefan Hajnoczi | 7e24e92 | 2010-05-22 21:11:33 +0100 | [diff] [blame] | 4451 | int main(void) { return 0; } |
| 4452 | EOF |
Francis Deslauriers | c79ed23 | 2016-11-28 10:52:17 -0500 | [diff] [blame] | 4453 | if compile_prog "" "-Wl,--no-as-needed -ldl" ; then |
Mohamad Gebai | bf15f63 | 2014-01-29 22:47:54 -0500 | [diff] [blame] | 4454 | if $pkg_config lttng-ust --exists; then |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 4455 | lttng_ust_libs=$($pkg_config --libs lttng-ust) |
Mohamad Gebai | bf15f63 | 2014-01-29 22:47:54 -0500 | [diff] [blame] | 4456 | else |
Francis Deslauriers | c79ed23 | 2016-11-28 10:52:17 -0500 | [diff] [blame] | 4457 | lttng_ust_libs="-llttng-ust -ldl" |
Mohamad Gebai | bf15f63 | 2014-01-29 22:47:54 -0500 | [diff] [blame] | 4458 | fi |
| 4459 | if $pkg_config liburcu-bp --exists; then |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 4460 | urcu_bp_libs=$($pkg_config --libs liburcu-bp) |
Mohamad Gebai | bf15f63 | 2014-01-29 22:47:54 -0500 | [diff] [blame] | 4461 | else |
| 4462 | urcu_bp_libs="-lurcu-bp" |
| 4463 | fi |
Stefan Hajnoczi | 7e24e92 | 2010-05-22 21:11:33 +0100 | [diff] [blame] | 4464 | else |
Mohamad Gebai | bf15f63 | 2014-01-29 22:47:54 -0500 | [diff] [blame] | 4465 | error_exit "Trace backend 'ust' missing lttng-ust header files" |
Stefan Hajnoczi | 7e24e92 | 2010-05-22 21:11:33 +0100 | [diff] [blame] | 4466 | fi |
| 4467 | fi |
Daniel P. Berrange | b3d08c0 | 2010-11-12 13:20:24 +0000 | [diff] [blame] | 4468 | |
| 4469 | ########################################## |
| 4470 | # For 'dtrace' backend, test if 'dtrace' command is present |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 4471 | if have_backend "dtrace"; then |
Daniel P. Berrange | b3d08c0 | 2010-11-12 13:20:24 +0000 | [diff] [blame] | 4472 | if ! has 'dtrace' ; then |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 4473 | error_exit "dtrace command is not found in PATH $PATH" |
Daniel P. Berrange | b3d08c0 | 2010-11-12 13:20:24 +0000 | [diff] [blame] | 4474 | fi |
Daniel P. Berrange | c276b17 | 2010-11-12 13:20:25 +0000 | [diff] [blame] | 4475 | trace_backend_stap="no" |
| 4476 | if has 'stap' ; then |
| 4477 | trace_backend_stap="yes" |
Stefan Hajnoczi | 4b265c7 | 2020-11-19 14:14:57 +0000 | [diff] [blame] | 4478 | |
| 4479 | # Workaround to avoid dtrace(1) producing a file with 'hidden' symbol |
| 4480 | # visibility. Define STAP_SDT_V2 to produce 'default' symbol visibility |
| 4481 | # instead. QEMU --enable-modules depends on this because the SystemTap |
| 4482 | # semaphores are linked into the main binary and not the module's shared |
| 4483 | # object. |
| 4484 | QEMU_CFLAGS="$QEMU_CFLAGS -DSTAP_SDT_V2" |
Daniel P. Berrange | c276b17 | 2010-11-12 13:20:25 +0000 | [diff] [blame] | 4485 | fi |
Daniel P. Berrange | b3d08c0 | 2010-11-12 13:20:24 +0000 | [diff] [blame] | 4486 | fi |
| 4487 | |
Stefan Hajnoczi | 7e24e92 | 2010-05-22 21:11:33 +0100 | [diff] [blame] | 4488 | ########################################## |
Alex Barcelo | 519175a | 2012-02-28 12:25:50 +0100 | [diff] [blame] | 4489 | # check and set a backend for coroutine |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 4490 | |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 4491 | # We prefer ucontext, but it's not always possible. The fallback |
Daniel P. Berrange | 33c53c5 | 2017-04-28 13:24:44 +0100 | [diff] [blame] | 4492 | # is sigcontext. On Windows the only valid backend is the Windows |
| 4493 | # specific one. |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 4494 | |
| 4495 | ucontext_works=no |
| 4496 | if test "$darwin" != "yes"; then |
| 4497 | cat > $TMPC << EOF |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 4498 | #include <ucontext.h> |
Peter Maydell | cdf8480 | 2012-02-23 16:20:05 +0000 | [diff] [blame] | 4499 | #ifdef __stub_makecontext |
| 4500 | #error Ignoring glibc stub makecontext which will always fail |
| 4501 | #endif |
Stefan Weil | 75cafad | 2011-12-17 09:27:29 +0100 | [diff] [blame] | 4502 | int main(void) { makecontext(0, 0, 0); return 0; } |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 4503 | EOF |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 4504 | if compile_prog "" "" ; then |
| 4505 | ucontext_works=yes |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 4506 | fi |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 4507 | fi |
| 4508 | |
| 4509 | if test "$coroutine" = ""; then |
| 4510 | if test "$mingw32" = "yes"; then |
| 4511 | coroutine=win32 |
| 4512 | elif test "$ucontext_works" = "yes"; then |
| 4513 | coroutine=ucontext |
| 4514 | else |
| 4515 | coroutine=sigaltstack |
| 4516 | fi |
Alex Barcelo | 519175a | 2012-02-28 12:25:50 +0100 | [diff] [blame] | 4517 | else |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 4518 | case $coroutine in |
| 4519 | windows) |
| 4520 | if test "$mingw32" != "yes"; then |
| 4521 | error_exit "'windows' coroutine backend only valid for Windows" |
| 4522 | fi |
| 4523 | # Unfortunately the user visible backend name doesn't match the |
| 4524 | # coroutine-*.c filename for this case, so we have to adjust it here. |
| 4525 | coroutine=win32 |
| 4526 | ;; |
| 4527 | ucontext) |
| 4528 | if test "$ucontext_works" != "yes"; then |
| 4529 | feature_not_found "ucontext" |
| 4530 | fi |
| 4531 | ;; |
Daniel P. Berrange | 33c53c5 | 2017-04-28 13:24:44 +0100 | [diff] [blame] | 4532 | sigaltstack) |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 4533 | if test "$mingw32" = "yes"; then |
| 4534 | error_exit "only the 'windows' coroutine backend is valid for Windows" |
| 4535 | fi |
| 4536 | ;; |
| 4537 | *) |
| 4538 | error_exit "unknown coroutine backend $coroutine" |
| 4539 | ;; |
| 4540 | esac |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 4541 | fi |
| 4542 | |
Stefan Hajnoczi | 70c60c0 | 2013-09-11 16:42:35 +0200 | [diff] [blame] | 4543 | if test "$coroutine_pool" = ""; then |
Daniel P. Berrange | 33c53c5 | 2017-04-28 13:24:44 +0100 | [diff] [blame] | 4544 | coroutine_pool=yes |
Stefan Hajnoczi | 70c60c0 | 2013-09-11 16:42:35 +0200 | [diff] [blame] | 4545 | fi |
| 4546 | |
Peter Lieven | 7d992e4 | 2016-09-27 11:58:45 +0200 | [diff] [blame] | 4547 | if test "$debug_stack_usage" = "yes"; then |
Peter Lieven | 7d992e4 | 2016-09-27 11:58:45 +0200 | [diff] [blame] | 4548 | if test "$coroutine_pool" = "yes"; then |
| 4549 | echo "WARN: disabling coroutine pool for stack usage debugging" |
| 4550 | coroutine_pool=no |
| 4551 | fi |
| 4552 | fi |
| 4553 | |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 4554 | ################################################## |
| 4555 | # SafeStack |
| 4556 | |
| 4557 | |
| 4558 | if test "$safe_stack" = "yes"; then |
| 4559 | cat > $TMPC << EOF |
| 4560 | int main(int argc, char *argv[]) |
| 4561 | { |
| 4562 | #if ! __has_feature(safe_stack) |
| 4563 | #error SafeStack Disabled |
| 4564 | #endif |
| 4565 | return 0; |
| 4566 | } |
| 4567 | EOF |
| 4568 | flag="-fsanitize=safe-stack" |
| 4569 | # Check that safe-stack is supported and enabled. |
| 4570 | if compile_prog "-Werror $flag" "$flag"; then |
| 4571 | # Flag needed both at compilation and at linking |
| 4572 | QEMU_CFLAGS="$QEMU_CFLAGS $flag" |
| 4573 | QEMU_LDFLAGS="$QEMU_LDFLAGS $flag" |
| 4574 | else |
| 4575 | error_exit "SafeStack not supported by your compiler" |
| 4576 | fi |
| 4577 | if test "$coroutine" != "ucontext"; then |
| 4578 | error_exit "SafeStack is only supported by the coroutine backend ucontext" |
| 4579 | fi |
| 4580 | else |
| 4581 | cat > $TMPC << EOF |
| 4582 | int main(int argc, char *argv[]) |
| 4583 | { |
| 4584 | #if defined(__has_feature) |
| 4585 | #if __has_feature(safe_stack) |
| 4586 | #error SafeStack Enabled |
| 4587 | #endif |
| 4588 | #endif |
| 4589 | return 0; |
| 4590 | } |
| 4591 | EOF |
| 4592 | if test "$safe_stack" = "no"; then |
| 4593 | # Make sure that safe-stack is disabled |
| 4594 | if ! compile_prog "-Werror" ""; then |
| 4595 | # SafeStack was already enabled, try to explicitly remove the feature |
| 4596 | flag="-fno-sanitize=safe-stack" |
| 4597 | if ! compile_prog "-Werror $flag" "$flag"; then |
| 4598 | error_exit "Configure cannot disable SafeStack" |
| 4599 | fi |
| 4600 | QEMU_CFLAGS="$QEMU_CFLAGS $flag" |
| 4601 | QEMU_LDFLAGS="$QEMU_LDFLAGS $flag" |
| 4602 | fi |
| 4603 | else # "$safe_stack" = "" |
| 4604 | # Set safe_stack to yes or no based on pre-existing flags |
| 4605 | if compile_prog "-Werror" ""; then |
| 4606 | safe_stack="no" |
| 4607 | else |
| 4608 | safe_stack="yes" |
| 4609 | if test "$coroutine" != "ucontext"; then |
| 4610 | error_exit "SafeStack is only supported by the coroutine backend ucontext" |
| 4611 | fi |
| 4612 | fi |
| 4613 | fi |
| 4614 | fi |
Peter Lieven | 7d992e4 | 2016-09-27 11:58:45 +0200 | [diff] [blame] | 4615 | |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 4616 | ########################################## |
Aneesh Kumar K.V | d204237 | 2011-10-12 19:11:24 +0530 | [diff] [blame] | 4617 | # check if we have open_by_handle_at |
| 4618 | |
Stefan Weil | 4e1797f | 2012-06-18 22:11:06 +0200 | [diff] [blame] | 4619 | open_by_handle_at=no |
Aneesh Kumar K.V | d204237 | 2011-10-12 19:11:24 +0530 | [diff] [blame] | 4620 | cat > $TMPC << EOF |
| 4621 | #include <fcntl.h> |
Stefan Weil | acc55ba | 2012-06-06 19:35:57 +0000 | [diff] [blame] | 4622 | #if !defined(AT_EMPTY_PATH) |
| 4623 | # error missing definition |
| 4624 | #else |
Stefan Weil | 75cafad | 2011-12-17 09:27:29 +0100 | [diff] [blame] | 4625 | int main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); } |
Stefan Weil | acc55ba | 2012-06-06 19:35:57 +0000 | [diff] [blame] | 4626 | #endif |
Aneesh Kumar K.V | d204237 | 2011-10-12 19:11:24 +0530 | [diff] [blame] | 4627 | EOF |
| 4628 | if compile_prog "" "" ; then |
| 4629 | open_by_handle_at=yes |
| 4630 | fi |
| 4631 | |
Harsh Prateek Bora | e06a765 | 2011-10-12 19:11:25 +0530 | [diff] [blame] | 4632 | ######################################## |
| 4633 | # check if we have linux/magic.h |
| 4634 | |
| 4635 | linux_magic_h=no |
| 4636 | cat > $TMPC << EOF |
| 4637 | #include <linux/magic.h> |
| 4638 | int main(void) { |
Stefan Weil | 75cafad | 2011-12-17 09:27:29 +0100 | [diff] [blame] | 4639 | return 0; |
Harsh Prateek Bora | e06a765 | 2011-10-12 19:11:25 +0530 | [diff] [blame] | 4640 | } |
| 4641 | EOF |
| 4642 | if compile_prog "" "" ; then |
| 4643 | linux_magic_h=yes |
| 4644 | fi |
| 4645 | |
Luiz Capitulino | 8ab1bf1 | 2012-05-23 15:48:04 -0300 | [diff] [blame] | 4646 | ######################################## |
Christian Borntraeger | 541be92 | 2014-09-25 21:07:54 +0200 | [diff] [blame] | 4647 | # check if we have valgrind/valgrind.h |
Kevin Wolf | 3f4349d | 2012-06-29 13:40:27 +0200 | [diff] [blame] | 4648 | |
| 4649 | valgrind_h=no |
| 4650 | cat > $TMPC << EOF |
| 4651 | #include <valgrind/valgrind.h> |
Kevin Wolf | 3f4349d | 2012-06-29 13:40:27 +0200 | [diff] [blame] | 4652 | int main(void) { |
Kevin Wolf | 3f4349d | 2012-06-29 13:40:27 +0200 | [diff] [blame] | 4653 | return 0; |
| 4654 | } |
| 4655 | EOF |
| 4656 | if compile_prog "" "" ; then |
| 4657 | valgrind_h=yes |
| 4658 | fi |
| 4659 | |
| 4660 | ######################################## |
Luiz Capitulino | 8ab1bf1 | 2012-05-23 15:48:04 -0300 | [diff] [blame] | 4661 | # check if environ is declared |
| 4662 | |
| 4663 | has_environ=no |
| 4664 | cat > $TMPC << EOF |
| 4665 | #include <unistd.h> |
| 4666 | int main(void) { |
Blue Swirl | c075a72 | 2012-08-09 20:21:25 +0000 | [diff] [blame] | 4667 | environ = 0; |
Luiz Capitulino | 8ab1bf1 | 2012-05-23 15:48:04 -0300 | [diff] [blame] | 4668 | return 0; |
| 4669 | } |
| 4670 | EOF |
| 4671 | if compile_prog "" "" ; then |
| 4672 | has_environ=yes |
| 4673 | fi |
| 4674 | |
Richard Henderson | 76a347e | 2012-12-28 14:17:02 -0800 | [diff] [blame] | 4675 | ######################################## |
| 4676 | # check if cpuid.h is usable. |
| 4677 | |
Richard Henderson | 76a347e | 2012-12-28 14:17:02 -0800 | [diff] [blame] | 4678 | cat > $TMPC << EOF |
| 4679 | #include <cpuid.h> |
| 4680 | int main(void) { |
Peter Maydell | 774d566 | 2014-02-20 19:42:53 +0000 | [diff] [blame] | 4681 | unsigned a, b, c, d; |
| 4682 | int max = __get_cpuid_max(0, 0); |
| 4683 | |
| 4684 | if (max >= 1) { |
| 4685 | __cpuid(1, a, b, c, d); |
| 4686 | } |
| 4687 | |
| 4688 | if (max >= 7) { |
| 4689 | __cpuid_count(7, 0, a, b, c, d); |
| 4690 | } |
| 4691 | |
| 4692 | return 0; |
Richard Henderson | 76a347e | 2012-12-28 14:17:02 -0800 | [diff] [blame] | 4693 | } |
| 4694 | EOF |
| 4695 | if compile_prog "" "" ; then |
| 4696 | cpuid_h=yes |
| 4697 | fi |
| 4698 | |
Richard Henderson | 5dd8990 | 2017-07-18 18:40:18 -1000 | [diff] [blame] | 4699 | ########################################## |
| 4700 | # avx2 optimization requirement check |
| 4701 | # |
| 4702 | # There is no point enabling this if cpuid.h is not usable, |
| 4703 | # since we won't be able to select the new routines. |
| 4704 | |
Eric Blake | e633a5c | 2019-02-04 20:39:37 -0600 | [diff] [blame] | 4705 | if test "$cpuid_h" = "yes" && test "$avx2_opt" != "no"; then |
Richard Henderson | 5dd8990 | 2017-07-18 18:40:18 -1000 | [diff] [blame] | 4706 | cat > $TMPC << EOF |
| 4707 | #pragma GCC push_options |
| 4708 | #pragma GCC target("avx2") |
| 4709 | #include <cpuid.h> |
| 4710 | #include <immintrin.h> |
| 4711 | static int bar(void *a) { |
| 4712 | __m256i x = *(__m256i *)a; |
| 4713 | return _mm256_testz_si256(x, x); |
| 4714 | } |
| 4715 | int main(int argc, char *argv[]) { return bar(argv[0]); } |
| 4716 | EOF |
| 4717 | if compile_object "" ; then |
| 4718 | avx2_opt="yes" |
Liam Merwick | 86583a0 | 2018-10-19 21:38:59 +0100 | [diff] [blame] | 4719 | else |
| 4720 | avx2_opt="no" |
Richard Henderson | 5dd8990 | 2017-07-18 18:40:18 -1000 | [diff] [blame] | 4721 | fi |
| 4722 | fi |
| 4723 | |
Robert Hoo | 6b8cd44 | 2020-02-29 20:34:34 +0800 | [diff] [blame] | 4724 | ########################################## |
| 4725 | # avx512f optimization requirement check |
| 4726 | # |
| 4727 | # There is no point enabling this if cpuid.h is not usable, |
| 4728 | # since we won't be able to select the new routines. |
| 4729 | # by default, it is turned off. |
| 4730 | # if user explicitly want to enable it, check environment |
| 4731 | |
| 4732 | if test "$cpuid_h" = "yes" && test "$avx512f_opt" = "yes"; then |
| 4733 | cat > $TMPC << EOF |
| 4734 | #pragma GCC push_options |
| 4735 | #pragma GCC target("avx512f") |
| 4736 | #include <cpuid.h> |
| 4737 | #include <immintrin.h> |
| 4738 | static int bar(void *a) { |
| 4739 | __m512i x = *(__m512i *)a; |
| 4740 | return _mm512_test_epi64_mask(x, x); |
| 4741 | } |
| 4742 | int main(int argc, char *argv[]) |
| 4743 | { |
| 4744 | return bar(argv[0]); |
| 4745 | } |
| 4746 | EOF |
| 4747 | if ! compile_object "" ; then |
| 4748 | avx512f_opt="no" |
| 4749 | fi |
| 4750 | else |
| 4751 | avx512f_opt="no" |
| 4752 | fi |
| 4753 | |
Richard Henderson | f540166 | 2013-02-16 12:46:59 -0800 | [diff] [blame] | 4754 | ######################################## |
| 4755 | # check if __[u]int128_t is usable. |
| 4756 | |
| 4757 | int128=no |
| 4758 | cat > $TMPC << EOF |
| 4759 | __int128_t a; |
| 4760 | __uint128_t b; |
| 4761 | int main (void) { |
| 4762 | a = a + b; |
| 4763 | b = a * b; |
Peter Maydell | 464e367 | 2013-06-21 14:01:31 +0100 | [diff] [blame] | 4764 | a = a * a; |
Richard Henderson | f540166 | 2013-02-16 12:46:59 -0800 | [diff] [blame] | 4765 | return 0; |
| 4766 | } |
| 4767 | EOF |
| 4768 | if compile_prog "" "" ; then |
| 4769 | int128=yes |
| 4770 | fi |
Richard Henderson | 76a347e | 2012-12-28 14:17:02 -0800 | [diff] [blame] | 4771 | |
Richard Henderson | 7ebee43 | 2016-06-29 21:10:59 -0700 | [diff] [blame] | 4772 | ######################################### |
| 4773 | # See if 128-bit atomic operations are supported. |
| 4774 | |
| 4775 | atomic128=no |
| 4776 | if test "$int128" = "yes"; then |
| 4777 | cat > $TMPC << EOF |
| 4778 | int main(void) |
| 4779 | { |
| 4780 | unsigned __int128 x = 0, y = 0; |
Thomas Huth | bceac54 | 2021-03-23 16:52:57 +0000 | [diff] [blame] | 4781 | y = __atomic_load(&x, 0); |
| 4782 | __atomic_store(&x, y, 0); |
| 4783 | __atomic_compare_exchange(&x, &y, x, 0, 0, 0); |
Richard Henderson | 7ebee43 | 2016-06-29 21:10:59 -0700 | [diff] [blame] | 4784 | return 0; |
| 4785 | } |
| 4786 | EOF |
| 4787 | if compile_prog "" "" ; then |
| 4788 | atomic128=yes |
| 4789 | fi |
| 4790 | fi |
| 4791 | |
Richard Henderson | e6cd4bb | 2018-08-15 16:31:47 -0700 | [diff] [blame] | 4792 | cmpxchg128=no |
Eric Blake | e633a5c | 2019-02-04 20:39:37 -0600 | [diff] [blame] | 4793 | if test "$int128" = yes && test "$atomic128" = no; then |
Richard Henderson | e6cd4bb | 2018-08-15 16:31:47 -0700 | [diff] [blame] | 4794 | cat > $TMPC << EOF |
| 4795 | int main(void) |
| 4796 | { |
| 4797 | unsigned __int128 x = 0, y = 0; |
| 4798 | __sync_val_compare_and_swap_16(&x, y, x); |
| 4799 | return 0; |
| 4800 | } |
| 4801 | EOF |
| 4802 | if compile_prog "" "" ; then |
| 4803 | cmpxchg128=yes |
| 4804 | fi |
| 4805 | fi |
| 4806 | |
Richard Henderson | df79b99 | 2016-09-02 12:23:57 -0700 | [diff] [blame] | 4807 | ######################################### |
| 4808 | # See if 64-bit atomic operations are supported. |
| 4809 | # Note that without __atomic builtins, we can only |
| 4810 | # assume atomic loads/stores max at pointer size. |
| 4811 | |
| 4812 | cat > $TMPC << EOF |
| 4813 | #include <stdint.h> |
| 4814 | int main(void) |
| 4815 | { |
| 4816 | uint64_t x = 0, y = 0; |
| 4817 | #ifdef __ATOMIC_RELAXED |
Thomas Huth | 5fe4076 | 2020-07-16 12:23:48 +0200 | [diff] [blame] | 4818 | y = __atomic_load_n(&x, __ATOMIC_RELAXED); |
| 4819 | __atomic_store_n(&x, y, __ATOMIC_RELAXED); |
| 4820 | __atomic_compare_exchange_n(&x, &y, x, 0, __ATOMIC_RELAXED, __ATOMIC_RELAXED); |
| 4821 | __atomic_exchange_n(&x, y, __ATOMIC_RELAXED); |
| 4822 | __atomic_fetch_add(&x, y, __ATOMIC_RELAXED); |
Richard Henderson | df79b99 | 2016-09-02 12:23:57 -0700 | [diff] [blame] | 4823 | #else |
| 4824 | typedef char is_host64[sizeof(void *) >= sizeof(uint64_t) ? 1 : -1]; |
| 4825 | __sync_lock_test_and_set(&x, y); |
| 4826 | __sync_val_compare_and_swap(&x, y, 0); |
| 4827 | __sync_fetch_and_add(&x, y); |
| 4828 | #endif |
| 4829 | return 0; |
| 4830 | } |
| 4831 | EOF |
| 4832 | if compile_prog "" "" ; then |
| 4833 | atomic64=yes |
| 4834 | fi |
| 4835 | |
Emilio G. Cota | 26fffe2 | 2018-10-21 13:56:29 -0400 | [diff] [blame] | 4836 | ######################################### |
| 4837 | # See if --dynamic-list is supported by the linker |
| 4838 | ld_dynamic_list="no" |
| 4839 | if test "$static" = "no" ; then |
| 4840 | cat > $TMPTXT <<EOF |
| 4841 | { |
| 4842 | foo; |
| 4843 | }; |
| 4844 | EOF |
| 4845 | |
| 4846 | cat > $TMPC <<EOF |
| 4847 | #include <stdio.h> |
| 4848 | void foo(void); |
| 4849 | |
| 4850 | void foo(void) |
| 4851 | { |
| 4852 | printf("foo\n"); |
| 4853 | } |
| 4854 | |
| 4855 | int main(void) |
| 4856 | { |
| 4857 | foo(); |
| 4858 | return 0; |
| 4859 | } |
| 4860 | EOF |
| 4861 | |
| 4862 | if compile_prog "" "-Wl,--dynamic-list=$TMPTXT" ; then |
| 4863 | ld_dynamic_list="yes" |
| 4864 | fi |
| 4865 | fi |
| 4866 | |
| 4867 | ######################################### |
| 4868 | # See if -exported_symbols_list is supported by the linker |
| 4869 | |
| 4870 | ld_exported_symbols_list="no" |
| 4871 | if test "$static" = "no" ; then |
| 4872 | cat > $TMPTXT <<EOF |
| 4873 | _foo |
| 4874 | EOF |
| 4875 | |
| 4876 | if compile_prog "" "-Wl,-exported_symbols_list,$TMPTXT" ; then |
| 4877 | ld_exported_symbols_list="yes" |
| 4878 | fi |
| 4879 | fi |
| 4880 | |
| 4881 | if test "$plugins" = "yes" && |
| 4882 | test "$ld_dynamic_list" = "no" && |
| 4883 | test "$ld_exported_symbols_list" = "no" ; then |
| 4884 | error_exit \ |
| 4885 | "Plugin support requires dynamic linking and specifying a set of symbols " \ |
| 4886 | "that are exported to plugins. Unfortunately your linker doesn't " \ |
| 4887 | "support the flag (--dynamic-list or -exported_symbols_list) used " \ |
| 4888 | "for this purpose. You can't build with --static." |
| 4889 | fi |
| 4890 | |
Richard Henderson | 1e6e9ac | 2013-02-18 09:11:15 -0800 | [diff] [blame] | 4891 | ######################################## |
| 4892 | # check if getauxval is available. |
| 4893 | |
| 4894 | getauxval=no |
| 4895 | cat > $TMPC << EOF |
| 4896 | #include <sys/auxv.h> |
| 4897 | int main(void) { |
| 4898 | return getauxval(AT_HWCAP) == 0; |
| 4899 | } |
| 4900 | EOF |
| 4901 | if compile_prog "" "" ; then |
| 4902 | getauxval=yes |
| 4903 | fi |
| 4904 | |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 4905 | ######################################## |
| 4906 | # check if ccache is interfering with |
| 4907 | # semantic analysis of macros |
| 4908 | |
John Snow | 5e4dfd3 | 2015-10-28 13:56:40 -0400 | [diff] [blame] | 4909 | unset CCACHE_CPP2 |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 4910 | ccache_cpp2=no |
| 4911 | cat > $TMPC << EOF |
| 4912 | static const int Z = 1; |
| 4913 | #define fn() ({ Z; }) |
| 4914 | #define TAUT(X) ((X) == Z) |
| 4915 | #define PAREN(X, Y) (X == Y) |
| 4916 | #define ID(X) (X) |
| 4917 | int main(int argc, char *argv[]) |
| 4918 | { |
| 4919 | int x = 0, y = 0; |
| 4920 | x = ID(x); |
| 4921 | x = fn(); |
| 4922 | fn(); |
| 4923 | if (PAREN(x, y)) return 0; |
| 4924 | if (TAUT(Z)) return 0; |
| 4925 | return 0; |
| 4926 | } |
| 4927 | EOF |
| 4928 | |
| 4929 | if ! compile_object "-Werror"; then |
| 4930 | ccache_cpp2=yes |
| 4931 | fi |
| 4932 | |
John Snow | b553a04 | 2015-11-03 15:43:42 -0500 | [diff] [blame] | 4933 | ################################################# |
| 4934 | # clang does not support glibc + FORTIFY_SOURCE. |
| 4935 | |
| 4936 | if test "$fortify_source" != "no"; then |
| 4937 | if echo | $cc -dM -E - | grep __clang__ > /dev/null 2>&1 ; then |
| 4938 | fortify_source="no"; |
Peter Maydell | e189091 | 2017-06-26 16:25:24 +0100 | [diff] [blame] | 4939 | elif test -n "$cxx" && has $cxx && |
John Snow | cfcc7c1 | 2015-11-12 11:29:49 -0500 | [diff] [blame] | 4940 | echo | $cxx -dM -E - | grep __clang__ >/dev/null 2>&1 ; then |
John Snow | b553a04 | 2015-11-03 15:43:42 -0500 | [diff] [blame] | 4941 | fortify_source="no"; |
| 4942 | else |
| 4943 | fortify_source="yes" |
| 4944 | fi |
| 4945 | fi |
| 4946 | |
Fam Zheng | 1efad06 | 2018-06-01 17:26:43 +0800 | [diff] [blame] | 4947 | ############################################### |
| 4948 | # Check if copy_file_range is provided by glibc |
| 4949 | have_copy_file_range=no |
| 4950 | cat > $TMPC << EOF |
| 4951 | #include <unistd.h> |
| 4952 | int main(void) { |
| 4953 | copy_file_range(0, NULL, 0, NULL, 0, 0); |
| 4954 | return 0; |
| 4955 | } |
| 4956 | EOF |
| 4957 | if compile_prog "" "" ; then |
| 4958 | have_copy_file_range=yes |
| 4959 | fi |
| 4960 | |
Aneesh Kumar K.V | d204237 | 2011-10-12 19:11:24 +0530 | [diff] [blame] | 4961 | ########################################## |
Jan Vesely | 277abf1 | 2016-04-29 13:15:23 -0400 | [diff] [blame] | 4962 | # check if struct fsxattr is available via linux/fs.h |
| 4963 | |
| 4964 | have_fsxattr=no |
| 4965 | cat > $TMPC << EOF |
| 4966 | #include <linux/fs.h> |
| 4967 | struct fsxattr foo; |
| 4968 | int main(void) { |
| 4969 | return 0; |
| 4970 | } |
| 4971 | EOF |
| 4972 | if compile_prog "" "" ; then |
| 4973 | have_fsxattr=yes |
| 4974 | fi |
| 4975 | |
Peter Maydell | b66e10e | 2016-06-08 18:34:32 +0100 | [diff] [blame] | 4976 | ########################################## |
Paolo Bonzini | a40161c | 2018-02-16 10:05:23 +0100 | [diff] [blame] | 4977 | # check for usable membarrier system call |
| 4978 | if test "$membarrier" = "yes"; then |
| 4979 | have_membarrier=no |
| 4980 | if test "$mingw32" = "yes" ; then |
| 4981 | have_membarrier=yes |
| 4982 | elif test "$linux" = "yes" ; then |
| 4983 | cat > $TMPC << EOF |
| 4984 | #include <linux/membarrier.h> |
| 4985 | #include <sys/syscall.h> |
| 4986 | #include <unistd.h> |
| 4987 | #include <stdlib.h> |
| 4988 | int main(void) { |
| 4989 | syscall(__NR_membarrier, MEMBARRIER_CMD_QUERY, 0); |
| 4990 | syscall(__NR_membarrier, MEMBARRIER_CMD_SHARED, 0); |
| 4991 | exit(0); |
| 4992 | } |
| 4993 | EOF |
| 4994 | if compile_prog "" "" ; then |
| 4995 | have_membarrier=yes |
| 4996 | fi |
| 4997 | fi |
| 4998 | if test "$have_membarrier" = "no"; then |
| 4999 | feature_not_found "membarrier" "membarrier system call not available" |
| 5000 | fi |
| 5001 | else |
| 5002 | # Do not enable it by default even for Mingw32, because it doesn't |
| 5003 | # work on Wine. |
| 5004 | membarrier=no |
| 5005 | fi |
| 5006 | |
| 5007 | ########################################## |
Peter Maydell | b66e10e | 2016-06-08 18:34:32 +0100 | [diff] [blame] | 5008 | # check if rtnetlink.h exists and is useful |
Laurent Vivier | 575b22b | 2016-06-02 22:14:15 +0200 | [diff] [blame] | 5009 | have_rtnetlink=no |
| 5010 | cat > $TMPC << EOF |
| 5011 | #include <linux/rtnetlink.h> |
| 5012 | int main(void) { |
| 5013 | return IFLA_PROTO_DOWN; |
| 5014 | } |
| 5015 | EOF |
| 5016 | if compile_prog "" "" ; then |
| 5017 | have_rtnetlink=yes |
| 5018 | fi |
| 5019 | |
Stefan Hajnoczi | 6a02c80 | 2016-10-14 10:00:55 +0100 | [diff] [blame] | 5020 | ########################################## |
| 5021 | # check for usable AF_VSOCK environment |
| 5022 | have_af_vsock=no |
| 5023 | cat > $TMPC << EOF |
| 5024 | #include <errno.h> |
| 5025 | #include <sys/types.h> |
| 5026 | #include <sys/socket.h> |
| 5027 | #if !defined(AF_VSOCK) |
| 5028 | # error missing AF_VSOCK flag |
| 5029 | #endif |
| 5030 | #include <linux/vm_sockets.h> |
| 5031 | int main(void) { |
| 5032 | int sock, ret; |
| 5033 | struct sockaddr_vm svm; |
| 5034 | socklen_t len = sizeof(svm); |
| 5035 | sock = socket(AF_VSOCK, SOCK_STREAM, 0); |
| 5036 | ret = getpeername(sock, (struct sockaddr *)&svm, &len); |
| 5037 | if ((ret == -1) && (errno == ENOTCONN)) { |
| 5038 | return 0; |
| 5039 | } |
| 5040 | return -1; |
| 5041 | } |
| 5042 | EOF |
| 5043 | if compile_prog "" "" ; then |
| 5044 | have_af_vsock=yes |
| 5045 | fi |
| 5046 | |
Longpeng(Mike) | f0d92b5 | 2017-07-14 14:04:05 -0400 | [diff] [blame] | 5047 | ########################################## |
| 5048 | # check for usable AF_ALG environment |
Thomas Huth | 4f67366 | 2020-02-03 16:55:34 +0100 | [diff] [blame] | 5049 | have_afalg=no |
Longpeng(Mike) | f0d92b5 | 2017-07-14 14:04:05 -0400 | [diff] [blame] | 5050 | cat > $TMPC << EOF |
| 5051 | #include <errno.h> |
| 5052 | #include <sys/types.h> |
| 5053 | #include <sys/socket.h> |
| 5054 | #include <linux/if_alg.h> |
| 5055 | int main(void) { |
| 5056 | int sock; |
| 5057 | sock = socket(AF_ALG, SOCK_SEQPACKET, 0); |
| 5058 | return sock; |
| 5059 | } |
| 5060 | EOF |
| 5061 | if compile_prog "" "" ; then |
| 5062 | have_afalg=yes |
| 5063 | fi |
| 5064 | if test "$crypto_afalg" = "yes" |
| 5065 | then |
| 5066 | if test "$have_afalg" != "yes" |
| 5067 | then |
| 5068 | error_exit "AF_ALG requested but could not be detected" |
| 5069 | fi |
| 5070 | fi |
| 5071 | |
| 5072 | |
James Clarke | 6969ec6 | 2016-06-06 12:02:50 +0100 | [diff] [blame] | 5073 | ################################################# |
Christopher Covington | 4d04351 | 2016-12-28 15:04:33 -0500 | [diff] [blame] | 5074 | # check for sysmacros.h |
| 5075 | |
| 5076 | have_sysmacros=no |
| 5077 | cat > $TMPC << EOF |
| 5078 | #include <sys/sysmacros.h> |
| 5079 | int main(void) { |
| 5080 | return makedev(0, 0); |
| 5081 | } |
| 5082 | EOF |
| 5083 | if compile_prog "" "" ; then |
| 5084 | have_sysmacros=yes |
| 5085 | fi |
| 5086 | |
| 5087 | ########################################## |
Andreas Grapentin | 49e00a1 | 2017-03-14 17:59:53 +0100 | [diff] [blame] | 5088 | # check for _Static_assert() |
| 5089 | |
| 5090 | have_static_assert=no |
| 5091 | cat > $TMPC << EOF |
| 5092 | _Static_assert(1, "success"); |
| 5093 | int main(void) { |
| 5094 | return 0; |
| 5095 | } |
| 5096 | EOF |
| 5097 | if compile_prog "" "" ; then |
| 5098 | have_static_assert=yes |
| 5099 | fi |
| 5100 | |
| 5101 | ########################################## |
Tomáš Golembiovský | e674605 | 2017-07-17 15:58:33 +0200 | [diff] [blame] | 5102 | # check for utmpx.h, it is missing e.g. on OpenBSD |
| 5103 | |
| 5104 | have_utmpx=no |
| 5105 | cat > $TMPC << EOF |
| 5106 | #include <utmpx.h> |
| 5107 | struct utmpx user_info; |
| 5108 | int main(void) { |
| 5109 | return 0; |
| 5110 | } |
| 5111 | EOF |
| 5112 | if compile_prog "" "" ; then |
| 5113 | have_utmpx=yes |
| 5114 | fi |
| 5115 | |
| 5116 | ########################################## |
Richard Henderson | db1ed1a | 2019-03-13 20:57:28 -0700 | [diff] [blame] | 5117 | # check for getrandom() |
| 5118 | |
| 5119 | have_getrandom=no |
| 5120 | cat > $TMPC << EOF |
| 5121 | #include <sys/random.h> |
| 5122 | int main(void) { |
| 5123 | return getrandom(0, 0, GRND_NONBLOCK); |
| 5124 | } |
| 5125 | EOF |
| 5126 | if compile_prog "" "" ; then |
| 5127 | have_getrandom=yes |
| 5128 | fi |
| 5129 | |
| 5130 | ########################################## |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 5131 | # checks for sanitizers |
| 5132 | |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 5133 | have_asan=no |
| 5134 | have_ubsan=no |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 5135 | have_asan_iface_h=no |
| 5136 | have_asan_iface_fiber=no |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 5137 | |
| 5138 | if test "$sanitizers" = "yes" ; then |
Marc-André Lureau | b9f44da | 2018-02-15 22:25:47 +0100 | [diff] [blame] | 5139 | write_c_skeleton |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 5140 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" ""; then |
| 5141 | have_asan=yes |
| 5142 | fi |
Marc-André Lureau | b9f44da | 2018-02-15 22:25:47 +0100 | [diff] [blame] | 5143 | |
| 5144 | # we could use a simple skeleton for flags checks, but this also |
| 5145 | # detect the static linking issue of ubsan, see also: |
| 5146 | # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84285 |
| 5147 | cat > $TMPC << EOF |
| 5148 | #include <stdlib.h> |
| 5149 | int main(void) { |
| 5150 | void *tmp = malloc(10); |
Leonid Bloch | f2dfe54 | 2020-05-25 01:12:04 +0300 | [diff] [blame] | 5151 | if (tmp != NULL) { |
| 5152 | return *(int *)(tmp + 2); |
| 5153 | } |
Olaf Hering | d1abf3f | 2020-07-07 19:13:25 +0200 | [diff] [blame] | 5154 | return 1; |
Marc-André Lureau | b9f44da | 2018-02-15 22:25:47 +0100 | [diff] [blame] | 5155 | } |
| 5156 | EOF |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 5157 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=undefined" ""; then |
| 5158 | have_ubsan=yes |
| 5159 | fi |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 5160 | |
| 5161 | if check_include "sanitizer/asan_interface.h" ; then |
| 5162 | have_asan_iface_h=yes |
| 5163 | fi |
| 5164 | |
| 5165 | cat > $TMPC << EOF |
| 5166 | #include <sanitizer/asan_interface.h> |
| 5167 | int main(void) { |
| 5168 | __sanitizer_start_switch_fiber(0, 0, 0); |
| 5169 | return 0; |
| 5170 | } |
| 5171 | EOF |
| 5172 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" "" ; then |
| 5173 | have_asan_iface_fiber=yes |
| 5174 | fi |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 5175 | fi |
| 5176 | |
| 5177 | ########################################## |
Alexander Bulekov | adc2802 | 2020-02-19 23:11:14 -0500 | [diff] [blame] | 5178 | # checks for fuzzer |
Alexander Bulekov | 54c9e41 | 2020-09-02 13:36:51 -0400 | [diff] [blame] | 5179 | if test "$fuzzing" = "yes" && test -z "${LIB_FUZZING_ENGINE+xxx}"; then |
Alexander Bulekov | adc2802 | 2020-02-19 23:11:14 -0500 | [diff] [blame] | 5180 | write_c_fuzzer_skeleton |
Alexander Bulekov | dd01626 | 2020-07-06 15:55:31 -0400 | [diff] [blame] | 5181 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=fuzzer" ""; then |
Paolo Bonzini | 64ed6f9 | 2020-08-03 17:04:25 +0200 | [diff] [blame] | 5182 | have_fuzzer=yes |
| 5183 | else |
| 5184 | error_exit "Your compiler doesn't support -fsanitize=fuzzer" |
| 5185 | exit 1 |
Alexander Bulekov | adc2802 | 2020-02-19 23:11:14 -0500 | [diff] [blame] | 5186 | fi |
| 5187 | fi |
| 5188 | |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 5189 | # Thread sanitizer is, for now, much noisier than the other sanitizers; |
| 5190 | # keep it separate until that is not the case. |
| 5191 | if test "$tsan" = "yes" && test "$sanitizers" = "yes"; then |
| 5192 | error_exit "TSAN is not supported with other sanitiziers." |
| 5193 | fi |
| 5194 | have_tsan=no |
| 5195 | have_tsan_iface_fiber=no |
| 5196 | if test "$tsan" = "yes" ; then |
| 5197 | write_c_skeleton |
| 5198 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then |
| 5199 | have_tsan=yes |
| 5200 | fi |
| 5201 | cat > $TMPC << EOF |
| 5202 | #include <sanitizer/tsan_interface.h> |
| 5203 | int main(void) { |
| 5204 | __tsan_create_fiber(0); |
| 5205 | return 0; |
| 5206 | } |
| 5207 | EOF |
| 5208 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then |
| 5209 | have_tsan_iface_fiber=yes |
| 5210 | fi |
| 5211 | fi |
| 5212 | |
Alexander Bulekov | adc2802 | 2020-02-19 23:11:14 -0500 | [diff] [blame] | 5213 | ########################################## |
Junyan He | 1782440 | 2018-07-18 15:47:59 +0800 | [diff] [blame] | 5214 | # check for libpmem |
| 5215 | |
| 5216 | if test "$libpmem" != "no"; then |
| 5217 | if $pkg_config --exists "libpmem"; then |
| 5218 | libpmem="yes" |
| 5219 | libpmem_libs=$($pkg_config --libs libpmem) |
| 5220 | libpmem_cflags=$($pkg_config --cflags libpmem) |
Junyan He | 1782440 | 2018-07-18 15:47:59 +0800 | [diff] [blame] | 5221 | else |
| 5222 | if test "$libpmem" = "yes" ; then |
| 5223 | feature_not_found "libpmem" "Install nvml or pmdk" |
| 5224 | fi |
| 5225 | libpmem="no" |
| 5226 | fi |
| 5227 | fi |
| 5228 | |
| 5229 | ########################################## |
Jingqi Liu | 21b2eca | 2020-04-29 16:50:11 +0800 | [diff] [blame] | 5230 | # check for libdaxctl |
| 5231 | |
| 5232 | if test "$libdaxctl" != "no"; then |
| 5233 | if $pkg_config --atleast-version=57 "libdaxctl"; then |
| 5234 | libdaxctl="yes" |
| 5235 | libdaxctl_libs=$($pkg_config --libs libdaxctl) |
| 5236 | libdaxctl_cflags=$($pkg_config --cflags libdaxctl) |
Jingqi Liu | 21b2eca | 2020-04-29 16:50:11 +0800 | [diff] [blame] | 5237 | else |
| 5238 | if test "$libdaxctl" = "yes" ; then |
| 5239 | feature_not_found "libdaxctl" "Install libdaxctl" |
| 5240 | fi |
| 5241 | libdaxctl="no" |
| 5242 | fi |
| 5243 | fi |
| 5244 | |
| 5245 | ########################################## |
Marc-André Lureau | 675b9b5 | 2019-02-12 17:25:23 +0100 | [diff] [blame] | 5246 | # check for slirp |
| 5247 | |
| 5248 | case "$slirp" in |
Paolo Bonzini | 4d34a86 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 5249 | auto | enabled | internal) |
| 5250 | # Simpler to always update submodule, even if not needed. |
Paolo Bonzini | 2d652f2 | 2021-05-12 09:21:56 +0200 | [diff] [blame] | 5251 | git_submodules="${git_submodules} slirp" |
Marc-André Lureau | 675b9b5 | 2019-02-12 17:25:23 +0100 | [diff] [blame] | 5252 | ;; |
| 5253 | esac |
| 5254 | |
Joelle van Dyne | b8e0c49 | 2021-03-15 11:03:41 -0700 | [diff] [blame] | 5255 | # Check for slirp smbd dupport |
| 5256 | : ${smbd=${SMBD-/usr/sbin/smbd}} |
| 5257 | if test "$slirp_smbd" != "no" ; then |
| 5258 | if test "$mingw32" = "yes" ; then |
| 5259 | if test "$slirp_smbd" = "yes" ; then |
| 5260 | error_exit "Host smbd not supported on this platform." |
| 5261 | fi |
| 5262 | slirp_smbd=no |
| 5263 | else |
| 5264 | slirp_smbd=yes |
| 5265 | fi |
| 5266 | fi |
| 5267 | |
Alexey Krasikov | 54e7aac | 2020-05-25 14:19:12 +0300 | [diff] [blame] | 5268 | ########################################## |
| 5269 | # check for usable __NR_keyctl syscall |
| 5270 | |
| 5271 | if test "$linux" = "yes" ; then |
| 5272 | |
| 5273 | have_keyring=no |
| 5274 | cat > $TMPC << EOF |
| 5275 | #include <errno.h> |
| 5276 | #include <asm/unistd.h> |
| 5277 | #include <linux/keyctl.h> |
| 5278 | #include <unistd.h> |
| 5279 | int main(void) { |
| 5280 | return syscall(__NR_keyctl, KEYCTL_READ, 0, NULL, NULL, 0); |
| 5281 | } |
| 5282 | EOF |
| 5283 | if compile_prog "" "" ; then |
| 5284 | have_keyring=yes |
| 5285 | fi |
| 5286 | fi |
| 5287 | if test "$secret_keyring" != "no" |
| 5288 | then |
David Edmondson | b418d26 | 2020-07-01 14:56:15 +0100 | [diff] [blame] | 5289 | if test "$have_keyring" = "yes" |
Alexey Krasikov | 54e7aac | 2020-05-25 14:19:12 +0300 | [diff] [blame] | 5290 | then |
| 5291 | secret_keyring=yes |
| 5292 | else |
| 5293 | if test "$secret_keyring" = "yes" |
| 5294 | then |
| 5295 | error_exit "syscall __NR_keyctl requested, \ |
| 5296 | but not implemented on your system" |
| 5297 | else |
| 5298 | secret_keyring=no |
| 5299 | fi |
| 5300 | fi |
| 5301 | fi |
| 5302 | |
Alexey Krasikov | 9250036 | 2020-05-25 14:19:13 +0300 | [diff] [blame] | 5303 | ########################################## |
Juan Quintela | e86ecd4 | 2009-08-03 14:45:59 +0200 | [diff] [blame] | 5304 | # End of CC checks |
| 5305 | # After here, no more $cc or $ld runs |
| 5306 | |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 5307 | write_c_skeleton |
| 5308 | |
Blue Swirl | 1d728c3 | 2012-05-01 18:45:39 +0000 | [diff] [blame] | 5309 | if test "$gcov" = "yes" ; then |
Marc-André Lureau | bf0e56a | 2019-10-04 17:35:16 +0400 | [diff] [blame] | 5310 | : |
John Snow | b553a04 | 2015-11-03 15:43:42 -0500 | [diff] [blame] | 5311 | elif test "$fortify_source" = "yes" ; then |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 5312 | QEMU_CFLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $QEMU_CFLAGS" |
| 5313 | debug=no |
| 5314 | fi |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 5315 | |
| 5316 | case "$ARCH" in |
| 5317 | alpha) |
| 5318 | # Ensure there's only a single GP |
| 5319 | QEMU_CFLAGS="-msmall-data $QEMU_CFLAGS" |
| 5320 | ;; |
| 5321 | esac |
| 5322 | |
| 5323 | if test "$gprof" = "yes" ; then |
| 5324 | QEMU_CFLAGS="-p $QEMU_CFLAGS" |
| 5325 | QEMU_LDFLAGS="-p $QEMU_LDFLAGS" |
| 5326 | fi |
Juan Quintela | a316e37 | 2009-09-30 01:10:55 +0200 | [diff] [blame] | 5327 | |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 5328 | if test "$have_asan" = "yes"; then |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 5329 | QEMU_CFLAGS="-fsanitize=address $QEMU_CFLAGS" |
| 5330 | QEMU_LDFLAGS="-fsanitize=address $QEMU_LDFLAGS" |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 5331 | if test "$have_asan_iface_h" = "no" ; then |
| 5332 | echo "ASAN build enabled, but ASAN header missing." \ |
| 5333 | "Without code annotation, the report may be inferior." |
| 5334 | elif test "$have_asan_iface_fiber" = "no" ; then |
| 5335 | echo "ASAN build enabled, but ASAN header is too old." \ |
| 5336 | "Without code annotation, the report may be inferior." |
| 5337 | fi |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 5338 | fi |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 5339 | if test "$have_tsan" = "yes" ; then |
| 5340 | if test "$have_tsan_iface_fiber" = "yes" ; then |
| 5341 | QEMU_CFLAGS="-fsanitize=thread $QEMU_CFLAGS" |
| 5342 | QEMU_LDFLAGS="-fsanitize=thread $QEMU_LDFLAGS" |
| 5343 | else |
| 5344 | error_exit "Cannot enable TSAN due to missing fiber annotation interface." |
| 5345 | fi |
| 5346 | elif test "$tsan" = "yes" ; then |
| 5347 | error_exit "Cannot enable TSAN due to missing sanitize thread interface." |
| 5348 | fi |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 5349 | if test "$have_ubsan" = "yes"; then |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 5350 | QEMU_CFLAGS="-fsanitize=undefined $QEMU_CFLAGS" |
| 5351 | QEMU_LDFLAGS="-fsanitize=undefined $QEMU_LDFLAGS" |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 5352 | fi |
| 5353 | |
Peter Lieven | 6542aa9 | 2014-02-03 10:26:13 +0100 | [diff] [blame] | 5354 | ########################################## |
Tomáš Golembiovský | 3efac6e | 2018-10-23 13:23:10 +0200 | [diff] [blame] | 5355 | |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 5356 | # Exclude --warn-common with TSan to suppress warnings from the TSan libraries. |
| 5357 | if test "$solaris" = "no" && test "$tsan" = "no"; then |
Juan Quintela | e86ecd4 | 2009-08-03 14:45:59 +0200 | [diff] [blame] | 5358 | if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 5359 | QEMU_LDFLAGS="-Wl,--warn-common $QEMU_LDFLAGS" |
Juan Quintela | e86ecd4 | 2009-08-03 14:45:59 +0200 | [diff] [blame] | 5360 | fi |
| 5361 | fi |
| 5362 | |
Blue Swirl | 952afb7 | 2010-09-19 08:36:34 +0000 | [diff] [blame] | 5363 | # Use ASLR, no-SEH and DEP if available |
| 5364 | if test "$mingw32" = "yes" ; then |
Mark Cave-Ayland | cb8baa7 | 2020-10-05 14:34:34 +0100 | [diff] [blame] | 5365 | flags="--no-seh --nxcompat" |
| 5366 | |
| 5367 | # Disable ASLR for debug builds to allow debugging with gdb |
| 5368 | if test "$debug" = "no" ; then |
| 5369 | flags="--dynamicbase $flags" |
| 5370 | fi |
| 5371 | |
| 5372 | for flag in $flags; do |
Christian Borntraeger | e9a3591 | 2017-08-23 12:16:23 +0200 | [diff] [blame] | 5373 | if ld_has $flag ; then |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 5374 | QEMU_LDFLAGS="-Wl,$flag $QEMU_LDFLAGS" |
Blue Swirl | 952afb7 | 2010-09-19 08:36:34 +0000 | [diff] [blame] | 5375 | fi |
| 5376 | done |
| 5377 | fi |
| 5378 | |
Kamil Rytarowski | e058034 | 2017-07-14 09:33:44 +0100 | [diff] [blame] | 5379 | # We can only support ivshmem if we have eventfd |
| 5380 | if [ "$eventfd" = "yes" ]; then |
| 5381 | ivshmem=yes |
| 5382 | fi |
| 5383 | |
Michael Roth | 9d6bc27 | 2015-08-26 10:49:13 -0500 | [diff] [blame] | 5384 | # Probe for guest agent support/options |
| 5385 | |
Michael Tokarev | e8ef31a | 2013-07-31 14:22:07 +0400 | [diff] [blame] | 5386 | if [ "$guest_agent" != "no" ]; then |
Laurent Vivier | a512590 | 2019-04-01 16:12:20 +0200 | [diff] [blame] | 5387 | if [ "$softmmu" = no -a "$want_tools" = no ] ; then |
| 5388 | guest_agent=no |
| 5389 | elif [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32" = "yes" ] ; then |
Michael Tokarev | e8ef31a | 2013-07-31 14:22:07 +0400 | [diff] [blame] | 5390 | guest_agent=yes |
| 5391 | elif [ "$guest_agent" != yes ]; then |
| 5392 | guest_agent=no |
| 5393 | else |
| 5394 | error_exit "Guest agent is not supported on this platform" |
Paolo Bonzini | ca35f78 | 2010-05-26 16:08:29 +0200 | [diff] [blame] | 5395 | fi |
Paolo Bonzini | 00c705f | 2012-05-29 11:40:24 +0200 | [diff] [blame] | 5396 | fi |
Paolo Bonzini | ca35f78 | 2010-05-26 16:08:29 +0200 | [diff] [blame] | 5397 | |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 5398 | # Guest agent Windows MSI package |
Michael Roth | 9d6bc27 | 2015-08-26 10:49:13 -0500 | [diff] [blame] | 5399 | |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 5400 | if test "$QEMU_GA_MANUFACTURER" = ""; then |
| 5401 | QEMU_GA_MANUFACTURER=QEMU |
| 5402 | fi |
| 5403 | if test "$QEMU_GA_DISTRO" = ""; then |
| 5404 | QEMU_GA_DISTRO=Linux |
| 5405 | fi |
| 5406 | if test "$QEMU_GA_VERSION" = ""; then |
| 5407 | QEMU_GA_VERSION=$(cat $source_path/VERSION) |
Michael Roth | 9d6bc27 | 2015-08-26 10:49:13 -0500 | [diff] [blame] | 5408 | fi |
| 5409 | |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 5410 | QEMU_GA_MSI_MINGW_DLL_PATH="$($pkg_config --variable=prefix glib-2.0)/bin" |
Michael Roth | 9d6bc27 | 2015-08-26 10:49:13 -0500 | [diff] [blame] | 5411 | |
Paolo Bonzini | ca35f78 | 2010-05-26 16:08:29 +0200 | [diff] [blame] | 5412 | # Mac OS X ships with a broken assembler |
| 5413 | roms= |
Eric Blake | e633a5c | 2019-02-04 20:39:37 -0600 | [diff] [blame] | 5414 | if { test "$cpu" = "i386" || test "$cpu" = "x86_64"; } && \ |
| 5415 | test "$targetos" != "Darwin" && test "$targetos" != "SunOS" && \ |
Thomas Huth | 7000a12 | 2020-11-14 10:49:31 +0100 | [diff] [blame] | 5416 | test "$targetos" != "Haiku" && test "$softmmu" = yes ; then |
Peter Maydell | e57218b | 2016-08-08 17:11:28 +0100 | [diff] [blame] | 5417 | # Different host OS linkers have different ideas about the name of the ELF |
Brad Smith | c65d5e4 | 2017-11-07 18:46:11 -0500 | [diff] [blame] | 5418 | # emulation. Linux and OpenBSD/amd64 use 'elf_i386'; FreeBSD uses the _fbsd |
| 5419 | # variant; OpenBSD/i386 uses the _obsd variant; and Windows uses i386pe. |
| 5420 | for emu in elf_i386 elf_i386_fbsd elf_i386_obsd i386pe; do |
Peter Maydell | e57218b | 2016-08-08 17:11:28 +0100 | [diff] [blame] | 5421 | if "$ld" -verbose 2>&1 | grep -q "^[[:space:]]*$emu[[:space:]]*$"; then |
| 5422 | ld_i386_emulation="$emu" |
| 5423 | roms="optionrom" |
| 5424 | break |
| 5425 | fi |
| 5426 | done |
Paolo Bonzini | ca35f78 | 2010-05-26 16:08:29 +0200 | [diff] [blame] | 5427 | fi |
Paolo Bonzini | ca35f78 | 2010-05-26 16:08:29 +0200 | [diff] [blame] | 5428 | |
Thomas Huth | 2e33c3f | 2019-01-14 13:52:26 +0100 | [diff] [blame] | 5429 | # Only build s390-ccw bios if we're on s390x and the compiler has -march=z900 |
Thomas Huth | a5b2afd | 2021-05-02 13:22:21 +0200 | [diff] [blame] | 5430 | # or -march=z10 (which is the lowest architecture level that Clang supports) |
Christian Borntraeger | 9933c30 | 2013-04-23 01:23:03 +0000 | [diff] [blame] | 5431 | if test "$cpu" = "s390x" ; then |
Thomas Huth | 2e33c3f | 2019-01-14 13:52:26 +0100 | [diff] [blame] | 5432 | write_c_skeleton |
Thomas Huth | a5b2afd | 2021-05-02 13:22:21 +0200 | [diff] [blame] | 5433 | compile_prog "-march=z900" "" |
| 5434 | has_z900=$? |
| 5435 | if [ $has_z900 = 0 ] || compile_prog "-march=z10" ""; then |
| 5436 | if [ $has_z900 != 0 ]; then |
| 5437 | echo "WARNING: Your compiler does not support the z900!" |
| 5438 | echo " The s390-ccw bios will only work with guest CPUs >= z10." |
| 5439 | fi |
Thomas Huth | 2e33c3f | 2019-01-14 13:52:26 +0100 | [diff] [blame] | 5440 | roms="$roms s390-ccw" |
Philippe Mathieu-Daudé | 1ef6bfc | 2020-06-15 09:49:19 +0200 | [diff] [blame] | 5441 | # SLOF is required for building the s390-ccw firmware on s390x, |
| 5442 | # since it is using the libnet code from SLOF for network booting. |
Paolo Bonzini | 2d652f2 | 2021-05-12 09:21:56 +0200 | [diff] [blame] | 5443 | git_submodules="${git_submodules} roms/SLOF" |
Thomas Huth | 2e33c3f | 2019-01-14 13:52:26 +0100 | [diff] [blame] | 5444 | fi |
Christian Borntraeger | 9933c30 | 2013-04-23 01:23:03 +0000 | [diff] [blame] | 5445 | fi |
| 5446 | |
Bruno Dominguez | 11cde1c | 2017-06-06 14:07:47 +0100 | [diff] [blame] | 5447 | # Check that the C++ compiler exists and works with the C compiler. |
| 5448 | # All the QEMU_CXXFLAGS are based on QEMU_CFLAGS. Keep this at the end to don't miss any other that could be added. |
| 5449 | if has $cxx; then |
| 5450 | cat > $TMPC <<EOF |
| 5451 | int c_function(void); |
| 5452 | int main(void) { return c_function(); } |
| 5453 | EOF |
| 5454 | |
| 5455 | compile_object |
| 5456 | |
| 5457 | cat > $TMPCXX <<EOF |
| 5458 | extern "C" { |
| 5459 | int c_function(void); |
| 5460 | } |
| 5461 | int c_function(void) { return 42; } |
| 5462 | EOF |
| 5463 | |
| 5464 | update_cxxflags |
| 5465 | |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 5466 | if do_cxx $CXXFLAGS $CONFIGURE_CXXFLAGS $QEMU_CXXFLAGS -o $TMPE $TMPCXX $TMPO $QEMU_LDFLAGS; then |
Bruno Dominguez | 11cde1c | 2017-06-06 14:07:47 +0100 | [diff] [blame] | 5467 | # C++ compiler $cxx works ok with C compiler $cc |
| 5468 | : |
| 5469 | else |
| 5470 | echo "C++ compiler $cxx does not work with C compiler $cc" |
| 5471 | echo "Disabling C++ specific optional code" |
| 5472 | cxx= |
| 5473 | fi |
| 5474 | else |
| 5475 | echo "No C++ compiler available; disabling C++ specific optional code" |
| 5476 | cxx= |
| 5477 | fi |
| 5478 | |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 5479 | if !(GIT="$git" "$source_path/scripts/git-submodule.sh" "$git_submodules_action" "$git_submodules"); then |
| 5480 | exit 1 |
Yonggang Luo | 5d91a2e | 2020-09-03 01:00:49 +0800 | [diff] [blame] | 5481 | fi |
Yonggang Luo | 5d91a2e | 2020-09-03 01:00:49 +0800 | [diff] [blame] | 5482 | |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 5483 | config_host_mak="config-host.mak" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 5484 | |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 5485 | echo "# Automatically generated by configure - do not modify" > $config_host_mak |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 5486 | echo >> $config_host_mak |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 5487 | |
Paolo Bonzini | e6c3b0f | 2010-10-21 10:18:35 +0200 | [diff] [blame] | 5488 | echo all: >> $config_host_mak |
Daniel P. Berrange | cc84d63 | 2017-10-20 15:02:43 +0100 | [diff] [blame] | 5489 | echo "GIT=$git" >> $config_host_mak |
Daniel P. Berrange | aef45d5 | 2017-09-29 11:11:56 +0100 | [diff] [blame] | 5490 | echo "GIT_SUBMODULES=$git_submodules" >> $config_host_mak |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 5491 | echo "GIT_SUBMODULES_ACTION=$git_submodules_action" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 5492 | |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 5493 | echo "ARCH=$ARCH" >> $config_host_mak |
Paolo Bonzini | 727e528 | 2013-04-17 16:26:43 +0200 | [diff] [blame] | 5494 | |
aurel32 | f839394 | 2009-04-13 18:45:38 +0000 | [diff] [blame] | 5495 | if test "$debug_tcg" = "yes" ; then |
Juan Quintela | 2358a49 | 2009-07-27 16:13:25 +0200 | [diff] [blame] | 5496 | echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak |
aurel32 | f839394 | 2009-04-13 18:45:38 +0000 | [diff] [blame] | 5497 | fi |
aliguori | 1625af8 | 2009-04-05 17:41:02 +0000 | [diff] [blame] | 5498 | if test "$strip_opt" = "yes" ; then |
Hollis Blanchard | 52ba784 | 2010-08-04 17:21:34 -0700 | [diff] [blame] | 5499 | echo "STRIP=${strip}" >> $config_host_mak |
aliguori | 1625af8 | 2009-04-05 17:41:02 +0000 | [diff] [blame] | 5500 | fi |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 5501 | if test "$bigendian" = "yes" ; then |
Juan Quintela | e2542fe | 2009-07-27 16:13:06 +0200 | [diff] [blame] | 5502 | echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 5503 | fi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 5504 | if test "$mingw32" = "yes" ; then |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 5505 | echo "CONFIG_WIN32=y" >> $config_host_mak |
Tomoki Sekiyama | d9840e2 | 2013-08-07 11:40:03 -0400 | [diff] [blame] | 5506 | if test "$guest_agent_with_vss" = "yes" ; then |
| 5507 | echo "CONFIG_QGA_VSS=y" >> $config_host_mak |
Michael Roth | f33ca81 | 2015-08-26 16:19:41 -0500 | [diff] [blame] | 5508 | echo "QGA_VSS_PROVIDER=$qga_vss_provider" >> $config_host_mak |
Tomoki Sekiyama | d9840e2 | 2013-08-07 11:40:03 -0400 | [diff] [blame] | 5509 | echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak |
| 5510 | fi |
Michael Roth | 50cbebb | 2015-07-07 18:10:09 -0500 | [diff] [blame] | 5511 | if test "$guest_agent_ntddscsi" = "yes" ; then |
Tomáš Golembiovský | 76dc75c | 2018-10-23 13:23:16 +0200 | [diff] [blame] | 5512 | echo "CONFIG_QGA_NTDDSCSI=y" >> $config_host_mak |
Michael Roth | 50cbebb | 2015-07-07 18:10:09 -0500 | [diff] [blame] | 5513 | fi |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 5514 | echo "QEMU_GA_MSI_MINGW_DLL_PATH=${QEMU_GA_MSI_MINGW_DLL_PATH}" >> $config_host_mak |
| 5515 | echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER}" >> $config_host_mak |
| 5516 | echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO}" >> $config_host_mak |
| 5517 | echo "QEMU_GA_VERSION=${QEMU_GA_VERSION}" >> $config_host_mak |
pbrook | 210fa55 | 2007-02-27 21:04:49 +0000 | [diff] [blame] | 5518 | else |
Juan Quintela | 35f4df2 | 2009-07-27 16:13:07 +0200 | [diff] [blame] | 5519 | echo "CONFIG_POSIX=y" >> $config_host_mak |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 5520 | fi |
blueswir1 | 128ab2f | 2008-08-15 18:33:42 +0000 | [diff] [blame] | 5521 | |
Mark McLoughlin | dffcb71 | 2009-10-22 17:49:11 +0100 | [diff] [blame] | 5522 | if test "$linux" = "yes" ; then |
| 5523 | echo "CONFIG_LINUX=y" >> $config_host_mak |
| 5524 | fi |
| 5525 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 5526 | if test "$darwin" = "yes" ; then |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 5527 | echo "CONFIG_DARWIN=y" >> $config_host_mak |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 5528 | fi |
malc | b29fe3e | 2008-11-18 01:42:22 +0000 | [diff] [blame] | 5529 | |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 5530 | if test "$solaris" = "yes" ; then |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 5531 | echo "CONFIG_SOLARIS=y" >> $config_host_mak |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 5532 | fi |
Andreas Färber | 179cf40 | 2010-09-20 00:50:43 +0200 | [diff] [blame] | 5533 | if test "$haiku" = "yes" ; then |
| 5534 | echo "CONFIG_HAIKU=y" >> $config_host_mak |
| 5535 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 5536 | if test "$static" = "yes" ; then |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 5537 | echo "CONFIG_STATIC=y" >> $config_host_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 5538 | fi |
Stefan Weil | 1ba1696 | 2011-07-29 22:40:45 +0200 | [diff] [blame] | 5539 | if test "$profiler" = "yes" ; then |
Juan Quintela | 2358a49 | 2009-07-27 16:13:25 +0200 | [diff] [blame] | 5540 | echo "CONFIG_PROFILER=y" >> $config_host_mak |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 5541 | fi |
Paolo Bonzini | c932ce3 | 2019-07-18 12:24:29 +0200 | [diff] [blame] | 5542 | if test "$want_tools" = "yes" ; then |
| 5543 | echo "CONFIG_TOOLS=y" >> $config_host_mak |
| 5544 | fi |
Paolo Bonzini | f15bff2 | 2019-07-18 13:19:02 +0200 | [diff] [blame] | 5545 | if test "$guest_agent" = "yes" ; then |
| 5546 | echo "CONFIG_GUEST_AGENT=y" >> $config_host_mak |
| 5547 | fi |
Joelle van Dyne | b8e0c49 | 2021-03-15 11:03:41 -0700 | [diff] [blame] | 5548 | if test "$slirp_smbd" = "yes" ; then |
| 5549 | echo "CONFIG_SLIRP_SMBD=y" >> $config_host_mak |
| 5550 | echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak |
| 5551 | fi |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 5552 | if test "$vde" = "yes" ; then |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 5553 | echo "CONFIG_VDE=y" >> $config_host_mak |
Fam Zheng | e2ad6f1 | 2017-09-07 16:35:52 +0800 | [diff] [blame] | 5554 | echo "VDE_LIBS=$vde_libs" >> $config_host_mak |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 5555 | fi |
Vincenzo Maffione | 5895213 | 2013-11-06 11:44:06 +0100 | [diff] [blame] | 5556 | if test "$netmap" = "yes" ; then |
| 5557 | echo "CONFIG_NETMAP=y" >> $config_host_mak |
| 5558 | fi |
Gonglei | 015a33b | 2014-07-01 20:58:08 +0800 | [diff] [blame] | 5559 | if test "$l2tpv3" = "yes" ; then |
| 5560 | echo "CONFIG_L2TPV3=y" >> $config_host_mak |
| 5561 | fi |
Paolo Bonzini | 4cc600d | 2020-02-04 17:11:04 +0100 | [diff] [blame] | 5562 | if test "$gprof" = "yes" ; then |
| 5563 | echo "CONFIG_GPROF=y" >> $config_host_mak |
| 5564 | fi |
Juan Quintela | 2358a49 | 2009-07-27 16:13:25 +0200 | [diff] [blame] | 5565 | echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 5566 | for drv in $audio_drv_list; do |
Gerd Hoffmann | 1ef1ec2 | 2018-03-01 11:05:46 +0100 | [diff] [blame] | 5567 | def=CONFIG_AUDIO_$(echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]') |
Paolo Bonzini | 484e2cc | 2019-12-12 13:30:36 +0100 | [diff] [blame] | 5568 | echo "$def=y" >> $config_host_mak |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 5569 | done |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 5570 | if test "$alsa" = "yes" ; then |
| 5571 | echo "CONFIG_ALSA=y" >> $config_host_mak |
| 5572 | fi |
Fam Zheng | b114991 | 2017-09-07 16:29:13 +0800 | [diff] [blame] | 5573 | echo "ALSA_LIBS=$alsa_libs" >> $config_host_mak |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 5574 | echo "ALSA_CFLAGS=$alsa_cflags" >> $config_host_mak |
| 5575 | if test "$libpulse" = "yes" ; then |
| 5576 | echo "CONFIG_LIBPULSE=y" >> $config_host_mak |
| 5577 | fi |
Fam Zheng | b114991 | 2017-09-07 16:29:13 +0800 | [diff] [blame] | 5578 | echo "PULSE_LIBS=$pulse_libs" >> $config_host_mak |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 5579 | echo "PULSE_CFLAGS=$pulse_cflags" >> $config_host_mak |
Fam Zheng | b114991 | 2017-09-07 16:29:13 +0800 | [diff] [blame] | 5580 | echo "COREAUDIO_LIBS=$coreaudio_libs" >> $config_host_mak |
| 5581 | echo "DSOUND_LIBS=$dsound_libs" >> $config_host_mak |
| 5582 | echo "OSS_LIBS=$oss_libs" >> $config_host_mak |
Paolo Bonzini | 478e943 | 2020-08-17 12:47:55 +0200 | [diff] [blame] | 5583 | if test "$libjack" = "yes" ; then |
| 5584 | echo "CONFIG_LIBJACK=y" >> $config_host_mak |
| 5585 | fi |
Geoffrey McRae | 2e44570 | 2020-04-29 15:53:58 +1000 | [diff] [blame] | 5586 | echo "JACK_LIBS=$jack_libs" >> $config_host_mak |
malc | d563163 | 2009-10-10 01:13:41 +0400 | [diff] [blame] | 5587 | if test "$audio_win_int" = "yes" ; then |
| 5588 | echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak |
| 5589 | fi |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 5590 | echo "CONFIG_BDRV_RW_WHITELIST=$block_drv_rw_whitelist" >> $config_host_mak |
| 5591 | echo "CONFIG_BDRV_RO_WHITELIST=$block_drv_ro_whitelist" >> $config_host_mak |
Christoph Hellwig | dce512d | 2010-12-17 11:41:15 +0100 | [diff] [blame] | 5592 | if test "$xfs" = "yes" ; then |
| 5593 | echo "CONFIG_XFS=y" >> $config_host_mak |
| 5594 | fi |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 5595 | qemu_version=$(head $source_path/VERSION) |
Juan Quintela | 2358a49 | 2009-07-27 16:13:25 +0200 | [diff] [blame] | 5596 | echo "PKGVERSION=$pkgversion" >>$config_host_mak |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 5597 | echo "SRC_PATH=$source_path" >> $config_host_mak |
Alex Bennée | 2b1f35b | 2018-07-04 07:30:11 +0100 | [diff] [blame] | 5598 | echo "TARGET_DIRS=$target_list" >> $config_host_mak |
Fam Zheng | 1796926 | 2014-02-10 14:48:56 +0800 | [diff] [blame] | 5599 | if test "$modules" = "yes"; then |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 5600 | # $shacmd can generate a hash started with digit, which the compiler doesn't |
| 5601 | # like as an symbol. So prefix it with an underscore |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 5602 | echo "CONFIG_STAMP=_$( (echo $qemu_version; echo $pkgversion; cat $0) | $shacmd - | cut -f1 -d\ )" >> $config_host_mak |
Fam Zheng | 1796926 | 2014-02-10 14:48:56 +0800 | [diff] [blame] | 5603 | echo "CONFIG_MODULES=y" >> $config_host_mak |
| 5604 | fi |
Christian Ehrhardt | bd83c86 | 2020-03-10 15:58:06 +0100 | [diff] [blame] | 5605 | if test "$module_upgrades" = "yes"; then |
| 5606 | echo "CONFIG_MODULE_UPGRADES=y" >> $config_host_mak |
| 5607 | fi |
Riku Voipio | 099d6b0 | 2009-05-05 12:10:04 +0300 | [diff] [blame] | 5608 | if test "$pipe2" = "yes" ; then |
Juan Quintela | 2358a49 | 2009-07-27 16:13:25 +0200 | [diff] [blame] | 5609 | echo "CONFIG_PIPE2=y" >> $config_host_mak |
Riku Voipio | 099d6b0 | 2009-05-05 12:10:04 +0300 | [diff] [blame] | 5610 | fi |
Kevin Wolf | 40ff6d7 | 2009-12-02 12:24:42 +0100 | [diff] [blame] | 5611 | if test "$accept4" = "yes" ; then |
| 5612 | echo "CONFIG_ACCEPT4=y" >> $config_host_mak |
| 5613 | fi |
vibisreenivasan | 3ce34df | 2009-05-16 18:32:41 +0530 | [diff] [blame] | 5614 | if test "$splice" = "yes" ; then |
Juan Quintela | 2358a49 | 2009-07-27 16:13:25 +0200 | [diff] [blame] | 5615 | echo "CONFIG_SPLICE=y" >> $config_host_mak |
vibisreenivasan | 3ce34df | 2009-05-16 18:32:41 +0530 | [diff] [blame] | 5616 | fi |
Riku Voipio | c2882b9 | 2009-08-12 15:08:24 +0300 | [diff] [blame] | 5617 | if test "$eventfd" = "yes" ; then |
| 5618 | echo "CONFIG_EVENTFD=y" >> $config_host_mak |
| 5619 | fi |
Marc-André Lureau | 751bcc3 | 2015-10-09 17:17:16 +0200 | [diff] [blame] | 5620 | if test "$memfd" = "yes" ; then |
| 5621 | echo "CONFIG_MEMFD=y" >> $config_host_mak |
| 5622 | fi |
Cortland Tölva | 955727d | 2018-10-08 09:35:19 -0700 | [diff] [blame] | 5623 | if test "$have_usbfs" = "yes" ; then |
| 5624 | echo "CONFIG_USBFS=y" >> $config_host_mak |
| 5625 | fi |
Ulrich Hecht | d092793 | 2009-09-17 20:22:14 +0300 | [diff] [blame] | 5626 | if test "$fallocate" = "yes" ; then |
| 5627 | echo "CONFIG_FALLOCATE=y" >> $config_host_mak |
| 5628 | fi |
Kusanagi Kouichi | 3d4fa43 | 2013-01-14 16:26:52 +0100 | [diff] [blame] | 5629 | if test "$fallocate_punch_hole" = "yes" ; then |
| 5630 | echo "CONFIG_FALLOCATE_PUNCH_HOLE=y" >> $config_host_mak |
| 5631 | fi |
Denis V. Lunev | b953f07 | 2015-01-30 11:42:14 +0300 | [diff] [blame] | 5632 | if test "$fallocate_zero_range" = "yes" ; then |
| 5633 | echo "CONFIG_FALLOCATE_ZERO_RANGE=y" >> $config_host_mak |
| 5634 | fi |
Kevin Wolf | ed91143 | 2014-09-29 17:12:59 +0200 | [diff] [blame] | 5635 | if test "$posix_fallocate" = "yes" ; then |
| 5636 | echo "CONFIG_POSIX_FALLOCATE=y" >> $config_host_mak |
| 5637 | fi |
Peter Maydell | c727f47 | 2011-01-06 11:05:10 +0000 | [diff] [blame] | 5638 | if test "$sync_file_range" = "yes" ; then |
| 5639 | echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak |
| 5640 | fi |
Peter Maydell | dace20d | 2011-01-10 13:11:24 +0000 | [diff] [blame] | 5641 | if test "$fiemap" = "yes" ; then |
| 5642 | echo "CONFIG_FIEMAP=y" >> $config_host_mak |
| 5643 | fi |
Ulrich Hecht | d092793 | 2009-09-17 20:22:14 +0300 | [diff] [blame] | 5644 | if test "$dup3" = "yes" ; then |
| 5645 | echo "CONFIG_DUP3=y" >> $config_host_mak |
| 5646 | fi |
Alex Bligh | 4e0c652 | 2013-08-21 16:02:43 +0100 | [diff] [blame] | 5647 | if test "$ppoll" = "yes" ; then |
| 5648 | echo "CONFIG_PPOLL=y" >> $config_host_mak |
| 5649 | fi |
Alex Bligh | cd758dd | 2013-08-21 16:02:44 +0100 | [diff] [blame] | 5650 | if test "$prctl_pr_set_timerslack" = "yes" ; then |
| 5651 | echo "CONFIG_PRCTL_PR_SET_TIMERSLACK=y" >> $config_host_mak |
| 5652 | fi |
Peter Maydell | 3b6edd1 | 2011-02-15 18:35:05 +0000 | [diff] [blame] | 5653 | if test "$epoll" = "yes" ; then |
| 5654 | echo "CONFIG_EPOLL=y" >> $config_host_mak |
| 5655 | fi |
| 5656 | if test "$epoll_create1" = "yes" ; then |
| 5657 | echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak |
| 5658 | fi |
Peter Maydell | a8fd1ab | 2013-02-08 07:31:55 +0000 | [diff] [blame] | 5659 | if test "$sendfile" = "yes" ; then |
| 5660 | echo "CONFIG_SENDFILE=y" >> $config_host_mak |
| 5661 | fi |
Riku Voipio | 5183434 | 2014-06-22 11:25:42 +0100 | [diff] [blame] | 5662 | if test "$timerfd" = "yes" ; then |
| 5663 | echo "CONFIG_TIMERFD=y" >> $config_host_mak |
| 5664 | fi |
Riku Voipio | 9af5c90 | 2014-08-12 15:58:57 +0300 | [diff] [blame] | 5665 | if test "$setns" = "yes" ; then |
| 5666 | echo "CONFIG_SETNS=y" >> $config_host_mak |
| 5667 | fi |
Aleksandar Markovic | 38860a0 | 2016-10-10 13:23:29 +0200 | [diff] [blame] | 5668 | if test "$clock_adjtime" = "yes" ; then |
| 5669 | echo "CONFIG_CLOCK_ADJTIME=y" >> $config_host_mak |
| 5670 | fi |
Aleksandar Markovic | 5a03cd0 | 2016-10-10 13:23:30 +0200 | [diff] [blame] | 5671 | if test "$syncfs" = "yes" ; then |
| 5672 | echo "CONFIG_SYNCFS=y" >> $config_host_mak |
| 5673 | fi |
aurel32 | 3b3f24a | 2009-04-15 16:12:13 +0000 | [diff] [blame] | 5674 | if test "$inotify" = "yes" ; then |
Juan Quintela | 2358a49 | 2009-07-27 16:13:25 +0200 | [diff] [blame] | 5675 | echo "CONFIG_INOTIFY=y" >> $config_host_mak |
aurel32 | 3b3f24a | 2009-04-15 16:12:13 +0000 | [diff] [blame] | 5676 | fi |
Riku Voipio | c05c7a7 | 2010-03-26 15:25:11 +0000 | [diff] [blame] | 5677 | if test "$inotify1" = "yes" ; then |
| 5678 | echo "CONFIG_INOTIFY1=y" >> $config_host_mak |
| 5679 | fi |
Peter Maydell | 401bc05 | 2017-09-05 13:19:32 +0100 | [diff] [blame] | 5680 | if test "$sem_timedwait" = "yes" ; then |
| 5681 | echo "CONFIG_SEM_TIMEDWAIT=y" >> $config_host_mak |
| 5682 | fi |
Keno Fischer | 5c99fa3 | 2018-06-29 12:32:10 +0200 | [diff] [blame] | 5683 | if test "$strchrnul" = "yes" ; then |
| 5684 | echo "HAVE_STRCHRNUL=y" >> $config_host_mak |
| 5685 | fi |
Jiufei Xue | 8a792b0 | 2019-04-17 03:08:56 +0800 | [diff] [blame] | 5686 | if test "$st_atim" = "yes" ; then |
| 5687 | echo "HAVE_STRUCT_STAT_ST_ATIM=y" >> $config_host_mak |
| 5688 | fi |
Juan Quintela | 6ae9a1f | 2009-08-03 14:45:58 +0200 | [diff] [blame] | 5689 | if test "$byteswap_h" = "yes" ; then |
| 5690 | echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak |
| 5691 | fi |
| 5692 | if test "$bswap_h" = "yes" ; then |
| 5693 | echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak |
| 5694 | fi |
Marc-André Lureau | f876b76 | 2019-02-21 12:07:00 +0100 | [diff] [blame] | 5695 | if test "$gio" = "yes" ; then |
| 5696 | echo "CONFIG_GIO=y" >> $config_host_mak |
| 5697 | echo "GIO_CFLAGS=$gio_cflags" >> $config_host_mak |
| 5698 | echo "GIO_LIBS=$gio_libs" >> $config_host_mak |
Paolo Bonzini | 5ecfb76 | 2021-05-05 10:15:34 -0400 | [diff] [blame] | 5699 | fi |
| 5700 | if test "$gdbus_codegen" != "" ; then |
Marc-André Lureau | 25a97a5 | 2019-09-27 11:34:42 +0400 | [diff] [blame] | 5701 | echo "GDBUS_CODEGEN=$gdbus_codegen" >> $config_host_mak |
Marc-André Lureau | f876b76 | 2019-02-21 12:07:00 +0100 | [diff] [blame] | 5702 | fi |
Daniel P. Berrange | a1c5e94 | 2016-06-06 10:05:06 +0100 | [diff] [blame] | 5703 | echo "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak |
Daniel P. Berrange | ddbb0d0 | 2015-07-01 18:10:29 +0100 | [diff] [blame] | 5704 | if test "$gnutls" = "yes" ; then |
| 5705 | echo "CONFIG_GNUTLS=y" >> $config_host_mak |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 5706 | echo "GNUTLS_CFLAGS=$gnutls_cflags" >> $config_host_mak |
| 5707 | echo "GNUTLS_LIBS=$gnutls_libs" >> $config_host_mak |
Daniel P. Berrange | ddbb0d0 | 2015-07-01 18:10:29 +0100 | [diff] [blame] | 5708 | fi |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 5709 | if test "$gcrypt" = "yes" ; then |
| 5710 | echo "CONFIG_GCRYPT=y" >> $config_host_mak |
Daniel P. Berrangé | 46859d9 | 2020-09-01 14:30:49 +0100 | [diff] [blame] | 5711 | echo "GCRYPT_CFLAGS=$gcrypt_cflags" >> $config_host_mak |
| 5712 | echo "GCRYPT_LIBS=$gcrypt_libs" >> $config_host_mak |
Daniel P. Berrange | 62893b6 | 2015-07-01 18:10:33 +0100 | [diff] [blame] | 5713 | fi |
Daniel P. Berrange | 91bfcdb | 2015-10-16 16:36:53 +0100 | [diff] [blame] | 5714 | if test "$nettle" = "yes" ; then |
| 5715 | echo "CONFIG_NETTLE=y" >> $config_host_mak |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 5716 | echo "NETTLE_CFLAGS=$nettle_cflags" >> $config_host_mak |
| 5717 | echo "NETTLE_LIBS=$nettle_libs" >> $config_host_mak |
Daniel P. Berrange | ed75474 | 2015-07-01 18:10:34 +0100 | [diff] [blame] | 5718 | fi |
Daniel P. Berrangé | e057694 | 2019-10-14 17:28:27 +0100 | [diff] [blame] | 5719 | if test "$qemu_private_xts" = "yes" ; then |
| 5720 | echo "CONFIG_QEMU_PRIVATE_XTS=y" >> $config_host_mak |
| 5721 | fi |
Daniel P. Berrange | 9a2fd43 | 2015-04-13 14:01:39 +0100 | [diff] [blame] | 5722 | if test "$tasn1" = "yes" ; then |
| 5723 | echo "CONFIG_TASN1=y" >> $config_host_mak |
| 5724 | fi |
Daniel P. Berrange | 8953caf | 2016-07-27 14:13:56 +0100 | [diff] [blame] | 5725 | if test "$auth_pam" = "yes" ; then |
| 5726 | echo "CONFIG_AUTH_PAM=y" >> $config_host_mak |
| 5727 | fi |
Eric Blake | 6b39b06 | 2016-10-11 10:46:23 -0500 | [diff] [blame] | 5728 | if test "$have_broken_size_max" = "yes" ; then |
| 5729 | echo "HAVE_BROKEN_SIZE_MAX=y" >> $config_host_mak |
| 5730 | fi |
Thomas Huth | 9df8b20 | 2020-06-29 14:13:24 +0200 | [diff] [blame] | 5731 | if test "$have_openpty" = "yes" ; then |
| 5732 | echo "HAVE_OPENPTY=y" >> $config_host_mak |
| 5733 | fi |
Jan Vesely | 277abf1 | 2016-04-29 13:15:23 -0400 | [diff] [blame] | 5734 | |
| 5735 | # Work around a system header bug with some kernel/XFS header |
| 5736 | # versions where they both try to define 'struct fsxattr': |
| 5737 | # xfs headers will not try to redefine structs from linux headers |
| 5738 | # if this macro is set. |
| 5739 | if test "$have_fsxattr" = "yes" ; then |
| 5740 | echo "HAVE_FSXATTR=y" >> $config_host_mak |
| 5741 | fi |
Fam Zheng | 1efad06 | 2018-06-01 17:26:43 +0800 | [diff] [blame] | 5742 | if test "$have_copy_file_range" = "yes" ; then |
| 5743 | echo "HAVE_COPY_FILE_RANGE=y" >> $config_host_mak |
| 5744 | fi |
Stefan Weil | bbbf9bf | 2014-02-19 07:04:34 +0100 | [diff] [blame] | 5745 | if test "$vte" = "yes" ; then |
| 5746 | echo "CONFIG_VTE=y" >> $config_host_mak |
Anthony Liguori | a4ccabc | 2013-02-20 07:43:20 -0600 | [diff] [blame] | 5747 | echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak |
Gerd Hoffmann | e0fb129 | 2018-03-01 11:05:44 +0100 | [diff] [blame] | 5748 | echo "VTE_LIBS=$vte_libs" >> $config_host_mak |
Anthony Liguori | a4ccabc | 2013-02-20 07:43:20 -0600 | [diff] [blame] | 5749 | fi |
Gerd Hoffmann | 9d9e152 | 2014-07-11 12:51:43 +0200 | [diff] [blame] | 5750 | if test "$virglrenderer" = "yes" ; then |
| 5751 | echo "CONFIG_VIRGL=y" >> $config_host_mak |
| 5752 | echo "VIRGL_CFLAGS=$virgl_cflags" >> $config_host_mak |
| 5753 | echo "VIRGL_LIBS=$virgl_libs" >> $config_host_mak |
| 5754 | fi |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 5755 | if test "$xen" = "enabled" ; then |
Jan Kiszka | 6dbd588 | 2011-06-21 22:59:07 +0200 | [diff] [blame] | 5756 | echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak |
Anthony PERARD | d5b93dd | 2011-02-25 16:20:34 +0000 | [diff] [blame] | 5757 | echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak |
Marc-André Lureau | 582ea95 | 2019-08-15 15:15:32 +0400 | [diff] [blame] | 5758 | echo "XEN_CFLAGS=$xen_cflags" >> $config_host_mak |
| 5759 | echo "XEN_LIBS=$xen_libs" >> $config_host_mak |
aliguori | e37630c | 2009-04-22 15:19:10 +0000 | [diff] [blame] | 5760 | fi |
Christoph Hellwig | 5c6c3a6 | 2009-08-20 16:58:35 +0200 | [diff] [blame] | 5761 | if test "$linux_aio" = "yes" ; then |
| 5762 | echo "CONFIG_LINUX_AIO=y" >> $config_host_mak |
| 5763 | fi |
Aarushi Mehta | c10dd85 | 2020-01-20 14:18:44 +0000 | [diff] [blame] | 5764 | if test "$linux_io_uring" = "yes" ; then |
| 5765 | echo "CONFIG_LINUX_IO_URING=y" >> $config_host_mak |
| 5766 | echo "LINUX_IO_URING_CFLAGS=$linux_io_uring_cflags" >> $config_host_mak |
| 5767 | echo "LINUX_IO_URING_LIBS=$linux_io_uring_libs" >> $config_host_mak |
| 5768 | fi |
Nicholas Bellinger | 5e9be92 | 2013-03-29 01:08:16 +0000 | [diff] [blame] | 5769 | if test "$vhost_scsi" = "yes" ; then |
| 5770 | echo "CONFIG_VHOST_SCSI=y" >> $config_host_mak |
| 5771 | fi |
Paolo Bonzini | af3bba7 | 2019-02-14 18:35:52 +0100 | [diff] [blame] | 5772 | if test "$vhost_net" = "yes" ; then |
| 5773 | echo "CONFIG_VHOST_NET=y" >> $config_host_mak |
| 5774 | fi |
| 5775 | if test "$vhost_net_user" = "yes" ; then |
Paolo Bonzini | 56f41de | 2019-02-14 18:35:49 +0100 | [diff] [blame] | 5776 | echo "CONFIG_VHOST_NET_USER=y" >> $config_host_mak |
Nikolay Nikolaev | 03ce574 | 2014-06-10 13:02:16 +0300 | [diff] [blame] | 5777 | fi |
Cindy Lu | 108a648 | 2020-07-01 22:55:37 +0800 | [diff] [blame] | 5778 | if test "$vhost_net_vdpa" = "yes" ; then |
| 5779 | echo "CONFIG_VHOST_NET_VDPA=y" >> $config_host_mak |
| 5780 | fi |
Gonglei | 042cea2 | 2018-03-01 21:46:28 +0800 | [diff] [blame] | 5781 | if test "$vhost_crypto" = "yes" ; then |
| 5782 | echo "CONFIG_VHOST_CRYPTO=y" >> $config_host_mak |
| 5783 | fi |
Stefan Hajnoczi | fc0b9b0 | 2016-08-16 13:27:22 +0100 | [diff] [blame] | 5784 | if test "$vhost_vsock" = "yes" ; then |
| 5785 | echo "CONFIG_VHOST_VSOCK=y" >> $config_host_mak |
Stefano Garzarella | 5fe97d8 | 2020-05-22 14:25:11 +0200 | [diff] [blame] | 5786 | if test "$vhost_user" = "yes" ; then |
| 5787 | echo "CONFIG_VHOST_USER_VSOCK=y" >> $config_host_mak |
| 5788 | fi |
Stefan Hajnoczi | fc0b9b0 | 2016-08-16 13:27:22 +0100 | [diff] [blame] | 5789 | fi |
Paolo Bonzini | 299e6f1 | 2019-02-14 18:35:53 +0100 | [diff] [blame] | 5790 | if test "$vhost_kernel" = "yes" ; then |
| 5791 | echo "CONFIG_VHOST_KERNEL=y" >> $config_host_mak |
| 5792 | fi |
Marc-André Lureau | e6a7486 | 2017-08-03 11:07:46 +0200 | [diff] [blame] | 5793 | if test "$vhost_user" = "yes" ; then |
| 5794 | echo "CONFIG_VHOST_USER=y" >> $config_host_mak |
| 5795 | fi |
Cindy Lu | 108a648 | 2020-07-01 22:55:37 +0800 | [diff] [blame] | 5796 | if test "$vhost_vdpa" = "yes" ; then |
| 5797 | echo "CONFIG_VHOST_VDPA=y" >> $config_host_mak |
| 5798 | fi |
Dr. David Alan Gilbert | 98fc1ad | 2019-09-30 11:51:34 +0100 | [diff] [blame] | 5799 | if test "$vhost_user_fs" = "yes" ; then |
| 5800 | echo "CONFIG_VHOST_USER_FS=y" >> $config_host_mak |
| 5801 | fi |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 5802 | if test "$iovec" = "yes" ; then |
Juan Quintela | 2358a49 | 2009-07-27 16:13:25 +0200 | [diff] [blame] | 5803 | echo "CONFIG_IOVEC=y" >> $config_host_mak |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 5804 | fi |
Paolo Bonzini | a40161c | 2018-02-16 10:05:23 +0100 | [diff] [blame] | 5805 | if test "$membarrier" = "yes" ; then |
| 5806 | echo "CONFIG_MEMBARRIER=y" >> $config_host_mak |
| 5807 | fi |
Marcelo Tosatti | dcc38d1 | 2010-10-11 15:31:15 -0300 | [diff] [blame] | 5808 | if test "$signalfd" = "yes" ; then |
| 5809 | echo "CONFIG_SIGNALFD=y" >> $config_host_mak |
| 5810 | fi |
Richard W.M. Jones | d339d76 | 2019-01-18 10:11:14 +0000 | [diff] [blame] | 5811 | if test "$optreset" = "yes" ; then |
| 5812 | echo "HAVE_OPTRESET=y" >> $config_host_mak |
| 5813 | fi |
Blue Swirl | 5f6b9e8 | 2009-09-20 06:56:26 +0000 | [diff] [blame] | 5814 | if test "$fdatasync" = "yes" ; then |
| 5815 | echo "CONFIG_FDATASYNC=y" >> $config_host_mak |
| 5816 | fi |
Andreas Färber | e78815a | 2010-09-25 11:26:05 +0000 | [diff] [blame] | 5817 | if test "$madvise" = "yes" ; then |
| 5818 | echo "CONFIG_MADVISE=y" >> $config_host_mak |
| 5819 | fi |
| 5820 | if test "$posix_madvise" = "yes" ; then |
| 5821 | echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak |
| 5822 | fi |
Andreas Gustafsson | 9bc5a71 | 2018-01-04 19:39:36 +0200 | [diff] [blame] | 5823 | if test "$posix_memalign" = "yes" ; then |
| 5824 | echo "CONFIG_POSIX_MEMALIGN=y" >> $config_host_mak |
| 5825 | fi |
Gerd Hoffmann | 58d3f3f | 2021-05-19 07:39:32 +0200 | [diff] [blame] | 5826 | |
| 5827 | if test "$spice_protocol" = "yes" ; then |
| 5828 | echo "CONFIG_SPICE_PROTOCOL=y" >> $config_host_mak |
| 5829 | echo "SPICE_PROTOCOL_CFLAGS=$spice_protocol_cflags" >> $config_host_mak |
| 5830 | fi |
Gerd Hoffmann | cd4ec0b | 2010-03-24 10:26:51 +0100 | [diff] [blame] | 5831 | if test "$spice" = "yes" ; then |
| 5832 | echo "CONFIG_SPICE=y" >> $config_host_mak |
Gerd Hoffmann | 58d3f3f | 2021-05-19 07:39:32 +0200 | [diff] [blame] | 5833 | echo "SPICE_CFLAGS=$spice_cflags $spice_protocol_cflags" >> $config_host_mak |
Paolo Bonzini | 2634733 | 2019-07-29 15:40:07 +0200 | [diff] [blame] | 5834 | echo "SPICE_LIBS=$spice_libs" >> $config_host_mak |
Gerd Hoffmann | cd4ec0b | 2010-03-24 10:26:51 +0100 | [diff] [blame] | 5835 | fi |
| 5836 | |
Marc-André Lureau | 7b02f54 | 2015-08-30 11:48:40 +0200 | [diff] [blame] | 5837 | if test "$smartcard" = "yes" ; then |
| 5838 | echo "CONFIG_SMARTCARD=y" >> $config_host_mak |
Fam Zheng | 7b62bf5 | 2017-09-07 16:29:16 +0800 | [diff] [blame] | 5839 | echo "SMARTCARD_CFLAGS=$libcacard_cflags" >> $config_host_mak |
| 5840 | echo "SMARTCARD_LIBS=$libcacard_libs" >> $config_host_mak |
Robert Relyea | 111a38b | 2010-11-28 16:36:38 +0200 | [diff] [blame] | 5841 | fi |
| 5842 | |
Gerd Hoffmann | 2b2325f | 2012-11-30 16:02:11 +0100 | [diff] [blame] | 5843 | if test "$libusb" = "yes" ; then |
| 5844 | echo "CONFIG_USB_LIBUSB=y" >> $config_host_mak |
Fam Zheng | b878b65 | 2017-09-07 16:29:17 +0800 | [diff] [blame] | 5845 | echo "LIBUSB_CFLAGS=$libusb_cflags" >> $config_host_mak |
| 5846 | echo "LIBUSB_LIBS=$libusb_libs" >> $config_host_mak |
Gerd Hoffmann | 2b2325f | 2012-11-30 16:02:11 +0100 | [diff] [blame] | 5847 | fi |
| 5848 | |
Hans de Goede | 69354a8 | 2011-07-19 11:04:10 +0200 | [diff] [blame] | 5849 | if test "$usb_redir" = "yes" ; then |
| 5850 | echo "CONFIG_USB_REDIR=y" >> $config_host_mak |
Fam Zheng | cc7923f | 2017-09-07 16:29:18 +0800 | [diff] [blame] | 5851 | echo "USB_REDIR_CFLAGS=$usb_redir_cflags" >> $config_host_mak |
| 5852 | echo "USB_REDIR_LIBS=$usb_redir_libs" >> $config_host_mak |
Hans de Goede | 69354a8 | 2011-07-19 11:04:10 +0200 | [diff] [blame] | 5853 | fi |
| 5854 | |
Gerd Hoffmann | da076ff | 2014-11-20 09:49:44 +0100 | [diff] [blame] | 5855 | if test "$opengl" = "yes" ; then |
| 5856 | echo "CONFIG_OPENGL=y" >> $config_host_mak |
Paolo Bonzini | de2d300 | 2020-09-01 08:41:17 -0400 | [diff] [blame] | 5857 | echo "OPENGL_CFLAGS=$opengl_cflags" >> $config_host_mak |
Gerd Hoffmann | da076ff | 2014-11-20 09:49:44 +0100 | [diff] [blame] | 5858 | echo "OPENGL_LIBS=$opengl_libs" >> $config_host_mak |
Michael Walle | 20ff075 | 2011-03-07 23:32:39 +0100 | [diff] [blame] | 5859 | fi |
| 5860 | |
Marc-André Lureau | d52c454 | 2019-05-24 15:09:42 +0200 | [diff] [blame] | 5861 | if test "$gbm" = "yes" ; then |
| 5862 | echo "CONFIG_GBM=y" >> $config_host_mak |
| 5863 | echo "GBM_LIBS=$gbm_libs" >> $config_host_mak |
| 5864 | echo "GBM_CFLAGS=$gbm_cflags" >> $config_host_mak |
| 5865 | fi |
| 5866 | |
| 5867 | |
Liang Li | 99f2dbd | 2016-03-08 13:53:16 +0800 | [diff] [blame] | 5868 | if test "$avx2_opt" = "yes" ; then |
| 5869 | echo "CONFIG_AVX2_OPT=y" >> $config_host_mak |
| 5870 | fi |
| 5871 | |
Robert Hoo | 6b8cd44 | 2020-02-29 20:34:34 +0800 | [diff] [blame] | 5872 | if test "$avx512f_opt" = "yes" ; then |
| 5873 | echo "CONFIG_AVX512F_OPT=y" >> $config_host_mak |
| 5874 | fi |
| 5875 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 5876 | # XXX: suppress that |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 5877 | if [ "$bsd" = "yes" ] ; then |
Juan Quintela | 2358a49 | 2009-07-27 16:13:25 +0200 | [diff] [blame] | 5878 | echo "CONFIG_BSD=y" >> $config_host_mak |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 5879 | fi |
| 5880 | |
Paolo Bonzini | 3556c23 | 2013-05-10 14:16:40 +0200 | [diff] [blame] | 5881 | if test "$qom_cast_debug" = "yes" ; then |
| 5882 | echo "CONFIG_QOM_CAST_DEBUG=y" >> $config_host_mak |
| 5883 | fi |
Anthony Liguori | 20ff6c8 | 2009-12-09 12:59:36 -0600 | [diff] [blame] | 5884 | |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 5885 | echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak |
Stefan Hajnoczi | 70c60c0 | 2013-09-11 16:42:35 +0200 | [diff] [blame] | 5886 | if test "$coroutine_pool" = "yes" ; then |
| 5887 | echo "CONFIG_COROUTINE_POOL=1" >> $config_host_mak |
| 5888 | else |
| 5889 | echo "CONFIG_COROUTINE_POOL=0" >> $config_host_mak |
| 5890 | fi |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 5891 | |
Peter Lieven | 7d992e4 | 2016-09-27 11:58:45 +0200 | [diff] [blame] | 5892 | if test "$debug_stack_usage" = "yes" ; then |
| 5893 | echo "CONFIG_DEBUG_STACK_USAGE=y" >> $config_host_mak |
| 5894 | fi |
| 5895 | |
Longpeng(Mike) | f0d92b5 | 2017-07-14 14:04:05 -0400 | [diff] [blame] | 5896 | if test "$crypto_afalg" = "yes" ; then |
| 5897 | echo "CONFIG_AF_ALG=y" >> $config_host_mak |
| 5898 | fi |
| 5899 | |
Aneesh Kumar K.V | d204237 | 2011-10-12 19:11:24 +0530 | [diff] [blame] | 5900 | if test "$open_by_handle_at" = "yes" ; then |
| 5901 | echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak |
| 5902 | fi |
| 5903 | |
Harsh Prateek Bora | e06a765 | 2011-10-12 19:11:25 +0530 | [diff] [blame] | 5904 | if test "$linux_magic_h" = "yes" ; then |
| 5905 | echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak |
| 5906 | fi |
| 5907 | |
Kevin Wolf | 3f4349d | 2012-06-29 13:40:27 +0200 | [diff] [blame] | 5908 | if test "$valgrind_h" = "yes" ; then |
| 5909 | echo "CONFIG_VALGRIND_H=y" >> $config_host_mak |
| 5910 | fi |
| 5911 | |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 5912 | if test "$have_asan_iface_fiber" = "yes" ; then |
| 5913 | echo "CONFIG_ASAN_IFACE_FIBER=y" >> $config_host_mak |
| 5914 | fi |
| 5915 | |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 5916 | if test "$have_tsan" = "yes" && test "$have_tsan_iface_fiber" = "yes" ; then |
| 5917 | echo "CONFIG_TSAN=y" >> $config_host_mak |
| 5918 | fi |
| 5919 | |
Luiz Capitulino | 8ab1bf1 | 2012-05-23 15:48:04 -0300 | [diff] [blame] | 5920 | if test "$has_environ" = "yes" ; then |
| 5921 | echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak |
| 5922 | fi |
| 5923 | |
Richard Henderson | 76a347e | 2012-12-28 14:17:02 -0800 | [diff] [blame] | 5924 | if test "$cpuid_h" = "yes" ; then |
| 5925 | echo "CONFIG_CPUID_H=y" >> $config_host_mak |
| 5926 | fi |
| 5927 | |
Richard Henderson | f540166 | 2013-02-16 12:46:59 -0800 | [diff] [blame] | 5928 | if test "$int128" = "yes" ; then |
| 5929 | echo "CONFIG_INT128=y" >> $config_host_mak |
| 5930 | fi |
| 5931 | |
Richard Henderson | 7ebee43 | 2016-06-29 21:10:59 -0700 | [diff] [blame] | 5932 | if test "$atomic128" = "yes" ; then |
| 5933 | echo "CONFIG_ATOMIC128=y" >> $config_host_mak |
| 5934 | fi |
| 5935 | |
Richard Henderson | e6cd4bb | 2018-08-15 16:31:47 -0700 | [diff] [blame] | 5936 | if test "$cmpxchg128" = "yes" ; then |
| 5937 | echo "CONFIG_CMPXCHG128=y" >> $config_host_mak |
| 5938 | fi |
| 5939 | |
Richard Henderson | df79b99 | 2016-09-02 12:23:57 -0700 | [diff] [blame] | 5940 | if test "$atomic64" = "yes" ; then |
| 5941 | echo "CONFIG_ATOMIC64=y" >> $config_host_mak |
| 5942 | fi |
| 5943 | |
Richard Henderson | 1e6e9ac | 2013-02-18 09:11:15 -0800 | [diff] [blame] | 5944 | if test "$getauxval" = "yes" ; then |
| 5945 | echo "CONFIG_GETAUXVAL=y" >> $config_host_mak |
| 5946 | fi |
| 5947 | |
Pino Toscano | b10d49d | 2019-06-20 22:08:40 +0200 | [diff] [blame] | 5948 | if test "$libssh" = "yes" ; then |
Paolo Bonzini | 484e2cc | 2019-12-12 13:30:36 +0100 | [diff] [blame] | 5949 | echo "CONFIG_LIBSSH=y" >> $config_host_mak |
Pino Toscano | b10d49d | 2019-06-20 22:08:40 +0200 | [diff] [blame] | 5950 | echo "LIBSSH_CFLAGS=$libssh_cflags" >> $config_host_mak |
| 5951 | echo "LIBSSH_LIBS=$libssh_libs" >> $config_host_mak |
Richard W.M. Jones | 0a12ec8 | 2013-04-09 15:30:53 +0100 | [diff] [blame] | 5952 | fi |
| 5953 | |
Dr. David Alan Gilbert | ed1701c | 2017-05-15 15:05:29 +0100 | [diff] [blame] | 5954 | if test "$live_block_migration" = "yes" ; then |
| 5955 | echo "CONFIG_LIVE_BLOCK_MIGRATION=y" >> $config_host_mak |
| 5956 | fi |
| 5957 | |
Paolo Bonzini | 3b8acc1 | 2013-03-18 16:37:50 +0100 | [diff] [blame] | 5958 | if test "$tpm" = "yes"; then |
Paolo Bonzini | 3cae16d | 2019-07-11 19:08:36 +0200 | [diff] [blame] | 5959 | echo 'CONFIG_TPM=y' >> $config_host_mak |
Paolo Bonzini | 3b8acc1 | 2013-03-18 16:37:50 +0100 | [diff] [blame] | 5960 | fi |
| 5961 | |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 5962 | echo "TRACE_BACKENDS=$trace_backends" >> $config_host_mak |
| 5963 | if have_backend "nop"; then |
Lluís | 6d8a764 | 2011-08-31 20:30:43 +0200 | [diff] [blame] | 5964 | echo "CONFIG_TRACE_NOP=y" >> $config_host_mak |
Prerna Saxena | 22890ab | 2010-06-24 17:04:53 +0530 | [diff] [blame] | 5965 | fi |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 5966 | if have_backend "simple"; then |
Lluís | 6d8a764 | 2011-08-31 20:30:43 +0200 | [diff] [blame] | 5967 | echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak |
| 5968 | # Set the appropriate trace file. |
Andreas Färber | 953ffe0 | 2011-06-02 19:58:06 +0200 | [diff] [blame] | 5969 | trace_file="\"$trace_file-\" FMT_pid" |
Prerna Saxena | 9410b56 | 2010-07-13 09:26:32 +0100 | [diff] [blame] | 5970 | fi |
Paolo Bonzini | ed7f5f1 | 2016-01-07 16:55:30 +0300 | [diff] [blame] | 5971 | if have_backend "log"; then |
| 5972 | echo "CONFIG_TRACE_LOG=y" >> $config_host_mak |
Lluís | 6d8a764 | 2011-08-31 20:30:43 +0200 | [diff] [blame] | 5973 | fi |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 5974 | if have_backend "ust"; then |
Lluís | 6d8a764 | 2011-08-31 20:30:43 +0200 | [diff] [blame] | 5975 | echo "CONFIG_TRACE_UST=y" >> $config_host_mak |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 5976 | echo "LTTNG_UST_LIBS=$lttng_ust_libs" >> $config_host_mak |
| 5977 | echo "URCU_BP_LIBS=$urcu_bp_libs" >> $config_host_mak |
Lluís | 6d8a764 | 2011-08-31 20:30:43 +0200 | [diff] [blame] | 5978 | fi |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 5979 | if have_backend "dtrace"; then |
Lluís | 6d8a764 | 2011-08-31 20:30:43 +0200 | [diff] [blame] | 5980 | echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak |
| 5981 | if test "$trace_backend_stap" = "yes" ; then |
| 5982 | echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak |
| 5983 | fi |
Daniel P. Berrange | c276b17 | 2010-11-12 13:20:25 +0000 | [diff] [blame] | 5984 | fi |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 5985 | if have_backend "ftrace"; then |
Eiichi Tsukata | 781e954 | 2013-04-11 20:25:15 +0900 | [diff] [blame] | 5986 | if test "$linux" = "yes" ; then |
| 5987 | echo "CONFIG_TRACE_FTRACE=y" >> $config_host_mak |
Eiichi Tsukata | 781e954 | 2013-04-11 20:25:15 +0900 | [diff] [blame] | 5988 | else |
Stewart Smith | 21684af | 2014-01-24 12:39:10 +1100 | [diff] [blame] | 5989 | feature_not_found "ftrace(trace backend)" "ftrace requires Linux" |
Eiichi Tsukata | 781e954 | 2013-04-11 20:25:15 +0900 | [diff] [blame] | 5990 | fi |
| 5991 | fi |
Paul Durrant | 0a85241 | 2016-08-04 14:44:14 +0100 | [diff] [blame] | 5992 | if have_backend "syslog"; then |
| 5993 | if test "$posix_syslog" = "yes" ; then |
| 5994 | echo "CONFIG_TRACE_SYSLOG=y" >> $config_host_mak |
| 5995 | else |
| 5996 | feature_not_found "syslog(trace backend)" "syslog not available" |
| 5997 | fi |
| 5998 | fi |
Prerna Saxena | 9410b56 | 2010-07-13 09:26:32 +0100 | [diff] [blame] | 5999 | echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak |
| 6000 | |
Michael R. Hines | 2da776d | 2013-07-22 10:01:54 -0400 | [diff] [blame] | 6001 | if test "$rdma" = "yes" ; then |
| 6002 | echo "CONFIG_RDMA=y" >> $config_host_mak |
Fam Zheng | 392fb64 | 2017-09-07 16:42:30 +0800 | [diff] [blame] | 6003 | echo "RDMA_LIBS=$rdma_libs" >> $config_host_mak |
Michael R. Hines | 2da776d | 2013-07-22 10:01:54 -0400 | [diff] [blame] | 6004 | fi |
| 6005 | |
Marcel Apfelbaum | 21ab34c | 2018-08-16 18:16:37 +0300 | [diff] [blame] | 6006 | if test "$pvrdma" = "yes" ; then |
| 6007 | echo "CONFIG_PVRDMA=y" >> $config_host_mak |
| 6008 | fi |
| 6009 | |
Laurent Vivier | 575b22b | 2016-06-02 22:14:15 +0200 | [diff] [blame] | 6010 | if test "$have_rtnetlink" = "yes" ; then |
| 6011 | echo "CONFIG_RTNETLINK=y" >> $config_host_mak |
| 6012 | fi |
| 6013 | |
Klim Kireev | ed279a0 | 2018-01-12 12:01:19 +0300 | [diff] [blame] | 6014 | if test "$libxml2" = "yes" ; then |
| 6015 | echo "CONFIG_LIBXML2=y" >> $config_host_mak |
| 6016 | echo "LIBXML2_CFLAGS=$libxml2_cflags" >> $config_host_mak |
| 6017 | echo "LIBXML2_LIBS=$libxml2_libs" >> $config_host_mak |
| 6018 | fi |
| 6019 | |
Changlong Xie | a6b1d4c | 2016-07-27 15:01:48 +0800 | [diff] [blame] | 6020 | if test "$replication" = "yes" ; then |
| 6021 | echo "CONFIG_REPLICATION=y" >> $config_host_mak |
| 6022 | fi |
| 6023 | |
Stefan Hajnoczi | 6a02c80 | 2016-10-14 10:00:55 +0100 | [diff] [blame] | 6024 | if test "$have_af_vsock" = "yes" ; then |
| 6025 | echo "CONFIG_AF_VSOCK=y" >> $config_host_mak |
| 6026 | fi |
| 6027 | |
Christopher Covington | 4d04351 | 2016-12-28 15:04:33 -0500 | [diff] [blame] | 6028 | if test "$have_sysmacros" = "yes" ; then |
| 6029 | echo "CONFIG_SYSMACROS=y" >> $config_host_mak |
| 6030 | fi |
| 6031 | |
Andreas Grapentin | 49e00a1 | 2017-03-14 17:59:53 +0100 | [diff] [blame] | 6032 | if test "$have_static_assert" = "yes" ; then |
| 6033 | echo "CONFIG_STATIC_ASSERT=y" >> $config_host_mak |
| 6034 | fi |
| 6035 | |
Tomáš Golembiovský | e674605 | 2017-07-17 15:58:33 +0200 | [diff] [blame] | 6036 | if test "$have_utmpx" = "yes" ; then |
| 6037 | echo "HAVE_UTMPX=y" >> $config_host_mak |
| 6038 | fi |
Richard Henderson | db1ed1a | 2019-03-13 20:57:28 -0700 | [diff] [blame] | 6039 | if test "$have_getrandom" = "yes" ; then |
| 6040 | echo "CONFIG_GETRANDOM=y" >> $config_host_mak |
| 6041 | fi |
Kamil Rytarowski | e058034 | 2017-07-14 09:33:44 +0100 | [diff] [blame] | 6042 | if test "$ivshmem" = "yes" ; then |
| 6043 | echo "CONFIG_IVSHMEM=y" >> $config_host_mak |
| 6044 | fi |
Paolo Bonzini | ba59fb7 | 2018-06-13 14:23:08 +0200 | [diff] [blame] | 6045 | if test "$debug_mutex" = "yes" ; then |
| 6046 | echo "CONFIG_DEBUG_MUTEX=y" >> $config_host_mak |
| 6047 | fi |
Kamil Rytarowski | e058034 | 2017-07-14 09:33:44 +0100 | [diff] [blame] | 6048 | |
Dr. David Alan Gilbert | 5c31207 | 2014-03-12 11:48:18 +0000 | [diff] [blame] | 6049 | # Hold two types of flag: |
| 6050 | # CONFIG_THREAD_SETNAME_BYTHREAD - we've got a way of setting the name on |
| 6051 | # a thread we have a handle to |
Roman Bolshakov | 479a574 | 2018-12-17 23:26:01 +0300 | [diff] [blame] | 6052 | # CONFIG_PTHREAD_SETNAME_NP_W_TID - A way of doing it on a particular |
Dr. David Alan Gilbert | 5c31207 | 2014-03-12 11:48:18 +0000 | [diff] [blame] | 6053 | # platform |
Roman Bolshakov | 479a574 | 2018-12-17 23:26:01 +0300 | [diff] [blame] | 6054 | if test "$pthread_setname_np_w_tid" = "yes" ; then |
Dr. David Alan Gilbert | 5c31207 | 2014-03-12 11:48:18 +0000 | [diff] [blame] | 6055 | echo "CONFIG_THREAD_SETNAME_BYTHREAD=y" >> $config_host_mak |
Roman Bolshakov | 479a574 | 2018-12-17 23:26:01 +0300 | [diff] [blame] | 6056 | echo "CONFIG_PTHREAD_SETNAME_NP_W_TID=y" >> $config_host_mak |
| 6057 | elif test "$pthread_setname_np_wo_tid" = "yes" ; then |
| 6058 | echo "CONFIG_THREAD_SETNAME_BYTHREAD=y" >> $config_host_mak |
| 6059 | echo "CONFIG_PTHREAD_SETNAME_NP_WO_TID=y" >> $config_host_mak |
Dr. David Alan Gilbert | 5c31207 | 2014-03-12 11:48:18 +0000 | [diff] [blame] | 6060 | fi |
| 6061 | |
Junyan He | 1782440 | 2018-07-18 15:47:59 +0800 | [diff] [blame] | 6062 | if test "$libpmem" = "yes" ; then |
| 6063 | echo "CONFIG_LIBPMEM=y" >> $config_host_mak |
Marc-André Lureau | c9322ab | 2019-08-18 19:51:17 +0400 | [diff] [blame] | 6064 | echo "LIBPMEM_LIBS=$libpmem_libs" >> $config_host_mak |
| 6065 | echo "LIBPMEM_CFLAGS=$libpmem_cflags" >> $config_host_mak |
Junyan He | 1782440 | 2018-07-18 15:47:59 +0800 | [diff] [blame] | 6066 | fi |
| 6067 | |
Jingqi Liu | 21b2eca | 2020-04-29 16:50:11 +0800 | [diff] [blame] | 6068 | if test "$libdaxctl" = "yes" ; then |
| 6069 | echo "CONFIG_LIBDAXCTL=y" >> $config_host_mak |
Bruce Rogers | c7c91a7 | 2020-08-24 09:52:12 -0600 | [diff] [blame] | 6070 | echo "LIBDAXCTL_LIBS=$libdaxctl_libs" >> $config_host_mak |
Jingqi Liu | 21b2eca | 2020-04-29 16:50:11 +0800 | [diff] [blame] | 6071 | fi |
| 6072 | |
Jeff Cody | 2f74013 | 2018-11-07 07:36:44 +0100 | [diff] [blame] | 6073 | if test "$bochs" = "yes" ; then |
| 6074 | echo "CONFIG_BOCHS=y" >> $config_host_mak |
| 6075 | fi |
| 6076 | if test "$cloop" = "yes" ; then |
| 6077 | echo "CONFIG_CLOOP=y" >> $config_host_mak |
| 6078 | fi |
| 6079 | if test "$dmg" = "yes" ; then |
| 6080 | echo "CONFIG_DMG=y" >> $config_host_mak |
| 6081 | fi |
| 6082 | if test "$qcow1" = "yes" ; then |
| 6083 | echo "CONFIG_QCOW1=y" >> $config_host_mak |
| 6084 | fi |
| 6085 | if test "$vdi" = "yes" ; then |
| 6086 | echo "CONFIG_VDI=y" >> $config_host_mak |
| 6087 | fi |
| 6088 | if test "$vvfat" = "yes" ; then |
| 6089 | echo "CONFIG_VVFAT=y" >> $config_host_mak |
| 6090 | fi |
| 6091 | if test "$qed" = "yes" ; then |
| 6092 | echo "CONFIG_QED=y" >> $config_host_mak |
| 6093 | fi |
| 6094 | if test "$parallels" = "yes" ; then |
| 6095 | echo "CONFIG_PARALLELS=y" >> $config_host_mak |
| 6096 | fi |
David CARLIER | 195588c | 2020-07-13 14:36:09 +0100 | [diff] [blame] | 6097 | if test "$have_mlockall" = "yes" ; then |
| 6098 | echo "HAVE_MLOCKALL=y" >> $config_host_mak |
| 6099 | fi |
Alexander Bulekov | adc2802 | 2020-02-19 23:11:14 -0500 | [diff] [blame] | 6100 | if test "$fuzzing" = "yes" ; then |
Alexander Bulekov | 54c9e41 | 2020-09-02 13:36:51 -0400 | [diff] [blame] | 6101 | # If LIB_FUZZING_ENGINE is set, assume we are running on OSS-Fuzz, and the |
| 6102 | # needed CFLAGS have already been provided |
| 6103 | if test -z "${LIB_FUZZING_ENGINE+xxx}" ; then |
Alexander Bulekov | efce01b | 2021-02-21 12:45:10 -0500 | [diff] [blame] | 6104 | # Add CFLAGS to tell clang to add fuzzer-related instrumentation to all the |
| 6105 | # compiled code. |
Alexander Bulekov | 54c9e41 | 2020-09-02 13:36:51 -0400 | [diff] [blame] | 6106 | QEMU_CFLAGS="$QEMU_CFLAGS -fsanitize=fuzzer-no-link" |
Alexander Bulekov | efce01b | 2021-02-21 12:45:10 -0500 | [diff] [blame] | 6107 | # To build non-fuzzer binaries with --enable-fuzzing, link everything with |
| 6108 | # fsanitize=fuzzer-no-link. Otherwise, the linker will be unable to bind |
| 6109 | # the fuzzer-related callbacks added by instrumentation. |
| 6110 | QEMU_LDFLAGS="$QEMU_LDFLAGS -fsanitize=fuzzer-no-link" |
| 6111 | # For the actual fuzzer binaries, we need to link against the libfuzzer |
| 6112 | # library. Provide the flags for doing this in FUZZ_EXE_LDFLAGS. The meson |
| 6113 | # rule for the fuzzer adds these to the link_args. They need to be |
| 6114 | # configurable, to support OSS-Fuzz |
Alexander Bulekov | 54c9e41 | 2020-09-02 13:36:51 -0400 | [diff] [blame] | 6115 | FUZZ_EXE_LDFLAGS="-fsanitize=fuzzer" |
| 6116 | else |
| 6117 | FUZZ_EXE_LDFLAGS="$LIB_FUZZING_ENGINE" |
| 6118 | fi |
Alexander Bulekov | adc2802 | 2020-02-19 23:11:14 -0500 | [diff] [blame] | 6119 | fi |
Jeff Cody | 2f74013 | 2018-11-07 07:36:44 +0100 | [diff] [blame] | 6120 | |
Alex Bennée | 40e8c6f | 2019-06-13 14:52:25 +0100 | [diff] [blame] | 6121 | if test "$plugins" = "yes" ; then |
| 6122 | echo "CONFIG_PLUGIN=y" >> $config_host_mak |
Emilio G. Cota | 26fffe2 | 2018-10-21 13:56:29 -0400 | [diff] [blame] | 6123 | # Copy the export object list to the build dir |
| 6124 | if test "$ld_dynamic_list" = "yes" ; then |
| 6125 | echo "CONFIG_HAS_LD_DYNAMIC_LIST=yes" >> $config_host_mak |
| 6126 | ld_symbols=qemu-plugins-ld.symbols |
| 6127 | cp "$source_path/plugins/qemu-plugins.symbols" $ld_symbols |
| 6128 | elif test "$ld_exported_symbols_list" = "yes" ; then |
| 6129 | echo "CONFIG_HAS_LD_EXPORTED_SYMBOLS_LIST=yes" >> $config_host_mak |
| 6130 | ld64_symbols=qemu-plugins-ld64.symbols |
| 6131 | echo "# Automatically generated by configure - do not modify" > $ld64_symbols |
| 6132 | grep 'qemu_' "$source_path/plugins/qemu-plugins.symbols" | sed 's/;//g' | \ |
| 6133 | sed -E 's/^[[:space:]]*(.*)/_\1/' >> $ld64_symbols |
| 6134 | else |
| 6135 | error_exit \ |
| 6136 | "If \$plugins=yes, either \$ld_dynamic_list or " \ |
| 6137 | "\$ld_exported_symbols_list should have been set to 'yes'." |
| 6138 | fi |
Alex Bennée | 40e8c6f | 2019-06-13 14:52:25 +0100 | [diff] [blame] | 6139 | fi |
| 6140 | |
Alex Bennée | b1863cc | 2021-01-08 22:42:39 +0000 | [diff] [blame] | 6141 | if test -n "$gdb_bin"; then |
| 6142 | gdb_version=$($gdb_bin --version | head -n 1) |
Alex Bennée | d6a66c8 | 2021-02-02 13:39:53 +0000 | [diff] [blame] | 6143 | if version_ge ${gdb_version##* } 9.1; then |
Alex Bennée | b1863cc | 2021-01-08 22:42:39 +0000 | [diff] [blame] | 6144 | echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak |
| 6145 | fi |
Alex Bennée | f48e590 | 2020-03-16 17:21:48 +0000 | [diff] [blame] | 6146 | fi |
| 6147 | |
Alexey Krasikov | 54e7aac | 2020-05-25 14:19:12 +0300 | [diff] [blame] | 6148 | if test "$secret_keyring" = "yes" ; then |
| 6149 | echo "CONFIG_SECRET_KEYRING=y" >> $config_host_mak |
| 6150 | fi |
| 6151 | |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 6152 | echo "ROMS=$roms" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 6153 | echo "MAKE=$make" >> $config_host_mak |
Blue Swirl | c886edf | 2011-07-22 21:08:09 +0000 | [diff] [blame] | 6154 | echo "PYTHON=$python" >> $config_host_mak |
Alex Bennée | 39d87c8 | 2020-03-03 15:06:20 +0000 | [diff] [blame] | 6155 | echo "GENISOIMAGE=$genisoimage" >> $config_host_mak |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 6156 | echo "MESON=$meson" >> $config_host_mak |
Paolo Bonzini | 09e9332 | 2020-08-13 09:28:11 -0400 | [diff] [blame] | 6157 | echo "NINJA=$ninja" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 6158 | echo "CC=$cc" >> $config_host_mak |
Bastian Koppelmann | 433de74 | 2021-05-12 11:20:35 +0100 | [diff] [blame] | 6159 | echo "HOST_CC=$host_cc" >> $config_host_mak |
Michael S. Tsirkin | a31a864 | 2013-07-24 18:56:03 +0300 | [diff] [blame] | 6160 | if $iasl -h > /dev/null 2>&1; then |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 6161 | echo "CONFIG_IASL=$iasl" >> $config_host_mak |
Michael S. Tsirkin | a31a864 | 2013-07-24 18:56:03 +0300 | [diff] [blame] | 6162 | fi |
Tomoki Sekiyama | 83f73fc | 2013-08-07 11:39:36 -0400 | [diff] [blame] | 6163 | echo "CXX=$cxx" >> $config_host_mak |
Peter Maydell | 3c4a4d0 | 2012-08-11 22:34:40 +0100 | [diff] [blame] | 6164 | echo "OBJCC=$objcc" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 6165 | echo "AR=$ar" >> $config_host_mak |
Peter Maydell | 45d285a | 2013-10-21 21:03:06 +0100 | [diff] [blame] | 6166 | echo "ARFLAGS=$ARFLAGS" >> $config_host_mak |
Richard Henderson | cdbd727 | 2016-07-07 21:49:36 -0700 | [diff] [blame] | 6167 | echo "AS=$as" >> $config_host_mak |
Richard Henderson | 5f6f0e2 | 2016-06-23 10:39:18 -0700 | [diff] [blame] | 6168 | echo "CCAS=$ccas" >> $config_host_mak |
Blue Swirl | 3dd46c7 | 2013-01-05 10:10:27 +0000 | [diff] [blame] | 6169 | echo "CPP=$cpp" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 6170 | echo "OBJCOPY=$objcopy" >> $config_host_mak |
| 6171 | echo "LD=$ld" >> $config_host_mak |
Alistair Francis | 9f81aeb | 2017-11-07 17:10:46 -0800 | [diff] [blame] | 6172 | echo "RANLIB=$ranlib" >> $config_host_mak |
Stefan Weil | 4852ee9 | 2014-09-18 21:55:08 +0200 | [diff] [blame] | 6173 | echo "NM=$nm" >> $config_host_mak |
Alex Bennée | daa79d9 | 2019-09-19 14:07:36 +0100 | [diff] [blame] | 6174 | echo "PKG_CONFIG=$pkg_config_exe" >> $config_host_mak |
Blue Swirl | 9fe6de9 | 2010-09-26 16:07:57 +0000 | [diff] [blame] | 6175 | echo "WINDRES=$windres" >> $config_host_mak |
Brad | 46eef33 | 2013-12-10 19:49:08 -0500 | [diff] [blame] | 6176 | echo "CFLAGS_NOPIE=$CFLAGS_NOPIE" >> $config_host_mak |
Juan Quintela | a558ee1 | 2009-08-03 14:46:21 +0200 | [diff] [blame] | 6177 | echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak |
Bruno Dominguez | 11cde1c | 2017-06-06 14:07:47 +0100 | [diff] [blame] | 6178 | echo "QEMU_CXXFLAGS=$QEMU_CXXFLAGS" >> $config_host_mak |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 6179 | echo "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak |
| 6180 | echo "GLIB_LIBS=$glib_libs" >> $config_host_mak |
Philippe Mathieu-Daudé | 8a99e9a | 2018-04-15 20:05:19 -0300 | [diff] [blame] | 6181 | echo "QEMU_LDFLAGS=$QEMU_LDFLAGS" >> $config_host_mak |
Peter Maydell | e57218b | 2016-08-08 17:11:28 +0100 | [diff] [blame] | 6182 | echo "LD_I386_EMULATION=$ld_i386_emulation" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 6183 | echo "EXESUF=$EXESUF" >> $config_host_mak |
Paolo Bonzini | 484e2cc | 2019-12-12 13:30:36 +0100 | [diff] [blame] | 6184 | echo "HOST_DSOSUF=$HOST_DSOSUF" >> $config_host_mak |
Paolo Bonzini | f15bff2 | 2019-07-18 13:19:02 +0200 | [diff] [blame] | 6185 | echo "LIBS_QGA=$libs_qga" >> $config_host_mak |
Daniel P. Berrange | 9024603 | 2015-09-21 17:25:34 +0100 | [diff] [blame] | 6186 | echo "TASN1_LIBS=$tasn1_libs" >> $config_host_mak |
| 6187 | echo "TASN1_CFLAGS=$tasn1_cflags" >> $config_host_mak |
Blue Swirl | 1d728c3 | 2012-05-01 18:45:39 +0000 | [diff] [blame] | 6188 | if test "$gcov" = "yes" ; then |
| 6189 | echo "CONFIG_GCOV=y" >> $config_host_mak |
Blue Swirl | 1d728c3 | 2012-05-01 18:45:39 +0000 | [diff] [blame] | 6190 | fi |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 6191 | |
Alexander Bulekov | adc2802 | 2020-02-19 23:11:14 -0500 | [diff] [blame] | 6192 | if test "$fuzzing" != "no"; then |
| 6193 | echo "CONFIG_FUZZ=y" >> $config_host_mak |
Alexander Bulekov | adc2802 | 2020-02-19 23:11:14 -0500 | [diff] [blame] | 6194 | fi |
Alexander Bulekov | 54c9e41 | 2020-09-02 13:36:51 -0400 | [diff] [blame] | 6195 | echo "FUZZ_EXE_LDFLAGS=$FUZZ_EXE_LDFLAGS" >> $config_host_mak |
Tomáš Golembiovský | 3efac6e | 2018-10-23 13:23:10 +0200 | [diff] [blame] | 6196 | |
Marek Marczykowski-Górecki | b767d25 | 2020-05-20 15:20:23 +0200 | [diff] [blame] | 6197 | if test "$rng_none" = "yes"; then |
| 6198 | echo "CONFIG_RNG_NONE=y" >> $config_host_mak |
| 6199 | fi |
| 6200 | |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 6201 | # use included Linux headers |
| 6202 | if test "$linux" = "yes" ; then |
Andreas Färber | a307beb | 2012-06-14 15:14:33 +0000 | [diff] [blame] | 6203 | mkdir -p linux-headers |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 6204 | case "$cpu" in |
Richard Henderson | c72b26e | 2013-08-20 12:20:05 -0700 | [diff] [blame] | 6205 | i386|x86_64|x32) |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 6206 | linux_arch=x86 |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 6207 | ;; |
Richard Henderson | f8378ac | 2019-05-01 15:38:18 -0700 | [diff] [blame] | 6208 | ppc|ppc64|ppc64le) |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 6209 | linux_arch=powerpc |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 6210 | ;; |
| 6211 | s390x) |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 6212 | linux_arch=s390 |
| 6213 | ;; |
Claudio Fontana | 1f08031 | 2013-06-12 16:20:23 +0100 | [diff] [blame] | 6214 | aarch64) |
| 6215 | linux_arch=arm64 |
| 6216 | ;; |
Sanjay Lal | 222e7d1 | 2014-06-17 23:10:36 +0100 | [diff] [blame] | 6217 | mips64) |
| 6218 | linux_arch=mips |
| 6219 | ;; |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 6220 | *) |
| 6221 | # For most CPUs the kernel architecture name and QEMU CPU name match. |
| 6222 | linux_arch="$cpu" |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 6223 | ;; |
| 6224 | esac |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 6225 | # For non-KVM architectures we will not have asm headers |
| 6226 | if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then |
| 6227 | symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm |
| 6228 | fi |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 6229 | fi |
| 6230 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 6231 | for target in $target_list; do |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 6232 | target_dir="$target" |
| 6233 | target_name=$(echo $target | cut -d '-' -f 1) |
| 6234 | mkdir -p $target_dir |
| 6235 | case $target in |
| 6236 | *-user) symlink "../qemu-$target_name" "$target_dir/qemu-$target_name" ;; |
| 6237 | *) symlink "../qemu-system-$target_name" "$target_dir/qemu-system-$target_name" ;; |
| 6238 | esac |
| 6239 | done |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 6240 | |
Paolo Bonzini | 765686d | 2020-09-18 06:37:21 -0400 | [diff] [blame] | 6241 | echo "CONFIG_QEMU_INTERP_PREFIX=$interp_prefix" | sed 's/%M/@0@/' >> $config_host_mak |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 6242 | if test "$default_targets" = "yes"; then |
| 6243 | echo "CONFIG_DEFAULT_TARGETS=y" >> $config_host_mak |
| 6244 | fi |
Peter Crosthwaite | a540f15 | 2013-04-18 14:47:31 +1000 | [diff] [blame] | 6245 | |
Wanlong Gao | a99d57b | 2014-05-14 17:43:28 +0800 | [diff] [blame] | 6246 | if test "$numa" = "yes"; then |
| 6247 | echo "CONFIG_NUMA=y" >> $config_host_mak |
Marc-André Lureau | ab31805 | 2019-07-24 19:23:16 +0400 | [diff] [blame] | 6248 | echo "NUMA_LIBS=$numa_libs" >> $config_host_mak |
Wanlong Gao | a99d57b | 2014-05-14 17:43:28 +0800 | [diff] [blame] | 6249 | fi |
| 6250 | |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 6251 | if test "$ccache_cpp2" = "yes"; then |
| 6252 | echo "export CCACHE_CPP2=y" >> $config_host_mak |
| 6253 | fi |
| 6254 | |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 6255 | if test "$safe_stack" = "yes"; then |
| 6256 | echo "CONFIG_SAFESTACK=y" >> $config_host_mak |
| 6257 | fi |
| 6258 | |
Peter Maydell | e29e5c6 | 2018-11-02 11:52:38 +0000 | [diff] [blame] | 6259 | # If we're using a separate build tree, set it up now. |
| 6260 | # DIRS are directories which we simply mkdir in the build tree; |
| 6261 | # LINKS are things to symlink back into the source tree |
| 6262 | # (these can be both files and directories). |
| 6263 | # Caution: do not add files or directories here using wildcards. This |
| 6264 | # will result in problems later if a new file matching the wildcard is |
| 6265 | # added to the source tree -- nothing will cause configure to be rerun |
| 6266 | # so the build tree will be missing the link back to the new file, and |
| 6267 | # tests might fail. Prefer to keep the relevant files in their own |
| 6268 | # directory and symlink the directory instead. |
Gerd Hoffmann | 09db9b9 | 2020-08-27 12:26:17 +0200 | [diff] [blame] | 6269 | # UNLINK is used to remove symlinks from older development versions |
| 6270 | # that might get into the way when doing "git update" without doing |
| 6271 | # a "make distclean" in between. |
Markus Armbruster | 9d49bcf | 2021-05-03 10:40:33 +0200 | [diff] [blame] | 6272 | DIRS="tests tests/tcg tests/qapi-schema tests/qtest/libqos" |
Thomas Huth | 1cf4323 | 2019-09-10 16:41:20 +0200 | [diff] [blame] | 6273 | DIRS="$DIRS tests/qtest tests/qemu-iotests tests/vm tests/fp tests/qgraph" |
Paolo Bonzini | b855f8d | 2017-08-22 06:50:18 +0200 | [diff] [blame] | 6274 | DIRS="$DIRS docs docs/interop fsdev scsi" |
Alexey Kardashevskiy | 744a928 | 2019-07-16 15:27:43 +1000 | [diff] [blame] | 6275 | DIRS="$DIRS pc-bios/optionrom pc-bios/s390-ccw" |
Gerd Hoffmann | 8db2a4f | 2020-06-22 15:12:40 +0200 | [diff] [blame] | 6276 | DIRS="$DIRS roms/seabios" |
Alex Bennée | c17a386 | 2020-09-09 12:27:41 +0100 | [diff] [blame] | 6277 | DIRS="$DIRS contrib/plugins/" |
Paolo Bonzini | 2038f8c | 2019-08-07 16:35:23 +0200 | [diff] [blame] | 6278 | LINKS="Makefile" |
Paolo Bonzini | 3941996 | 2020-08-06 14:08:31 +0200 | [diff] [blame] | 6279 | LINKS="$LINKS tests/tcg/Makefile.target" |
Gerd Hoffmann | ddcf607 | 2020-08-24 09:40:57 +0200 | [diff] [blame] | 6280 | LINKS="$LINKS pc-bios/optionrom/Makefile" |
Peter Maydell | e29e5c6 | 2018-11-02 11:52:38 +0000 | [diff] [blame] | 6281 | LINKS="$LINKS pc-bios/s390-ccw/Makefile" |
Gerd Hoffmann | 8db2a4f | 2020-06-22 15:12:40 +0200 | [diff] [blame] | 6282 | LINKS="$LINKS roms/seabios/Makefile" |
Peter Maydell | e29e5c6 | 2018-11-02 11:52:38 +0000 | [diff] [blame] | 6283 | LINKS="$LINKS pc-bios/qemu-icon.bmp" |
| 6284 | LINKS="$LINKS .gdbinit scripts" # scripts needed by relative path in .gdbinit |
Peter Maydell | 3995035 | 2018-11-02 11:52:39 +0000 | [diff] [blame] | 6285 | LINKS="$LINKS tests/acceptance tests/data" |
| 6286 | LINKS="$LINKS tests/qemu-iotests/check" |
Cleber Rosa | 8f8fd9e | 2019-02-06 11:29:01 -0500 | [diff] [blame] | 6287 | LINKS="$LINKS python" |
Alex Bennée | c17a386 | 2020-09-09 12:27:41 +0100 | [diff] [blame] | 6288 | LINKS="$LINKS contrib/plugins/Makefile " |
Gerd Hoffmann | 09db9b9 | 2020-08-27 12:26:17 +0200 | [diff] [blame] | 6289 | UNLINK="pc-bios/keymaps" |
Richard Henderson | 753d11f | 2011-06-24 11:58:37 -0700 | [diff] [blame] | 6290 | for bios_file in \ |
| 6291 | $source_path/pc-bios/*.bin \ |
Bin Meng | 3a631b8 | 2020-06-22 13:09:32 +0800 | [diff] [blame] | 6292 | $source_path/pc-bios/*.elf \ |
Alexey Kardashevskiy | 225a9ab | 2016-10-26 13:18:03 +1100 | [diff] [blame] | 6293 | $source_path/pc-bios/*.lid \ |
Richard Henderson | 753d11f | 2011-06-24 11:58:37 -0700 | [diff] [blame] | 6294 | $source_path/pc-bios/*.rom \ |
| 6295 | $source_path/pc-bios/*.dtb \ |
Dominik Dingel | e89e33e | 2013-04-29 04:52:06 +0000 | [diff] [blame] | 6296 | $source_path/pc-bios/*.img \ |
Richard Henderson | 753d11f | 2011-06-24 11:58:37 -0700 | [diff] [blame] | 6297 | $source_path/pc-bios/openbios-* \ |
Alexander Graf | 4e73c78 | 2014-01-20 00:25:40 +0100 | [diff] [blame] | 6298 | $source_path/pc-bios/u-boot.* \ |
Laszlo Ersek | 26ce90f | 2019-03-08 01:19:35 +0100 | [diff] [blame] | 6299 | $source_path/pc-bios/edk2-*.fd.bz2 \ |
Richard Henderson | 753d11f | 2011-06-24 11:58:37 -0700 | [diff] [blame] | 6300 | $source_path/pc-bios/palcode-* |
| 6301 | do |
Peter Maydell | e29e5c6 | 2018-11-02 11:52:38 +0000 | [diff] [blame] | 6302 | LINKS="$LINKS pc-bios/$(basename $bios_file)" |
Paolo Bonzini | d1807a4 | 2010-12-23 11:43:59 +0100 | [diff] [blame] | 6303 | done |
| 6304 | mkdir -p $DIRS |
Peter Maydell | e29e5c6 | 2018-11-02 11:52:38 +0000 | [diff] [blame] | 6305 | for f in $LINKS ; do |
Paolo Bonzini | 0f4d889 | 2020-09-01 03:23:47 -0400 | [diff] [blame] | 6306 | if [ -e "$source_path/$f" ]; then |
Peter Maydell | f9245e1 | 2011-06-03 17:10:40 +0100 | [diff] [blame] | 6307 | symlink "$source_path/$f" "$f" |
| 6308 | fi |
Paolo Bonzini | d1807a4 | 2010-12-23 11:43:59 +0100 | [diff] [blame] | 6309 | done |
Gerd Hoffmann | 09db9b9 | 2020-08-27 12:26:17 +0200 | [diff] [blame] | 6310 | for f in $UNLINK ; do |
| 6311 | if [ -L "$f" ]; then |
| 6312 | rm -f "$f" |
| 6313 | fi |
| 6314 | done |
Paul Brook | 1ad2134 | 2009-05-19 16:17:58 +0100 | [diff] [blame] | 6315 | |
Paolo Bonzini | 2038f8c | 2019-08-07 16:35:23 +0200 | [diff] [blame] | 6316 | (for i in $cross_cc_vars; do |
| 6317 | export $i |
| 6318 | done |
Alex Bennée | de6d7e6 | 2021-04-01 11:25:22 +0100 | [diff] [blame] | 6319 | export target_list source_path use_containers ARCH |
Paolo Bonzini | 2038f8c | 2019-08-07 16:35:23 +0200 | [diff] [blame] | 6320 | $source_path/tests/tcg/configure.sh) |
| 6321 | |
Anthony Liguori | c34ebfd | 2009-09-04 10:13:29 -0500 | [diff] [blame] | 6322 | # temporary config to build submodules |
Gerd Hoffmann | 8db2a4f | 2020-06-22 15:12:40 +0200 | [diff] [blame] | 6323 | for rom in seabios; do |
Anthony Liguori | c34ebfd | 2009-09-04 10:13:29 -0500 | [diff] [blame] | 6324 | config_mak=roms/$rom/config.mak |
Stefan Weil | 37116c8 | 2010-03-01 22:20:29 +0100 | [diff] [blame] | 6325 | echo "# Automatically generated by configure - do not modify" > $config_mak |
Anthony Liguori | c34ebfd | 2009-09-04 10:13:29 -0500 | [diff] [blame] | 6326 | echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak |
Richard Henderson | cdbd727 | 2016-07-07 21:49:36 -0700 | [diff] [blame] | 6327 | echo "AS=$as" >> $config_mak |
Richard Henderson | 5f6f0e2 | 2016-06-23 10:39:18 -0700 | [diff] [blame] | 6328 | echo "CCAS=$ccas" >> $config_mak |
Anthony Liguori | c34ebfd | 2009-09-04 10:13:29 -0500 | [diff] [blame] | 6329 | echo "CC=$cc" >> $config_mak |
| 6330 | echo "BCC=bcc" >> $config_mak |
Blue Swirl | 3dd46c7 | 2013-01-05 10:10:27 +0000 | [diff] [blame] | 6331 | echo "CPP=$cpp" >> $config_mak |
Anthony Liguori | c34ebfd | 2009-09-04 10:13:29 -0500 | [diff] [blame] | 6332 | echo "OBJCOPY=objcopy" >> $config_mak |
Michael S. Tsirkin | a31a864 | 2013-07-24 18:56:03 +0300 | [diff] [blame] | 6333 | echo "IASL=$iasl" >> $config_mak |
Anthony Liguori | c34ebfd | 2009-09-04 10:13:29 -0500 | [diff] [blame] | 6334 | echo "LD=$ld" >> $config_mak |
Alistair Francis | 9f81aeb | 2017-11-07 17:10:46 -0800 | [diff] [blame] | 6335 | echo "RANLIB=$ranlib" >> $config_mak |
Anthony Liguori | c34ebfd | 2009-09-04 10:13:29 -0500 | [diff] [blame] | 6336 | done |
| 6337 | |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 6338 | if test "$skip_meson" = no; then |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 6339 | cross="config-meson.cross.new" |
| 6340 | meson_quote() { |
Paolo Bonzini | 47b3083 | 2020-09-23 05:26:17 -0400 | [diff] [blame] | 6341 | echo "'$(echo $* | sed "s/ /','/g")'" |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 6342 | } |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 6343 | |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 6344 | echo "# Automatically generated by configure - do not modify" > $cross |
| 6345 | echo "[properties]" >> $cross |
| 6346 | test -z "$cxx" && echo "link_language = 'c'" >> $cross |
| 6347 | echo "[built-in options]" >> $cross |
| 6348 | echo "c_args = [${CFLAGS:+$(meson_quote $CFLAGS)}]" >> $cross |
| 6349 | echo "cpp_args = [${CXXFLAGS:+$(meson_quote $CXXFLAGS)}]" >> $cross |
| 6350 | echo "c_link_args = [${LDFLAGS:+$(meson_quote $LDFLAGS)}]" >> $cross |
| 6351 | echo "cpp_link_args = [${LDFLAGS:+$(meson_quote $LDFLAGS)}]" >> $cross |
| 6352 | echo "[binaries]" >> $cross |
| 6353 | echo "c = [$(meson_quote $cc)]" >> $cross |
| 6354 | test -n "$cxx" && echo "cpp = [$(meson_quote $cxx)]" >> $cross |
| 6355 | test -n "$objcc" && echo "objc = [$(meson_quote $objcc)]" >> $cross |
| 6356 | echo "ar = [$(meson_quote $ar)]" >> $cross |
| 6357 | echo "nm = [$(meson_quote $nm)]" >> $cross |
| 6358 | echo "pkgconfig = [$(meson_quote $pkg_config_exe)]" >> $cross |
| 6359 | echo "ranlib = [$(meson_quote $ranlib)]" >> $cross |
| 6360 | if has $sdl2_config; then |
| 6361 | echo "sdl2-config = [$(meson_quote $sdl2_config)]" >> $cross |
| 6362 | fi |
| 6363 | echo "strip = [$(meson_quote $strip)]" >> $cross |
| 6364 | echo "windres = [$(meson_quote $windres)]" >> $cross |
| 6365 | if test "$cross_compile" = "yes"; then |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 6366 | cross_arg="--cross-file config-meson.cross" |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 6367 | echo "[host_machine]" >> $cross |
| 6368 | if test "$mingw32" = "yes" ; then |
| 6369 | echo "system = 'windows'" >> $cross |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 6370 | fi |
Thomas Huth | 853b4ba | 2020-08-22 21:35:48 +0200 | [diff] [blame] | 6371 | if test "$linux" = "yes" ; then |
| 6372 | echo "system = 'linux'" >> $cross |
| 6373 | fi |
Joelle van Dyne | 0ca321e | 2021-01-25 17:24:53 -0800 | [diff] [blame] | 6374 | if test "$darwin" = "yes" ; then |
| 6375 | echo "system = 'darwin'" >> $cross |
| 6376 | fi |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 6377 | case "$ARCH" in |
Joelle van Dyne | f6bca9d | 2021-01-25 17:24:54 -0800 | [diff] [blame] | 6378 | i386) |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 6379 | echo "cpu_family = 'x86'" >> $cross |
| 6380 | ;; |
Joelle van Dyne | f6bca9d | 2021-01-25 17:24:54 -0800 | [diff] [blame] | 6381 | x86_64) |
| 6382 | echo "cpu_family = 'x86_64'" >> $cross |
| 6383 | ;; |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 6384 | ppc64le) |
| 6385 | echo "cpu_family = 'ppc64'" >> $cross |
| 6386 | ;; |
| 6387 | *) |
| 6388 | echo "cpu_family = '$ARCH'" >> $cross |
| 6389 | ;; |
| 6390 | esac |
| 6391 | echo "cpu = '$cpu'" >> $cross |
| 6392 | if test "$bigendian" = "yes" ; then |
| 6393 | echo "endian = 'big'" >> $cross |
| 6394 | else |
| 6395 | echo "endian = 'little'" >> $cross |
| 6396 | fi |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 6397 | else |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 6398 | cross_arg="--native-file config-meson.cross" |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 6399 | fi |
| 6400 | mv $cross config-meson.cross |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 6401 | |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 6402 | rm -rf meson-private meson-info meson-logs |
| 6403 | unset staticpic |
| 6404 | if ! version_ge "$($meson --version)" 0.56.0; then |
| 6405 | staticpic=$(if test "$pie" = yes; then echo true; else echo false; fi) |
| 6406 | fi |
| 6407 | NINJA=$ninja $meson setup \ |
Paolo Bonzini | d17f305 | 2020-08-18 12:17:01 +0200 | [diff] [blame] | 6408 | --prefix "$prefix" \ |
| 6409 | --libdir "$libdir" \ |
| 6410 | --libexecdir "$libexecdir" \ |
| 6411 | --bindir "$bindir" \ |
| 6412 | --includedir "$includedir" \ |
| 6413 | --datadir "$datadir" \ |
| 6414 | --mandir "$mandir" \ |
| 6415 | --sysconfdir "$sysconfdir" \ |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 6416 | --localedir "$localedir" \ |
Paolo Bonzini | d17f305 | 2020-08-18 12:17:01 +0200 | [diff] [blame] | 6417 | --localstatedir "$local_statedir" \ |
| 6418 | -Ddocdir="$docdir" \ |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame] | 6419 | -Dqemu_firmwarepath="$firmwarepath" \ |
Marc-André Lureau | 73f3aa3 | 2020-08-26 15:04:15 +0400 | [diff] [blame] | 6420 | -Dqemu_suffix="$qemu_suffix" \ |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 6421 | -Doptimization=$(if test "$debug" = yes; then echo 0; else echo 2; fi) \ |
| 6422 | -Ddebug=$(if test "$debug_info" = yes; then echo true; else echo false; fi) \ |
| 6423 | -Dwerror=$(if test "$werror" = yes; then echo true; else echo false; fi) \ |
| 6424 | -Dstrip=$(if test "$strip_opt" = yes; then echo true; else echo false; fi) \ |
Marc-André Lureau | da6d48b | 2019-09-17 15:39:36 +0400 | [diff] [blame] | 6425 | -Db_pie=$(if test "$pie" = yes; then echo true; else echo false; fi) \ |
Paolo Bonzini | a5cb7c5 | 2020-10-19 06:56:16 -0400 | [diff] [blame] | 6426 | ${staticpic:+-Db_staticpic=$staticpic} \ |
Marc-André Lureau | bf0e56a | 2019-10-04 17:35:16 +0400 | [diff] [blame] | 6427 | -Db_coverage=$(if test "$gcov" = yes; then echo true; else echo false; fi) \ |
Daniele Buono | 9e62ba4 | 2020-12-04 18:06:14 -0500 | [diff] [blame] | 6428 | -Db_lto=$lto -Dcfi=$cfi -Dcfi_debug=$cfi_debug \ |
Yonggang Luo | 5f8937d | 2020-10-13 07:43:44 +0800 | [diff] [blame] | 6429 | -Dmalloc=$malloc -Dmalloc_trim=$malloc_trim -Dsparse=$sparse \ |
Reinoud Zandijk | 74a414a | 2021-04-02 22:25:32 +0200 | [diff] [blame] | 6430 | -Dkvm=$kvm -Dhax=$hax -Dwhpx=$whpx -Dhvf=$hvf -Dnvmm=$nvmm \ |
Yonggang Luo | 5f8937d | 2020-10-13 07:43:44 +0800 | [diff] [blame] | 6431 | -Dxen=$xen -Dxen_pci_passthrough=$xen_pci_passthrough -Dtcg=$tcg \ |
Paolo Bonzini | 1b69547 | 2021-01-07 14:02:29 +0100 | [diff] [blame] | 6432 | -Dcocoa=$cocoa -Dgtk=$gtk -Dmpath=$mpath -Dsdl=$sdl -Dsdl_image=$sdl_image \ |
Yonggang Luo | 5f8937d | 2020-10-13 07:43:44 +0800 | [diff] [blame] | 6433 | -Dvnc=$vnc -Dvnc_sasl=$vnc_sasl -Dvnc_jpeg=$vnc_jpeg -Dvnc_png=$vnc_png \ |
Misono Tomohiro | cece116 | 2020-10-08 19:31:33 +0900 | [diff] [blame] | 6434 | -Dgettext=$gettext -Dxkbcommon=$xkbcommon -Du2f=$u2f -Dvirtiofsd=$virtiofsd \ |
Paolo Bonzini | 8c6d4ff | 2020-11-17 13:02:17 +0100 | [diff] [blame] | 6435 | -Dcapstone=$capstone -Dslirp=$slirp -Dfdt=$fdt -Dbrlapi=$brlapi \ |
Paolo Bonzini | 9db405a | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 6436 | -Dcurl=$curl -Dglusterfs=$glusterfs -Dbzip2=$bzip2 -Dlibiscsi=$libiscsi \ |
Paolo Bonzini | 30045c0 | 2020-11-17 13:11:25 +0100 | [diff] [blame] | 6437 | -Dlibnfs=$libnfs -Diconv=$iconv -Dcurses=$curses -Dlibudev=$libudev\ |
Paolo Bonzini | ecea369 | 2020-11-17 13:35:28 +0100 | [diff] [blame] | 6438 | -Drbd=$rbd -Dlzo=$lzo -Dsnappy=$snappy -Dlzfse=$lzfse \ |
Paolo Bonzini | 727c8bb | 2020-11-17 14:46:58 +0100 | [diff] [blame] | 6439 | -Dzstd=$zstd -Dseccomp=$seccomp -Dvirtfs=$virtfs -Dcap_ng=$cap_ng \ |
Paolo Bonzini | 7bc3ca7 | 2020-11-20 08:38:22 +0100 | [diff] [blame] | 6440 | -Dattr=$attr -Ddefault_devices=$default_devices \ |
Paolo Bonzini | c8d5450 | 2020-10-16 03:32:52 -0400 | [diff] [blame] | 6441 | -Ddocs=$docs -Dsphinx_build=$sphinx_build -Dinstall_blobs=$blobs \ |
Paolo Bonzini | 106ad1f | 2021-02-17 16:24:25 +0100 | [diff] [blame] | 6442 | -Dvhost_user_blk_server=$vhost_user_blk_server -Dmultiprocess=$multiprocess \ |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 6443 | -Dfuse=$fuse -Dfuse_lseek=$fuse_lseek -Dguest_agent_msi=$guest_agent_msi \ |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 6444 | $(if test "$default_features" = no; then echo "-Dauto_features=disabled"; fi) \ |
Richard Henderson | c6fbea4 | 2021-01-24 11:10:55 -1000 | [diff] [blame] | 6445 | -Dtcg_interpreter=$tcg_interpreter \ |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 6446 | $cross_arg \ |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 6447 | "$PWD" "$source_path" |
| 6448 | |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 6449 | if test "$?" -ne 0 ; then |
| 6450 | error_exit "meson setup failed" |
| 6451 | fi |
Paolo Bonzini | 699d388 | 2021-03-16 08:27:40 +0100 | [diff] [blame] | 6452 | else |
| 6453 | if test -f meson-private/cmd_line.txt; then |
| 6454 | # Adjust old command line options whose type was changed |
| 6455 | # Avoids having to use "setup --wipe" when Meson is upgraded |
| 6456 | perl -i -ne ' |
| 6457 | s/^gettext = true$/gettext = auto/; |
| 6458 | s/^gettext = false$/gettext = disabled/; |
| 6459 | print;' meson-private/cmd_line.txt |
| 6460 | fi |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 6461 | fi |
| 6462 | |
Alex Bennée | 2d838d9 | 2020-09-09 12:27:37 +0100 | [diff] [blame] | 6463 | if test -n "${deprecated_features}"; then |
| 6464 | echo "Warning, deprecated features enabled." |
| 6465 | echo "Please see docs/system/deprecated.rst" |
| 6466 | echo " features: ${deprecated_features}" |
| 6467 | fi |
| 6468 | |
Thomas Huth | e0447a8 | 2021-04-14 13:20:04 +0200 | [diff] [blame] | 6469 | # Create list of config switches that should be poisoned in common code... |
| 6470 | # but filter out CONFIG_TCG and CONFIG_USER_ONLY which are special. |
Thomas Huth | 54b0306 | 2021-05-19 13:38:40 +0200 | [diff] [blame] | 6471 | target_configs_h=$(ls *-config-devices.h *-config-target.h 2>/dev/null) |
| 6472 | if test -n "$target_configs_h" ; then |
| 6473 | sed -n -e '/CONFIG_TCG/d' -e '/CONFIG_USER_ONLY/d' \ |
| 6474 | -e '/^#define / { s///; s/ .*//; s/^/#pragma GCC poison /p; }' \ |
| 6475 | $target_configs_h | sort -u > config-poison.h |
| 6476 | else |
| 6477 | :> config-poison.h |
| 6478 | fi |
Thomas Huth | e0447a8 | 2021-04-14 13:20:04 +0200 | [diff] [blame] | 6479 | |
Michael S. Tsirkin | dc65540 | 2014-03-09 17:37:49 +0200 | [diff] [blame] | 6480 | # Save the configure command line for later reuse. |
| 6481 | cat <<EOD >config.status |
| 6482 | #!/bin/sh |
| 6483 | # Generated by configure. |
| 6484 | # Run this file to recreate the current configuration. |
| 6485 | # Compiler output produced by configure, useful for debugging |
| 6486 | # configure, is in config.log if it exists. |
| 6487 | EOD |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 6488 | |
| 6489 | preserve_env() { |
| 6490 | envname=$1 |
| 6491 | |
| 6492 | eval envval=\$$envname |
| 6493 | |
| 6494 | if test -n "$envval" |
| 6495 | then |
| 6496 | echo "$envname='$envval'" >> config.status |
| 6497 | echo "export $envname" >> config.status |
| 6498 | else |
| 6499 | echo "unset $envname" >> config.status |
| 6500 | fi |
| 6501 | } |
| 6502 | |
| 6503 | # Preserve various env variables that influence what |
| 6504 | # features/build target configure will detect |
| 6505 | preserve_env AR |
| 6506 | preserve_env AS |
| 6507 | preserve_env CC |
| 6508 | preserve_env CPP |
| 6509 | preserve_env CXX |
| 6510 | preserve_env INSTALL |
| 6511 | preserve_env LD |
| 6512 | preserve_env LD_LIBRARY_PATH |
| 6513 | preserve_env LIBTOOL |
| 6514 | preserve_env MAKE |
| 6515 | preserve_env NM |
| 6516 | preserve_env OBJCOPY |
| 6517 | preserve_env PATH |
| 6518 | preserve_env PKG_CONFIG |
| 6519 | preserve_env PKG_CONFIG_LIBDIR |
| 6520 | preserve_env PKG_CONFIG_PATH |
| 6521 | preserve_env PYTHON |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 6522 | preserve_env SDL2_CONFIG |
| 6523 | preserve_env SMBD |
| 6524 | preserve_env STRIP |
| 6525 | preserve_env WINDRES |
| 6526 | |
Michael S. Tsirkin | dc65540 | 2014-03-09 17:37:49 +0200 | [diff] [blame] | 6527 | printf "exec" >>config.status |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 6528 | for i in "$0" "$@"; do |
Paolo Bonzini | 835af89 | 2020-09-08 13:20:45 +0200 | [diff] [blame] | 6529 | test "$i" = --skip-meson || printf " %s" "$(quote_sh "$i")" >>config.status |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 6530 | done |
Dr. David Alan Gilbert | cf7cc92 | 2016-01-12 11:58:48 +0000 | [diff] [blame] | 6531 | echo ' "$@"' >>config.status |
Michael S. Tsirkin | dc65540 | 2014-03-09 17:37:49 +0200 | [diff] [blame] | 6532 | chmod +x config.status |
| 6533 | |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 6534 | rm -r "$TMPDIR1" |