]>
Commit | Line | Data |
---|---|---|
7d13299d FB |
1 | #!/bin/sh |
2 | # | |
3ef693a0 | 3 | # qemu configure script (c) 2003 Fabrice Bellard |
7d13299d FB |
4 | # |
5 | # set temporary file name | |
6 | if test ! -z "$TMPDIR" ; then | |
7 | TMPDIR1="${TMPDIR}" | |
8 | elif test ! -z "$TEMPDIR" ; then | |
9 | TMPDIR1="${TEMPDIR}" | |
10 | else | |
11 | TMPDIR1="/tmp" | |
12 | fi | |
13 | ||
3ef693a0 | 14 | TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c" |
66518bf6 DS |
15 | TMPB="qemu-conf-${RANDOM}-$$-${RANDOM}" |
16 | TMPO="${TMPDIR1}/${TMPB}.o" | |
9c83ffd8 | 17 | TMPCXX="${TMPDIR1}/${TMPB}.cxx" |
66518bf6 DS |
18 | TMPL="${TMPDIR1}/${TMPB}.lo" |
19 | TMPA="${TMPDIR1}/lib${TMPB}.la" | |
a91b857c | 20 | TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.exe" |
7d13299d | 21 | |
0ba8681e LM |
22 | # NB: do not call "exit" in the trap handler; this is buggy with some shells; |
23 | # see <[email protected]> | |
9c83ffd8 | 24 | trap "rm -f $TMPC $TMPO $TMPCXX $TMPE" EXIT INT QUIT TERM |
da1d85e3 | 25 | rm -f config.log |
9ac81bbb | 26 | |
b48e3611 PM |
27 | # Print a helpful header at the top of config.log |
28 | echo "# QEMU configure log $(date)" >> config.log | |
979ae168 PM |
29 | printf "# Configured with:" >> config.log |
30 | printf " '%s'" "$0" "$@" >> config.log | |
31 | echo >> config.log | |
b48e3611 PM |
32 | echo "#" >> config.log |
33 | ||
76ad07a4 PM |
34 | error_exit() { |
35 | echo | |
36 | echo "ERROR: $1" | |
37 | while test -n "$2"; do | |
38 | echo " $2" | |
39 | shift | |
40 | done | |
41 | echo | |
42 | exit 1 | |
43 | } | |
44 | ||
9c83ffd8 PM |
45 | do_compiler() { |
46 | # Run the compiler, capturing its output to the log. First argument | |
47 | # is compiler binary to execute. | |
48 | local compiler="$1" | |
49 | shift | |
50 | echo $compiler "$@" >> config.log | |
51 | $compiler "$@" >> config.log 2>&1 || return $? | |
8dc38a78 PM |
52 | # Test passed. If this is an --enable-werror build, rerun |
53 | # the test with -Werror and bail out if it fails. This | |
54 | # makes warning-generating-errors in configure test code | |
55 | # obvious to developers. | |
56 | if test "$werror" != "yes"; then | |
57 | return 0 | |
58 | fi | |
59 | # Don't bother rerunning the compile if we were already using -Werror | |
60 | case "$*" in | |
61 | *-Werror*) | |
62 | return 0 | |
63 | ;; | |
64 | esac | |
9c83ffd8 PM |
65 | echo $compiler -Werror "$@" >> config.log |
66 | $compiler -Werror "$@" >> config.log 2>&1 && return $? | |
76ad07a4 PM |
67 | error_exit "configure test passed without -Werror but failed with -Werror." \ |
68 | "This is probably a bug in the configure script. The failing command" \ | |
69 | "will be at the bottom of config.log." \ | |
70 | "You can run configure with --disable-werror to bypass this check." | |
8dc38a78 PM |
71 | } |
72 | ||
9c83ffd8 PM |
73 | do_cc() { |
74 | do_compiler "$cc" "$@" | |
75 | } | |
76 | ||
77 | do_cxx() { | |
78 | do_compiler "$cxx" "$@" | |
79 | } | |
80 | ||
81 | update_cxxflags() { | |
82 | # Set QEMU_CXXFLAGS from QEMU_CFLAGS by filtering out those | |
83 | # options which some versions of GCC's C++ compiler complain about | |
84 | # because they only make sense for C programs. | |
85 | QEMU_CXXFLAGS= | |
86 | for arg in $QEMU_CFLAGS; do | |
87 | case $arg in | |
88 | -Wstrict-prototypes|-Wmissing-prototypes|-Wnested-externs|\ | |
89 | -Wold-style-declaration|-Wold-style-definition|-Wredundant-decls) | |
90 | ;; | |
91 | *) | |
92 | QEMU_CXXFLAGS=${QEMU_CXXFLAGS:+$QEMU_CXXFLAGS }$arg | |
93 | ;; | |
94 | esac | |
95 | done | |
96 | } | |
97 | ||
52166aa0 | 98 | compile_object() { |
8dc38a78 | 99 | do_cc $QEMU_CFLAGS -c -o $TMPO $TMPC |
52166aa0 JQ |
100 | } |
101 | ||
102 | compile_prog() { | |
103 | local_cflags="$1" | |
104 | local_ldflags="$2" | |
8dc38a78 | 105 | do_cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags |
52166aa0 JQ |
106 | } |
107 | ||
66518bf6 DS |
108 | do_libtool() { |
109 | local mode=$1 | |
110 | shift | |
111 | # Run the compiler, capturing its output to the log. | |
112 | echo $libtool $mode --tag=CC $cc "$@" >> config.log | |
113 | $libtool $mode --tag=CC $cc "$@" >> config.log 2>&1 || return $? | |
114 | # Test passed. If this is an --enable-werror build, rerun | |
115 | # the test with -Werror and bail out if it fails. This | |
116 | # makes warning-generating-errors in configure test code | |
117 | # obvious to developers. | |
118 | if test "$werror" != "yes"; then | |
119 | return 0 | |
120 | fi | |
121 | # Don't bother rerunning the compile if we were already using -Werror | |
122 | case "$*" in | |
123 | *-Werror*) | |
124 | return 0 | |
125 | ;; | |
126 | esac | |
127 | echo $libtool $mode --tag=CC $cc -Werror "$@" >> config.log | |
128 | $libtool $mode --tag=CC $cc -Werror "$@" >> config.log 2>&1 && return $? | |
129 | error_exit "configure test passed without -Werror but failed with -Werror." \ | |
130 | "This is probably a bug in the configure script. The failing command" \ | |
131 | "will be at the bottom of config.log." \ | |
132 | "You can run configure with --disable-werror to bypass this check." | |
133 | } | |
134 | ||
135 | libtool_prog() { | |
136 | do_libtool --mode=compile $QEMU_CFLAGS -c -fPIE -DPIE -o $TMPO $TMPC || return $? | |
137 | do_libtool --mode=link $LDFLAGS -o $TMPA $TMPL -rpath /usr/local/lib | |
138 | } | |
139 | ||
11568d6d PB |
140 | # symbolically link $1 to $2. Portable version of "ln -sf". |
141 | symlink() { | |
72b8b5a1 | 142 | rm -rf "$2" |
ec5b06d7 | 143 | mkdir -p "$(dirname "$2")" |
72b8b5a1 | 144 | ln -s "$1" "$2" |
11568d6d PB |
145 | } |
146 | ||
0dba6195 LM |
147 | # check whether a command is available to this shell (may be either an |
148 | # executable or a builtin) | |
149 | has() { | |
150 | type "$1" >/dev/null 2>&1 | |
151 | } | |
152 | ||
153 | # search for an executable in PATH | |
154 | path_of() { | |
155 | local_command="$1" | |
156 | local_ifs="$IFS" | |
157 | local_dir="" | |
158 | ||
159 | # pathname has a dir component? | |
160 | if [ "${local_command#*/}" != "$local_command" ]; then | |
161 | if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then | |
162 | echo "$local_command" | |
163 | return 0 | |
164 | fi | |
165 | fi | |
166 | if [ -z "$local_command" ]; then | |
167 | return 1 | |
168 | fi | |
169 | ||
170 | IFS=: | |
171 | for local_dir in $PATH; do | |
172 | if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then | |
173 | echo "$local_dir/$local_command" | |
174 | IFS="${local_ifs:-$(printf ' \t\n')}" | |
175 | return 0 | |
176 | fi | |
177 | done | |
178 | # not found | |
179 | IFS="${local_ifs:-$(printf ' \t\n')}" | |
180 | return 1 | |
181 | } | |
182 | ||
7d13299d | 183 | # default parameters |
ca4deeb1 | 184 | source_path=`dirname "$0"` |
2ff6b91e | 185 | cpu="" |
a31a8642 | 186 | iasl="iasl" |
1e43adfc | 187 | interp_prefix="/usr/gnemul/qemu-%M" |
43ce4dfe | 188 | static="no" |
7d13299d | 189 | cross_prefix="" |
0c58ac1c | 190 | audio_drv_list="" |
b64ec4e4 FZ |
191 | block_drv_rw_whitelist="" |
192 | block_drv_ro_whitelist="" | |
e49d021e | 193 | host_cc="cc" |
73da375e | 194 | libs_softmmu="" |
3e2e0e6b | 195 | libs_tools="" |
67f86e8e | 196 | audio_pt_int="" |
d5631638 | 197 | audio_win_int="" |
2b2e59e6 | 198 | cc_i386=i386-pc-linux-gnu-gcc |
957f1f99 | 199 | libs_qga="" |
5bc62e01 | 200 | debug_info="yes" |
ac0df51d | 201 | |
afb63ebd SW |
202 | # Don't accept a target_list environment variable. |
203 | unset target_list | |
377529c0 PB |
204 | |
205 | # Default value for a variable defining feature "foo". | |
206 | # * foo="no" feature will only be used if --enable-foo arg is given | |
207 | # * foo="" feature will be searched for, and if found, will be used | |
208 | # unless --disable-foo is given | |
209 | # * foo="yes" this value will only be set by --enable-foo flag. | |
210 | # feature will searched for, | |
211 | # if not found, configure exits with error | |
212 | # | |
213 | # Always add --enable-foo and --disable-foo command line args. | |
214 | # Distributions want to ensure that several features are compiled in, and it | |
215 | # is impossible without a --enable-foo that exits if a feature is not found. | |
216 | ||
217 | bluez="" | |
218 | brlapi="" | |
219 | curl="" | |
220 | curses="" | |
221 | docs="" | |
222 | fdt="" | |
58952137 | 223 | netmap="no" |
e2134eb9 | 224 | pixman="" |
377529c0 | 225 | sdl="" |
47c03744 | 226 | sdlabi="1.2" |
983eef5a | 227 | virtfs="" |
821601ea | 228 | vnc="yes" |
377529c0 PB |
229 | sparse="no" |
230 | uuid="" | |
231 | vde="" | |
232 | vnc_tls="" | |
233 | vnc_sasl="" | |
234 | vnc_jpeg="" | |
235 | vnc_png="" | |
7536ee4b | 236 | vnc_ws="" |
377529c0 | 237 | xen="" |
d5b93ddf | 238 | xen_ctrl_version="" |
eb6fda0f | 239 | xen_pci_passthrough="" |
377529c0 | 240 | linux_aio="" |
47e98658 | 241 | cap_ng="" |
377529c0 | 242 | attr="" |
4f26f2b6 | 243 | libattr="" |
377529c0 PB |
244 | xfs="" |
245 | ||
d41a75a2 | 246 | vhost_net="no" |
5e9be92d | 247 | vhost_scsi="no" |
d41a75a2 | 248 | kvm="no" |
2da776db | 249 | rdma="" |
377529c0 PB |
250 | gprof="no" |
251 | debug_tcg="no" | |
377529c0 PB |
252 | debug="no" |
253 | strip_opt="yes" | |
9195b2c2 | 254 | tcg_interpreter="no" |
377529c0 PB |
255 | bigendian="no" |
256 | mingw32="no" | |
1d728c39 BS |
257 | gcov="no" |
258 | gcov_tool="gcov" | |
377529c0 | 259 | EXESUF="" |
17969268 FZ |
260 | DSOSUF=".so" |
261 | LDFLAGS_SHARED="-shared" | |
262 | modules="no" | |
377529c0 PB |
263 | prefix="/usr/local" |
264 | mandir="\${prefix}/share/man" | |
528ae5b8 | 265 | datadir="\${prefix}/share" |
850da188 | 266 | qemu_docdir="\${prefix}/share/doc/qemu" |
377529c0 | 267 | bindir="\${prefix}/bin" |
3aa5d2be | 268 | libdir="\${prefix}/lib" |
8bf188aa | 269 | libexecdir="\${prefix}/libexec" |
0f94d6da | 270 | includedir="\${prefix}/include" |
377529c0 | 271 | sysconfdir="\${prefix}/etc" |
785c23ae | 272 | local_statedir="\${prefix}/var" |
377529c0 PB |
273 | confsuffix="/qemu" |
274 | slirp="yes" | |
275 | fmod_lib="" | |
276 | fmod_inc="" | |
277 | oss_lib="" | |
278 | bsd="no" | |
279 | linux="no" | |
280 | solaris="no" | |
281 | profiler="no" | |
282 | cocoa="no" | |
283 | softmmu="yes" | |
284 | linux_user="no" | |
377529c0 | 285 | bsd_user="no" |
30163d89 | 286 | guest_base="yes" |
377529c0 | 287 | uname_release="" |
377529c0 PB |
288 | aix="no" |
289 | blobs="yes" | |
290 | pkgversion="" | |
40d6444e | 291 | pie="" |
377529c0 | 292 | zero_malloc="" |
3556c233 | 293 | qom_cast_debug="yes" |
377529c0 PB |
294 | trace_backend="nop" |
295 | trace_file="trace" | |
296 | spice="" | |
297 | rbd="" | |
111a38b0 | 298 | smartcard_nss="" |
2b2325ff | 299 | libusb="" |
69354a83 | 300 | usb_redir="" |
b1e5fff4 | 301 | glx="" |
1ece9905 | 302 | zlib="yes" |
607dacd0 QN |
303 | lzo="no" |
304 | snappy="no" | |
e8ef31a3 | 305 | guest_agent="" |
d9840e25 TS |
306 | guest_agent_with_vss="no" |
307 | vss_win32_sdk="" | |
308 | win_sdk="no" | |
4b1c11fd | 309 | want_tools="yes" |
c589b249 | 310 | libiscsi="" |
6542aa9c | 311 | libnfs="" |
519175a2 | 312 | coroutine="" |
70c60c08 | 313 | coroutine_pool="" |
f794573e | 314 | seccomp="" |
eb100396 | 315 | glusterfs="" |
0c14fb47 | 316 | glusterfs_discard="no" |
7c815372 | 317 | glusterfs_zerofill="no" |
583f6e7b | 318 | virtio_blk_data_plane="" |
a4ccabcf | 319 | gtk="" |
528de90a | 320 | gtkabi="2.0" |
ab214c29 | 321 | tpm="no" |
0a12ec87 | 322 | libssh2="" |
4f18b782 | 323 | vhdx="" |
95c6bff3 | 324 | quorum="no" |
377529c0 | 325 | |
ac0df51d AL |
326 | # parse CC options first |
327 | for opt do | |
328 | optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` | |
329 | case "$opt" in | |
330 | --cross-prefix=*) cross_prefix="$optarg" | |
331 | ;; | |
3d8df640 | 332 | --cc=*) CC="$optarg" |
ac0df51d | 333 | ;; |
83f73fce TS |
334 | --cxx=*) CXX="$optarg" |
335 | ;; | |
ca4deeb1 PB |
336 | --source-path=*) source_path="$optarg" |
337 | ;; | |
2ff6b91e JQ |
338 | --cpu=*) cpu="$optarg" |
339 | ;; | |
a558ee17 | 340 | --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS" |
f9943cd5 | 341 | EXTRA_CFLAGS="$optarg" |
e2a2ed06 JQ |
342 | ;; |
343 | --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS" | |
f9943cd5 | 344 | EXTRA_LDFLAGS="$optarg" |
e2a2ed06 | 345 | ;; |
5bc62e01 GH |
346 | --enable-debug-info) debug_info="yes" |
347 | ;; | |
348 | --disable-debug-info) debug_info="no" | |
349 | ;; | |
ac0df51d AL |
350 | esac |
351 | done | |
ac0df51d AL |
352 | # OS specific |
353 | # Using uname is really, really broken. Once we have the right set of checks | |
93148aa5 | 354 | # we can eliminate its usage altogether. |
ac0df51d | 355 | |
e49d021e PM |
356 | # Preferred compiler: |
357 | # ${CC} (if set) | |
358 | # ${cross_prefix}gcc (if cross-prefix specified) | |
359 | # system compiler | |
360 | if test -z "${CC}${cross_prefix}"; then | |
361 | cc="$host_cc" | |
362 | else | |
363 | cc="${CC-${cross_prefix}gcc}" | |
364 | fi | |
365 | ||
83f73fce TS |
366 | if test -z "${CXX}${cross_prefix}"; then |
367 | cxx="c++" | |
368 | else | |
369 | cxx="${CXX-${cross_prefix}g++}" | |
370 | fi | |
371 | ||
b3198cc2 | 372 | ar="${AR-${cross_prefix}ar}" |
3dd46c78 BS |
373 | as="${AS-${cross_prefix}as}" |
374 | cpp="${CPP-$cc -E}" | |
b3198cc2 SY |
375 | objcopy="${OBJCOPY-${cross_prefix}objcopy}" |
376 | ld="${LD-${cross_prefix}ld}" | |
3f534581 | 377 | libtool="${LIBTOOL-${cross_prefix}libtool}" |
b3198cc2 SY |
378 | strip="${STRIP-${cross_prefix}strip}" |
379 | windres="${WINDRES-${cross_prefix}windres}" | |
17884d7b ST |
380 | pkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}" |
381 | query_pkg_config() { | |
382 | "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@" | |
383 | } | |
384 | pkg_config=query_pkg_config | |
b3198cc2 | 385 | sdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}" |
47c03744 | 386 | sdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}" |
ac0df51d | 387 | |
45d285ab PM |
388 | # If the user hasn't specified ARFLAGS, default to 'rv', just as make does. |
389 | ARFLAGS="${ARFLAGS-rv}" | |
390 | ||
be17dc90 | 391 | # default flags for all hosts |
4c288acb | 392 | QEMU_CFLAGS="-fno-strict-aliasing -fno-common $QEMU_CFLAGS" |
f9188227 | 393 | QEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS" |
c95e3080 | 394 | QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS" |
be17dc90 | 395 | QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS" |
6b4c305c | 396 | QEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/include" |
5bc62e01 GH |
397 | if test "$debug_info" = "yes"; then |
398 | CFLAGS="-g $CFLAGS" | |
399 | LDFLAGS="-g $LDFLAGS" | |
400 | fi | |
be17dc90 | 401 | |
ca4deeb1 PB |
402 | # make source path absolute |
403 | source_path=`cd "$source_path"; pwd` | |
404 | ||
ac0df51d AL |
405 | check_define() { |
406 | cat > $TMPC <<EOF | |
407 | #if !defined($1) | |
fd786e1a | 408 | #error $1 not defined |
ac0df51d AL |
409 | #endif |
410 | int main(void) { return 0; } | |
411 | EOF | |
52166aa0 | 412 | compile_object |
ac0df51d AL |
413 | } |
414 | ||
bbea4050 PM |
415 | if check_define __linux__ ; then |
416 | targetos="Linux" | |
417 | elif check_define _WIN32 ; then | |
418 | targetos='MINGW32' | |
419 | elif check_define __OpenBSD__ ; then | |
420 | targetos='OpenBSD' | |
421 | elif check_define __sun__ ; then | |
422 | targetos='SunOS' | |
423 | elif check_define __HAIKU__ ; then | |
424 | targetos='Haiku' | |
425 | else | |
426 | targetos=`uname -s` | |
427 | fi | |
428 | ||
429 | # Some host OSes need non-standard checks for which CPU to use. | |
430 | # Note that these checks are broken for cross-compilation: if you're | |
431 | # cross-compiling to one of these OSes then you'll need to specify | |
432 | # the correct CPU with the --cpu option. | |
433 | case $targetos in | |
434 | Darwin) | |
435 | # on Leopard most of the system is 32-bit, so we have to ask the kernel if we can | |
436 | # run 64-bit userspace code. | |
437 | # If the user didn't specify a CPU explicitly and the kernel says this is | |
438 | # 64 bit hw, then assume x86_64. Otherwise fall through to the usual detection code. | |
439 | if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then | |
440 | cpu="x86_64" | |
441 | fi | |
442 | ;; | |
443 | SunOS) | |
444 | # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo | |
445 | if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then | |
446 | cpu="x86_64" | |
447 | fi | |
448 | esac | |
449 | ||
2ff6b91e JQ |
450 | if test ! -z "$cpu" ; then |
451 | # command line argument | |
452 | : | |
453 | elif check_define __i386__ ; then | |
ac0df51d AL |
454 | cpu="i386" |
455 | elif check_define __x86_64__ ; then | |
c72b26ec RH |
456 | if check_define __ILP32__ ; then |
457 | cpu="x32" | |
458 | else | |
459 | cpu="x86_64" | |
460 | fi | |
3aa9bd6c | 461 | elif check_define __sparc__ ; then |
3aa9bd6c BS |
462 | if check_define __arch64__ ; then |
463 | cpu="sparc64" | |
464 | else | |
465 | cpu="sparc" | |
466 | fi | |
fdf7ed96 | 467 | elif check_define _ARCH_PPC ; then |
468 | if check_define _ARCH_PPC64 ; then | |
469 | cpu="ppc64" | |
470 | else | |
471 | cpu="ppc" | |
472 | fi | |
afa05235 AJ |
473 | elif check_define __mips__ ; then |
474 | cpu="mips" | |
477ba620 AJ |
475 | elif check_define __ia64__ ; then |
476 | cpu="ia64" | |
d66ed0ea AJ |
477 | elif check_define __s390__ ; then |
478 | if check_define __s390x__ ; then | |
479 | cpu="s390x" | |
480 | else | |
481 | cpu="s390" | |
482 | fi | |
21d89f84 PM |
483 | elif check_define __arm__ ; then |
484 | cpu="arm" | |
1f080313 CF |
485 | elif check_define __aarch64__ ; then |
486 | cpu="aarch64" | |
f28ffed5 BS |
487 | elif check_define __hppa__ ; then |
488 | cpu="hppa" | |
ac0df51d | 489 | else |
fdf7ed96 | 490 | cpu=`uname -m` |
ac0df51d AL |
491 | fi |
492 | ||
359bc95d PM |
493 | ARCH= |
494 | # Normalise host CPU name and set ARCH. | |
495 | # Note that this case should only have supported host CPUs, not guests. | |
7d13299d | 496 | case "$cpu" in |
c72b26ec | 497 | ia64|ppc|ppc64|s390|s390x|sparc64|x32) |
ea8f20f8 JQ |
498 | cpu="$cpu" |
499 | ;; | |
7d13299d | 500 | i386|i486|i586|i686|i86pc|BePC) |
97a847bc | 501 | cpu="i386" |
7d13299d | 502 | ;; |
aaa5fa14 AJ |
503 | x86_64|amd64) |
504 | cpu="x86_64" | |
505 | ;; | |
21d89f84 PM |
506 | armv*b|armv*l|arm) |
507 | cpu="arm" | |
7d13299d | 508 | ;; |
1f080313 CF |
509 | aarch64) |
510 | cpu="aarch64" | |
511 | ;; | |
afa05235 AJ |
512 | mips*) |
513 | cpu="mips" | |
514 | ;; | |
3142255c | 515 | sparc|sun4[cdmuv]) |
ae228531 FB |
516 | cpu="sparc" |
517 | ;; | |
7d13299d | 518 | *) |
359bc95d PM |
519 | # This will result in either an error or falling back to TCI later |
520 | ARCH=unknown | |
7d13299d FB |
521 | ;; |
522 | esac | |
359bc95d PM |
523 | if test -z "$ARCH"; then |
524 | ARCH="$cpu" | |
525 | fi | |
e2d52ad3 | 526 | |
7d13299d | 527 | # OS specific |
0dbfc675 | 528 | |
7d13299d | 529 | case $targetos in |
c326e0af | 530 | CYGWIN*) |
0dbfc675 | 531 | mingw32="yes" |
a558ee17 | 532 | QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS" |
d5631638 | 533 | audio_possible_drivers="winwave sdl" |
534 | audio_drv_list="winwave" | |
c326e0af | 535 | ;; |
67b915a5 | 536 | MINGW32*) |
0dbfc675 | 537 | mingw32="yes" |
d5631638 | 538 | audio_possible_drivers="winwave dsound sdl fmod" |
539 | audio_drv_list="winwave" | |
67b915a5 | 540 | ;; |
5c40d2bd | 541 | GNU/kFreeBSD) |
a167ba50 | 542 | bsd="yes" |
0dbfc675 JQ |
543 | audio_drv_list="oss" |
544 | audio_possible_drivers="oss sdl esd pa" | |
5c40d2bd | 545 | ;; |
7d3505c5 | 546 | FreeBSD) |
0dbfc675 | 547 | bsd="yes" |
0db4a067 | 548 | make="${MAKE-gmake}" |
0dbfc675 JQ |
549 | audio_drv_list="oss" |
550 | audio_possible_drivers="oss sdl esd pa" | |
f01576f1 JL |
551 | # needed for kinfo_getvmmap(3) in libutil.h |
552 | LIBS="-lutil $LIBS" | |
58952137 | 553 | netmap="" # enable netmap autodetect |
7d3505c5 | 554 | ;; |
c5e97233 | 555 | DragonFly) |
0dbfc675 | 556 | bsd="yes" |
0db4a067 | 557 | make="${MAKE-gmake}" |
0dbfc675 JQ |
558 | audio_drv_list="oss" |
559 | audio_possible_drivers="oss sdl esd pa" | |
c5e97233 | 560 | ;; |
7d3505c5 | 561 | NetBSD) |
0dbfc675 | 562 | bsd="yes" |
0db4a067 | 563 | make="${MAKE-gmake}" |
0dbfc675 JQ |
564 | audio_drv_list="oss" |
565 | audio_possible_drivers="oss sdl esd" | |
566 | oss_lib="-lossaudio" | |
7d3505c5 FB |
567 | ;; |
568 | OpenBSD) | |
0dbfc675 | 569 | bsd="yes" |
0db4a067 | 570 | make="${MAKE-gmake}" |
4f6ab397 BS |
571 | audio_drv_list="sdl" |
572 | audio_possible_drivers="sdl esd" | |
7d3505c5 | 573 | ;; |
83fb7adf | 574 | Darwin) |
0dbfc675 JQ |
575 | bsd="yes" |
576 | darwin="yes" | |
17969268 | 577 | LDFLAGS_SHARED="-bundle -undefined dynamic_lookup" |
0dbfc675 | 578 | if [ "$cpu" = "x86_64" ] ; then |
a558ee17 | 579 | QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS" |
0c439cbf | 580 | LDFLAGS="-arch x86_64 $LDFLAGS" |
0dbfc675 | 581 | fi |
0dbfc675 JQ |
582 | cocoa="yes" |
583 | audio_drv_list="coreaudio" | |
584 | audio_possible_drivers="coreaudio sdl fmod" | |
585 | LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS" | |
7973f21c | 586 | libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu" |
a0b7cf6b PM |
587 | # Disable attempts to use ObjectiveC features in os/object.h since they |
588 | # won't work when we're compiling with gcc as a C compiler. | |
589 | QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS" | |
83fb7adf | 590 | ;; |
ec530c81 | 591 | SunOS) |
0dbfc675 | 592 | solaris="yes" |
0db4a067 PB |
593 | make="${MAKE-gmake}" |
594 | install="${INSTALL-ginstall}" | |
fa58948d | 595 | ld="gld" |
e2d8830e | 596 | smbd="${SMBD-/usr/sfw/sbin/smbd}" |
0dbfc675 JQ |
597 | needs_libsunmath="no" |
598 | solarisrev=`uname -r | cut -f2 -d.` | |
0dbfc675 JQ |
599 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
600 | if test "$solarisrev" -le 9 ; then | |
601 | if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then | |
602 | needs_libsunmath="yes" | |
f14bfdf9 JQ |
603 | QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS" |
604 | LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS" | |
605 | LIBS="-lsunmath $LIBS" | |
0dbfc675 | 606 | else |
76ad07a4 PM |
607 | error_exit "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without" \ |
608 | "libsunmath from the Sun Studio compilers tools, due to a lack of" \ | |
609 | "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86" \ | |
610 | "Studio 11 can be downloaded from www.sun.com." | |
0dbfc675 | 611 | fi |
86b2bd93 | 612 | fi |
0dbfc675 JQ |
613 | fi |
614 | if test -f /usr/include/sys/soundcard.h ; then | |
615 | audio_drv_list="oss" | |
616 | fi | |
617 | audio_possible_drivers="oss sdl" | |
d741429a BS |
618 | # needed for CMSG_ macros in sys/socket.h |
619 | QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS" | |
620 | # needed for TIOCWIN* defines in termios.h | |
621 | QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS" | |
a558ee17 | 622 | QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS" |
560d375f AF |
623 | solarisnetlibs="-lsocket -lnsl -lresolv" |
624 | LIBS="$solarisnetlibs $LIBS" | |
625 | libs_qga="$solarisnetlibs $libs_qga" | |
86b2bd93 | 626 | ;; |
b29fe3ed | 627 | AIX) |
0dbfc675 | 628 | aix="yes" |
0db4a067 | 629 | make="${MAKE-gmake}" |
b29fe3ed | 630 | ;; |
179cf400 AF |
631 | Haiku) |
632 | haiku="yes" | |
633 | QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS" | |
634 | LIBS="-lposix_error_mapper -lnetwork $LIBS" | |
635 | ;; | |
1d14ffa9 | 636 | *) |
0dbfc675 JQ |
637 | audio_drv_list="oss" |
638 | audio_possible_drivers="oss alsa sdl esd pa" | |
639 | linux="yes" | |
640 | linux_user="yes" | |
af2be207 JK |
641 | kvm="yes" |
642 | vhost_net="yes" | |
5e9be92d | 643 | vhost_scsi="yes" |
c72b26ec | 644 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" -o "$cpu" = "x32" ] ; then |
c2de5c91 | 645 | audio_possible_drivers="$audio_possible_drivers fmod" |
0dbfc675 | 646 | fi |
a585140d | 647 | QEMU_INCLUDES="-I\$(SRC_PATH)/linux-headers -I$(pwd)/linux-headers $QEMU_INCLUDES" |
fb065187 | 648 | ;; |
7d13299d FB |
649 | esac |
650 | ||
7d3505c5 | 651 | if [ "$bsd" = "yes" ] ; then |
b1a550a0 | 652 | if [ "$darwin" != "yes" ] ; then |
08de3949 | 653 | bsd_user="yes" |
83fb7adf | 654 | fi |
7d3505c5 FB |
655 | fi |
656 | ||
0db4a067 PB |
657 | : ${make=${MAKE-make}} |
658 | : ${install=${INSTALL-install}} | |
52510f8b | 659 | : ${python=${PYTHON-python}} |
e2d8830e | 660 | : ${smbd=${SMBD-/usr/sbin/smbd}} |
0db4a067 | 661 | |
3c4a4d0d PM |
662 | # Default objcc to clang if available, otherwise use CC |
663 | if has clang; then | |
664 | objcc=clang | |
665 | else | |
666 | objcc="$cc" | |
667 | fi | |
668 | ||
3457a3f8 | 669 | if test "$mingw32" = "yes" ; then |
3457a3f8 | 670 | EXESUF=".exe" |
17969268 | 671 | DSOSUF=".dll" |
a558ee17 | 672 | QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS" |
e94a7936 SW |
673 | # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later) |
674 | QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS" | |
f7cf5d5b SW |
675 | LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS" |
676 | cat > $TMPC << EOF | |
677 | int main(void) { return 0; } | |
678 | EOF | |
679 | if compile_prog "" "-liberty" ; then | |
680 | LIBS="-liberty $LIBS" | |
681 | fi | |
c5ec15ea | 682 | prefix="c:/Program Files/QEMU" |
683035de | 683 | mandir="\${prefix}" |
528ae5b8 | 684 | datadir="\${prefix}" |
850da188 | 685 | qemu_docdir="\${prefix}" |
683035de PB |
686 | bindir="\${prefix}" |
687 | sysconfdir="\${prefix}" | |
5a699bbb | 688 | local_statedir= |
683035de | 689 | confsuffix="" |
368542b8 | 690 | libs_qga="-lws2_32 -lwinmm -lpowrprof $libs_qga" |
3457a3f8 JQ |
691 | fi |
692 | ||
487fefdb | 693 | werror="" |
85aa5189 | 694 | |
7d13299d | 695 | for opt do |
a46e4035 | 696 | optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` |
7d13299d | 697 | case "$opt" in |
2efc3265 FB |
698 | --help|-h) show_help=yes |
699 | ;; | |
99123e13 MF |
700 | --version|-V) exec cat $source_path/VERSION |
701 | ;; | |
b1a550a0 | 702 | --prefix=*) prefix="$optarg" |
7d13299d | 703 | ;; |
b1a550a0 | 704 | --interp-prefix=*) interp_prefix="$optarg" |
32ce6337 | 705 | ;; |
ca4deeb1 | 706 | --source-path=*) |
7d13299d | 707 | ;; |
ac0df51d | 708 | --cross-prefix=*) |
7d13299d | 709 | ;; |
ac0df51d | 710 | --cc=*) |
7d13299d | 711 | ;; |
b1a550a0 | 712 | --host-cc=*) host_cc="$optarg" |
83469015 | 713 | ;; |
83f73fce TS |
714 | --cxx=*) |
715 | ;; | |
e007dbec MT |
716 | --iasl=*) iasl="$optarg" |
717 | ;; | |
3c4a4d0d PM |
718 | --objcc=*) objcc="$optarg" |
719 | ;; | |
b1a550a0 | 720 | --make=*) make="$optarg" |
7d13299d | 721 | ;; |
6a882643 PB |
722 | --install=*) install="$optarg" |
723 | ;; | |
c886edfb BS |
724 | --python=*) python="$optarg" |
725 | ;; | |
1d728c39 BS |
726 | --gcov=*) gcov_tool="$optarg" |
727 | ;; | |
e2d8830e BS |
728 | --smbd=*) smbd="$optarg" |
729 | ;; | |
e2a2ed06 | 730 | --extra-cflags=*) |
7d13299d | 731 | ;; |
e2a2ed06 | 732 | --extra-ldflags=*) |
7d13299d | 733 | ;; |
5bc62e01 GH |
734 | --enable-debug-info) |
735 | ;; | |
736 | --disable-debug-info) | |
737 | ;; | |
17969268 FZ |
738 | --enable-modules) |
739 | modules="yes" | |
740 | ;; | |
2ff6b91e | 741 | --cpu=*) |
7d13299d | 742 | ;; |
b1a550a0 | 743 | --target-list=*) target_list="$optarg" |
de83cd02 | 744 | ;; |
74242e0f | 745 | --enable-trace-backend=*) trace_backend="$optarg" |
94a420b1 | 746 | ;; |
74242e0f | 747 | --with-trace-file=*) trace_file="$optarg" |
9410b56c | 748 | ;; |
7d13299d FB |
749 | --enable-gprof) gprof="yes" |
750 | ;; | |
1d728c39 BS |
751 | --enable-gcov) gcov="yes" |
752 | ;; | |
79427693 LM |
753 | --static) |
754 | static="yes" | |
755 | LDFLAGS="-static $LDFLAGS" | |
17884d7b | 756 | QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS" |
43ce4dfe | 757 | ;; |
0b24e75f PB |
758 | --mandir=*) mandir="$optarg" |
759 | ;; | |
760 | --bindir=*) bindir="$optarg" | |
761 | ;; | |
3aa5d2be AL |
762 | --libdir=*) libdir="$optarg" |
763 | ;; | |
8bf188aa MT |
764 | --libexecdir=*) libexecdir="$optarg" |
765 | ;; | |
0f94d6da AL |
766 | --includedir=*) includedir="$optarg" |
767 | ;; | |
528ae5b8 | 768 | --datadir=*) datadir="$optarg" |
0b24e75f | 769 | ;; |
023d3d67 EH |
770 | --with-confsuffix=*) confsuffix="$optarg" |
771 | ;; | |
850da188 | 772 | --docdir=*) qemu_docdir="$optarg" |
0b24e75f | 773 | ;; |
ca2fb938 | 774 | --sysconfdir=*) sysconfdir="$optarg" |
07381cc1 | 775 | ;; |
785c23ae LC |
776 | --localstatedir=*) local_statedir="$optarg" |
777 | ;; | |
778 | --sbindir=*|--sharedstatedir=*|\ | |
023ddd74 MF |
779 | --oldincludedir=*|--datarootdir=*|--infodir=*|--localedir=*|\ |
780 | --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*) | |
781 | # These switches are silently ignored, for compatibility with | |
782 | # autoconf-generated configure scripts. This allows QEMU's | |
783 | # configure to be used by RPM and similar macros that set | |
784 | # lots of directory switches by default. | |
785 | ;; | |
e2134eb9 GH |
786 | --with-system-pixman) pixman="system" |
787 | ;; | |
788 | --without-system-pixman) pixman="internal" | |
789 | ;; | |
74880fe2 RS |
790 | --without-pixman) pixman="none" |
791 | ;; | |
97a847bc FB |
792 | --disable-sdl) sdl="no" |
793 | ;; | |
c4198157 JQ |
794 | --enable-sdl) sdl="yes" |
795 | ;; | |
47c03744 DA |
796 | --with-sdlabi=*) sdlabi="$optarg" |
797 | ;; | |
3556c233 PB |
798 | --disable-qom-cast-debug) qom_cast_debug="no" |
799 | ;; | |
800 | --enable-qom-cast-debug) qom_cast_debug="yes" | |
801 | ;; | |
983eef5a MI |
802 | --disable-virtfs) virtfs="no" |
803 | ;; | |
804 | --enable-virtfs) virtfs="yes" | |
805 | ;; | |
821601ea JS |
806 | --disable-vnc) vnc="no" |
807 | ;; | |
808 | --enable-vnc) vnc="yes" | |
809 | ;; | |
0c58ac1c | 810 | --fmod-lib=*) fmod_lib="$optarg" |
1d14ffa9 | 811 | ;; |
c2de5c91 | 812 | --fmod-inc=*) fmod_inc="$optarg" |
813 | ;; | |
2f6a1ab0 BS |
814 | --oss-lib=*) oss_lib="$optarg" |
815 | ;; | |
0c58ac1c | 816 | --audio-drv-list=*) audio_drv_list="$optarg" |
102a52e4 | 817 | ;; |
b64ec4e4 FZ |
818 | --block-drv-rw-whitelist=*|--block-drv-whitelist=*) block_drv_rw_whitelist=`echo "$optarg" | sed -e 's/,/ /g'` |
819 | ;; | |
820 | --block-drv-ro-whitelist=*) block_drv_ro_whitelist=`echo "$optarg" | sed -e 's/,/ /g'` | |
eb852011 | 821 | ;; |
f8393946 AJ |
822 | --enable-debug-tcg) debug_tcg="yes" |
823 | ;; | |
824 | --disable-debug-tcg) debug_tcg="no" | |
825 | ;; | |
f3d08ee6 PB |
826 | --enable-debug) |
827 | # Enable debugging options that aren't excessively noisy | |
828 | debug_tcg="yes" | |
829 | debug="yes" | |
830 | strip_opt="no" | |
831 | ;; | |
03b4fe7d AL |
832 | --enable-sparse) sparse="yes" |
833 | ;; | |
834 | --disable-sparse) sparse="no" | |
835 | ;; | |
1625af87 AL |
836 | --disable-strip) strip_opt="no" |
837 | ;; | |
8d5d2d4c TS |
838 | --disable-vnc-tls) vnc_tls="no" |
839 | ;; | |
1be10ad2 JQ |
840 | --enable-vnc-tls) vnc_tls="yes" |
841 | ;; | |
2f9606b3 AL |
842 | --disable-vnc-sasl) vnc_sasl="no" |
843 | ;; | |
ea784e3b JQ |
844 | --enable-vnc-sasl) vnc_sasl="yes" |
845 | ;; | |
2f6f5c7a CC |
846 | --disable-vnc-jpeg) vnc_jpeg="no" |
847 | ;; | |
848 | --enable-vnc-jpeg) vnc_jpeg="yes" | |
849 | ;; | |
efe556ad CC |
850 | --disable-vnc-png) vnc_png="no" |
851 | ;; | |
852 | --enable-vnc-png) vnc_png="yes" | |
853 | ;; | |
7536ee4b TH |
854 | --disable-vnc-ws) vnc_ws="no" |
855 | ;; | |
856 | --enable-vnc-ws) vnc_ws="yes" | |
857 | ;; | |
443f1376 | 858 | --disable-slirp) slirp="no" |
1d14ffa9 | 859 | ;; |
ee682d27 SW |
860 | --disable-uuid) uuid="no" |
861 | ;; | |
862 | --enable-uuid) uuid="yes" | |
863 | ;; | |
e0e6c8c0 | 864 | --disable-vde) vde="no" |
8a16d273 | 865 | ;; |
dfb278bd JQ |
866 | --enable-vde) vde="yes" |
867 | ;; | |
58952137 VM |
868 | --disable-netmap) netmap="no" |
869 | ;; | |
870 | --enable-netmap) netmap="yes" | |
871 | ;; | |
e37630ca AL |
872 | --disable-xen) xen="no" |
873 | ;; | |
fc321b4b JQ |
874 | --enable-xen) xen="yes" |
875 | ;; | |
eb6fda0f AP |
876 | --disable-xen-pci-passthrough) xen_pci_passthrough="no" |
877 | ;; | |
878 | --enable-xen-pci-passthrough) xen_pci_passthrough="yes" | |
879 | ;; | |
2e4d9fb1 AJ |
880 | --disable-brlapi) brlapi="no" |
881 | ;; | |
4ffcedb6 JQ |
882 | --enable-brlapi) brlapi="yes" |
883 | ;; | |
fb599c9a AZ |
884 | --disable-bluez) bluez="no" |
885 | ;; | |
a20a6f46 JQ |
886 | --enable-bluez) bluez="yes" |
887 | ;; | |
7ba1e619 AL |
888 | --disable-kvm) kvm="no" |
889 | ;; | |
b31a0277 JQ |
890 | --enable-kvm) kvm="yes" |
891 | ;; | |
9195b2c2 SW |
892 | --disable-tcg-interpreter) tcg_interpreter="no" |
893 | ;; | |
894 | --enable-tcg-interpreter) tcg_interpreter="yes" | |
895 | ;; | |
47e98658 CB |
896 | --disable-cap-ng) cap_ng="no" |
897 | ;; | |
898 | --enable-cap-ng) cap_ng="yes" | |
899 | ;; | |
cd4ec0b4 GH |
900 | --disable-spice) spice="no" |
901 | ;; | |
902 | --enable-spice) spice="yes" | |
903 | ;; | |
c589b249 RS |
904 | --disable-libiscsi) libiscsi="no" |
905 | ;; | |
906 | --enable-libiscsi) libiscsi="yes" | |
907 | ;; | |
6542aa9c PL |
908 | --disable-libnfs) libnfs="no" |
909 | ;; | |
910 | --enable-libnfs) libnfs="yes" | |
911 | ;; | |
05c2a3e7 FB |
912 | --enable-profiler) profiler="yes" |
913 | ;; | |
14821030 PB |
914 | --disable-cocoa) cocoa="no" |
915 | ;; | |
c2de5c91 | 916 | --enable-cocoa) |
917 | cocoa="yes" ; | |
918 | sdl="no" ; | |
919 | audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`" | |
1d14ffa9 | 920 | ;; |
cad25d69 | 921 | --disable-system) softmmu="no" |
0a8e90f4 | 922 | ;; |
cad25d69 | 923 | --enable-system) softmmu="yes" |
0a8e90f4 | 924 | ;; |
0953a80f ZA |
925 | --disable-user) |
926 | linux_user="no" ; | |
927 | bsd_user="no" ; | |
0953a80f ZA |
928 | ;; |
929 | --enable-user) ;; | |
831b7825 | 930 | --disable-linux-user) linux_user="no" |
0a8e90f4 | 931 | ;; |
831b7825 TS |
932 | --enable-linux-user) linux_user="yes" |
933 | ;; | |
84778508 BS |
934 | --disable-bsd-user) bsd_user="no" |
935 | ;; | |
936 | --enable-bsd-user) bsd_user="yes" | |
937 | ;; | |
379f6698 PB |
938 | --enable-guest-base) guest_base="yes" |
939 | ;; | |
940 | --disable-guest-base) guest_base="no" | |
941 | ;; | |
40d6444e | 942 | --enable-pie) pie="yes" |
34005a00 | 943 | ;; |
40d6444e | 944 | --disable-pie) pie="no" |
34005a00 | 945 | ;; |
c5937220 PB |
946 | --enable-uname-release=*) uname_release="$optarg" |
947 | ;; | |
85aa5189 FB |
948 | --enable-werror) werror="yes" |
949 | ;; | |
950 | --disable-werror) werror="no" | |
951 | ;; | |
4d3b6f6e AZ |
952 | --disable-curses) curses="no" |
953 | ;; | |
c584a6d0 JQ |
954 | --enable-curses) curses="yes" |
955 | ;; | |
769ce76d AG |
956 | --disable-curl) curl="no" |
957 | ;; | |
788c8196 JQ |
958 | --enable-curl) curl="yes" |
959 | ;; | |
2df87df7 JQ |
960 | --disable-fdt) fdt="no" |
961 | ;; | |
962 | --enable-fdt) fdt="yes" | |
963 | ;; | |
5c6c3a6c CH |
964 | --disable-linux-aio) linux_aio="no" |
965 | ;; | |
966 | --enable-linux-aio) linux_aio="yes" | |
967 | ;; | |
758e8e38 VJ |
968 | --disable-attr) attr="no" |
969 | ;; | |
970 | --enable-attr) attr="yes" | |
971 | ;; | |
77755340 TS |
972 | --disable-blobs) blobs="no" |
973 | ;; | |
4a19f1ec PB |
974 | --with-pkgversion=*) pkgversion=" ($optarg)" |
975 | ;; | |
519175a2 AB |
976 | --with-coroutine=*) coroutine="$optarg" |
977 | ;; | |
70c60c08 SH |
978 | --disable-coroutine-pool) coroutine_pool="no" |
979 | ;; | |
980 | --enable-coroutine-pool) coroutine_pool="yes" | |
981 | ;; | |
a25dba17 | 982 | --disable-docs) docs="no" |
70ec5dc0 | 983 | ;; |
a25dba17 | 984 | --enable-docs) docs="yes" |
83a3ab8b | 985 | ;; |
d5970055 MT |
986 | --disable-vhost-net) vhost_net="no" |
987 | ;; | |
988 | --enable-vhost-net) vhost_net="yes" | |
989 | ;; | |
5e9be92d NB |
990 | --disable-vhost-scsi) vhost_scsi="no" |
991 | ;; | |
992 | --enable-vhost-scsi) vhost_scsi="yes" | |
993 | ;; | |
b1e5fff4 | 994 | --disable-glx) glx="no" |
20ff075b | 995 | ;; |
b1e5fff4 | 996 | --enable-glx) glx="yes" |
20ff075b | 997 | ;; |
f27aaf4b CB |
998 | --disable-rbd) rbd="no" |
999 | ;; | |
1000 | --enable-rbd) rbd="yes" | |
1001 | ;; | |
8c84cf11 ST |
1002 | --disable-xfsctl) xfs="no" |
1003 | ;; | |
1004 | --enable-xfsctl) xfs="yes" | |
1005 | ;; | |
111a38b0 RR |
1006 | --disable-smartcard-nss) smartcard_nss="no" |
1007 | ;; | |
1008 | --enable-smartcard-nss) smartcard_nss="yes" | |
1009 | ;; | |
2b2325ff GH |
1010 | --disable-libusb) libusb="no" |
1011 | ;; | |
1012 | --enable-libusb) libusb="yes" | |
1013 | ;; | |
69354a83 HG |
1014 | --disable-usb-redir) usb_redir="no" |
1015 | ;; | |
1016 | --enable-usb-redir) usb_redir="yes" | |
1017 | ;; | |
1ece9905 AL |
1018 | --disable-zlib-test) zlib="no" |
1019 | ;; | |
607dacd0 QN |
1020 | --enable-lzo) lzo="yes" |
1021 | ;; | |
1022 | --enable-snappy) snappy="yes" | |
1023 | ;; | |
d138cee9 MR |
1024 | --enable-guest-agent) guest_agent="yes" |
1025 | ;; | |
1026 | --disable-guest-agent) guest_agent="no" | |
1027 | ;; | |
d9840e25 TS |
1028 | --with-vss-sdk) vss_win32_sdk="" |
1029 | ;; | |
1030 | --with-vss-sdk=*) vss_win32_sdk="$optarg" | |
1031 | ;; | |
1032 | --without-vss-sdk) vss_win32_sdk="no" | |
1033 | ;; | |
1034 | --with-win-sdk) win_sdk="" | |
1035 | ;; | |
1036 | --with-win-sdk=*) win_sdk="$optarg" | |
1037 | ;; | |
1038 | --without-win-sdk) win_sdk="no" | |
1039 | ;; | |
4b1c11fd DB |
1040 | --enable-tools) want_tools="yes" |
1041 | ;; | |
1042 | --disable-tools) want_tools="no" | |
1043 | ;; | |
f794573e EO |
1044 | --enable-seccomp) seccomp="yes" |
1045 | ;; | |
1046 | --disable-seccomp) seccomp="no" | |
1047 | ;; | |
eb100396 BR |
1048 | --disable-glusterfs) glusterfs="no" |
1049 | ;; | |
1050 | --enable-glusterfs) glusterfs="yes" | |
1051 | ;; | |
583f6e7b SH |
1052 | --disable-virtio-blk-data-plane) virtio_blk_data_plane="no" |
1053 | ;; | |
1054 | --enable-virtio-blk-data-plane) virtio_blk_data_plane="yes" | |
1055 | ;; | |
a4ccabcf AL |
1056 | --disable-gtk) gtk="no" |
1057 | ;; | |
1058 | --enable-gtk) gtk="yes" | |
1059 | ;; | |
2da776db MH |
1060 | --enable-rdma) rdma="yes" |
1061 | ;; | |
1062 | --disable-rdma) rdma="no" | |
1063 | ;; | |
528de90a DB |
1064 | --with-gtkabi=*) gtkabi="$optarg" |
1065 | ;; | |
ab214c29 SB |
1066 | --enable-tpm) tpm="yes" |
1067 | ;; | |
0a12ec87 RJ |
1068 | --disable-libssh2) libssh2="no" |
1069 | ;; | |
1070 | --enable-libssh2) libssh2="yes" | |
1071 | ;; | |
4f18b782 JC |
1072 | --enable-vhdx) vhdx="yes" |
1073 | ;; | |
1074 | --disable-vhdx) vhdx="no" | |
1075 | ;; | |
95c6bff3 BC |
1076 | --disable-quorum) quorum="no" |
1077 | ;; | |
1078 | --enable-quorum) quorum="yes" | |
1079 | ;; | |
7f1559c6 AZ |
1080 | *) echo "ERROR: unknown option $opt"; show_help="yes" |
1081 | ;; | |
7d13299d FB |
1082 | esac |
1083 | done | |
1084 | ||
f6f0b7d9 SW |
1085 | if ! has $python; then |
1086 | error_exit "Python not found. Use --python=/path/to/python" | |
1087 | fi | |
1088 | ||
1089 | # Note that if the Python conditional here evaluates True we will exit | |
1090 | # with status 1 which is a shell 'false' value. | |
1091 | if ! $python -c 'import sys; sys.exit(sys.version_info < (2,4) or sys.version_info >= (3,))'; then | |
1092 | error_exit "Cannot use '$python', Python 2.4 or later is required." \ | |
1093 | "Note that Python 3 or later is not yet supported." \ | |
1094 | "Use --python=/path/to/python to specify a supported Python." | |
1095 | fi | |
1096 | ||
1097 | # The -B switch was added in Python 2.6. | |
1098 | # If it is supplied, compiled files are not written. | |
1099 | # Use it for Python versions which support it. | |
1100 | if $python -B -c 'import sys; sys.exit(0)' 2>/dev/null; then | |
1101 | python="$python -B" | |
1102 | fi | |
1103 | ||
40293e58 | 1104 | case "$cpu" in |
e3608d66 RH |
1105 | ppc) |
1106 | CPU_CFLAGS="-m32" | |
1107 | LDFLAGS="-m32 $LDFLAGS" | |
1108 | ;; | |
1109 | ppc64) | |
1110 | CPU_CFLAGS="-m64" | |
1111 | LDFLAGS="-m64 $LDFLAGS" | |
1112 | ;; | |
9b9c37c3 | 1113 | sparc) |
ed968ff1 | 1114 | LDFLAGS="-m32 $LDFLAGS" |
79f3b12f | 1115 | CPU_CFLAGS="-m32 -mcpu=ultrasparc" |
3142255c | 1116 | ;; |
ed968ff1 | 1117 | sparc64) |
ed968ff1 | 1118 | LDFLAGS="-m64 $LDFLAGS" |
79f3b12f | 1119 | CPU_CFLAGS="-m64 -mcpu=ultrasparc" |
3142255c | 1120 | ;; |
76d83bde | 1121 | s390) |
79f3b12f | 1122 | CPU_CFLAGS="-m31 -march=z990" |
28d7cc49 RH |
1123 | LDFLAGS="-m31 $LDFLAGS" |
1124 | ;; | |
1125 | s390x) | |
79f3b12f | 1126 | CPU_CFLAGS="-m64 -march=z990" |
28d7cc49 | 1127 | LDFLAGS="-m64 $LDFLAGS" |
76d83bde | 1128 | ;; |
40293e58 | 1129 | i386) |
79f3b12f | 1130 | CPU_CFLAGS="-m32" |
0c439cbf | 1131 | LDFLAGS="-m32 $LDFLAGS" |
2b2e59e6 | 1132 | cc_i386='$(CC) -m32' |
40293e58 FB |
1133 | ;; |
1134 | x86_64) | |
79f3b12f | 1135 | CPU_CFLAGS="-m64" |
0c439cbf | 1136 | LDFLAGS="-m64 $LDFLAGS" |
2b2e59e6 | 1137 | cc_i386='$(CC) -m32' |
d2fbca94 | 1138 | ;; |
c72b26ec RH |
1139 | x32) |
1140 | CPU_CFLAGS="-mx32" | |
1141 | LDFLAGS="-mx32 $LDFLAGS" | |
1142 | cc_i386='$(CC) -m32' | |
1143 | ;; | |
30163d89 | 1144 | # No special flags required for other host CPUs |
3142255c BS |
1145 | esac |
1146 | ||
79f3b12f PC |
1147 | QEMU_CFLAGS="$CPU_CFLAGS $QEMU_CFLAGS" |
1148 | EXTRA_CFLAGS="$CPU_CFLAGS $EXTRA_CFLAGS" | |
1149 | ||
60e0df25 PM |
1150 | default_target_list="" |
1151 | ||
6e92f823 PM |
1152 | mak_wilds="" |
1153 | ||
1154 | if [ "$softmmu" = "yes" ]; then | |
1155 | mak_wilds="${mak_wilds} $source_path/default-configs/*-softmmu.mak" | |
60e0df25 | 1156 | fi |
6e92f823 PM |
1157 | if [ "$linux_user" = "yes" ]; then |
1158 | mak_wilds="${mak_wilds} $source_path/default-configs/*-linux-user.mak" | |
60e0df25 | 1159 | fi |
6e92f823 PM |
1160 | if [ "$bsd_user" = "yes" ]; then |
1161 | mak_wilds="${mak_wilds} $source_path/default-configs/*-bsd-user.mak" | |
60e0df25 PM |
1162 | fi |
1163 | ||
6e92f823 PM |
1164 | for config in $mak_wilds; do |
1165 | default_target_list="${default_target_list} $(basename "$config" .mak)" | |
1166 | done | |
1167 | ||
af5db58e PB |
1168 | if test x"$show_help" = x"yes" ; then |
1169 | cat << EOF | |
1170 | ||
1171 | Usage: configure [options] | |
1172 | Options: [defaults in brackets after descriptions] | |
1173 | ||
08fb77ed SW |
1174 | Standard options: |
1175 | --help print this message | |
1176 | --prefix=PREFIX install in PREFIX [$prefix] | |
1177 | --interp-prefix=PREFIX where to find shared libraries, etc. | |
1178 | use %M for cpu name [$interp_prefix] | |
1179 | --target-list=LIST set target list (default: build everything) | |
1180 | $(echo Available targets: $default_target_list | \ | |
1181 | fold -s -w 53 | sed -e 's/^/ /') | |
1182 | ||
1183 | Advanced options (experts only): | |
1184 | --source-path=PATH path of source code [$source_path] | |
1185 | --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix] | |
1186 | --cc=CC use C compiler CC [$cc] | |
1187 | --iasl=IASL use ACPI compiler IASL [$iasl] | |
1188 | --host-cc=CC use C compiler CC [$host_cc] for code run at | |
1189 | build time | |
1190 | --cxx=CXX use C++ compiler CXX [$cxx] | |
1191 | --objcc=OBJCC use Objective-C compiler OBJCC [$objcc] | |
1192 | --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS | |
1193 | --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS | |
1194 | --make=MAKE use specified make [$make] | |
1195 | --install=INSTALL use specified install [$install] | |
1196 | --python=PYTHON use specified python [$python] | |
1197 | --smbd=SMBD use specified smbd [$smbd] | |
1198 | --static enable static build [$static] | |
1199 | --mandir=PATH install man pages in PATH | |
1200 | --datadir=PATH install firmware in PATH$confsuffix | |
1201 | --docdir=PATH install documentation in PATH$confsuffix | |
1202 | --bindir=PATH install binaries in PATH | |
1203 | --libdir=PATH install libraries in PATH | |
1204 | --sysconfdir=PATH install config in PATH$confsuffix | |
1205 | --localstatedir=PATH install local state in PATH (set at runtime on win32) | |
e26110cf | 1206 | --with-confsuffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir [$confsuffix] |
17969268 | 1207 | --enable-modules enable modules support |
08fb77ed SW |
1208 | --enable-debug-tcg enable TCG debugging |
1209 | --disable-debug-tcg disable TCG debugging (default) | |
1210 | --enable-debug-info enable debugging information (default) | |
1211 | --disable-debug-info disable debugging information | |
1212 | --enable-debug enable common debug build options | |
1213 | --enable-sparse enable sparse checker | |
1214 | --disable-sparse disable sparse checker (default) | |
1215 | --disable-strip disable stripping binaries | |
1216 | --disable-werror disable compilation abort on warning | |
1217 | --disable-sdl disable SDL | |
1218 | --enable-sdl enable SDL | |
47c03744 | 1219 | --with-sdlabi select preferred SDL ABI 1.2 or 2.0 |
08fb77ed SW |
1220 | --disable-gtk disable gtk UI |
1221 | --enable-gtk enable gtk UI | |
1222 | --disable-virtfs disable VirtFS | |
1223 | --enable-virtfs enable VirtFS | |
1224 | --disable-vnc disable VNC | |
1225 | --enable-vnc enable VNC | |
1226 | --disable-cocoa disable Cocoa (Mac OS X only) | |
1227 | --enable-cocoa enable Cocoa (default on Mac OS X) | |
1228 | --audio-drv-list=LIST set audio drivers list: | |
1229 | Available drivers: $audio_possible_drivers | |
1230 | --block-drv-whitelist=L Same as --block-drv-rw-whitelist=L | |
1231 | --block-drv-rw-whitelist=L | |
1232 | set block driver read-write whitelist | |
1233 | (affects only QEMU, not qemu-img) | |
1234 | --block-drv-ro-whitelist=L | |
1235 | set block driver read-only whitelist | |
1236 | (affects only QEMU, not qemu-img) | |
1237 | --disable-xen disable xen backend driver support | |
1238 | --enable-xen enable xen backend driver support | |
1239 | --disable-xen-pci-passthrough | |
1240 | --enable-xen-pci-passthrough | |
1241 | --disable-brlapi disable BrlAPI | |
1242 | --enable-brlapi enable BrlAPI | |
1243 | --disable-vnc-tls disable TLS encryption for VNC server | |
1244 | --enable-vnc-tls enable TLS encryption for VNC server | |
1245 | --disable-vnc-sasl disable SASL encryption for VNC server | |
1246 | --enable-vnc-sasl enable SASL encryption for VNC server | |
1247 | --disable-vnc-jpeg disable JPEG lossy compression for VNC server | |
1248 | --enable-vnc-jpeg enable JPEG lossy compression for VNC server | |
1249 | --disable-vnc-png disable PNG compression for VNC server (default) | |
1250 | --enable-vnc-png enable PNG compression for VNC server | |
1251 | --disable-vnc-ws disable Websockets support for VNC server | |
1252 | --enable-vnc-ws enable Websockets support for VNC server | |
1253 | --disable-curses disable curses output | |
1254 | --enable-curses enable curses output | |
1255 | --disable-curl disable curl connectivity | |
1256 | --enable-curl enable curl connectivity | |
1257 | --disable-fdt disable fdt device tree | |
1258 | --enable-fdt enable fdt device tree | |
1259 | --disable-bluez disable bluez stack connectivity | |
1260 | --enable-bluez enable bluez stack connectivity | |
1261 | --disable-slirp disable SLIRP userspace network connectivity | |
1262 | --disable-kvm disable KVM acceleration support | |
1263 | --enable-kvm enable KVM acceleration support | |
1264 | --disable-rdma disable RDMA-based migration support | |
1265 | --enable-rdma enable RDMA-based migration support | |
1266 | --enable-tcg-interpreter enable TCG with bytecode interpreter (TCI) | |
1267 | --enable-system enable all system emulation targets | |
1268 | --disable-system disable all system emulation targets | |
1269 | --enable-user enable supported user emulation targets | |
1270 | --disable-user disable all user emulation targets | |
1271 | --enable-linux-user enable all linux usermode emulation targets | |
1272 | --disable-linux-user disable all linux usermode emulation targets | |
1273 | --enable-bsd-user enable all BSD usermode emulation targets | |
1274 | --disable-bsd-user disable all BSD usermode emulation targets | |
1275 | --enable-guest-base enable GUEST_BASE support for usermode | |
1276 | emulation targets | |
1277 | --disable-guest-base disable GUEST_BASE support | |
1278 | --enable-pie build Position Independent Executables | |
1279 | --disable-pie do not build Position Independent Executables | |
1280 | --fmod-lib path to FMOD library | |
1281 | --fmod-inc path to FMOD includes | |
1282 | --oss-lib path to OSS library | |
1283 | --enable-uname-release=R Return R for uname -r in usermode emulation | |
1284 | --cpu=CPU Build for host CPU [$cpu] | |
1285 | --disable-uuid disable uuid support | |
1286 | --enable-uuid enable uuid support | |
1287 | --disable-vde disable support for vde network | |
1288 | --enable-vde enable support for vde network | |
1289 | --disable-netmap disable support for netmap network | |
1290 | --enable-netmap enable support for netmap network | |
1291 | --disable-linux-aio disable Linux AIO support | |
1292 | --enable-linux-aio enable Linux AIO support | |
1293 | --disable-cap-ng disable libcap-ng support | |
1294 | --enable-cap-ng enable libcap-ng support | |
1295 | --disable-attr disables attr and xattr support | |
1296 | --enable-attr enable attr and xattr support | |
1297 | --disable-blobs disable installing provided firmware blobs | |
1298 | --enable-docs enable documentation build | |
1299 | --disable-docs disable documentation build | |
1300 | --disable-vhost-net disable vhost-net acceleration support | |
1301 | --enable-vhost-net enable vhost-net acceleration support | |
1302 | --enable-trace-backend=B Set trace backend | |
1303 | Available backends: $($python $source_path/scripts/tracetool.py --list-backends) | |
1304 | --with-trace-file=NAME Full PATH,NAME of file to store traces | |
1305 | Default:trace-<pid> | |
1306 | --disable-spice disable spice | |
1307 | --enable-spice enable spice | |
1308 | --enable-rbd enable building the rados block device (rbd) | |
1309 | --disable-libiscsi disable iscsi support | |
1310 | --enable-libiscsi enable iscsi support | |
6542aa9c PL |
1311 | --disable-libnfs disable nfs support |
1312 | --enable-libnfs enable nfs support | |
08fb77ed SW |
1313 | --disable-smartcard-nss disable smartcard nss support |
1314 | --enable-smartcard-nss enable smartcard nss support | |
1315 | --disable-libusb disable libusb (for usb passthrough) | |
1316 | --enable-libusb enable libusb (for usb passthrough) | |
1317 | --disable-usb-redir disable usb network redirection support | |
1318 | --enable-usb-redir enable usb network redirection support | |
607dacd0 QN |
1319 | --enable-lzo enable the support of lzo compression library |
1320 | --enable-snappy enable the support of snappy compression library | |
08fb77ed SW |
1321 | --disable-guest-agent disable building of the QEMU Guest Agent |
1322 | --enable-guest-agent enable building of the QEMU Guest Agent | |
1323 | --with-vss-sdk=SDK-path enable Windows VSS support in QEMU Guest Agent | |
1324 | --with-win-sdk=SDK-path path to Windows Platform SDK (to build VSS .tlb) | |
1325 | --disable-seccomp disable seccomp support | |
1326 | --enable-seccomp enables seccomp support | |
1327 | --with-coroutine=BACKEND coroutine backend. Supported options: | |
1328 | gthread, ucontext, sigaltstack, windows | |
1329 | --disable-coroutine-pool disable coroutine freelist (worse performance) | |
1330 | --enable-coroutine-pool enable coroutine freelist (better performance) | |
1331 | --enable-glusterfs enable GlusterFS backend | |
1332 | --disable-glusterfs disable GlusterFS backend | |
1333 | --enable-gcov enable test coverage analysis with gcov | |
1334 | --gcov=GCOV use specified gcov [$gcov_tool] | |
1335 | --enable-tpm enable TPM support | |
1336 | --disable-libssh2 disable ssh block device support | |
1337 | --enable-libssh2 enable ssh block device support | |
1338 | --disable-vhdx disables support for the Microsoft VHDX image format | |
1339 | --enable-vhdx enable support for the Microsoft VHDX image format | |
95c6bff3 BC |
1340 | --disable-quorum disable quorum block filter support |
1341 | --enable-quorum enable quorum block filter support | |
08fb77ed SW |
1342 | |
1343 | NOTE: The object files are built at the place where configure is launched | |
af5db58e | 1344 | EOF |
af5db58e PB |
1345 | exit 1 |
1346 | fi | |
1347 | ||
359bc95d PM |
1348 | # Now we have handled --enable-tcg-interpreter and know we're not just |
1349 | # printing the help message, bail out if the host CPU isn't supported. | |
1350 | if test "$ARCH" = "unknown"; then | |
1351 | if test "$tcg_interpreter" = "yes" ; then | |
1352 | echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)" | |
1353 | ARCH=tci | |
1354 | else | |
76ad07a4 | 1355 | error_exit "Unsupported CPU = $cpu, try --enable-tcg-interpreter" |
359bc95d PM |
1356 | fi |
1357 | fi | |
1358 | ||
9c83ffd8 PM |
1359 | # Consult white-list to determine whether to enable werror |
1360 | # by default. Only enable by default for git builds | |
1361 | z_version=`cut -f3 -d. $source_path/VERSION` | |
1362 | ||
1363 | if test -z "$werror" ; then | |
1364 | if test -d "$source_path/.git" -a \ | |
1365 | "$linux" = "yes" ; then | |
1366 | werror="yes" | |
1367 | else | |
1368 | werror="no" | |
1369 | fi | |
1370 | fi | |
1371 | ||
8d05095c PB |
1372 | # check that the C compiler works. |
1373 | cat > $TMPC <<EOF | |
75cafad7 | 1374 | int main(void) { return 0; } |
8d05095c PB |
1375 | EOF |
1376 | ||
1377 | if compile_object ; then | |
1378 | : C compiler works ok | |
1379 | else | |
76ad07a4 | 1380 | error_exit "\"$cc\" either does not exist or does not work" |
8d05095c PB |
1381 | fi |
1382 | ||
98b21dcd PM |
1383 | # Check that the C++ compiler exists and works with the C compiler |
1384 | if has $cxx; then | |
1385 | cat > $TMPC <<EOF | |
1386 | int c_function(void); | |
1387 | int main(void) { return c_function(); } | |
1388 | EOF | |
1389 | ||
1390 | compile_object | |
1391 | ||
9c83ffd8 | 1392 | cat > $TMPCXX <<EOF |
98b21dcd PM |
1393 | extern "C" { |
1394 | int c_function(void); | |
1395 | } | |
1396 | int c_function(void) { return 42; } | |
1397 | EOF | |
1398 | ||
9c83ffd8 PM |
1399 | update_cxxflags |
1400 | ||
1401 | if do_cxx $QEMU_CXXFLAGS -o $TMPE $TMPCXX $TMPO $LDFLAGS; then | |
98b21dcd PM |
1402 | # C++ compiler $cxx works ok with C compiler $cc |
1403 | : | |
1404 | else | |
1405 | echo "C++ compiler $cxx does not work with C compiler $cc" | |
1406 | echo "Disabling C++ specific optional code" | |
1407 | cxx= | |
1408 | fi | |
1409 | else | |
1410 | echo "No C++ compiler available; disabling C++ specific optional code" | |
1411 | cxx= | |
1412 | fi | |
1413 | ||
8d05095c PB |
1414 | gcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits" |
1415 | gcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags" | |
1416 | gcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags" | |
37746c5e | 1417 | gcc_flags="-Wendif-labels $gcc_flags" |
c1556a81 | 1418 | gcc_flags="-Wno-initializer-overrides $gcc_flags" |
71429097 | 1419 | gcc_flags="-Wno-string-plus-int $gcc_flags" |
6ca026cb PM |
1420 | # Note that we do not add -Werror to gcc_flags here, because that would |
1421 | # enable it for all configure tests. If a configure test failed due | |
1422 | # to -Werror this would just silently disable some features, | |
1423 | # so it's too error prone. | |
8d05095c PB |
1424 | cat > $TMPC << EOF |
1425 | int main(void) { return 0; } | |
1426 | EOF | |
1427 | for flag in $gcc_flags; do | |
a1d29d6c PM |
1428 | # Use the positive sense of the flag when testing for -Wno-wombat |
1429 | # support (gcc will happily accept the -Wno- form of unknown | |
1430 | # warning options). | |
1431 | optflag="$(echo $flag | sed -e 's/^-Wno-/-W/')" | |
1432 | if compile_prog "-Werror $optflag" "" ; then | |
8d05095c PB |
1433 | QEMU_CFLAGS="$QEMU_CFLAGS $flag" |
1434 | fi | |
1435 | done | |
1436 | ||
37746c5e MAL |
1437 | if compile_prog "-Werror -fstack-protector-all" "" ; then |
1438 | QEMU_CFLAGS="$QEMU_CFLAGS -fstack-protector-all" | |
1439 | LIBTOOLFLAGS="$LIBTOOLFLAGS -Wc,-fstack-protector-all" | |
1440 | fi | |
1441 | ||
cbdd1999 PB |
1442 | # Workaround for http://gcc.gnu.org/PR55489. Happens with -fPIE/-fPIC and |
1443 | # large functions that use global variables. The bug is in all releases of | |
1444 | # GCC, but it became particularly acute in 4.6.x and 4.7.x. It is fixed in | |
1445 | # 4.7.3 and 4.8.0. We should be able to delete this at the end of 2013. | |
1446 | cat > $TMPC << EOF | |
1447 | #if __GNUC__ == 4 && (__GNUC_MINOR__ == 6 || (__GNUC_MINOR__ == 7 && __GNUC_PATCHLEVEL__ <= 2)) | |
1448 | int main(void) { return 0; } | |
1449 | #else | |
1450 | #error No bug in this compiler. | |
1451 | #endif | |
1452 | EOF | |
1453 | if compile_prog "-Werror -fno-gcse" "" ; then | |
1454 | TRANSLATE_OPT_CFLAGS=-fno-gcse | |
1455 | fi | |
1456 | ||
40d6444e | 1457 | if test "$static" = "yes" ; then |
aa0d1f44 PB |
1458 | if test "$modules" = "yes" ; then |
1459 | error_exit "static and modules are mutually incompatible" | |
1460 | fi | |
40d6444e | 1461 | if test "$pie" = "yes" ; then |
76ad07a4 | 1462 | error_exit "static and pie are mutually incompatible" |
40d6444e AK |
1463 | else |
1464 | pie="no" | |
1465 | fi | |
1466 | fi | |
1467 | ||
1468 | if test "$pie" = ""; then | |
1469 | case "$cpu-$targetos" in | |
c72b26ec | 1470 | i386-Linux|x86_64-Linux|x32-Linux|i386-OpenBSD|x86_64-OpenBSD) |
40d6444e AK |
1471 | ;; |
1472 | *) | |
1473 | pie="no" | |
1474 | ;; | |
1475 | esac | |
1476 | fi | |
1477 | ||
1478 | if test "$pie" != "no" ; then | |
1479 | cat > $TMPC << EOF | |
21d4a791 AK |
1480 | |
1481 | #ifdef __linux__ | |
1482 | # define THREAD __thread | |
1483 | #else | |
1484 | # define THREAD | |
1485 | #endif | |
1486 | ||
1487 | static THREAD int tls_var; | |
1488 | ||
1489 | int main(void) { return tls_var; } | |
1490 | ||
40d6444e AK |
1491 | EOF |
1492 | if compile_prog "-fPIE -DPIE" "-pie"; then | |
1493 | QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS" | |
1494 | LDFLAGS="-pie $LDFLAGS" | |
1495 | pie="yes" | |
1496 | if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then | |
1497 | LDFLAGS="-Wl,-z,relro -Wl,-z,now $LDFLAGS" | |
1498 | fi | |
1499 | else | |
1500 | if test "$pie" = "yes"; then | |
76ad07a4 | 1501 | error_exit "PIE not available due to missing toolchain support" |
40d6444e AK |
1502 | else |
1503 | echo "Disabling PIE due to missing toolchain support" | |
1504 | pie="no" | |
1505 | fi | |
1506 | fi | |
46eef33b BS |
1507 | |
1508 | if compile_prog "-fno-pie" "-nopie"; then | |
1509 | CFLAGS_NOPIE="-fno-pie" | |
1510 | LDFLAGS_NOPIE="-nopie" | |
1511 | fi | |
40d6444e AK |
1512 | fi |
1513 | ||
66518bf6 DS |
1514 | # check for broken gcc and libtool in RHEL5 |
1515 | if test -n "$libtool" -a "$pie" != "no" ; then | |
1516 | cat > $TMPC <<EOF | |
1517 | ||
1518 | void *f(unsigned char *buf, int len); | |
1519 | void *g(unsigned char *buf, int len); | |
1520 | ||
1521 | void * | |
1522 | f(unsigned char *buf, int len) | |
1523 | { | |
1524 | return (void*)0L; | |
1525 | } | |
1526 | ||
1527 | void * | |
1528 | g(unsigned char *buf, int len) | |
1529 | { | |
1530 | return f(buf, len); | |
1531 | } | |
1532 | ||
1533 | EOF | |
1534 | if ! libtool_prog; then | |
1535 | echo "Disabling libtool due to broken toolchain support" | |
1536 | libtool= | |
1537 | fi | |
1538 | fi | |
1539 | ||
09dada40 PB |
1540 | ########################################## |
1541 | # __sync_fetch_and_and requires at least -march=i486. Many toolchains | |
1542 | # use i686 as default anyway, but for those that don't, an explicit | |
1543 | # specification is necessary | |
1544 | ||
1545 | if test "$cpu" = "i386"; then | |
1546 | cat > $TMPC << EOF | |
1547 | static int sfaa(int *ptr) | |
1548 | { | |
1549 | return __sync_fetch_and_and(ptr, 0); | |
1550 | } | |
1551 | ||
1552 | int main(void) | |
1553 | { | |
1554 | int val = 42; | |
1405b629 | 1555 | val = __sync_val_compare_and_swap(&val, 0, 1); |
09dada40 PB |
1556 | sfaa(&val); |
1557 | return val; | |
1558 | } | |
1559 | EOF | |
1560 | if ! compile_prog "" "" ; then | |
1561 | QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS" | |
1562 | fi | |
1563 | fi | |
1564 | ||
1565 | ######################################### | |
ec530c81 | 1566 | # Solaris specific configure tool chain decisions |
09dada40 | 1567 | |
ec530c81 | 1568 | if test "$solaris" = "yes" ; then |
6792aa11 LM |
1569 | if has $install; then |
1570 | : | |
1571 | else | |
76ad07a4 PM |
1572 | error_exit "Solaris install program not found. Use --install=/usr/ucb/install or" \ |
1573 | "install fileutils from www.blastwave.org using pkg-get -i fileutils" \ | |
1574 | "to get ginstall which is used by default (which lives in /opt/csw/bin)" | |
ec530c81 | 1575 | fi |
6792aa11 | 1576 | if test "`path_of $install`" = "/usr/sbin/install" ; then |
76ad07a4 PM |
1577 | error_exit "Solaris /usr/sbin/install is not an appropriate install program." \ |
1578 | "try ginstall from the GNU fileutils available from www.blastwave.org" \ | |
1579 | "using pkg-get -i fileutils, or use --install=/usr/ucb/install" | |
ec530c81 | 1580 | fi |
6792aa11 LM |
1581 | if has ar; then |
1582 | : | |
1583 | else | |
ec530c81 | 1584 | if test -f /usr/ccs/bin/ar ; then |
76ad07a4 PM |
1585 | error_exit "No path includes ar" \ |
1586 | "Add /usr/ccs/bin to your path and rerun configure" | |
ec530c81 | 1587 | fi |
76ad07a4 | 1588 | error_exit "No path includes ar" |
ec530c81 | 1589 | fi |
5fafdf24 | 1590 | fi |
ec530c81 | 1591 | |
afb63ebd | 1592 | if test -z "${target_list+xxx}" ; then |
121afa9e AL |
1593 | target_list="$default_target_list" |
1594 | else | |
1595 | target_list=`echo "$target_list" | sed -e 's/,/ /g'` | |
1596 | fi | |
25b48338 PM |
1597 | |
1598 | # Check that we recognised the target name; this allows a more | |
1599 | # friendly error message than if we let it fall through. | |
1600 | for target in $target_list; do | |
1601 | case " $default_target_list " in | |
1602 | *" $target "*) | |
1603 | ;; | |
1604 | *) | |
1605 | error_exit "Unknown target name '$target'" | |
1606 | ;; | |
1607 | esac | |
1608 | done | |
1609 | ||
f55fe278 PB |
1610 | # see if system emulation was really requested |
1611 | case " $target_list " in | |
1612 | *"-softmmu "*) softmmu=yes | |
1613 | ;; | |
1614 | *) softmmu=no | |
1615 | ;; | |
1616 | esac | |
5327cf48 | 1617 | |
249247c9 JQ |
1618 | feature_not_found() { |
1619 | feature=$1 | |
21684af0 | 1620 | remedy=$2 |
249247c9 | 1621 | |
76ad07a4 | 1622 | error_exit "User requested feature $feature" \ |
21684af0 SS |
1623 | "configure was not able to find it." \ |
1624 | "$remedy" | |
249247c9 JQ |
1625 | } |
1626 | ||
7d13299d FB |
1627 | # --- |
1628 | # big/little endian test | |
1629 | cat > $TMPC << EOF | |
61cc919f MF |
1630 | short big_endian[] = { 0x4269, 0x4765, 0x4e64, 0x4961, 0x4e00, 0, }; |
1631 | short little_endian[] = { 0x694c, 0x7454, 0x654c, 0x6e45, 0x6944, 0x6e41, 0, }; | |
1632 | extern int foo(short *, short *); | |
1633 | int main(int argc, char *argv[]) { | |
1634 | return foo(big_endian, little_endian); | |
7d13299d FB |
1635 | } |
1636 | EOF | |
1637 | ||
61cc919f MF |
1638 | if compile_object ; then |
1639 | if grep -q BiGeNdIaN $TMPO ; then | |
1640 | bigendian="yes" | |
1641 | elif grep -q LiTtLeEnDiAn $TMPO ; then | |
1642 | bigendian="no" | |
1643 | else | |
1644 | echo big/little test failed | |
21d89f84 | 1645 | fi |
61cc919f MF |
1646 | else |
1647 | echo big/little test failed | |
7d13299d FB |
1648 | fi |
1649 | ||
779ab5e3 SW |
1650 | ########################################## |
1651 | # pkg-config probe | |
1652 | ||
1653 | if ! has "$pkg_config_exe"; then | |
76ad07a4 | 1654 | error_exit "pkg-config binary '$pkg_config_exe' not found" |
779ab5e3 SW |
1655 | fi |
1656 | ||
b0a47e79 JQ |
1657 | ########################################## |
1658 | # NPTL probe | |
1659 | ||
24cb36a6 | 1660 | if test "$linux_user" = "yes"; then |
b0a47e79 | 1661 | cat > $TMPC <<EOF |
bd0c5661 | 1662 | #include <sched.h> |
30813cea | 1663 | #include <linux/futex.h> |
182eacc0 | 1664 | int main(void) { |
bd0c5661 PB |
1665 | #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) |
1666 | #error bork | |
1667 | #endif | |
182eacc0 | 1668 | return 0; |
bd0c5661 PB |
1669 | } |
1670 | EOF | |
24cb36a6 | 1671 | if ! compile_object ; then |
21684af0 | 1672 | feature_not_found "nptl" "Install glibc and linux kernel headers." |
b0a47e79 | 1673 | fi |
bd0c5661 PB |
1674 | fi |
1675 | ||
ac62922e AZ |
1676 | ########################################## |
1677 | # zlib check | |
1678 | ||
1ece9905 AL |
1679 | if test "$zlib" != "no" ; then |
1680 | cat > $TMPC << EOF | |
ac62922e AZ |
1681 | #include <zlib.h> |
1682 | int main(void) { zlibVersion(); return 0; } | |
1683 | EOF | |
1ece9905 AL |
1684 | if compile_prog "" "-lz" ; then |
1685 | : | |
1686 | else | |
76ad07a4 PM |
1687 | error_exit "zlib check failed" \ |
1688 | "Make sure to have the zlib libs and headers installed." | |
1ece9905 | 1689 | fi |
ac62922e | 1690 | fi |
eb0ecd5a | 1691 | LIBS="$LIBS -lz" |
ac62922e | 1692 | |
607dacd0 QN |
1693 | ########################################## |
1694 | # lzo check | |
1695 | ||
1696 | if test "$lzo" != "no" ; then | |
1697 | cat > $TMPC << EOF | |
1698 | #include <lzo/lzo1x.h> | |
1699 | int main(void) { lzo_version(); return 0; } | |
1700 | EOF | |
1701 | if compile_prog "" "-llzo2" ; then | |
1702 | : | |
1703 | else | |
1704 | error_exit "lzo check failed" \ | |
1705 | "Make sure to have the lzo libs and headers installed." | |
1706 | fi | |
1707 | ||
1708 | libs_softmmu="$libs_softmmu -llzo2" | |
1709 | fi | |
1710 | ||
1711 | ########################################## | |
1712 | # snappy check | |
1713 | ||
1714 | if test "$snappy" != "no" ; then | |
1715 | cat > $TMPC << EOF | |
1716 | #include <snappy-c.h> | |
1717 | int main(void) { snappy_max_compressed_length(4096); return 0; } | |
1718 | EOF | |
1719 | if compile_prog "" "-lsnappy" ; then | |
1720 | : | |
1721 | else | |
1722 | error_exit "snappy check failed" \ | |
1723 | "Make sure to have the snappy libs and headers installed." | |
1724 | fi | |
1725 | ||
1726 | libs_softmmu="$libs_softmmu -lsnappy" | |
1727 | fi | |
1728 | ||
f794573e EO |
1729 | ########################################## |
1730 | # libseccomp check | |
1731 | ||
1732 | if test "$seccomp" != "no" ; then | |
65d5d3f9 | 1733 | if $pkg_config --atleast-version=2.1.0 libseccomp; then |
b4451996 | 1734 | libs_softmmu="$libs_softmmu `$pkg_config --libs libseccomp`" |
372e47e9 | 1735 | QEMU_CFLAGS="$QEMU_CFLAGS `$pkg_config --cflags libseccomp`" |
f794573e EO |
1736 | seccomp="yes" |
1737 | else | |
f794573e | 1738 | if test "$seccomp" = "yes"; then |
21684af0 | 1739 | feature_not_found "libseccomp" "Install libseccomp devel >= 2.1.0" |
f794573e | 1740 | fi |
e84d5956 | 1741 | seccomp="no" |
f794573e EO |
1742 | fi |
1743 | fi | |
e37630ca AL |
1744 | ########################################## |
1745 | # xen probe | |
1746 | ||
fc321b4b | 1747 | if test "$xen" != "no" ; then |
b2266bee | 1748 | xen_libs="-lxenstore -lxenctrl -lxenguest" |
d5b93ddf | 1749 | |
50ced5b3 SW |
1750 | # First we test whether Xen headers and libraries are available. |
1751 | # If no, we are done and there is no Xen support. | |
1752 | # If yes, more tests are run to detect the Xen version. | |
1753 | ||
1754 | # Xen (any) | |
b2266bee | 1755 | cat > $TMPC <<EOF |
e37630ca | 1756 | #include <xenctrl.h> |
50ced5b3 SW |
1757 | int main(void) { |
1758 | return 0; | |
1759 | } | |
1760 | EOF | |
1761 | if ! compile_prog "" "$xen_libs" ; then | |
1762 | # Xen not found | |
1763 | if test "$xen" = "yes" ; then | |
21684af0 | 1764 | feature_not_found "xen" "Install xen devel" |
50ced5b3 SW |
1765 | fi |
1766 | xen=no | |
1767 | ||
1768 | # Xen unstable | |
69deef08 PM |
1769 | elif |
1770 | cat > $TMPC <<EOF && | |
50ced5b3 | 1771 | #include <xenctrl.h> |
e108a3c1 | 1772 | #include <xenstore.h> |
d5b93ddf AP |
1773 | #include <stdint.h> |
1774 | #include <xen/hvm/hvm_info_table.h> | |
1775 | #if !defined(HVM_MAX_VCPUS) | |
1776 | # error HVM_MAX_VCPUS not defined | |
1777 | #endif | |
8688e065 SS |
1778 | int main(void) { |
1779 | xc_interface *xc; | |
1780 | xs_daemon_open(); | |
1781 | xc = xc_interface_open(0, 0, 0); | |
1782 | xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); | |
1783 | xc_gnttab_open(NULL, 0); | |
1784 | xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); | |
1785 | xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); | |
1786 | return 0; | |
1787 | } | |
1788 | EOF | |
1789 | compile_prog "" "$xen_libs" | |
69deef08 | 1790 | then |
8688e065 SS |
1791 | xen_ctrl_version=420 |
1792 | xen=yes | |
1793 | ||
69deef08 PM |
1794 | elif |
1795 | cat > $TMPC <<EOF && | |
8688e065 SS |
1796 | #include <xenctrl.h> |
1797 | #include <xs.h> | |
1798 | #include <stdint.h> | |
1799 | #include <xen/hvm/hvm_info_table.h> | |
1800 | #if !defined(HVM_MAX_VCPUS) | |
1801 | # error HVM_MAX_VCPUS not defined | |
1802 | #endif | |
d5b93ddf | 1803 | int main(void) { |
d5b93ddf | 1804 | xs_daemon_open(); |
9b4c0b56 | 1805 | xc_interface_open(0, 0, 0); |
d5b93ddf AP |
1806 | xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); |
1807 | xc_gnttab_open(NULL, 0); | |
b87de24e | 1808 | xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); |
d5b93ddf AP |
1809 | return 0; |
1810 | } | |
e37630ca | 1811 | EOF |
50ced5b3 | 1812 | compile_prog "" "$xen_libs" |
69deef08 | 1813 | then |
d5b93ddf | 1814 | xen_ctrl_version=410 |
fc321b4b | 1815 | xen=yes |
d5b93ddf AP |
1816 | |
1817 | # Xen 4.0.0 | |
69deef08 PM |
1818 | elif |
1819 | cat > $TMPC <<EOF && | |
d5b93ddf AP |
1820 | #include <xenctrl.h> |
1821 | #include <xs.h> | |
1822 | #include <stdint.h> | |
1823 | #include <xen/hvm/hvm_info_table.h> | |
1824 | #if !defined(HVM_MAX_VCPUS) | |
1825 | # error HVM_MAX_VCPUS not defined | |
1826 | #endif | |
1827 | int main(void) { | |
b87de24e AP |
1828 | struct xen_add_to_physmap xatp = { |
1829 | .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0, | |
1830 | }; | |
d5b93ddf AP |
1831 | xs_daemon_open(); |
1832 | xc_interface_open(); | |
1833 | xc_gnttab_open(); | |
1834 | xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); | |
b87de24e | 1835 | xc_memory_op(0, XENMEM_add_to_physmap, &xatp); |
d5b93ddf AP |
1836 | return 0; |
1837 | } | |
1838 | EOF | |
1839 | compile_prog "" "$xen_libs" | |
69deef08 | 1840 | then |
d5b93ddf AP |
1841 | xen_ctrl_version=400 |
1842 | xen=yes | |
1843 | ||
b87de24e | 1844 | # Xen 3.4.0 |
69deef08 PM |
1845 | elif |
1846 | cat > $TMPC <<EOF && | |
b87de24e AP |
1847 | #include <xenctrl.h> |
1848 | #include <xs.h> | |
1849 | int main(void) { | |
1850 | struct xen_add_to_physmap xatp = { | |
1851 | .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0, | |
1852 | }; | |
1853 | xs_daemon_open(); | |
1854 | xc_interface_open(); | |
1855 | xc_gnttab_open(); | |
1856 | xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); | |
1857 | xc_memory_op(0, XENMEM_add_to_physmap, &xatp); | |
1858 | return 0; | |
1859 | } | |
1860 | EOF | |
1861 | compile_prog "" "$xen_libs" | |
69deef08 | 1862 | then |
b87de24e AP |
1863 | xen_ctrl_version=340 |
1864 | xen=yes | |
1865 | ||
1866 | # Xen 3.3.0 | |
69deef08 PM |
1867 | elif |
1868 | cat > $TMPC <<EOF && | |
d5b93ddf AP |
1869 | #include <xenctrl.h> |
1870 | #include <xs.h> | |
1871 | int main(void) { | |
1872 | xs_daemon_open(); | |
1873 | xc_interface_open(); | |
1874 | xc_gnttab_open(); | |
1875 | xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); | |
1876 | return 0; | |
1877 | } | |
1878 | EOF | |
1879 | compile_prog "" "$xen_libs" | |
69deef08 | 1880 | then |
d5b93ddf AP |
1881 | xen_ctrl_version=330 |
1882 | xen=yes | |
1883 | ||
50ced5b3 | 1884 | # Xen version unsupported |
b2266bee | 1885 | else |
fc321b4b | 1886 | if test "$xen" = "yes" ; then |
21684af0 | 1887 | feature_not_found "xen (unsupported version)" "Install supported xen (e.g. 4.0, 3.4, 3.3)" |
fc321b4b JQ |
1888 | fi |
1889 | xen=no | |
b2266bee | 1890 | fi |
d5b93ddf AP |
1891 | |
1892 | if test "$xen" = yes; then | |
1893 | libs_softmmu="$xen_libs $libs_softmmu" | |
1894 | fi | |
e37630ca AL |
1895 | fi |
1896 | ||
eb6fda0f AP |
1897 | if test "$xen_pci_passthrough" != "no"; then |
1898 | if test "$xen" = "yes" && test "$linux" = "yes" && | |
1899 | test "$xen_ctrl_version" -ge 340; then | |
1900 | xen_pci_passthrough=yes | |
1901 | else | |
1902 | if test "$xen_pci_passthrough" = "yes"; then | |
eb6fda0f | 1903 | if test "$xen_ctrl_version" -lt 340; then |
76ad07a4 PM |
1904 | error_exit "User requested feature Xen PCI Passthrough" \ |
1905 | "This feature does not work with Xen 3.3" | |
eb6fda0f | 1906 | fi |
76ad07a4 PM |
1907 | error_exit "User requested feature Xen PCI Passthrough" \ |
1908 | " but this feature requires /sys from Linux" | |
eb6fda0f AP |
1909 | fi |
1910 | xen_pci_passthrough=no | |
1911 | fi | |
1912 | fi | |
1913 | ||
44dc0ca3 AL |
1914 | ########################################## |
1915 | # libtool probe | |
1916 | ||
3f534581 | 1917 | if ! has $libtool; then |
44dc0ca3 | 1918 | libtool= |
44dc0ca3 AL |
1919 | fi |
1920 | ||
8e515b12 PM |
1921 | # MacOSX ships with a libtool which isn't the GNU one; weed this |
1922 | # out by checking whether libtool supports the --version switch | |
1923 | if test -n "$libtool"; then | |
1924 | if ! "$libtool" --version >/dev/null 2>&1; then | |
1925 | libtool= | |
1926 | fi | |
1927 | fi | |
1928 | ||
dfffc653 JQ |
1929 | ########################################## |
1930 | # Sparse probe | |
1931 | if test "$sparse" != "no" ; then | |
0dba6195 | 1932 | if has cgcc; then |
dfffc653 JQ |
1933 | sparse=yes |
1934 | else | |
1935 | if test "$sparse" = "yes" ; then | |
21684af0 | 1936 | feature_not_found "sparse" "Install sparse binary" |
dfffc653 JQ |
1937 | fi |
1938 | sparse=no | |
1939 | fi | |
1940 | fi | |
1941 | ||
a4ccabcf AL |
1942 | ########################################## |
1943 | # GTK probe | |
1944 | ||
1945 | if test "$gtk" != "no"; then | |
528de90a DB |
1946 | gtkpackage="gtk+-$gtkabi" |
1947 | if test "$gtkabi" = "3.0" ; then | |
1948 | gtkversion="3.0.0" | |
1949 | vtepackage="vte-2.90" | |
1950 | vteversion="0.32.0" | |
1951 | else | |
1952 | gtkversion="2.18.0" | |
1953 | vtepackage="vte" | |
1954 | vteversion="0.24.0" | |
1955 | fi | |
0d185e63 PM |
1956 | if ! $pkg_config --exists "$gtkpackage >= $gtkversion"; then |
1957 | if test "$gtk" = "yes" ; then | |
21684af0 | 1958 | feature_not_found "gtk" "Install gtk2 or gtk3 (requires --with-gtkabi=3.0 option to configure) devel" |
0d185e63 PM |
1959 | fi |
1960 | gtk="no" | |
1961 | elif ! $pkg_config --exists "$vtepackage >= $vteversion"; then | |
1962 | if test "$gtk" = "yes" ; then | |
1963 | error_exit "libvte not found (required for gtk support)" | |
1964 | fi | |
1965 | gtk="no" | |
1966 | else | |
ca871ec8 SW |
1967 | gtk_cflags=`$pkg_config --cflags $gtkpackage` |
1968 | gtk_libs=`$pkg_config --libs $gtkpackage` | |
1969 | vte_cflags=`$pkg_config --cflags $vtepackage` | |
1970 | vte_libs=`$pkg_config --libs $vtepackage` | |
a4ccabcf AL |
1971 | libs_softmmu="$gtk_libs $vte_libs $libs_softmmu" |
1972 | gtk="yes" | |
a4ccabcf AL |
1973 | fi |
1974 | fi | |
1975 | ||
11d9f695 FB |
1976 | ########################################## |
1977 | # SDL probe | |
1978 | ||
3ec87ffe PB |
1979 | # Look for sdl configuration program (pkg-config or sdl-config). Try |
1980 | # sdl-config even without cross prefix, and favour pkg-config over sdl-config. | |
47c03744 DA |
1981 | |
1982 | if test $sdlabi = "2.0"; then | |
1983 | sdl_config=$sdl2_config | |
1984 | sdlname=sdl2 | |
1985 | sdlconfigname=sdl2_config | |
1986 | else | |
1987 | sdlname=sdl | |
1988 | sdlconfigname=sdl_config | |
1989 | fi | |
1990 | ||
1991 | if test "`basename $sdl_config`" != $sdlconfigname && ! has ${sdl_config}; then | |
1992 | sdl_config=$sdlconfigname | |
3ec87ffe PB |
1993 | fi |
1994 | ||
47c03744 DA |
1995 | if $pkg_config $sdlname --exists; then |
1996 | sdlconfig="$pkg_config $sdlname" | |
9316f803 | 1997 | _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'` |
3ec87ffe PB |
1998 | elif has ${sdl_config}; then |
1999 | sdlconfig="$sdl_config" | |
9316f803 | 2000 | _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'` |
a0dfd8a4 LM |
2001 | else |
2002 | if test "$sdl" = "yes" ; then | |
21684af0 | 2003 | feature_not_found "sdl" "Install SDL devel" |
a0dfd8a4 LM |
2004 | fi |
2005 | sdl=no | |
9316f803 | 2006 | fi |
29e5bada | 2007 | if test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then |
3ec87ffe PB |
2008 | echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2 |
2009 | fi | |
11d9f695 | 2010 | |
9316f803 | 2011 | sdl_too_old=no |
c4198157 | 2012 | if test "$sdl" != "no" ; then |
ac119f9d | 2013 | cat > $TMPC << EOF |
11d9f695 FB |
2014 | #include <SDL.h> |
2015 | #undef main /* We don't want SDL to override our main() */ | |
2016 | int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } | |
2017 | EOF | |
9316f803 | 2018 | sdl_cflags=`$sdlconfig --cflags 2> /dev/null` |
74f42e18 T |
2019 | if test "$static" = "yes" ; then |
2020 | sdl_libs=`$sdlconfig --static-libs 2>/dev/null` | |
2021 | else | |
2022 | sdl_libs=`$sdlconfig --libs 2> /dev/null` | |
2023 | fi | |
52166aa0 | 2024 | if compile_prog "$sdl_cflags" "$sdl_libs" ; then |
ac119f9d JQ |
2025 | if test "$_sdlversion" -lt 121 ; then |
2026 | sdl_too_old=yes | |
2027 | else | |
2028 | if test "$cocoa" = "no" ; then | |
2029 | sdl=yes | |
2030 | fi | |
2031 | fi | |
cd01b4a3 | 2032 | |
67c274d3 | 2033 | # static link with sdl ? (note: sdl.pc's --static --libs is broken) |
ac119f9d | 2034 | if test "$sdl" = "yes" -a "$static" = "yes" ; then |
67c274d3 | 2035 | if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then |
f8aa6c7b SW |
2036 | sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`" |
2037 | sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`" | |
ac119f9d | 2038 | fi |
52166aa0 | 2039 | if compile_prog "$sdl_cflags" "$sdl_libs" ; then |
ac119f9d JQ |
2040 | : |
2041 | else | |
2042 | sdl=no | |
2043 | fi | |
2044 | fi # static link | |
c4198157 JQ |
2045 | else # sdl not found |
2046 | if test "$sdl" = "yes" ; then | |
21684af0 | 2047 | feature_not_found "sdl" "Install SDL devel" |
c4198157 JQ |
2048 | fi |
2049 | sdl=no | |
ac119f9d | 2050 | fi # sdl compile test |
a68551bc | 2051 | fi |
11d9f695 | 2052 | |
5368a422 | 2053 | if test "$sdl" = "yes" ; then |
ac119f9d | 2054 | cat > $TMPC <<EOF |
5368a422 AL |
2055 | #include <SDL.h> |
2056 | #if defined(SDL_VIDEO_DRIVER_X11) | |
2057 | #include <X11/XKBlib.h> | |
2058 | #else | |
2059 | #error No x11 support | |
2060 | #endif | |
2061 | int main(void) { return 0; } | |
2062 | EOF | |
52166aa0 | 2063 | if compile_prog "$sdl_cflags" "$sdl_libs" ; then |
ac119f9d JQ |
2064 | sdl_libs="$sdl_libs -lX11" |
2065 | fi | |
0705667e | 2066 | libs_softmmu="$sdl_libs $libs_softmmu" |
5368a422 AL |
2067 | fi |
2068 | ||
2da776db MH |
2069 | ########################################## |
2070 | # RDMA needs OpenFabrics libraries | |
2071 | if test "$rdma" != "no" ; then | |
2072 | cat > $TMPC <<EOF | |
2073 | #include <rdma/rdma_cma.h> | |
2074 | int main(void) { return 0; } | |
2075 | EOF | |
2076 | rdma_libs="-lrdmacm -libverbs" | |
2077 | if compile_prog "" "$rdma_libs" ; then | |
2078 | rdma="yes" | |
2079 | libs_softmmu="$libs_softmmu $rdma_libs" | |
2080 | else | |
2081 | if test "$rdma" = "yes" ; then | |
2082 | error_exit \ | |
2083 | " OpenFabrics librdmacm/libibverbs not present." \ | |
2084 | " Your options:" \ | |
2085 | " (1) Fast: Install infiniband packages from your distro." \ | |
2086 | " (2) Cleanest: Install libraries from www.openfabrics.org" \ | |
2087 | " (3) Also: Install softiwarp if you don't have RDMA hardware" | |
2088 | fi | |
2089 | rdma="no" | |
2090 | fi | |
2091 | fi | |
2092 | ||
8d5d2d4c | 2093 | ########################################## |
7536ee4b TH |
2094 | # VNC TLS/WS detection |
2095 | if test "$vnc" = "yes" -a \( "$vnc_tls" != "no" -o "$vnc_ws" != "no" \) ; then | |
1be10ad2 | 2096 | cat > $TMPC <<EOF |
ae6b5e5a AL |
2097 | #include <gnutls/gnutls.h> |
2098 | int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; } | |
2099 | EOF | |
a8bd70ad PB |
2100 | vnc_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null` |
2101 | vnc_tls_libs=`$pkg_config --libs gnutls 2> /dev/null` | |
1be10ad2 | 2102 | if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then |
7536ee4b TH |
2103 | if test "$vnc_tls" != "no" ; then |
2104 | vnc_tls=yes | |
2105 | fi | |
2106 | if test "$vnc_ws" != "no" ; then | |
2107 | vnc_ws=yes | |
2108 | fi | |
1be10ad2 | 2109 | libs_softmmu="$vnc_tls_libs $libs_softmmu" |
ca273d58 | 2110 | QEMU_CFLAGS="$QEMU_CFLAGS $vnc_tls_cflags" |
1be10ad2 JQ |
2111 | else |
2112 | if test "$vnc_tls" = "yes" ; then | |
21684af0 | 2113 | feature_not_found "vnc-tls" "Install gnutls devel" |
ae6b5e5a | 2114 | fi |
7536ee4b | 2115 | if test "$vnc_ws" = "yes" ; then |
21684af0 | 2116 | feature_not_found "vnc-ws" "Install gnutls devel" |
7536ee4b | 2117 | fi |
1be10ad2 | 2118 | vnc_tls=no |
7536ee4b | 2119 | vnc_ws=no |
1be10ad2 | 2120 | fi |
8d5d2d4c TS |
2121 | fi |
2122 | ||
95c6bff3 BC |
2123 | ########################################## |
2124 | # Quorum probe (check for gnutls) | |
2125 | if test "$quorum" != "no" ; then | |
2126 | cat > $TMPC <<EOF | |
2127 | #include <gnutls/gnutls.h> | |
2128 | #include <gnutls/crypto.h> | |
2129 | int main(void) {char data[4096], digest[32]; | |
2130 | gnutls_hash_fast(GNUTLS_DIG_SHA256, data, 4096, digest); | |
2131 | return 0; | |
2132 | } | |
2133 | EOF | |
2134 | quorum_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null` | |
2135 | quorum_tls_libs=`$pkg_config --libs gnutls 2> /dev/null` | |
2136 | if compile_prog "$quorum_tls_cflags" "$quorum_tls_libs" ; then | |
2137 | qcow_tls=yes | |
2138 | libs_softmmu="$quorum_tls_libs $libs_softmmu" | |
2139 | libs_tools="$quorum_tls_libs $libs_softmmu" | |
2140 | QEMU_CFLAGS="$QEMU_CFLAGS $quorum_tls_cflags" | |
2141 | else | |
2142 | echo "gnutls > 2.10.0 required to compile Quorum" | |
2143 | exit 1 | |
2144 | fi | |
2145 | fi | |
2146 | ||
2f9606b3 AL |
2147 | ########################################## |
2148 | # VNC SASL detection | |
821601ea | 2149 | if test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then |
ea784e3b | 2150 | cat > $TMPC <<EOF |
2f9606b3 AL |
2151 | #include <sasl/sasl.h> |
2152 | #include <stdio.h> | |
2153 | int main(void) { sasl_server_init(NULL, "qemu"); return 0; } | |
2154 | EOF | |
ea784e3b JQ |
2155 | # Assuming Cyrus-SASL installed in /usr prefix |
2156 | vnc_sasl_cflags="" | |
2157 | vnc_sasl_libs="-lsasl2" | |
2158 | if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then | |
2159 | vnc_sasl=yes | |
2160 | libs_softmmu="$vnc_sasl_libs $libs_softmmu" | |
ca273d58 | 2161 | QEMU_CFLAGS="$QEMU_CFLAGS $vnc_sasl_cflags" |
ea784e3b JQ |
2162 | else |
2163 | if test "$vnc_sasl" = "yes" ; then | |
21684af0 | 2164 | feature_not_found "vnc-sasl" "Install Cyrus SASL devel" |
2f9606b3 | 2165 | fi |
ea784e3b JQ |
2166 | vnc_sasl=no |
2167 | fi | |
2f9606b3 AL |
2168 | fi |
2169 | ||
2f6f5c7a CC |
2170 | ########################################## |
2171 | # VNC JPEG detection | |
821601ea | 2172 | if test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then |
2f6f5c7a CC |
2173 | cat > $TMPC <<EOF |
2174 | #include <stdio.h> | |
2175 | #include <jpeglib.h> | |
2176 | int main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; } | |
2177 | EOF | |
2178 | vnc_jpeg_cflags="" | |
2179 | vnc_jpeg_libs="-ljpeg" | |
2180 | if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then | |
2181 | vnc_jpeg=yes | |
2182 | libs_softmmu="$vnc_jpeg_libs $libs_softmmu" | |
ca273d58 | 2183 | QEMU_CFLAGS="$QEMU_CFLAGS $vnc_jpeg_cflags" |
2f6f5c7a CC |
2184 | else |
2185 | if test "$vnc_jpeg" = "yes" ; then | |
21684af0 | 2186 | feature_not_found "vnc-jpeg" "Install libjpeg-turbo devel" |
2f6f5c7a CC |
2187 | fi |
2188 | vnc_jpeg=no | |
2189 | fi | |
2190 | fi | |
2191 | ||
efe556ad CC |
2192 | ########################################## |
2193 | # VNC PNG detection | |
821601ea | 2194 | if test "$vnc" = "yes" -a "$vnc_png" != "no" ; then |
efe556ad CC |
2195 | cat > $TMPC <<EOF |
2196 | //#include <stdio.h> | |
2197 | #include <png.h> | |
832ce9c2 | 2198 | #include <stddef.h> |
efe556ad CC |
2199 | int main(void) { |
2200 | png_structp png_ptr; | |
2201 | png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); | |
7edc3fed | 2202 | return png_ptr != 0; |
efe556ad CC |
2203 | } |
2204 | EOF | |
65d5d3f9 | 2205 | if $pkg_config libpng --exists; then |
ca871ec8 SW |
2206 | vnc_png_cflags=`$pkg_config libpng --cflags` |
2207 | vnc_png_libs=`$pkg_config libpng --libs` | |
9af8025e | 2208 | else |
efe556ad CC |
2209 | vnc_png_cflags="" |
2210 | vnc_png_libs="-lpng" | |
9af8025e | 2211 | fi |
efe556ad CC |
2212 | if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then |
2213 | vnc_png=yes | |
2214 | libs_softmmu="$vnc_png_libs $libs_softmmu" | |
9af8025e | 2215 | QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags" |
efe556ad CC |
2216 | else |
2217 | if test "$vnc_png" = "yes" ; then | |
21684af0 | 2218 | feature_not_found "vnc-png" "Install libpng devel" |
efe556ad CC |
2219 | fi |
2220 | vnc_png=no | |
2221 | fi | |
2222 | fi | |
2223 | ||
76655d6d AL |
2224 | ########################################## |
2225 | # fnmatch() probe, used for ACL routines | |
2226 | fnmatch="no" | |
2227 | cat > $TMPC << EOF | |
2228 | #include <fnmatch.h> | |
2229 | int main(void) | |
2230 | { | |
2231 | fnmatch("foo", "foo", 0); | |
2232 | return 0; | |
2233 | } | |
2234 | EOF | |
52166aa0 | 2235 | if compile_prog "" "" ; then |
76655d6d AL |
2236 | fnmatch="yes" |
2237 | fi | |
2238 | ||
ee682d27 SW |
2239 | ########################################## |
2240 | # uuid_generate() probe, used for vdi block driver | |
2d16c8e9 PM |
2241 | # Note that on some systems (notably MacOSX) no extra library |
2242 | # need be linked to get the uuid functions. | |
ee682d27 SW |
2243 | if test "$uuid" != "no" ; then |
2244 | uuid_libs="-luuid" | |
2245 | cat > $TMPC << EOF | |
2246 | #include <uuid/uuid.h> | |
2247 | int main(void) | |
2248 | { | |
2249 | uuid_t my_uuid; | |
2250 | uuid_generate(my_uuid); | |
2251 | return 0; | |
2252 | } | |
2253 | EOF | |
2d16c8e9 PM |
2254 | if compile_prog "" "" ; then |
2255 | uuid="yes" | |
2256 | elif compile_prog "" "$uuid_libs" ; then | |
ee682d27 SW |
2257 | uuid="yes" |
2258 | libs_softmmu="$uuid_libs $libs_softmmu" | |
2259 | libs_tools="$uuid_libs $libs_tools" | |
2260 | else | |
2261 | if test "$uuid" = "yes" ; then | |
21684af0 | 2262 | feature_not_found "uuid" "Install libuuid devel" |
ee682d27 SW |
2263 | fi |
2264 | uuid=no | |
2265 | fi | |
2266 | fi | |
2267 | ||
4f18b782 JC |
2268 | if test "$vhdx" = "yes" ; then |
2269 | if test "$uuid" = "no" ; then | |
2270 | error_exit "uuid required for VHDX support" | |
2271 | fi | |
2272 | elif test "$vhdx" != "no" ; then | |
2273 | if test "$uuid" = "yes" ; then | |
2274 | vhdx=yes | |
2275 | else | |
2276 | vhdx=no | |
2277 | fi | |
2278 | fi | |
2279 | ||
dce512de CH |
2280 | ########################################## |
2281 | # xfsctl() probe, used for raw-posix | |
2282 | if test "$xfs" != "no" ; then | |
2283 | cat > $TMPC << EOF | |
ffc41d10 | 2284 | #include <stddef.h> /* NULL */ |
dce512de CH |
2285 | #include <xfs/xfs.h> |
2286 | int main(void) | |
2287 | { | |
2288 | xfsctl(NULL, 0, 0, NULL); | |
2289 | return 0; | |
2290 | } | |
2291 | EOF | |
2292 | if compile_prog "" "" ; then | |
2293 | xfs="yes" | |
2294 | else | |
2295 | if test "$xfs" = "yes" ; then | |
21684af0 | 2296 | feature_not_found "xfs" "Instal xfsprogs/xfslibs devel" |
dce512de CH |
2297 | fi |
2298 | xfs=no | |
2299 | fi | |
2300 | fi | |
2301 | ||
8a16d273 TS |
2302 | ########################################## |
2303 | # vde libraries probe | |
dfb278bd | 2304 | if test "$vde" != "no" ; then |
4baae0ac | 2305 | vde_libs="-lvdeplug" |
8a16d273 TS |
2306 | cat > $TMPC << EOF |
2307 | #include <libvdeplug.h> | |
4a7f0e06 PB |
2308 | int main(void) |
2309 | { | |
2310 | struct vde_open_args a = {0, 0, 0}; | |
fea08e08 PM |
2311 | char s[] = ""; |
2312 | vde_open(s, s, &a); | |
4a7f0e06 PB |
2313 | return 0; |
2314 | } | |
8a16d273 | 2315 | EOF |
52166aa0 | 2316 | if compile_prog "" "$vde_libs" ; then |
4baae0ac | 2317 | vde=yes |
8e02e54c JQ |
2318 | libs_softmmu="$vde_libs $libs_softmmu" |
2319 | libs_tools="$vde_libs $libs_tools" | |
dfb278bd JQ |
2320 | else |
2321 | if test "$vde" = "yes" ; then | |
21684af0 | 2322 | feature_not_found "vde" "Install vde (Virtual Distributed Ethernet) devel" |
dfb278bd JQ |
2323 | fi |
2324 | vde=no | |
4baae0ac | 2325 | fi |
8a16d273 TS |
2326 | fi |
2327 | ||
58952137 | 2328 | ########################################## |
0a985b37 VM |
2329 | # netmap support probe |
2330 | # Apart from looking for netmap headers, we make sure that the host API version | |
2331 | # supports the netmap backend (>=11). The upper bound (15) is meant to simulate | |
2332 | # a minor/major version number. Minor new features will be marked with values up | |
2333 | # to 15, and if something happens that requires a change to the backend we will | |
2334 | # move above 15, submit the backend fixes and modify this two bounds. | |
58952137 VM |
2335 | if test "$netmap" != "no" ; then |
2336 | cat > $TMPC << EOF | |
2337 | #include <inttypes.h> | |
2338 | #include <net/if.h> | |
2339 | #include <net/netmap.h> | |
2340 | #include <net/netmap_user.h> | |
0a985b37 VM |
2341 | #if (NETMAP_API < 11) || (NETMAP_API > 15) |
2342 | #error | |
2343 | #endif | |
58952137 VM |
2344 | int main(void) { return 0; } |
2345 | EOF | |
2346 | if compile_prog "" "" ; then | |
2347 | netmap=yes | |
2348 | else | |
2349 | if test "$netmap" = "yes" ; then | |
2350 | feature_not_found "netmap" | |
2351 | fi | |
2352 | netmap=no | |
2353 | fi | |
2354 | fi | |
2355 | ||
47e98658 CB |
2356 | ########################################## |
2357 | # libcap-ng library probe | |
2358 | if test "$cap_ng" != "no" ; then | |
2359 | cap_libs="-lcap-ng" | |
2360 | cat > $TMPC << EOF | |
2361 | #include <cap-ng.h> | |
2362 | int main(void) | |
2363 | { | |
2364 | capng_capability_to_name(CAPNG_EFFECTIVE); | |
2365 | return 0; | |
2366 | } | |
2367 | EOF | |
2368 | if compile_prog "" "$cap_libs" ; then | |
2369 | cap_ng=yes | |
2370 | libs_tools="$cap_libs $libs_tools" | |
2371 | else | |
2372 | if test "$cap_ng" = "yes" ; then | |
21684af0 | 2373 | feature_not_found "cap_ng" "Install libcap-ng devel" |
47e98658 CB |
2374 | fi |
2375 | cap_ng=no | |
2376 | fi | |
2377 | fi | |
2378 | ||
8f28f3fb | 2379 | ########################################## |
c2de5c91 | 2380 | # Sound support libraries probe |
8f28f3fb | 2381 | |
c2de5c91 | 2382 | audio_drv_probe() |
2383 | { | |
2384 | drv=$1 | |
2385 | hdr=$2 | |
2386 | lib=$3 | |
2387 | exp=$4 | |
2388 | cfl=$5 | |
2389 | cat > $TMPC << EOF | |
2390 | #include <$hdr> | |
2391 | int main(void) { $exp } | |
8f28f3fb | 2392 | EOF |
52166aa0 | 2393 | if compile_prog "$cfl" "$lib" ; then |
c2de5c91 | 2394 | : |
2395 | else | |
76ad07a4 PM |
2396 | error_exit "$drv check failed" \ |
2397 | "Make sure to have the $drv libs and headers installed." | |
c2de5c91 | 2398 | fi |
2399 | } | |
2400 | ||
2fa7d3bf | 2401 | audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` |
c2de5c91 | 2402 | for drv in $audio_drv_list; do |
2403 | case $drv in | |
2404 | alsa) | |
2405 | audio_drv_probe $drv alsa/asoundlib.h -lasound \ | |
e35bcb0c | 2406 | "return snd_pcm_close((snd_pcm_t *)0);" |
a4bf6780 | 2407 | libs_softmmu="-lasound $libs_softmmu" |
c2de5c91 | 2408 | ;; |
2409 | ||
2410 | fmod) | |
2411 | if test -z $fmod_lib || test -z $fmod_inc; then | |
76ad07a4 PM |
2412 | error_exit "You must specify path to FMOD library and headers" \ |
2413 | "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so" | |
c2de5c91 | 2414 | fi |
2415 | audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc" | |
a4bf6780 | 2416 | libs_softmmu="$fmod_lib $libs_softmmu" |
c2de5c91 | 2417 | ;; |
2418 | ||
2419 | esd) | |
2420 | audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);' | |
a4bf6780 | 2421 | libs_softmmu="-lesd $libs_softmmu" |
67f86e8e | 2422 | audio_pt_int="yes" |
c2de5c91 | 2423 | ;; |
b8e59f18 | 2424 | |
2425 | pa) | |
a394aed2 MAL |
2426 | audio_drv_probe $drv pulse/mainloop.h "-lpulse" \ |
2427 | "pa_mainloop *m = 0; pa_mainloop_free (m); return 0;" | |
2428 | libs_softmmu="-lpulse $libs_softmmu" | |
67f86e8e | 2429 | audio_pt_int="yes" |
b8e59f18 | 2430 | ;; |
2431 | ||
997e690a JQ |
2432 | coreaudio) |
2433 | libs_softmmu="-framework CoreAudio $libs_softmmu" | |
2434 | ;; | |
2435 | ||
a4bf6780 JQ |
2436 | dsound) |
2437 | libs_softmmu="-lole32 -ldxguid $libs_softmmu" | |
d5631638 | 2438 | audio_win_int="yes" |
a4bf6780 JQ |
2439 | ;; |
2440 | ||
2441 | oss) | |
2442 | libs_softmmu="$oss_lib $libs_softmmu" | |
2443 | ;; | |
2444 | ||
2445 | sdl|wav) | |
2f6a1ab0 BS |
2446 | # XXX: Probes for CoreAudio, DirectSound, SDL(?) |
2447 | ;; | |
2448 | ||
d5631638 | 2449 | winwave) |
2450 | libs_softmmu="-lwinmm $libs_softmmu" | |
2451 | audio_win_int="yes" | |
2452 | ;; | |
2453 | ||
e4c63a6a | 2454 | *) |
1c9b2a52 | 2455 | echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { |
76ad07a4 PM |
2456 | error_exit "Unknown driver '$drv' selected" \ |
2457 | "Possible drivers are: $audio_possible_drivers" | |
e4c63a6a | 2458 | } |
2459 | ;; | |
c2de5c91 | 2460 | esac |
2461 | done | |
8f28f3fb | 2462 | |
2e4d9fb1 AJ |
2463 | ########################################## |
2464 | # BrlAPI probe | |
2465 | ||
4ffcedb6 | 2466 | if test "$brlapi" != "no" ; then |
eb82284f JQ |
2467 | brlapi_libs="-lbrlapi" |
2468 | cat > $TMPC << EOF | |
2e4d9fb1 | 2469 | #include <brlapi.h> |
832ce9c2 | 2470 | #include <stddef.h> |
2e4d9fb1 AJ |
2471 | int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } |
2472 | EOF | |
52166aa0 | 2473 | if compile_prog "" "$brlapi_libs" ; then |
eb82284f | 2474 | brlapi=yes |
264606b3 | 2475 | libs_softmmu="$brlapi_libs $libs_softmmu" |
4ffcedb6 JQ |
2476 | else |
2477 | if test "$brlapi" = "yes" ; then | |
21684af0 | 2478 | feature_not_found "brlapi" "Install brlapi devel" |
4ffcedb6 JQ |
2479 | fi |
2480 | brlapi=no | |
eb82284f JQ |
2481 | fi |
2482 | fi | |
2e4d9fb1 | 2483 | |
4d3b6f6e AZ |
2484 | ########################################## |
2485 | # curses probe | |
a3605bf6 MT |
2486 | if test "$curses" != "no" ; then |
2487 | if test "$mingw32" = "yes" ; then | |
e095e2f3 | 2488 | curses_list="-lpdcurses" |
a3605bf6 | 2489 | else |
cfeda5f4 | 2490 | curses_list="$($pkg_config --libs ncurses 2>/dev/null):-lncurses:-lcurses" |
a3605bf6 | 2491 | fi |
c584a6d0 | 2492 | curses_found=no |
4d3b6f6e AZ |
2493 | cat > $TMPC << EOF |
2494 | #include <curses.h> | |
ef9a2524 SW |
2495 | int main(void) { |
2496 | const char *s = curses_version(); | |
2497 | resize_term(0, 0); | |
2498 | return s != 0; | |
2499 | } | |
4d3b6f6e | 2500 | EOF |
ecbe251f | 2501 | IFS=: |
4f78ef9a | 2502 | for curses_lib in $curses_list; do |
ecbe251f | 2503 | unset IFS |
4f78ef9a | 2504 | if compile_prog "" "$curses_lib" ; then |
c584a6d0 | 2505 | curses_found=yes |
4f78ef9a JQ |
2506 | libs_softmmu="$curses_lib $libs_softmmu" |
2507 | break | |
2508 | fi | |
2509 | done | |
ecbe251f | 2510 | unset IFS |
c584a6d0 JQ |
2511 | if test "$curses_found" = "yes" ; then |
2512 | curses=yes | |
2513 | else | |
2514 | if test "$curses" = "yes" ; then | |
21684af0 | 2515 | feature_not_found "curses" "Install ncurses devel" |
c584a6d0 JQ |
2516 | fi |
2517 | curses=no | |
2518 | fi | |
4f78ef9a | 2519 | fi |
4d3b6f6e | 2520 | |
769ce76d AG |
2521 | ########################################## |
2522 | # curl probe | |
788c8196 | 2523 | if test "$curl" != "no" ; then |
65d5d3f9 | 2524 | if $pkg_config libcurl --exists; then |
a3605bf6 MT |
2525 | curlconfig="$pkg_config libcurl" |
2526 | else | |
2527 | curlconfig=curl-config | |
2528 | fi | |
769ce76d AG |
2529 | cat > $TMPC << EOF |
2530 | #include <curl/curl.h> | |
0b862ced | 2531 | int main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; } |
769ce76d | 2532 | EOF |
4e2b0658 PB |
2533 | curl_cflags=`$curlconfig --cflags 2>/dev/null` |
2534 | curl_libs=`$curlconfig --libs 2>/dev/null` | |
b1d5a277 | 2535 | if compile_prog "$curl_cflags" "$curl_libs" ; then |
769ce76d | 2536 | curl=yes |
788c8196 JQ |
2537 | else |
2538 | if test "$curl" = "yes" ; then | |
21684af0 | 2539 | feature_not_found "curl" "Install libcurl devel" |
788c8196 JQ |
2540 | fi |
2541 | curl=no | |
769ce76d AG |
2542 | fi |
2543 | fi # test "$curl" | |
2544 | ||
fb599c9a AZ |
2545 | ########################################## |
2546 | # bluez support probe | |
a20a6f46 | 2547 | if test "$bluez" != "no" ; then |
e820e3f4 AZ |
2548 | cat > $TMPC << EOF |
2549 | #include <bluetooth/bluetooth.h> | |
2550 | int main(void) { return bt_error(0); } | |
2551 | EOF | |
a8bd70ad PB |
2552 | bluez_cflags=`$pkg_config --cflags bluez 2> /dev/null` |
2553 | bluez_libs=`$pkg_config --libs bluez 2> /dev/null` | |
52166aa0 | 2554 | if compile_prog "$bluez_cflags" "$bluez_libs" ; then |
a20a6f46 | 2555 | bluez=yes |
e482d56a | 2556 | libs_softmmu="$bluez_libs $libs_softmmu" |
e820e3f4 | 2557 | else |
a20a6f46 | 2558 | if test "$bluez" = "yes" ; then |
21684af0 | 2559 | feature_not_found "bluez" "Install bluez-libs/libbluetooth devel" |
a20a6f46 | 2560 | fi |
e820e3f4 AZ |
2561 | bluez="no" |
2562 | fi | |
fb599c9a AZ |
2563 | fi |
2564 | ||
e18df141 AL |
2565 | ########################################## |
2566 | # glib support probe | |
a52d28af PB |
2567 | |
2568 | if test "$mingw32" = yes; then | |
2569 | # g_poll is required in order to integrate with the glib main loop. | |
2570 | glib_req_ver=2.20 | |
2571 | else | |
2572 | glib_req_ver=2.12 | |
2573 | fi | |
aa0d1f44 PB |
2574 | glib_modules=gthread-2.0 |
2575 | if test "$modules" = yes; then | |
2576 | glib_modules="$glib_modules gmodule-2.0" | |
2577 | fi | |
e26110cf | 2578 | |
aa0d1f44 | 2579 | for i in $glib_modules; do |
e26110cf FZ |
2580 | if $pkg_config --atleast-version=$glib_req_ver $i; then |
2581 | glib_cflags=`$pkg_config --cflags $i` | |
2582 | glib_libs=`$pkg_config --libs $i` | |
2583 | CFLAGS="$glib_cflags $CFLAGS" | |
2584 | LIBS="$glib_libs $LIBS" | |
2585 | libs_qga="$glib_libs $libs_qga" | |
2586 | else | |
2587 | error_exit "glib-$glib_req_ver $i is required to compile QEMU" | |
2588 | fi | |
2589 | done | |
2590 | ||
2591 | ########################################## | |
2592 | # SHA command probe for modules | |
2593 | if test "$modules" = yes; then | |
2594 | shacmd_probe="sha1sum sha1 shasum" | |
2595 | for c in $shacmd_probe; do | |
2596 | if which $c &>/dev/null; then | |
2597 | shacmd="$c" | |
2598 | break | |
2599 | fi | |
2600 | done | |
2601 | if test "$shacmd" = ""; then | |
2602 | error_exit "one of the checksum commands is required to enable modules: $shacmd_probe" | |
2603 | fi | |
e18df141 AL |
2604 | fi |
2605 | ||
e2134eb9 GH |
2606 | ########################################## |
2607 | # pixman support probe | |
2608 | ||
2609 | if test "$pixman" = ""; then | |
74880fe2 RS |
2610 | if test "$want_tools" = "no" -a "$softmmu" = "no"; then |
2611 | pixman="none" | |
2612 | elif $pkg_config pixman-1 > /dev/null 2>&1; then | |
e2134eb9 GH |
2613 | pixman="system" |
2614 | else | |
2615 | pixman="internal" | |
2616 | fi | |
2617 | fi | |
74880fe2 RS |
2618 | if test "$pixman" = "none"; then |
2619 | if test "$want_tools" != "no" -o "$softmmu" != "no"; then | |
76ad07a4 PM |
2620 | error_exit "pixman disabled but system emulation or tools build" \ |
2621 | "enabled. You can turn off pixman only if you also" \ | |
2622 | "disable all system emulation targets and the tools" \ | |
2623 | "build with '--disable-tools --disable-system'." | |
74880fe2 RS |
2624 | fi |
2625 | pixman_cflags= | |
2626 | pixman_libs= | |
2627 | elif test "$pixman" = "system"; then | |
ca871ec8 SW |
2628 | pixman_cflags=`$pkg_config --cflags pixman-1` |
2629 | pixman_libs=`$pkg_config --libs pixman-1` | |
e2134eb9 GH |
2630 | else |
2631 | if test ! -d ${source_path}/pixman/pixman; then | |
76ad07a4 PM |
2632 | error_exit "pixman not present. Your options:" \ |
2633 | " (1) Preferred: Install the pixman devel package (any recent" \ | |
2634 | " distro should have packages as Xorg needs pixman too)." \ | |
2635 | " (2) Fetch the pixman submodule, using:" \ | |
2636 | " git submodule update --init pixman" | |
e2134eb9 | 2637 | fi |
5ca9388a GH |
2638 | mkdir -p pixman/pixman |
2639 | pixman_cflags="-I\$(SRC_PATH)/pixman/pixman -I\$(BUILD_DIR)/pixman/pixman" | |
2640 | pixman_libs="-L\$(BUILD_DIR)/pixman/pixman/.libs -lpixman-1" | |
e2134eb9 | 2641 | fi |
e2134eb9 | 2642 | |
17bff52b MK |
2643 | ########################################## |
2644 | # libcap probe | |
2645 | ||
2646 | if test "$cap" != "no" ; then | |
2647 | cat > $TMPC <<EOF | |
2648 | #include <stdio.h> | |
2649 | #include <sys/capability.h> | |
cc939743 | 2650 | int main(void) { cap_t caps; caps = cap_init(); return caps != NULL; } |
17bff52b MK |
2651 | EOF |
2652 | if compile_prog "" "-lcap" ; then | |
2653 | cap=yes | |
2654 | else | |
2655 | cap=no | |
2656 | fi | |
2657 | fi | |
2658 | ||
414f0dab | 2659 | ########################################## |
e5d355d1 | 2660 | # pthread probe |
4b29ec41 | 2661 | PTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2" |
3c529d93 | 2662 | |
4dd75c70 | 2663 | pthread=no |
e5d355d1 | 2664 | cat > $TMPC << EOF |
3c529d93 | 2665 | #include <pthread.h> |
7a42bbe4 SW |
2666 | static void *f(void *p) { return NULL; } |
2667 | int main(void) { | |
2668 | pthread_t thread; | |
2669 | pthread_create(&thread, 0, f, 0); | |
2670 | return 0; | |
2671 | } | |
414f0dab | 2672 | EOF |
bd00d539 AF |
2673 | if compile_prog "" "" ; then |
2674 | pthread=yes | |
2675 | else | |
2676 | for pthread_lib in $PTHREADLIBS_LIST; do | |
2677 | if compile_prog "" "$pthread_lib" ; then | |
2678 | pthread=yes | |
e3c56761 PP |
2679 | found=no |
2680 | for lib_entry in $LIBS; do | |
2681 | if test "$lib_entry" = "$pthread_lib"; then | |
2682 | found=yes | |
2683 | break | |
2684 | fi | |
2685 | done | |
2686 | if test "$found" = "no"; then | |
2687 | LIBS="$pthread_lib $LIBS" | |
2688 | fi | |
bd00d539 AF |
2689 | break |
2690 | fi | |
2691 | done | |
2692 | fi | |
414f0dab | 2693 | |
4617e593 | 2694 | if test "$mingw32" != yes -a "$pthread" = no; then |
76ad07a4 PM |
2695 | error_exit "pthread check failed" \ |
2696 | "Make sure to have the pthread libs and headers installed." | |
e5d355d1 AL |
2697 | fi |
2698 | ||
f27aaf4b CB |
2699 | ########################################## |
2700 | # rbd probe | |
2701 | if test "$rbd" != "no" ; then | |
2702 | cat > $TMPC <<EOF | |
2703 | #include <stdio.h> | |
ad32e9c0 | 2704 | #include <rbd/librbd.h> |
f27aaf4b | 2705 | int main(void) { |
ad32e9c0 JD |
2706 | rados_t cluster; |
2707 | rados_create(&cluster, NULL); | |
f27aaf4b CB |
2708 | return 0; |
2709 | } | |
2710 | EOF | |
ad32e9c0 JD |
2711 | rbd_libs="-lrbd -lrados" |
2712 | if compile_prog "" "$rbd_libs" ; then | |
2713 | rbd=yes | |
f27aaf4b CB |
2714 | else |
2715 | if test "$rbd" = "yes" ; then | |
21684af0 | 2716 | feature_not_found "rados block device" "Install librbd/ceph devel" |
f27aaf4b CB |
2717 | fi |
2718 | rbd=no | |
2719 | fi | |
f27aaf4b CB |
2720 | fi |
2721 | ||
0a12ec87 RJ |
2722 | ########################################## |
2723 | # libssh2 probe | |
4fc16838 | 2724 | min_libssh2_version=1.2.8 |
0a12ec87 | 2725 | if test "$libssh2" != "no" ; then |
65d5d3f9 | 2726 | if $pkg_config --atleast-version=$min_libssh2_version libssh2; then |
0a12ec87 RJ |
2727 | libssh2_cflags=`$pkg_config libssh2 --cflags` |
2728 | libssh2_libs=`$pkg_config libssh2 --libs` | |
0a12ec87 | 2729 | libssh2=yes |
0a12ec87 RJ |
2730 | else |
2731 | if test "$libssh2" = "yes" ; then | |
4fc16838 | 2732 | error_exit "libssh2 >= $min_libssh2_version required for --enable-libssh2" |
0a12ec87 RJ |
2733 | fi |
2734 | libssh2=no | |
2735 | fi | |
2736 | fi | |
2737 | ||
9a2d462e RJ |
2738 | ########################################## |
2739 | # libssh2_sftp_fsync probe | |
2740 | ||
2741 | if test "$libssh2" = "yes"; then | |
2742 | cat > $TMPC <<EOF | |
2743 | #include <stdio.h> | |
2744 | #include <libssh2.h> | |
2745 | #include <libssh2_sftp.h> | |
2746 | int main(void) { | |
2747 | LIBSSH2_SESSION *session; | |
2748 | LIBSSH2_SFTP *sftp; | |
2749 | LIBSSH2_SFTP_HANDLE *sftp_handle; | |
2750 | session = libssh2_session_init (); | |
2751 | sftp = libssh2_sftp_init (session); | |
2752 | sftp_handle = libssh2_sftp_open (sftp, "/", 0, 0); | |
2753 | libssh2_sftp_fsync (sftp_handle); | |
2754 | return 0; | |
2755 | } | |
2756 | EOF | |
2757 | # libssh2_cflags/libssh2_libs defined in previous test. | |
2758 | if compile_prog "$libssh2_cflags" "$libssh2_libs" ; then | |
2759 | QEMU_CFLAGS="-DHAS_LIBSSH2_SFTP_FSYNC $QEMU_CFLAGS" | |
2760 | fi | |
2761 | fi | |
2762 | ||
5c6c3a6c CH |
2763 | ########################################## |
2764 | # linux-aio probe | |
5c6c3a6c CH |
2765 | |
2766 | if test "$linux_aio" != "no" ; then | |
2767 | cat > $TMPC <<EOF | |
2768 | #include <libaio.h> | |
2769 | #include <sys/eventfd.h> | |
832ce9c2 | 2770 | #include <stddef.h> |
5c6c3a6c CH |
2771 | int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; } |
2772 | EOF | |
2773 | if compile_prog "" "-laio" ; then | |
2774 | linux_aio=yes | |
5c6c3a6c CH |
2775 | else |
2776 | if test "$linux_aio" = "yes" ; then | |
21684af0 | 2777 | feature_not_found "linux AIO" "Install libaio devel" |
5c6c3a6c | 2778 | fi |
3cfcae3c | 2779 | linux_aio=no |
5c6c3a6c CH |
2780 | fi |
2781 | fi | |
2782 | ||
3b8acc11 PB |
2783 | ########################################## |
2784 | # TPM passthrough is only on x86 Linux | |
2785 | ||
2786 | if test "$targetos" = Linux && test "$cpu" = i386 -o "$cpu" = x86_64; then | |
2787 | tpm_passthrough=$tpm | |
2788 | else | |
2789 | tpm_passthrough=no | |
2790 | fi | |
2791 | ||
583f6e7b SH |
2792 | ########################################## |
2793 | # adjust virtio-blk-data-plane based on linux-aio | |
2794 | ||
2795 | if test "$virtio_blk_data_plane" = "yes" -a \ | |
2796 | "$linux_aio" != "yes" ; then | |
76ad07a4 | 2797 | error_exit "virtio-blk-data-plane requires Linux AIO, please try --enable-linux-aio" |
583f6e7b SH |
2798 | elif test -z "$virtio_blk_data_plane" ; then |
2799 | virtio_blk_data_plane=$linux_aio | |
2800 | fi | |
2801 | ||
758e8e38 VJ |
2802 | ########################################## |
2803 | # attr probe | |
2804 | ||
2805 | if test "$attr" != "no" ; then | |
2806 | cat > $TMPC <<EOF | |
2807 | #include <stdio.h> | |
2808 | #include <sys/types.h> | |
f2338fb4 PB |
2809 | #ifdef CONFIG_LIBATTR |
2810 | #include <attr/xattr.h> | |
2811 | #else | |
4f26f2b6 | 2812 | #include <sys/xattr.h> |
f2338fb4 | 2813 | #endif |
758e8e38 VJ |
2814 | int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; } |
2815 | EOF | |
4f26f2b6 AK |
2816 | if compile_prog "" "" ; then |
2817 | attr=yes | |
2818 | # Older distros have <attr/xattr.h>, and need -lattr: | |
f2338fb4 | 2819 | elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then |
758e8e38 VJ |
2820 | attr=yes |
2821 | LIBS="-lattr $LIBS" | |
4f26f2b6 | 2822 | libattr=yes |
758e8e38 VJ |
2823 | else |
2824 | if test "$attr" = "yes" ; then | |
21684af0 | 2825 | feature_not_found "ATTR" "Install libc6 or libattr devel" |
758e8e38 VJ |
2826 | fi |
2827 | attr=no | |
2828 | fi | |
2829 | fi | |
2830 | ||
bf9298b9 AL |
2831 | ########################################## |
2832 | # iovec probe | |
2833 | cat > $TMPC <<EOF | |
db34f0b3 | 2834 | #include <sys/types.h> |
bf9298b9 | 2835 | #include <sys/uio.h> |
db34f0b3 | 2836 | #include <unistd.h> |
f91f9bee | 2837 | int main(void) { return sizeof(struct iovec); } |
bf9298b9 AL |
2838 | EOF |
2839 | iovec=no | |
52166aa0 | 2840 | if compile_prog "" "" ; then |
bf9298b9 AL |
2841 | iovec=yes |
2842 | fi | |
2843 | ||
ceb42de8 AL |
2844 | ########################################## |
2845 | # preadv probe | |
2846 | cat > $TMPC <<EOF | |
2847 | #include <sys/types.h> | |
2848 | #include <sys/uio.h> | |
2849 | #include <unistd.h> | |
c075a723 | 2850 | int main(void) { return preadv(0, 0, 0, 0); } |
ceb42de8 AL |
2851 | EOF |
2852 | preadv=no | |
52166aa0 | 2853 | if compile_prog "" "" ; then |
ceb42de8 AL |
2854 | preadv=yes |
2855 | fi | |
2856 | ||
f652e6af AJ |
2857 | ########################################## |
2858 | # fdt probe | |
e169e1e1 PM |
2859 | # fdt support is mandatory for at least some target architectures, |
2860 | # so insist on it if we're building those system emulators. | |
2861 | fdt_required=no | |
2862 | for target in $target_list; do | |
2863 | case $target in | |
6a49fa95 | 2864 | aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu) |
e169e1e1 PM |
2865 | fdt_required=yes |
2866 | ;; | |
2867 | esac | |
2868 | done | |
2869 | ||
2870 | if test "$fdt_required" = "yes"; then | |
2871 | if test "$fdt" = "no"; then | |
2872 | error_exit "fdt disabled but some requested targets require it." \ | |
2873 | "You can turn off fdt only if you also disable all the system emulation" \ | |
2874 | "targets which need it (by specifying a cut down --target-list)." | |
2875 | fi | |
2876 | fdt=yes | |
2877 | fi | |
2878 | ||
2df87df7 | 2879 | if test "$fdt" != "no" ; then |
b41af4ba | 2880 | fdt_libs="-lfdt" |
96ce6545 | 2881 | # explicitly check for libfdt_env.h as it is missing in some stable installs |
b41af4ba | 2882 | cat > $TMPC << EOF |
96ce6545 | 2883 | #include <libfdt_env.h> |
f652e6af AJ |
2884 | int main(void) { return 0; } |
2885 | EOF | |
52166aa0 | 2886 | if compile_prog "" "$fdt_libs" ; then |
a540f158 | 2887 | # system DTC is good - use it |
f652e6af | 2888 | fdt=yes |
a540f158 PC |
2889 | elif test -d ${source_path}/dtc/libfdt ; then |
2890 | # have submodule DTC - use it | |
2891 | fdt=yes | |
2892 | dtc_internal="yes" | |
2893 | mkdir -p dtc | |
2894 | if [ "$source_path" != `pwd` ] ; then | |
2895 | symlink "$source_path/dtc/Makefile" "dtc/Makefile" | |
2896 | symlink "$source_path/dtc/scripts" "dtc/scripts" | |
2df87df7 | 2897 | fi |
a540f158 PC |
2898 | fdt_cflags="-I\$(SRC_PATH)/dtc/libfdt" |
2899 | fdt_libs="-L\$(BUILD_DIR)/dtc/libfdt $fdt_libs" | |
2900 | elif test "$fdt" = "yes" ; then | |
2901 | # have neither and want - prompt for system/submodule install | |
3f281822 SS |
2902 | error_exit "DTC (libfdt) not present. Your options:" \ |
2903 | " (1) Preferred: Install the DTC (libfdt) devel package" \ | |
a540f158 PC |
2904 | " (2) Fetch the DTC submodule, using:" \ |
2905 | " git submodule update --init dtc" | |
2906 | else | |
2907 | # don't have and don't want | |
de3a354a | 2908 | fdt_libs= |
2df87df7 | 2909 | fdt=no |
f652e6af AJ |
2910 | fi |
2911 | fi | |
2912 | ||
a540f158 PC |
2913 | libs_softmmu="$libs_softmmu $fdt_libs" |
2914 | ||
20ff075b | 2915 | ########################################## |
b1e5fff4 MW |
2916 | # GLX probe, used by milkymist-tmu2 |
2917 | if test "$glx" != "no" ; then | |
2918 | glx_libs="-lGL -lX11" | |
20ff075b MW |
2919 | cat > $TMPC << EOF |
2920 | #include <X11/Xlib.h> | |
2921 | #include <GL/gl.h> | |
2922 | #include <GL/glx.h> | |
d3fcbb16 | 2923 | int main(void) { glBegin(0); glXQueryVersion(0,0,0); return 0; } |
20ff075b | 2924 | EOF |
d3fcbb16 | 2925 | if compile_prog "" "-lGL -lX11" ; then |
b1e5fff4 | 2926 | glx=yes |
20ff075b | 2927 | else |
b1e5fff4 | 2928 | if test "$glx" = "yes" ; then |
21684af0 | 2929 | feature_not_found "glx" "Install GL devel (e.g. MESA)" |
20ff075b | 2930 | fi |
b1e5fff4 MW |
2931 | glx_libs= |
2932 | glx=no | |
20ff075b MW |
2933 | fi |
2934 | fi | |
2935 | ||
eb100396 BR |
2936 | ########################################## |
2937 | # glusterfs probe | |
2938 | if test "$glusterfs" != "no" ; then | |
65d5d3f9 | 2939 | if $pkg_config --atleast-version=3 glusterfs-api; then |
e01bee08 | 2940 | glusterfs="yes" |
ca871ec8 SW |
2941 | glusterfs_cflags=`$pkg_config --cflags glusterfs-api` |
2942 | glusterfs_libs=`$pkg_config --libs glusterfs-api` | |
65d5d3f9 | 2943 | if $pkg_config --atleast-version=5 glusterfs-api; then |
0c14fb47 BR |
2944 | glusterfs_discard="yes" |
2945 | fi | |
7c815372 BR |
2946 | if $pkg_config --atleast-version=6 glusterfs-api; then |
2947 | glusterfs_zerofill="yes" | |
2948 | fi | |
eb100396 BR |
2949 | else |
2950 | if test "$glusterfs" = "yes" ; then | |
21684af0 | 2951 | feature_not_found "GlusterFS backend support" "Install glusterfs-api devel" |
eb100396 | 2952 | fi |
e01bee08 | 2953 | glusterfs="no" |
eb100396 BR |
2954 | fi |
2955 | fi | |
2956 | ||
39386ac7 | 2957 | # Check for inotify functions when we are building linux-user |
3b3f24ad AJ |
2958 | # emulator. This is done because older glibc versions don't |
2959 | # have syscall stubs for these implemented. In that case we | |
2960 | # don't provide them even if kernel supports them. | |
2961 | # | |
2962 | inotify=no | |
67ba57f6 | 2963 | cat > $TMPC << EOF |
3b3f24ad AJ |
2964 | #include <sys/inotify.h> |
2965 | ||
2966 | int | |
2967 | main(void) | |
2968 | { | |
2969 | /* try to start inotify */ | |
8690e420 | 2970 | return inotify_init(); |
3b3f24ad AJ |
2971 | } |
2972 | EOF | |
52166aa0 | 2973 | if compile_prog "" "" ; then |
67ba57f6 | 2974 | inotify=yes |
3b3f24ad AJ |
2975 | fi |
2976 | ||
c05c7a73 RV |
2977 | inotify1=no |
2978 | cat > $TMPC << EOF | |
2979 | #include <sys/inotify.h> | |
2980 | ||
2981 | int | |
2982 | main(void) | |
2983 | { | |
2984 | /* try to start inotify */ | |
2985 | return inotify_init1(0); | |
2986 | } | |
2987 | EOF | |
2988 | if compile_prog "" "" ; then | |
2989 | inotify1=yes | |
2990 | fi | |
2991 | ||
ebc996f3 RV |
2992 | # check if utimensat and futimens are supported |
2993 | utimens=no | |
2994 | cat > $TMPC << EOF | |
2995 | #define _ATFILE_SOURCE | |
ebc996f3 RV |
2996 | #include <stddef.h> |
2997 | #include <fcntl.h> | |
3014ee00 | 2998 | #include <sys/stat.h> |
ebc996f3 RV |
2999 | |
3000 | int main(void) | |
3001 | { | |
3002 | utimensat(AT_FDCWD, "foo", NULL, 0); | |
3003 | futimens(0, NULL); | |
3004 | return 0; | |
3005 | } | |
3006 | EOF | |
52166aa0 | 3007 | if compile_prog "" "" ; then |
ebc996f3 RV |
3008 | utimens=yes |
3009 | fi | |
3010 | ||
099d6b0f RV |
3011 | # check if pipe2 is there |
3012 | pipe2=no | |
3013 | cat > $TMPC << EOF | |
099d6b0f RV |
3014 | #include <unistd.h> |
3015 | #include <fcntl.h> | |
3016 | ||
3017 | int main(void) | |
3018 | { | |
3019 | int pipefd[2]; | |
9bca8162 | 3020 | return pipe2(pipefd, O_CLOEXEC); |
099d6b0f RV |
3021 | } |
3022 | EOF | |
52166aa0 | 3023 | if compile_prog "" "" ; then |
099d6b0f RV |
3024 | pipe2=yes |
3025 | fi | |
3026 | ||
40ff6d7e KW |
3027 | # check if accept4 is there |
3028 | accept4=no | |
3029 | cat > $TMPC << EOF | |
40ff6d7e KW |
3030 | #include <sys/socket.h> |
3031 | #include <stddef.h> | |
3032 | ||
3033 | int main(void) | |
3034 | { | |
3035 | accept4(0, NULL, NULL, SOCK_CLOEXEC); | |
3036 | return 0; | |
3037 | } | |
3038 | EOF | |
3039 | if compile_prog "" "" ; then | |
3040 | accept4=yes | |
3041 | fi | |
3042 | ||
3ce34dfb VS |
3043 | # check if tee/splice is there. vmsplice was added same time. |
3044 | splice=no | |
3045 | cat > $TMPC << EOF | |
3ce34dfb VS |
3046 | #include <unistd.h> |
3047 | #include <fcntl.h> | |
3048 | #include <limits.h> | |
3049 | ||
3050 | int main(void) | |
3051 | { | |
66ea0f22 | 3052 | int len, fd = 0; |
3ce34dfb VS |
3053 | len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK); |
3054 | splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE); | |
3055 | return 0; | |
3056 | } | |
3057 | EOF | |
52166aa0 | 3058 | if compile_prog "" "" ; then |
3ce34dfb VS |
3059 | splice=yes |
3060 | fi | |
3061 | ||
dcc38d1c MT |
3062 | ########################################## |
3063 | # signalfd probe | |
3064 | signalfd="no" | |
3065 | cat > $TMPC << EOF | |
dcc38d1c MT |
3066 | #include <unistd.h> |
3067 | #include <sys/syscall.h> | |
3068 | #include <signal.h> | |
3069 | int main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); } | |
3070 | EOF | |
3071 | ||
3072 | if compile_prog "" "" ; then | |
3073 | signalfd=yes | |
3074 | fi | |
3075 | ||
c2882b96 RV |
3076 | # check if eventfd is supported |
3077 | eventfd=no | |
3078 | cat > $TMPC << EOF | |
3079 | #include <sys/eventfd.h> | |
3080 | ||
3081 | int main(void) | |
3082 | { | |
55cc7f3e | 3083 | return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); |
c2882b96 RV |
3084 | } |
3085 | EOF | |
3086 | if compile_prog "" "" ; then | |
3087 | eventfd=yes | |
3088 | fi | |
3089 | ||
d0927938 UH |
3090 | # check for fallocate |
3091 | fallocate=no | |
3092 | cat > $TMPC << EOF | |
3093 | #include <fcntl.h> | |
3094 | ||
3095 | int main(void) | |
3096 | { | |
3097 | fallocate(0, 0, 0, 0); | |
3098 | return 0; | |
3099 | } | |
3100 | EOF | |
8fb03151 | 3101 | if compile_prog "" "" ; then |
d0927938 UH |
3102 | fallocate=yes |
3103 | fi | |
3104 | ||
3d4fa43e KK |
3105 | # check for fallocate hole punching |
3106 | fallocate_punch_hole=no | |
3107 | cat > $TMPC << EOF | |
3108 | #include <fcntl.h> | |
3109 | #include <linux/falloc.h> | |
3110 | ||
3111 | int main(void) | |
3112 | { | |
3113 | fallocate(0, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, 0, 0); | |
3114 | return 0; | |
3115 | } | |
3116 | EOF | |
3117 | if compile_prog "" "" ; then | |
3118 | fallocate_punch_hole=yes | |
3119 | fi | |
3120 | ||
c727f47d PM |
3121 | # check for sync_file_range |
3122 | sync_file_range=no | |
3123 | cat > $TMPC << EOF | |
3124 | #include <fcntl.h> | |
3125 | ||
3126 | int main(void) | |
3127 | { | |
3128 | sync_file_range(0, 0, 0, 0); | |
3129 | return 0; | |
3130 | } | |
3131 | EOF | |
8fb03151 | 3132 | if compile_prog "" "" ; then |
c727f47d PM |
3133 | sync_file_range=yes |
3134 | fi | |
3135 | ||
dace20dc PM |
3136 | # check for linux/fiemap.h and FS_IOC_FIEMAP |
3137 | fiemap=no | |
3138 | cat > $TMPC << EOF | |
3139 | #include <sys/ioctl.h> | |
3140 | #include <linux/fs.h> | |
3141 | #include <linux/fiemap.h> | |
3142 | ||
3143 | int main(void) | |
3144 | { | |
3145 | ioctl(0, FS_IOC_FIEMAP, 0); | |
3146 | return 0; | |
3147 | } | |
3148 | EOF | |
8fb03151 | 3149 | if compile_prog "" "" ; then |
dace20dc PM |
3150 | fiemap=yes |
3151 | fi | |
3152 | ||
d0927938 UH |
3153 | # check for dup3 |
3154 | dup3=no | |
3155 | cat > $TMPC << EOF | |
3156 | #include <unistd.h> | |
3157 | ||
3158 | int main(void) | |
3159 | { | |
3160 | dup3(0, 0, 0); | |
3161 | return 0; | |
3162 | } | |
3163 | EOF | |
78f5d726 | 3164 | if compile_prog "" "" ; then |
d0927938 UH |
3165 | dup3=yes |
3166 | fi | |
3167 | ||
4e0c6529 AB |
3168 | # check for ppoll support |
3169 | ppoll=no | |
3170 | cat > $TMPC << EOF | |
3171 | #include <poll.h> | |
3172 | ||
3173 | int main(void) | |
3174 | { | |
3175 | struct pollfd pfd = { .fd = 0, .events = 0, .revents = 0 }; | |
3176 | ppoll(&pfd, 1, 0, 0); | |
3177 | return 0; | |
3178 | } | |
3179 | EOF | |
3180 | if compile_prog "" "" ; then | |
3181 | ppoll=yes | |
3182 | fi | |
3183 | ||
cd758dd0 AB |
3184 | # check for prctl(PR_SET_TIMERSLACK , ... ) support |
3185 | prctl_pr_set_timerslack=no | |
3186 | cat > $TMPC << EOF | |
3187 | #include <sys/prctl.h> | |
3188 | ||
3189 | int main(void) | |
3190 | { | |
3191 | prctl(PR_SET_TIMERSLACK, 1, 0, 0, 0); | |
3192 | return 0; | |
3193 | } | |
3194 | EOF | |
3195 | if compile_prog "" "" ; then | |
3196 | prctl_pr_set_timerslack=yes | |
3197 | fi | |
3198 | ||
3b6edd16 PM |
3199 | # check for epoll support |
3200 | epoll=no | |
3201 | cat > $TMPC << EOF | |
3202 | #include <sys/epoll.h> | |
3203 | ||
3204 | int main(void) | |
3205 | { | |
3206 | epoll_create(0); | |
3207 | return 0; | |
3208 | } | |
3209 | EOF | |
8fb03151 | 3210 | if compile_prog "" "" ; then |
3b6edd16 PM |
3211 | epoll=yes |
3212 | fi | |
3213 | ||
3214 | # epoll_create1 and epoll_pwait are later additions | |
3215 | # so we must check separately for their presence | |
3216 | epoll_create1=no | |
3217 | cat > $TMPC << EOF | |
3218 | #include <sys/epoll.h> | |
3219 | ||
3220 | int main(void) | |
3221 | { | |
19e83f6b PM |
3222 | /* Note that we use epoll_create1 as a value, not as |
3223 | * a function being called. This is necessary so that on | |
3224 | * old SPARC glibc versions where the function was present in | |
3225 | * the library but not declared in the header file we will | |
3226 | * fail the configure check. (Otherwise we will get a compiler | |
3227 | * warning but not an error, and will proceed to fail the | |
3228 | * qemu compile where we compile with -Werror.) | |
3229 | */ | |
c075a723 | 3230 | return (int)(uintptr_t)&epoll_create1; |
3b6edd16 PM |
3231 | } |
3232 | EOF | |
8fb03151 | 3233 | if compile_prog "" "" ; then |
3b6edd16 PM |
3234 | epoll_create1=yes |
3235 | fi | |
3236 | ||
3237 | epoll_pwait=no | |
3238 | cat > $TMPC << EOF | |
3239 | #include <sys/epoll.h> | |
3240 | ||
3241 | int main(void) | |
3242 | { | |
3243 | epoll_pwait(0, 0, 0, 0, 0); | |
3244 | return 0; | |
3245 | } | |
3246 | EOF | |
8fb03151 | 3247 | if compile_prog "" "" ; then |
3b6edd16 PM |
3248 | epoll_pwait=yes |
3249 | fi | |
3250 | ||
a8fd1aba PM |
3251 | # check for sendfile support |
3252 | sendfile=no | |
3253 | cat > $TMPC << EOF | |
3254 | #include <sys/sendfile.h> | |
3255 | ||
3256 | int main(void) | |
3257 | { | |
3258 | return sendfile(0, 0, 0, 0); | |
3259 | } | |
3260 | EOF | |
3261 | if compile_prog "" "" ; then | |
3262 | sendfile=yes | |
3263 | fi | |
3264 | ||
cc8ae6de | 3265 | # Check if tools are available to build documentation. |
a25dba17 | 3266 | if test "$docs" != "no" ; then |
01668d98 | 3267 | if has makeinfo && has pod2man; then |
a25dba17 | 3268 | docs=yes |
83a3ab8b | 3269 | else |
a25dba17 | 3270 | if test "$docs" = "yes" ; then |
21684af0 | 3271 | feature_not_found "docs" "Install texinfo and Perl/perl-podlators" |
83a3ab8b | 3272 | fi |
a25dba17 | 3273 | docs=no |
83a3ab8b | 3274 | fi |
cc8ae6de PB |
3275 | fi |
3276 | ||
f514f41c | 3277 | # Search for bswap_32 function |
6ae9a1f4 JQ |
3278 | byteswap_h=no |
3279 | cat > $TMPC << EOF | |
3280 | #include <byteswap.h> | |
3281 | int main(void) { return bswap_32(0); } | |
3282 | EOF | |
52166aa0 | 3283 | if compile_prog "" "" ; then |
6ae9a1f4 JQ |
3284 | byteswap_h=yes |
3285 | fi | |
3286 | ||
75f13596 | 3287 | # Search for bswap32 function |
6ae9a1f4 JQ |
3288 | bswap_h=no |
3289 | cat > $TMPC << EOF | |
3290 | #include <sys/endian.h> | |
3291 | #include <sys/types.h> | |
3292 | #include <machine/bswap.h> | |
3293 | int main(void) { return bswap32(0); } | |
3294 | EOF | |
52166aa0 | 3295 | if compile_prog "" "" ; then |
6ae9a1f4 JQ |
3296 | bswap_h=yes |
3297 | fi | |
3298 | ||
c589b249 RS |
3299 | ########################################## |
3300 | # Do we have libiscsi | |
063c3378 PL |
3301 | # We check for iscsi_write16_sync() to make sure we have a |
3302 | # at least version 1.4.0 of libiscsi. | |
c589b249 RS |
3303 | if test "$libiscsi" != "no" ; then |
3304 | cat > $TMPC << EOF | |
fa6acb0c | 3305 | #include <stdio.h> |
c589b249 | 3306 | #include <iscsi/iscsi.h> |
063c3378 | 3307 | int main(void) { iscsi_write16_sync(NULL,0,0,NULL,0,0,0,0,0,0,0); return 0; } |
c589b249 | 3308 | EOF |
65d5d3f9 | 3309 | if $pkg_config --atleast-version=1.7.0 libiscsi; then |
3c33ea96 | 3310 | libiscsi="yes" |
ca871ec8 SW |
3311 | libiscsi_cflags=$($pkg_config --cflags libiscsi) |
3312 | libiscsi_libs=$($pkg_config --libs libiscsi) | |
3c33ea96 | 3313 | elif compile_prog "" "-liscsi" ; then |
c589b249 | 3314 | libiscsi="yes" |
6ebc91e5 | 3315 | libiscsi_libs="-liscsi" |
c589b249 RS |
3316 | else |
3317 | if test "$libiscsi" = "yes" ; then | |
21684af0 | 3318 | feature_not_found "libiscsi" "Install libiscsi devel" |
c589b249 RS |
3319 | fi |
3320 | libiscsi="no" | |
3321 | fi | |
3322 | fi | |
3323 | ||
219c2521 SW |
3324 | # We also need to know the API version because there was an |
3325 | # API change from 1.4.0 to 1.5.0. | |
3326 | if test "$libiscsi" = "yes"; then | |
3327 | cat >$TMPC <<EOF | |
3328 | #include <iscsi/iscsi.h> | |
3329 | int main(void) | |
3330 | { | |
3331 | iscsi_read10_task(0, 0, 0, 0, 0, 0, 0); | |
3332 | return 0; | |
3333 | } | |
3334 | EOF | |
3335 | if compile_prog "" "-liscsi"; then | |
3336 | libiscsi_version="1.4.0" | |
3337 | fi | |
3338 | fi | |
c589b249 | 3339 | |
8bacde8d NC |
3340 | ########################################## |
3341 | # Do we need libm | |
3342 | cat > $TMPC << EOF | |
3343 | #include <math.h> | |
3344 | int main(void) { return isnan(sin(0.0)); } | |
3345 | EOF | |
3346 | if compile_prog "" "" ; then | |
3347 | : | |
3348 | elif compile_prog "" "-lm" ; then | |
3349 | LIBS="-lm $LIBS" | |
3350 | libs_qga="-lm $libs_qga" | |
3351 | else | |
76ad07a4 | 3352 | error_exit "libm check failed" |
8bacde8d NC |
3353 | fi |
3354 | ||
da93a1fd AL |
3355 | ########################################## |
3356 | # Do we need librt | |
8bacde8d NC |
3357 | # uClibc provides 2 versions of clock_gettime(), one with realtime |
3358 | # support and one without. This means that the clock_gettime() don't | |
3359 | # need -lrt. We still need it for timer_create() so we check for this | |
3360 | # function in addition. | |
da93a1fd AL |
3361 | cat > $TMPC <<EOF |
3362 | #include <signal.h> | |
3363 | #include <time.h> | |
8bacde8d NC |
3364 | int main(void) { |
3365 | timer_create(CLOCK_REALTIME, NULL, NULL); | |
3366 | return clock_gettime(CLOCK_REALTIME, NULL); | |
3367 | } | |
da93a1fd AL |
3368 | EOF |
3369 | ||
52166aa0 | 3370 | if compile_prog "" "" ; then |
07ffa4bd | 3371 | : |
8bacde8d NC |
3372 | # we need pthread for static linking. use previous pthread test result |
3373 | elif compile_prog "" "-lrt $pthread_lib" ; then | |
07ffa4bd | 3374 | LIBS="-lrt $LIBS" |
8bacde8d | 3375 | libs_qga="-lrt $libs_qga" |
da93a1fd AL |
3376 | fi |
3377 | ||
31ff504d | 3378 | if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \ |
179cf400 | 3379 | "$aix" != "yes" -a "$haiku" != "yes" ; then |
6362a53f JQ |
3380 | libs_softmmu="-lutil $libs_softmmu" |
3381 | fi | |
3382 | ||
de5071c5 | 3383 | ########################################## |
cd4ec0b4 GH |
3384 | # spice probe |
3385 | if test "$spice" != "no" ; then | |
3386 | cat > $TMPC << EOF | |
3387 | #include <spice.h> | |
3388 | int main(void) { spice_server_new(); return 0; } | |
3389 | EOF | |
710fc4f5 JD |
3390 | spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null) |
3391 | spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null) | |
65d5d3f9 SW |
3392 | if $pkg_config --atleast-version=0.12.0 spice-server && \ |
3393 | $pkg_config --atleast-version=0.12.3 spice-protocol && \ | |
cd4ec0b4 GH |
3394 | compile_prog "$spice_cflags" "$spice_libs" ; then |
3395 | spice="yes" | |
3396 | libs_softmmu="$libs_softmmu $spice_libs" | |
3397 | QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags" | |
2e0e3c39 AL |
3398 | spice_protocol_version=$($pkg_config --modversion spice-protocol) |
3399 | spice_server_version=$($pkg_config --modversion spice-server) | |
cd4ec0b4 GH |
3400 | else |
3401 | if test "$spice" = "yes" ; then | |
21684af0 | 3402 | feature_not_found "spice" "Install spice-server and spice-protocol devel" |
cd4ec0b4 GH |
3403 | fi |
3404 | spice="no" | |
3405 | fi | |
3406 | fi | |
3407 | ||
111a38b0 | 3408 | # check for libcacard for smartcard support |
afd347ab PB |
3409 | smartcard_cflags="" |
3410 | # TODO - what's the minimal nss version we support? | |
3411 | if test "$smartcard_nss" != "no"; then | |
3412 | cat > $TMPC << EOF | |
5f01e06f ST |
3413 | #include <pk11pub.h> |
3414 | int main(void) { PK11_FreeSlot(0); return 0; } | |
3415 | EOF | |
afd347ab PB |
3416 | smartcard_includes="-I\$(SRC_PATH)/libcacard" |
3417 | libcacard_libs="$($pkg_config --libs nss 2>/dev/null) $glib_libs" | |
3418 | libcacard_cflags="$($pkg_config --cflags nss 2>/dev/null) $glib_cflags" | |
3419 | test_cflags="$libcacard_cflags" | |
3420 | # The header files in nss < 3.13.3 have a bug which causes them to | |
3421 | # emit a warning. If we're going to compile QEMU with -Werror, then | |
3422 | # test that the headers don't have this bug. Otherwise we would pass | |
3423 | # the configure test but fail to compile QEMU later. | |
3424 | if test "$werror" = "yes"; then | |
3425 | test_cflags="-Werror $test_cflags" | |
3426 | fi | |
b6fc675b | 3427 | if test -n "$libtool" && |
65d5d3f9 | 3428 | $pkg_config --atleast-version=3.12.8 nss && \ |
afd347ab PB |
3429 | compile_prog "$test_cflags" "$libcacard_libs"; then |
3430 | smartcard_nss="yes" | |
3431 | QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags" | |
3432 | QEMU_INCLUDES="$QEMU_INCLUDES $smartcard_includes" | |
3433 | libs_softmmu="$libcacard_libs $libs_softmmu" | |
3434 | else | |
3435 | if test "$smartcard_nss" = "yes"; then | |
3436 | feature_not_found "nss" | |
111a38b0 | 3437 | fi |
afd347ab | 3438 | smartcard_nss="no" |
111a38b0 RR |
3439 | fi |
3440 | fi | |
111a38b0 | 3441 | |
2b2325ff GH |
3442 | # check for libusb |
3443 | if test "$libusb" != "no" ; then | |
65d5d3f9 | 3444 | if $pkg_config --atleast-version=1.0.13 libusb-1.0; then |
2b2325ff | 3445 | libusb="yes" |
ca871ec8 SW |
3446 | libusb_cflags=$($pkg_config --cflags libusb-1.0) |
3447 | libusb_libs=$($pkg_config --libs libusb-1.0) | |
2b2325ff GH |
3448 | QEMU_CFLAGS="$QEMU_CFLAGS $libusb_cflags" |
3449 | libs_softmmu="$libs_softmmu $libusb_libs" | |
3450 | else | |
3451 | if test "$libusb" = "yes"; then | |
21684af0 | 3452 | feature_not_found "libusb" "Install libusb devel" |
2b2325ff GH |
3453 | fi |
3454 | libusb="no" | |
3455 | fi | |
3456 | fi | |
3457 | ||
69354a83 HG |
3458 | # check for usbredirparser for usb network redirection support |
3459 | if test "$usb_redir" != "no" ; then | |
65d5d3f9 | 3460 | if $pkg_config --atleast-version=0.6 libusbredirparser-0.5; then |
69354a83 | 3461 | usb_redir="yes" |
ca871ec8 SW |
3462 | usb_redir_cflags=$($pkg_config --cflags libusbredirparser-0.5) |
3463 | usb_redir_libs=$($pkg_config --libs libusbredirparser-0.5) | |
69354a83 | 3464 | QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags" |
56ab2ad1 | 3465 | libs_softmmu="$libs_softmmu $usb_redir_libs" |
69354a83 HG |
3466 | else |
3467 | if test "$usb_redir" = "yes"; then | |
21684af0 | 3468 | feature_not_found "usb-redir" "Install usbredir devel" |
69354a83 HG |
3469 | fi |
3470 | usb_redir="no" | |
3471 | fi | |
3472 | fi | |
3473 | ||
d9840e25 TS |
3474 | ########################################## |
3475 | # check if we have VSS SDK headers for win | |
3476 | ||
3477 | if test "$mingw32" = "yes" -a "$guest_agent" != "no" -a "$vss_win32_sdk" != "no" ; then | |
3478 | case "$vss_win32_sdk" in | |
3479 | "") vss_win32_include="-I$source_path" ;; | |
3480 | *\ *) # The SDK is installed in "Program Files" by default, but we cannot | |
3481 | # handle path with spaces. So we symlink the headers into ".sdk/vss". | |
3482 | vss_win32_include="-I$source_path/.sdk/vss" | |
3483 | symlink "$vss_win32_sdk/inc" "$source_path/.sdk/vss/inc" | |
3484 | ;; | |
3485 | *) vss_win32_include="-I$vss_win32_sdk" | |
3486 | esac | |
3487 | cat > $TMPC << EOF | |
3488 | #define __MIDL_user_allocate_free_DEFINED__ | |
3489 | #include <inc/win2003/vss.h> | |
3490 | int main(void) { return VSS_CTX_BACKUP; } | |
3491 | EOF | |
3492 | if compile_prog "$vss_win32_include" "" ; then | |
3493 | guest_agent_with_vss="yes" | |
3494 | QEMU_CFLAGS="$QEMU_CFLAGS $vss_win32_include" | |
3495 | libs_qga="-lole32 -loleaut32 -lshlwapi -luuid -lstdc++ -Wl,--enable-stdcall-fixup $libs_qga" | |
3496 | else | |
3497 | if test "$vss_win32_sdk" != "" ; then | |
3498 | echo "ERROR: Please download and install Microsoft VSS SDK:" | |
3499 | echo "ERROR: http://www.microsoft.com/en-us/download/details.aspx?id=23490" | |
3500 | echo "ERROR: On POSIX-systems, you can extract the SDK headers by:" | |
3501 | echo "ERROR: scripts/extract-vsssdk-headers setup.exe" | |
3502 | echo "ERROR: The headers are extracted in the directory \`inc'." | |
3503 | feature_not_found "VSS support" | |
3504 | fi | |
3505 | guest_agent_with_vss="no" | |
3506 | fi | |
3507 | fi | |
3508 | ||
3509 | ########################################## | |
3510 | # lookup Windows platform SDK (if not specified) | |
3511 | # The SDK is needed only to build .tlb (type library) file of guest agent | |
3512 | # VSS provider from the source. It is usually unnecessary because the | |
3513 | # pre-compiled .tlb file is included. | |
3514 | ||
3515 | if test "$mingw32" = "yes" -a "$guest_agent" != "no" -a "$guest_agent_with_vss" = "yes" ; then | |
3516 | if test -z "$win_sdk"; then | |
3517 | programfiles="$PROGRAMFILES" | |
3518 | test -n "$PROGRAMW6432" && programfiles="$PROGRAMW6432" | |
3519 | if test -n "$programfiles"; then | |
3520 | win_sdk=$(ls -d "$programfiles/Microsoft SDKs/Windows/v"* | tail -1) 2>/dev/null | |
3521 | else | |
3522 | feature_not_found "Windows SDK" | |
3523 | fi | |
3524 | elif test "$win_sdk" = "no"; then | |
3525 | win_sdk="" | |
3526 | fi | |
3527 | fi | |
3528 | ||
cd4ec0b4 GH |
3529 | ########################################## |
3530 | ||
5f6b9e8f BS |
3531 | ########################################## |
3532 | # check if we have fdatasync | |
3533 | ||
3534 | fdatasync=no | |
3535 | cat > $TMPC << EOF | |
3536 | #include <unistd.h> | |
d1722a27 AR |
3537 | int main(void) { |
3538 | #if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0 | |
3539 | return fdatasync(0); | |
3540 | #else | |
e172fe11 | 3541 | #error Not supported |
d1722a27 AR |
3542 | #endif |
3543 | } | |
5f6b9e8f BS |
3544 | EOF |
3545 | if compile_prog "" "" ; then | |
3546 | fdatasync=yes | |
3547 | fi | |
3548 | ||
e78815a5 AF |
3549 | ########################################## |
3550 | # check if we have madvise | |
3551 | ||
3552 | madvise=no | |
3553 | cat > $TMPC << EOF | |
3554 | #include <sys/types.h> | |
3555 | #include <sys/mman.h> | |
832ce9c2 | 3556 | #include <stddef.h> |
e78815a5 AF |
3557 | int main(void) { return madvise(NULL, 0, MADV_DONTNEED); } |
3558 | EOF | |
3559 | if compile_prog "" "" ; then | |
3560 | madvise=yes | |
3561 | fi | |
3562 | ||
3563 | ########################################## | |
3564 | # check if we have posix_madvise | |
3565 | ||
3566 | posix_madvise=no | |
3567 | cat > $TMPC << EOF | |
3568 | #include <sys/mman.h> | |
832ce9c2 | 3569 | #include <stddef.h> |
e78815a5 AF |
3570 | int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); } |
3571 | EOF | |
3572 | if compile_prog "" "" ; then | |
3573 | posix_madvise=yes | |
3574 | fi | |
3575 | ||
1e9737da RH |
3576 | ########################################## |
3577 | # check if we have usable SIGEV_THREAD_ID | |
3578 | ||
3579 | sigev_thread_id=no | |
3580 | cat > $TMPC << EOF | |
3581 | #include <signal.h> | |
3582 | int main(void) { | |
3583 | struct sigevent ev; | |
3584 | ev.sigev_notify = SIGEV_THREAD_ID; | |
3585 | ev._sigev_un._tid = 0; | |
3586 | asm volatile("" : : "g"(&ev)); | |
3587 | return 0; | |
3588 | } | |
3589 | EOF | |
3590 | if compile_prog "" "" ; then | |
3591 | sigev_thread_id=yes | |
3592 | fi | |
3593 | ||
94a420b1 SH |
3594 | ########################################## |
3595 | # check if trace backend exists | |
3596 | ||
650ab98d | 3597 | $python "$source_path/scripts/tracetool.py" "--backend=$trace_backend" --check-backend > /dev/null 2> /dev/null |
94a420b1 | 3598 | if test "$?" -ne 0 ; then |
76ad07a4 PM |
3599 | error_exit "invalid trace backend" \ |
3600 | "Please choose a supported trace backend." | |
94a420b1 SH |
3601 | fi |
3602 | ||
7e24e92a SH |
3603 | ########################################## |
3604 | # For 'ust' backend, test if ust headers are present | |
3605 | if test "$trace_backend" = "ust"; then | |
3606 | cat > $TMPC << EOF | |
bf15f63c | 3607 | #include <lttng/tracepoint.h> |
7e24e92a SH |
3608 | int main(void) { return 0; } |
3609 | EOF | |
3610 | if compile_prog "" "" ; then | |
bf15f63c MG |
3611 | if $pkg_config lttng-ust --exists; then |
3612 | lttng_ust_libs=`$pkg_config --libs lttng-ust` | |
3613 | else | |
3614 | lttng_ust_libs="-llttng-ust" | |
3615 | fi | |
3616 | if $pkg_config liburcu-bp --exists; then | |
3617 | urcu_bp_libs=`$pkg_config --libs liburcu-bp` | |
3618 | else | |
3619 | urcu_bp_libs="-lurcu-bp" | |
3620 | fi | |
3621 | ||
3622 | LIBS="$lttng_ust_libs $urcu_bp_libs $LIBS" | |
3623 | libs_qga="$lttng_ust_libs $urcu_bp_libs $libs_qga" | |
7e24e92a | 3624 | else |
bf15f63c | 3625 | error_exit "Trace backend 'ust' missing lttng-ust header files" |
7e24e92a SH |
3626 | fi |
3627 | fi | |
b3d08c02 DB |
3628 | |
3629 | ########################################## | |
3630 | # For 'dtrace' backend, test if 'dtrace' command is present | |
3631 | if test "$trace_backend" = "dtrace"; then | |
3632 | if ! has 'dtrace' ; then | |
76ad07a4 | 3633 | error_exit "dtrace command is not found in PATH $PATH" |
b3d08c02 | 3634 | fi |
c276b17d DB |
3635 | trace_backend_stap="no" |
3636 | if has 'stap' ; then | |
3637 | trace_backend_stap="yes" | |
3638 | fi | |
b3d08c02 DB |
3639 | fi |
3640 | ||
023367e6 | 3641 | ########################################## |
519175a2 | 3642 | # check and set a backend for coroutine |
d0e2fce5 | 3643 | |
7c2acc70 PM |
3644 | # We prefer ucontext, but it's not always possible. The fallback |
3645 | # is sigcontext. gthread is not selectable except explicitly, because | |
3646 | # it is not functional enough to run QEMU proper. (It is occasionally | |
3647 | # useful for debugging purposes.) On Windows the only valid backend | |
3648 | # is the Windows-specific one. | |
3649 | ||
3650 | ucontext_works=no | |
3651 | if test "$darwin" != "yes"; then | |
3652 | cat > $TMPC << EOF | |
d0e2fce5 | 3653 | #include <ucontext.h> |
cdf84806 PM |
3654 | #ifdef __stub_makecontext |
3655 | #error Ignoring glibc stub makecontext which will always fail | |
3656 | #endif | |
75cafad7 | 3657 | int main(void) { makecontext(0, 0, 0); return 0; } |
d0e2fce5 | 3658 | EOF |
7c2acc70 PM |
3659 | if compile_prog "" "" ; then |
3660 | ucontext_works=yes | |
3661 | fi | |
3662 | fi | |
3663 | ||
3664 | if test "$coroutine" = ""; then | |
3665 | if test "$mingw32" = "yes"; then | |
3666 | coroutine=win32 | |
3667 | elif test "$ucontext_works" = "yes"; then | |
3668 | coroutine=ucontext | |
3669 | else | |
3670 | coroutine=sigaltstack | |
d0e2fce5 | 3671 | fi |
519175a2 | 3672 | else |
7c2acc70 PM |
3673 | case $coroutine in |
3674 | windows) | |
3675 | if test "$mingw32" != "yes"; then | |
3676 | error_exit "'windows' coroutine backend only valid for Windows" | |
3677 | fi | |
3678 | # Unfortunately the user visible backend name doesn't match the | |
3679 | # coroutine-*.c filename for this case, so we have to adjust it here. | |
3680 | coroutine=win32 | |
3681 | ;; | |
3682 | ucontext) | |
3683 | if test "$ucontext_works" != "yes"; then | |
3684 | feature_not_found "ucontext" | |
3685 | fi | |
3686 | ;; | |
3687 | gthread|sigaltstack) | |
3688 | if test "$mingw32" = "yes"; then | |
3689 | error_exit "only the 'windows' coroutine backend is valid for Windows" | |
3690 | fi | |
3691 | ;; | |
3692 | *) | |
3693 | error_exit "unknown coroutine backend $coroutine" | |
3694 | ;; | |
3695 | esac | |
d0e2fce5 AK |
3696 | fi |
3697 | ||
70c60c08 SH |
3698 | if test "$coroutine_pool" = ""; then |
3699 | if test "$coroutine" = "gthread"; then | |
3700 | coroutine_pool=no | |
3701 | else | |
3702 | coroutine_pool=yes | |
3703 | fi | |
3704 | fi | |
3705 | if test "$coroutine" = "gthread" -a "$coroutine_pool" = "yes"; then | |
3706 | error_exit "'gthread' coroutine backend does not support pool (use --disable-coroutine-pool)" | |
3707 | fi | |
3708 | ||
d2042378 AK |
3709 | ########################################## |
3710 | # check if we have open_by_handle_at | |
3711 | ||
4e1797f9 | 3712 | open_by_handle_at=no |
d2042378 AK |
3713 | cat > $TMPC << EOF |
3714 | #include <fcntl.h> | |
acc55ba8 SW |
3715 | #if !defined(AT_EMPTY_PATH) |
3716 | # error missing definition | |
3717 | #else | |
75cafad7 | 3718 | int main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); } |
acc55ba8 | 3719 | #endif |
d2042378 AK |
3720 | EOF |
3721 | if compile_prog "" "" ; then | |
3722 | open_by_handle_at=yes | |
3723 | fi | |
3724 | ||
e06a765e HPB |
3725 | ######################################## |
3726 | # check if we have linux/magic.h | |
3727 | ||
3728 | linux_magic_h=no | |
3729 | cat > $TMPC << EOF | |
3730 | #include <linux/magic.h> | |
3731 | int main(void) { | |
75cafad7 | 3732 | return 0; |
e06a765e HPB |
3733 | } |
3734 | EOF | |
3735 | if compile_prog "" "" ; then | |
3736 | linux_magic_h=yes | |
3737 | fi | |
3738 | ||
06d71fa1 | 3739 | ######################################## |
c95e3080 KW |
3740 | # check whether we can disable warning option with a pragma (this is needed |
3741 | # to silence warnings in the headers of some versions of external libraries). | |
3742 | # This test has to be compiled with -Werror as otherwise an unknown pragma is | |
3743 | # only a warning. | |
3744 | # | |
3745 | # If we can't selectively disable warning in the code, disable -Werror so that | |
3746 | # the build doesn't fail anyway. | |
3747 | ||
06d71fa1 PM |
3748 | pragma_disable_unused_but_set=no |
3749 | cat > $TMPC << EOF | |
e6f53fd5 | 3750 | #pragma GCC diagnostic push |
06d71fa1 | 3751 | #pragma GCC diagnostic ignored "-Wunused-but-set-variable" |
c95e3080 | 3752 | #pragma GCC diagnostic ignored "-Wstrict-prototypes" |
e6f53fd5 | 3753 | #pragma GCC diagnostic pop |
c95e3080 | 3754 | |
06d71fa1 PM |
3755 | int main(void) { |
3756 | return 0; | |
3757 | } | |
3758 | EOF | |
3759 | if compile_prog "-Werror" "" ; then | |
cc6e3ca9 | 3760 | pragma_diagnostic_available=yes |
c95e3080 KW |
3761 | else |
3762 | werror=no | |
06d71fa1 PM |
3763 | fi |
3764 | ||
3f4349dc | 3765 | ######################################## |
62fe8331 | 3766 | # check if we have valgrind/valgrind.h and valgrind/memcheck.h |
3f4349dc KW |
3767 | |
3768 | valgrind_h=no | |
3769 | cat > $TMPC << EOF | |
3770 | #include <valgrind/valgrind.h> | |
62fe8331 | 3771 | #include <valgrind/memcheck.h> |
3f4349dc | 3772 | int main(void) { |
3f4349dc KW |
3773 | return 0; |
3774 | } | |
3775 | EOF | |
3776 | if compile_prog "" "" ; then | |
3777 | valgrind_h=yes | |
3778 | fi | |
3779 | ||
8ab1bf12 LC |
3780 | ######################################## |
3781 | # check if environ is declared | |
3782 | ||
3783 | has_environ=no | |
3784 | cat > $TMPC << EOF | |
3785 | #include <unistd.h> | |
3786 | int main(void) { | |
c075a723 | 3787 | environ = 0; |
8ab1bf12 LC |
3788 | return 0; |
3789 | } | |
3790 | EOF | |
3791 | if compile_prog "" "" ; then | |
3792 | has_environ=yes | |
3793 | fi | |
3794 | ||
76a347e1 RH |
3795 | ######################################## |
3796 | # check if cpuid.h is usable. | |
3797 | ||
3798 | cpuid_h=no | |
3799 | cat > $TMPC << EOF | |
3800 | #include <cpuid.h> | |
3801 | int main(void) { | |
774d566c PM |
3802 | unsigned a, b, c, d; |
3803 | int max = __get_cpuid_max(0, 0); | |
3804 | ||
3805 | if (max >= 1) { | |
3806 | __cpuid(1, a, b, c, d); | |
3807 | } | |
3808 | ||
3809 | if (max >= 7) { | |
3810 | __cpuid_count(7, 0, a, b, c, d); | |
3811 | } | |
3812 | ||
3813 | return 0; | |
76a347e1 RH |
3814 | } |
3815 | EOF | |
3816 | if compile_prog "" "" ; then | |
3817 | cpuid_h=yes | |
3818 | fi | |
3819 | ||
f540166b RH |
3820 | ######################################## |
3821 | # check if __[u]int128_t is usable. | |
3822 | ||
3823 | int128=no | |
3824 | cat > $TMPC << EOF | |
3825 | __int128_t a; | |
3826 | __uint128_t b; | |
3827 | int main (void) { | |
3828 | a = a + b; | |
3829 | b = a * b; | |
464e3671 | 3830 | a = a * a; |
f540166b RH |
3831 | return 0; |
3832 | } | |
3833 | EOF | |
3834 | if compile_prog "" "" ; then | |
3835 | int128=yes | |
3836 | fi | |
76a347e1 | 3837 | |
1e6e9aca RH |
3838 | ######################################## |
3839 | # check if getauxval is available. | |
3840 | ||
3841 | getauxval=no | |
3842 | cat > $TMPC << EOF | |
3843 | #include <sys/auxv.h> | |
3844 | int main(void) { | |
3845 | return getauxval(AT_HWCAP) == 0; | |
3846 | } | |
3847 | EOF | |
3848 | if compile_prog "" "" ; then | |
3849 | getauxval=yes | |
3850 | fi | |
3851 | ||
7e24e92a | 3852 | ########################################## |
e86ecd4b JQ |
3853 | # End of CC checks |
3854 | # After here, no more $cc or $ld runs | |
3855 | ||
1d728c39 BS |
3856 | if test "$gcov" = "yes" ; then |
3857 | CFLAGS="-fprofile-arcs -ftest-coverage -g $CFLAGS" | |
3858 | LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS" | |
3859 | elif test "$debug" = "no" ; then | |
e600cdf3 | 3860 | CFLAGS="-O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $CFLAGS" |
e86ecd4b | 3861 | fi |
a316e378 | 3862 | |
6542aa9c PL |
3863 | ########################################## |
3864 | # Do we have libnfs | |
3865 | if test "$libnfs" != "no" ; then | |
3866 | if $pkg_config --atleast-version=1.9.2 libnfs; then | |
3867 | libnfs="yes" | |
3868 | libnfs_libs=$($pkg_config --libs libnfs) | |
3869 | LIBS="$LIBS $libnfs_libs" | |
3870 | else | |
3871 | if test "$libnfs" = "yes" ; then | |
3872 | feature_not_found "libnfs" | |
3873 | fi | |
3874 | libnfs="no" | |
3875 | fi | |
3876 | fi | |
1d728c39 | 3877 | |
20ff6c80 AL |
3878 | # Disable zero malloc errors for official releases unless explicitly told to |
3879 | # enable/disable | |
3880 | if test -z "$zero_malloc" ; then | |
3881 | if test "$z_version" = "50" ; then | |
3882 | zero_malloc="no" | |
3883 | else | |
3884 | zero_malloc="yes" | |
3885 | fi | |
3886 | fi | |
3887 | ||
6ca026cb PM |
3888 | # Now we've finished running tests it's OK to add -Werror to the compiler flags |
3889 | if test "$werror" = "yes"; then | |
3890 | QEMU_CFLAGS="-Werror $QEMU_CFLAGS" | |
3891 | fi | |
3892 | ||
e86ecd4b JQ |
3893 | if test "$solaris" = "no" ; then |
3894 | if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then | |
1156c669 | 3895 | LDFLAGS="-Wl,--warn-common $LDFLAGS" |
e86ecd4b JQ |
3896 | fi |
3897 | fi | |
3898 | ||
94dd53c5 GH |
3899 | # test if pod2man has --utf8 option |
3900 | if pod2man --help | grep -q utf8; then | |
3901 | POD2MAN="pod2man --utf8" | |
3902 | else | |
3903 | POD2MAN="pod2man" | |
3904 | fi | |
3905 | ||
952afb71 BS |
3906 | # Use ASLR, no-SEH and DEP if available |
3907 | if test "$mingw32" = "yes" ; then | |
3908 | for flag in --dynamicbase --no-seh --nxcompat; do | |
3909 | if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then | |
3910 | LDFLAGS="-Wl,$flag $LDFLAGS" | |
3911 | fi | |
3912 | done | |
3913 | fi | |
3914 | ||
10ea68b3 | 3915 | qemu_confdir=$sysconfdir$confsuffix |
e26110cf | 3916 | qemu_moddir=$libdir$confsuffix |
528ae5b8 | 3917 | qemu_datadir=$datadir$confsuffix |
834574ea | 3918 | qemu_localedir="$datadir/locale" |
e7b45cc4 | 3919 | |
4b1c11fd DB |
3920 | tools="" |
3921 | if test "$want_tools" = "yes" ; then | |
ca35f780 | 3922 | tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools" |
4b1c11fd DB |
3923 | if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then |
3924 | tools="qemu-nbd\$(EXESUF) $tools" | |
3925 | fi | |
3926 | fi | |
3927 | if test "$softmmu" = yes ; then | |
983eef5a | 3928 | if test "$virtfs" != no ; then |
aabfd88d AF |
3929 | if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then |
3930 | virtfs=yes | |
3931 | tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)" | |
3932 | else | |
3933 | if test "$virtfs" = yes; then | |
76ad07a4 | 3934 | error_exit "VirtFS is supported only on Linux and requires libcap-devel and libattr-devel" |
983eef5a | 3935 | fi |
17500370 | 3936 | virtfs=no |
aabfd88d | 3937 | fi |
17bff52b | 3938 | fi |
e8ef31a3 MT |
3939 | fi |
3940 | if [ "$guest_agent" != "no" ]; then | |
b39297ae | 3941 | if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32" = "yes" ] ; then |
48ff7a62 | 3942 | tools="qemu-ga\$(EXESUF) $tools" |
b39297ae TS |
3943 | if [ "$mingw32" = "yes" -a "$guest_agent_with_vss" = "yes" ]; then |
3944 | tools="qga/vss-win32/qga-vss.dll qga/vss-win32/qga-vss.tlb $tools" | |
3945 | fi | |
e8ef31a3 MT |
3946 | guest_agent=yes |
3947 | elif [ "$guest_agent" != yes ]; then | |
3948 | guest_agent=no | |
3949 | else | |
3950 | error_exit "Guest agent is not supported on this platform" | |
ca35f780 | 3951 | fi |
00c705fb | 3952 | fi |
ca35f780 PB |
3953 | |
3954 | # Mac OS X ships with a broken assembler | |
3955 | roms= | |
3956 | if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ | |
3957 | "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \ | |
3958 | "$softmmu" = yes ; then | |
3959 | roms="optionrom" | |
3960 | fi | |
d0384d1d | 3961 | if test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then |
39ac8455 DG |
3962 | roms="$roms spapr-rtas" |
3963 | fi | |
ca35f780 | 3964 | |
9933c305 CB |
3965 | if test "$cpu" = "s390x" ; then |
3966 | roms="$roms s390-ccw" | |
3967 | fi | |
3968 | ||
964c6fa1 RH |
3969 | # Probe for the need for relocating the user-only binary. |
3970 | if test "$pie" = "no" ; then | |
3971 | textseg_addr= | |
3972 | case "$cpu" in | |
c72b26ec | 3973 | arm | hppa | i386 | m68k | ppc | ppc64 | s390* | sparc | sparc64 | x86_64 | x32) |
964c6fa1 RH |
3974 | textseg_addr=0x60000000 |
3975 | ;; | |
3976 | mips) | |
3977 | textseg_addr=0x400000 | |
3978 | ;; | |
3979 | esac | |
3980 | if [ -n "$textseg_addr" ]; then | |
3981 | cat > $TMPC <<EOF | |
3982 | int main(void) { return 0; } | |
3983 | EOF | |
3984 | textseg_ldflags="-Wl,-Ttext-segment=$textseg_addr" | |
3985 | if ! compile_prog "" "$textseg_ldflags"; then | |
3986 | # In case ld does not support -Ttext-segment, edit the default linker | |
3987 | # script via sed to set the .text start addr. This is needed on FreeBSD | |
3988 | # at least. | |
3989 | $ld --verbose | sed \ | |
3990 | -e '1,/==================================================/d' \ | |
3991 | -e '/==================================================/,$d' \ | |
3992 | -e "s/[.] = [0-9a-fx]* [+] SIZEOF_HEADERS/. = $textseg_addr + SIZEOF_HEADERS/" \ | |
3993 | -e "s/__executable_start = [0-9a-fx]*/__executable_start = $textseg_addr/" > config-host.ld | |
3994 | textseg_ldflags="-Wl,-T../config-host.ld" | |
3995 | fi | |
3996 | fi | |
3997 | fi | |
3998 | ||
5ca9388a | 3999 | # add pixman flags after all config tests are done |
a540f158 | 4000 | QEMU_CFLAGS="$QEMU_CFLAGS $pixman_cflags $fdt_cflags" |
5ca9388a GH |
4001 | libs_softmmu="$libs_softmmu $pixman_libs" |
4002 | ||
43ce4dfe | 4003 | echo "Install prefix $prefix" |
c00b2808 | 4004 | echo "BIOS directory `eval echo $qemu_datadir`" |
f2b9e1e3 | 4005 | echo "binary directory `eval echo $bindir`" |
3aa5d2be | 4006 | echo "library directory `eval echo $libdir`" |
e26110cf | 4007 | echo "module directory `eval echo $qemu_moddir`" |
8bf188aa | 4008 | echo "libexec directory `eval echo $libexecdir`" |
0f94d6da | 4009 | echo "include directory `eval echo $includedir`" |
1c0fd160 | 4010 | echo "config directory `eval echo $sysconfdir`" |
11d9f695 | 4011 | if test "$mingw32" = "no" ; then |
5a699bbb | 4012 | echo "local state directory `eval echo $local_statedir`" |
f2b9e1e3 | 4013 | echo "Manual directory `eval echo $mandir`" |
43ce4dfe | 4014 | echo "ELF interp prefix $interp_prefix" |
5a699bbb LE |
4015 | else |
4016 | echo "local state directory queried at runtime" | |
d9840e25 | 4017 | echo "Windows SDK $win_sdk" |
11d9f695 | 4018 | fi |
5a67135a | 4019 | echo "Source path $source_path" |
43ce4dfe | 4020 | echo "C compiler $cc" |
83469015 | 4021 | echo "Host C compiler $host_cc" |
83f73fce | 4022 | echo "C++ compiler $cxx" |
3c4a4d0d | 4023 | echo "Objective-C compiler $objcc" |
45d285ab | 4024 | echo "ARFLAGS $ARFLAGS" |
0c439cbf | 4025 | echo "CFLAGS $CFLAGS" |
a558ee17 | 4026 | echo "QEMU_CFLAGS $QEMU_CFLAGS" |
0c439cbf | 4027 | echo "LDFLAGS $LDFLAGS" |
43ce4dfe | 4028 | echo "make $make" |
6a882643 | 4029 | echo "install $install" |
c886edfb | 4030 | echo "python $python" |
e2d8830e BS |
4031 | if test "$slirp" = "yes" ; then |
4032 | echo "smbd $smbd" | |
4033 | fi | |
17969268 | 4034 | echo "module support $modules" |
43ce4dfe | 4035 | echo "host CPU $cpu" |
de83cd02 | 4036 | echo "host big endian $bigendian" |
97a847bc | 4037 | echo "target list $target_list" |
ade25b0d | 4038 | echo "tcg debug enabled $debug_tcg" |
43ce4dfe | 4039 | echo "gprof enabled $gprof" |
03b4fe7d | 4040 | echo "sparse enabled $sparse" |
1625af87 | 4041 | echo "strip binaries $strip_opt" |
05c2a3e7 | 4042 | echo "profiler $profiler" |
43ce4dfe | 4043 | echo "static build $static" |
85aa5189 | 4044 | echo "-Werror enabled $werror" |
5b0753e0 FB |
4045 | if test "$darwin" = "yes" ; then |
4046 | echo "Cocoa support $cocoa" | |
4047 | fi | |
e2134eb9 | 4048 | echo "pixman $pixman" |
97a847bc | 4049 | echo "SDL support $sdl" |
a4ccabcf | 4050 | echo "GTK support $gtk" |
4d3b6f6e | 4051 | echo "curses support $curses" |
769ce76d | 4052 | echo "curl support $curl" |
67b915a5 | 4053 | echo "mingw32 support $mingw32" |
0c58ac1c | 4054 | echo "Audio drivers $audio_drv_list" |
b64ec4e4 FZ |
4055 | echo "Block whitelist (rw) $block_drv_rw_whitelist" |
4056 | echo "Block whitelist (ro) $block_drv_ro_whitelist" | |
983eef5a | 4057 | echo "VirtFS support $virtfs" |
821601ea JS |
4058 | echo "VNC support $vnc" |
4059 | if test "$vnc" = "yes" ; then | |
4060 | echo "VNC TLS support $vnc_tls" | |
4061 | echo "VNC SASL support $vnc_sasl" | |
4062 | echo "VNC JPEG support $vnc_jpeg" | |
4063 | echo "VNC PNG support $vnc_png" | |
7536ee4b | 4064 | echo "VNC WS support $vnc_ws" |
821601ea | 4065 | fi |
3142255c BS |
4066 | if test -n "$sparc_cpu"; then |
4067 | echo "Target Sparc Arch $sparc_cpu" | |
4068 | fi | |
e37630ca | 4069 | echo "xen support $xen" |
2e4d9fb1 | 4070 | echo "brlapi support $brlapi" |
a20a6f46 | 4071 | echo "bluez support $bluez" |
a25dba17 | 4072 | echo "Documentation $docs" |
c5937220 PB |
4073 | [ ! -z "$uname_release" ] && \ |
4074 | echo "uname -r $uname_release" | |
379f6698 | 4075 | echo "GUEST_BASE $guest_base" |
40d6444e | 4076 | echo "PIE $pie" |
8a16d273 | 4077 | echo "vde support $vde" |
58952137 | 4078 | echo "netmap support $netmap" |
5c6c3a6c | 4079 | echo "Linux AIO support $linux_aio" |
758e8e38 | 4080 | echo "ATTR/XATTR support $attr" |
77755340 | 4081 | echo "Install blobs $blobs" |
b31a0277 | 4082 | echo "KVM support $kvm" |
2da776db | 4083 | echo "RDMA support $rdma" |
9195b2c2 | 4084 | echo "TCG interpreter $tcg_interpreter" |
f652e6af | 4085 | echo "fdt support $fdt" |
ceb42de8 | 4086 | echo "preadv support $preadv" |
5f6b9e8f | 4087 | echo "fdatasync $fdatasync" |
e78815a5 AF |
4088 | echo "madvise $madvise" |
4089 | echo "posix_madvise $posix_madvise" | |
1e9737da | 4090 | echo "sigev_thread_id $sigev_thread_id" |
ee682d27 | 4091 | echo "uuid support $uuid" |
47e98658 | 4092 | echo "libcap-ng support $cap_ng" |
d5970055 | 4093 | echo "vhost-net support $vhost_net" |
5e9be92d | 4094 | echo "vhost-scsi support $vhost_scsi" |
94a420b1 | 4095 | echo "Trace backend $trace_backend" |
9410b56c | 4096 | echo "Trace output file $trace_file-<pid>" |
c9dd4074 | 4097 | if test "$spice" = "yes"; then |
2e0e3c39 | 4098 | echo "spice support $spice ($spice_protocol_version/$spice_server_version)" |
c9dd4074 SW |
4099 | else |
4100 | echo "spice support $spice" | |
4101 | fi | |
f27aaf4b | 4102 | echo "rbd support $rbd" |
dce512de | 4103 | echo "xfsctl support $xfs" |
111a38b0 | 4104 | echo "nss used $smartcard_nss" |
2b2325ff | 4105 | echo "libusb $libusb" |
69354a83 | 4106 | echo "usb net redir $usb_redir" |
b1e5fff4 | 4107 | echo "GLX support $glx" |
219c2521 SW |
4108 | if test "$libiscsi_version" = "1.4.0"; then |
4109 | echo "libiscsi support $libiscsi (1.4.0)" | |
4110 | else | |
c589b249 | 4111 | echo "libiscsi support $libiscsi" |
219c2521 | 4112 | fi |
6542aa9c | 4113 | echo "libnfs support $libnfs" |
d138cee9 | 4114 | echo "build guest agent $guest_agent" |
d9840e25 | 4115 | echo "QGA VSS support $guest_agent_with_vss" |
f794573e | 4116 | echo "seccomp support $seccomp" |
7c2acc70 | 4117 | echo "coroutine backend $coroutine" |
70c60c08 | 4118 | echo "coroutine pool $coroutine_pool" |
eb100396 | 4119 | echo "GlusterFS support $glusterfs" |
583f6e7b | 4120 | echo "virtio-blk-data-plane $virtio_blk_data_plane" |
1d728c39 BS |
4121 | echo "gcov $gcov_tool" |
4122 | echo "gcov enabled $gcov" | |
ab214c29 | 4123 | echo "TPM support $tpm" |
0a12ec87 | 4124 | echo "libssh2 support $libssh2" |
3b8acc11 | 4125 | echo "TPM passthrough $tpm_passthrough" |
3556c233 | 4126 | echo "QOM debugging $qom_cast_debug" |
4f18b782 | 4127 | echo "vhdx $vhdx" |
95c6bff3 | 4128 | echo "Quorum $quorum" |
607dacd0 QN |
4129 | echo "lzo support $lzo" |
4130 | echo "snappy support $snappy" | |
67b915a5 | 4131 | |
1ba16968 | 4132 | if test "$sdl_too_old" = "yes"; then |
24b55b96 | 4133 | echo "-> Your SDL version is too old - please upgrade to have SDL support" |
7c1f25b4 | 4134 | fi |
7d13299d | 4135 | |
98ec69ac | 4136 | config_host_mak="config-host.mak" |
98ec69ac | 4137 | |
dbd99ae3 SW |
4138 | echo "# Automatically generated by configure - do not modify" >config-all-disas.mak |
4139 | ||
98ec69ac | 4140 | echo "# Automatically generated by configure - do not modify" > $config_host_mak |
98ec69ac | 4141 | echo >> $config_host_mak |
98ec69ac | 4142 | |
e6c3b0f7 | 4143 | echo all: >> $config_host_mak |
99d7cc75 PB |
4144 | echo "prefix=$prefix" >> $config_host_mak |
4145 | echo "bindir=$bindir" >> $config_host_mak | |
3aa5d2be | 4146 | echo "libdir=$libdir" >> $config_host_mak |
8bf188aa | 4147 | echo "libexecdir=$libexecdir" >> $config_host_mak |
0f94d6da | 4148 | echo "includedir=$includedir" >> $config_host_mak |
99d7cc75 | 4149 | echo "mandir=$mandir" >> $config_host_mak |
99d7cc75 | 4150 | echo "sysconfdir=$sysconfdir" >> $config_host_mak |
22d07038 | 4151 | echo "qemu_confdir=$qemu_confdir" >> $config_host_mak |
9afa52ce EH |
4152 | echo "qemu_datadir=$qemu_datadir" >> $config_host_mak |
4153 | echo "qemu_docdir=$qemu_docdir" >> $config_host_mak | |
e26110cf | 4154 | echo "qemu_moddir=$qemu_moddir" >> $config_host_mak |
5a699bbb LE |
4155 | if test "$mingw32" = "no" ; then |
4156 | echo "qemu_localstatedir=$local_statedir" >> $config_host_mak | |
4157 | fi | |
f354b1a1 | 4158 | echo "qemu_helperdir=$libexecdir" >> $config_host_mak |
f9943cd5 GH |
4159 | echo "extra_cflags=$EXTRA_CFLAGS" >> $config_host_mak |
4160 | echo "extra_ldflags=$EXTRA_LDFLAGS" >> $config_host_mak | |
834574ea | 4161 | echo "qemu_localedir=$qemu_localedir" >> $config_host_mak |
f544a488 | 4162 | echo "libs_softmmu=$libs_softmmu" >> $config_host_mak |
804edf29 | 4163 | |
98ec69ac | 4164 | echo "ARCH=$ARCH" >> $config_host_mak |
727e5283 | 4165 | |
f8393946 | 4166 | if test "$debug_tcg" = "yes" ; then |
2358a494 | 4167 | echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak |
f8393946 | 4168 | fi |
1625af87 | 4169 | if test "$strip_opt" = "yes" ; then |
52ba784d | 4170 | echo "STRIP=${strip}" >> $config_host_mak |
1625af87 | 4171 | fi |
7d13299d | 4172 | if test "$bigendian" = "yes" ; then |
e2542fe2 | 4173 | echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak |
97a847bc | 4174 | fi |
67b915a5 | 4175 | if test "$mingw32" = "yes" ; then |
98ec69ac | 4176 | echo "CONFIG_WIN32=y" >> $config_host_mak |
9fe6de94 BS |
4177 | rc_version=`cat $source_path/VERSION` |
4178 | version_major=${rc_version%%.*} | |
4179 | rc_version=${rc_version#*.} | |
4180 | version_minor=${rc_version%%.*} | |
4181 | rc_version=${rc_version#*.} | |
4182 | version_subminor=${rc_version%%.*} | |
4183 | version_micro=0 | |
4184 | echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak | |
4185 | echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak | |
d9840e25 TS |
4186 | if test "$guest_agent_with_vss" = "yes" ; then |
4187 | echo "CONFIG_QGA_VSS=y" >> $config_host_mak | |
4188 | echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak | |
4189 | fi | |
210fa556 | 4190 | else |
35f4df27 | 4191 | echo "CONFIG_POSIX=y" >> $config_host_mak |
dffcb71c MM |
4192 | fi |
4193 | ||
4194 | if test "$linux" = "yes" ; then | |
4195 | echo "CONFIG_LINUX=y" >> $config_host_mak | |
67b915a5 | 4196 | fi |
128ab2ff | 4197 | |
83fb7adf | 4198 | if test "$darwin" = "yes" ; then |
98ec69ac | 4199 | echo "CONFIG_DARWIN=y" >> $config_host_mak |
83fb7adf | 4200 | fi |
b29fe3ed | 4201 | |
4202 | if test "$aix" = "yes" ; then | |
98ec69ac | 4203 | echo "CONFIG_AIX=y" >> $config_host_mak |
b29fe3ed | 4204 | fi |
4205 | ||
ec530c81 | 4206 | if test "$solaris" = "yes" ; then |
98ec69ac | 4207 | echo "CONFIG_SOLARIS=y" >> $config_host_mak |
2358a494 | 4208 | echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak |
0475a5ca | 4209 | if test "$needs_libsunmath" = "yes" ; then |
75b5a697 | 4210 | echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak |
0475a5ca | 4211 | fi |
ec530c81 | 4212 | fi |
179cf400 AF |
4213 | if test "$haiku" = "yes" ; then |
4214 | echo "CONFIG_HAIKU=y" >> $config_host_mak | |
4215 | fi | |
97a847bc | 4216 | if test "$static" = "yes" ; then |
98ec69ac | 4217 | echo "CONFIG_STATIC=y" >> $config_host_mak |
7d13299d | 4218 | fi |
1ba16968 | 4219 | if test "$profiler" = "yes" ; then |
2358a494 | 4220 | echo "CONFIG_PROFILER=y" >> $config_host_mak |
05c2a3e7 | 4221 | fi |
c20709aa | 4222 | if test "$slirp" = "yes" ; then |
98ec69ac | 4223 | echo "CONFIG_SLIRP=y" >> $config_host_mak |
e2d8830e | 4224 | echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak |
c20709aa | 4225 | fi |
8a16d273 | 4226 | if test "$vde" = "yes" ; then |
98ec69ac | 4227 | echo "CONFIG_VDE=y" >> $config_host_mak |
8a16d273 | 4228 | fi |
58952137 VM |
4229 | if test "$netmap" = "yes" ; then |
4230 | echo "CONFIG_NETMAP=y" >> $config_host_mak | |
4231 | fi | |
47e98658 CB |
4232 | if test "$cap_ng" = "yes" ; then |
4233 | echo "CONFIG_LIBCAP=y" >> $config_host_mak | |
4234 | fi | |
2358a494 | 4235 | echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak |
0c58ac1c | 4236 | for drv in $audio_drv_list; do |
bb55b712 | 4237 | def=CONFIG_`echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]'` |
98ec69ac | 4238 | echo "$def=y" >> $config_host_mak |
923e4521 | 4239 | if test "$drv" = "fmod"; then |
7aac6cb1 | 4240 | echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak |
0c58ac1c | 4241 | fi |
4242 | done | |
67f86e8e JQ |
4243 | if test "$audio_pt_int" = "yes" ; then |
4244 | echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak | |
4245 | fi | |
d5631638 | 4246 | if test "$audio_win_int" = "yes" ; then |
4247 | echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak | |
4248 | fi | |
b64ec4e4 FZ |
4249 | echo "CONFIG_BDRV_RW_WHITELIST=$block_drv_rw_whitelist" >> $config_host_mak |
4250 | echo "CONFIG_BDRV_RO_WHITELIST=$block_drv_ro_whitelist" >> $config_host_mak | |
821601ea JS |
4251 | if test "$vnc" = "yes" ; then |
4252 | echo "CONFIG_VNC=y" >> $config_host_mak | |
4253 | fi | |
8d5d2d4c | 4254 | if test "$vnc_tls" = "yes" ; then |
98ec69ac | 4255 | echo "CONFIG_VNC_TLS=y" >> $config_host_mak |
8d5d2d4c | 4256 | fi |
2f9606b3 | 4257 | if test "$vnc_sasl" = "yes" ; then |
98ec69ac | 4258 | echo "CONFIG_VNC_SASL=y" >> $config_host_mak |
2f9606b3 | 4259 | fi |
821601ea | 4260 | if test "$vnc_jpeg" = "yes" ; then |
2f6f5c7a | 4261 | echo "CONFIG_VNC_JPEG=y" >> $config_host_mak |
2f6f5c7a | 4262 | fi |
821601ea | 4263 | if test "$vnc_png" = "yes" ; then |
efe556ad | 4264 | echo "CONFIG_VNC_PNG=y" >> $config_host_mak |
efe556ad | 4265 | fi |
7536ee4b TH |
4266 | if test "$vnc_ws" = "yes" ; then |
4267 | echo "CONFIG_VNC_WS=y" >> $config_host_mak | |
4268 | echo "VNC_WS_CFLAGS=$vnc_ws_cflags" >> $config_host_mak | |
4269 | fi | |
76655d6d | 4270 | if test "$fnmatch" = "yes" ; then |
2358a494 | 4271 | echo "CONFIG_FNMATCH=y" >> $config_host_mak |
76655d6d | 4272 | fi |
ee682d27 SW |
4273 | if test "$uuid" = "yes" ; then |
4274 | echo "CONFIG_UUID=y" >> $config_host_mak | |
4275 | fi | |
dce512de CH |
4276 | if test "$xfs" = "yes" ; then |
4277 | echo "CONFIG_XFS=y" >> $config_host_mak | |
4278 | fi | |
b1a550a0 | 4279 | qemu_version=`head $source_path/VERSION` |
98ec69ac | 4280 | echo "VERSION=$qemu_version" >>$config_host_mak |
2358a494 | 4281 | echo "PKGVERSION=$pkgversion" >>$config_host_mak |
98ec69ac | 4282 | echo "SRC_PATH=$source_path" >> $config_host_mak |
98ec69ac | 4283 | echo "TARGET_DIRS=$target_list" >> $config_host_mak |
a25dba17 | 4284 | if [ "$docs" = "yes" ] ; then |
98ec69ac | 4285 | echo "BUILD_DOCS=yes" >> $config_host_mak |
cc8ae6de | 4286 | fi |
17969268 | 4287 | if test "$modules" = "yes"; then |
e26110cf FZ |
4288 | # $shacmd can generate a hash started with digit, which the compiler doesn't |
4289 | # like as an symbol. So prefix it with an underscore | |
4290 | echo "CONFIG_STAMP=_`(echo $qemu_version; echo $pkgversion; cat $0) | $shacmd - | cut -f1 -d\ `" >> $config_host_mak | |
17969268 FZ |
4291 | echo "CONFIG_MODULES=y" >> $config_host_mak |
4292 | fi | |
1ac88f28 | 4293 | if test "$sdl" = "yes" ; then |
98ec69ac | 4294 | echo "CONFIG_SDL=y" >> $config_host_mak |
1ac88f28 | 4295 | echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak |
49ecc3fa FB |
4296 | fi |
4297 | if test "$cocoa" = "yes" ; then | |
98ec69ac | 4298 | echo "CONFIG_COCOA=y" >> $config_host_mak |
4d3b6f6e AZ |
4299 | fi |
4300 | if test "$curses" = "yes" ; then | |
98ec69ac | 4301 | echo "CONFIG_CURSES=y" >> $config_host_mak |
49ecc3fa | 4302 | fi |
ebc996f3 | 4303 | if test "$utimens" = "yes" ; then |
2358a494 | 4304 | echo "CONFIG_UTIMENSAT=y" >> $config_host_mak |
ebc996f3 | 4305 | fi |
099d6b0f | 4306 | if test "$pipe2" = "yes" ; then |
2358a494 | 4307 | echo "CONFIG_PIPE2=y" >> $config_host_mak |
099d6b0f | 4308 | fi |
40ff6d7e KW |
4309 | if test "$accept4" = "yes" ; then |
4310 | echo "CONFIG_ACCEPT4=y" >> $config_host_mak | |
4311 | fi | |
3ce34dfb | 4312 | if test "$splice" = "yes" ; then |
2358a494 | 4313 | echo "CONFIG_SPLICE=y" >> $config_host_mak |
3ce34dfb | 4314 | fi |
c2882b96 RV |
4315 | if test "$eventfd" = "yes" ; then |
4316 | echo "CONFIG_EVENTFD=y" >> $config_host_mak | |
4317 | fi | |
d0927938 UH |
4318 | if test "$fallocate" = "yes" ; then |
4319 | echo "CONFIG_FALLOCATE=y" >> $config_host_mak | |
4320 | fi | |
3d4fa43e KK |
4321 | if test "$fallocate_punch_hole" = "yes" ; then |
4322 | echo "CONFIG_FALLOCATE_PUNCH_HOLE=y" >> $config_host_mak | |
4323 | fi | |
c727f47d PM |
4324 | if test "$sync_file_range" = "yes" ; then |
4325 | echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak | |
4326 | fi | |
dace20dc PM |
4327 | if test "$fiemap" = "yes" ; then |
4328 | echo "CONFIG_FIEMAP=y" >> $config_host_mak | |
4329 | fi | |
d0927938 UH |
4330 | if test "$dup3" = "yes" ; then |
4331 | echo "CONFIG_DUP3=y" >> $config_host_mak | |
4332 | fi | |
4e0c6529 AB |
4333 | if test "$ppoll" = "yes" ; then |
4334 | echo "CONFIG_PPOLL=y" >> $config_host_mak | |
4335 | fi | |
cd758dd0 AB |
4336 | if test "$prctl_pr_set_timerslack" = "yes" ; then |
4337 | echo "CONFIG_PRCTL_PR_SET_TIMERSLACK=y" >> $config_host_mak | |
4338 | fi | |
3b6edd16 PM |
4339 | if test "$epoll" = "yes" ; then |
4340 | echo "CONFIG_EPOLL=y" >> $config_host_mak | |
4341 | fi | |
4342 | if test "$epoll_create1" = "yes" ; then | |
4343 | echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak | |
4344 | fi | |
4345 | if test "$epoll_pwait" = "yes" ; then | |
4346 | echo "CONFIG_EPOLL_PWAIT=y" >> $config_host_mak | |
4347 | fi | |
a8fd1aba PM |
4348 | if test "$sendfile" = "yes" ; then |
4349 | echo "CONFIG_SENDFILE=y" >> $config_host_mak | |
4350 | fi | |
3b3f24ad | 4351 | if test "$inotify" = "yes" ; then |
2358a494 | 4352 | echo "CONFIG_INOTIFY=y" >> $config_host_mak |
3b3f24ad | 4353 | fi |
c05c7a73 RV |
4354 | if test "$inotify1" = "yes" ; then |
4355 | echo "CONFIG_INOTIFY1=y" >> $config_host_mak | |
4356 | fi | |
6ae9a1f4 JQ |
4357 | if test "$byteswap_h" = "yes" ; then |
4358 | echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak | |
4359 | fi | |
4360 | if test "$bswap_h" = "yes" ; then | |
4361 | echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak | |
4362 | fi | |
769ce76d | 4363 | if test "$curl" = "yes" ; then |
d3399d7c | 4364 | echo "CONFIG_CURL=m" >> $config_host_mak |
b1d5a277 | 4365 | echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak |
6ebc91e5 | 4366 | echo "CURL_LIBS=$curl_libs" >> $config_host_mak |
769ce76d | 4367 | fi |
2e4d9fb1 | 4368 | if test "$brlapi" = "yes" ; then |
98ec69ac | 4369 | echo "CONFIG_BRLAPI=y" >> $config_host_mak |
2e4d9fb1 | 4370 | fi |
fb599c9a | 4371 | if test "$bluez" = "yes" ; then |
98ec69ac | 4372 | echo "CONFIG_BLUEZ=y" >> $config_host_mak |
ef7635ec | 4373 | echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak |
fb599c9a | 4374 | fi |
e18df141 | 4375 | echo "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak |
a4ccabcf AL |
4376 | if test "$gtk" = "yes" ; then |
4377 | echo "CONFIG_GTK=y" >> $config_host_mak | |
4378 | echo "GTK_CFLAGS=$gtk_cflags" >> $config_host_mak | |
4379 | echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak | |
4380 | fi | |
e37630ca | 4381 | if test "$xen" = "yes" ; then |
6dbd588a | 4382 | echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak |
d5b93ddf | 4383 | echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak |
e37630ca | 4384 | fi |
5c6c3a6c CH |
4385 | if test "$linux_aio" = "yes" ; then |
4386 | echo "CONFIG_LINUX_AIO=y" >> $config_host_mak | |
4387 | fi | |
758e8e38 VJ |
4388 | if test "$attr" = "yes" ; then |
4389 | echo "CONFIG_ATTR=y" >> $config_host_mak | |
4390 | fi | |
4f26f2b6 AK |
4391 | if test "$libattr" = "yes" ; then |
4392 | echo "CONFIG_LIBATTR=y" >> $config_host_mak | |
4393 | fi | |
983eef5a MI |
4394 | if test "$virtfs" = "yes" ; then |
4395 | echo "CONFIG_VIRTFS=y" >> $config_host_mak | |
758e8e38 | 4396 | fi |
5e9be92d NB |
4397 | if test "$vhost_scsi" = "yes" ; then |
4398 | echo "CONFIG_VHOST_SCSI=y" >> $config_host_mak | |
4399 | fi | |
77755340 | 4400 | if test "$blobs" = "yes" ; then |
98ec69ac | 4401 | echo "INSTALL_BLOBS=yes" >> $config_host_mak |
77755340 | 4402 | fi |
bf9298b9 | 4403 | if test "$iovec" = "yes" ; then |
2358a494 | 4404 | echo "CONFIG_IOVEC=y" >> $config_host_mak |
bf9298b9 | 4405 | fi |
ceb42de8 | 4406 | if test "$preadv" = "yes" ; then |
2358a494 | 4407 | echo "CONFIG_PREADV=y" >> $config_host_mak |
ceb42de8 | 4408 | fi |
f652e6af | 4409 | if test "$fdt" = "yes" ; then |
3f0855b1 | 4410 | echo "CONFIG_FDT=y" >> $config_host_mak |
f652e6af | 4411 | fi |
dcc38d1c MT |
4412 | if test "$signalfd" = "yes" ; then |
4413 | echo "CONFIG_SIGNALFD=y" >> $config_host_mak | |
4414 | fi | |
9195b2c2 SW |
4415 | if test "$tcg_interpreter" = "yes" ; then |
4416 | echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak | |
4417 | fi | |
5f6b9e8f BS |
4418 | if test "$fdatasync" = "yes" ; then |
4419 | echo "CONFIG_FDATASYNC=y" >> $config_host_mak | |
4420 | fi | |
e78815a5 AF |
4421 | if test "$madvise" = "yes" ; then |
4422 | echo "CONFIG_MADVISE=y" >> $config_host_mak | |
4423 | fi | |
4424 | if test "$posix_madvise" = "yes" ; then | |
4425 | echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak | |
4426 | fi | |
1e9737da RH |
4427 | if test "$sigev_thread_id" = "yes" ; then |
4428 | echo "CONFIG_SIGEV_THREAD_ID=y" >> $config_host_mak | |
4429 | fi | |
97a847bc | 4430 | |
cd4ec0b4 GH |
4431 | if test "$spice" = "yes" ; then |
4432 | echo "CONFIG_SPICE=y" >> $config_host_mak | |
4433 | fi | |
36707144 | 4434 | |
111a38b0 RR |
4435 | if test "$smartcard_nss" = "yes" ; then |
4436 | echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak | |
ad4cf3f6 PB |
4437 | echo "libcacard_libs=$libcacard_libs" >> $config_host_mak |
4438 | echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak | |
111a38b0 RR |
4439 | fi |
4440 | ||
2b2325ff GH |
4441 | if test "$libusb" = "yes" ; then |
4442 | echo "CONFIG_USB_LIBUSB=y" >> $config_host_mak | |
4443 | fi | |
4444 | ||
69354a83 HG |
4445 | if test "$usb_redir" = "yes" ; then |
4446 | echo "CONFIG_USB_REDIR=y" >> $config_host_mak | |
4447 | fi | |
4448 | ||
b1e5fff4 MW |
4449 | if test "$glx" = "yes" ; then |
4450 | echo "CONFIG_GLX=y" >> $config_host_mak | |
2b6b7099 | 4451 | echo "GLX_LIBS=$glx_libs" >> $config_host_mak |
20ff075b MW |
4452 | fi |
4453 | ||
607dacd0 QN |
4454 | if test "$lzo" = "yes" ; then |
4455 | echo "CONFIG_LZO=y" >> $config_host_mak | |
4456 | fi | |
4457 | ||
4458 | if test "$snappy" = "yes" ; then | |
4459 | echo "CONFIG_SNAPPY=y" >> $config_host_mak | |
4460 | fi | |
4461 | ||
c589b249 | 4462 | if test "$libiscsi" = "yes" ; then |
d3399d7c | 4463 | echo "CONFIG_LIBISCSI=m" >> $config_host_mak |
219c2521 SW |
4464 | if test "$libiscsi_version" = "1.4.0"; then |
4465 | echo "CONFIG_LIBISCSI_1_4=y" >> $config_host_mak | |
4466 | fi | |
6ebc91e5 FZ |
4467 | echo "LIBISCSI_CFLAGS=$libiscsi_cflags" >> $config_host_mak |
4468 | echo "LIBISCSI_LIBS=$libiscsi_libs" >> $config_host_mak | |
c589b249 RS |
4469 | fi |
4470 | ||
6542aa9c PL |
4471 | if test "$libnfs" = "yes" ; then |
4472 | echo "CONFIG_LIBNFS=y" >> $config_host_mak | |
4473 | fi | |
4474 | ||
f794573e EO |
4475 | if test "$seccomp" = "yes"; then |
4476 | echo "CONFIG_SECCOMP=y" >> $config_host_mak | |
4477 | fi | |
4478 | ||
83fb7adf | 4479 | # XXX: suppress that |
7d3505c5 | 4480 | if [ "$bsd" = "yes" ] ; then |
2358a494 | 4481 | echo "CONFIG_BSD=y" >> $config_host_mak |
7d3505c5 FB |
4482 | fi |
4483 | ||
2358a494 | 4484 | echo "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak |
c5937220 | 4485 | |
20ff6c80 AL |
4486 | if test "$zero_malloc" = "yes" ; then |
4487 | echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak | |
4488 | fi | |
3556c233 PB |
4489 | if test "$qom_cast_debug" = "yes" ; then |
4490 | echo "CONFIG_QOM_CAST_DEBUG=y" >> $config_host_mak | |
4491 | fi | |
f27aaf4b | 4492 | if test "$rbd" = "yes" ; then |
d3399d7c | 4493 | echo "CONFIG_RBD=m" >> $config_host_mak |
6ebc91e5 FZ |
4494 | echo "RBD_CFLAGS=$rbd_cflags" >> $config_host_mak |
4495 | echo "RBD_LIBS=$rbd_libs" >> $config_host_mak | |
d0e2fce5 AK |
4496 | fi |
4497 | ||
7c2acc70 | 4498 | echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak |
70c60c08 SH |
4499 | if test "$coroutine_pool" = "yes" ; then |
4500 | echo "CONFIG_COROUTINE_POOL=1" >> $config_host_mak | |
4501 | else | |
4502 | echo "CONFIG_COROUTINE_POOL=0" >> $config_host_mak | |
4503 | fi | |
20ff6c80 | 4504 | |
d2042378 AK |
4505 | if test "$open_by_handle_at" = "yes" ; then |
4506 | echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak | |
4507 | fi | |
4508 | ||
e06a765e HPB |
4509 | if test "$linux_magic_h" = "yes" ; then |
4510 | echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak | |
8ab1bf12 LC |
4511 | fi |
4512 | ||
cc6e3ca9 GH |
4513 | if test "$pragma_diagnostic_available" = "yes" ; then |
4514 | echo "CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE=y" >> $config_host_mak | |
06d71fa1 PM |
4515 | fi |
4516 | ||
3f4349dc KW |
4517 | if test "$valgrind_h" = "yes" ; then |
4518 | echo "CONFIG_VALGRIND_H=y" >> $config_host_mak | |
4519 | fi | |
4520 | ||
8ab1bf12 LC |
4521 | if test "$has_environ" = "yes" ; then |
4522 | echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak | |
e06a765e HPB |
4523 | fi |
4524 | ||
76a347e1 RH |
4525 | if test "$cpuid_h" = "yes" ; then |
4526 | echo "CONFIG_CPUID_H=y" >> $config_host_mak | |
4527 | fi | |
4528 | ||
f540166b RH |
4529 | if test "$int128" = "yes" ; then |
4530 | echo "CONFIG_INT128=y" >> $config_host_mak | |
4531 | fi | |
4532 | ||
1e6e9aca RH |
4533 | if test "$getauxval" = "yes" ; then |
4534 | echo "CONFIG_GETAUXVAL=y" >> $config_host_mak | |
4535 | fi | |
4536 | ||
eb100396 | 4537 | if test "$glusterfs" = "yes" ; then |
d3399d7c | 4538 | echo "CONFIG_GLUSTERFS=m" >> $config_host_mak |
6ebc91e5 FZ |
4539 | echo "GLUSTERFS_CFLAGS=$glusterfs_cflags" >> $config_host_mak |
4540 | echo "GLUSTERFS_LIBS=$glusterfs_libs" >> $config_host_mak | |
0c14fb47 BR |
4541 | fi |
4542 | ||
4543 | if test "$glusterfs_discard" = "yes" ; then | |
4544 | echo "CONFIG_GLUSTERFS_DISCARD=y" >> $config_host_mak | |
eb100396 | 4545 | fi |
e06a765e | 4546 | |
7c815372 BR |
4547 | if test "$glusterfs_zerofill" = "yes" ; then |
4548 | echo "CONFIG_GLUSTERFS_ZEROFILL=y" >> $config_host_mak | |
4549 | fi | |
4550 | ||
0a12ec87 | 4551 | if test "$libssh2" = "yes" ; then |
d3399d7c | 4552 | echo "CONFIG_LIBSSH2=m" >> $config_host_mak |
6ebc91e5 FZ |
4553 | echo "LIBSSH2_CFLAGS=$libssh2_cflags" >> $config_host_mak |
4554 | echo "LIBSSH2_LIBS=$libssh2_libs" >> $config_host_mak | |
0a12ec87 RJ |
4555 | fi |
4556 | ||
95c6bff3 BC |
4557 | if test "$quorum" = "yes" ; then |
4558 | echo "CONFIG_QUORUM=y" >> $config_host_mak | |
4559 | fi | |
4560 | ||
583f6e7b | 4561 | if test "$virtio_blk_data_plane" = "yes" ; then |
6e790746 | 4562 | echo 'CONFIG_VIRTIO_BLK_DATA_PLANE=$(CONFIG_VIRTIO)' >> $config_host_mak |
583f6e7b SH |
4563 | fi |
4564 | ||
4f18b782 JC |
4565 | if test "$vhdx" = "yes" ; then |
4566 | echo "CONFIG_VHDX=y" >> $config_host_mak | |
4567 | fi | |
4568 | ||
68063649 | 4569 | # USB host support |
b5613fdc GH |
4570 | if test "$libusb" = "yes"; then |
4571 | echo "HOST_USB=libusb legacy" >> $config_host_mak | |
4572 | else | |
98ec69ac | 4573 | echo "HOST_USB=stub" >> $config_host_mak |
b5613fdc | 4574 | fi |
68063649 | 4575 | |
3b8acc11 PB |
4576 | # TPM passthrough support? |
4577 | if test "$tpm" = "yes"; then | |
4578 | echo 'CONFIG_TPM=$(CONFIG_SOFTMMU)' >> $config_host_mak | |
4579 | if test "$tpm_passthrough" = "yes"; then | |
4580 | echo "CONFIG_TPM_PASSTHROUGH=y" >> $config_host_mak | |
4581 | fi | |
4582 | fi | |
4583 | ||
e4858974 LV |
4584 | # use default implementation for tracing backend-specific routines |
4585 | trace_default=yes | |
94a420b1 | 4586 | echo "TRACE_BACKEND=$trace_backend" >> $config_host_mak |
6d8a764e LV |
4587 | if test "$trace_backend" = "nop"; then |
4588 | echo "CONFIG_TRACE_NOP=y" >> $config_host_mak | |
22890ab5 | 4589 | fi |
9410b56c | 4590 | if test "$trace_backend" = "simple"; then |
6d8a764e | 4591 | echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak |
e4858974 | 4592 | trace_default=no |
6d8a764e | 4593 | # Set the appropriate trace file. |
953ffe0f | 4594 | trace_file="\"$trace_file-\" FMT_pid" |
9410b56c | 4595 | fi |
6d8a764e LV |
4596 | if test "$trace_backend" = "stderr"; then |
4597 | echo "CONFIG_TRACE_STDERR=y" >> $config_host_mak | |
9a82b6a5 | 4598 | trace_default=no |
6d8a764e LV |
4599 | fi |
4600 | if test "$trace_backend" = "ust"; then | |
4601 | echo "CONFIG_TRACE_UST=y" >> $config_host_mak | |
4602 | fi | |
4603 | if test "$trace_backend" = "dtrace"; then | |
4604 | echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak | |
4605 | if test "$trace_backend_stap" = "yes" ; then | |
4606 | echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak | |
4607 | fi | |
c276b17d | 4608 | fi |
781e9545 ET |
4609 | if test "$trace_backend" = "ftrace"; then |
4610 | if test "$linux" = "yes" ; then | |
4611 | echo "CONFIG_TRACE_FTRACE=y" >> $config_host_mak | |
4612 | trace_default=no | |
4613 | else | |
21684af0 | 4614 | feature_not_found "ftrace(trace backend)" "ftrace requires Linux" |
781e9545 ET |
4615 | fi |
4616 | fi | |
9410b56c | 4617 | echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak |
e4858974 LV |
4618 | if test "$trace_default" = "yes"; then |
4619 | echo "CONFIG_TRACE_DEFAULT=y" >> $config_host_mak | |
4620 | fi | |
9410b56c | 4621 | |
2da776db MH |
4622 | if test "$rdma" = "yes" ; then |
4623 | echo "CONFIG_RDMA=y" >> $config_host_mak | |
4624 | fi | |
4625 | ||
5b5e3037 PB |
4626 | if test "$tcg_interpreter" = "yes"; then |
4627 | QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/tci $QEMU_INCLUDES" | |
4628 | elif test "$ARCH" = "sparc64" ; then | |
4629 | QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/sparc $QEMU_INCLUDES" | |
4630 | elif test "$ARCH" = "s390x" ; then | |
4631 | QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/s390 $QEMU_INCLUDES" | |
c72b26ec | 4632 | elif test "$ARCH" = "x86_64" -o "$ARCH" = "x32" ; then |
5b5e3037 PB |
4633 | QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/i386 $QEMU_INCLUDES" |
4634 | else | |
4635 | QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/\$(ARCH) $QEMU_INCLUDES" | |
4636 | fi | |
4637 | QEMU_INCLUDES="-I\$(SRC_PATH)/tcg $QEMU_INCLUDES" | |
4638 | ||
98ec69ac | 4639 | echo "TOOLS=$tools" >> $config_host_mak |
98ec69ac | 4640 | echo "ROMS=$roms" >> $config_host_mak |
804edf29 JQ |
4641 | echo "MAKE=$make" >> $config_host_mak |
4642 | echo "INSTALL=$install" >> $config_host_mak | |
1901cb14 BS |
4643 | echo "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak |
4644 | echo "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak | |
21655882 PB |
4645 | if test -n "$libtool"; then |
4646 | echo "INSTALL_PROG=\$(LIBTOOL) --mode=install $install -c -m 0755" >> $config_host_mak | |
4647 | echo "INSTALL_LIB=\$(LIBTOOL) --mode=install $install -c -m 0644" >> $config_host_mak | |
4648 | else | |
4649 | echo "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak | |
4650 | echo "INSTALL_LIB=$install -c -m 0644" >> $config_host_mak | |
4651 | fi | |
c886edfb | 4652 | echo "PYTHON=$python" >> $config_host_mak |
804edf29 | 4653 | echo "CC=$cc" >> $config_host_mak |
a31a8642 MT |
4654 | if $iasl -h > /dev/null 2>&1; then |
4655 | echo "IASL=$iasl" >> $config_host_mak | |
4656 | fi | |
2b2e59e6 | 4657 | echo "CC_I386=$cc_i386" >> $config_host_mak |
804edf29 | 4658 | echo "HOST_CC=$host_cc" >> $config_host_mak |
83f73fce | 4659 | echo "CXX=$cxx" >> $config_host_mak |
3c4a4d0d | 4660 | echo "OBJCC=$objcc" >> $config_host_mak |
804edf29 | 4661 | echo "AR=$ar" >> $config_host_mak |
45d285ab | 4662 | echo "ARFLAGS=$ARFLAGS" >> $config_host_mak |
3dd46c78 BS |
4663 | echo "AS=$as" >> $config_host_mak |
4664 | echo "CPP=$cpp" >> $config_host_mak | |
804edf29 JQ |
4665 | echo "OBJCOPY=$objcopy" >> $config_host_mak |
4666 | echo "LD=$ld" >> $config_host_mak | |
9fe6de94 | 4667 | echo "WINDRES=$windres" >> $config_host_mak |
44dc0ca3 | 4668 | echo "LIBTOOL=$libtool" >> $config_host_mak |
e2a2ed06 | 4669 | echo "CFLAGS=$CFLAGS" >> $config_host_mak |
46eef33b | 4670 | echo "CFLAGS_NOPIE=$CFLAGS_NOPIE" >> $config_host_mak |
a558ee17 | 4671 | echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak |
f9728943 | 4672 | echo "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak |
e39f0062 PB |
4673 | if test "$sparse" = "yes" ; then |
4674 | echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak | |
4675 | echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak | |
4676 | echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak | |
4677 | fi | |
42da6041 GH |
4678 | if test "$cross_prefix" != ""; then |
4679 | echo "AUTOCONF_HOST := --host=${cross_prefix%-}" >> $config_host_mak | |
4680 | else | |
4681 | echo "AUTOCONF_HOST := " >> $config_host_mak | |
4682 | fi | |
e2a2ed06 | 4683 | echo "LDFLAGS=$LDFLAGS" >> $config_host_mak |
46eef33b | 4684 | echo "LDFLAGS_NOPIE=$LDFLAGS_NOPIE" >> $config_host_mak |
37746c5e | 4685 | echo "LIBTOOLFLAGS=$LIBTOOLFLAGS" >> $config_host_mak |
73da375e | 4686 | echo "LIBS+=$LIBS" >> $config_host_mak |
3e2e0e6b | 4687 | echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak |
804edf29 | 4688 | echo "EXESUF=$EXESUF" >> $config_host_mak |
17969268 FZ |
4689 | echo "DSOSUF=$DSOSUF" >> $config_host_mak |
4690 | echo "LDFLAGS_SHARED=$LDFLAGS_SHARED" >> $config_host_mak | |
957f1f99 | 4691 | echo "LIBS_QGA+=$libs_qga" >> $config_host_mak |
94dd53c5 | 4692 | echo "POD2MAN=$POD2MAN" >> $config_host_mak |
cbdd1999 | 4693 | echo "TRANSLATE_OPT_CFLAGS=$TRANSLATE_OPT_CFLAGS" >> $config_host_mak |
1d728c39 BS |
4694 | if test "$gcov" = "yes" ; then |
4695 | echo "CONFIG_GCOV=y" >> $config_host_mak | |
4696 | echo "GCOV=$gcov_tool" >> $config_host_mak | |
4697 | fi | |
804edf29 | 4698 | |
6efd7517 PM |
4699 | # use included Linux headers |
4700 | if test "$linux" = "yes" ; then | |
a307beb6 | 4701 | mkdir -p linux-headers |
6efd7517 | 4702 | case "$cpu" in |
c72b26ec | 4703 | i386|x86_64|x32) |
08312a63 | 4704 | linux_arch=x86 |
6efd7517 PM |
4705 | ;; |
4706 | ppcemb|ppc|ppc64) | |
08312a63 | 4707 | linux_arch=powerpc |
6efd7517 PM |
4708 | ;; |
4709 | s390x) | |
08312a63 PM |
4710 | linux_arch=s390 |
4711 | ;; | |
1f080313 CF |
4712 | aarch64) |
4713 | linux_arch=arm64 | |
4714 | ;; | |
08312a63 PM |
4715 | *) |
4716 | # For most CPUs the kernel architecture name and QEMU CPU name match. | |
4717 | linux_arch="$cpu" | |
6efd7517 PM |
4718 | ;; |
4719 | esac | |
08312a63 PM |
4720 | # For non-KVM architectures we will not have asm headers |
4721 | if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then | |
4722 | symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm | |
4723 | fi | |
6efd7517 PM |
4724 | fi |
4725 | ||
1d14ffa9 | 4726 | for target in $target_list; do |
97a847bc | 4727 | target_dir="$target" |
25be210f | 4728 | config_target_mak=$target_dir/config-target.mak |
c1799a84 | 4729 | target_name=`echo $target | cut -d '-' -f 1` |
97a847bc | 4730 | target_bigendian="no" |
1f3d3c8f | 4731 | |
c1799a84 | 4732 | case "$target_name" in |
d15a9c23 | 4733 | armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|moxie|or32|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb) |
ea2d6a39 JQ |
4734 | target_bigendian=yes |
4735 | ;; | |
4736 | esac | |
97a847bc | 4737 | target_softmmu="no" |
997344f3 | 4738 | target_user_only="no" |
831b7825 | 4739 | target_linux_user="no" |
84778508 | 4740 | target_bsd_user="no" |
9e407a85 | 4741 | case "$target" in |
c1799a84 | 4742 | ${target_name}-softmmu) |
9e407a85 PB |
4743 | target_softmmu="yes" |
4744 | ;; | |
c1799a84 | 4745 | ${target_name}-linux-user) |
9c7a4202 | 4746 | if test "$linux" != "yes" ; then |
76ad07a4 | 4747 | error_exit "Target '$target' is only available on a Linux host" |
9c7a4202 | 4748 | fi |
9e407a85 PB |
4749 | target_user_only="yes" |
4750 | target_linux_user="yes" | |
4751 | ;; | |
c1799a84 | 4752 | ${target_name}-bsd-user) |
9cf55765 | 4753 | if test "$bsd" != "yes" ; then |
76ad07a4 | 4754 | error_exit "Target '$target' is only available on a BSD host" |
9c7a4202 | 4755 | fi |
84778508 BS |
4756 | target_user_only="yes" |
4757 | target_bsd_user="yes" | |
4758 | ;; | |
9e407a85 | 4759 | *) |
76ad07a4 | 4760 | error_exit "Target '$target' not recognised" |
9e407a85 PB |
4761 | exit 1 |
4762 | ;; | |
4763 | esac | |
831b7825 | 4764 | |
97a847bc | 4765 | mkdir -p $target_dir |
25be210f | 4766 | echo "# Automatically generated by configure - do not modify" > $config_target_mak |
de83cd02 | 4767 | |
e5fe0c52 | 4768 | bflt="no" |
c1799a84 | 4769 | interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_name/g"` |
56aebc89 | 4770 | gdb_xml_files="" |
7ba1e619 | 4771 | |
c1799a84 | 4772 | TARGET_ARCH="$target_name" |
6acff7da | 4773 | TARGET_BASE_ARCH="" |
e6e91b9c | 4774 | TARGET_ABI_DIR="" |
e73aae67 | 4775 | |
c1799a84 | 4776 | case "$target_name" in |
2408a527 | 4777 | i386) |
2408a527 AJ |
4778 | ;; |
4779 | x86_64) | |
6acff7da | 4780 | TARGET_BASE_ARCH=i386 |
2408a527 AJ |
4781 | ;; |
4782 | alpha) | |
2408a527 AJ |
4783 | ;; |
4784 | arm|armeb) | |
b498c8a0 | 4785 | TARGET_ARCH=arm |
2408a527 | 4786 | bflt="yes" |
56aebc89 | 4787 | gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" |
2408a527 | 4788 | ;; |
6a49fa95 AG |
4789 | aarch64) |
4790 | TARGET_BASE_ARCH=arm | |
4791 | bflt="yes" | |
6a669427 | 4792 | gdb_xml_files="aarch64-core.xml aarch64-fpu.xml" |
6a49fa95 | 4793 | ;; |
2408a527 | 4794 | cris) |
2408a527 | 4795 | ;; |
613a22c9 | 4796 | lm32) |
613a22c9 | 4797 | ;; |
2408a527 | 4798 | m68k) |
2408a527 | 4799 | bflt="yes" |
56aebc89 | 4800 | gdb_xml_files="cf-core.xml cf-fp.xml" |
2408a527 | 4801 | ;; |
877fdc12 EI |
4802 | microblaze|microblazeel) |
4803 | TARGET_ARCH=microblaze | |
72b675ca | 4804 | bflt="yes" |
72b675ca | 4805 | ;; |
0adcffb1 | 4806 | mips|mipsel) |
b498c8a0 | 4807 | TARGET_ARCH=mips |
25be210f | 4808 | echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak |
2408a527 AJ |
4809 | ;; |
4810 | mipsn32|mipsn32el) | |
597e2cec | 4811 | TARGET_ARCH=mips64 |
6acff7da | 4812 | TARGET_BASE_ARCH=mips |
25be210f | 4813 | echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak |
597e2cec | 4814 | echo "TARGET_ABI32=y" >> $config_target_mak |
2408a527 AJ |
4815 | ;; |
4816 | mips64|mips64el) | |
b498c8a0 | 4817 | TARGET_ARCH=mips64 |
6acff7da | 4818 | TARGET_BASE_ARCH=mips |
25be210f | 4819 | echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak |
2408a527 | 4820 | ;; |
d15a9c23 AG |
4821 | moxie) |
4822 | ;; | |
e67db06e JL |
4823 | or32) |
4824 | TARGET_ARCH=openrisc | |
4825 | TARGET_BASE_ARCH=openrisc | |
e67db06e | 4826 | ;; |
2408a527 | 4827 | ppc) |
c8b3532d | 4828 | gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
2408a527 AJ |
4829 | ;; |
4830 | ppcemb) | |
6acff7da | 4831 | TARGET_BASE_ARCH=ppc |
e6e91b9c | 4832 | TARGET_ABI_DIR=ppc |
c8b3532d | 4833 | gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
2408a527 AJ |
4834 | ;; |
4835 | ppc64) | |
6acff7da | 4836 | TARGET_BASE_ARCH=ppc |
e6e91b9c | 4837 | TARGET_ABI_DIR=ppc |
c8b3532d | 4838 | gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
2408a527 AJ |
4839 | ;; |
4840 | ppc64abi32) | |
b498c8a0 | 4841 | TARGET_ARCH=ppc64 |
6acff7da | 4842 | TARGET_BASE_ARCH=ppc |
e6e91b9c | 4843 | TARGET_ABI_DIR=ppc |
25be210f | 4844 | echo "TARGET_ABI32=y" >> $config_target_mak |
c8b3532d | 4845 | gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
2408a527 AJ |
4846 | ;; |
4847 | sh4|sh4eb) | |
b498c8a0 | 4848 | TARGET_ARCH=sh4 |
2408a527 AJ |
4849 | bflt="yes" |
4850 | ;; | |
4851 | sparc) | |
2408a527 AJ |
4852 | ;; |
4853 | sparc64) | |
6acff7da | 4854 | TARGET_BASE_ARCH=sparc |
2408a527 AJ |
4855 | ;; |
4856 | sparc32plus) | |
b498c8a0 | 4857 | TARGET_ARCH=sparc64 |
6acff7da | 4858 | TARGET_BASE_ARCH=sparc |
e6e91b9c | 4859 | TARGET_ABI_DIR=sparc |
25be210f | 4860 | echo "TARGET_ABI32=y" >> $config_target_mak |
2408a527 | 4861 | ;; |
24e804ec | 4862 | s390x) |
24e804ec | 4863 | ;; |
d2fbca94 | 4864 | unicore32) |
d2fbca94 | 4865 | ;; |
cfa550c6 MF |
4866 | xtensa|xtensaeb) |
4867 | TARGET_ARCH=xtensa | |
cfa550c6 | 4868 | ;; |
2408a527 | 4869 | *) |
76ad07a4 | 4870 | error_exit "Unsupported target CPU" |
2408a527 AJ |
4871 | ;; |
4872 | esac | |
5e8861a0 PB |
4873 | # TARGET_BASE_ARCH needs to be defined after TARGET_ARCH |
4874 | if [ "$TARGET_BASE_ARCH" = "" ]; then | |
4875 | TARGET_BASE_ARCH=$TARGET_ARCH | |
4876 | fi | |
4877 | ||
5e8861a0 PB |
4878 | symlink "$source_path/Makefile.target" "$target_dir/Makefile" |
4879 | ||
99afc91d DB |
4880 | upper() { |
4881 | echo "$@"| LC_ALL=C tr '[a-z]' '[A-Z]' | |
4882 | } | |
4883 | ||
99afc91d | 4884 | target_arch_name="`upper $TARGET_ARCH`" |
25be210f | 4885 | echo "TARGET_$target_arch_name=y" >> $config_target_mak |
c1799a84 | 4886 | echo "TARGET_NAME=$target_name" >> $config_target_mak |
25be210f | 4887 | echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak |
e6e91b9c JQ |
4888 | if [ "$TARGET_ABI_DIR" = "" ]; then |
4889 | TARGET_ABI_DIR=$TARGET_ARCH | |
4890 | fi | |
25be210f | 4891 | echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak |
c1799a84 | 4892 | case "$target_name" in |
1b0c87fc JQ |
4893 | i386|x86_64) |
4894 | if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then | |
25be210f | 4895 | echo "CONFIG_XEN=y" >> $config_target_mak |
eb6fda0f AP |
4896 | if test "$xen_pci_passthrough" = yes; then |
4897 | echo "CONFIG_XEN_PCI_PASSTHROUGH=y" >> "$config_target_mak" | |
4898 | fi | |
1b0c87fc | 4899 | fi |
59d21e53 AG |
4900 | ;; |
4901 | *) | |
1b0c87fc | 4902 | esac |
c1799a84 | 4903 | case "$target_name" in |
70a5f682 | 4904 | aarch64|arm|i386|x86_64|ppcemb|ppc|ppc64|s390x) |
c59249f9 JQ |
4905 | # Make sure the target and host cpus are compatible |
4906 | if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \ | |
c1799a84 PB |
4907 | \( "$target_name" = "$cpu" -o \ |
4908 | \( "$target_name" = "ppcemb" -a "$cpu" = "ppc" \) -o \ | |
4909 | \( "$target_name" = "ppc64" -a "$cpu" = "ppc" \) -o \ | |
4910 | \( "$target_name" = "ppc" -a "$cpu" = "ppc64" \) -o \ | |
4911 | \( "$target_name" = "ppcemb" -a "$cpu" = "ppc64" \) -o \ | |
4912 | \( "$target_name" = "x86_64" -a "$cpu" = "i386" \) -o \ | |
4913 | \( "$target_name" = "i386" -a "$cpu" = "x86_64" \) \) ; then | |
25be210f | 4914 | echo "CONFIG_KVM=y" >> $config_target_mak |
1ba16968 | 4915 | if test "$vhost_net" = "yes" ; then |
d5970055 MT |
4916 | echo "CONFIG_VHOST_NET=y" >> $config_target_mak |
4917 | fi | |
c59249f9 JQ |
4918 | fi |
4919 | esac | |
de83cd02 | 4920 | if test "$target_bigendian" = "yes" ; then |
25be210f | 4921 | echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak |
de83cd02 | 4922 | fi |
97a847bc | 4923 | if test "$target_softmmu" = "yes" ; then |
25be210f | 4924 | echo "CONFIG_SOFTMMU=y" >> $config_target_mak |
43ce4dfe | 4925 | fi |
997344f3 | 4926 | if test "$target_user_only" = "yes" ; then |
25be210f | 4927 | echo "CONFIG_USER_ONLY=y" >> $config_target_mak |
a2c80be9 | 4928 | echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak |
997344f3 | 4929 | fi |
831b7825 | 4930 | if test "$target_linux_user" = "yes" ; then |
25be210f | 4931 | echo "CONFIG_LINUX_USER=y" >> $config_target_mak |
831b7825 | 4932 | fi |
56aebc89 PB |
4933 | list="" |
4934 | if test ! -z "$gdb_xml_files" ; then | |
4935 | for x in $gdb_xml_files; do | |
4936 | list="$list $source_path/gdb-xml/$x" | |
4937 | done | |
3d0f1517 | 4938 | echo "TARGET_XML_FILES=$list" >> $config_target_mak |
56aebc89 | 4939 | fi |
97a847bc | 4940 | |
e5fe0c52 | 4941 | if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then |
25be210f | 4942 | echo "TARGET_HAS_BFLT=y" >> $config_target_mak |
e5fe0c52 | 4943 | fi |
379f6698 | 4944 | if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then |
25be210f | 4945 | echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak |
379f6698 | 4946 | fi |
84778508 | 4947 | if test "$target_bsd_user" = "yes" ; then |
25be210f | 4948 | echo "CONFIG_BSD_USER=y" >> $config_target_mak |
84778508 | 4949 | fi |
5b0753e0 | 4950 | |
4afddb55 | 4951 | # generate QEMU_CFLAGS/LDFLAGS for targets |
fa282484 | 4952 | |
4afddb55 | 4953 | cflags="" |
fa282484 | 4954 | ldflags="" |
9b8e111f | 4955 | |
64656024 JQ |
4956 | for i in $ARCH $TARGET_BASE_ARCH ; do |
4957 | case "$i" in | |
4958 | alpha) | |
25be210f | 4959 | echo "CONFIG_ALPHA_DIS=y" >> $config_target_mak |
76cad711 | 4960 | echo "CONFIG_ALPHA_DIS=y" >> config-all-disas.mak |
64656024 | 4961 | ;; |
82295d8a RH |
4962 | aarch64) |
4963 | if test -n "${cxx}"; then | |
4964 | echo "CONFIG_ARM_A64_DIS=y" >> $config_target_mak | |
4965 | echo "CONFIG_ARM_A64_DIS=y" >> config-all-disas.mak | |
4966 | fi | |
4967 | ;; | |
64656024 | 4968 | arm) |
25be210f | 4969 | echo "CONFIG_ARM_DIS=y" >> $config_target_mak |
76cad711 | 4970 | echo "CONFIG_ARM_DIS=y" >> config-all-disas.mak |
999b53ec CF |
4971 | if test -n "${cxx}"; then |
4972 | echo "CONFIG_ARM_A64_DIS=y" >> $config_target_mak | |
4973 | echo "CONFIG_ARM_A64_DIS=y" >> config-all-disas.mak | |
4974 | fi | |
64656024 JQ |
4975 | ;; |
4976 | cris) | |
25be210f | 4977 | echo "CONFIG_CRIS_DIS=y" >> $config_target_mak |
76cad711 | 4978 | echo "CONFIG_CRIS_DIS=y" >> config-all-disas.mak |
64656024 JQ |
4979 | ;; |
4980 | hppa) | |
25be210f | 4981 | echo "CONFIG_HPPA_DIS=y" >> $config_target_mak |
76cad711 | 4982 | echo "CONFIG_HPPA_DIS=y" >> config-all-disas.mak |
64656024 | 4983 | ;; |
c72b26ec | 4984 | i386|x86_64|x32) |
25be210f | 4985 | echo "CONFIG_I386_DIS=y" >> $config_target_mak |
76cad711 | 4986 | echo "CONFIG_I386_DIS=y" >> config-all-disas.mak |
64656024 | 4987 | ;; |
903ec55c AJ |
4988 | ia64*) |
4989 | echo "CONFIG_IA64_DIS=y" >> $config_target_mak | |
76cad711 | 4990 | echo "CONFIG_IA64_DIS=y" >> config-all-disas.mak |
903ec55c | 4991 | ;; |
79368f49 MW |
4992 | lm32) |
4993 | echo "CONFIG_LM32_DIS=y" >> $config_target_mak | |
76cad711 | 4994 | echo "CONFIG_LM32_DIS=y" >> config-all-disas.mak |
79368f49 | 4995 | ;; |
64656024 | 4996 | m68k) |
25be210f | 4997 | echo "CONFIG_M68K_DIS=y" >> $config_target_mak |
76cad711 | 4998 | echo "CONFIG_M68K_DIS=y" >> config-all-disas.mak |
64656024 | 4999 | ;; |
877fdc12 | 5000 | microblaze*) |
25be210f | 5001 | echo "CONFIG_MICROBLAZE_DIS=y" >> $config_target_mak |
76cad711 | 5002 | echo "CONFIG_MICROBLAZE_DIS=y" >> config-all-disas.mak |
64656024 JQ |
5003 | ;; |
5004 | mips*) | |
25be210f | 5005 | echo "CONFIG_MIPS_DIS=y" >> $config_target_mak |
76cad711 | 5006 | echo "CONFIG_MIPS_DIS=y" >> config-all-disas.mak |
64656024 | 5007 | ;; |
d15a9c23 AG |
5008 | moxie*) |
5009 | echo "CONFIG_MOXIE_DIS=y" >> $config_target_mak | |
5010 | echo "CONFIG_MOXIE_DIS=y" >> config-all-disas.mak | |
5011 | ;; | |
e67db06e JL |
5012 | or32) |
5013 | echo "CONFIG_OPENRISC_DIS=y" >> $config_target_mak | |
76cad711 | 5014 | echo "CONFIG_OPENRISC_DIS=y" >> config-all-disas.mak |
e67db06e | 5015 | ;; |
64656024 | 5016 | ppc*) |
25be210f | 5017 | echo "CONFIG_PPC_DIS=y" >> $config_target_mak |
76cad711 | 5018 | echo "CONFIG_PPC_DIS=y" >> config-all-disas.mak |
64656024 | 5019 | ;; |
24e804ec | 5020 | s390*) |
25be210f | 5021 | echo "CONFIG_S390_DIS=y" >> $config_target_mak |
76cad711 | 5022 | echo "CONFIG_S390_DIS=y" >> config-all-disas.mak |
64656024 JQ |
5023 | ;; |
5024 | sh4) | |
25be210f | 5025 | echo "CONFIG_SH4_DIS=y" >> $config_target_mak |
76cad711 | 5026 | echo "CONFIG_SH4_DIS=y" >> config-all-disas.mak |
64656024 JQ |
5027 | ;; |
5028 | sparc*) | |
25be210f | 5029 | echo "CONFIG_SPARC_DIS=y" >> $config_target_mak |
76cad711 | 5030 | echo "CONFIG_SPARC_DIS=y" >> config-all-disas.mak |
64656024 | 5031 | ;; |
cfa550c6 MF |
5032 | xtensa*) |
5033 | echo "CONFIG_XTENSA_DIS=y" >> $config_target_mak | |
76cad711 | 5034 | echo "CONFIG_XTENSA_DIS=y" >> config-all-disas.mak |
cfa550c6 | 5035 | ;; |
64656024 JQ |
5036 | esac |
5037 | done | |
9195b2c2 SW |
5038 | if test "$tcg_interpreter" = "yes" ; then |
5039 | echo "CONFIG_TCI_DIS=y" >> $config_target_mak | |
76cad711 | 5040 | echo "CONFIG_TCI_DIS=y" >> config-all-disas.mak |
9195b2c2 | 5041 | fi |
64656024 | 5042 | |
6ee7126f JQ |
5043 | case "$ARCH" in |
5044 | alpha) | |
5045 | # Ensure there's only a single GP | |
5046 | cflags="-msmall-data $cflags" | |
5047 | ;; | |
5048 | esac | |
5049 | ||
d02c1db3 | 5050 | if test "$gprof" = "yes" ; then |
25be210f | 5051 | echo "TARGET_GPROF=yes" >> $config_target_mak |
d02c1db3 JQ |
5052 | if test "$target_linux_user" = "yes" ; then |
5053 | cflags="-p $cflags" | |
5054 | ldflags="-p $ldflags" | |
5055 | fi | |
5056 | if test "$target_softmmu" = "yes" ; then | |
5057 | ldflags="-p $ldflags" | |
25be210f | 5058 | echo "GPROF_CFLAGS=-p" >> $config_target_mak |
d02c1db3 JQ |
5059 | fi |
5060 | fi | |
5061 | ||
9b8e111f | 5062 | if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then |
964c6fa1 | 5063 | ldflags="$ldflags $textseg_ldflags" |
fa282484 | 5064 | fi |
fa282484 | 5065 | |
25be210f JQ |
5066 | echo "LDFLAGS+=$ldflags" >> $config_target_mak |
5067 | echo "QEMU_CFLAGS+=$cflags" >> $config_target_mak | |
fa282484 | 5068 | |
97a847bc | 5069 | done # for target in $targets |
7d13299d | 5070 | |
b776eca1 GH |
5071 | if [ "$pixman" = "internal" ]; then |
5072 | echo "config-host.h: subdir-pixman" >> $config_host_mak | |
5073 | fi | |
5074 | ||
2da776db MH |
5075 | if test "$rdma" = "yes" ; then |
5076 | echo "CONFIG_RDMA=y" >> $config_host_mak | |
5077 | fi | |
5078 | ||
a540f158 PC |
5079 | if [ "$dtc_internal" = "yes" ]; then |
5080 | echo "config-host.h: subdir-dtc" >> $config_host_mak | |
5081 | fi | |
5082 | ||
d1807a4f | 5083 | # build tree in object directory in case the source is not in the current directory |
f93296ea | 5084 | DIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32 tests/libqos tests/qapi-schema tests/tcg/xtensa tests/qemu-iotests" |
2b170eff | 5085 | DIRS="$DIRS fsdev" |
9933c305 | 5086 | DIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas pc-bios/s390-ccw" |
d1807a4f | 5087 | DIRS="$DIRS roms/seabios roms/vgabios" |
2dee8d54 | 5088 | DIRS="$DIRS qapi-generated" |
c09015dd AL |
5089 | FILES="Makefile tests/tcg/Makefile qdict-test-data.txt" |
5090 | FILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit" | |
aaa2ebc5 | 5091 | FILES="$FILES tests/tcg/lm32/Makefile tests/tcg/xtensa/Makefile po/Makefile" |
d1807a4f | 5092 | FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps" |
446b9165 | 5093 | FILES="$FILES pc-bios/spapr-rtas/Makefile" |
9933c305 | 5094 | FILES="$FILES pc-bios/s390-ccw/Makefile" |
d1807a4f | 5095 | FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile" |
4652b792 | 5096 | FILES="$FILES pc-bios/qemu-icon.bmp" |
753d11f2 RH |
5097 | for bios_file in \ |
5098 | $source_path/pc-bios/*.bin \ | |
5acc2ec0 | 5099 | $source_path/pc-bios/*.aml \ |
753d11f2 RH |
5100 | $source_path/pc-bios/*.rom \ |
5101 | $source_path/pc-bios/*.dtb \ | |
e89e33e1 | 5102 | $source_path/pc-bios/*.img \ |
753d11f2 RH |
5103 | $source_path/pc-bios/openbios-* \ |
5104 | $source_path/pc-bios/palcode-* | |
5105 | do | |
d1807a4f PB |
5106 | FILES="$FILES pc-bios/`basename $bios_file`" |
5107 | done | |
c2304b52 MA |
5108 | for test_file in `find $source_path/tests/acpi-test-data -type f` |
5109 | do | |
5110 | FILES="$FILES tests/acpi-test-data`echo $test_file | sed -e 's/.*acpi-test-data//'`" | |
5111 | done | |
d1807a4f PB |
5112 | mkdir -p $DIRS |
5113 | for f in $FILES ; do | |
72b8b5a1 | 5114 | if [ -e "$source_path/$f" ] && [ "$source_path" != `pwd` ]; then |
f9245e10 PM |
5115 | symlink "$source_path/$f" "$f" |
5116 | fi | |
d1807a4f | 5117 | done |
1ad2134f | 5118 | |
c34ebfdc | 5119 | # temporary config to build submodules |
2d9f27d2 | 5120 | for rom in seabios vgabios ; do |
c34ebfdc | 5121 | config_mak=roms/$rom/config.mak |
37116c89 | 5122 | echo "# Automatically generated by configure - do not modify" > $config_mak |
c34ebfdc | 5123 | echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak |
3dd46c78 | 5124 | echo "AS=$as" >> $config_mak |
c34ebfdc AL |
5125 | echo "CC=$cc" >> $config_mak |
5126 | echo "BCC=bcc" >> $config_mak | |
3dd46c78 | 5127 | echo "CPP=$cpp" >> $config_mak |
c34ebfdc | 5128 | echo "OBJCOPY=objcopy" >> $config_mak |
a31a8642 | 5129 | echo "IASL=$iasl" >> $config_mak |
c34ebfdc AL |
5130 | echo "LD=$ld" >> $config_mak |
5131 | done | |
5132 | ||
b40292e7 JK |
5133 | if test "$docs" = "yes" ; then |
5134 | mkdir -p QMP | |
5135 | fi | |
dc655404 MT |
5136 | |
5137 | # Save the configure command line for later reuse. | |
5138 | cat <<EOD >config.status | |
5139 | #!/bin/sh | |
5140 | # Generated by configure. | |
5141 | # Run this file to recreate the current configuration. | |
5142 | # Compiler output produced by configure, useful for debugging | |
5143 | # configure, is in config.log if it exists. | |
5144 | EOD | |
5145 | printf "exec" >>config.status | |
5146 | printf " '%s'" "$0" "$@" >>config.status | |
5147 | echo >>config.status | |
5148 | chmod +x config.status | |
5149 |