]>
Commit | Line | Data |
---|---|---|
7d13299d FB |
1 | #!/bin/sh |
2 | # | |
3ef693a0 | 3 | # qemu configure script (c) 2003 Fabrice Bellard |
7d13299d | 4 | # |
8cd05ab6 | 5 | |
99519e67 CH |
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 | ||
5e4dfd3d JS |
11 | # Don't allow CCACHE, if present, to use cached results of compile tests! |
12 | export CCACHE_RECACHE=yes | |
13 | ||
dedad027 DB |
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 | ||
8cd05ab6 PM |
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 | |
7d13299d FB |
74 | fi |
75 | ||
8cd05ab6 PM |
76 | TMPB="qemu-conf" |
77 | TMPC="${TMPDIR1}/${TMPB}.c" | |
66518bf6 | 78 | TMPO="${TMPDIR1}/${TMPB}.o" |
9c83ffd8 | 79 | TMPCXX="${TMPDIR1}/${TMPB}.cxx" |
8cd05ab6 | 80 | TMPE="${TMPDIR1}/${TMPB}.exe" |
26fffe29 | 81 | TMPTXT="${TMPDIR1}/${TMPB}.txt" |
7d13299d | 82 | |
da1d85e3 | 83 | rm -f config.log |
9ac81bbb | 84 | |
b48e3611 PM |
85 | # Print a helpful header at the top of config.log |
86 | echo "# QEMU configure log $(date)" >> config.log | |
979ae168 PM |
87 | printf "# Configured with:" >> config.log |
88 | printf " '%s'" "$0" "$@" >> config.log | |
89 | echo >> config.log | |
b48e3611 PM |
90 | echo "#" >> config.log |
91 | ||
835af899 PB |
92 | quote_sh() { |
93 | printf "%s" "$1" | sed "s,','\\\\'',g; s,.*,'&'," | |
94 | } | |
95 | ||
d880a3ba PB |
96 | print_error() { |
97 | (echo | |
76ad07a4 PM |
98 | echo "ERROR: $1" |
99 | while test -n "$2"; do | |
100 | echo " $2" | |
101 | shift | |
102 | done | |
d880a3ba PB |
103 | echo) >&2 |
104 | } | |
105 | ||
106 | error_exit() { | |
107 | print_error "$@" | |
76ad07a4 PM |
108 | exit 1 |
109 | } | |
110 | ||
9c83ffd8 PM |
111 | do_compiler() { |
112 | # Run the compiler, capturing its output to the log. First argument | |
113 | # is compiler binary to execute. | |
630d86b7 | 114 | compiler="$1" |
9c83ffd8 | 115 | shift |
8bbe05d7 IJ |
116 | if test -n "$BASH_VERSION"; then eval ' |
117 | echo >>config.log " | |
118 | funcs: ${FUNCNAME[*]} | |
119 | lines: ${BASH_LINENO[*]}" | |
120 | '; fi | |
9c83ffd8 PM |
121 | echo $compiler "$@" >> config.log |
122 | $compiler "$@" >> config.log 2>&1 || return $? | |
8dc38a78 PM |
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 | |
9c83ffd8 PM |
136 | echo $compiler -Werror "$@" >> config.log |
137 | $compiler -Werror "$@" >> config.log 2>&1 && return $? | |
76ad07a4 PM |
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." | |
8dc38a78 PM |
142 | } |
143 | ||
9c83ffd8 PM |
144 | do_cc() { |
145 | do_compiler "$cc" "$@" | |
146 | } | |
147 | ||
148 | do_cxx() { | |
149 | do_compiler "$cxx" "$@" | |
150 | } | |
151 | ||
00849b92 RH |
152 | # Append $2 to the variable named $1, with space separation |
153 | add_to() { | |
154 | eval $1=\${$1:+\"\$$1 \"}\$2 | |
155 | } | |
156 | ||
9c83ffd8 PM |
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. | |
53422040 | 161 | QEMU_CXXFLAGS="$QEMU_CXXFLAGS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS" |
5770e8af | 162 | CONFIGURE_CXXFLAGS=$(echo "$CONFIGURE_CFLAGS" | sed s/-std=gnu99/-std=gnu++11/) |
9c83ffd8 PM |
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 | ||
52166aa0 | 175 | compile_object() { |
fd0e6053 | 176 | local_cflags="$1" |
5770e8af | 177 | do_cc $CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -c -o $TMPO $TMPC |
52166aa0 JQ |
178 | } |
179 | ||
180 | compile_prog() { | |
181 | local_cflags="$1" | |
182 | local_ldflags="$2" | |
5770e8af PB |
183 | do_cc $CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC \ |
184 | $LDFLAGS $CONFIGURE_LDFLAGS $QEMU_LDFLAGS $local_ldflags | |
52166aa0 JQ |
185 | } |
186 | ||
11568d6d PB |
187 | # symbolically link $1 to $2. Portable version of "ln -sf". |
188 | symlink() { | |
72b8b5a1 | 189 | rm -rf "$2" |
ec5b06d7 | 190 | mkdir -p "$(dirname "$2")" |
72b8b5a1 | 191 | ln -s "$1" "$2" |
11568d6d PB |
192 | } |
193 | ||
0dba6195 LM |
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 | ||
0a01d76f | 200 | version_ge () { |
2df52b9b AB |
201 | local_ver1=$(expr "$1" : '\([0-9.]*\)' | tr . ' ') |
202 | local_ver2=$(echo "$2" | tr . ' ') | |
0a01d76f MAL |
203 | while true; do |
204 | set x $local_ver1 | |
205 | local_first=${2-0} | |
c44a33e2 SG |
206 | # 'shift 2' if $2 is set, or 'shift' if $2 is not set |
207 | shift ${2:+2} | |
0a01d76f MAL |
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 | |
c44a33e2 | 214 | shift ${2:+2} |
0a01d76f MAL |
215 | local_ver2=$* |
216 | done | |
217 | } | |
218 | ||
5b808275 LV |
219 | have_backend () { |
220 | echo "$trace_backends" | grep "$1" >/dev/null | |
221 | } | |
222 | ||
3b6b7550 PB |
223 | glob() { |
224 | eval test -z '"${1#'"$2"'}"' | |
225 | } | |
226 | ||
e9a3591f CB |
227 | ld_has() { |
228 | $ld --help 2>/dev/null | grep ".$1" >/dev/null 2>&1 | |
229 | } | |
230 | ||
4ace32e2 AO |
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 | ||
14211825 | 236 | # default parameters |
2ff6b91e | 237 | cpu="" |
a31a8642 | 238 | iasl="iasl" |
1e43adfc | 239 | interp_prefix="/usr/gnemul/qemu-%M" |
43ce4dfe | 240 | static="no" |
3812c0c4 | 241 | cross_compile="no" |
7d13299d | 242 | cross_prefix="" |
0c58ac1c | 243 | audio_drv_list="" |
b64ec4e4 FZ |
244 | block_drv_rw_whitelist="" |
245 | block_drv_ro_whitelist="" | |
e49d021e | 246 | host_cc="cc" |
d5631638 | 247 | audio_win_int="" |
957f1f99 | 248 | libs_qga="" |
5bc62e01 | 249 | debug_info="yes" |
cdad781d | 250 | lto="false" |
63678e17 | 251 | stack_protector="" |
1e4f6065 | 252 | safe_stack="" |
afc3a8f9 | 253 | use_containers="yes" |
f2385398 | 254 | gdb_bin=$(command -v "gdb-multiarch" || command -v "gdb") |
ac0df51d | 255 | |
92712822 DB |
256 | if test -e "$source_path/.git" |
257 | then | |
7d7dbf9d | 258 | git_submodules_action="update" |
92712822 | 259 | else |
7d7dbf9d | 260 | git_submodules_action="ignore" |
92712822 | 261 | fi |
2d652f24 PB |
262 | |
263 | git_submodules="ui/keycodemapdb" | |
cc84d63a | 264 | git="git" |
ac0df51d | 265 | |
afb63ebd SW |
266 | # Don't accept a target_list environment variable. |
267 | unset target_list | |
447e133f | 268 | unset target_list_exclude |
377529c0 PB |
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 | ||
c87ea116 AB |
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 | ||
8c6d4ff4 | 293 | brlapi="auto" |
f9cd86fe | 294 | curl="auto" |
5285e593 YL |
295 | iconv="auto" |
296 | curses="auto" | |
e3667660 | 297 | docs="auto" |
fbb4121d | 298 | fdt="auto" |
58952137 | 299 | netmap="no" |
35be72ba PB |
300 | sdl="auto" |
301 | sdl_image="auto" | |
422a5fd0 | 302 | coreaudio="auto" |
cece116c | 303 | virtiofsd="auto" |
69202b40 | 304 | virtfs="auto" |
5c53015a | 305 | libudev="auto" |
6ec0e15d | 306 | mpath="auto" |
a0b93237 | 307 | vnc="enabled" |
deb62371 | 308 | sparse="auto" |
c87ea116 | 309 | vde="$default_feature" |
a0b93237 PB |
310 | vnc_sasl="auto" |
311 | vnc_jpeg="auto" | |
312 | vnc_png="auto" | |
4113f4cf | 313 | xkbcommon="auto" |
c87ea116 AB |
314 | xen="$default_feature" |
315 | xen_ctrl_version="$default_feature" | |
1badb709 | 316 | xen_pci_passthrough="auto" |
c87ea116 AB |
317 | linux_aio="$default_feature" |
318 | linux_io_uring="$default_feature" | |
727c8bb8 | 319 | cap_ng="auto" |
f7f2d651 | 320 | attr="auto" |
c87ea116 | 321 | xfs="$default_feature" |
1badb709 | 322 | tcg="enabled" |
c87ea116 AB |
323 | membarrier="$default_feature" |
324 | vhost_net="$default_feature" | |
325 | vhost_crypto="$default_feature" | |
326 | vhost_scsi="$default_feature" | |
327 | vhost_vsock="$default_feature" | |
d88618f7 | 328 | vhost_user="no" |
e5e856c1 | 329 | vhost_user_blk_server="auto" |
c87ea116 | 330 | vhost_user_fs="$default_feature" |
3bd40ec7 PB |
331 | kvm="auto" |
332 | hax="auto" | |
333 | hvf="auto" | |
334 | whpx="auto" | |
74a414a1 | 335 | nvmm="auto" |
c87ea116 AB |
336 | rdma="$default_feature" |
337 | pvrdma="$default_feature" | |
377529c0 PB |
338 | gprof="no" |
339 | debug_tcg="no" | |
377529c0 | 340 | debug="no" |
247724cb | 341 | sanitizers="no" |
0aebab04 | 342 | tsan="no" |
c87ea116 | 343 | fortify_source="$default_feature" |
377529c0 | 344 | strip_opt="yes" |
23a77b2d | 345 | tcg_interpreter="false" |
377529c0 PB |
346 | bigendian="no" |
347 | mingw32="no" | |
1d728c39 | 348 | gcov="no" |
c7328271 | 349 | EXESUF="" |
484e2cc7 | 350 | HOST_DSOSUF=".so" |
17969268 | 351 | modules="no" |
bd83c861 | 352 | module_upgrades="no" |
377529c0 | 353 | prefix="/usr/local" |
10ff82d1 | 354 | qemu_suffix="qemu" |
4d34a86b | 355 | slirp="auto" |
377529c0 PB |
356 | oss_lib="" |
357 | bsd="no" | |
358 | linux="no" | |
359 | solaris="no" | |
360 | profiler="no" | |
b4e312e9 | 361 | cocoa="auto" |
377529c0 PB |
362 | softmmu="yes" |
363 | linux_user="no" | |
377529c0 | 364 | bsd_user="no" |
c8d5450b | 365 | blobs="true" |
377529c0 | 366 | pkgversion="" |
40d6444e | 367 | pie="" |
3556c233 | 368 | qom_cast_debug="yes" |
baf86d6b | 369 | trace_backends="log" |
377529c0 | 370 | trace_file="trace" |
c87ea116 | 371 | spice="$default_feature" |
58d3f3ff | 372 | spice_protocol="auto" |
fabd1e93 | 373 | rbd="auto" |
c87ea116 | 374 | smartcard="$default_feature" |
0a40bcb7 | 375 | u2f="auto" |
c87ea116 AB |
376 | libusb="$default_feature" |
377 | usb_redir="$default_feature" | |
378 | opengl="$default_feature" | |
5dd89908 | 379 | cpuid_h="no" |
c87ea116 | 380 | avx2_opt="$default_feature" |
8b18cdbf | 381 | capstone="auto" |
0c32a0ae | 382 | lzo="auto" |
241611ea | 383 | snappy="auto" |
29ba6116 | 384 | bzip2="auto" |
ecea3696 | 385 | lzfse="auto" |
b1def33d | 386 | zstd="auto" |
c87ea116 | 387 | guest_agent="$default_feature" |
d9840e25 | 388 | guest_agent_with_vss="no" |
50cbebb9 | 389 | guest_agent_ntddscsi="no" |
b846ab7c | 390 | guest_agent_msi="auto" |
c87ea116 | 391 | vss_win32_sdk="$default_feature" |
d9840e25 | 392 | win_sdk="no" |
c87ea116 | 393 | want_tools="$default_feature" |
9db405a3 | 394 | libiscsi="auto" |
30045c05 | 395 | libnfs="auto" |
519175a2 | 396 | coroutine="" |
c87ea116 | 397 | coroutine_pool="$default_feature" |
7d992e4d | 398 | debug_stack_usage="no" |
f0d92b56 | 399 | crypto_afalg="no" |
9e62ba48 DB |
400 | cfi="false" |
401 | cfi_debug="false" | |
90835c2b | 402 | seccomp="auto" |
08821ca2 | 403 | glusterfs="auto" |
1b695471 | 404 | gtk="auto" |
a1c5e949 | 405 | tls_priority="NORMAL" |
c87ea116 AB |
406 | gnutls="$default_feature" |
407 | nettle="$default_feature" | |
dc2207af | 408 | nettle_xts="no" |
c87ea116 | 409 | gcrypt="$default_feature" |
e0576942 DB |
410 | gcrypt_xts="no" |
411 | qemu_private_xts="yes" | |
c87ea116 AB |
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" | |
2847b469 | 419 | tcmalloc="no" |
7b01cb97 | 420 | jemalloc="no" |
c87ea116 AB |
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} | |
c87ea116 | 430 | libxml2="$default_feature" |
ba59fb77 | 431 | debug_mutex="no" |
c87ea116 | 432 | libpmem="$default_feature" |
7bc3ca7f | 433 | default_devices="true" |
40e8c6f4 | 434 | plugins="no" |
adc28027 | 435 | fuzzing="no" |
b767d257 | 436 | rng_none="no" |
c87ea116 AB |
437 | secret_keyring="$default_feature" |
438 | libdaxctl="$default_feature" | |
a5665051 | 439 | meson="" |
48328880 | 440 | ninja="" |
a5665051 | 441 | skip_meson=no |
0e8e77d4 | 442 | gettext="auto" |
a484a719 | 443 | fuse="auto" |
df4ea709 | 444 | fuse_lseek="auto" |
106ad1f9 | 445 | multiprocess="auto" |
b8e0c493 | 446 | slirp_smbd="$default_feature" |
377529c0 | 447 | |
aa087962 | 448 | malloc_trim="auto" |
20cf7b8e | 449 | gio="$default_feature" |
898be3e0 | 450 | |
c87ea116 | 451 | # parse CC options second |
ac0df51d | 452 | for opt do |
89138857 | 453 | optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') |
ac0df51d AL |
454 | case "$opt" in |
455 | --cross-prefix=*) cross_prefix="$optarg" | |
3812c0c4 | 456 | cross_compile="yes" |
ac0df51d | 457 | ;; |
3d8df640 | 458 | --cc=*) CC="$optarg" |
ac0df51d | 459 | ;; |
83f73fce TS |
460 | --cxx=*) CXX="$optarg" |
461 | ;; | |
2ff6b91e JQ |
462 | --cpu=*) cpu="$optarg" |
463 | ;; | |
de385287 | 464 | --extra-cflags=*) QEMU_CFLAGS="$QEMU_CFLAGS $optarg" |
db5adeaa | 465 | QEMU_LDFLAGS="$QEMU_LDFLAGS $optarg" |
e2a2ed06 | 466 | ;; |
11cde1c8 | 467 | --extra-cxxflags=*) QEMU_CXXFLAGS="$QEMU_CXXFLAGS $optarg" |
11cde1c8 | 468 | ;; |
db5adeaa | 469 | --extra-ldflags=*) QEMU_LDFLAGS="$QEMU_LDFLAGS $optarg" |
f9943cd5 | 470 | EXTRA_LDFLAGS="$optarg" |
e2a2ed06 | 471 | ;; |
5bc62e01 GH |
472 | --enable-debug-info) debug_info="yes" |
473 | ;; | |
474 | --disable-debug-info) debug_info="no" | |
475 | ;; | |
d75402b5 AB |
476 | --cross-cc-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-cc-FOO option" |
477 | ;; | |
d422b2bc AB |
478 | --cross-cc-cflags-*) cc_arch=${opt#--cross-cc-flags-}; cc_arch=${cc_arch%%=*} |
479 | eval "cross_cc_cflags_${cc_arch}=\$optarg" | |
2038f8c8 | 480 | cross_cc_vars="$cross_cc_vars cross_cc_cflags_${cc_arch}" |
d422b2bc | 481 | ;; |
d75402b5 | 482 | --cross-cc-*) cc_arch=${opt#--cross-cc-}; cc_arch=${cc_arch%%=*} |
2038f8c8 | 483 | cc_archs="$cc_archs $cc_arch" |
d75402b5 | 484 | eval "cross_cc_${cc_arch}=\$optarg" |
2038f8c8 | 485 | cross_cc_vars="$cross_cc_vars cross_cc_${cc_arch}" |
d75402b5 | 486 | ;; |
ac0df51d AL |
487 | esac |
488 | done | |
ac0df51d AL |
489 | # OS specific |
490 | # Using uname is really, really broken. Once we have the right set of checks | |
93148aa5 | 491 | # we can eliminate its usage altogether. |
ac0df51d | 492 | |
e49d021e PM |
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 | ||
83f73fce TS |
503 | if test -z "${CXX}${cross_prefix}"; then |
504 | cxx="c++" | |
505 | else | |
506 | cxx="${CXX-${cross_prefix}g++}" | |
507 | fi | |
508 | ||
b3198cc2 | 509 | ar="${AR-${cross_prefix}ar}" |
cdbd727c | 510 | as="${AS-${cross_prefix}as}" |
5f6f0e27 | 511 | ccas="${CCAS-$cc}" |
3dd46c78 | 512 | cpp="${CPP-$cc -E}" |
b3198cc2 SY |
513 | objcopy="${OBJCOPY-${cross_prefix}objcopy}" |
514 | ld="${LD-${cross_prefix}ld}" | |
9f81aeb5 | 515 | ranlib="${RANLIB-${cross_prefix}ranlib}" |
4852ee95 | 516 | nm="${NM-${cross_prefix}nm}" |
b3198cc2 SY |
517 | strip="${STRIP-${cross_prefix}strip}" |
518 | windres="${WINDRES-${cross_prefix}windres}" | |
17884d7b ST |
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 | |
47c03744 | 524 | sdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}" |
ac0df51d | 525 | |
45d285ab PM |
526 | # If the user hasn't specified ARFLAGS, default to 'rv', just as make does. |
527 | ARFLAGS="${ARFLAGS-rv}" | |
528 | ||
be17dc90 | 529 | # default flags for all hosts |
2d31515b PM |
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.) | |
086d5f75 PB |
534 | QEMU_CFLAGS="-fno-strict-aliasing -fno-common -fwrapv $QEMU_CFLAGS" |
535 | QEMU_CFLAGS="-Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS" | |
c95e3080 | 536 | QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS" |
be17dc90 | 537 | QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS" |
5770e8af PB |
538 | |
539 | # Flags that are needed during configure but later taken care of by Meson | |
540 | CONFIGURE_CFLAGS="-std=gnu99 -Wall" | |
541 | CONFIGURE_LDFLAGS= | |
086d5f75 | 542 | |
be17dc90 | 543 | |
ac0df51d AL |
544 | check_define() { |
545 | cat > $TMPC <<EOF | |
546 | #if !defined($1) | |
fd786e1a | 547 | #error $1 not defined |
ac0df51d AL |
548 | #endif |
549 | int main(void) { return 0; } | |
550 | EOF | |
52166aa0 | 551 | compile_object |
ac0df51d AL |
552 | } |
553 | ||
307119e7 GH |
554 | check_include() { |
555 | cat > $TMPC <<EOF | |
556 | #include <$1> | |
557 | int main(void) { return 0; } | |
558 | EOF | |
559 | compile_object | |
560 | } | |
561 | ||
93b25869 JS |
562 | write_c_skeleton() { |
563 | cat > $TMPC <<EOF | |
564 | int main(void) { return 0; } | |
565 | EOF | |
566 | } | |
567 | ||
adc28027 AB |
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 | ||
bbea4050 PM |
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' | |
951fedfc PM |
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' | |
bbea4050 | 597 | else |
951fedfc PM |
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' | |
bbea4050 PM |
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) | |
5869f8dd | 610 | HOST_DSOSUF=".dylib" |
bbea4050 PM |
611 | ;; |
612 | SunOS) | |
89138857 | 613 | # $(uname -m) returns i86pc even on an x86_64 box, so default based on isainfo |
bbea4050 PM |
614 | if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then |
615 | cpu="x86_64" | |
616 | fi | |
617 | esac | |
618 | ||
2ff6b91e JQ |
619 | if test ! -z "$cpu" ; then |
620 | # command line argument | |
621 | : | |
622 | elif check_define __i386__ ; then | |
ac0df51d AL |
623 | cpu="i386" |
624 | elif check_define __x86_64__ ; then | |
c72b26ec RH |
625 | if check_define __ILP32__ ; then |
626 | cpu="x32" | |
627 | else | |
628 | cpu="x86_64" | |
629 | fi | |
3aa9bd6c | 630 | elif check_define __sparc__ ; then |
3aa9bd6c BS |
631 | if check_define __arch64__ ; then |
632 | cpu="sparc64" | |
633 | else | |
634 | cpu="sparc" | |
635 | fi | |
fdf7ed96 | 636 | elif check_define _ARCH_PPC ; then |
637 | if check_define _ARCH_PPC64 ; then | |
f8378acc RH |
638 | if check_define _LITTLE_ENDIAN ; then |
639 | cpu="ppc64le" | |
640 | else | |
641 | cpu="ppc64" | |
642 | fi | |
fdf7ed96 | 643 | else |
644 | cpu="ppc" | |
645 | fi | |
afa05235 AJ |
646 | elif check_define __mips__ ; then |
647 | cpu="mips" | |
d66ed0ea AJ |
648 | elif check_define __s390__ ; then |
649 | if check_define __s390x__ ; then | |
650 | cpu="s390x" | |
651 | else | |
652 | cpu="s390" | |
653 | fi | |
c4f80543 AF |
654 | elif check_define __riscv ; then |
655 | if check_define _LP64 ; then | |
656 | cpu="riscv64" | |
657 | else | |
658 | cpu="riscv32" | |
659 | fi | |
21d89f84 PM |
660 | elif check_define __arm__ ; then |
661 | cpu="arm" | |
1f080313 CF |
662 | elif check_define __aarch64__ ; then |
663 | cpu="aarch64" | |
ac0df51d | 664 | else |
89138857 | 665 | cpu=$(uname -m) |
ac0df51d AL |
666 | fi |
667 | ||
359bc95d PM |
668 | ARCH= |
669 | # Normalise host CPU name and set ARCH. | |
670 | # Note that this case should only have supported host CPUs, not guests. | |
7d13299d | 671 | case "$cpu" in |
ee35e968 | 672 | ppc|ppc64|s390x|sparc64|x32|riscv32|riscv64) |
898be3e0 | 673 | ;; |
f8378acc RH |
674 | ppc64le) |
675 | ARCH="ppc64" | |
f8378acc | 676 | ;; |
7d13299d | 677 | i386|i486|i586|i686|i86pc|BePC) |
97a847bc | 678 | cpu="i386" |
7d13299d | 679 | ;; |
aaa5fa14 AJ |
680 | x86_64|amd64) |
681 | cpu="x86_64" | |
682 | ;; | |
21d89f84 PM |
683 | armv*b|armv*l|arm) |
684 | cpu="arm" | |
7d13299d | 685 | ;; |
1f080313 CF |
686 | aarch64) |
687 | cpu="aarch64" | |
688 | ;; | |
afa05235 AJ |
689 | mips*) |
690 | cpu="mips" | |
691 | ;; | |
3142255c | 692 | sparc|sun4[cdmuv]) |
ae228531 FB |
693 | cpu="sparc" |
694 | ;; | |
7d13299d | 695 | *) |
359bc95d PM |
696 | # This will result in either an error or falling back to TCI later |
697 | ARCH=unknown | |
7d13299d FB |
698 | ;; |
699 | esac | |
359bc95d PM |
700 | if test -z "$ARCH"; then |
701 | ARCH="$cpu" | |
702 | fi | |
e2d52ad3 | 703 | |
7d13299d | 704 | # OS specific |
0dbfc675 | 705 | |
7d13299d | 706 | case $targetos in |
67b915a5 | 707 | MINGW32*) |
0dbfc675 | 708 | mingw32="yes" |
3cec7cc2 | 709 | audio_possible_drivers="dsound sdl" |
307119e7 GH |
710 | if check_include dsound.h; then |
711 | audio_drv_list="dsound" | |
712 | else | |
713 | audio_drv_list="" | |
714 | fi | |
898be3e0 | 715 | supported_os="yes" |
fb648e9c | 716 | pie="no" |
67b915a5 | 717 | ;; |
5c40d2bd | 718 | GNU/kFreeBSD) |
a167ba50 | 719 | bsd="yes" |
6a485418 | 720 | audio_drv_list="oss try-sdl" |
0bac1111 | 721 | audio_possible_drivers="oss sdl pa" |
5c40d2bd | 722 | ;; |
7d3505c5 | 723 | FreeBSD) |
0dbfc675 | 724 | bsd="yes" |
0db4a067 | 725 | make="${MAKE-gmake}" |
6a485418 | 726 | audio_drv_list="oss try-sdl" |
0bac1111 | 727 | audio_possible_drivers="oss sdl pa" |
f01576f1 | 728 | # needed for kinfo_getvmmap(3) in libutil.h |
58952137 | 729 | netmap="" # enable netmap autodetect |
7d3505c5 | 730 | ;; |
c5e97233 | 731 | DragonFly) |
0dbfc675 | 732 | bsd="yes" |
0db4a067 | 733 | make="${MAKE-gmake}" |
6a485418 | 734 | audio_drv_list="oss try-sdl" |
0bac1111 | 735 | audio_possible_drivers="oss sdl pa" |
c5e97233 | 736 | ;; |
7d3505c5 | 737 | NetBSD) |
0dbfc675 | 738 | bsd="yes" |
0db4a067 | 739 | make="${MAKE-gmake}" |
6a485418 | 740 | audio_drv_list="oss try-sdl" |
0bac1111 | 741 | audio_possible_drivers="oss sdl" |
0dbfc675 | 742 | oss_lib="-lossaudio" |
7d3505c5 FB |
743 | ;; |
744 | OpenBSD) | |
0dbfc675 | 745 | bsd="yes" |
0db4a067 | 746 | make="${MAKE-gmake}" |
f92c7168 | 747 | audio_drv_list="try-sdl" |
0bac1111 | 748 | audio_possible_drivers="sdl" |
7d3505c5 | 749 | ;; |
83fb7adf | 750 | Darwin) |
0dbfc675 JQ |
751 | bsd="yes" |
752 | darwin="yes" | |
422a5fd0 | 753 | audio_drv_list="try-coreaudio try-sdl" |
14382605 | 754 | audio_possible_drivers="coreaudio sdl" |
a0b7cf6b PM |
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" | |
83fb7adf | 758 | ;; |
ec530c81 | 759 | SunOS) |
0dbfc675 | 760 | solaris="yes" |
0db4a067 | 761 | make="${MAKE-gmake}" |
e2d8830e | 762 | smbd="${SMBD-/usr/sfw/sbin/smbd}" |
0dbfc675 | 763 | if test -f /usr/include/sys/soundcard.h ; then |
6a485418 | 764 | audio_drv_list="oss try-sdl" |
0dbfc675 JQ |
765 | fi |
766 | audio_possible_drivers="oss sdl" | |
d741429a BS |
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" | |
86b2bd93 | 771 | ;; |
179cf400 AF |
772 | Haiku) |
773 | haiku="yes" | |
cde99253 | 774 | QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS -D_BSD_SOURCE $QEMU_CFLAGS" |
179cf400 | 775 | ;; |
898be3e0 | 776 | Linux) |
7183834a | 777 | audio_drv_list="try-pa oss" |
0bac1111 | 778 | audio_possible_drivers="oss alsa sdl pa" |
0dbfc675 JQ |
779 | linux="yes" |
780 | linux_user="yes" | |
c87ea116 | 781 | vhost_user=${default_feature:-yes} |
898be3e0 | 782 | ;; |
7d13299d FB |
783 | esac |
784 | ||
7d3505c5 | 785 | if [ "$bsd" = "yes" ] ; then |
b1a550a0 | 786 | if [ "$darwin" != "yes" ] ; then |
08de3949 | 787 | bsd_user="yes" |
83fb7adf | 788 | fi |
7d3505c5 FB |
789 | fi |
790 | ||
0db4a067 | 791 | : ${make=${MAKE-make}} |
b6daf4d3 | 792 | |
faf44142 DB |
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 | |
ddf90699 | 795 | # we check that too |
faf44142 | 796 | python= |
0a01d76f | 797 | explicit_python=no |
ddf90699 | 798 | for binary in "${PYTHON-python3}" python |
faf44142 DB |
799 | do |
800 | if has "$binary" | |
801 | then | |
95c5f2de | 802 | python=$(command -v "$binary") |
faf44142 DB |
803 | break |
804 | fi | |
805 | done | |
903458c8 | 806 | |
903458c8 | 807 | |
39d87c8c AB |
808 | # Check for ancillary tools used in testing |
809 | genisoimage= | |
3df437c7 | 810 | for binary in genisoimage mkisofs |
39d87c8c AB |
811 | do |
812 | if has $binary | |
813 | then | |
814 | genisoimage=$(command -v "$binary") | |
815 | break | |
816 | fi | |
817 | done | |
818 | ||
3c4a4d0d PM |
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 | ||
3457a3f8 | 826 | if test "$mingw32" = "yes" ; then |
3457a3f8 | 827 | EXESUF=".exe" |
484e2cc7 | 828 | HOST_DSOSUF=".dll" |
78e9d4ad | 829 | # MinGW needs -mthreads for TLS and macro _MT. |
5770e8af | 830 | CONFIGURE_CFLAGS="-mthreads $CONFIGURE_CFLAGS" |
93b25869 | 831 | write_c_skeleton; |
d17f305a | 832 | prefix="/qemu" |
77433a5f | 833 | qemu_suffix="" |
105fad6b | 834 | libs_qga="-lws2_32 -lwinmm -lpowrprof -lwtsapi32 -lwininet -liphlpapi -lnetapi32 $libs_qga" |
3457a3f8 JQ |
835 | fi |
836 | ||
487fefdb | 837 | werror="" |
85aa5189 | 838 | |
7d13299d | 839 | for opt do |
89138857 | 840 | optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') |
7d13299d | 841 | case "$opt" in |
2efc3265 FB |
842 | --help|-h) show_help=yes |
843 | ;; | |
99123e13 MF |
844 | --version|-V) exec cat $source_path/VERSION |
845 | ;; | |
b1a550a0 | 846 | --prefix=*) prefix="$optarg" |
7d13299d | 847 | ;; |
b1a550a0 | 848 | --interp-prefix=*) interp_prefix="$optarg" |
32ce6337 | 849 | ;; |
ac0df51d | 850 | --cross-prefix=*) |
7d13299d | 851 | ;; |
ac0df51d | 852 | --cc=*) |
7d13299d | 853 | ;; |
b1a550a0 | 854 | --host-cc=*) host_cc="$optarg" |
83469015 | 855 | ;; |
83f73fce TS |
856 | --cxx=*) |
857 | ;; | |
e007dbec MT |
858 | --iasl=*) iasl="$optarg" |
859 | ;; | |
3c4a4d0d PM |
860 | --objcc=*) objcc="$optarg" |
861 | ;; | |
b1a550a0 | 862 | --make=*) make="$optarg" |
7d13299d | 863 | ;; |
b6daf4d3 | 864 | --install=*) |
6a882643 | 865 | ;; |
0a01d76f | 866 | --python=*) python="$optarg" ; explicit_python=yes |
c886edfb | 867 | ;; |
2eb054c2 PM |
868 | --sphinx-build=*) sphinx_build="$optarg" |
869 | ;; | |
a5665051 PB |
870 | --skip-meson) skip_meson=yes |
871 | ;; | |
872 | --meson=*) meson="$optarg" | |
873 | ;; | |
48328880 PB |
874 | --ninja=*) ninja="$optarg" |
875 | ;; | |
e2d8830e BS |
876 | --smbd=*) smbd="$optarg" |
877 | ;; | |
e2a2ed06 | 878 | --extra-cflags=*) |
7d13299d | 879 | ;; |
11cde1c8 BD |
880 | --extra-cxxflags=*) |
881 | ;; | |
e2a2ed06 | 882 | --extra-ldflags=*) |
7d13299d | 883 | ;; |
5bc62e01 GH |
884 | --enable-debug-info) |
885 | ;; | |
886 | --disable-debug-info) | |
887 | ;; | |
d75402b5 AB |
888 | --cross-cc-*) |
889 | ;; | |
17969268 FZ |
890 | --enable-modules) |
891 | modules="yes" | |
3aa88b31 SH |
892 | ;; |
893 | --disable-modules) | |
894 | modules="no" | |
17969268 | 895 | ;; |
bd83c861 CE |
896 | --disable-module-upgrades) module_upgrades="no" |
897 | ;; | |
898 | --enable-module-upgrades) module_upgrades="yes" | |
899 | ;; | |
2ff6b91e | 900 | --cpu=*) |
7d13299d | 901 | ;; |
b1a550a0 | 902 | --target-list=*) target_list="$optarg" |
447e133f AB |
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 | |
de83cd02 | 911 | ;; |
5b808275 LV |
912 | --enable-trace-backends=*) trace_backends="$optarg" |
913 | ;; | |
914 | # XXX: backwards compatibility | |
915 | --enable-trace-backend=*) trace_backends="$optarg" | |
94a420b1 | 916 | ;; |
74242e0f | 917 | --with-trace-file=*) trace_file="$optarg" |
9410b56c | 918 | ;; |
7bc3ca7f | 919 | --with-default-devices) default_devices="true" |
f3494749 | 920 | ;; |
7bc3ca7f | 921 | --without-default-devices) default_devices="false" |
f3494749 | 922 | ;; |
c87ea116 AB |
923 | --without-default-features) # processed above |
924 | ;; | |
7d13299d FB |
925 | --enable-gprof) gprof="yes" |
926 | ;; | |
1d728c39 BS |
927 | --enable-gcov) gcov="yes" |
928 | ;; | |
79427693 LM |
929 | --static) |
930 | static="yes" | |
17884d7b | 931 | QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS" |
43ce4dfe | 932 | ;; |
0b24e75f PB |
933 | --mandir=*) mandir="$optarg" |
934 | ;; | |
935 | --bindir=*) bindir="$optarg" | |
936 | ;; | |
3aa5d2be AL |
937 | --libdir=*) libdir="$optarg" |
938 | ;; | |
8bf188aa MT |
939 | --libexecdir=*) libexecdir="$optarg" |
940 | ;; | |
0f94d6da AL |
941 | --includedir=*) includedir="$optarg" |
942 | ;; | |
528ae5b8 | 943 | --datadir=*) datadir="$optarg" |
0b24e75f | 944 | ;; |
77433a5f | 945 | --with-suffix=*) qemu_suffix="$optarg" |
023d3d67 | 946 | ;; |
c6502638 | 947 | --docdir=*) docdir="$optarg" |
0b24e75f | 948 | ;; |
fe0038be PB |
949 | --localedir=*) localedir="$optarg" |
950 | ;; | |
ca2fb938 | 951 | --sysconfdir=*) sysconfdir="$optarg" |
07381cc1 | 952 | ;; |
785c23ae LC |
953 | --localstatedir=*) local_statedir="$optarg" |
954 | ;; | |
3d5eecab GH |
955 | --firmwarepath=*) firmwarepath="$optarg" |
956 | ;; | |
181ce1d0 OH |
957 | --host=*|--build=*|\ |
958 | --disable-dependency-tracking|\ | |
785c23ae | 959 | --sbindir=*|--sharedstatedir=*|\ |
fe0038be | 960 | --oldincludedir=*|--datarootdir=*|--infodir=*|\ |
023ddd74 MF |
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 | ;; | |
35be72ba | 967 | --disable-sdl) sdl="disabled" |
97a847bc | 968 | ;; |
35be72ba | 969 | --enable-sdl) sdl="enabled" |
c4198157 | 970 | ;; |
35be72ba | 971 | --disable-sdl-image) sdl_image="disabled" |
a442fe2f | 972 | ;; |
35be72ba | 973 | --enable-sdl-image) sdl_image="enabled" |
a442fe2f | 974 | ;; |
3556c233 PB |
975 | --disable-qom-cast-debug) qom_cast_debug="no" |
976 | ;; | |
977 | --enable-qom-cast-debug) qom_cast_debug="yes" | |
978 | ;; | |
69202b40 | 979 | --disable-virtfs) virtfs="disabled" |
983eef5a | 980 | ;; |
69202b40 | 981 | --enable-virtfs) virtfs="enabled" |
983eef5a | 982 | ;; |
5c53015a PB |
983 | --disable-libudev) libudev="disabled" |
984 | ;; | |
985 | --enable-libudev) libudev="enabled" | |
986 | ;; | |
cece116c MT |
987 | --disable-virtiofsd) virtiofsd="disabled" |
988 | ;; | |
989 | --enable-virtiofsd) virtiofsd="enabled" | |
990 | ;; | |
6ec0e15d | 991 | --disable-mpath) mpath="disabled" |
fe8fc5ae | 992 | ;; |
6ec0e15d | 993 | --enable-mpath) mpath="enabled" |
fe8fc5ae | 994 | ;; |
a0b93237 | 995 | --disable-vnc) vnc="disabled" |
821601ea | 996 | ;; |
a0b93237 | 997 | --enable-vnc) vnc="enabled" |
821601ea | 998 | ;; |
0e8e77d4 | 999 | --disable-gettext) gettext="disabled" |
e8f3bd71 | 1000 | ;; |
0e8e77d4 | 1001 | --enable-gettext) gettext="enabled" |
e8f3bd71 | 1002 | ;; |
2f6a1ab0 BS |
1003 | --oss-lib=*) oss_lib="$optarg" |
1004 | ;; | |
0c58ac1c | 1005 | --audio-drv-list=*) audio_drv_list="$optarg" |
102a52e4 | 1006 | ;; |
89138857 | 1007 | --block-drv-rw-whitelist=*|--block-drv-whitelist=*) block_drv_rw_whitelist=$(echo "$optarg" | sed -e 's/,/ /g') |
b64ec4e4 | 1008 | ;; |
89138857 | 1009 | --block-drv-ro-whitelist=*) block_drv_ro_whitelist=$(echo "$optarg" | sed -e 's/,/ /g') |
eb852011 | 1010 | ;; |
f8393946 AJ |
1011 | --enable-debug-tcg) debug_tcg="yes" |
1012 | ;; | |
1013 | --disable-debug-tcg) debug_tcg="no" | |
1014 | ;; | |
f3d08ee6 PB |
1015 | --enable-debug) |
1016 | # Enable debugging options that aren't excessively noisy | |
1017 | debug_tcg="yes" | |
1fcc6d42 | 1018 | debug_mutex="yes" |
f3d08ee6 PB |
1019 | debug="yes" |
1020 | strip_opt="no" | |
b553a042 | 1021 | fortify_source="no" |
f3d08ee6 | 1022 | ;; |
247724cb MAL |
1023 | --enable-sanitizers) sanitizers="yes" |
1024 | ;; | |
1025 | --disable-sanitizers) sanitizers="no" | |
1026 | ;; | |
0aebab04 LY |
1027 | --enable-tsan) tsan="yes" |
1028 | ;; | |
1029 | --disable-tsan) tsan="no" | |
1030 | ;; | |
deb62371 | 1031 | --enable-sparse) sparse="enabled" |
03b4fe7d | 1032 | ;; |
deb62371 | 1033 | --disable-sparse) sparse="disabled" |
03b4fe7d | 1034 | ;; |
1625af87 AL |
1035 | --disable-strip) strip_opt="no" |
1036 | ;; | |
a0b93237 | 1037 | --disable-vnc-sasl) vnc_sasl="disabled" |
2f9606b3 | 1038 | ;; |
a0b93237 | 1039 | --enable-vnc-sasl) vnc_sasl="enabled" |
ea784e3b | 1040 | ;; |
a0b93237 | 1041 | --disable-vnc-jpeg) vnc_jpeg="disabled" |
2f6f5c7a | 1042 | ;; |
a0b93237 | 1043 | --enable-vnc-jpeg) vnc_jpeg="enabled" |
2f6f5c7a | 1044 | ;; |
a0b93237 | 1045 | --disable-vnc-png) vnc_png="disabled" |
efe556ad | 1046 | ;; |
a0b93237 | 1047 | --enable-vnc-png) vnc_png="enabled" |
efe556ad | 1048 | ;; |
4d34a86b | 1049 | --disable-slirp) slirp="disabled" |
1d14ffa9 | 1050 | ;; |
fd6fc214 PB |
1051 | --enable-slirp) slirp="enabled" |
1052 | ;; | |
4d34a86b | 1053 | --enable-slirp=git) slirp="internal" |
7c57bdd8 | 1054 | ;; |
675b9b53 MAL |
1055 | --enable-slirp=system) slirp="system" |
1056 | ;; | |
e0e6c8c0 | 1057 | --disable-vde) vde="no" |
8a16d273 | 1058 | ;; |
dfb278bd JQ |
1059 | --enable-vde) vde="yes" |
1060 | ;; | |
58952137 VM |
1061 | --disable-netmap) netmap="no" |
1062 | ;; | |
1063 | --enable-netmap) netmap="yes" | |
1064 | ;; | |
1badb709 | 1065 | --disable-xen) xen="disabled" |
e37630ca | 1066 | ;; |
1badb709 | 1067 | --enable-xen) xen="enabled" |
fc321b4b | 1068 | ;; |
1badb709 | 1069 | --disable-xen-pci-passthrough) xen_pci_passthrough="disabled" |
eb6fda0f | 1070 | ;; |
1badb709 | 1071 | --enable-xen-pci-passthrough) xen_pci_passthrough="enabled" |
eb6fda0f | 1072 | ;; |
8c6d4ff4 | 1073 | --disable-brlapi) brlapi="disabled" |
2e4d9fb1 | 1074 | ;; |
8c6d4ff4 | 1075 | --enable-brlapi) brlapi="enabled" |
4ffcedb6 | 1076 | ;; |
1badb709 | 1077 | --disable-kvm) kvm="disabled" |
7ba1e619 | 1078 | ;; |
1badb709 | 1079 | --enable-kvm) kvm="enabled" |
b31a0277 | 1080 | ;; |
1badb709 | 1081 | --disable-hax) hax="disabled" |
180fb750 | 1082 | ;; |
1badb709 | 1083 | --enable-hax) hax="enabled" |
180fb750 | 1084 | ;; |
1badb709 | 1085 | --disable-hvf) hvf="disabled" |
c97d6d2c | 1086 | ;; |
1badb709 | 1087 | --enable-hvf) hvf="enabled" |
c97d6d2c | 1088 | ;; |
74a414a1 RZ |
1089 | --disable-nvmm) nvmm="disabled" |
1090 | ;; | |
1091 | --enable-nvmm) nvmm="enabled" | |
1092 | ;; | |
1badb709 | 1093 | --disable-whpx) whpx="disabled" |
d661d9a4 | 1094 | ;; |
1badb709 | 1095 | --enable-whpx) whpx="enabled" |
d661d9a4 | 1096 | ;; |
c6fbea47 | 1097 | --disable-tcg-interpreter) tcg_interpreter="false" |
9195b2c2 | 1098 | ;; |
c6fbea47 | 1099 | --enable-tcg-interpreter) tcg_interpreter="true" |
9195b2c2 | 1100 | ;; |
727c8bb8 | 1101 | --disable-cap-ng) cap_ng="disabled" |
47e98658 | 1102 | ;; |
727c8bb8 | 1103 | --enable-cap-ng) cap_ng="enabled" |
47e98658 | 1104 | ;; |
1badb709 | 1105 | --disable-tcg) tcg="disabled" |
b3f6ea7e | 1106 | ;; |
1badb709 | 1107 | --enable-tcg) tcg="enabled" |
b3f6ea7e | 1108 | ;; |
aa087962 | 1109 | --disable-malloc-trim) malloc_trim="disabled" |
5a22ab71 | 1110 | ;; |
aa087962 | 1111 | --enable-malloc-trim) malloc_trim="enabled" |
5a22ab71 | 1112 | ;; |
cd4ec0b4 GH |
1113 | --disable-spice) spice="no" |
1114 | ;; | |
58d3f3ff GH |
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" | |
cd4ec0b4 | 1124 | ;; |
9db405a3 | 1125 | --disable-libiscsi) libiscsi="disabled" |
c589b249 | 1126 | ;; |
9db405a3 | 1127 | --enable-libiscsi) libiscsi="enabled" |
c589b249 | 1128 | ;; |
30045c05 | 1129 | --disable-libnfs) libnfs="disabled" |
6542aa9c | 1130 | ;; |
30045c05 | 1131 | --enable-libnfs) libnfs="enabled" |
6542aa9c | 1132 | ;; |
05c2a3e7 FB |
1133 | --enable-profiler) profiler="yes" |
1134 | ;; | |
b4e312e9 | 1135 | --disable-cocoa) cocoa="disabled" |
14821030 | 1136 | ;; |
a23a6789 | 1137 | --enable-cocoa) cocoa="enabled" |
1d14ffa9 | 1138 | ;; |
cad25d69 | 1139 | --disable-system) softmmu="no" |
0a8e90f4 | 1140 | ;; |
cad25d69 | 1141 | --enable-system) softmmu="yes" |
0a8e90f4 | 1142 | ;; |
0953a80f ZA |
1143 | --disable-user) |
1144 | linux_user="no" ; | |
1145 | bsd_user="no" ; | |
0953a80f ZA |
1146 | ;; |
1147 | --enable-user) ;; | |
831b7825 | 1148 | --disable-linux-user) linux_user="no" |
0a8e90f4 | 1149 | ;; |
831b7825 TS |
1150 | --enable-linux-user) linux_user="yes" |
1151 | ;; | |
84778508 BS |
1152 | --disable-bsd-user) bsd_user="no" |
1153 | ;; | |
1154 | --enable-bsd-user) bsd_user="yes" | |
1155 | ;; | |
40d6444e | 1156 | --enable-pie) pie="yes" |
34005a00 | 1157 | ;; |
40d6444e | 1158 | --disable-pie) pie="no" |
34005a00 | 1159 | ;; |
85aa5189 FB |
1160 | --enable-werror) werror="yes" |
1161 | ;; | |
1162 | --disable-werror) werror="no" | |
1163 | ;; | |
cdad781d DB |
1164 | --enable-lto) lto="true" |
1165 | ;; | |
1166 | --disable-lto) lto="false" | |
1167 | ;; | |
63678e17 SN |
1168 | --enable-stack-protector) stack_protector="yes" |
1169 | ;; | |
1170 | --disable-stack-protector) stack_protector="no" | |
1171 | ;; | |
1e4f6065 DB |
1172 | --enable-safe-stack) safe_stack="yes" |
1173 | ;; | |
1174 | --disable-safe-stack) safe_stack="no" | |
1175 | ;; | |
9e62ba48 DB |
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 | ;; | |
5285e593 | 1186 | --disable-curses) curses="disabled" |
4d3b6f6e | 1187 | ;; |
5285e593 | 1188 | --enable-curses) curses="enabled" |
c584a6d0 | 1189 | ;; |
5285e593 | 1190 | --disable-iconv) iconv="disabled" |
e08bb301 | 1191 | ;; |
5285e593 | 1192 | --enable-iconv) iconv="enabled" |
e08bb301 | 1193 | ;; |
f9cd86fe | 1194 | --disable-curl) curl="disabled" |
769ce76d | 1195 | ;; |
f9cd86fe | 1196 | --enable-curl) curl="enabled" |
788c8196 | 1197 | ;; |
fbb4121d | 1198 | --disable-fdt) fdt="disabled" |
2df87df7 | 1199 | ;; |
fbb4121d PB |
1200 | --enable-fdt) fdt="enabled" |
1201 | ;; | |
1202 | --enable-fdt=git) fdt="internal" | |
1203 | ;; | |
1204 | --enable-fdt=system) fdt="system" | |
2df87df7 | 1205 | ;; |
5c6c3a6c CH |
1206 | --disable-linux-aio) linux_aio="no" |
1207 | ;; | |
1208 | --enable-linux-aio) linux_aio="yes" | |
1209 | ;; | |
c10dd856 AM |
1210 | --disable-linux-io-uring) linux_io_uring="no" |
1211 | ;; | |
1212 | --enable-linux-io-uring) linux_io_uring="yes" | |
1213 | ;; | |
f7f2d651 | 1214 | --disable-attr) attr="disabled" |
758e8e38 | 1215 | ;; |
f7f2d651 | 1216 | --enable-attr) attr="enabled" |
758e8e38 | 1217 | ;; |
a40161cb PB |
1218 | --disable-membarrier) membarrier="no" |
1219 | ;; | |
1220 | --enable-membarrier) membarrier="yes" | |
1221 | ;; | |
c8d5450b | 1222 | --disable-blobs) blobs="false" |
77755340 | 1223 | ;; |
7e563bfb | 1224 | --with-pkgversion=*) pkgversion="$optarg" |
4a19f1ec | 1225 | ;; |
519175a2 AB |
1226 | --with-coroutine=*) coroutine="$optarg" |
1227 | ;; | |
70c60c08 SH |
1228 | --disable-coroutine-pool) coroutine_pool="no" |
1229 | ;; | |
1230 | --enable-coroutine-pool) coroutine_pool="yes" | |
1231 | ;; | |
7d992e4d PL |
1232 | --enable-debug-stack-usage) debug_stack_usage="yes" |
1233 | ;; | |
f0d92b56 LM |
1234 | --enable-crypto-afalg) crypto_afalg="yes" |
1235 | ;; | |
1236 | --disable-crypto-afalg) crypto_afalg="no" | |
1237 | ;; | |
e3667660 | 1238 | --disable-docs) docs="disabled" |
70ec5dc0 | 1239 | ;; |
e3667660 | 1240 | --enable-docs) docs="enabled" |
83a3ab8b | 1241 | ;; |
d5970055 MT |
1242 | --disable-vhost-net) vhost_net="no" |
1243 | ;; | |
1244 | --enable-vhost-net) vhost_net="yes" | |
1245 | ;; | |
042cea27 GA |
1246 | --disable-vhost-crypto) vhost_crypto="no" |
1247 | ;; | |
299e6f19 | 1248 | --enable-vhost-crypto) vhost_crypto="yes" |
042cea27 | 1249 | ;; |
5e9be92d NB |
1250 | --disable-vhost-scsi) vhost_scsi="no" |
1251 | ;; | |
1252 | --enable-vhost-scsi) vhost_scsi="yes" | |
1253 | ;; | |
fc0b9b0e SH |
1254 | --disable-vhost-vsock) vhost_vsock="no" |
1255 | ;; | |
1256 | --enable-vhost-vsock) vhost_vsock="yes" | |
1257 | ;; | |
e5e856c1 | 1258 | --disable-vhost-user-blk-server) vhost_user_blk_server="disabled" |
bc15e44c | 1259 | ;; |
e5e856c1 | 1260 | --enable-vhost-user-blk-server) vhost_user_blk_server="enabled" |
bc15e44c | 1261 | ;; |
98fc1ada DDAG |
1262 | --disable-vhost-user-fs) vhost_user_fs="no" |
1263 | ;; | |
1264 | --enable-vhost-user-fs) vhost_user_fs="yes" | |
1265 | ;; | |
da076ffe | 1266 | --disable-opengl) opengl="no" |
20ff075b | 1267 | ;; |
da076ffe | 1268 | --enable-opengl) opengl="yes" |
20ff075b | 1269 | ;; |
fabd1e93 | 1270 | --disable-rbd) rbd="disabled" |
f27aaf4b | 1271 | ;; |
fabd1e93 | 1272 | --enable-rbd) rbd="enabled" |
f27aaf4b | 1273 | ;; |
8c84cf11 ST |
1274 | --disable-xfsctl) xfs="no" |
1275 | ;; | |
1276 | --enable-xfsctl) xfs="yes" | |
1277 | ;; | |
7b02f544 | 1278 | --disable-smartcard) smartcard="no" |
111a38b0 | 1279 | ;; |
7b02f544 | 1280 | --enable-smartcard) smartcard="yes" |
111a38b0 | 1281 | ;; |
0a40bcb7 CB |
1282 | --disable-u2f) u2f="disabled" |
1283 | ;; | |
1284 | --enable-u2f) u2f="enabled" | |
1285 | ;; | |
2b2325ff GH |
1286 | --disable-libusb) libusb="no" |
1287 | ;; | |
1288 | --enable-libusb) libusb="yes" | |
1289 | ;; | |
69354a83 HG |
1290 | --disable-usb-redir) usb_redir="no" |
1291 | ;; | |
1292 | --enable-usb-redir) usb_redir="yes" | |
1293 | ;; | |
1ffb3bbb | 1294 | --disable-zlib-test) |
1ece9905 | 1295 | ;; |
0c32a0ae | 1296 | --disable-lzo) lzo="disabled" |
b25c9dff | 1297 | ;; |
0c32a0ae | 1298 | --enable-lzo) lzo="enabled" |
607dacd0 | 1299 | ;; |
241611ea | 1300 | --disable-snappy) snappy="disabled" |
b25c9dff | 1301 | ;; |
241611ea | 1302 | --enable-snappy) snappy="enabled" |
607dacd0 | 1303 | ;; |
29ba6116 | 1304 | --disable-bzip2) bzip2="disabled" |
6b383c08 | 1305 | ;; |
29ba6116 | 1306 | --enable-bzip2) bzip2="enabled" |
6b383c08 | 1307 | ;; |
ecea3696 | 1308 | --enable-lzfse) lzfse="enabled" |
83bc1f97 | 1309 | ;; |
ecea3696 | 1310 | --disable-lzfse) lzfse="disabled" |
83bc1f97 | 1311 | ;; |
b1def33d | 1312 | --disable-zstd) zstd="disabled" |
3a678481 | 1313 | ;; |
b1def33d | 1314 | --enable-zstd) zstd="enabled" |
3a678481 | 1315 | ;; |
d138cee9 MR |
1316 | --enable-guest-agent) guest_agent="yes" |
1317 | ;; | |
1318 | --disable-guest-agent) guest_agent="no" | |
1319 | ;; | |
b846ab7c | 1320 | --enable-guest-agent-msi) guest_agent_msi="enabled" |
9dacf32d | 1321 | ;; |
b846ab7c | 1322 | --disable-guest-agent-msi) guest_agent_msi="disabled" |
9dacf32d | 1323 | ;; |
d9840e25 TS |
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 | ;; | |
4b1c11fd DB |
1336 | --enable-tools) want_tools="yes" |
1337 | ;; | |
1338 | --disable-tools) want_tools="no" | |
1339 | ;; | |
90835c2b | 1340 | --enable-seccomp) seccomp="enabled" |
f794573e | 1341 | ;; |
90835c2b | 1342 | --disable-seccomp) seccomp="disabled" |
f794573e | 1343 | ;; |
08821ca2 | 1344 | --disable-glusterfs) glusterfs="disabled" |
eb100396 | 1345 | ;; |
86583a07 LM |
1346 | --disable-avx2) avx2_opt="no" |
1347 | ;; | |
1348 | --enable-avx2) avx2_opt="yes" | |
1349 | ;; | |
6b8cd447 RH |
1350 | --disable-avx512f) avx512f_opt="no" |
1351 | ;; | |
1352 | --enable-avx512f) avx512f_opt="yes" | |
1353 | ;; | |
1354 | ||
08821ca2 | 1355 | --enable-glusterfs) glusterfs="enabled" |
eb100396 | 1356 | ;; |
52b53c04 FZ |
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 | |
583f6e7b | 1359 | ;; |
cb6414df FZ |
1360 | --enable-vhdx|--disable-vhdx) |
1361 | echo "$0: $opt is obsolete, VHDX driver is always built" >&2 | |
1362 | ;; | |
315d3184 FZ |
1363 | --enable-uuid|--disable-uuid) |
1364 | echo "$0: $opt is obsolete, UUID support is always built" >&2 | |
1365 | ;; | |
1b695471 | 1366 | --disable-gtk) gtk="disabled" |
a4ccabcf | 1367 | ;; |
1b695471 | 1368 | --enable-gtk) gtk="enabled" |
a4ccabcf | 1369 | ;; |
a1c5e949 DB |
1370 | --tls-priority=*) tls_priority="$optarg" |
1371 | ;; | |
ddbb0d09 DB |
1372 | --disable-gnutls) gnutls="no" |
1373 | ;; | |
1374 | --enable-gnutls) gnutls="yes" | |
1375 | ;; | |
91bfcdb0 DB |
1376 | --disable-nettle) nettle="no" |
1377 | ;; | |
1378 | --enable-nettle) nettle="yes" | |
1379 | ;; | |
1380 | --disable-gcrypt) gcrypt="no" | |
1381 | ;; | |
1382 | --enable-gcrypt) gcrypt="yes" | |
1383 | ;; | |
8953caf3 DB |
1384 | --disable-auth-pam) auth_pam="no" |
1385 | ;; | |
1386 | --enable-auth-pam) auth_pam="yes" | |
1387 | ;; | |
2da776db MH |
1388 | --enable-rdma) rdma="yes" |
1389 | ;; | |
1390 | --disable-rdma) rdma="no" | |
1391 | ;; | |
21ab34c9 MA |
1392 | --enable-pvrdma) pvrdma="yes" |
1393 | ;; | |
1394 | --disable-pvrdma) pvrdma="no" | |
1395 | ;; | |
bbbf9bfb SW |
1396 | --disable-vte) vte="no" |
1397 | ;; | |
1398 | --enable-vte) vte="yes" | |
1399 | ;; | |
9d9e1521 GH |
1400 | --disable-virglrenderer) virglrenderer="no" |
1401 | ;; | |
1402 | --enable-virglrenderer) virglrenderer="yes" | |
1403 | ;; | |
e91c793c CR |
1404 | --disable-tpm) tpm="no" |
1405 | ;; | |
ab214c29 SB |
1406 | --enable-tpm) tpm="yes" |
1407 | ;; | |
b10d49d7 | 1408 | --disable-libssh) libssh="no" |
0a12ec87 | 1409 | ;; |
b10d49d7 | 1410 | --enable-libssh) libssh="yes" |
0a12ec87 | 1411 | ;; |
ed1701c6 DDAG |
1412 | --disable-live-block-migration) live_block_migration="no" |
1413 | ;; | |
1414 | --enable-live-block-migration) live_block_migration="yes" | |
1415 | ;; | |
a99d57bb WG |
1416 | --disable-numa) numa="no" |
1417 | ;; | |
1418 | --enable-numa) numa="yes" | |
1419 | ;; | |
ed279a06 KK |
1420 | --disable-libxml2) libxml2="no" |
1421 | ;; | |
1422 | --enable-libxml2) libxml2="yes" | |
1423 | ;; | |
2847b469 FZ |
1424 | --disable-tcmalloc) tcmalloc="no" |
1425 | ;; | |
1426 | --enable-tcmalloc) tcmalloc="yes" | |
1427 | ;; | |
7b01cb97 AD |
1428 | --disable-jemalloc) jemalloc="no" |
1429 | ;; | |
1430 | --enable-jemalloc) jemalloc="yes" | |
1431 | ;; | |
a6b1d4c0 CX |
1432 | --disable-replication) replication="no" |
1433 | ;; | |
1434 | --enable-replication) replication="yes" | |
1435 | ;; | |
2f740136 JC |
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 | ;; | |
e6a74868 MAL |
1468 | --disable-vhost-user) vhost_user="no" |
1469 | ;; | |
299e6f19 PB |
1470 | --enable-vhost-user) vhost_user="yes" |
1471 | ;; | |
108a6481 CL |
1472 | --disable-vhost-vdpa) vhost_vdpa="no" |
1473 | ;; | |
1474 | --enable-vhost-vdpa) vhost_vdpa="yes" | |
1475 | ;; | |
299e6f19 PB |
1476 | --disable-vhost-kernel) vhost_kernel="no" |
1477 | ;; | |
1478 | --enable-vhost-kernel) vhost_kernel="yes" | |
e6a74868 | 1479 | ;; |
8b18cdbf | 1480 | --disable-capstone) capstone="disabled" |
8ca80760 | 1481 | ;; |
8b18cdbf | 1482 | --enable-capstone) capstone="enabled" |
8ca80760 | 1483 | ;; |
8b18cdbf | 1484 | --enable-capstone=git) capstone="internal" |
e219c499 RH |
1485 | ;; |
1486 | --enable-capstone=system) capstone="system" | |
1487 | ;; | |
cc84d63a DB |
1488 | --with-git=*) git="$optarg" |
1489 | ;; | |
7d7dbf9d DS |
1490 | --enable-git-update) |
1491 | git_submodules_action="update" | |
1492 | echo "--enable-git-update deprecated, use --with-git-submodules=update" | |
f62bbee5 | 1493 | ;; |
7d7dbf9d DS |
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" | |
f62bbee5 | 1500 | ;; |
ba59fb77 PB |
1501 | --enable-debug-mutex) debug_mutex=yes |
1502 | ;; | |
1503 | --disable-debug-mutex) debug_mutex=no | |
1504 | ;; | |
17824406 JH |
1505 | --enable-libpmem) libpmem=yes |
1506 | ;; | |
1507 | --disable-libpmem) libpmem=no | |
1508 | ;; | |
4113f4cf | 1509 | --enable-xkbcommon) xkbcommon="enabled" |
75411919 | 1510 | ;; |
4113f4cf | 1511 | --disable-xkbcommon) xkbcommon="disabled" |
75411919 | 1512 | ;; |
40e8c6f4 AB |
1513 | --enable-plugins) plugins="yes" |
1514 | ;; | |
1515 | --disable-plugins) plugins="no" | |
1516 | ;; | |
afc3a8f9 AB |
1517 | --enable-containers) use_containers="yes" |
1518 | ;; | |
1519 | --disable-containers) use_containers="no" | |
1520 | ;; | |
adc28027 AB |
1521 | --enable-fuzzing) fuzzing=yes |
1522 | ;; | |
1523 | --disable-fuzzing) fuzzing=no | |
1524 | ;; | |
f48e590a AB |
1525 | --gdb=*) gdb_bin="$optarg" |
1526 | ;; | |
b767d257 MMG |
1527 | --enable-rng-none) rng_none=yes |
1528 | ;; | |
1529 | --disable-rng-none) rng_none=no | |
1530 | ;; | |
54e7aac0 AK |
1531 | --enable-keyring) secret_keyring="yes" |
1532 | ;; | |
1533 | --disable-keyring) secret_keyring="no" | |
1534 | ;; | |
21b2eca6 JL |
1535 | --enable-libdaxctl) libdaxctl=yes |
1536 | ;; | |
1537 | --disable-libdaxctl) libdaxctl=no | |
1538 | ;; | |
a484a719 HR |
1539 | --enable-fuse) fuse="enabled" |
1540 | ;; | |
1541 | --disable-fuse) fuse="disabled" | |
1542 | ;; | |
df4ea709 HR |
1543 | --enable-fuse-lseek) fuse_lseek="enabled" |
1544 | ;; | |
1545 | --disable-fuse-lseek) fuse_lseek="disabled" | |
1546 | ;; | |
106ad1f9 | 1547 | --enable-multiprocess) multiprocess="enabled" |
3090de69 | 1548 | ;; |
106ad1f9 | 1549 | --disable-multiprocess) multiprocess="disabled" |
3090de69 | 1550 | ;; |
20cf7b8e DP |
1551 | --enable-gio) gio=yes |
1552 | ;; | |
1553 | --disable-gio) gio=no | |
1554 | ;; | |
b8e0c493 JD |
1555 | --enable-slirp-smbd) slirp_smbd=yes |
1556 | ;; | |
1557 | --disable-slirp-smbd) slirp_smbd=no | |
1558 | ;; | |
2d2ad6d0 FZ |
1559 | *) |
1560 | echo "ERROR: unknown option $opt" | |
1561 | echo "Try '$0 --help' for more information" | |
1562 | exit 1 | |
7f1559c6 | 1563 | ;; |
7d13299d FB |
1564 | esac |
1565 | done | |
1566 | ||
7d7dbf9d DS |
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) | |
b80fd281 PB |
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 | |
7d7dbf9d DS |
1597 | ;; |
1598 | *) | |
1599 | echo "ERROR: invalid --with-git-submodules= value '$git_submodules_action'" | |
1600 | exit 1 | |
1601 | ;; | |
1602 | esac | |
1603 | ||
22a87800 MAL |
1604 | libdir="${libdir:-$prefix/lib}" |
1605 | libexecdir="${libexecdir:-$prefix/libexec}" | |
1606 | includedir="${includedir:-$prefix/include}" | |
1607 | ||
1608 | if test "$mingw32" = "yes" ; then | |
15588a62 | 1609 | bindir="${bindir:-$prefix}" |
22a87800 | 1610 | else |
22a87800 | 1611 | bindir="${bindir:-$prefix/bin}" |
22a87800 | 1612 | fi |
15588a62 JW |
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}" | |
16bf7a33 PB |
1618 | firmwarepath="${firmwarepath:-$datadir/qemu-firmware}" |
1619 | localedir="${localedir:-$datadir/locale}" | |
22a87800 | 1620 | |
40293e58 | 1621 | case "$cpu" in |
e3608d66 RH |
1622 | ppc) |
1623 | CPU_CFLAGS="-m32" | |
db5adeaa | 1624 | QEMU_LDFLAGS="-m32 $QEMU_LDFLAGS" |
e3608d66 RH |
1625 | ;; |
1626 | ppc64) | |
1627 | CPU_CFLAGS="-m64" | |
db5adeaa | 1628 | QEMU_LDFLAGS="-m64 $QEMU_LDFLAGS" |
e3608d66 | 1629 | ;; |
9b9c37c3 | 1630 | sparc) |
f1079bb8 | 1631 | CPU_CFLAGS="-m32 -mv8plus -mcpu=ultrasparc" |
db5adeaa | 1632 | QEMU_LDFLAGS="-m32 -mv8plus $QEMU_LDFLAGS" |
3142255c | 1633 | ;; |
ed968ff1 | 1634 | sparc64) |
79f3b12f | 1635 | CPU_CFLAGS="-m64 -mcpu=ultrasparc" |
db5adeaa | 1636 | QEMU_LDFLAGS="-m64 $QEMU_LDFLAGS" |
3142255c | 1637 | ;; |
76d83bde | 1638 | s390) |
061cdd81 | 1639 | CPU_CFLAGS="-m31" |
db5adeaa | 1640 | QEMU_LDFLAGS="-m31 $QEMU_LDFLAGS" |
28d7cc49 RH |
1641 | ;; |
1642 | s390x) | |
061cdd81 | 1643 | CPU_CFLAGS="-m64" |
db5adeaa | 1644 | QEMU_LDFLAGS="-m64 $QEMU_LDFLAGS" |
76d83bde | 1645 | ;; |
40293e58 | 1646 | i386) |
79f3b12f | 1647 | CPU_CFLAGS="-m32" |
db5adeaa | 1648 | QEMU_LDFLAGS="-m32 $QEMU_LDFLAGS" |
40293e58 FB |
1649 | ;; |
1650 | x86_64) | |
7ebee43e RH |
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" | |
db5adeaa | 1655 | QEMU_LDFLAGS="-m64 $QEMU_LDFLAGS" |
d2fbca94 | 1656 | ;; |
c72b26ec RH |
1657 | x32) |
1658 | CPU_CFLAGS="-mx32" | |
db5adeaa | 1659 | QEMU_LDFLAGS="-mx32 $QEMU_LDFLAGS" |
c72b26ec | 1660 | ;; |
30163d89 | 1661 | # No special flags required for other host CPUs |
3142255c BS |
1662 | esac |
1663 | ||
b1aa4de1 | 1664 | eval "cross_cc_${cpu}=\$cc" |
2038f8c8 | 1665 | cross_cc_vars="$cross_cc_vars cross_cc_${cpu}" |
79f3b12f | 1666 | QEMU_CFLAGS="$CPU_CFLAGS $QEMU_CFLAGS" |
79f3b12f | 1667 | |
affc88cc PM |
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 | ||
60e0df25 | 1675 | default_target_list="" |
43692239 | 1676 | deprecated_targets_list=ppc64abi32-linux-user |
fdb75aef | 1677 | deprecated_features="" |
6e92f823 PM |
1678 | mak_wilds="" |
1679 | ||
1680 | if [ "$softmmu" = "yes" ]; then | |
73362fc0 | 1681 | mak_wilds="${mak_wilds} $source_path/default-configs/targets/*-softmmu.mak" |
60e0df25 | 1682 | fi |
6e92f823 | 1683 | if [ "$linux_user" = "yes" ]; then |
73362fc0 | 1684 | mak_wilds="${mak_wilds} $source_path/default-configs/targets/*-linux-user.mak" |
60e0df25 | 1685 | fi |
6e92f823 | 1686 | if [ "$bsd_user" = "yes" ]; then |
73362fc0 | 1687 | mak_wilds="${mak_wilds} $source_path/default-configs/targets/*-bsd-user.mak" |
60e0df25 PM |
1688 | fi |
1689 | ||
3a5ae4a9 AB |
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 | |
2d838d9b AB |
1698 | fi |
1699 | ||
2d838d9b AB |
1700 | for config in $mak_wilds; do |
1701 | target="$(basename "$config" .mak)" | |
98db9a06 | 1702 | if echo "$target_list_exclude" | grep -vq "$target"; then |
2d838d9b AB |
1703 | default_target_list="${default_target_list} $target" |
1704 | fi | |
1705 | done | |
6e92f823 | 1706 | |
c53eeaf7 | 1707 | # Enumerate public trace backends for --help output |
64a6047d | 1708 | trace_backend_list=$(echo $(grep -le '^PUBLIC = True$' "$source_path"/scripts/tracetool/backend/*.py | sed -e 's/^.*\/\(.*\)\.py$/\1/')) |
c53eeaf7 | 1709 | |
af5db58e PB |
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 | ||
08fb77ed SW |
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] | |
2deca810 | 1721 | --target-list=LIST set target list (default: build all non-deprecated) |
08fb77ed SW |
1722 | $(echo Available targets: $default_target_list | \ |
1723 | fold -s -w 53 | sed -e 's/^/ /') | |
2deca810 AB |
1724 | $(echo Deprecated targets: $deprecated_targets_list | \ |
1725 | fold -s -w 53 | sed -e 's/^/ /') | |
447e133f | 1726 | --target-list-exclude=LIST exclude a set of targets from the default target-list |
08fb77ed SW |
1727 | |
1728 | Advanced options (experts only): | |
3812c0c4 | 1729 | --cross-prefix=PREFIX use PREFIX for compile tools, PREFIX can be blank [$cross_prefix] |
08fb77ed SW |
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 | |
11cde1c8 | 1737 | --extra-cxxflags=CXXFLAGS append extra C++ compiler flags QEMU_CXXFLAGS |
08fb77ed | 1738 | --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS |
d75402b5 | 1739 | --cross-cc-ARCH=CC use compiler when building ARCH guest test cases |
d422b2bc | 1740 | --cross-cc-flags-ARCH= use compiler flags when building ARCH guest tests |
08fb77ed | 1741 | --make=MAKE use specified make [$make] |
08fb77ed | 1742 | --python=PYTHON use specified python [$python] |
2eb054c2 | 1743 | --sphinx-build=SPHINX use specified sphinx-build [$sphinx_build] |
a5665051 | 1744 | --meson=MESON use specified meson [$meson] |
48328880 | 1745 | --ninja=NINJA use specified ninja [$ninja] |
08fb77ed | 1746 | --smbd=SMBD use specified smbd [$smbd] |
db1b5f13 | 1747 | --with-git=GIT use specified git [$git] |
7d7dbf9d DS |
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) | |
08fb77ed SW |
1751 | --static enable static build [$static] |
1752 | --mandir=PATH install man pages in PATH | |
10ff82d1 | 1753 | --datadir=PATH install firmware in PATH/$qemu_suffix |
fe0038be | 1754 | --localedir=PATH install translation in PATH/$qemu_suffix |
10ff82d1 | 1755 | --docdir=PATH install documentation in PATH/$qemu_suffix |
08fb77ed SW |
1756 | --bindir=PATH install binaries in PATH |
1757 | --libdir=PATH install libraries in PATH | |
db1b5f13 | 1758 | --libexecdir=PATH install helper binaries in PATH |
10ff82d1 | 1759 | --sysconfdir=PATH install config in PATH/$qemu_suffix |
08fb77ed | 1760 | --localstatedir=PATH install local state in PATH (set at runtime on win32) |
3d5eecab | 1761 | --firmwarepath=PATH search PATH for firmware files |
13336606 | 1762 | --efi-aarch64=PATH PATH of efi file to use for aarch64 VMs. |
ca8c0909 | 1763 | --with-suffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir/docdir [$qemu_suffix] |
db1b5f13 | 1764 | --with-pkgversion=VERS use specified string as sub-version of the package |
c035c8d6 PB |
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/) | |
08fb77ed | 1769 | --enable-debug enable common debug build options |
247724cb | 1770 | --enable-sanitizers enable default sanitizers |
0aebab04 | 1771 | --enable-tsan enable thread sanitizer |
08fb77ed SW |
1772 | --disable-strip disable stripping binaries |
1773 | --disable-werror disable compilation abort on warning | |
63678e17 | 1774 | --disable-stack-protector disable compiler-provided stack protection |
08fb77ed SW |
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) | |
5b808275 | 1784 | --enable-trace-backends=B Set trace backend |
c53eeaf7 | 1785 | Available backends: $trace_backend_list |
08fb77ed SW |
1786 | --with-trace-file=NAME Full PATH,NAME of file to store traces |
1787 | Default:trace-<pid> | |
c23f23b9 | 1788 | --disable-slirp disable SLIRP userspace network connectivity |
e9a16e38 | 1789 | --enable-tcg-interpreter enable TCI (TCG with bytecode interpreter, experimental and slow) |
5a22ab71 | 1790 | --enable-malloc-trim enable libc malloc_trim() for memory optimization |
c23f23b9 MT |
1791 | --oss-lib path to OSS library |
1792 | --cpu=CPU Build for host CPU [$cpu] | |
08fb77ed | 1793 | --with-coroutine=BACKEND coroutine backend. Supported options: |
33c53c54 | 1794 | ucontext, sigaltstack, windows |
08fb77ed | 1795 | --enable-gcov enable test coverage analysis with gcov |
c23f23b9 MT |
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) | |
a1c5e949 | 1799 | --tls-priority default TLS protocol/cipher priority string |
c12d66aa LM |
1800 | --enable-gprof QEMU profiling with gprof |
1801 | --enable-profiler profiler support | |
c12d66aa LM |
1802 | --enable-debug-stack-usage |
1803 | track the maximum stack usage of stacks created by qemu_alloc_stack | |
40e8c6f4 AB |
1804 | --enable-plugins |
1805 | enable plugins via shared library loading | |
afc3a8f9 | 1806 | --disable-containers don't use containers for cross-building |
f48e590a | 1807 | --gdb=GDB-path gdb to use for gdbstub tests [$gdb_bin] |
c23f23b9 MT |
1808 | |
1809 | Optional features, enabled with --enable-FEATURE and | |
c87ea116 AB |
1810 | disabled with --disable-FEATURE, default is enabled if available |
1811 | (unless built with --without-default-features): | |
c23f23b9 MT |
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 | |
c23f23b9 MT |
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 | |
21e709aa | 1821 | modules modules support (non-Windows) |
bd83c861 | 1822 | module-upgrades try to load modules from alternate paths for upgrades |
c23f23b9 MT |
1823 | debug-tcg TCG debugging (default is disabled) |
1824 | debug-info debugging information | |
cdad781d | 1825 | lto Enable Link-Time Optimization. |
c23f23b9 | 1826 | sparse sparse checker |
1e4f6065 DB |
1827 | safe-stack SafeStack Stack Smash Protection. Depends on |
1828 | clang/llvm >= 3.7 and requires coroutine backend ucontext. | |
9e62ba48 DB |
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 | |
ddbb0d09 | 1836 | gnutls GNUTLS cryptography support |
91bfcdb0 DB |
1837 | nettle nettle cryptography support |
1838 | gcrypt libgcrypt cryptography support | |
8953caf3 | 1839 | auth-pam PAM access control |
c23f23b9 | 1840 | sdl SDL UI |
04c6e16f | 1841 | sdl-image SDL Image support for icons |
c23f23b9 | 1842 | gtk gtk UI |
c23f23b9 MT |
1843 | vte vte support for the gtk UI |
1844 | curses curses UI | |
e08bb301 | 1845 | iconv font glyph conversion support |
c23f23b9 | 1846 | vnc VNC UI support |
c23f23b9 MT |
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 | |
c23f23b9 MT |
1850 | cocoa Cocoa UI (Mac OS X only) |
1851 | virtfs VirtFS | |
cece116c | 1852 | virtiofsd build virtiofs daemon (virtiofsd) |
5c53015a | 1853 | libudev Use libudev to enumerate host devices |
fe8fc5ae | 1854 | mpath Multipath persistent reservation passthrough |
c23f23b9 | 1855 | xen xen backend driver support |
70c292af | 1856 | xen-pci-passthrough PCI passthrough support for Xen |
c23f23b9 MT |
1857 | brlapi BrlAPI (Braile) |
1858 | curl curl connectivity | |
a40161cb | 1859 | membarrier membarrier system call (for Linux 4.14+ or Windows) |
c23f23b9 | 1860 | fdt fdt device tree |
c23f23b9 | 1861 | kvm KVM acceleration support |
b0cb0a66 | 1862 | hax HAX acceleration support |
c97d6d2c | 1863 | hvf Hypervisor.framework acceleration support |
74a414a1 | 1864 | nvmm NVMM acceleration support |
d661d9a4 | 1865 | whpx Windows Hypervisor Platform acceleration support |
21ab34c9 MA |
1866 | rdma Enable RDMA-based migration |
1867 | pvrdma Enable PVRDMA support | |
c23f23b9 MT |
1868 | vde support for vde network |
1869 | netmap support for netmap network | |
1870 | linux-aio Linux AIO support | |
c10dd856 | 1871 | linux-io-uring Linux io_uring support |
c23f23b9 MT |
1872 | cap-ng libcap-ng support |
1873 | attr attr and xattr support | |
299e6f19 PB |
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 | |
bc15e44c | 1880 | vhost-user-blk-server vhost-user-blk server support |
108a6481 | 1881 | vhost-vdpa vhost-vdpa kernel backend support |
c23f23b9 | 1882 | spice spice |
58d3f3ff | 1883 | spice-protocol spice-protocol |
c23f23b9 MT |
1884 | rbd rados block device (rbd) |
1885 | libiscsi iscsi support | |
1886 | libnfs nfs support | |
7b02f544 | 1887 | smartcard smartcard support (libcacard) |
0a40bcb7 | 1888 | u2f U2F support (u2f-emu) |
c23f23b9 | 1889 | libusb libusb (for usb passthrough) |
ed1701c6 | 1890 | live-block-migration Block migration in the main migration stream |
c23f23b9 MT |
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) | |
83bc1f97 JF |
1896 | lzfse support of lzfse compression library |
1897 | (for reading lzfse-compressed dmg images) | |
3a678481 | 1898 | zstd support for zstd compression library |
d298ac10 | 1899 | (for migration compression and qcow2 cluster compression) |
c23f23b9 MT |
1900 | seccomp seccomp support |
1901 | coroutine-pool coroutine freelist (better performance) | |
1902 | glusterfs GlusterFS backend | |
c23f23b9 | 1903 | tpm TPM support |
b10d49d7 | 1904 | libssh ssh block device support |
c23f23b9 | 1905 | numa libnuma support |
ed279a06 | 1906 | libxml2 for Parallels image format |
c23f23b9 | 1907 | tcmalloc tcmalloc support |
7b01cb97 | 1908 | jemalloc jemalloc support |
86583a07 | 1909 | avx2 AVX2 optimization support |
6b8cd447 | 1910 | avx512f AVX512F optimization support |
a6b1d4c0 | 1911 | replication replication support |
c12d66aa LM |
1912 | opengl opengl support |
1913 | virglrenderer virgl rendering support | |
1914 | xfsctl xfsctl support | |
1915 | qom-cast-debug cast debugging support | |
8de73fa8 | 1916 | tools build qemu-io, qemu-nbd and qemu-img tools |
2f740136 JC |
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 | |
f0d92b56 | 1925 | crypto-afalg Linux AF_ALG crypto backend driver |
8ca80760 | 1926 | capstone capstone disassembler support |
ba59fb77 | 1927 | debug-mutex mutex debugging support |
17824406 | 1928 | libpmem libpmem support |
75411919 | 1929 | xkbcommon xkbcommon support |
b767d257 | 1930 | rng-none dummy RNG, avoid using /dev/(u)random and getrandom() |
21b2eca6 | 1931 | libdaxctl libdaxctl support |
a484a719 | 1932 | fuse FUSE block device export |
df4ea709 | 1933 | fuse-lseek SEEK_HOLE/SEEK_DATA support for FUSE exports |
106ad1f9 | 1934 | multiprocess Out of process device emulation support |
20cf7b8e | 1935 | gio libgio support |
b8e0c493 | 1936 | slirp-smbd use smbd (at path --smbd=*) in slirp networking |
08fb77ed SW |
1937 | |
1938 | NOTE: The object files are built at the place where configure is launched | |
af5db58e | 1939 | EOF |
2d2ad6d0 | 1940 | exit 0 |
af5db58e PB |
1941 | fi |
1942 | ||
9c790242 | 1943 | # Remove old dependency files to make sure that they get properly regenerated |
bb768f71 | 1944 | rm -f */config-devices.mak.d |
9c790242 | 1945 | |
faf44142 DB |
1946 | if test -z "$python" |
1947 | then | |
1948 | error_exit "Python not found. Use --python=/path/to/python" | |
c53eeaf7 | 1949 | fi |
8e2c76bd RB |
1950 | if ! has "$make" |
1951 | then | |
1952 | error_exit "GNU make ($make) not found" | |
1953 | fi | |
c53eeaf7 SH |
1954 | |
1955 | # Note that if the Python conditional here evaluates True we will exit | |
1956 | # with status 1 which is a shell 'false' value. | |
1b11f28d TH |
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." \ | |
c53eeaf7 SH |
1959 | "Use --python=/path/to/python to specify a supported Python." |
1960 | fi | |
1961 | ||
755ee70f | 1962 | # Preserve python version since some functionality is dependent on it |
406ab2f3 | 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) |
755ee70f | 1964 | |
c53eeaf7 SH |
1965 | # Suppress writing compiled files |
1966 | python="$python -B" | |
1967 | ||
0a01d76f | 1968 | if test -z "$meson"; then |
6ebd89cf | 1969 | if test "$explicit_python" = no && has meson && version_ge "$(meson --version)" 0.55.3; then |
0a01d76f | 1970 | meson=meson |
7d7dbf9d | 1971 | elif test $git_submodules_action != 'ignore' ; then |
0a01d76f MAL |
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 | |
a5665051 | 1995 | fi |
a5665051 | 1996 | |
0a01d76f MAL |
1997 | if test "$meson" = git; then |
1998 | git_submodules="${git_submodules} meson" | |
a5665051 | 1999 | fi |
0a01d76f MAL |
2000 | |
2001 | case "$meson" in | |
2002 | git | internal) | |
0a01d76f MAL |
2003 | meson="$python ${source_path}/meson/meson.py" |
2004 | ;; | |
84ec0c24 | 2005 | *) meson=$(command -v "$meson") ;; |
0a01d76f MAL |
2006 | esac |
2007 | ||
09e93326 | 2008 | # Probe for ninja |
48328880 PB |
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 | |
09e93326 PB |
2017 | if test -z "$ninja"; then |
2018 | error_exit "Cannot find Ninja" | |
2019 | fi | |
48328880 | 2020 | fi |
a5665051 | 2021 | |
9aae6e54 DHB |
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 | ||
9c83ffd8 PM |
2036 | # Consult white-list to determine whether to enable werror |
2037 | # by default. Only enable by default for git builds | |
9c83ffd8 | 2038 | if test -z "$werror" ; then |
7d7dbf9d | 2039 | if test "$git_submodules_action" != "ignore" && \ |
e633a5c6 | 2040 | { test "$linux" = "yes" || test "$mingw32" = "yes"; }; then |
9c83ffd8 PM |
2041 | werror="yes" |
2042 | else | |
2043 | werror="no" | |
2044 | fi | |
2045 | fi | |
2046 | ||
975ff037 | 2047 | if test "$targetos" = "bogus"; then |
fb59dabd PM |
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. | |
951fedfc | 2052 | error_exit "Unrecognized host OS (uname -s reports '$(uname -s)')" |
fb59dabd PM |
2053 | fi |
2054 | ||
efc6c070 TH |
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__ | |
2a85a08c DB |
2059 | # if __clang_major__ < 10 || (__clang_major__ == 10 && __clang_minor__ < 0) |
2060 | # error You need at least XCode Clang v10.0 to compile QEMU | |
efc6c070 TH |
2061 | # endif |
2062 | # else | |
2a85a08c DB |
2063 | # if __clang_major__ < 6 || (__clang_major__ == 6 && __clang_minor__ < 0) |
2064 | # error You need at least Clang v6.0 to compile QEMU | |
efc6c070 TH |
2065 | # endif |
2066 | # endif | |
2067 | #elif defined(__GNUC__) && defined(__GNUC_MINOR__) | |
56208a0d DB |
2068 | # if __GNUC__ < 7 || (__GNUC__ == 7 && __GNUC_MINOR__ < 5) |
2069 | # error You need at least GCC v7.5.0 to compile QEMU | |
efc6c070 TH |
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 | |
2a85a08c | 2077 | error_exit "You need at least GCC v7.5 or Clang v6.0 (or XCode Clang v10.0)" |
efc6c070 TH |
2078 | fi |
2079 | ||
00849b92 RH |
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 | |
0a2ebce9 | 2098 | add_to warn_flags -Wimplicit-fallthrough=2 |
00849b92 RH |
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 | |
aabab967 | 2106 | add_to nowarn_flags -Wno-tautological-type-limit-compare |
bac8d222 | 2107 | add_to nowarn_flags -Wno-psabi |
00849b92 RH |
2108 | |
2109 | gcc_flags="$warn_flags $nowarn_flags" | |
93b25869 JS |
2110 | |
2111 | cc_has_warning_flag() { | |
2112 | write_c_skeleton; | |
2113 | ||
a1d29d6c PM |
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). | |
93b25869 JS |
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" | |
8d05095c PB |
2124 | fi |
2125 | done | |
2126 | ||
3b463a3f | 2127 | if test "$stack_protector" != "no"; then |
fccd35a0 RR |
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 | |
63678e17 | 2138 | gcc_flags="-fstack-protector-strong -fstack-protector-all" |
3b463a3f | 2139 | sp_on=0 |
63678e17 | 2140 | for flag in $gcc_flags; do |
590e5dd9 PM |
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 | |
086d5f75 | 2143 | if compile_object "-Werror $flag" && |
590e5dd9 | 2144 | compile_prog "-Werror $flag" ""; then |
63678e17 | 2145 | QEMU_CFLAGS="$QEMU_CFLAGS $flag" |
db5adeaa | 2146 | QEMU_LDFLAGS="$QEMU_LDFLAGS $flag" |
3b463a3f | 2147 | sp_on=1 |
63678e17 SN |
2148 | break |
2149 | fi | |
2150 | done | |
3b463a3f MR |
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 | |
37746c5e MAL |
2156 | fi |
2157 | ||
20bc94a2 PB |
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 | ||
21e709aa MAL |
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 | ||
bd83c861 CE |
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 | ||
d376e9de | 2181 | # Static linking is not possible with modules or PIE |
40d6444e | 2182 | if test "$static" = "yes" ; then |
aa0d1f44 PB |
2183 | if test "$modules" = "yes" ; then |
2184 | error_exit "static and modules are mutually incompatible" | |
2185 | fi | |
40d6444e AK |
2186 | fi |
2187 | ||
768b7855 EC |
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 | ||
b2634124 | 2199 | cat > $TMPC << EOF |
21d4a791 AK |
2200 | |
2201 | #ifdef __linux__ | |
2202 | # define THREAD __thread | |
2203 | #else | |
2204 | # define THREAD | |
2205 | #endif | |
21d4a791 | 2206 | static THREAD int tls_var; |
21d4a791 | 2207 | int main(void) { return tls_var; } |
40d6444e | 2208 | EOF |
412aeacd | 2209 | |
b2634124 RH |
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" | |
b2634124 RH |
2213 | fi |
2214 | ||
12781462 | 2215 | if test "$static" = "yes"; then |
eca7a8e6 | 2216 | if test "$pie" != "no" && compile_prog "-Werror -fPIE -DPIE" "-static-pie"; then |
5770e8af | 2217 | CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS" |
12781462 RH |
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 | |
5770e8af | 2227 | CONFIGURE_CFLAGS="$CFLAGS_NOPIE $CONFIGURE_CFLAGS" |
eca7a8e6 | 2228 | elif compile_prog "-Werror -fPIE -DPIE" "-pie"; then |
5770e8af PB |
2229 | CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS" |
2230 | CONFIGURE_LDFLAGS="-pie $CONFIGURE_LDFLAGS" | |
2c674109 RH |
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" | |
40d6444e AK |
2237 | fi |
2238 | ||
e6cbd751 RH |
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 | ||
09dada40 PB |
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; | |
1405b629 | 2260 | val = __sync_val_compare_and_swap(&val, 0, 1); |
09dada40 PB |
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 | ######################################### | |
ec530c81 | 2271 | # Solaris specific configure tool chain decisions |
09dada40 | 2272 | |
ec530c81 | 2273 | if test "$solaris" = "yes" ; then |
6792aa11 LM |
2274 | if has ar; then |
2275 | : | |
2276 | else | |
ec530c81 | 2277 | if test -f /usr/ccs/bin/ar ; then |
76ad07a4 PM |
2278 | error_exit "No path includes ar" \ |
2279 | "Add /usr/ccs/bin to your path and rerun configure" | |
ec530c81 | 2280 | fi |
76ad07a4 | 2281 | error_exit "No path includes ar" |
ec530c81 | 2282 | fi |
5fafdf24 | 2283 | fi |
ec530c81 | 2284 | |
56267b62 PMD |
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 | ||
afb63ebd | 2290 | if test -z "${target_list+xxx}" ; then |
fdb75aef | 2291 | default_targets=yes |
d880a3ba | 2292 | for target in $default_target_list; do |
fdb75aef | 2293 | target_list="$target_list $target" |
d880a3ba PB |
2294 | done |
2295 | target_list="${target_list# }" | |
121afa9e | 2296 | else |
fdb75aef | 2297 | default_targets=no |
89138857 | 2298 | target_list=$(echo "$target_list" | sed -e 's/,/ /g') |
d880a3ba PB |
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 | |
d880a3ba | 2309 | done |
121afa9e | 2310 | fi |
25b48338 | 2311 | |
fdb75aef PB |
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 | ||
f55fe278 PB |
2319 | # see if system emulation was really requested |
2320 | case " $target_list " in | |
2321 | *"-softmmu "*) softmmu=yes | |
2322 | ;; | |
2323 | *) softmmu=no | |
2324 | ;; | |
2325 | esac | |
5327cf48 | 2326 | |
249247c9 JQ |
2327 | feature_not_found() { |
2328 | feature=$1 | |
21684af0 | 2329 | remedy=$2 |
249247c9 | 2330 | |
76ad07a4 | 2331 | error_exit "User requested feature $feature" \ |
21684af0 SS |
2332 | "configure was not able to find it." \ |
2333 | "$remedy" | |
249247c9 JQ |
2334 | } |
2335 | ||
7d13299d FB |
2336 | # --- |
2337 | # big/little endian test | |
2338 | cat > $TMPC << EOF | |
61cc919f MF |
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); | |
7d13299d FB |
2344 | } |
2345 | EOF | |
2346 | ||
61cc919f | 2347 | if compile_object ; then |
12f15c91 | 2348 | if strings -a $TMPO | grep -q BiGeNdIaN ; then |
61cc919f | 2349 | bigendian="yes" |
12f15c91 | 2350 | elif strings -a $TMPO | grep -q LiTtLeEnDiAn ; then |
61cc919f MF |
2351 | bigendian="no" |
2352 | else | |
2353 | echo big/little test failed | |
21d89f84 | 2354 | fi |
61cc919f MF |
2355 | else |
2356 | echo big/little test failed | |
7d13299d FB |
2357 | fi |
2358 | ||
e10ee3f5 PMD |
2359 | ########################################## |
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 | ||
90520ee4 PMD |
2369 | ########################################## |
2370 | # Disable features only meaningful for system-mode emulation | |
2371 | if test "$softmmu" = "no"; then | |
2372 | audio_drv_list="" | |
2373 | fi | |
2374 | ||
a30878e7 | 2375 | ########################################## |
6b39b063 EB |
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 | ||
015a33bd GA |
2389 | ########################################## |
2390 | # L2TPV3 probe | |
2391 | ||
2392 | cat > $TMPC <<EOF | |
2393 | #include <sys/socket.h> | |
bff6cb72 | 2394 | #include <linux/ip.h> |
015a33bd GA |
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 | ||
195588cc DC |
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 | ||
299e6f19 PB |
2415 | ######################################### |
2416 | # vhost interdependencies and host support | |
2417 | ||
2418 | # vhost backends | |
d88618f7 SH |
2419 | if test "$vhost_user" = "yes" && test "$linux" != "yes"; then |
2420 | error_exit "vhost-user is only available on Linux" | |
299e6f19 | 2421 | fi |
108a6481 CL |
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 | |
299e6f19 PB |
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 | |
98fc1ada DDAG |
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 | |
108a6481 CL |
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 | |
299e6f19 | 2459 | |
40bc0ca9 | 2460 | # OR the vhost-kernel, vhost-vdpa and vhost-user values for simplicity |
299e6f19 PB |
2461 | if test "$vhost_net" = ""; then |
2462 | test "$vhost_net_user" = "yes" && vhost_net=yes | |
40bc0ca9 | 2463 | test "$vhost_net_vdpa" = "yes" && vhost_net=yes |
299e6f19 PB |
2464 | test "$vhost_kernel" = "yes" && vhost_net=yes |
2465 | fi | |
2466 | ||
779ab5e3 SW |
2467 | ########################################## |
2468 | # pkg-config probe | |
2469 | ||
2470 | if ! has "$pkg_config_exe"; then | |
76ad07a4 | 2471 | error_exit "pkg-config binary '$pkg_config_exe' not found" |
779ab5e3 SW |
2472 | fi |
2473 | ||
b0a47e79 JQ |
2474 | ########################################## |
2475 | # NPTL probe | |
2476 | ||
24cb36a6 | 2477 | if test "$linux_user" = "yes"; then |
b0a47e79 | 2478 | cat > $TMPC <<EOF |
bd0c5661 | 2479 | #include <sched.h> |
30813cea | 2480 | #include <linux/futex.h> |
182eacc0 | 2481 | int main(void) { |
bd0c5661 PB |
2482 | #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) |
2483 | #error bork | |
2484 | #endif | |
182eacc0 | 2485 | return 0; |
bd0c5661 PB |
2486 | } |
2487 | EOF | |
24cb36a6 | 2488 | if ! compile_object ; then |
21684af0 | 2489 | feature_not_found "nptl" "Install glibc and linux kernel headers." |
b0a47e79 | 2490 | fi |
bd0c5661 PB |
2491 | fi |
2492 | ||
e37630ca AL |
2493 | ########################################## |
2494 | # xen probe | |
2495 | ||
1badb709 | 2496 | if test "$xen" != "disabled" ; then |
c1cdd9d5 JG |
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. | |
2500 | ||
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') )" | |
1badb709 | 2505 | xen=enabled |
5b6a8f43 | 2506 | xen_pc="xencontrol xenstore xenforeignmemory xengnttab" |
c1cdd9d5 | 2507 | xen_pc="$xen_pc xenevtchn xendevicemodel" |
58ea9a7a AP |
2508 | if $pkg_config --exists xentoolcore; then |
2509 | xen_pc="$xen_pc xentoolcore" | |
2510 | fi | |
582ea95f MAL |
2511 | xen_cflags="$($pkg_config --cflags $xen_pc)" |
2512 | xen_libs="$($pkg_config --libs $xen_pc)" | |
c1cdd9d5 | 2513 | else |
d5b93ddf | 2514 | |
5b6a8f43 | 2515 | xen_libs="-lxenstore -lxenctrl" |
d9506cab | 2516 | xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn" |
50ced5b3 | 2517 | |
c1cdd9d5 JG |
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 | |
e37630ca | 2524 | #include <xenctrl.h> |
50ced5b3 SW |
2525 | int main(void) { |
2526 | return 0; | |
2527 | } | |
2528 | EOF | |
c1cdd9d5 JG |
2529 | if ! compile_prog "" "$xen_libs" ; then |
2530 | # Xen not found | |
1badb709 | 2531 | if test "$xen" = "enabled" ; then |
c1cdd9d5 JG |
2532 | feature_not_found "xen" "Install xen devel" |
2533 | fi | |
1badb709 | 2534 | xen=disabled |
50ced5b3 | 2535 | |
c1cdd9d5 JG |
2536 | # Xen unstable |
2537 | elif | |
2538 | cat > $TMPC <<EOF && | |
2cbf8903 RL |
2539 | #undef XC_WANT_COMPAT_DEVICEMODEL_API |
2540 | #define __XEN_TOOLS__ | |
2541 | #include <xendevicemodel.h> | |
d3c49ebb | 2542 | #include <xenforeignmemory.h> |
2cbf8903 RL |
2543 | int main(void) { |
2544 | xendevicemodel_handle *xd; | |
d3c49ebb | 2545 | xenforeignmemory_handle *xfmem; |
2cbf8903 RL |
2546 | |
2547 | xd = xendevicemodel_open(0, 0); | |
2548 | xendevicemodel_pin_memory_cacheattr(xd, 0, 0, 0, 0); | |
2549 | ||
d3c49ebb PD |
2550 | xfmem = xenforeignmemory_open(0, 0); |
2551 | xenforeignmemory_map_resource(xfmem, 0, 0, 0, 0, 0, NULL, 0, 0); | |
2552 | ||
2cbf8903 RL |
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 | |
1badb709 | 2560 | xen=enabled |
2cbf8903 RL |
2561 | elif |
2562 | cat > $TMPC <<EOF && | |
5ba3d756 ID |
2563 | #undef XC_WANT_COMPAT_MAP_FOREIGN_API |
2564 | #include <xenforeignmemory.h> | |
58ea9a7a | 2565 | #include <xentoolcore.h> |
5ba3d756 ID |
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); | |
58ea9a7a | 2571 | xentoolcore_restrict_all(0); |
5ba3d756 ID |
2572 | |
2573 | return 0; | |
2574 | } | |
2575 | EOF | |
58ea9a7a | 2576 | compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore" |
5ba3d756 | 2577 | then |
58ea9a7a | 2578 | xen_stable_libs="-lxendevicemodel $xen_stable_libs -lxentoolcore" |
5ba3d756 | 2579 | xen_ctrl_version=41000 |
1badb709 | 2580 | xen=enabled |
5ba3d756 ID |
2581 | elif |
2582 | cat > $TMPC <<EOF && | |
da8090cc PD |
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); | |
50ced5b3 | 2591 | |
da8090cc PD |
2592 | return 0; |
2593 | } | |
2594 | EOF | |
c1cdd9d5 JG |
2595 | compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs" |
2596 | then | |
2597 | xen_stable_libs="-lxendevicemodel $xen_stable_libs" | |
2598 | xen_ctrl_version=40900 | |
1badb709 | 2599 | xen=enabled |
c1cdd9d5 JG |
2600 | elif |
2601 | cat > $TMPC <<EOF && | |
b6eb9b45 PS |
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. | |
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; | |
b6eb9b45 PS |
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); | |
b6eb9b45 PS |
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 | |
c1cdd9d5 JG |
2649 | compile_prog "" "$xen_libs $xen_stable_libs" |
2650 | then | |
2651 | xen_ctrl_version=40800 | |
1badb709 | 2652 | xen=enabled |
c1cdd9d5 JG |
2653 | elif |
2654 | cat > $TMPC <<EOF && | |
5eeb39c2 IC |
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. | |
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; | |
5eeb39c2 IC |
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); | |
5eeb39c2 IC |
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 | |
c1cdd9d5 JG |
2698 | compile_prog "" "$xen_libs $xen_stable_libs" |
2699 | then | |
2700 | xen_ctrl_version=40701 | |
1badb709 | 2701 | xen=enabled |
c1cdd9d5 JG |
2702 | |
2703 | # Xen 4.6 | |
2704 | elif | |
2705 | cat > $TMPC <<EOF && | |
cdadde39 | 2706 | #include <xenctrl.h> |
e108a3c1 | 2707 | #include <xenstore.h> |
d5b93ddf AP |
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 | |
d8b441a3 JB |
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); | |
2719 | xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); | |
2720 | xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); | |
2721 | xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL); | |
20a544c7 | 2722 | xc_reserved_device_memory_map(xc, 0, 0, 0, 0, NULL, 0); |
d8b441a3 JB |
2723 | return 0; |
2724 | } | |
2725 | EOF | |
c1cdd9d5 JG |
2726 | compile_prog "" "$xen_libs" |
2727 | then | |
2728 | xen_ctrl_version=40600 | |
1badb709 | 2729 | xen=enabled |
c1cdd9d5 JG |
2730 | |
2731 | # Xen 4.5 | |
2732 | elif | |
2733 | cat > $TMPC <<EOF && | |
d8b441a3 JB |
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 | |
3996e85c PD |
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); | |
2749 | xc_hvm_create_ioreq_server(xc, 0, 0, NULL); | |
2750 | return 0; | |
2751 | } | |
2752 | EOF | |
c1cdd9d5 JG |
2753 | compile_prog "" "$xen_libs" |
2754 | then | |
2755 | xen_ctrl_version=40500 | |
1badb709 | 2756 | xen=enabled |
3996e85c | 2757 | |
c1cdd9d5 JG |
2758 | elif |
2759 | cat > $TMPC <<EOF && | |
3996e85c PD |
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 | |
8688e065 SS |
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); | |
2775 | return 0; | |
2776 | } | |
2777 | EOF | |
c1cdd9d5 JG |
2778 | compile_prog "" "$xen_libs" |
2779 | then | |
2780 | xen_ctrl_version=40200 | |
1badb709 | 2781 | xen=enabled |
8688e065 | 2782 | |
c1cdd9d5 | 2783 | else |
1badb709 | 2784 | if test "$xen" = "enabled" ; then |
c1cdd9d5 JG |
2785 | feature_not_found "xen (unsupported version)" \ |
2786 | "Install a supported xen (xen 4.2 or newer)" | |
2787 | fi | |
1badb709 | 2788 | xen=disabled |
fc321b4b | 2789 | fi |
d5b93ddf | 2790 | |
1badb709 | 2791 | if test "$xen" = enabled; then |
c1cdd9d5 | 2792 | if test $xen_ctrl_version -ge 40701 ; then |
582ea95f | 2793 | xen_libs="$xen_libs $xen_stable_libs " |
c1cdd9d5 | 2794 | fi |
5eeb39c2 | 2795 | fi |
d5b93ddf | 2796 | fi |
e37630ca AL |
2797 | fi |
2798 | ||
ddbb0d09 DB |
2799 | ########################################## |
2800 | # GNUTLS probe | |
2801 | ||
2802 | if test "$gnutls" != "no"; then | |
a73e82ef | 2803 | pass="no" |
d4c7ee33 | 2804 | if $pkg_config --exists "gnutls >= 3.5.18"; then |
89138857 SW |
2805 | gnutls_cflags=$($pkg_config --cflags gnutls) |
2806 | gnutls_libs=$($pkg_config --libs gnutls) | |
a73e82ef RH |
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 | |
a73e82ef RH |
2811 | pass="yes" |
2812 | fi | |
2813 | fi | |
2814 | if test "$pass" = "no" && test "$gnutls" = "yes"; then | |
a0722409 | 2815 | feature_not_found "gnutls" "Install gnutls devel >= 3.1.18" |
ddbb0d09 | 2816 | else |
a73e82ef | 2817 | gnutls="$pass" |
ddbb0d09 | 2818 | fi |
ddbb0d09 DB |
2819 | fi |
2820 | ||
91bfcdb0 DB |
2821 | |
2822 | # If user didn't give a --disable/enable-gcrypt flag, | |
2823 | # then mark as disabled if user requested nettle | |
a0722409 | 2824 | # explicitly |
91bfcdb0 DB |
2825 | if test -z "$gcrypt" |
2826 | then | |
a0722409 | 2827 | if test "$nettle" = "yes" |
91bfcdb0 DB |
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 | |
a0722409 | 2835 | # explicitly |
91bfcdb0 DB |
2836 | if test -z "$nettle" |
2837 | then | |
a0722409 | 2838 | if test "$gcrypt" = "yes" |
91bfcdb0 DB |
2839 | then |
2840 | nettle="no" | |
2841 | fi | |
2842 | fi | |
2843 | ||
dea7a64e | 2844 | has_libgcrypt() { |
91bfcdb0 DB |
2845 | if ! has "libgcrypt-config" |
2846 | then | |
2847 | return 1 | |
2848 | fi | |
2849 | ||
2850 | if test -n "$cross_prefix" | |
2851 | then | |
89138857 | 2852 | host=$(libgcrypt-config --host) |
91bfcdb0 DB |
2853 | if test "$host-" != $cross_prefix |
2854 | then | |
2855 | return 1 | |
2856 | fi | |
2857 | fi | |
2858 | ||
dea7a64e DB |
2859 | maj=`libgcrypt-config --version | awk -F . '{print $1}'` |
2860 | min=`libgcrypt-config --version | awk -F . '{print $2}'` | |
2861 | ||
b33a8463 | 2862 | if test $maj != 1 || test $min -lt 8 |
dea7a64e DB |
2863 | then |
2864 | return 1 | |
2865 | fi | |
2866 | ||
91bfcdb0 DB |
2867 | return 0 |
2868 | } | |
2869 | ||
a0722409 DB |
2870 | |
2871 | if test "$nettle" != "no"; then | |
a73e82ef | 2872 | pass="no" |
20ba7a4a | 2873 | if $pkg_config --exists "nettle >= 3.4"; then |
a0722409 DB |
2874 | nettle_cflags=$($pkg_config --cflags nettle) |
2875 | nettle_libs=$($pkg_config --libs nettle) | |
a73e82ef RH |
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 | |
a73e82ef RH |
2879 | if test -z "$gcrypt"; then |
2880 | gcrypt="no" | |
2881 | fi | |
2882 | pass="yes" | |
a0722409 | 2883 | fi |
a73e82ef | 2884 | fi |
dc2207af DB |
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 | |
a73e82ef RH |
2898 | if test "$pass" = "no" && test "$nettle" = "yes"; then |
2899 | feature_not_found "nettle" "Install nettle devel >= 2.7.1" | |
a0722409 | 2900 | else |
a73e82ef | 2901 | nettle="$pass" |
a0722409 DB |
2902 | fi |
2903 | fi | |
2904 | ||
91bfcdb0 | 2905 | if test "$gcrypt" != "no"; then |
a73e82ef | 2906 | pass="no" |
dea7a64e | 2907 | if has_libgcrypt; then |
89138857 SW |
2908 | gcrypt_cflags=$(libgcrypt-config --cflags) |
2909 | gcrypt_libs=$(libgcrypt-config --libs) | |
a73e82ef | 2910 | # Debian has removed -lgpg-error from libgcrypt-config |
91bfcdb0 DB |
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 | |
1f923c70 | 2917 | |
a73e82ef RH |
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 | |
a73e82ef RH |
2921 | pass="yes" |
2922 | fi | |
2923 | fi | |
2924 | if test "$pass" = "yes"; then | |
2925 | gcrypt="yes" | |
1f923c70 LM |
2926 | cat > $TMPC << EOF |
2927 | #include <gcrypt.h> | |
e0576942 DB |
2928 | int main(void) { |
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 | |
a73e82ef RH |
2938 | elif test "$gcrypt" = "yes"; then |
2939 | feature_not_found "gcrypt" "Install gcrypt devel >= 1.5.0" | |
62893b67 | 2940 | else |
a73e82ef | 2941 | gcrypt="no" |
62893b67 DB |
2942 | fi |
2943 | fi | |
2944 | ||
ddbb0d09 | 2945 | |
91bfcdb0 DB |
2946 | if test "$gcrypt" = "yes" && test "$nettle" = "yes" |
2947 | then | |
2948 | error_exit "Only one of gcrypt & nettle can be enabled" | |
2949 | fi | |
2950 | ||
9a2fd434 DB |
2951 | ########################################## |
2952 | # libtasn1 - only for the TLS creds/session test suite | |
2953 | ||
2954 | tasn1=yes | |
90246037 DB |
2955 | tasn1_cflags="" |
2956 | tasn1_libs="" | |
9a2fd434 | 2957 | if $pkg_config --exists "libtasn1"; then |
89138857 SW |
2958 | tasn1_cflags=$($pkg_config --cflags libtasn1) |
2959 | tasn1_libs=$($pkg_config --libs libtasn1) | |
9a2fd434 DB |
2960 | else |
2961 | tasn1=no | |
2962 | fi | |
2963 | ||
ed754746 | 2964 | |
8953caf3 DB |
2965 | ########################################## |
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"; | |
9c9642d0 | 2975 | const struct pam_conv pam_conv = { 0 }; |
8953caf3 | 2976 | pam_handle_t *pamh = NULL; |
9c9642d0 | 2977 | pam_start(service_name, user, &pam_conv, &pamh); |
8953caf3 DB |
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 | ||
bbbf9bfb SW |
2992 | ########################################## |
2993 | # VTE probe | |
2994 | ||
2995 | if test "$vte" != "no"; then | |
89d85cde DB |
2996 | vteminversion="0.32.0" |
2997 | if $pkg_config --exists "vte-2.91"; then | |
2998 | vtepackage="vte-2.91" | |
528de90a | 2999 | else |
89d85cde | 3000 | vtepackage="vte-2.90" |
528de90a | 3001 | fi |
c6feff9e | 3002 | if $pkg_config --exists "$vtepackage >= $vteminversion"; then |
89138857 SW |
3003 | vte_cflags=$($pkg_config --cflags $vtepackage) |
3004 | vte_libs=$($pkg_config --libs $vtepackage) | |
3005 | vteversion=$($pkg_config --modversion $vtepackage) | |
bbbf9bfb SW |
3006 | vte="yes" |
3007 | elif test "$vte" = "yes"; then | |
89d85cde | 3008 | feature_not_found "vte" "Install libvte-2.90/2.91 devel" |
0d185e63 | 3009 | else |
bbbf9bfb | 3010 | vte="no" |
a4ccabcf AL |
3011 | fi |
3012 | fi | |
3013 | ||
2da776db MH |
3014 | ########################################## |
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 | |
ef6d4ccd | 3021 | rdma_libs="-lrdmacm -libverbs -libumad" |
2da776db MH |
3022 | if compile_prog "" "$rdma_libs" ; then |
3023 | rdma="yes" | |
2da776db MH |
3024 | else |
3025 | if test "$rdma" = "yes" ; then | |
3026 | error_exit \ | |
ef6d4ccd | 3027 | " OpenFabrics librdmacm/libibverbs/libibumad not present." \ |
2da776db | 3028 | " Your options:" \ |
ef6d4ccd | 3029 | " (1) Fast: Install infiniband packages (devel) from your distro." \ |
2da776db MH |
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 | ||
21ab34c9 MA |
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 | |
95c6bff3 | 3079 | |
ee108585 YS |
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 | ||
ee682d27 | 3108 | ########################################## |
c1bb86cd | 3109 | # xfsctl() probe, used for file-posix.c |
dce512de CH |
3110 | if test "$xfs" != "no" ; then |
3111 | cat > $TMPC << EOF | |
ffc41d10 | 3112 | #include <stddef.h> /* NULL */ |
dce512de CH |
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 | |
e3a6e0da | 3124 | feature_not_found "xfs" "Install xfsprogs/xfslibs devel" |
dce512de CH |
3125 | fi |
3126 | xfs=no | |
3127 | fi | |
3128 | fi | |
3129 | ||
8a16d273 TS |
3130 | ########################################## |
3131 | # vde libraries probe | |
dfb278bd | 3132 | if test "$vde" != "no" ; then |
4baae0ac | 3133 | vde_libs="-lvdeplug" |
8a16d273 TS |
3134 | cat > $TMPC << EOF |
3135 | #include <libvdeplug.h> | |
4a7f0e06 PB |
3136 | int main(void) |
3137 | { | |
3138 | struct vde_open_args a = {0, 0, 0}; | |
fea08e08 PM |
3139 | char s[] = ""; |
3140 | vde_open(s, s, &a); | |
4a7f0e06 PB |
3141 | return 0; |
3142 | } | |
8a16d273 | 3143 | EOF |
52166aa0 | 3144 | if compile_prog "" "$vde_libs" ; then |
4baae0ac | 3145 | vde=yes |
dfb278bd JQ |
3146 | else |
3147 | if test "$vde" = "yes" ; then | |
21684af0 | 3148 | feature_not_found "vde" "Install vde (Virtual Distributed Ethernet) devel" |
dfb278bd JQ |
3149 | fi |
3150 | vde=no | |
4baae0ac | 3151 | fi |
8a16d273 TS |
3152 | fi |
3153 | ||
58952137 | 3154 | ########################################## |
0a985b37 VM |
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. | |
58952137 VM |
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> | |
0a985b37 VM |
3167 | #if (NETMAP_API < 11) || (NETMAP_API > 15) |
3168 | #error | |
3169 | #endif | |
58952137 VM |
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 | ||
422a5fd0 JD |
3182 | ########################################## |
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 | ||
8f28f3fb | 3200 | ########################################## |
c2de5c91 | 3201 | # Sound support libraries probe |
8f28f3fb | 3202 | |
89138857 | 3203 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/,/ /g') |
c2de5c91 | 3204 | for drv in $audio_drv_list; do |
3205 | case $drv in | |
e42975a1 | 3206 | alsa | try-alsa) |
c80a867f GH |
3207 | if $pkg_config alsa --exists; then |
3208 | alsa_libs=$($pkg_config alsa --libs) | |
478e943f PB |
3209 | alsa_cflags=$($pkg_config alsa --cflags) |
3210 | alsa=yes | |
e42975a1 GH |
3211 | if test "$drv" = "try-alsa"; then |
3212 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-alsa/alsa/') | |
3213 | fi | |
c80a867f | 3214 | else |
e42975a1 GH |
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 | |
c80a867f | 3221 | fi |
c2de5c91 | 3222 | ;; |
3223 | ||
e42975a1 | 3224 | pa | try-pa) |
c80a867f | 3225 | if $pkg_config libpulse --exists; then |
478e943f | 3226 | libpulse=yes |
c80a867f | 3227 | pulse_libs=$($pkg_config libpulse --libs) |
478e943f | 3228 | pulse_cflags=$($pkg_config libpulse --cflags) |
e42975a1 GH |
3229 | if test "$drv" = "try-pa"; then |
3230 | audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/try-pa/pa/') | |
3231 | fi | |
c80a867f | 3232 | else |
e42975a1 GH |
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 | |
c80a867f | 3239 | fi |
b8e59f18 | 3240 | ;; |
3241 | ||
373967b2 GH |
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 | ||
e42975a1 GH |
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 | ||
422a5fd0 JD |
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 | |
b1149911 | 3265 | coreaudio_libs="-framework CoreAudio" |
422a5fd0 JD |
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 | |
997e690a JQ |
3270 | ;; |
3271 | ||
a4bf6780 | 3272 | dsound) |
b1149911 | 3273 | dsound_libs="-lole32 -ldxguid" |
d5631638 | 3274 | audio_win_int="yes" |
a4bf6780 JQ |
3275 | ;; |
3276 | ||
3277 | oss) | |
b1149911 | 3278 | oss_libs="$oss_lib" |
a4bf6780 JQ |
3279 | ;; |
3280 | ||
2e445703 GM |
3281 | jack | try-jack) |
3282 | if $pkg_config jack --exists; then | |
478e943f | 3283 | libjack=yes |
2e445703 GM |
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 | ||
e4c63a6a | 3298 | *) |
1c9b2a52 | 3299 | echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { |
76ad07a4 PM |
3300 | error_exit "Unknown driver '$drv' selected" \ |
3301 | "Possible drivers are: $audio_possible_drivers" | |
e4c63a6a | 3302 | } |
3303 | ;; | |
c2de5c91 | 3304 | esac |
3305 | done | |
8f28f3fb | 3306 | |
e18df141 AL |
3307 | ########################################## |
3308 | # glib support probe | |
a52d28af | 3309 | |
b4c6036f | 3310 | glib_req_ver=2.56 |
aa0d1f44 PB |
3311 | glib_modules=gthread-2.0 |
3312 | if test "$modules" = yes; then | |
a88afc64 | 3313 | glib_modules="$glib_modules gmodule-export-2.0" |
aa0d1f44 | 3314 | fi |
54cb65d8 EC |
3315 | if test "$plugins" = yes; then |
3316 | glib_modules="$glib_modules gmodule-2.0" | |
3317 | fi | |
e26110cf | 3318 | |
aa0d1f44 | 3319 | for i in $glib_modules; do |
e26110cf | 3320 | if $pkg_config --atleast-version=$glib_req_ver $i; then |
89138857 SW |
3321 | glib_cflags=$($pkg_config --cflags $i) |
3322 | glib_libs=$($pkg_config --libs $i) | |
e26110cf FZ |
3323 | else |
3324 | error_exit "glib-$glib_req_ver $i is required to compile QEMU" | |
3325 | fi | |
3326 | done | |
3327 | ||
215b0c2f PB |
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 | ||
20cf7b8e DP |
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) | |
5ecfb76c | 3341 | if ! has "$gdbus_codegen"; then |
20cf7b8e DP |
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 | |
13ceae66 PM |
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 | |
20cf7b8e DP |
3355 | if compile_prog "$gio_cflags" "$gio_libs" ; then |
3356 | pass=yes | |
3357 | else | |
3358 | pass=no | |
3359 | fi | |
3360 | ||
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 | |
76346b62 | 3366 | fi |
f876b765 | 3367 | |
20cf7b8e DP |
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 | |
25a97a56 MAL |
3377 | fi |
3378 | ||
977a82ab DB |
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 | ||
215b0c2f | 3396 | if ! compile_prog "$glib_cflags" "$glib_libs" ; then |
977a82ab DB |
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 | ||
bbbf2e04 JS |
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" | |
5770e8af | 3411 | CONFIGURE_CFLAGS="-Wno-unknown-attributes $CONFIGURE_CFLAGS" |
bbbf2e04 JS |
3412 | fi |
3413 | fi | |
3414 | ||
9bda600b EB |
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" | |
5770e8af | 3431 | CONFIGURE_CFLAGS="$CONFIGURE_CFLAGS -Wno-unused-function" |
9bda600b EB |
3432 | fi |
3433 | fi | |
3434 | ||
e26110cf FZ |
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 | |
8ccefb91 | 3440 | if has $c; then |
e26110cf FZ |
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 | |
e18df141 AL |
3448 | fi |
3449 | ||
414f0dab | 3450 | ########################################## |
e5d355d1 | 3451 | # pthread probe |
4b29ec41 | 3452 | PTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2" |
3c529d93 | 3453 | |
4dd75c70 | 3454 | pthread=no |
e5d355d1 | 3455 | cat > $TMPC << EOF |
3c529d93 | 3456 | #include <pthread.h> |
7a42bbe4 SW |
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 | } | |
414f0dab | 3463 | EOF |
bd00d539 AF |
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 | |
bd00d539 AF |
3470 | break |
3471 | fi | |
3472 | done | |
3473 | fi | |
414f0dab | 3474 | |
e633a5c6 | 3475 | if test "$mingw32" != yes && test "$pthread" = no; then |
76ad07a4 PM |
3476 | error_exit "pthread check failed" \ |
3477 | "Make sure to have the pthread libs and headers installed." | |
e5d355d1 AL |
3478 | fi |
3479 | ||
479a5747 RB |
3480 | # check for pthread_setname_np with thread id |
3481 | pthread_setname_np_w_tid=no | |
5c312079 DDAG |
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 | |
479a5747 RB |
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 | ||
12a9b8d8 | 3503 | static void *f(void *p) { pthread_setname_np("QEMU"); return NULL; } |
479a5747 RB |
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 | |
5c312079 DDAG |
3513 | fi |
3514 | ||
0a12ec87 | 3515 | ########################################## |
b10d49d7 PT |
3516 | # libssh probe |
3517 | if test "$libssh" != "no" ; then | |
b4c10fc6 | 3518 | if $pkg_config --exists "libssh >= 0.8.7"; then |
b10d49d7 PT |
3519 | libssh_cflags=$($pkg_config libssh --cflags) |
3520 | libssh_libs=$($pkg_config libssh --libs) | |
3521 | libssh=yes | |
0a12ec87 | 3522 | else |
b10d49d7 PT |
3523 | if test "$libssh" = "yes" ; then |
3524 | error_exit "libssh required for --enable-libssh" | |
0a12ec87 | 3525 | fi |
b10d49d7 | 3526 | libssh=no |
0a12ec87 RJ |
3527 | fi |
3528 | fi | |
3529 | ||
5c6c3a6c CH |
3530 | ########################################## |
3531 | # linux-aio probe | |
5c6c3a6c CH |
3532 | |
3533 | if test "$linux_aio" != "no" ; then | |
3534 | cat > $TMPC <<EOF | |
3535 | #include <libaio.h> | |
3536 | #include <sys/eventfd.h> | |
832ce9c2 | 3537 | #include <stddef.h> |
5c6c3a6c CH |
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 | |
5c6c3a6c CH |
3542 | else |
3543 | if test "$linux_aio" = "yes" ; then | |
21684af0 | 3544 | feature_not_found "linux AIO" "Install libaio devel" |
5c6c3a6c | 3545 | fi |
3cfcae3c | 3546 | linux_aio=no |
5c6c3a6c CH |
3547 | fi |
3548 | fi | |
c10dd856 AM |
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 | |
5c6c3a6c | 3564 | |
3b8acc11 | 3565 | ########################################## |
7aaa6a16 | 3566 | # TPM emulation is only on POSIX |
3b8acc11 | 3567 | |
7aaa6a16 PB |
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 | |
3b8acc11 PB |
3578 | fi |
3579 | ||
bf9298b9 AL |
3580 | ########################################## |
3581 | # iovec probe | |
3582 | cat > $TMPC <<EOF | |
db34f0b3 | 3583 | #include <sys/types.h> |
bf9298b9 | 3584 | #include <sys/uio.h> |
db34f0b3 | 3585 | #include <unistd.h> |
f91f9bee | 3586 | int main(void) { return sizeof(struct iovec); } |
bf9298b9 AL |
3587 | EOF |
3588 | iovec=no | |
52166aa0 | 3589 | if compile_prog "" "" ; then |
bf9298b9 AL |
3590 | iovec=yes |
3591 | fi | |
3592 | ||
f652e6af AJ |
3593 | ########################################## |
3594 | # fdt probe | |
d599938a | 3595 | |
fbb4121d PB |
3596 | case "$fdt" in |
3597 | auto | enabled | internal) | |
3598 | # Simpler to always update submodule, even if not needed. | |
2d652f24 | 3599 | git_submodules="${git_submodules} dtc" |
fbb4121d PB |
3600 | ;; |
3601 | esac | |
f652e6af | 3602 | |
20ff075b | 3603 | ########################################## |
9d49bcf6 | 3604 | # opengl probe (for sdl2, gtk) |
b1546f32 | 3605 | |
d52c454a MAL |
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 | ||
da076ffe | 3613 | if test "$opengl" != "no" ; then |
bc6a3565 AO |
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)" | |
da076ffe | 3628 | opengl=yes |
20ff075b | 3629 | else |
da076ffe | 3630 | if test "$opengl" = "yes" ; then |
bc6a3565 | 3631 | feature_not_found "opengl" "Please install epoxy with EGL" |
20ff075b | 3632 | fi |
f676c67e | 3633 | opengl_cflags="" |
da076ffe GH |
3634 | opengl_libs="" |
3635 | opengl=no | |
20ff075b MW |
3636 | fi |
3637 | fi | |
3638 | ||
ed279a06 KK |
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 | |
c9a12e75 | 3653 | |
39386ac7 | 3654 | # Check for inotify functions when we are building linux-user |
3b3f24ad AJ |
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 | |
67ba57f6 | 3660 | cat > $TMPC << EOF |
3b3f24ad AJ |
3661 | #include <sys/inotify.h> |
3662 | ||
3663 | int | |
3664 | main(void) | |
3665 | { | |
3666 | /* try to start inotify */ | |
8690e420 | 3667 | return inotify_init(); |
3b3f24ad AJ |
3668 | } |
3669 | EOF | |
52166aa0 | 3670 | if compile_prog "" "" ; then |
67ba57f6 | 3671 | inotify=yes |
3b3f24ad AJ |
3672 | fi |
3673 | ||
c05c7a73 RV |
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 | ||
099d6b0f RV |
3689 | # check if pipe2 is there |
3690 | pipe2=no | |
3691 | cat > $TMPC << EOF | |
099d6b0f RV |
3692 | #include <unistd.h> |
3693 | #include <fcntl.h> | |
3694 | ||
3695 | int main(void) | |
3696 | { | |
3697 | int pipefd[2]; | |
9bca8162 | 3698 | return pipe2(pipefd, O_CLOEXEC); |
099d6b0f RV |
3699 | } |
3700 | EOF | |
52166aa0 | 3701 | if compile_prog "" "" ; then |
099d6b0f RV |
3702 | pipe2=yes |
3703 | fi | |
3704 | ||
40ff6d7e KW |
3705 | # check if accept4 is there |
3706 | accept4=no | |
3707 | cat > $TMPC << EOF | |
40ff6d7e KW |
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 | ||
3ce34dfb VS |
3721 | # check if tee/splice is there. vmsplice was added same time. |
3722 | splice=no | |
3723 | cat > $TMPC << EOF | |
3ce34dfb VS |
3724 | #include <unistd.h> |
3725 | #include <fcntl.h> | |
3726 | #include <limits.h> | |
3727 | ||
3728 | int main(void) | |
3729 | { | |
66ea0f22 | 3730 | int len, fd = 0; |
3ce34dfb VS |
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 | |
52166aa0 | 3736 | if compile_prog "" "" ; then |
3ce34dfb VS |
3737 | splice=yes |
3738 | fi | |
3739 | ||
a99d57bb WG |
3740 | ########################################## |
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 | |
ab318051 | 3751 | numa_libs="-lnuma" |
a99d57bb WG |
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 | ||
aa087962 | 3760 | malloc=system |
7b01cb97 AD |
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 | |
aa087962 PB |
3764 | elif test "$tcmalloc" = "yes" ; then |
3765 | malloc=tcmalloc | |
3766 | elif test "$jemalloc" = "yes" ; then | |
3767 | malloc=jemalloc | |
7b01cb97 AD |
3768 | fi |
3769 | ||
dcc38d1c MT |
3770 | ########################################## |
3771 | # signalfd probe | |
3772 | signalfd="no" | |
3773 | cat > $TMPC << EOF | |
dcc38d1c MT |
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 | ||
d339d766 RJ |
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 | ||
c2882b96 RV |
3795 | # check if eventfd is supported |
3796 | eventfd=no | |
3797 | cat > $TMPC << EOF | |
3798 | #include <sys/eventfd.h> | |
3799 | ||
3800 | int main(void) | |
3801 | { | |
55cc7f3e | 3802 | return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); |
c2882b96 RV |
3803 | } |
3804 | EOF | |
3805 | if compile_prog "" "" ; then | |
3806 | eventfd=yes | |
3807 | fi | |
3808 | ||
751bcc39 MAL |
3809 | # check if memfd is supported |
3810 | memfd=no | |
3811 | cat > $TMPC << EOF | |
75e5b70e | 3812 | #include <sys/mman.h> |
751bcc39 MAL |
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 | ||
955727d2 CT |
3823 | # check for usbfs |
3824 | have_usbfs=no | |
3825 | if test "$linux_user" = "yes"; then | |
96566d09 TP |
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 | |
955727d2 CT |
3843 | have_usbfs=yes |
3844 | fi | |
955727d2 | 3845 | fi |
751bcc39 | 3846 | |
d0927938 UH |
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 | |
8fb03151 | 3858 | if compile_prog "" "" ; then |
d0927938 UH |
3859 | fallocate=yes |
3860 | fi | |
3861 | ||
3d4fa43e KK |
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 | ||
b953f075 DL |
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 | ||
ed911435 KW |
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 | ||
c727f47d PM |
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 | |
8fb03151 | 3920 | if compile_prog "" "" ; then |
c727f47d PM |
3921 | sync_file_range=yes |
3922 | fi | |
3923 | ||
dace20dc PM |
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 | |
8fb03151 | 3937 | if compile_prog "" "" ; then |
dace20dc PM |
3938 | fiemap=yes |
3939 | fi | |
3940 | ||
d0927938 UH |
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 | |
78f5d726 | 3952 | if compile_prog "" "" ; then |
d0927938 UH |
3953 | dup3=yes |
3954 | fi | |
3955 | ||
4e0c6529 AB |
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 | ||
cd758dd0 AB |
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 | ||
3b6edd16 PM |
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 | |
8fb03151 | 3998 | if compile_prog "" "" ; then |
3b6edd16 PM |
3999 | epoll=yes |
4000 | fi | |
4001 | ||
227f0214 PM |
4002 | # epoll_create1 is a later addition |
4003 | # so we must check separately for its presence | |
3b6edd16 PM |
4004 | epoll_create1=no |
4005 | cat > $TMPC << EOF | |
4006 | #include <sys/epoll.h> | |
4007 | ||
4008 | int main(void) | |
4009 | { | |
19e83f6b PM |
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 | */ | |
c075a723 | 4018 | return (int)(uintptr_t)&epoll_create1; |
3b6edd16 PM |
4019 | } |
4020 | EOF | |
8fb03151 | 4021 | if compile_prog "" "" ; then |
3b6edd16 PM |
4022 | epoll_create1=yes |
4023 | fi | |
4024 | ||
a8fd1aba PM |
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 | ||
51834341 RV |
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 | ||
9af5c906 RV |
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 | ||
38860a03 AM |
4070 | # clock_adjtime probe |
4071 | clock_adjtime=no | |
4072 | cat > $TMPC <<EOF | |
4073 | #include <time.h> | |
cd5d20ef | 4074 | #include <sys/timex.h> |
38860a03 AM |
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 | ||
5a03cd00 AM |
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 | ||
f514f41c | 4101 | # Search for bswap_32 function |
6ae9a1f4 JQ |
4102 | byteswap_h=no |
4103 | cat > $TMPC << EOF | |
4104 | #include <byteswap.h> | |
4105 | int main(void) { return bswap_32(0); } | |
4106 | EOF | |
52166aa0 | 4107 | if compile_prog "" "" ; then |
6ae9a1f4 JQ |
4108 | byteswap_h=yes |
4109 | fi | |
4110 | ||
75f13596 | 4111 | # Search for bswap32 function |
6ae9a1f4 JQ |
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 | |
52166aa0 | 4119 | if compile_prog "" "" ; then |
6ae9a1f4 JQ |
4120 | bswap_h=yes |
4121 | fi | |
4122 | ||
f2995ee4 | 4123 | # Check whether we have openpty() in either libc or libutil |
d99e97e6 TH |
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 | ||
9df8b20d TH |
4129 | have_openpty="no" |
4130 | if compile_prog "" "" ; then | |
4131 | have_openpty="yes" | |
4132 | else | |
d99e97e6 | 4133 | if compile_prog "" "-lutil" ; then |
9df8b20d | 4134 | have_openpty="yes" |
d99e97e6 | 4135 | fi |
6362a53f JQ |
4136 | fi |
4137 | ||
de5071c5 | 4138 | ########################################## |
cd4ec0b4 | 4139 | # spice probe |
58d3f3ff GH |
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 | ||
cd4ec0b4 GH |
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 | |
710fc4f5 JD |
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) | |
1b63665c | 4160 | if $pkg_config --atleast-version=0.12.5 spice-server && \ |
58d3f3ff | 4161 | test "$spice_protocol" = "yes" && \ |
cd4ec0b4 GH |
4162 | compile_prog "$spice_cflags" "$spice_libs" ; then |
4163 | spice="yes" | |
cd4ec0b4 GH |
4164 | else |
4165 | if test "$spice" = "yes" ; then | |
8efc9363 | 4166 | feature_not_found "spice" \ |
58d3f3ff | 4167 | "Install spice-server(>=0.12.5) devel" |
cd4ec0b4 GH |
4168 | fi |
4169 | spice="no" | |
4170 | fi | |
4171 | fi | |
4172 | ||
7b02f544 | 4173 | # check for smartcard support |
7b02f544 | 4174 | if test "$smartcard" != "no"; then |
0f5c642d | 4175 | if $pkg_config --atleast-version=2.5.1 libcacard; then |
7b02f544 MAL |
4176 | libcacard_cflags=$($pkg_config --cflags libcacard) |
4177 | libcacard_libs=$($pkg_config --libs libcacard) | |
7b02f544 | 4178 | smartcard="yes" |
afd347ab | 4179 | else |
7b02f544 MAL |
4180 | if test "$smartcard" = "yes"; then |
4181 | feature_not_found "smartcard" "Install libcacard devel" | |
111a38b0 | 4182 | fi |
7b02f544 | 4183 | smartcard="no" |
111a38b0 RR |
4184 | fi |
4185 | fi | |
111a38b0 | 4186 | |
2b2325ff GH |
4187 | # check for libusb |
4188 | if test "$libusb" != "no" ; then | |
65d5d3f9 | 4189 | if $pkg_config --atleast-version=1.0.13 libusb-1.0; then |
2b2325ff | 4190 | libusb="yes" |
ca871ec8 SW |
4191 | libusb_cflags=$($pkg_config --cflags libusb-1.0) |
4192 | libusb_libs=$($pkg_config --libs libusb-1.0) | |
2b2325ff GH |
4193 | else |
4194 | if test "$libusb" = "yes"; then | |
8efc9363 | 4195 | feature_not_found "libusb" "Install libusb devel >= 1.0.13" |
2b2325ff GH |
4196 | fi |
4197 | libusb="no" | |
4198 | fi | |
4199 | fi | |
4200 | ||
69354a83 HG |
4201 | # check for usbredirparser for usb network redirection support |
4202 | if test "$usb_redir" != "no" ; then | |
65d5d3f9 | 4203 | if $pkg_config --atleast-version=0.6 libusbredirparser-0.5; then |
69354a83 | 4204 | usb_redir="yes" |
ca871ec8 SW |
4205 | usb_redir_cflags=$($pkg_config --cflags libusbredirparser-0.5) |
4206 | usb_redir_libs=$($pkg_config --libs libusbredirparser-0.5) | |
69354a83 HG |
4207 | else |
4208 | if test "$usb_redir" = "yes"; then | |
21684af0 | 4209 | feature_not_found "usb-redir" "Install usbredir devel" |
69354a83 HG |
4210 | fi |
4211 | usb_redir="no" | |
4212 | fi | |
4213 | fi | |
4214 | ||
d9840e25 TS |
4215 | ########################################## |
4216 | # check if we have VSS SDK headers for win | |
4217 | ||
e633a5c6 EB |
4218 | if test "$mingw32" = "yes" && test "$guest_agent" != "no" && \ |
4219 | test "$vss_win32_sdk" != "no" ; then | |
d9840e25 | 4220 | case "$vss_win32_sdk" in |
690604f6 | 4221 | "") vss_win32_include="-isystem $source_path" ;; |
d9840e25 TS |
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". | |
690604f6 | 4224 | vss_win32_include="-isystem $source_path/.sdk/vss" |
d9840e25 TS |
4225 | symlink "$vss_win32_sdk/inc" "$source_path/.sdk/vss/inc" |
4226 | ;; | |
690604f6 | 4227 | *) vss_win32_include="-isystem $vss_win32_sdk" |
d9840e25 TS |
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" | |
315d3184 | 4237 | libs_qga="-lole32 -loleaut32 -lshlwapi -lstdc++ -Wl,--enable-stdcall-fixup $libs_qga" |
f33ca81f | 4238 | qga_vss_provider="qga/vss-win32/qga-vss.dll qga/vss-win32/qga-vss.tlb" |
d9840e25 TS |
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 | ||
e633a5c6 EB |
4258 | if test "$mingw32" = "yes" && test "$guest_agent" != "no" && \ |
4259 | test "$guest_agent_with_vss" = "yes" ; then | |
d9840e25 TS |
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 | ||
50cbebb9 MR |
4273 | ########################################## |
4274 | # check if mingw environment provides a recent ntddscsi.h | |
e633a5c6 | 4275 | if test "$mingw32" = "yes" && test "$guest_agent" != "no"; then |
50cbebb9 MR |
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 | |
996b9cdc | 4289 | libs_qga="-lsetupapi -lcfgmgr32 $libs_qga" |
50cbebb9 MR |
4290 | fi |
4291 | fi | |
4292 | ||
9d9e1521 GH |
4293 | ########################################## |
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) | |
47479c55 | 4303 | virgl_version=$($pkg_config --modversion virglrenderer 2>/dev/null) |
9d9e1521 GH |
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 | ||
8ca80760 RH |
4315 | ########################################## |
4316 | # capstone | |
4317 | ||
e219c499 | 4318 | case "$capstone" in |
8b18cdbf RH |
4319 | auto | enabled | internal) |
4320 | # Simpler to always update submodule, even if not needed. | |
2d652f24 | 4321 | git_submodules="${git_submodules} capstone" |
e219c499 RH |
4322 | ;; |
4323 | esac | |
8ca80760 | 4324 | |
5f6b9e8f BS |
4325 | ########################################## |
4326 | # check if we have fdatasync | |
4327 | ||
4328 | fdatasync=no | |
4329 | cat > $TMPC << EOF | |
4330 | #include <unistd.h> | |
d1722a27 AR |
4331 | int main(void) { |
4332 | #if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0 | |
4333 | return fdatasync(0); | |
4334 | #else | |
e172fe11 | 4335 | #error Not supported |
d1722a27 AR |
4336 | #endif |
4337 | } | |
5f6b9e8f BS |
4338 | EOF |
4339 | if compile_prog "" "" ; then | |
4340 | fdatasync=yes | |
4341 | fi | |
4342 | ||
e78815a5 AF |
4343 | ########################################## |
4344 | # check if we have madvise | |
4345 | ||
4346 | madvise=no | |
4347 | cat > $TMPC << EOF | |
4348 | #include <sys/types.h> | |
4349 | #include <sys/mman.h> | |
832ce9c2 | 4350 | #include <stddef.h> |
e78815a5 AF |
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> | |
832ce9c2 | 4363 | #include <stddef.h> |
e78815a5 AF |
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 | ||
9bc5a719 AG |
4370 | ########################################## |
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 | ||
0a852417 PD |
4385 | ########################################## |
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 | ||
401bc051 PM |
4397 | ########################################## |
4398 | # check if we have sem_timedwait | |
4399 | ||
4400 | sem_timedwait=no | |
4401 | cat > $TMPC << EOF | |
4402 | #include <semaphore.h> | |
811294b7 | 4403 | int main(void) { sem_t s; struct timespec t = {0}; return sem_timedwait(&s, &t); } |
401bc051 PM |
4404 | EOF |
4405 | if compile_prog "" "" ; then | |
4406 | sem_timedwait=yes | |
4407 | fi | |
4408 | ||
5c99fa37 KF |
4409 | ########################################## |
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 | ||
8a792b03 JX |
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 | ||
94a420b1 SH |
4437 | ########################################## |
4438 | # check if trace backend exists | |
4439 | ||
5b808275 | 4440 | $python "$source_path/scripts/tracetool.py" "--backends=$trace_backends" --check-backends > /dev/null 2> /dev/null |
94a420b1 | 4441 | if test "$?" -ne 0 ; then |
5b808275 LV |
4442 | error_exit "invalid trace backends" \ |
4443 | "Please choose supported trace backends." | |
94a420b1 SH |
4444 | fi |
4445 | ||
7e24e92a SH |
4446 | ########################################## |
4447 | # For 'ust' backend, test if ust headers are present | |
5b808275 | 4448 | if have_backend "ust"; then |
7e24e92a | 4449 | cat > $TMPC << EOF |
bf15f63c | 4450 | #include <lttng/tracepoint.h> |
7e24e92a SH |
4451 | int main(void) { return 0; } |
4452 | EOF | |
c79ed23d | 4453 | if compile_prog "" "-Wl,--no-as-needed -ldl" ; then |
bf15f63c | 4454 | if $pkg_config lttng-ust --exists; then |
89138857 | 4455 | lttng_ust_libs=$($pkg_config --libs lttng-ust) |
bf15f63c | 4456 | else |
c79ed23d | 4457 | lttng_ust_libs="-llttng-ust -ldl" |
bf15f63c MG |
4458 | fi |
4459 | if $pkg_config liburcu-bp --exists; then | |
89138857 | 4460 | urcu_bp_libs=$($pkg_config --libs liburcu-bp) |
bf15f63c MG |
4461 | else |
4462 | urcu_bp_libs="-lurcu-bp" | |
4463 | fi | |
7e24e92a | 4464 | else |
bf15f63c | 4465 | error_exit "Trace backend 'ust' missing lttng-ust header files" |
7e24e92a SH |
4466 | fi |
4467 | fi | |
b3d08c02 DB |
4468 | |
4469 | ########################################## | |
4470 | # For 'dtrace' backend, test if 'dtrace' command is present | |
5b808275 | 4471 | if have_backend "dtrace"; then |
b3d08c02 | 4472 | if ! has 'dtrace' ; then |
76ad07a4 | 4473 | error_exit "dtrace command is not found in PATH $PATH" |
b3d08c02 | 4474 | fi |
c276b17d DB |
4475 | trace_backend_stap="no" |
4476 | if has 'stap' ; then | |
4477 | trace_backend_stap="yes" | |
4b265c79 SH |
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" | |
c276b17d | 4485 | fi |
b3d08c02 DB |
4486 | fi |
4487 | ||
023367e6 | 4488 | ########################################## |
519175a2 | 4489 | # check and set a backend for coroutine |
d0e2fce5 | 4490 | |
7c2acc70 | 4491 | # We prefer ucontext, but it's not always possible. The fallback |
33c53c54 DB |
4492 | # is sigcontext. On Windows the only valid backend is the Windows |
4493 | # specific one. | |
7c2acc70 PM |
4494 | |
4495 | ucontext_works=no | |
4496 | if test "$darwin" != "yes"; then | |
4497 | cat > $TMPC << EOF | |
d0e2fce5 | 4498 | #include <ucontext.h> |
cdf84806 PM |
4499 | #ifdef __stub_makecontext |
4500 | #error Ignoring glibc stub makecontext which will always fail | |
4501 | #endif | |
75cafad7 | 4502 | int main(void) { makecontext(0, 0, 0); return 0; } |
d0e2fce5 | 4503 | EOF |
7c2acc70 PM |
4504 | if compile_prog "" "" ; then |
4505 | ucontext_works=yes | |
4506 | fi | |
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 | |
d0e2fce5 | 4516 | fi |
519175a2 | 4517 | else |
7c2acc70 PM |
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 | ;; | |
33c53c54 | 4532 | sigaltstack) |
7c2acc70 PM |
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 | |
d0e2fce5 AK |
4541 | fi |
4542 | ||
70c60c08 | 4543 | if test "$coroutine_pool" = ""; then |
33c53c54 | 4544 | coroutine_pool=yes |
70c60c08 SH |
4545 | fi |
4546 | ||
7d992e4d | 4547 | if test "$debug_stack_usage" = "yes"; then |
7d992e4d PL |
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 | ||
1e4f6065 DB |
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 | |
7d992e4d | 4615 | |
d2042378 AK |
4616 | ########################################## |
4617 | # check if we have open_by_handle_at | |
4618 | ||
4e1797f9 | 4619 | open_by_handle_at=no |
d2042378 AK |
4620 | cat > $TMPC << EOF |
4621 | #include <fcntl.h> | |
acc55ba8 SW |
4622 | #if !defined(AT_EMPTY_PATH) |
4623 | # error missing definition | |
4624 | #else | |
75cafad7 | 4625 | int main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); } |
acc55ba8 | 4626 | #endif |
d2042378 AK |
4627 | EOF |
4628 | if compile_prog "" "" ; then | |
4629 | open_by_handle_at=yes | |
4630 | fi | |
4631 | ||
e06a765e HPB |
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) { | |
75cafad7 | 4639 | return 0; |
e06a765e HPB |
4640 | } |
4641 | EOF | |
4642 | if compile_prog "" "" ; then | |
4643 | linux_magic_h=yes | |
4644 | fi | |
4645 | ||
3f4349dc | 4646 | ######################################## |
541be927 | 4647 | # check if we have valgrind/valgrind.h |
3f4349dc KW |
4648 | |
4649 | valgrind_h=no | |
4650 | cat > $TMPC << EOF | |
4651 | #include <valgrind/valgrind.h> | |
3f4349dc | 4652 | int main(void) { |
3f4349dc KW |
4653 | return 0; |
4654 | } | |
4655 | EOF | |
4656 | if compile_prog "" "" ; then | |
4657 | valgrind_h=yes | |
4658 | fi | |
4659 | ||
8ab1bf12 LC |
4660 | ######################################## |
4661 | # check if environ is declared | |
4662 | ||
4663 | has_environ=no | |
4664 | cat > $TMPC << EOF | |
4665 | #include <unistd.h> | |
4666 | int main(void) { | |
c075a723 | 4667 | environ = 0; |
8ab1bf12 LC |
4668 | return 0; |
4669 | } | |
4670 | EOF | |
4671 | if compile_prog "" "" ; then | |
4672 | has_environ=yes | |
4673 | fi | |
4674 | ||
76a347e1 RH |
4675 | ######################################## |
4676 | # check if cpuid.h is usable. | |
4677 | ||
76a347e1 RH |
4678 | cat > $TMPC << EOF |
4679 | #include <cpuid.h> | |
4680 | int main(void) { | |
774d566c PM |
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; | |
76a347e1 RH |
4693 | } |
4694 | EOF | |
4695 | if compile_prog "" "" ; then | |
4696 | cpuid_h=yes | |
4697 | fi | |
4698 | ||
5dd89908 RH |
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 | ||
e633a5c6 | 4705 | if test "$cpuid_h" = "yes" && test "$avx2_opt" != "no"; then |
5dd89908 RH |
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" | |
86583a07 LM |
4719 | else |
4720 | avx2_opt="no" | |
5dd89908 RH |
4721 | fi |
4722 | fi | |
4723 | ||
6b8cd447 RH |
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 | ||
f540166b RH |
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; | |
464e3671 | 4764 | a = a * a; |
f540166b RH |
4765 | return 0; |
4766 | } | |
4767 | EOF | |
4768 | if compile_prog "" "" ; then | |
4769 | int128=yes | |
4770 | fi | |
76a347e1 | 4771 | |
7ebee43e RH |
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; | |
bceac547 TH |
4781 | y = __atomic_load(&x, 0); |
4782 | __atomic_store(&x, y, 0); | |
4783 | __atomic_compare_exchange(&x, &y, x, 0, 0, 0); | |
7ebee43e RH |
4784 | return 0; |
4785 | } | |
4786 | EOF | |
4787 | if compile_prog "" "" ; then | |
4788 | atomic128=yes | |
4789 | fi | |
4790 | fi | |
4791 | ||
e6cd4bb5 | 4792 | cmpxchg128=no |
e633a5c6 | 4793 | if test "$int128" = yes && test "$atomic128" = no; then |
e6cd4bb5 RH |
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 | ||
df79b996 RH |
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 | |
5fe40765 TH |
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); | |
df79b996 RH |
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 | ||
26fffe29 EC |
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 | ||
1e6e9aca RH |
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 | ||
fd0e6053 JS |
4905 | ######################################## |
4906 | # check if ccache is interfering with | |
4907 | # semantic analysis of macros | |
4908 | ||
5e4dfd3d | 4909 | unset CCACHE_CPP2 |
fd0e6053 JS |
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 | ||
b553a042 JS |
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"; | |
e189091f | 4939 | elif test -n "$cxx" && has $cxx && |
cfcc7c14 | 4940 | echo | $cxx -dM -E - | grep __clang__ >/dev/null 2>&1 ; then |
b553a042 JS |
4941 | fortify_source="no"; |
4942 | else | |
4943 | fortify_source="yes" | |
4944 | fi | |
4945 | fi | |
4946 | ||
1efad060 FZ |
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 | ||
277abf15 JV |
4961 | ########################################## |
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 | ||
a40161cb PB |
4976 | ########################################## |
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 | ||
b66e10e4 PM |
5007 | ########################################## |
5008 | # check if rtnetlink.h exists and is useful | |
575b22b1 LV |
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 | ||
6a02c806 SH |
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 | ||
f0d92b56 LM |
5047 | ########################################## |
5048 | # check for usable AF_ALG environment | |
4f67366e | 5049 | have_afalg=no |
f0d92b56 LM |
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 | ||
c97d6d2c | 5073 | ################################################# |
4d04351f CC |
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 | ||
49e00a18 AG |
5087 | ########################################## |
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 | ||
e674605f TG |
5101 | ########################################## |
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 | ||
db1ed1ab RH |
5116 | ########################################## |
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 | ||
247724cb MAL |
5130 | ########################################## |
5131 | # checks for sanitizers | |
5132 | ||
247724cb MAL |
5133 | have_asan=no |
5134 | have_ubsan=no | |
d83414e1 MAL |
5135 | have_asan_iface_h=no |
5136 | have_asan_iface_fiber=no | |
247724cb MAL |
5137 | |
5138 | if test "$sanitizers" = "yes" ; then | |
b9f44da2 | 5139 | write_c_skeleton |
247724cb MAL |
5140 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" ""; then |
5141 | have_asan=yes | |
5142 | fi | |
b9f44da2 MAL |
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); | |
f2dfe54c LB |
5151 | if (tmp != NULL) { |
5152 | return *(int *)(tmp + 2); | |
5153 | } | |
d1abf3fc | 5154 | return 1; |
b9f44da2 MAL |
5155 | } |
5156 | EOF | |
247724cb MAL |
5157 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=undefined" ""; then |
5158 | have_ubsan=yes | |
5159 | fi | |
d83414e1 MAL |
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 | |
247724cb MAL |
5175 | fi |
5176 | ||
adc28027 AB |
5177 | ########################################## |
5178 | # checks for fuzzer | |
54c9e41d | 5179 | if test "$fuzzing" = "yes" && test -z "${LIB_FUZZING_ENGINE+xxx}"; then |
adc28027 | 5180 | write_c_fuzzer_skeleton |
dd016265 | 5181 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=fuzzer" ""; then |
64ed6f92 PB |
5182 | have_fuzzer=yes |
5183 | else | |
5184 | error_exit "Your compiler doesn't support -fsanitize=fuzzer" | |
5185 | exit 1 | |
adc28027 AB |
5186 | fi |
5187 | fi | |
5188 | ||
0aebab04 LY |
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 | ||
17824406 JH |
5213 | ########################################## |
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) | |
17824406 JH |
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 | ||
21b2eca6 JL |
5229 | ########################################## |
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) | |
21b2eca6 JL |
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 | ||
675b9b53 MAL |
5245 | ########################################## |
5246 | # check for slirp | |
5247 | ||
5248 | case "$slirp" in | |
4d34a86b PB |
5249 | auto | enabled | internal) |
5250 | # Simpler to always update submodule, even if not needed. | |
2d652f24 | 5251 | git_submodules="${git_submodules} slirp" |
675b9b53 MAL |
5252 | ;; |
5253 | esac | |
5254 | ||
b8e0c493 JD |
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 | ||
54e7aac0 AK |
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 | |
b418d265 | 5289 | if test "$have_keyring" = "yes" |
54e7aac0 AK |
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 | ||
7e24e92a | 5303 | ########################################## |
e86ecd4b JQ |
5304 | # End of CC checks |
5305 | # After here, no more $cc or $ld runs | |
5306 | ||
d83414e1 MAL |
5307 | write_c_skeleton |
5308 | ||
1d728c39 | 5309 | if test "$gcov" = "yes" ; then |
bf0e56a3 | 5310 | : |
b553a042 | 5311 | elif test "$fortify_source" = "yes" ; then |
086d5f75 PB |
5312 | QEMU_CFLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $QEMU_CFLAGS" |
5313 | debug=no | |
5314 | fi | |
086d5f75 PB |
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 | |
a316e378 | 5327 | |
247724cb | 5328 | if test "$have_asan" = "yes"; then |
db5adeaa PB |
5329 | QEMU_CFLAGS="-fsanitize=address $QEMU_CFLAGS" |
5330 | QEMU_LDFLAGS="-fsanitize=address $QEMU_LDFLAGS" | |
d83414e1 MAL |
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 | |
247724cb | 5338 | fi |
0aebab04 LY |
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 | |
247724cb | 5349 | if test "$have_ubsan" = "yes"; then |
db5adeaa PB |
5350 | QEMU_CFLAGS="-fsanitize=undefined $QEMU_CFLAGS" |
5351 | QEMU_LDFLAGS="-fsanitize=undefined $QEMU_LDFLAGS" | |
247724cb MAL |
5352 | fi |
5353 | ||
3efac6eb | 5354 | ########################################## |
3efac6eb | 5355 | |
0aebab04 LY |
5356 | # Exclude --warn-common with TSan to suppress warnings from the TSan libraries. |
5357 | if test "$solaris" = "no" && test "$tsan" = "no"; then | |
e86ecd4b | 5358 | if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then |
db5adeaa | 5359 | QEMU_LDFLAGS="-Wl,--warn-common $QEMU_LDFLAGS" |
e86ecd4b JQ |
5360 | fi |
5361 | fi | |
5362 | ||
952afb71 BS |
5363 | # Use ASLR, no-SEH and DEP if available |
5364 | if test "$mingw32" = "yes" ; then | |
cb8baa77 MCA |
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 | |
e9a3591f | 5373 | if ld_has $flag ; then |
db5adeaa | 5374 | QEMU_LDFLAGS="-Wl,$flag $QEMU_LDFLAGS" |
952afb71 BS |
5375 | fi |
5376 | done | |
5377 | fi | |
5378 | ||
e0580342 KR |
5379 | # We can only support ivshmem if we have eventfd |
5380 | if [ "$eventfd" = "yes" ]; then | |
5381 | ivshmem=yes | |
5382 | fi | |
5383 | ||
9d6bc27b MR |
5384 | # Probe for guest agent support/options |
5385 | ||
e8ef31a3 | 5386 | if [ "$guest_agent" != "no" ]; then |
a5125905 LV |
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 | |
e8ef31a3 MT |
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" | |
ca35f780 | 5395 | fi |
00c705fb | 5396 | fi |
ca35f780 | 5397 | |
b846ab7c | 5398 | # Guest agent Windows MSI package |
9d6bc27b | 5399 | |
b846ab7c PB |
5400 | if test "$QEMU_GA_MANUFACTURER" = ""; then |
5401 | QEMU_GA_MANUFACTURER=QEMU | |
9d6bc27b | 5402 | fi |
b846ab7c PB |
5403 | if test "$QEMU_GA_DISTRO" = ""; then |
5404 | QEMU_GA_DISTRO=Linux | |
9d6bc27b | 5405 | fi |
b846ab7c PB |
5406 | if test "$QEMU_GA_VERSION" = ""; then |
5407 | QEMU_GA_VERSION=$(cat $source_path/VERSION) | |
5408 | fi | |
5409 | ||
5410 | QEMU_GA_MSI_MINGW_DLL_PATH="$($pkg_config --variable=prefix glib-2.0)/bin" | |
9d6bc27b | 5411 | |
ca35f780 PB |
5412 | # Mac OS X ships with a broken assembler |
5413 | roms= | |
e633a5c6 EB |
5414 | if { test "$cpu" = "i386" || test "$cpu" = "x86_64"; } && \ |
5415 | test "$targetos" != "Darwin" && test "$targetos" != "SunOS" && \ | |
7000a12e | 5416 | test "$targetos" != "Haiku" && test "$softmmu" = yes ; then |
e57218b6 | 5417 | # Different host OS linkers have different ideas about the name of the ELF |
c65d5e4e BS |
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 | |
e57218b6 PM |
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 | |
ca35f780 | 5427 | fi |
ca35f780 | 5428 | |
2e33c3f8 | 5429 | # Only build s390-ccw bios if we're on s390x and the compiler has -march=z900 |
a5b2afd5 | 5430 | # or -march=z10 (which is the lowest architecture level that Clang supports) |
9933c305 | 5431 | if test "$cpu" = "s390x" ; then |
2e33c3f8 | 5432 | write_c_skeleton |
a5b2afd5 TH |
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 | |
2e33c3f8 | 5440 | roms="$roms s390-ccw" |
1ef6bfc2 PMD |
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. | |
2d652f24 | 5443 | git_submodules="${git_submodules} roms/SLOF" |
2e33c3f8 | 5444 | fi |
9933c305 CB |
5445 | fi |
5446 | ||
11cde1c8 BD |
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 | ||
5770e8af | 5466 | if do_cxx $CXXFLAGS $CONFIGURE_CXXFLAGS $QEMU_CXXFLAGS -o $TMPE $TMPCXX $TMPO $QEMU_LDFLAGS; then |
11cde1c8 BD |
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 | ||
7d7dbf9d DS |
5479 | if !(GIT="$git" "$source_path/scripts/git-submodule.sh" "$git_submodules_action" "$git_submodules"); then |
5480 | exit 1 | |
5d91a2ed | 5481 | fi |
5d91a2ed | 5482 | |
98ec69ac | 5483 | config_host_mak="config-host.mak" |
98ec69ac | 5484 | |
98ec69ac | 5485 | echo "# Automatically generated by configure - do not modify" > $config_host_mak |
98ec69ac | 5486 | echo >> $config_host_mak |
98ec69ac | 5487 | |
e6c3b0f7 | 5488 | echo all: >> $config_host_mak |
cc84d63a | 5489 | echo "GIT=$git" >> $config_host_mak |
aef45d51 | 5490 | echo "GIT_SUBMODULES=$git_submodules" >> $config_host_mak |
7d7dbf9d | 5491 | echo "GIT_SUBMODULES_ACTION=$git_submodules_action" >> $config_host_mak |
804edf29 | 5492 | |
98ec69ac | 5493 | echo "ARCH=$ARCH" >> $config_host_mak |
727e5283 | 5494 | |
f8393946 | 5495 | if test "$debug_tcg" = "yes" ; then |
2358a494 | 5496 | echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak |
f8393946 | 5497 | fi |
1625af87 | 5498 | if test "$strip_opt" = "yes" ; then |
52ba784d | 5499 | echo "STRIP=${strip}" >> $config_host_mak |
1625af87 | 5500 | fi |
7d13299d | 5501 | if test "$bigendian" = "yes" ; then |
e2542fe2 | 5502 | echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak |
97a847bc | 5503 | fi |
67b915a5 | 5504 | if test "$mingw32" = "yes" ; then |
98ec69ac | 5505 | echo "CONFIG_WIN32=y" >> $config_host_mak |
d9840e25 TS |
5506 | if test "$guest_agent_with_vss" = "yes" ; then |
5507 | echo "CONFIG_QGA_VSS=y" >> $config_host_mak | |
f33ca81f | 5508 | echo "QGA_VSS_PROVIDER=$qga_vss_provider" >> $config_host_mak |
d9840e25 TS |
5509 | echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak |
5510 | fi | |
50cbebb9 | 5511 | if test "$guest_agent_ntddscsi" = "yes" ; then |
76dc75ca | 5512 | echo "CONFIG_QGA_NTDDSCSI=y" >> $config_host_mak |
50cbebb9 | 5513 | fi |
b846ab7c PB |
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 | |
210fa556 | 5518 | else |
35f4df27 | 5519 | echo "CONFIG_POSIX=y" >> $config_host_mak |
dffcb71c MM |
5520 | fi |
5521 | ||
5522 | if test "$linux" = "yes" ; then | |
5523 | echo "CONFIG_LINUX=y" >> $config_host_mak | |
67b915a5 | 5524 | fi |
128ab2ff | 5525 | |
83fb7adf | 5526 | if test "$darwin" = "yes" ; then |
98ec69ac | 5527 | echo "CONFIG_DARWIN=y" >> $config_host_mak |
83fb7adf | 5528 | fi |
b29fe3ed | 5529 | |
ec530c81 | 5530 | if test "$solaris" = "yes" ; then |
98ec69ac | 5531 | echo "CONFIG_SOLARIS=y" >> $config_host_mak |
ec530c81 | 5532 | fi |
179cf400 AF |
5533 | if test "$haiku" = "yes" ; then |
5534 | echo "CONFIG_HAIKU=y" >> $config_host_mak | |
5535 | fi | |
97a847bc | 5536 | if test "$static" = "yes" ; then |
98ec69ac | 5537 | echo "CONFIG_STATIC=y" >> $config_host_mak |
7d13299d | 5538 | fi |
1ba16968 | 5539 | if test "$profiler" = "yes" ; then |
2358a494 | 5540 | echo "CONFIG_PROFILER=y" >> $config_host_mak |
05c2a3e7 | 5541 | fi |
c932ce31 PB |
5542 | if test "$want_tools" = "yes" ; then |
5543 | echo "CONFIG_TOOLS=y" >> $config_host_mak | |
5544 | fi | |
f15bff25 PB |
5545 | if test "$guest_agent" = "yes" ; then |
5546 | echo "CONFIG_GUEST_AGENT=y" >> $config_host_mak | |
5547 | fi | |
b8e0c493 JD |
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 | |
8a16d273 | 5552 | if test "$vde" = "yes" ; then |
98ec69ac | 5553 | echo "CONFIG_VDE=y" >> $config_host_mak |
e2ad6f16 | 5554 | echo "VDE_LIBS=$vde_libs" >> $config_host_mak |
8a16d273 | 5555 | fi |
58952137 VM |
5556 | if test "$netmap" = "yes" ; then |
5557 | echo "CONFIG_NETMAP=y" >> $config_host_mak | |
5558 | fi | |
015a33bd GA |
5559 | if test "$l2tpv3" = "yes" ; then |
5560 | echo "CONFIG_L2TPV3=y" >> $config_host_mak | |
5561 | fi | |
4cc600d2 PB |
5562 | if test "$gprof" = "yes" ; then |
5563 | echo "CONFIG_GPROF=y" >> $config_host_mak | |
5564 | fi | |
2358a494 | 5565 | echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak |
0c58ac1c | 5566 | for drv in $audio_drv_list; do |
1ef1ec2a | 5567 | def=CONFIG_AUDIO_$(echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]') |
484e2cc7 | 5568 | echo "$def=y" >> $config_host_mak |
0c58ac1c | 5569 | done |
478e943f PB |
5570 | if test "$alsa" = "yes" ; then |
5571 | echo "CONFIG_ALSA=y" >> $config_host_mak | |
5572 | fi | |
b1149911 | 5573 | echo "ALSA_LIBS=$alsa_libs" >> $config_host_mak |
478e943f PB |
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 | |
b1149911 | 5578 | echo "PULSE_LIBS=$pulse_libs" >> $config_host_mak |
478e943f | 5579 | echo "PULSE_CFLAGS=$pulse_cflags" >> $config_host_mak |
b1149911 FZ |
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 | |
478e943f PB |
5583 | if test "$libjack" = "yes" ; then |
5584 | echo "CONFIG_LIBJACK=y" >> $config_host_mak | |
5585 | fi | |
2e445703 | 5586 | echo "JACK_LIBS=$jack_libs" >> $config_host_mak |
d5631638 | 5587 | if test "$audio_win_int" = "yes" ; then |
5588 | echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak | |
5589 | fi | |
b64ec4e4 FZ |
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 | |
dce512de CH |
5592 | if test "$xfs" = "yes" ; then |
5593 | echo "CONFIG_XFS=y" >> $config_host_mak | |
5594 | fi | |
89138857 | 5595 | qemu_version=$(head $source_path/VERSION) |
2358a494 | 5596 | echo "PKGVERSION=$pkgversion" >>$config_host_mak |
98ec69ac | 5597 | echo "SRC_PATH=$source_path" >> $config_host_mak |
2b1f35b9 | 5598 | echo "TARGET_DIRS=$target_list" >> $config_host_mak |
17969268 | 5599 | if test "$modules" = "yes"; then |
e26110cf FZ |
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 | |
89138857 | 5602 | echo "CONFIG_STAMP=_$( (echo $qemu_version; echo $pkgversion; cat $0) | $shacmd - | cut -f1 -d\ )" >> $config_host_mak |
17969268 FZ |
5603 | echo "CONFIG_MODULES=y" >> $config_host_mak |
5604 | fi | |
bd83c861 CE |
5605 | if test "$module_upgrades" = "yes"; then |
5606 | echo "CONFIG_MODULE_UPGRADES=y" >> $config_host_mak | |
5607 | fi | |
099d6b0f | 5608 | if test "$pipe2" = "yes" ; then |
2358a494 | 5609 | echo "CONFIG_PIPE2=y" >> $config_host_mak |
099d6b0f | 5610 | fi |
40ff6d7e KW |
5611 | if test "$accept4" = "yes" ; then |
5612 | echo "CONFIG_ACCEPT4=y" >> $config_host_mak | |
5613 | fi | |
3ce34dfb | 5614 | if test "$splice" = "yes" ; then |
2358a494 | 5615 | echo "CONFIG_SPLICE=y" >> $config_host_mak |
3ce34dfb | 5616 | fi |
c2882b96 RV |
5617 | if test "$eventfd" = "yes" ; then |
5618 | echo "CONFIG_EVENTFD=y" >> $config_host_mak | |
5619 | fi | |
751bcc39 MAL |
5620 | if test "$memfd" = "yes" ; then |
5621 | echo "CONFIG_MEMFD=y" >> $config_host_mak | |
5622 | fi | |
955727d2 CT |
5623 | if test "$have_usbfs" = "yes" ; then |
5624 | echo "CONFIG_USBFS=y" >> $config_host_mak | |
5625 | fi | |
d0927938 UH |
5626 | if test "$fallocate" = "yes" ; then |
5627 | echo "CONFIG_FALLOCATE=y" >> $config_host_mak | |
5628 | fi | |
3d4fa43e KK |
5629 | if test "$fallocate_punch_hole" = "yes" ; then |
5630 | echo "CONFIG_FALLOCATE_PUNCH_HOLE=y" >> $config_host_mak | |
5631 | fi | |
b953f075 DL |
5632 | if test "$fallocate_zero_range" = "yes" ; then |
5633 | echo "CONFIG_FALLOCATE_ZERO_RANGE=y" >> $config_host_mak | |
5634 | fi | |
ed911435 KW |
5635 | if test "$posix_fallocate" = "yes" ; then |
5636 | echo "CONFIG_POSIX_FALLOCATE=y" >> $config_host_mak | |
5637 | fi | |
c727f47d PM |
5638 | if test "$sync_file_range" = "yes" ; then |
5639 | echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak | |
5640 | fi | |
dace20dc PM |
5641 | if test "$fiemap" = "yes" ; then |
5642 | echo "CONFIG_FIEMAP=y" >> $config_host_mak | |
5643 | fi | |
d0927938 UH |
5644 | if test "$dup3" = "yes" ; then |
5645 | echo "CONFIG_DUP3=y" >> $config_host_mak | |
5646 | fi | |
4e0c6529 AB |
5647 | if test "$ppoll" = "yes" ; then |
5648 | echo "CONFIG_PPOLL=y" >> $config_host_mak | |
5649 | fi | |
cd758dd0 AB |
5650 | if test "$prctl_pr_set_timerslack" = "yes" ; then |
5651 | echo "CONFIG_PRCTL_PR_SET_TIMERSLACK=y" >> $config_host_mak | |
5652 | fi | |
3b6edd16 PM |
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 | |
a8fd1aba PM |
5659 | if test "$sendfile" = "yes" ; then |
5660 | echo "CONFIG_SENDFILE=y" >> $config_host_mak | |
5661 | fi | |
51834341 RV |
5662 | if test "$timerfd" = "yes" ; then |
5663 | echo "CONFIG_TIMERFD=y" >> $config_host_mak | |
5664 | fi | |
9af5c906 RV |
5665 | if test "$setns" = "yes" ; then |
5666 | echo "CONFIG_SETNS=y" >> $config_host_mak | |
5667 | fi | |
38860a03 AM |
5668 | if test "$clock_adjtime" = "yes" ; then |
5669 | echo "CONFIG_CLOCK_ADJTIME=y" >> $config_host_mak | |
5670 | fi | |
5a03cd00 AM |
5671 | if test "$syncfs" = "yes" ; then |
5672 | echo "CONFIG_SYNCFS=y" >> $config_host_mak | |
5673 | fi | |
3b3f24ad | 5674 | if test "$inotify" = "yes" ; then |
2358a494 | 5675 | echo "CONFIG_INOTIFY=y" >> $config_host_mak |
3b3f24ad | 5676 | fi |
c05c7a73 RV |
5677 | if test "$inotify1" = "yes" ; then |
5678 | echo "CONFIG_INOTIFY1=y" >> $config_host_mak | |
5679 | fi | |
401bc051 PM |
5680 | if test "$sem_timedwait" = "yes" ; then |
5681 | echo "CONFIG_SEM_TIMEDWAIT=y" >> $config_host_mak | |
5682 | fi | |
5c99fa37 KF |
5683 | if test "$strchrnul" = "yes" ; then |
5684 | echo "HAVE_STRCHRNUL=y" >> $config_host_mak | |
5685 | fi | |
8a792b03 JX |
5686 | if test "$st_atim" = "yes" ; then |
5687 | echo "HAVE_STRUCT_STAT_ST_ATIM=y" >> $config_host_mak | |
5688 | fi | |
6ae9a1f4 JQ |
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 | |
f876b765 MAL |
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 | |
5ecfb76c PB |
5699 | fi |
5700 | if test "$gdbus_codegen" != "" ; then | |
25a97a56 | 5701 | echo "GDBUS_CODEGEN=$gdbus_codegen" >> $config_host_mak |
f876b765 | 5702 | fi |
a1c5e949 | 5703 | echo "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak |
ddbb0d09 DB |
5704 | if test "$gnutls" = "yes" ; then |
5705 | echo "CONFIG_GNUTLS=y" >> $config_host_mak | |
a81df1b6 PB |
5706 | echo "GNUTLS_CFLAGS=$gnutls_cflags" >> $config_host_mak |
5707 | echo "GNUTLS_LIBS=$gnutls_libs" >> $config_host_mak | |
ddbb0d09 | 5708 | fi |
91bfcdb0 DB |
5709 | if test "$gcrypt" = "yes" ; then |
5710 | echo "CONFIG_GCRYPT=y" >> $config_host_mak | |
46859d93 DB |
5711 | echo "GCRYPT_CFLAGS=$gcrypt_cflags" >> $config_host_mak |
5712 | echo "GCRYPT_LIBS=$gcrypt_libs" >> $config_host_mak | |
62893b67 | 5713 | fi |
91bfcdb0 DB |
5714 | if test "$nettle" = "yes" ; then |
5715 | echo "CONFIG_NETTLE=y" >> $config_host_mak | |
a81df1b6 PB |
5716 | echo "NETTLE_CFLAGS=$nettle_cflags" >> $config_host_mak |
5717 | echo "NETTLE_LIBS=$nettle_libs" >> $config_host_mak | |
ed754746 | 5718 | fi |
e0576942 DB |
5719 | if test "$qemu_private_xts" = "yes" ; then |
5720 | echo "CONFIG_QEMU_PRIVATE_XTS=y" >> $config_host_mak | |
5721 | fi | |
9a2fd434 DB |
5722 | if test "$tasn1" = "yes" ; then |
5723 | echo "CONFIG_TASN1=y" >> $config_host_mak | |
5724 | fi | |
8953caf3 DB |
5725 | if test "$auth_pam" = "yes" ; then |
5726 | echo "CONFIG_AUTH_PAM=y" >> $config_host_mak | |
5727 | fi | |
6b39b063 EB |
5728 | if test "$have_broken_size_max" = "yes" ; then |
5729 | echo "HAVE_BROKEN_SIZE_MAX=y" >> $config_host_mak | |
5730 | fi | |
9df8b20d TH |
5731 | if test "$have_openpty" = "yes" ; then |
5732 | echo "HAVE_OPENPTY=y" >> $config_host_mak | |
5733 | fi | |
277abf15 JV |
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 | |
1efad060 FZ |
5742 | if test "$have_copy_file_range" = "yes" ; then |
5743 | echo "HAVE_COPY_FILE_RANGE=y" >> $config_host_mak | |
5744 | fi | |
bbbf9bfb SW |
5745 | if test "$vte" = "yes" ; then |
5746 | echo "CONFIG_VTE=y" >> $config_host_mak | |
a4ccabcf | 5747 | echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak |
e0fb129c | 5748 | echo "VTE_LIBS=$vte_libs" >> $config_host_mak |
a4ccabcf | 5749 | fi |
9d9e1521 GH |
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 | |
1badb709 | 5755 | if test "$xen" = "enabled" ; then |
6dbd588a | 5756 | echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak |
d5b93ddf | 5757 | echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak |
582ea95f MAL |
5758 | echo "XEN_CFLAGS=$xen_cflags" >> $config_host_mak |
5759 | echo "XEN_LIBS=$xen_libs" >> $config_host_mak | |
e37630ca | 5760 | fi |
5c6c3a6c CH |
5761 | if test "$linux_aio" = "yes" ; then |
5762 | echo "CONFIG_LINUX_AIO=y" >> $config_host_mak | |
5763 | fi | |
c10dd856 AM |
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 | |
5e9be92d NB |
5769 | if test "$vhost_scsi" = "yes" ; then |
5770 | echo "CONFIG_VHOST_SCSI=y" >> $config_host_mak | |
5771 | fi | |
af3bba76 PB |
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 | |
56f41de7 | 5776 | echo "CONFIG_VHOST_NET_USER=y" >> $config_host_mak |
03ce5744 | 5777 | fi |
108a6481 CL |
5778 | if test "$vhost_net_vdpa" = "yes" ; then |
5779 | echo "CONFIG_VHOST_NET_VDPA=y" >> $config_host_mak | |
5780 | fi | |
042cea27 GA |
5781 | if test "$vhost_crypto" = "yes" ; then |
5782 | echo "CONFIG_VHOST_CRYPTO=y" >> $config_host_mak | |
5783 | fi | |
fc0b9b0e SH |
5784 | if test "$vhost_vsock" = "yes" ; then |
5785 | echo "CONFIG_VHOST_VSOCK=y" >> $config_host_mak | |
5fe97d88 SG |
5786 | if test "$vhost_user" = "yes" ; then |
5787 | echo "CONFIG_VHOST_USER_VSOCK=y" >> $config_host_mak | |
5788 | fi | |
fc0b9b0e | 5789 | fi |
299e6f19 PB |
5790 | if test "$vhost_kernel" = "yes" ; then |
5791 | echo "CONFIG_VHOST_KERNEL=y" >> $config_host_mak | |
5792 | fi | |
e6a74868 MAL |
5793 | if test "$vhost_user" = "yes" ; then |
5794 | echo "CONFIG_VHOST_USER=y" >> $config_host_mak | |
5795 | fi | |
108a6481 CL |
5796 | if test "$vhost_vdpa" = "yes" ; then |
5797 | echo "CONFIG_VHOST_VDPA=y" >> $config_host_mak | |
5798 | fi | |
98fc1ada DDAG |
5799 | if test "$vhost_user_fs" = "yes" ; then |
5800 | echo "CONFIG_VHOST_USER_FS=y" >> $config_host_mak | |
5801 | fi | |
bf9298b9 | 5802 | if test "$iovec" = "yes" ; then |
2358a494 | 5803 | echo "CONFIG_IOVEC=y" >> $config_host_mak |
bf9298b9 | 5804 | fi |
a40161cb PB |
5805 | if test "$membarrier" = "yes" ; then |
5806 | echo "CONFIG_MEMBARRIER=y" >> $config_host_mak | |
5807 | fi | |
dcc38d1c MT |
5808 | if test "$signalfd" = "yes" ; then |
5809 | echo "CONFIG_SIGNALFD=y" >> $config_host_mak | |
5810 | fi | |
d339d766 RJ |
5811 | if test "$optreset" = "yes" ; then |
5812 | echo "HAVE_OPTRESET=y" >> $config_host_mak | |
5813 | fi | |
5f6b9e8f BS |
5814 | if test "$fdatasync" = "yes" ; then |
5815 | echo "CONFIG_FDATASYNC=y" >> $config_host_mak | |
5816 | fi | |
e78815a5 AF |
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 | |
9bc5a719 AG |
5823 | if test "$posix_memalign" = "yes" ; then |
5824 | echo "CONFIG_POSIX_MEMALIGN=y" >> $config_host_mak | |
5825 | fi | |
58d3f3ff GH |
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 | |
cd4ec0b4 GH |
5831 | if test "$spice" = "yes" ; then |
5832 | echo "CONFIG_SPICE=y" >> $config_host_mak | |
58d3f3ff | 5833 | echo "SPICE_CFLAGS=$spice_cflags $spice_protocol_cflags" >> $config_host_mak |
2634733c | 5834 | echo "SPICE_LIBS=$spice_libs" >> $config_host_mak |
cd4ec0b4 | 5835 | fi |
36707144 | 5836 | |
7b02f544 MAL |
5837 | if test "$smartcard" = "yes" ; then |
5838 | echo "CONFIG_SMARTCARD=y" >> $config_host_mak | |
7b62bf5a FZ |
5839 | echo "SMARTCARD_CFLAGS=$libcacard_cflags" >> $config_host_mak |
5840 | echo "SMARTCARD_LIBS=$libcacard_libs" >> $config_host_mak | |
111a38b0 RR |
5841 | fi |
5842 | ||
2b2325ff GH |
5843 | if test "$libusb" = "yes" ; then |
5844 | echo "CONFIG_USB_LIBUSB=y" >> $config_host_mak | |
b878b652 FZ |
5845 | echo "LIBUSB_CFLAGS=$libusb_cflags" >> $config_host_mak |
5846 | echo "LIBUSB_LIBS=$libusb_libs" >> $config_host_mak | |
2b2325ff GH |
5847 | fi |
5848 | ||
69354a83 HG |
5849 | if test "$usb_redir" = "yes" ; then |
5850 | echo "CONFIG_USB_REDIR=y" >> $config_host_mak | |
cc7923fc FZ |
5851 | echo "USB_REDIR_CFLAGS=$usb_redir_cflags" >> $config_host_mak |
5852 | echo "USB_REDIR_LIBS=$usb_redir_libs" >> $config_host_mak | |
69354a83 HG |
5853 | fi |
5854 | ||
da076ffe GH |
5855 | if test "$opengl" = "yes" ; then |
5856 | echo "CONFIG_OPENGL=y" >> $config_host_mak | |
de2d3005 | 5857 | echo "OPENGL_CFLAGS=$opengl_cflags" >> $config_host_mak |
da076ffe | 5858 | echo "OPENGL_LIBS=$opengl_libs" >> $config_host_mak |
20ff075b MW |
5859 | fi |
5860 | ||
d52c454a MAL |
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 | ||
99f2dbd3 LL |
5868 | if test "$avx2_opt" = "yes" ; then |
5869 | echo "CONFIG_AVX2_OPT=y" >> $config_host_mak | |
5870 | fi | |
5871 | ||
6b8cd447 RH |
5872 | if test "$avx512f_opt" = "yes" ; then |
5873 | echo "CONFIG_AVX512F_OPT=y" >> $config_host_mak | |
5874 | fi | |
5875 | ||
83fb7adf | 5876 | # XXX: suppress that |
7d3505c5 | 5877 | if [ "$bsd" = "yes" ] ; then |
2358a494 | 5878 | echo "CONFIG_BSD=y" >> $config_host_mak |
7d3505c5 FB |
5879 | fi |
5880 | ||
3556c233 PB |
5881 | if test "$qom_cast_debug" = "yes" ; then |
5882 | echo "CONFIG_QOM_CAST_DEBUG=y" >> $config_host_mak | |
5883 | fi | |
d0e2fce5 | 5884 | |
7c2acc70 | 5885 | echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak |
70c60c08 SH |
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 | |
20ff6c80 | 5891 | |
7d992e4d PL |
5892 | if test "$debug_stack_usage" = "yes" ; then |
5893 | echo "CONFIG_DEBUG_STACK_USAGE=y" >> $config_host_mak | |
5894 | fi | |
5895 | ||
f0d92b56 LM |
5896 | if test "$crypto_afalg" = "yes" ; then |
5897 | echo "CONFIG_AF_ALG=y" >> $config_host_mak | |
5898 | fi | |
5899 | ||
d2042378 AK |
5900 | if test "$open_by_handle_at" = "yes" ; then |
5901 | echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak | |
5902 | fi | |
5903 | ||
e06a765e HPB |
5904 | if test "$linux_magic_h" = "yes" ; then |
5905 | echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak | |
8ab1bf12 LC |
5906 | fi |
5907 | ||
3f4349dc KW |
5908 | if test "$valgrind_h" = "yes" ; then |
5909 | echo "CONFIG_VALGRIND_H=y" >> $config_host_mak | |
5910 | fi | |
5911 | ||
d83414e1 MAL |
5912 | if test "$have_asan_iface_fiber" = "yes" ; then |
5913 | echo "CONFIG_ASAN_IFACE_FIBER=y" >> $config_host_mak | |
5914 | fi | |
5915 | ||
0aebab04 LY |
5916 | if test "$have_tsan" = "yes" && test "$have_tsan_iface_fiber" = "yes" ; then |
5917 | echo "CONFIG_TSAN=y" >> $config_host_mak | |
5918 | fi | |
5919 | ||
8ab1bf12 LC |
5920 | if test "$has_environ" = "yes" ; then |
5921 | echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak | |
e06a765e HPB |
5922 | fi |
5923 | ||
76a347e1 RH |
5924 | if test "$cpuid_h" = "yes" ; then |
5925 | echo "CONFIG_CPUID_H=y" >> $config_host_mak | |
5926 | fi | |
5927 | ||
f540166b RH |
5928 | if test "$int128" = "yes" ; then |
5929 | echo "CONFIG_INT128=y" >> $config_host_mak | |
5930 | fi | |
5931 | ||
7ebee43e RH |
5932 | if test "$atomic128" = "yes" ; then |
5933 | echo "CONFIG_ATOMIC128=y" >> $config_host_mak | |
5934 | fi | |
5935 | ||
e6cd4bb5 RH |
5936 | if test "$cmpxchg128" = "yes" ; then |
5937 | echo "CONFIG_CMPXCHG128=y" >> $config_host_mak | |
5938 | fi | |
5939 | ||
df79b996 RH |
5940 | if test "$atomic64" = "yes" ; then |
5941 | echo "CONFIG_ATOMIC64=y" >> $config_host_mak | |
5942 | fi | |
5943 | ||
1e6e9aca RH |
5944 | if test "$getauxval" = "yes" ; then |
5945 | echo "CONFIG_GETAUXVAL=y" >> $config_host_mak | |
5946 | fi | |
5947 | ||
b10d49d7 | 5948 | if test "$libssh" = "yes" ; then |
484e2cc7 | 5949 | echo "CONFIG_LIBSSH=y" >> $config_host_mak |
b10d49d7 PT |
5950 | echo "LIBSSH_CFLAGS=$libssh_cflags" >> $config_host_mak |
5951 | echo "LIBSSH_LIBS=$libssh_libs" >> $config_host_mak | |
0a12ec87 RJ |
5952 | fi |
5953 | ||
ed1701c6 DDAG |
5954 | if test "$live_block_migration" = "yes" ; then |
5955 | echo "CONFIG_LIVE_BLOCK_MIGRATION=y" >> $config_host_mak | |
5956 | fi | |
5957 | ||
3b8acc11 | 5958 | if test "$tpm" = "yes"; then |
3cae16db | 5959 | echo 'CONFIG_TPM=y' >> $config_host_mak |
3b8acc11 PB |
5960 | fi |
5961 | ||
5b808275 LV |
5962 | echo "TRACE_BACKENDS=$trace_backends" >> $config_host_mak |
5963 | if have_backend "nop"; then | |
6d8a764e | 5964 | echo "CONFIG_TRACE_NOP=y" >> $config_host_mak |
22890ab5 | 5965 | fi |
5b808275 | 5966 | if have_backend "simple"; then |
6d8a764e LV |
5967 | echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak |
5968 | # Set the appropriate trace file. | |
953ffe0f | 5969 | trace_file="\"$trace_file-\" FMT_pid" |
9410b56c | 5970 | fi |
ed7f5f1d PB |
5971 | if have_backend "log"; then |
5972 | echo "CONFIG_TRACE_LOG=y" >> $config_host_mak | |
6d8a764e | 5973 | fi |
5b808275 | 5974 | if have_backend "ust"; then |
6d8a764e | 5975 | echo "CONFIG_TRACE_UST=y" >> $config_host_mak |
a81df1b6 PB |
5976 | echo "LTTNG_UST_LIBS=$lttng_ust_libs" >> $config_host_mak |
5977 | echo "URCU_BP_LIBS=$urcu_bp_libs" >> $config_host_mak | |
6d8a764e | 5978 | fi |
5b808275 | 5979 | if have_backend "dtrace"; then |
6d8a764e LV |
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 | |
c276b17d | 5984 | fi |
5b808275 | 5985 | if have_backend "ftrace"; then |
781e9545 ET |
5986 | if test "$linux" = "yes" ; then |
5987 | echo "CONFIG_TRACE_FTRACE=y" >> $config_host_mak | |
781e9545 | 5988 | else |
21684af0 | 5989 | feature_not_found "ftrace(trace backend)" "ftrace requires Linux" |
781e9545 ET |
5990 | fi |
5991 | fi | |
0a852417 PD |
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 | |
9410b56c PS |
5999 | echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak |
6000 | ||
2da776db MH |
6001 | if test "$rdma" = "yes" ; then |
6002 | echo "CONFIG_RDMA=y" >> $config_host_mak | |
392fb643 | 6003 | echo "RDMA_LIBS=$rdma_libs" >> $config_host_mak |
2da776db MH |
6004 | fi |
6005 | ||
21ab34c9 MA |
6006 | if test "$pvrdma" = "yes" ; then |
6007 | echo "CONFIG_PVRDMA=y" >> $config_host_mak | |
6008 | fi | |
6009 | ||
575b22b1 LV |
6010 | if test "$have_rtnetlink" = "yes" ; then |
6011 | echo "CONFIG_RTNETLINK=y" >> $config_host_mak | |
6012 | fi | |
6013 | ||
ed279a06 KK |
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 | ||
a6b1d4c0 CX |
6020 | if test "$replication" = "yes" ; then |
6021 | echo "CONFIG_REPLICATION=y" >> $config_host_mak | |
6022 | fi | |
6023 | ||
6a02c806 SH |
6024 | if test "$have_af_vsock" = "yes" ; then |
6025 | echo "CONFIG_AF_VSOCK=y" >> $config_host_mak | |
6026 | fi | |
6027 | ||
4d04351f CC |
6028 | if test "$have_sysmacros" = "yes" ; then |
6029 | echo "CONFIG_SYSMACROS=y" >> $config_host_mak | |
6030 | fi | |
6031 | ||
49e00a18 AG |
6032 | if test "$have_static_assert" = "yes" ; then |
6033 | echo "CONFIG_STATIC_ASSERT=y" >> $config_host_mak | |
6034 | fi | |
6035 | ||
e674605f TG |
6036 | if test "$have_utmpx" = "yes" ; then |
6037 | echo "HAVE_UTMPX=y" >> $config_host_mak | |
6038 | fi | |
db1ed1ab RH |
6039 | if test "$have_getrandom" = "yes" ; then |
6040 | echo "CONFIG_GETRANDOM=y" >> $config_host_mak | |
6041 | fi | |
e0580342 KR |
6042 | if test "$ivshmem" = "yes" ; then |
6043 | echo "CONFIG_IVSHMEM=y" >> $config_host_mak | |
8ca80760 | 6044 | fi |
ba59fb77 PB |
6045 | if test "$debug_mutex" = "yes" ; then |
6046 | echo "CONFIG_DEBUG_MUTEX=y" >> $config_host_mak | |
6047 | fi | |
e0580342 | 6048 | |
5c312079 DDAG |
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 | |
479a5747 | 6052 | # CONFIG_PTHREAD_SETNAME_NP_W_TID - A way of doing it on a particular |
5c312079 | 6053 | # platform |
479a5747 RB |
6054 | if test "$pthread_setname_np_w_tid" = "yes" ; then |
6055 | echo "CONFIG_THREAD_SETNAME_BYTHREAD=y" >> $config_host_mak | |
6056 | echo "CONFIG_PTHREAD_SETNAME_NP_W_TID=y" >> $config_host_mak | |
6057 | elif test "$pthread_setname_np_wo_tid" = "yes" ; then | |
5c312079 | 6058 | echo "CONFIG_THREAD_SETNAME_BYTHREAD=y" >> $config_host_mak |
479a5747 | 6059 | echo "CONFIG_PTHREAD_SETNAME_NP_WO_TID=y" >> $config_host_mak |
5c312079 DDAG |
6060 | fi |
6061 | ||
17824406 JH |
6062 | if test "$libpmem" = "yes" ; then |
6063 | echo "CONFIG_LIBPMEM=y" >> $config_host_mak | |
c9322ab5 MAL |
6064 | echo "LIBPMEM_LIBS=$libpmem_libs" >> $config_host_mak |
6065 | echo "LIBPMEM_CFLAGS=$libpmem_cflags" >> $config_host_mak | |
17824406 JH |
6066 | fi |
6067 | ||
21b2eca6 JL |
6068 | if test "$libdaxctl" = "yes" ; then |
6069 | echo "CONFIG_LIBDAXCTL=y" >> $config_host_mak | |
c7c91a74 | 6070 | echo "LIBDAXCTL_LIBS=$libdaxctl_libs" >> $config_host_mak |
21b2eca6 JL |
6071 | fi |
6072 | ||
2f740136 JC |
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 | |
195588cc DC |
6097 | if test "$have_mlockall" = "yes" ; then |
6098 | echo "HAVE_MLOCKALL=y" >> $config_host_mak | |
6099 | fi | |
adc28027 | 6100 | if test "$fuzzing" = "yes" ; then |
54c9e41d AB |
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 | |
efce01bc AB |
6104 | # Add CFLAGS to tell clang to add fuzzer-related instrumentation to all the |
6105 | # compiled code. | |
54c9e41d | 6106 | QEMU_CFLAGS="$QEMU_CFLAGS -fsanitize=fuzzer-no-link" |
efce01bc AB |
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 | |
54c9e41d AB |
6115 | FUZZ_EXE_LDFLAGS="-fsanitize=fuzzer" |
6116 | else | |
6117 | FUZZ_EXE_LDFLAGS="$LIB_FUZZING_ENGINE" | |
6118 | fi | |
adc28027 | 6119 | fi |
2f740136 | 6120 | |
40e8c6f4 AB |
6121 | if test "$plugins" = "yes" ; then |
6122 | echo "CONFIG_PLUGIN=y" >> $config_host_mak | |
26fffe29 EC |
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 | |
40e8c6f4 AB |
6139 | fi |
6140 | ||
b1863ccc AB |
6141 | if test -n "$gdb_bin"; then |
6142 | gdb_version=$($gdb_bin --version | head -n 1) | |
d6a66c81 | 6143 | if version_ge ${gdb_version##* } 9.1; then |
b1863ccc AB |
6144 | echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak |
6145 | fi | |
f48e590a AB |
6146 | fi |
6147 | ||
54e7aac0 AK |
6148 | if test "$secret_keyring" = "yes" ; then |
6149 | echo "CONFIG_SECRET_KEYRING=y" >> $config_host_mak | |
6150 | fi | |
6151 | ||
98ec69ac | 6152 | echo "ROMS=$roms" >> $config_host_mak |
804edf29 | 6153 | echo "MAKE=$make" >> $config_host_mak |
c886edfb | 6154 | echo "PYTHON=$python" >> $config_host_mak |
39d87c8c | 6155 | echo "GENISOIMAGE=$genisoimage" >> $config_host_mak |
a5665051 | 6156 | echo "MESON=$meson" >> $config_host_mak |
09e93326 | 6157 | echo "NINJA=$ninja" >> $config_host_mak |
804edf29 | 6158 | echo "CC=$cc" >> $config_host_mak |
433de74c | 6159 | echo "HOST_CC=$host_cc" >> $config_host_mak |
a31a8642 | 6160 | if $iasl -h > /dev/null 2>&1; then |
859aef02 | 6161 | echo "CONFIG_IASL=$iasl" >> $config_host_mak |
a31a8642 | 6162 | fi |
83f73fce | 6163 | echo "CXX=$cxx" >> $config_host_mak |
3c4a4d0d | 6164 | echo "OBJCC=$objcc" >> $config_host_mak |
804edf29 | 6165 | echo "AR=$ar" >> $config_host_mak |
45d285ab | 6166 | echo "ARFLAGS=$ARFLAGS" >> $config_host_mak |
cdbd727c | 6167 | echo "AS=$as" >> $config_host_mak |
5f6f0e27 | 6168 | echo "CCAS=$ccas" >> $config_host_mak |
3dd46c78 | 6169 | echo "CPP=$cpp" >> $config_host_mak |
804edf29 JQ |
6170 | echo "OBJCOPY=$objcopy" >> $config_host_mak |
6171 | echo "LD=$ld" >> $config_host_mak | |
9f81aeb5 | 6172 | echo "RANLIB=$ranlib" >> $config_host_mak |
4852ee95 | 6173 | echo "NM=$nm" >> $config_host_mak |
daa79d9a | 6174 | echo "PKG_CONFIG=$pkg_config_exe" >> $config_host_mak |
9fe6de94 | 6175 | echo "WINDRES=$windres" >> $config_host_mak |
46eef33b | 6176 | echo "CFLAGS_NOPIE=$CFLAGS_NOPIE" >> $config_host_mak |
a558ee17 | 6177 | echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak |
11cde1c8 | 6178 | echo "QEMU_CXXFLAGS=$QEMU_CXXFLAGS" >> $config_host_mak |
a81df1b6 PB |
6179 | echo "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak |
6180 | echo "GLIB_LIBS=$glib_libs" >> $config_host_mak | |
8a99e9a3 | 6181 | echo "QEMU_LDFLAGS=$QEMU_LDFLAGS" >> $config_host_mak |
e57218b6 | 6182 | echo "LD_I386_EMULATION=$ld_i386_emulation" >> $config_host_mak |
804edf29 | 6183 | echo "EXESUF=$EXESUF" >> $config_host_mak |
484e2cc7 | 6184 | echo "HOST_DSOSUF=$HOST_DSOSUF" >> $config_host_mak |
f15bff25 | 6185 | echo "LIBS_QGA=$libs_qga" >> $config_host_mak |
90246037 DB |
6186 | echo "TASN1_LIBS=$tasn1_libs" >> $config_host_mak |
6187 | echo "TASN1_CFLAGS=$tasn1_cflags" >> $config_host_mak | |
1d728c39 BS |
6188 | if test "$gcov" = "yes" ; then |
6189 | echo "CONFIG_GCOV=y" >> $config_host_mak | |
1d728c39 | 6190 | fi |
804edf29 | 6191 | |
adc28027 AB |
6192 | if test "$fuzzing" != "no"; then |
6193 | echo "CONFIG_FUZZ=y" >> $config_host_mak | |
adc28027 | 6194 | fi |
54c9e41d | 6195 | echo "FUZZ_EXE_LDFLAGS=$FUZZ_EXE_LDFLAGS" >> $config_host_mak |
3efac6eb | 6196 | |
b767d257 MMG |
6197 | if test "$rng_none" = "yes"; then |
6198 | echo "CONFIG_RNG_NONE=y" >> $config_host_mak | |
6199 | fi | |
6200 | ||
6efd7517 PM |
6201 | # use included Linux headers |
6202 | if test "$linux" = "yes" ; then | |
a307beb6 | 6203 | mkdir -p linux-headers |
6efd7517 | 6204 | case "$cpu" in |
c72b26ec | 6205 | i386|x86_64|x32) |
08312a63 | 6206 | linux_arch=x86 |
6efd7517 | 6207 | ;; |
f8378acc | 6208 | ppc|ppc64|ppc64le) |
08312a63 | 6209 | linux_arch=powerpc |
6efd7517 PM |
6210 | ;; |
6211 | s390x) | |
08312a63 PM |
6212 | linux_arch=s390 |
6213 | ;; | |
1f080313 CF |
6214 | aarch64) |
6215 | linux_arch=arm64 | |
6216 | ;; | |
222e7d11 SL |
6217 | mips64) |
6218 | linux_arch=mips | |
6219 | ;; | |
08312a63 PM |
6220 | *) |
6221 | # For most CPUs the kernel architecture name and QEMU CPU name match. | |
6222 | linux_arch="$cpu" | |
6efd7517 PM |
6223 | ;; |
6224 | esac | |
08312a63 PM |
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 | |
6efd7517 PM |
6229 | fi |
6230 | ||
1d14ffa9 | 6231 | for target in $target_list; do |
fdb75aef PB |
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 | |
7d13299d | 6240 | |
765686d6 | 6241 | echo "CONFIG_QEMU_INTERP_PREFIX=$interp_prefix" | sed 's/%M/@0@/' >> $config_host_mak |
fdb75aef PB |
6242 | if test "$default_targets" = "yes"; then |
6243 | echo "CONFIG_DEFAULT_TARGETS=y" >> $config_host_mak | |
6244 | fi | |
a540f158 | 6245 | |
a99d57bb WG |
6246 | if test "$numa" = "yes"; then |
6247 | echo "CONFIG_NUMA=y" >> $config_host_mak | |
ab318051 | 6248 | echo "NUMA_LIBS=$numa_libs" >> $config_host_mak |
a99d57bb WG |
6249 | fi |
6250 | ||
fd0e6053 JS |
6251 | if test "$ccache_cpp2" = "yes"; then |
6252 | echo "export CCACHE_CPP2=y" >> $config_host_mak | |
6253 | fi | |
6254 | ||
1e4f6065 DB |
6255 | if test "$safe_stack" = "yes"; then |
6256 | echo "CONFIG_SAFESTACK=y" >> $config_host_mak | |
6257 | fi | |
6258 | ||
e29e5c6e PM |
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. | |
09db9b9d GH |
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. | |
9d49bcf6 | 6272 | DIRS="tests tests/tcg tests/qapi-schema tests/qtest/libqos" |
1cf4323e | 6273 | DIRS="$DIRS tests/qtest tests/qemu-iotests tests/vm tests/fp tests/qgraph" |
b855f8d1 | 6274 | DIRS="$DIRS docs docs/interop fsdev scsi" |
744a928c | 6275 | DIRS="$DIRS pc-bios/optionrom pc-bios/s390-ccw" |
8db2a4fd | 6276 | DIRS="$DIRS roms/seabios" |
c17a386b | 6277 | DIRS="$DIRS contrib/plugins/" |
2038f8c8 | 6278 | LINKS="Makefile" |
3941996b | 6279 | LINKS="$LINKS tests/tcg/Makefile.target" |
ddcf607f | 6280 | LINKS="$LINKS pc-bios/optionrom/Makefile" |
e29e5c6e | 6281 | LINKS="$LINKS pc-bios/s390-ccw/Makefile" |
8db2a4fd | 6282 | LINKS="$LINKS roms/seabios/Makefile" |
e29e5c6e PM |
6283 | LINKS="$LINKS pc-bios/qemu-icon.bmp" |
6284 | LINKS="$LINKS .gdbinit scripts" # scripts needed by relative path in .gdbinit | |
39950353 PM |
6285 | LINKS="$LINKS tests/acceptance tests/data" |
6286 | LINKS="$LINKS tests/qemu-iotests/check" | |
8f8fd9ed | 6287 | LINKS="$LINKS python" |
c17a386b | 6288 | LINKS="$LINKS contrib/plugins/Makefile " |
09db9b9d | 6289 | UNLINK="pc-bios/keymaps" |
753d11f2 RH |
6290 | for bios_file in \ |
6291 | $source_path/pc-bios/*.bin \ | |
3a631b8e | 6292 | $source_path/pc-bios/*.elf \ |
225a9ab8 | 6293 | $source_path/pc-bios/*.lid \ |
753d11f2 RH |
6294 | $source_path/pc-bios/*.rom \ |
6295 | $source_path/pc-bios/*.dtb \ | |
e89e33e1 | 6296 | $source_path/pc-bios/*.img \ |
753d11f2 | 6297 | $source_path/pc-bios/openbios-* \ |
4e73c781 | 6298 | $source_path/pc-bios/u-boot.* \ |
26ce90fd | 6299 | $source_path/pc-bios/edk2-*.fd.bz2 \ |
753d11f2 RH |
6300 | $source_path/pc-bios/palcode-* |
6301 | do | |
e29e5c6e | 6302 | LINKS="$LINKS pc-bios/$(basename $bios_file)" |
d1807a4f PB |
6303 | done |
6304 | mkdir -p $DIRS | |
e29e5c6e | 6305 | for f in $LINKS ; do |
0f4d8894 | 6306 | if [ -e "$source_path/$f" ]; then |
f9245e10 PM |
6307 | symlink "$source_path/$f" "$f" |
6308 | fi | |
d1807a4f | 6309 | done |
09db9b9d GH |
6310 | for f in $UNLINK ; do |
6311 | if [ -L "$f" ]; then | |
6312 | rm -f "$f" | |
6313 | fi | |
6314 | done | |
1ad2134f | 6315 | |
2038f8c8 PB |
6316 | (for i in $cross_cc_vars; do |
6317 | export $i | |
6318 | done | |
de6d7e6b | 6319 | export target_list source_path use_containers ARCH |
2038f8c8 PB |
6320 | $source_path/tests/tcg/configure.sh) |
6321 | ||
c34ebfdc | 6322 | # temporary config to build submodules |
8db2a4fd | 6323 | for rom in seabios; do |
c34ebfdc | 6324 | config_mak=roms/$rom/config.mak |
37116c89 | 6325 | echo "# Automatically generated by configure - do not modify" > $config_mak |
c34ebfdc | 6326 | echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak |
cdbd727c | 6327 | echo "AS=$as" >> $config_mak |
5f6f0e27 | 6328 | echo "CCAS=$ccas" >> $config_mak |
c34ebfdc AL |
6329 | echo "CC=$cc" >> $config_mak |
6330 | echo "BCC=bcc" >> $config_mak | |
3dd46c78 | 6331 | echo "CPP=$cpp" >> $config_mak |
c34ebfdc | 6332 | echo "OBJCOPY=objcopy" >> $config_mak |
a31a8642 | 6333 | echo "IASL=$iasl" >> $config_mak |
c34ebfdc | 6334 | echo "LD=$ld" >> $config_mak |
9f81aeb5 | 6335 | echo "RANLIB=$ranlib" >> $config_mak |
c34ebfdc AL |
6336 | done |
6337 | ||
a5665051 | 6338 | if test "$skip_meson" = no; then |
d77e90fa PB |
6339 | cross="config-meson.cross.new" |
6340 | meson_quote() { | |
47b30835 | 6341 | echo "'$(echo $* | sed "s/ /','/g")'" |
d77e90fa PB |
6342 | } |
6343 | ||
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 | |
fc929892 | 6366 | cross_arg="--cross-file config-meson.cross" |
fc929892 MAL |
6367 | echo "[host_machine]" >> $cross |
6368 | if test "$mingw32" = "yes" ; then | |
6369 | echo "system = 'windows'" >> $cross | |
fc929892 | 6370 | fi |
853b4baf TH |
6371 | if test "$linux" = "yes" ; then |
6372 | echo "system = 'linux'" >> $cross | |
6373 | fi | |
0ca321ea JD |
6374 | if test "$darwin" = "yes" ; then |
6375 | echo "system = 'darwin'" >> $cross | |
6376 | fi | |
fc929892 | 6377 | case "$ARCH" in |
f6bca9df | 6378 | i386) |
fc929892 MAL |
6379 | echo "cpu_family = 'x86'" >> $cross |
6380 | ;; | |
f6bca9df JD |
6381 | x86_64) |
6382 | echo "cpu_family = 'x86_64'" >> $cross | |
6383 | ;; | |
fc929892 MAL |
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 | |
d77e90fa | 6397 | else |
fc929892 | 6398 | cross_arg="--native-file config-meson.cross" |
d77e90fa PB |
6399 | fi |
6400 | mv $cross config-meson.cross | |
fc929892 | 6401 | |
d77e90fa PB |
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 \ | |
d17f305a PB |
6408 | --prefix "$prefix" \ |
6409 | --libdir "$libdir" \ | |
6410 | --libexecdir "$libexecdir" \ | |
6411 | --bindir "$bindir" \ | |
6412 | --includedir "$includedir" \ | |
6413 | --datadir "$datadir" \ | |
6414 | --mandir "$mandir" \ | |
6415 | --sysconfdir "$sysconfdir" \ | |
16bf7a33 | 6416 | --localedir "$localedir" \ |
d17f305a PB |
6417 | --localstatedir "$local_statedir" \ |
6418 | -Ddocdir="$docdir" \ | |
16bf7a33 | 6419 | -Dqemu_firmwarepath="$firmwarepath" \ |
73f3aa37 | 6420 | -Dqemu_suffix="$qemu_suffix" \ |
a5665051 PB |
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) \ | |
da6d48b9 | 6425 | -Db_pie=$(if test "$pie" = yes; then echo true; else echo false; fi) \ |
a5cb7c5a | 6426 | ${staticpic:+-Db_staticpic=$staticpic} \ |
bf0e56a3 | 6427 | -Db_coverage=$(if test "$gcov" = yes; then echo true; else echo false; fi) \ |
9e62ba48 | 6428 | -Db_lto=$lto -Dcfi=$cfi -Dcfi_debug=$cfi_debug \ |
5f8937d6 | 6429 | -Dmalloc=$malloc -Dmalloc_trim=$malloc_trim -Dsparse=$sparse \ |
74a414a1 | 6430 | -Dkvm=$kvm -Dhax=$hax -Dwhpx=$whpx -Dhvf=$hvf -Dnvmm=$nvmm \ |
5f8937d6 | 6431 | -Dxen=$xen -Dxen_pci_passthrough=$xen_pci_passthrough -Dtcg=$tcg \ |
1b695471 | 6432 | -Dcocoa=$cocoa -Dgtk=$gtk -Dmpath=$mpath -Dsdl=$sdl -Dsdl_image=$sdl_image \ |
5f8937d6 | 6433 | -Dvnc=$vnc -Dvnc_sasl=$vnc_sasl -Dvnc_jpeg=$vnc_jpeg -Dvnc_png=$vnc_png \ |
cece116c | 6434 | -Dgettext=$gettext -Dxkbcommon=$xkbcommon -Du2f=$u2f -Dvirtiofsd=$virtiofsd \ |
8c6d4ff4 | 6435 | -Dcapstone=$capstone -Dslirp=$slirp -Dfdt=$fdt -Dbrlapi=$brlapi \ |
9db405a3 | 6436 | -Dcurl=$curl -Dglusterfs=$glusterfs -Dbzip2=$bzip2 -Dlibiscsi=$libiscsi \ |
30045c05 | 6437 | -Dlibnfs=$libnfs -Diconv=$iconv -Dcurses=$curses -Dlibudev=$libudev\ |
ecea3696 | 6438 | -Drbd=$rbd -Dlzo=$lzo -Dsnappy=$snappy -Dlzfse=$lzfse \ |
727c8bb8 | 6439 | -Dzstd=$zstd -Dseccomp=$seccomp -Dvirtfs=$virtfs -Dcap_ng=$cap_ng \ |
7bc3ca7f | 6440 | -Dattr=$attr -Ddefault_devices=$default_devices \ |
c8d5450b | 6441 | -Ddocs=$docs -Dsphinx_build=$sphinx_build -Dinstall_blobs=$blobs \ |
106ad1f9 | 6442 | -Dvhost_user_blk_server=$vhost_user_blk_server -Dmultiprocess=$multiprocess \ |
b846ab7c | 6443 | -Dfuse=$fuse -Dfuse_lseek=$fuse_lseek -Dguest_agent_msi=$guest_agent_msi \ |
c87ea116 | 6444 | $(if test "$default_features" = no; then echo "-Dauto_features=disabled"; fi) \ |
c6fbea47 | 6445 | -Dtcg_interpreter=$tcg_interpreter \ |
fc929892 | 6446 | $cross_arg \ |
a5665051 PB |
6447 | "$PWD" "$source_path" |
6448 | ||
d77e90fa PB |
6449 | if test "$?" -ne 0 ; then |
6450 | error_exit "meson setup failed" | |
6451 | fi | |
699d3884 PB |
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 | |
a5665051 PB |
6461 | fi |
6462 | ||
2d838d9b AB |
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 | ||
e0447a83 TH |
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. | |
54b0306e TH |
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 | |
e0447a83 | 6479 | |
dc655404 MT |
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 | |
e811da7f DB |
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 | |
e811da7f DB |
6522 | preserve_env SDL2_CONFIG |
6523 | preserve_env SMBD | |
6524 | preserve_env STRIP | |
6525 | preserve_env WINDRES | |
6526 | ||
dc655404 | 6527 | printf "exec" >>config.status |
a5665051 | 6528 | for i in "$0" "$@"; do |
835af899 | 6529 | test "$i" = --skip-meson || printf " %s" "$(quote_sh "$i")" >>config.status |
a5665051 | 6530 | done |
cf7cc929 | 6531 | echo ' "$@"' >>config.status |
dc655404 MT |
6532 | chmod +x config.status |
6533 | ||
8cd05ab6 | 6534 | rm -r "$TMPDIR1" |