]> git.proxmox.com Git - mirror_qemu.git/blob - configure
Detect pthread_setname_np at configure time
[mirror_qemu.git] / configure
1 #!/bin/sh
2 #
3 # qemu configure script (c) 2003 Fabrice Bellard
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
14 TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
15 TMPB="qemu-conf-${RANDOM}-$$-${RANDOM}"
16 TMPO="${TMPDIR1}/${TMPB}.o"
17 TMPCXX="${TMPDIR1}/${TMPB}.cxx"
18 TMPL="${TMPDIR1}/${TMPB}.lo"
19 TMPA="${TMPDIR1}/lib${TMPB}.la"
20 TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.exe"
21
22 # NB: do not call "exit" in the trap handler; this is buggy with some shells;
23 # see <1285349658-3122-1-git-send-email-loic.minier@linaro.org>
24 trap "rm -f $TMPC $TMPO $TMPCXX $TMPE" EXIT INT QUIT TERM
25 rm -f config.log
26
27 # Print a helpful header at the top of config.log
28 echo "# QEMU configure log $(date)" >> config.log
29 printf "# Configured with:" >> config.log
30 printf " '%s'" "$0" "$@" >> config.log
31 echo >> config.log
32 echo "#" >> config.log
33
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
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 $?
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
65 echo $compiler -Werror "$@" >> config.log
66 $compiler -Werror "$@" >> config.log 2>&1 && return $?
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."
71 }
72
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
98 compile_object() {
99 do_cc $QEMU_CFLAGS -c -o $TMPO $TMPC
100 }
101
102 compile_prog() {
103 local_cflags="$1"
104 local_ldflags="$2"
105 do_cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
106 }
107
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
140 # symbolically link $1 to $2. Portable version of "ln -sf".
141 symlink() {
142 rm -rf "$2"
143 mkdir -p "$(dirname "$2")"
144 ln -s "$1" "$2"
145 }
146
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
183 # default parameters
184 source_path=`dirname "$0"`
185 cpu=""
186 iasl="iasl"
187 interp_prefix="/usr/gnemul/qemu-%M"
188 static="no"
189 cross_prefix=""
190 audio_drv_list=""
191 block_drv_rw_whitelist=""
192 block_drv_ro_whitelist=""
193 host_cc="cc"
194 libs_softmmu=""
195 libs_tools=""
196 audio_pt_int=""
197 audio_win_int=""
198 cc_i386=i386-pc-linux-gnu-gcc
199 libs_qga=""
200 debug_info="yes"
201
202 # Don't accept a target_list environment variable.
203 unset target_list
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=""
223 netmap="no"
224 pixman=""
225 sdl=""
226 sdlabi="1.2"
227 virtfs=""
228 vnc="yes"
229 sparse="no"
230 uuid=""
231 vde=""
232 vnc_tls=""
233 vnc_sasl=""
234 vnc_jpeg=""
235 vnc_png=""
236 vnc_ws=""
237 xen=""
238 xen_ctrl_version=""
239 xen_pci_passthrough=""
240 linux_aio=""
241 cap_ng=""
242 attr=""
243 libattr=""
244 xfs=""
245
246 vhost_net="no"
247 vhost_scsi="no"
248 kvm="no"
249 rdma=""
250 gprof="no"
251 debug_tcg="no"
252 debug="no"
253 strip_opt="yes"
254 tcg_interpreter="no"
255 bigendian="no"
256 mingw32="no"
257 gcov="no"
258 gcov_tool="gcov"
259 EXESUF=""
260 DSOSUF=".so"
261 LDFLAGS_SHARED="-shared"
262 modules="no"
263 prefix="/usr/local"
264 mandir="\${prefix}/share/man"
265 datadir="\${prefix}/share"
266 qemu_docdir="\${prefix}/share/doc/qemu"
267 bindir="\${prefix}/bin"
268 libdir="\${prefix}/lib"
269 libexecdir="\${prefix}/libexec"
270 includedir="\${prefix}/include"
271 sysconfdir="\${prefix}/etc"
272 local_statedir="\${prefix}/var"
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"
285 bsd_user="no"
286 guest_base="yes"
287 uname_release=""
288 aix="no"
289 blobs="yes"
290 pkgversion=""
291 pie=""
292 zero_malloc=""
293 qom_cast_debug="yes"
294 trace_backend="nop"
295 trace_file="trace"
296 spice=""
297 rbd=""
298 smartcard_nss=""
299 libusb=""
300 usb_redir=""
301 glx=""
302 zlib="yes"
303 lzo="no"
304 snappy="no"
305 guest_agent=""
306 guest_agent_with_vss="no"
307 vss_win32_sdk=""
308 win_sdk="no"
309 want_tools="yes"
310 libiscsi=""
311 libnfs=""
312 coroutine=""
313 coroutine_pool=""
314 seccomp=""
315 glusterfs=""
316 glusterfs_discard="no"
317 glusterfs_zerofill="no"
318 virtio_blk_data_plane=""
319 gtk=""
320 gtkabi="2.0"
321 tpm="no"
322 libssh2=""
323 vhdx=""
324 quorum="no"
325
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 ;;
332 --cc=*) CC="$optarg"
333 ;;
334 --cxx=*) CXX="$optarg"
335 ;;
336 --source-path=*) source_path="$optarg"
337 ;;
338 --cpu=*) cpu="$optarg"
339 ;;
340 --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS"
341 EXTRA_CFLAGS="$optarg"
342 ;;
343 --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS"
344 EXTRA_LDFLAGS="$optarg"
345 ;;
346 --enable-debug-info) debug_info="yes"
347 ;;
348 --disable-debug-info) debug_info="no"
349 ;;
350 esac
351 done
352 # OS specific
353 # Using uname is really, really broken. Once we have the right set of checks
354 # we can eliminate its usage altogether.
355
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
366 if test -z "${CXX}${cross_prefix}"; then
367 cxx="c++"
368 else
369 cxx="${CXX-${cross_prefix}g++}"
370 fi
371
372 ar="${AR-${cross_prefix}ar}"
373 as="${AS-${cross_prefix}as}"
374 cpp="${CPP-$cc -E}"
375 objcopy="${OBJCOPY-${cross_prefix}objcopy}"
376 ld="${LD-${cross_prefix}ld}"
377 libtool="${LIBTOOL-${cross_prefix}libtool}"
378 strip="${STRIP-${cross_prefix}strip}"
379 windres="${WINDRES-${cross_prefix}windres}"
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
385 sdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}"
386 sdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}"
387
388 # If the user hasn't specified ARFLAGS, default to 'rv', just as make does.
389 ARFLAGS="${ARFLAGS-rv}"
390
391 # default flags for all hosts
392 QEMU_CFLAGS="-fno-strict-aliasing -fno-common $QEMU_CFLAGS"
393 QEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
394 QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
395 QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
396 QEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/include"
397 if test "$debug_info" = "yes"; then
398 CFLAGS="-g $CFLAGS"
399 LDFLAGS="-g $LDFLAGS"
400 fi
401
402 # make source path absolute
403 source_path=`cd "$source_path"; pwd`
404
405 check_define() {
406 cat > $TMPC <<EOF
407 #if !defined($1)
408 #error $1 not defined
409 #endif
410 int main(void) { return 0; }
411 EOF
412 compile_object
413 }
414
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
450 if test ! -z "$cpu" ; then
451 # command line argument
452 :
453 elif check_define __i386__ ; then
454 cpu="i386"
455 elif check_define __x86_64__ ; then
456 if check_define __ILP32__ ; then
457 cpu="x32"
458 else
459 cpu="x86_64"
460 fi
461 elif check_define __sparc__ ; then
462 if check_define __arch64__ ; then
463 cpu="sparc64"
464 else
465 cpu="sparc"
466 fi
467 elif check_define _ARCH_PPC ; then
468 if check_define _ARCH_PPC64 ; then
469 cpu="ppc64"
470 else
471 cpu="ppc"
472 fi
473 elif check_define __mips__ ; then
474 cpu="mips"
475 elif check_define __ia64__ ; then
476 cpu="ia64"
477 elif check_define __s390__ ; then
478 if check_define __s390x__ ; then
479 cpu="s390x"
480 else
481 cpu="s390"
482 fi
483 elif check_define __arm__ ; then
484 cpu="arm"
485 elif check_define __aarch64__ ; then
486 cpu="aarch64"
487 elif check_define __hppa__ ; then
488 cpu="hppa"
489 else
490 cpu=`uname -m`
491 fi
492
493 ARCH=
494 # Normalise host CPU name and set ARCH.
495 # Note that this case should only have supported host CPUs, not guests.
496 case "$cpu" in
497 ia64|ppc|ppc64|s390|s390x|sparc64|x32)
498 cpu="$cpu"
499 ;;
500 i386|i486|i586|i686|i86pc|BePC)
501 cpu="i386"
502 ;;
503 x86_64|amd64)
504 cpu="x86_64"
505 ;;
506 armv*b|armv*l|arm)
507 cpu="arm"
508 ;;
509 aarch64)
510 cpu="aarch64"
511 ;;
512 mips*)
513 cpu="mips"
514 ;;
515 sparc|sun4[cdmuv])
516 cpu="sparc"
517 ;;
518 *)
519 # This will result in either an error or falling back to TCI later
520 ARCH=unknown
521 ;;
522 esac
523 if test -z "$ARCH"; then
524 ARCH="$cpu"
525 fi
526
527 # OS specific
528
529 case $targetos in
530 CYGWIN*)
531 mingw32="yes"
532 QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
533 audio_possible_drivers="winwave sdl"
534 audio_drv_list="winwave"
535 ;;
536 MINGW32*)
537 mingw32="yes"
538 audio_possible_drivers="winwave dsound sdl fmod"
539 audio_drv_list="winwave"
540 ;;
541 GNU/kFreeBSD)
542 bsd="yes"
543 audio_drv_list="oss"
544 audio_possible_drivers="oss sdl esd pa"
545 ;;
546 FreeBSD)
547 bsd="yes"
548 make="${MAKE-gmake}"
549 audio_drv_list="oss"
550 audio_possible_drivers="oss sdl esd pa"
551 # needed for kinfo_getvmmap(3) in libutil.h
552 LIBS="-lutil $LIBS"
553 netmap="" # enable netmap autodetect
554 ;;
555 DragonFly)
556 bsd="yes"
557 make="${MAKE-gmake}"
558 audio_drv_list="oss"
559 audio_possible_drivers="oss sdl esd pa"
560 ;;
561 NetBSD)
562 bsd="yes"
563 make="${MAKE-gmake}"
564 audio_drv_list="oss"
565 audio_possible_drivers="oss sdl esd"
566 oss_lib="-lossaudio"
567 ;;
568 OpenBSD)
569 bsd="yes"
570 make="${MAKE-gmake}"
571 audio_drv_list="sdl"
572 audio_possible_drivers="sdl esd"
573 ;;
574 Darwin)
575 bsd="yes"
576 darwin="yes"
577 LDFLAGS_SHARED="-bundle -undefined dynamic_lookup"
578 if [ "$cpu" = "x86_64" ] ; then
579 QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
580 LDFLAGS="-arch x86_64 $LDFLAGS"
581 fi
582 cocoa="yes"
583 audio_drv_list="coreaudio"
584 audio_possible_drivers="coreaudio sdl fmod"
585 LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
586 libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
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"
590 ;;
591 SunOS)
592 solaris="yes"
593 make="${MAKE-gmake}"
594 install="${INSTALL-ginstall}"
595 ld="gld"
596 smbd="${SMBD-/usr/sfw/sbin/smbd}"
597 needs_libsunmath="no"
598 solarisrev=`uname -r | cut -f2 -d.`
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"
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"
606 else
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."
611 fi
612 fi
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"
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"
622 QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
623 solarisnetlibs="-lsocket -lnsl -lresolv"
624 LIBS="$solarisnetlibs $LIBS"
625 libs_qga="$solarisnetlibs $libs_qga"
626 ;;
627 AIX)
628 aix="yes"
629 make="${MAKE-gmake}"
630 ;;
631 Haiku)
632 haiku="yes"
633 QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
634 LIBS="-lposix_error_mapper -lnetwork $LIBS"
635 ;;
636 *)
637 audio_drv_list="oss"
638 audio_possible_drivers="oss alsa sdl esd pa"
639 linux="yes"
640 linux_user="yes"
641 kvm="yes"
642 vhost_net="yes"
643 vhost_scsi="yes"
644 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" -o "$cpu" = "x32" ] ; then
645 audio_possible_drivers="$audio_possible_drivers fmod"
646 fi
647 QEMU_INCLUDES="-I\$(SRC_PATH)/linux-headers -I$(pwd)/linux-headers $QEMU_INCLUDES"
648 ;;
649 esac
650
651 if [ "$bsd" = "yes" ] ; then
652 if [ "$darwin" != "yes" ] ; then
653 bsd_user="yes"
654 fi
655 fi
656
657 : ${make=${MAKE-make}}
658 : ${install=${INSTALL-install}}
659 : ${python=${PYTHON-python}}
660 : ${smbd=${SMBD-/usr/sbin/smbd}}
661
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
669 if test "$mingw32" = "yes" ; then
670 EXESUF=".exe"
671 DSOSUF=".dll"
672 QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
673 # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
674 QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
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
682 prefix="c:/Program Files/QEMU"
683 mandir="\${prefix}"
684 datadir="\${prefix}"
685 qemu_docdir="\${prefix}"
686 bindir="\${prefix}"
687 sysconfdir="\${prefix}"
688 local_statedir=
689 confsuffix=""
690 libs_qga="-lws2_32 -lwinmm -lpowrprof $libs_qga"
691 fi
692
693 werror=""
694
695 for opt do
696 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
697 case "$opt" in
698 --help|-h) show_help=yes
699 ;;
700 --version|-V) exec cat $source_path/VERSION
701 ;;
702 --prefix=*) prefix="$optarg"
703 ;;
704 --interp-prefix=*) interp_prefix="$optarg"
705 ;;
706 --source-path=*)
707 ;;
708 --cross-prefix=*)
709 ;;
710 --cc=*)
711 ;;
712 --host-cc=*) host_cc="$optarg"
713 ;;
714 --cxx=*)
715 ;;
716 --iasl=*) iasl="$optarg"
717 ;;
718 --objcc=*) objcc="$optarg"
719 ;;
720 --make=*) make="$optarg"
721 ;;
722 --install=*) install="$optarg"
723 ;;
724 --python=*) python="$optarg"
725 ;;
726 --gcov=*) gcov_tool="$optarg"
727 ;;
728 --smbd=*) smbd="$optarg"
729 ;;
730 --extra-cflags=*)
731 ;;
732 --extra-ldflags=*)
733 ;;
734 --enable-debug-info)
735 ;;
736 --disable-debug-info)
737 ;;
738 --enable-modules)
739 modules="yes"
740 ;;
741 --cpu=*)
742 ;;
743 --target-list=*) target_list="$optarg"
744 ;;
745 --enable-trace-backend=*) trace_backend="$optarg"
746 ;;
747 --with-trace-file=*) trace_file="$optarg"
748 ;;
749 --enable-gprof) gprof="yes"
750 ;;
751 --enable-gcov) gcov="yes"
752 ;;
753 --static)
754 static="yes"
755 LDFLAGS="-static $LDFLAGS"
756 QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS"
757 ;;
758 --mandir=*) mandir="$optarg"
759 ;;
760 --bindir=*) bindir="$optarg"
761 ;;
762 --libdir=*) libdir="$optarg"
763 ;;
764 --libexecdir=*) libexecdir="$optarg"
765 ;;
766 --includedir=*) includedir="$optarg"
767 ;;
768 --datadir=*) datadir="$optarg"
769 ;;
770 --with-confsuffix=*) confsuffix="$optarg"
771 ;;
772 --docdir=*) qemu_docdir="$optarg"
773 ;;
774 --sysconfdir=*) sysconfdir="$optarg"
775 ;;
776 --localstatedir=*) local_statedir="$optarg"
777 ;;
778 --sbindir=*|--sharedstatedir=*|\
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 ;;
786 --with-system-pixman) pixman="system"
787 ;;
788 --without-system-pixman) pixman="internal"
789 ;;
790 --without-pixman) pixman="none"
791 ;;
792 --disable-sdl) sdl="no"
793 ;;
794 --enable-sdl) sdl="yes"
795 ;;
796 --with-sdlabi=*) sdlabi="$optarg"
797 ;;
798 --disable-qom-cast-debug) qom_cast_debug="no"
799 ;;
800 --enable-qom-cast-debug) qom_cast_debug="yes"
801 ;;
802 --disable-virtfs) virtfs="no"
803 ;;
804 --enable-virtfs) virtfs="yes"
805 ;;
806 --disable-vnc) vnc="no"
807 ;;
808 --enable-vnc) vnc="yes"
809 ;;
810 --fmod-lib=*) fmod_lib="$optarg"
811 ;;
812 --fmod-inc=*) fmod_inc="$optarg"
813 ;;
814 --oss-lib=*) oss_lib="$optarg"
815 ;;
816 --audio-drv-list=*) audio_drv_list="$optarg"
817 ;;
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'`
821 ;;
822 --enable-debug-tcg) debug_tcg="yes"
823 ;;
824 --disable-debug-tcg) debug_tcg="no"
825 ;;
826 --enable-debug)
827 # Enable debugging options that aren't excessively noisy
828 debug_tcg="yes"
829 debug="yes"
830 strip_opt="no"
831 ;;
832 --enable-sparse) sparse="yes"
833 ;;
834 --disable-sparse) sparse="no"
835 ;;
836 --disable-strip) strip_opt="no"
837 ;;
838 --disable-vnc-tls) vnc_tls="no"
839 ;;
840 --enable-vnc-tls) vnc_tls="yes"
841 ;;
842 --disable-vnc-sasl) vnc_sasl="no"
843 ;;
844 --enable-vnc-sasl) vnc_sasl="yes"
845 ;;
846 --disable-vnc-jpeg) vnc_jpeg="no"
847 ;;
848 --enable-vnc-jpeg) vnc_jpeg="yes"
849 ;;
850 --disable-vnc-png) vnc_png="no"
851 ;;
852 --enable-vnc-png) vnc_png="yes"
853 ;;
854 --disable-vnc-ws) vnc_ws="no"
855 ;;
856 --enable-vnc-ws) vnc_ws="yes"
857 ;;
858 --disable-slirp) slirp="no"
859 ;;
860 --disable-uuid) uuid="no"
861 ;;
862 --enable-uuid) uuid="yes"
863 ;;
864 --disable-vde) vde="no"
865 ;;
866 --enable-vde) vde="yes"
867 ;;
868 --disable-netmap) netmap="no"
869 ;;
870 --enable-netmap) netmap="yes"
871 ;;
872 --disable-xen) xen="no"
873 ;;
874 --enable-xen) xen="yes"
875 ;;
876 --disable-xen-pci-passthrough) xen_pci_passthrough="no"
877 ;;
878 --enable-xen-pci-passthrough) xen_pci_passthrough="yes"
879 ;;
880 --disable-brlapi) brlapi="no"
881 ;;
882 --enable-brlapi) brlapi="yes"
883 ;;
884 --disable-bluez) bluez="no"
885 ;;
886 --enable-bluez) bluez="yes"
887 ;;
888 --disable-kvm) kvm="no"
889 ;;
890 --enable-kvm) kvm="yes"
891 ;;
892 --disable-tcg-interpreter) tcg_interpreter="no"
893 ;;
894 --enable-tcg-interpreter) tcg_interpreter="yes"
895 ;;
896 --disable-cap-ng) cap_ng="no"
897 ;;
898 --enable-cap-ng) cap_ng="yes"
899 ;;
900 --disable-spice) spice="no"
901 ;;
902 --enable-spice) spice="yes"
903 ;;
904 --disable-libiscsi) libiscsi="no"
905 ;;
906 --enable-libiscsi) libiscsi="yes"
907 ;;
908 --disable-libnfs) libnfs="no"
909 ;;
910 --enable-libnfs) libnfs="yes"
911 ;;
912 --enable-profiler) profiler="yes"
913 ;;
914 --disable-cocoa) cocoa="no"
915 ;;
916 --enable-cocoa)
917 cocoa="yes" ;
918 sdl="no" ;
919 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
920 ;;
921 --disable-system) softmmu="no"
922 ;;
923 --enable-system) softmmu="yes"
924 ;;
925 --disable-user)
926 linux_user="no" ;
927 bsd_user="no" ;
928 ;;
929 --enable-user) ;;
930 --disable-linux-user) linux_user="no"
931 ;;
932 --enable-linux-user) linux_user="yes"
933 ;;
934 --disable-bsd-user) bsd_user="no"
935 ;;
936 --enable-bsd-user) bsd_user="yes"
937 ;;
938 --enable-guest-base) guest_base="yes"
939 ;;
940 --disable-guest-base) guest_base="no"
941 ;;
942 --enable-pie) pie="yes"
943 ;;
944 --disable-pie) pie="no"
945 ;;
946 --enable-uname-release=*) uname_release="$optarg"
947 ;;
948 --enable-werror) werror="yes"
949 ;;
950 --disable-werror) werror="no"
951 ;;
952 --disable-curses) curses="no"
953 ;;
954 --enable-curses) curses="yes"
955 ;;
956 --disable-curl) curl="no"
957 ;;
958 --enable-curl) curl="yes"
959 ;;
960 --disable-fdt) fdt="no"
961 ;;
962 --enable-fdt) fdt="yes"
963 ;;
964 --disable-linux-aio) linux_aio="no"
965 ;;
966 --enable-linux-aio) linux_aio="yes"
967 ;;
968 --disable-attr) attr="no"
969 ;;
970 --enable-attr) attr="yes"
971 ;;
972 --disable-blobs) blobs="no"
973 ;;
974 --with-pkgversion=*) pkgversion=" ($optarg)"
975 ;;
976 --with-coroutine=*) coroutine="$optarg"
977 ;;
978 --disable-coroutine-pool) coroutine_pool="no"
979 ;;
980 --enable-coroutine-pool) coroutine_pool="yes"
981 ;;
982 --disable-docs) docs="no"
983 ;;
984 --enable-docs) docs="yes"
985 ;;
986 --disable-vhost-net) vhost_net="no"
987 ;;
988 --enable-vhost-net) vhost_net="yes"
989 ;;
990 --disable-vhost-scsi) vhost_scsi="no"
991 ;;
992 --enable-vhost-scsi) vhost_scsi="yes"
993 ;;
994 --disable-glx) glx="no"
995 ;;
996 --enable-glx) glx="yes"
997 ;;
998 --disable-rbd) rbd="no"
999 ;;
1000 --enable-rbd) rbd="yes"
1001 ;;
1002 --disable-xfsctl) xfs="no"
1003 ;;
1004 --enable-xfsctl) xfs="yes"
1005 ;;
1006 --disable-smartcard-nss) smartcard_nss="no"
1007 ;;
1008 --enable-smartcard-nss) smartcard_nss="yes"
1009 ;;
1010 --disable-libusb) libusb="no"
1011 ;;
1012 --enable-libusb) libusb="yes"
1013 ;;
1014 --disable-usb-redir) usb_redir="no"
1015 ;;
1016 --enable-usb-redir) usb_redir="yes"
1017 ;;
1018 --disable-zlib-test) zlib="no"
1019 ;;
1020 --enable-lzo) lzo="yes"
1021 ;;
1022 --enable-snappy) snappy="yes"
1023 ;;
1024 --enable-guest-agent) guest_agent="yes"
1025 ;;
1026 --disable-guest-agent) guest_agent="no"
1027 ;;
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 ;;
1040 --enable-tools) want_tools="yes"
1041 ;;
1042 --disable-tools) want_tools="no"
1043 ;;
1044 --enable-seccomp) seccomp="yes"
1045 ;;
1046 --disable-seccomp) seccomp="no"
1047 ;;
1048 --disable-glusterfs) glusterfs="no"
1049 ;;
1050 --enable-glusterfs) glusterfs="yes"
1051 ;;
1052 --disable-virtio-blk-data-plane) virtio_blk_data_plane="no"
1053 ;;
1054 --enable-virtio-blk-data-plane) virtio_blk_data_plane="yes"
1055 ;;
1056 --disable-gtk) gtk="no"
1057 ;;
1058 --enable-gtk) gtk="yes"
1059 ;;
1060 --enable-rdma) rdma="yes"
1061 ;;
1062 --disable-rdma) rdma="no"
1063 ;;
1064 --with-gtkabi=*) gtkabi="$optarg"
1065 ;;
1066 --enable-tpm) tpm="yes"
1067 ;;
1068 --disable-libssh2) libssh2="no"
1069 ;;
1070 --enable-libssh2) libssh2="yes"
1071 ;;
1072 --enable-vhdx) vhdx="yes"
1073 ;;
1074 --disable-vhdx) vhdx="no"
1075 ;;
1076 --disable-quorum) quorum="no"
1077 ;;
1078 --enable-quorum) quorum="yes"
1079 ;;
1080 *) echo "ERROR: unknown option $opt"; show_help="yes"
1081 ;;
1082 esac
1083 done
1084
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
1104 case "$cpu" in
1105 ppc)
1106 CPU_CFLAGS="-m32"
1107 LDFLAGS="-m32 $LDFLAGS"
1108 ;;
1109 ppc64)
1110 CPU_CFLAGS="-m64"
1111 LDFLAGS="-m64 $LDFLAGS"
1112 ;;
1113 sparc)
1114 LDFLAGS="-m32 $LDFLAGS"
1115 CPU_CFLAGS="-m32 -mcpu=ultrasparc"
1116 ;;
1117 sparc64)
1118 LDFLAGS="-m64 $LDFLAGS"
1119 CPU_CFLAGS="-m64 -mcpu=ultrasparc"
1120 ;;
1121 s390)
1122 CPU_CFLAGS="-m31 -march=z990"
1123 LDFLAGS="-m31 $LDFLAGS"
1124 ;;
1125 s390x)
1126 CPU_CFLAGS="-m64 -march=z990"
1127 LDFLAGS="-m64 $LDFLAGS"
1128 ;;
1129 i386)
1130 CPU_CFLAGS="-m32"
1131 LDFLAGS="-m32 $LDFLAGS"
1132 cc_i386='$(CC) -m32'
1133 ;;
1134 x86_64)
1135 CPU_CFLAGS="-m64"
1136 LDFLAGS="-m64 $LDFLAGS"
1137 cc_i386='$(CC) -m32'
1138 ;;
1139 x32)
1140 CPU_CFLAGS="-mx32"
1141 LDFLAGS="-mx32 $LDFLAGS"
1142 cc_i386='$(CC) -m32'
1143 ;;
1144 # No special flags required for other host CPUs
1145 esac
1146
1147 QEMU_CFLAGS="$CPU_CFLAGS $QEMU_CFLAGS"
1148 EXTRA_CFLAGS="$CPU_CFLAGS $EXTRA_CFLAGS"
1149
1150 default_target_list=""
1151
1152 mak_wilds=""
1153
1154 if [ "$softmmu" = "yes" ]; then
1155 mak_wilds="${mak_wilds} $source_path/default-configs/*-softmmu.mak"
1156 fi
1157 if [ "$linux_user" = "yes" ]; then
1158 mak_wilds="${mak_wilds} $source_path/default-configs/*-linux-user.mak"
1159 fi
1160 if [ "$bsd_user" = "yes" ]; then
1161 mak_wilds="${mak_wilds} $source_path/default-configs/*-bsd-user.mak"
1162 fi
1163
1164 for config in $mak_wilds; do
1165 default_target_list="${default_target_list} $(basename "$config" .mak)"
1166 done
1167
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
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)
1206 --with-confsuffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir [$confsuffix]
1207 --enable-modules enable modules support
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
1219 --with-sdlabi select preferred SDL ABI 1.2 or 2.0
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
1311 --disable-libnfs disable nfs support
1312 --enable-libnfs enable nfs support
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
1319 --enable-lzo enable the support of lzo compression library
1320 --enable-snappy enable the support of snappy compression library
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
1340 --disable-quorum disable quorum block filter support
1341 --enable-quorum enable quorum block filter support
1342
1343 NOTE: The object files are built at the place where configure is launched
1344 EOF
1345 exit 1
1346 fi
1347
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
1355 error_exit "Unsupported CPU = $cpu, try --enable-tcg-interpreter"
1356 fi
1357 fi
1358
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
1372 # check that the C compiler works.
1373 cat > $TMPC <<EOF
1374 int main(void) { return 0; }
1375 EOF
1376
1377 if compile_object ; then
1378 : C compiler works ok
1379 else
1380 error_exit "\"$cc\" either does not exist or does not work"
1381 fi
1382
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
1392 cat > $TMPCXX <<EOF
1393 extern "C" {
1394 int c_function(void);
1395 }
1396 int c_function(void) { return 42; }
1397 EOF
1398
1399 update_cxxflags
1400
1401 if do_cxx $QEMU_CXXFLAGS -o $TMPE $TMPCXX $TMPO $LDFLAGS; then
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
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"
1417 gcc_flags="-Wendif-labels $gcc_flags"
1418 gcc_flags="-Wno-initializer-overrides $gcc_flags"
1419 gcc_flags="-Wno-string-plus-int $gcc_flags"
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.
1424 cat > $TMPC << EOF
1425 int main(void) { return 0; }
1426 EOF
1427 for flag in $gcc_flags; do
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
1433 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
1434 fi
1435 done
1436
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
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
1457 if test "$static" = "yes" ; then
1458 if test "$modules" = "yes" ; then
1459 error_exit "static and modules are mutually incompatible"
1460 fi
1461 if test "$pie" = "yes" ; then
1462 error_exit "static and pie are mutually incompatible"
1463 else
1464 pie="no"
1465 fi
1466 fi
1467
1468 if test "$pie" = ""; then
1469 case "$cpu-$targetos" in
1470 i386-Linux|x86_64-Linux|x32-Linux|i386-OpenBSD|x86_64-OpenBSD)
1471 ;;
1472 *)
1473 pie="no"
1474 ;;
1475 esac
1476 fi
1477
1478 if test "$pie" != "no" ; then
1479 cat > $TMPC << EOF
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
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
1501 error_exit "PIE not available due to missing toolchain support"
1502 else
1503 echo "Disabling PIE due to missing toolchain support"
1504 pie="no"
1505 fi
1506 fi
1507
1508 if compile_prog "-fno-pie" "-nopie"; then
1509 CFLAGS_NOPIE="-fno-pie"
1510 LDFLAGS_NOPIE="-nopie"
1511 fi
1512 fi
1513
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
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;
1555 val = __sync_val_compare_and_swap(&val, 0, 1);
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 #########################################
1566 # Solaris specific configure tool chain decisions
1567
1568 if test "$solaris" = "yes" ; then
1569 if has $install; then
1570 :
1571 else
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)"
1575 fi
1576 if test "`path_of $install`" = "/usr/sbin/install" ; then
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"
1580 fi
1581 if has ar; then
1582 :
1583 else
1584 if test -f /usr/ccs/bin/ar ; then
1585 error_exit "No path includes ar" \
1586 "Add /usr/ccs/bin to your path and rerun configure"
1587 fi
1588 error_exit "No path includes ar"
1589 fi
1590 fi
1591
1592 if test -z "${target_list+xxx}" ; then
1593 target_list="$default_target_list"
1594 else
1595 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
1596 fi
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
1610 # see if system emulation was really requested
1611 case " $target_list " in
1612 *"-softmmu "*) softmmu=yes
1613 ;;
1614 *) softmmu=no
1615 ;;
1616 esac
1617
1618 feature_not_found() {
1619 feature=$1
1620 remedy=$2
1621
1622 error_exit "User requested feature $feature" \
1623 "configure was not able to find it." \
1624 "$remedy"
1625 }
1626
1627 # ---
1628 # big/little endian test
1629 cat > $TMPC << EOF
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);
1635 }
1636 EOF
1637
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
1645 fi
1646 else
1647 echo big/little test failed
1648 fi
1649
1650 ##########################################
1651 # pkg-config probe
1652
1653 if ! has "$pkg_config_exe"; then
1654 error_exit "pkg-config binary '$pkg_config_exe' not found"
1655 fi
1656
1657 ##########################################
1658 # NPTL probe
1659
1660 if test "$linux_user" = "yes"; then
1661 cat > $TMPC <<EOF
1662 #include <sched.h>
1663 #include <linux/futex.h>
1664 int main(void) {
1665 #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
1666 #error bork
1667 #endif
1668 return 0;
1669 }
1670 EOF
1671 if ! compile_object ; then
1672 feature_not_found "nptl" "Install glibc and linux kernel headers."
1673 fi
1674 fi
1675
1676 ##########################################
1677 # zlib check
1678
1679 if test "$zlib" != "no" ; then
1680 cat > $TMPC << EOF
1681 #include <zlib.h>
1682 int main(void) { zlibVersion(); return 0; }
1683 EOF
1684 if compile_prog "" "-lz" ; then
1685 :
1686 else
1687 error_exit "zlib check failed" \
1688 "Make sure to have the zlib libs and headers installed."
1689 fi
1690 fi
1691 LIBS="$LIBS -lz"
1692
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
1729 ##########################################
1730 # libseccomp check
1731
1732 if test "$seccomp" != "no" ; then
1733 if $pkg_config --atleast-version=2.1.0 libseccomp; then
1734 libs_softmmu="$libs_softmmu `$pkg_config --libs libseccomp`"
1735 QEMU_CFLAGS="$QEMU_CFLAGS `$pkg_config --cflags libseccomp`"
1736 seccomp="yes"
1737 else
1738 if test "$seccomp" = "yes"; then
1739 feature_not_found "libseccomp" "Install libseccomp devel >= 2.1.0"
1740 fi
1741 seccomp="no"
1742 fi
1743 fi
1744 ##########################################
1745 # xen probe
1746
1747 if test "$xen" != "no" ; then
1748 xen_libs="-lxenstore -lxenctrl -lxenguest"
1749
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)
1755 cat > $TMPC <<EOF
1756 #include <xenctrl.h>
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
1764 feature_not_found "xen" "Install xen devel"
1765 fi
1766 xen=no
1767
1768 # Xen unstable
1769 elif
1770 cat > $TMPC <<EOF &&
1771 #include <xenctrl.h>
1772 #include <xenstore.h>
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
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"
1790 then
1791 xen_ctrl_version=420
1792 xen=yes
1793
1794 elif
1795 cat > $TMPC <<EOF &&
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
1803 int main(void) {
1804 xs_daemon_open();
1805 xc_interface_open(0, 0, 0);
1806 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1807 xc_gnttab_open(NULL, 0);
1808 xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
1809 return 0;
1810 }
1811 EOF
1812 compile_prog "" "$xen_libs"
1813 then
1814 xen_ctrl_version=410
1815 xen=yes
1816
1817 # Xen 4.0.0
1818 elif
1819 cat > $TMPC <<EOF &&
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) {
1828 struct xen_add_to_physmap xatp = {
1829 .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0,
1830 };
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);
1835 xc_memory_op(0, XENMEM_add_to_physmap, &xatp);
1836 return 0;
1837 }
1838 EOF
1839 compile_prog "" "$xen_libs"
1840 then
1841 xen_ctrl_version=400
1842 xen=yes
1843
1844 # Xen 3.4.0
1845 elif
1846 cat > $TMPC <<EOF &&
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"
1862 then
1863 xen_ctrl_version=340
1864 xen=yes
1865
1866 # Xen 3.3.0
1867 elif
1868 cat > $TMPC <<EOF &&
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"
1880 then
1881 xen_ctrl_version=330
1882 xen=yes
1883
1884 # Xen version unsupported
1885 else
1886 if test "$xen" = "yes" ; then
1887 feature_not_found "xen (unsupported version)" "Install supported xen (e.g. 4.0, 3.4, 3.3)"
1888 fi
1889 xen=no
1890 fi
1891
1892 if test "$xen" = yes; then
1893 libs_softmmu="$xen_libs $libs_softmmu"
1894 fi
1895 fi
1896
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
1903 if test "$xen_ctrl_version" -lt 340; then
1904 error_exit "User requested feature Xen PCI Passthrough" \
1905 "This feature does not work with Xen 3.3"
1906 fi
1907 error_exit "User requested feature Xen PCI Passthrough" \
1908 " but this feature requires /sys from Linux"
1909 fi
1910 xen_pci_passthrough=no
1911 fi
1912 fi
1913
1914 ##########################################
1915 # libtool probe
1916
1917 if ! has $libtool; then
1918 libtool=
1919 fi
1920
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
1929 ##########################################
1930 # Sparse probe
1931 if test "$sparse" != "no" ; then
1932 if has cgcc; then
1933 sparse=yes
1934 else
1935 if test "$sparse" = "yes" ; then
1936 feature_not_found "sparse" "Install sparse binary"
1937 fi
1938 sparse=no
1939 fi
1940 fi
1941
1942 ##########################################
1943 # GTK probe
1944
1945 if test "$gtk" != "no"; then
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
1956 if ! $pkg_config --exists "$gtkpackage >= $gtkversion"; then
1957 if test "$gtk" = "yes" ; then
1958 feature_not_found "gtk" "Install gtk2 or gtk3 (requires --with-gtkabi=3.0 option to configure) devel"
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
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`
1971 libs_softmmu="$gtk_libs $vte_libs $libs_softmmu"
1972 gtk="yes"
1973 fi
1974 fi
1975
1976 ##########################################
1977 # SDL probe
1978
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.
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
1993 fi
1994
1995 if $pkg_config $sdlname --exists; then
1996 sdlconfig="$pkg_config $sdlname"
1997 _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
1998 elif has ${sdl_config}; then
1999 sdlconfig="$sdl_config"
2000 _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
2001 else
2002 if test "$sdl" = "yes" ; then
2003 feature_not_found "sdl" "Install SDL devel"
2004 fi
2005 sdl=no
2006 fi
2007 if test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then
2008 echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
2009 fi
2010
2011 sdl_too_old=no
2012 if test "$sdl" != "no" ; then
2013 cat > $TMPC << EOF
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
2018 sdl_cflags=`$sdlconfig --cflags 2> /dev/null`
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
2024 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
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
2032
2033 # static link with sdl ? (note: sdl.pc's --static --libs is broken)
2034 if test "$sdl" = "yes" -a "$static" = "yes" ; then
2035 if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
2036 sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
2037 sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
2038 fi
2039 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
2040 :
2041 else
2042 sdl=no
2043 fi
2044 fi # static link
2045 else # sdl not found
2046 if test "$sdl" = "yes" ; then
2047 feature_not_found "sdl" "Install SDL devel"
2048 fi
2049 sdl=no
2050 fi # sdl compile test
2051 fi
2052
2053 if test "$sdl" = "yes" ; then
2054 cat > $TMPC <<EOF
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
2063 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
2064 sdl_libs="$sdl_libs -lX11"
2065 fi
2066 libs_softmmu="$sdl_libs $libs_softmmu"
2067 fi
2068
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
2093 ##########################################
2094 # VNC TLS/WS detection
2095 if test "$vnc" = "yes" -a \( "$vnc_tls" != "no" -o "$vnc_ws" != "no" \) ; then
2096 cat > $TMPC <<EOF
2097 #include <gnutls/gnutls.h>
2098 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
2099 EOF
2100 vnc_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null`
2101 vnc_tls_libs=`$pkg_config --libs gnutls 2> /dev/null`
2102 if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
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
2109 libs_softmmu="$vnc_tls_libs $libs_softmmu"
2110 QEMU_CFLAGS="$QEMU_CFLAGS $vnc_tls_cflags"
2111 else
2112 if test "$vnc_tls" = "yes" ; then
2113 feature_not_found "vnc-tls" "Install gnutls devel"
2114 fi
2115 if test "$vnc_ws" = "yes" ; then
2116 feature_not_found "vnc-ws" "Install gnutls devel"
2117 fi
2118 vnc_tls=no
2119 vnc_ws=no
2120 fi
2121 fi
2122
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
2147 ##########################################
2148 # VNC SASL detection
2149 if test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then
2150 cat > $TMPC <<EOF
2151 #include <sasl/sasl.h>
2152 #include <stdio.h>
2153 int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
2154 EOF
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"
2161 QEMU_CFLAGS="$QEMU_CFLAGS $vnc_sasl_cflags"
2162 else
2163 if test "$vnc_sasl" = "yes" ; then
2164 feature_not_found "vnc-sasl" "Install Cyrus SASL devel"
2165 fi
2166 vnc_sasl=no
2167 fi
2168 fi
2169
2170 ##########################################
2171 # VNC JPEG detection
2172 if test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then
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"
2183 QEMU_CFLAGS="$QEMU_CFLAGS $vnc_jpeg_cflags"
2184 else
2185 if test "$vnc_jpeg" = "yes" ; then
2186 feature_not_found "vnc-jpeg" "Install libjpeg-turbo devel"
2187 fi
2188 vnc_jpeg=no
2189 fi
2190 fi
2191
2192 ##########################################
2193 # VNC PNG detection
2194 if test "$vnc" = "yes" -a "$vnc_png" != "no" ; then
2195 cat > $TMPC <<EOF
2196 //#include <stdio.h>
2197 #include <png.h>
2198 #include <stddef.h>
2199 int main(void) {
2200 png_structp png_ptr;
2201 png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
2202 return png_ptr != 0;
2203 }
2204 EOF
2205 if $pkg_config libpng --exists; then
2206 vnc_png_cflags=`$pkg_config libpng --cflags`
2207 vnc_png_libs=`$pkg_config libpng --libs`
2208 else
2209 vnc_png_cflags=""
2210 vnc_png_libs="-lpng"
2211 fi
2212 if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
2213 vnc_png=yes
2214 libs_softmmu="$vnc_png_libs $libs_softmmu"
2215 QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags"
2216 else
2217 if test "$vnc_png" = "yes" ; then
2218 feature_not_found "vnc-png" "Install libpng devel"
2219 fi
2220 vnc_png=no
2221 fi
2222 fi
2223
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
2235 if compile_prog "" "" ; then
2236 fnmatch="yes"
2237 fi
2238
2239 ##########################################
2240 # uuid_generate() probe, used for vdi block driver
2241 # Note that on some systems (notably MacOSX) no extra library
2242 # need be linked to get the uuid functions.
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
2254 if compile_prog "" "" ; then
2255 uuid="yes"
2256 elif compile_prog "" "$uuid_libs" ; then
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
2262 feature_not_found "uuid" "Install libuuid devel"
2263 fi
2264 uuid=no
2265 fi
2266 fi
2267
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
2280 ##########################################
2281 # xfsctl() probe, used for raw-posix
2282 if test "$xfs" != "no" ; then
2283 cat > $TMPC << EOF
2284 #include <stddef.h> /* NULL */
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
2296 feature_not_found "xfs" "Instal xfsprogs/xfslibs devel"
2297 fi
2298 xfs=no
2299 fi
2300 fi
2301
2302 ##########################################
2303 # vde libraries probe
2304 if test "$vde" != "no" ; then
2305 vde_libs="-lvdeplug"
2306 cat > $TMPC << EOF
2307 #include <libvdeplug.h>
2308 int main(void)
2309 {
2310 struct vde_open_args a = {0, 0, 0};
2311 char s[] = "";
2312 vde_open(s, s, &a);
2313 return 0;
2314 }
2315 EOF
2316 if compile_prog "" "$vde_libs" ; then
2317 vde=yes
2318 libs_softmmu="$vde_libs $libs_softmmu"
2319 libs_tools="$vde_libs $libs_tools"
2320 else
2321 if test "$vde" = "yes" ; then
2322 feature_not_found "vde" "Install vde (Virtual Distributed Ethernet) devel"
2323 fi
2324 vde=no
2325 fi
2326 fi
2327
2328 ##########################################
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.
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>
2341 #if (NETMAP_API < 11) || (NETMAP_API > 15)
2342 #error
2343 #endif
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
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
2373 feature_not_found "cap_ng" "Install libcap-ng devel"
2374 fi
2375 cap_ng=no
2376 fi
2377 fi
2378
2379 ##########################################
2380 # Sound support libraries probe
2381
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 }
2392 EOF
2393 if compile_prog "$cfl" "$lib" ; then
2394 :
2395 else
2396 error_exit "$drv check failed" \
2397 "Make sure to have the $drv libs and headers installed."
2398 fi
2399 }
2400
2401 audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
2402 for drv in $audio_drv_list; do
2403 case $drv in
2404 alsa)
2405 audio_drv_probe $drv alsa/asoundlib.h -lasound \
2406 "return snd_pcm_close((snd_pcm_t *)0);"
2407 libs_softmmu="-lasound $libs_softmmu"
2408 ;;
2409
2410 fmod)
2411 if test -z $fmod_lib || test -z $fmod_inc; then
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"
2414 fi
2415 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
2416 libs_softmmu="$fmod_lib $libs_softmmu"
2417 ;;
2418
2419 esd)
2420 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
2421 libs_softmmu="-lesd $libs_softmmu"
2422 audio_pt_int="yes"
2423 ;;
2424
2425 pa)
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"
2429 audio_pt_int="yes"
2430 ;;
2431
2432 coreaudio)
2433 libs_softmmu="-framework CoreAudio $libs_softmmu"
2434 ;;
2435
2436 dsound)
2437 libs_softmmu="-lole32 -ldxguid $libs_softmmu"
2438 audio_win_int="yes"
2439 ;;
2440
2441 oss)
2442 libs_softmmu="$oss_lib $libs_softmmu"
2443 ;;
2444
2445 sdl|wav)
2446 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
2447 ;;
2448
2449 winwave)
2450 libs_softmmu="-lwinmm $libs_softmmu"
2451 audio_win_int="yes"
2452 ;;
2453
2454 *)
2455 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
2456 error_exit "Unknown driver '$drv' selected" \
2457 "Possible drivers are: $audio_possible_drivers"
2458 }
2459 ;;
2460 esac
2461 done
2462
2463 ##########################################
2464 # BrlAPI probe
2465
2466 if test "$brlapi" != "no" ; then
2467 brlapi_libs="-lbrlapi"
2468 cat > $TMPC << EOF
2469 #include <brlapi.h>
2470 #include <stddef.h>
2471 int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
2472 EOF
2473 if compile_prog "" "$brlapi_libs" ; then
2474 brlapi=yes
2475 libs_softmmu="$brlapi_libs $libs_softmmu"
2476 else
2477 if test "$brlapi" = "yes" ; then
2478 feature_not_found "brlapi" "Install brlapi devel"
2479 fi
2480 brlapi=no
2481 fi
2482 fi
2483
2484 ##########################################
2485 # curses probe
2486 if test "$curses" != "no" ; then
2487 if test "$mingw32" = "yes" ; then
2488 curses_list="-lpdcurses"
2489 else
2490 curses_list="$($pkg_config --libs ncurses 2>/dev/null):-lncurses:-lcurses"
2491 fi
2492 curses_found=no
2493 cat > $TMPC << EOF
2494 #include <curses.h>
2495 int main(void) {
2496 const char *s = curses_version();
2497 resize_term(0, 0);
2498 return s != 0;
2499 }
2500 EOF
2501 IFS=:
2502 for curses_lib in $curses_list; do
2503 unset IFS
2504 if compile_prog "" "$curses_lib" ; then
2505 curses_found=yes
2506 libs_softmmu="$curses_lib $libs_softmmu"
2507 break
2508 fi
2509 done
2510 unset IFS
2511 if test "$curses_found" = "yes" ; then
2512 curses=yes
2513 else
2514 if test "$curses" = "yes" ; then
2515 feature_not_found "curses" "Install ncurses devel"
2516 fi
2517 curses=no
2518 fi
2519 fi
2520
2521 ##########################################
2522 # curl probe
2523 if test "$curl" != "no" ; then
2524 if $pkg_config libcurl --exists; then
2525 curlconfig="$pkg_config libcurl"
2526 else
2527 curlconfig=curl-config
2528 fi
2529 cat > $TMPC << EOF
2530 #include <curl/curl.h>
2531 int main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; }
2532 EOF
2533 curl_cflags=`$curlconfig --cflags 2>/dev/null`
2534 curl_libs=`$curlconfig --libs 2>/dev/null`
2535 if compile_prog "$curl_cflags" "$curl_libs" ; then
2536 curl=yes
2537 else
2538 if test "$curl" = "yes" ; then
2539 feature_not_found "curl" "Install libcurl devel"
2540 fi
2541 curl=no
2542 fi
2543 fi # test "$curl"
2544
2545 ##########################################
2546 # bluez support probe
2547 if test "$bluez" != "no" ; then
2548 cat > $TMPC << EOF
2549 #include <bluetooth/bluetooth.h>
2550 int main(void) { return bt_error(0); }
2551 EOF
2552 bluez_cflags=`$pkg_config --cflags bluez 2> /dev/null`
2553 bluez_libs=`$pkg_config --libs bluez 2> /dev/null`
2554 if compile_prog "$bluez_cflags" "$bluez_libs" ; then
2555 bluez=yes
2556 libs_softmmu="$bluez_libs $libs_softmmu"
2557 else
2558 if test "$bluez" = "yes" ; then
2559 feature_not_found "bluez" "Install bluez-libs/libbluetooth devel"
2560 fi
2561 bluez="no"
2562 fi
2563 fi
2564
2565 ##########################################
2566 # glib support probe
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
2574 glib_modules=gthread-2.0
2575 if test "$modules" = yes; then
2576 glib_modules="$glib_modules gmodule-2.0"
2577 fi
2578
2579 for i in $glib_modules; do
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
2604 fi
2605
2606 ##########################################
2607 # pixman support probe
2608
2609 if test "$pixman" = ""; then
2610 if test "$want_tools" = "no" -a "$softmmu" = "no"; then
2611 pixman="none"
2612 elif $pkg_config pixman-1 > /dev/null 2>&1; then
2613 pixman="system"
2614 else
2615 pixman="internal"
2616 fi
2617 fi
2618 if test "$pixman" = "none"; then
2619 if test "$want_tools" != "no" -o "$softmmu" != "no"; then
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'."
2624 fi
2625 pixman_cflags=
2626 pixman_libs=
2627 elif test "$pixman" = "system"; then
2628 pixman_cflags=`$pkg_config --cflags pixman-1`
2629 pixman_libs=`$pkg_config --libs pixman-1`
2630 else
2631 if test ! -d ${source_path}/pixman/pixman; then
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"
2637 fi
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"
2641 fi
2642
2643 ##########################################
2644 # libcap probe
2645
2646 if test "$cap" != "no" ; then
2647 cat > $TMPC <<EOF
2648 #include <stdio.h>
2649 #include <sys/capability.h>
2650 int main(void) { cap_t caps; caps = cap_init(); return caps != NULL; }
2651 EOF
2652 if compile_prog "" "-lcap" ; then
2653 cap=yes
2654 else
2655 cap=no
2656 fi
2657 fi
2658
2659 ##########################################
2660 # pthread probe
2661 PTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2"
2662
2663 pthread=no
2664 cat > $TMPC << EOF
2665 #include <pthread.h>
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 }
2672 EOF
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
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
2689 break
2690 fi
2691 done
2692 fi
2693
2694 if test "$mingw32" != yes -a "$pthread" = no; then
2695 error_exit "pthread check failed" \
2696 "Make sure to have the pthread libs and headers installed."
2697 fi
2698
2699 # check for pthread_setname_np
2700 pthread_setname_np=no
2701 cat > $TMPC << EOF
2702 #include <pthread.h>
2703
2704 static void *f(void *p) { return NULL; }
2705 int main(void)
2706 {
2707 pthread_t thread;
2708 pthread_create(&thread, 0, f, 0);
2709 pthread_setname_np(thread, "QEMU");
2710 return 0;
2711 }
2712 EOF
2713 if compile_prog "" "$pthread_lib" ; then
2714 pthread_setname_np=yes
2715 fi
2716
2717 ##########################################
2718 # rbd probe
2719 if test "$rbd" != "no" ; then
2720 cat > $TMPC <<EOF
2721 #include <stdio.h>
2722 #include <rbd/librbd.h>
2723 int main(void) {
2724 rados_t cluster;
2725 rados_create(&cluster, NULL);
2726 return 0;
2727 }
2728 EOF
2729 rbd_libs="-lrbd -lrados"
2730 if compile_prog "" "$rbd_libs" ; then
2731 rbd=yes
2732 else
2733 if test "$rbd" = "yes" ; then
2734 feature_not_found "rados block device" "Install librbd/ceph devel"
2735 fi
2736 rbd=no
2737 fi
2738 fi
2739
2740 ##########################################
2741 # libssh2 probe
2742 min_libssh2_version=1.2.8
2743 if test "$libssh2" != "no" ; then
2744 if $pkg_config --atleast-version=$min_libssh2_version libssh2; then
2745 libssh2_cflags=`$pkg_config libssh2 --cflags`
2746 libssh2_libs=`$pkg_config libssh2 --libs`
2747 libssh2=yes
2748 else
2749 if test "$libssh2" = "yes" ; then
2750 error_exit "libssh2 >= $min_libssh2_version required for --enable-libssh2"
2751 fi
2752 libssh2=no
2753 fi
2754 fi
2755
2756 ##########################################
2757 # libssh2_sftp_fsync probe
2758
2759 if test "$libssh2" = "yes"; then
2760 cat > $TMPC <<EOF
2761 #include <stdio.h>
2762 #include <libssh2.h>
2763 #include <libssh2_sftp.h>
2764 int main(void) {
2765 LIBSSH2_SESSION *session;
2766 LIBSSH2_SFTP *sftp;
2767 LIBSSH2_SFTP_HANDLE *sftp_handle;
2768 session = libssh2_session_init ();
2769 sftp = libssh2_sftp_init (session);
2770 sftp_handle = libssh2_sftp_open (sftp, "/", 0, 0);
2771 libssh2_sftp_fsync (sftp_handle);
2772 return 0;
2773 }
2774 EOF
2775 # libssh2_cflags/libssh2_libs defined in previous test.
2776 if compile_prog "$libssh2_cflags" "$libssh2_libs" ; then
2777 QEMU_CFLAGS="-DHAS_LIBSSH2_SFTP_FSYNC $QEMU_CFLAGS"
2778 fi
2779 fi
2780
2781 ##########################################
2782 # linux-aio probe
2783
2784 if test "$linux_aio" != "no" ; then
2785 cat > $TMPC <<EOF
2786 #include <libaio.h>
2787 #include <sys/eventfd.h>
2788 #include <stddef.h>
2789 int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
2790 EOF
2791 if compile_prog "" "-laio" ; then
2792 linux_aio=yes
2793 else
2794 if test "$linux_aio" = "yes" ; then
2795 feature_not_found "linux AIO" "Install libaio devel"
2796 fi
2797 linux_aio=no
2798 fi
2799 fi
2800
2801 ##########################################
2802 # TPM passthrough is only on x86 Linux
2803
2804 if test "$targetos" = Linux && test "$cpu" = i386 -o "$cpu" = x86_64; then
2805 tpm_passthrough=$tpm
2806 else
2807 tpm_passthrough=no
2808 fi
2809
2810 ##########################################
2811 # adjust virtio-blk-data-plane based on linux-aio
2812
2813 if test "$virtio_blk_data_plane" = "yes" -a \
2814 "$linux_aio" != "yes" ; then
2815 error_exit "virtio-blk-data-plane requires Linux AIO, please try --enable-linux-aio"
2816 elif test -z "$virtio_blk_data_plane" ; then
2817 virtio_blk_data_plane=$linux_aio
2818 fi
2819
2820 ##########################################
2821 # attr probe
2822
2823 if test "$attr" != "no" ; then
2824 cat > $TMPC <<EOF
2825 #include <stdio.h>
2826 #include <sys/types.h>
2827 #ifdef CONFIG_LIBATTR
2828 #include <attr/xattr.h>
2829 #else
2830 #include <sys/xattr.h>
2831 #endif
2832 int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
2833 EOF
2834 if compile_prog "" "" ; then
2835 attr=yes
2836 # Older distros have <attr/xattr.h>, and need -lattr:
2837 elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then
2838 attr=yes
2839 LIBS="-lattr $LIBS"
2840 libattr=yes
2841 else
2842 if test "$attr" = "yes" ; then
2843 feature_not_found "ATTR" "Install libc6 or libattr devel"
2844 fi
2845 attr=no
2846 fi
2847 fi
2848
2849 ##########################################
2850 # iovec probe
2851 cat > $TMPC <<EOF
2852 #include <sys/types.h>
2853 #include <sys/uio.h>
2854 #include <unistd.h>
2855 int main(void) { return sizeof(struct iovec); }
2856 EOF
2857 iovec=no
2858 if compile_prog "" "" ; then
2859 iovec=yes
2860 fi
2861
2862 ##########################################
2863 # preadv probe
2864 cat > $TMPC <<EOF
2865 #include <sys/types.h>
2866 #include <sys/uio.h>
2867 #include <unistd.h>
2868 int main(void) { return preadv(0, 0, 0, 0); }
2869 EOF
2870 preadv=no
2871 if compile_prog "" "" ; then
2872 preadv=yes
2873 fi
2874
2875 ##########################################
2876 # fdt probe
2877 # fdt support is mandatory for at least some target architectures,
2878 # so insist on it if we're building those system emulators.
2879 fdt_required=no
2880 for target in $target_list; do
2881 case $target in
2882 aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu)
2883 fdt_required=yes
2884 ;;
2885 esac
2886 done
2887
2888 if test "$fdt_required" = "yes"; then
2889 if test "$fdt" = "no"; then
2890 error_exit "fdt disabled but some requested targets require it." \
2891 "You can turn off fdt only if you also disable all the system emulation" \
2892 "targets which need it (by specifying a cut down --target-list)."
2893 fi
2894 fdt=yes
2895 fi
2896
2897 if test "$fdt" != "no" ; then
2898 fdt_libs="-lfdt"
2899 # explicitly check for libfdt_env.h as it is missing in some stable installs
2900 cat > $TMPC << EOF
2901 #include <libfdt_env.h>
2902 int main(void) { return 0; }
2903 EOF
2904 if compile_prog "" "$fdt_libs" ; then
2905 # system DTC is good - use it
2906 fdt=yes
2907 elif test -d ${source_path}/dtc/libfdt ; then
2908 # have submodule DTC - use it
2909 fdt=yes
2910 dtc_internal="yes"
2911 mkdir -p dtc
2912 if [ "$source_path" != `pwd` ] ; then
2913 symlink "$source_path/dtc/Makefile" "dtc/Makefile"
2914 symlink "$source_path/dtc/scripts" "dtc/scripts"
2915 fi
2916 fdt_cflags="-I\$(SRC_PATH)/dtc/libfdt"
2917 fdt_libs="-L\$(BUILD_DIR)/dtc/libfdt $fdt_libs"
2918 elif test "$fdt" = "yes" ; then
2919 # have neither and want - prompt for system/submodule install
2920 error_exit "DTC (libfdt) not present. Your options:" \
2921 " (1) Preferred: Install the DTC (libfdt) devel package" \
2922 " (2) Fetch the DTC submodule, using:" \
2923 " git submodule update --init dtc"
2924 else
2925 # don't have and don't want
2926 fdt_libs=
2927 fdt=no
2928 fi
2929 fi
2930
2931 libs_softmmu="$libs_softmmu $fdt_libs"
2932
2933 ##########################################
2934 # GLX probe, used by milkymist-tmu2
2935 if test "$glx" != "no" ; then
2936 glx_libs="-lGL -lX11"
2937 cat > $TMPC << EOF
2938 #include <X11/Xlib.h>
2939 #include <GL/gl.h>
2940 #include <GL/glx.h>
2941 int main(void) { glBegin(0); glXQueryVersion(0,0,0); return 0; }
2942 EOF
2943 if compile_prog "" "-lGL -lX11" ; then
2944 glx=yes
2945 else
2946 if test "$glx" = "yes" ; then
2947 feature_not_found "glx" "Install GL devel (e.g. MESA)"
2948 fi
2949 glx_libs=
2950 glx=no
2951 fi
2952 fi
2953
2954 ##########################################
2955 # glusterfs probe
2956 if test "$glusterfs" != "no" ; then
2957 if $pkg_config --atleast-version=3 glusterfs-api; then
2958 glusterfs="yes"
2959 glusterfs_cflags=`$pkg_config --cflags glusterfs-api`
2960 glusterfs_libs=`$pkg_config --libs glusterfs-api`
2961 if $pkg_config --atleast-version=5 glusterfs-api; then
2962 glusterfs_discard="yes"
2963 fi
2964 if $pkg_config --atleast-version=6 glusterfs-api; then
2965 glusterfs_zerofill="yes"
2966 fi
2967 else
2968 if test "$glusterfs" = "yes" ; then
2969 feature_not_found "GlusterFS backend support" "Install glusterfs-api devel"
2970 fi
2971 glusterfs="no"
2972 fi
2973 fi
2974
2975 # Check for inotify functions when we are building linux-user
2976 # emulator. This is done because older glibc versions don't
2977 # have syscall stubs for these implemented. In that case we
2978 # don't provide them even if kernel supports them.
2979 #
2980 inotify=no
2981 cat > $TMPC << EOF
2982 #include <sys/inotify.h>
2983
2984 int
2985 main(void)
2986 {
2987 /* try to start inotify */
2988 return inotify_init();
2989 }
2990 EOF
2991 if compile_prog "" "" ; then
2992 inotify=yes
2993 fi
2994
2995 inotify1=no
2996 cat > $TMPC << EOF
2997 #include <sys/inotify.h>
2998
2999 int
3000 main(void)
3001 {
3002 /* try to start inotify */
3003 return inotify_init1(0);
3004 }
3005 EOF
3006 if compile_prog "" "" ; then
3007 inotify1=yes
3008 fi
3009
3010 # check if utimensat and futimens are supported
3011 utimens=no
3012 cat > $TMPC << EOF
3013 #define _ATFILE_SOURCE
3014 #include <stddef.h>
3015 #include <fcntl.h>
3016 #include <sys/stat.h>
3017
3018 int main(void)
3019 {
3020 utimensat(AT_FDCWD, "foo", NULL, 0);
3021 futimens(0, NULL);
3022 return 0;
3023 }
3024 EOF
3025 if compile_prog "" "" ; then
3026 utimens=yes
3027 fi
3028
3029 # check if pipe2 is there
3030 pipe2=no
3031 cat > $TMPC << EOF
3032 #include <unistd.h>
3033 #include <fcntl.h>
3034
3035 int main(void)
3036 {
3037 int pipefd[2];
3038 return pipe2(pipefd, O_CLOEXEC);
3039 }
3040 EOF
3041 if compile_prog "" "" ; then
3042 pipe2=yes
3043 fi
3044
3045 # check if accept4 is there
3046 accept4=no
3047 cat > $TMPC << EOF
3048 #include <sys/socket.h>
3049 #include <stddef.h>
3050
3051 int main(void)
3052 {
3053 accept4(0, NULL, NULL, SOCK_CLOEXEC);
3054 return 0;
3055 }
3056 EOF
3057 if compile_prog "" "" ; then
3058 accept4=yes
3059 fi
3060
3061 # check if tee/splice is there. vmsplice was added same time.
3062 splice=no
3063 cat > $TMPC << EOF
3064 #include <unistd.h>
3065 #include <fcntl.h>
3066 #include <limits.h>
3067
3068 int main(void)
3069 {
3070 int len, fd = 0;
3071 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
3072 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
3073 return 0;
3074 }
3075 EOF
3076 if compile_prog "" "" ; then
3077 splice=yes
3078 fi
3079
3080 ##########################################
3081 # signalfd probe
3082 signalfd="no"
3083 cat > $TMPC << EOF
3084 #include <unistd.h>
3085 #include <sys/syscall.h>
3086 #include <signal.h>
3087 int main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
3088 EOF
3089
3090 if compile_prog "" "" ; then
3091 signalfd=yes
3092 fi
3093
3094 # check if eventfd is supported
3095 eventfd=no
3096 cat > $TMPC << EOF
3097 #include <sys/eventfd.h>
3098
3099 int main(void)
3100 {
3101 return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
3102 }
3103 EOF
3104 if compile_prog "" "" ; then
3105 eventfd=yes
3106 fi
3107
3108 # check for fallocate
3109 fallocate=no
3110 cat > $TMPC << EOF
3111 #include <fcntl.h>
3112
3113 int main(void)
3114 {
3115 fallocate(0, 0, 0, 0);
3116 return 0;
3117 }
3118 EOF
3119 if compile_prog "" "" ; then
3120 fallocate=yes
3121 fi
3122
3123 # check for fallocate hole punching
3124 fallocate_punch_hole=no
3125 cat > $TMPC << EOF
3126 #include <fcntl.h>
3127 #include <linux/falloc.h>
3128
3129 int main(void)
3130 {
3131 fallocate(0, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, 0, 0);
3132 return 0;
3133 }
3134 EOF
3135 if compile_prog "" "" ; then
3136 fallocate_punch_hole=yes
3137 fi
3138
3139 # check for sync_file_range
3140 sync_file_range=no
3141 cat > $TMPC << EOF
3142 #include <fcntl.h>
3143
3144 int main(void)
3145 {
3146 sync_file_range(0, 0, 0, 0);
3147 return 0;
3148 }
3149 EOF
3150 if compile_prog "" "" ; then
3151 sync_file_range=yes
3152 fi
3153
3154 # check for linux/fiemap.h and FS_IOC_FIEMAP
3155 fiemap=no
3156 cat > $TMPC << EOF
3157 #include <sys/ioctl.h>
3158 #include <linux/fs.h>
3159 #include <linux/fiemap.h>
3160
3161 int main(void)
3162 {
3163 ioctl(0, FS_IOC_FIEMAP, 0);
3164 return 0;
3165 }
3166 EOF
3167 if compile_prog "" "" ; then
3168 fiemap=yes
3169 fi
3170
3171 # check for dup3
3172 dup3=no
3173 cat > $TMPC << EOF
3174 #include <unistd.h>
3175
3176 int main(void)
3177 {
3178 dup3(0, 0, 0);
3179 return 0;
3180 }
3181 EOF
3182 if compile_prog "" "" ; then
3183 dup3=yes
3184 fi
3185
3186 # check for ppoll support
3187 ppoll=no
3188 cat > $TMPC << EOF
3189 #include <poll.h>
3190
3191 int main(void)
3192 {
3193 struct pollfd pfd = { .fd = 0, .events = 0, .revents = 0 };
3194 ppoll(&pfd, 1, 0, 0);
3195 return 0;
3196 }
3197 EOF
3198 if compile_prog "" "" ; then
3199 ppoll=yes
3200 fi
3201
3202 # check for prctl(PR_SET_TIMERSLACK , ... ) support
3203 prctl_pr_set_timerslack=no
3204 cat > $TMPC << EOF
3205 #include <sys/prctl.h>
3206
3207 int main(void)
3208 {
3209 prctl(PR_SET_TIMERSLACK, 1, 0, 0, 0);
3210 return 0;
3211 }
3212 EOF
3213 if compile_prog "" "" ; then
3214 prctl_pr_set_timerslack=yes
3215 fi
3216
3217 # check for epoll support
3218 epoll=no
3219 cat > $TMPC << EOF
3220 #include <sys/epoll.h>
3221
3222 int main(void)
3223 {
3224 epoll_create(0);
3225 return 0;
3226 }
3227 EOF
3228 if compile_prog "" "" ; then
3229 epoll=yes
3230 fi
3231
3232 # epoll_create1 and epoll_pwait are later additions
3233 # so we must check separately for their presence
3234 epoll_create1=no
3235 cat > $TMPC << EOF
3236 #include <sys/epoll.h>
3237
3238 int main(void)
3239 {
3240 /* Note that we use epoll_create1 as a value, not as
3241 * a function being called. This is necessary so that on
3242 * old SPARC glibc versions where the function was present in
3243 * the library but not declared in the header file we will
3244 * fail the configure check. (Otherwise we will get a compiler
3245 * warning but not an error, and will proceed to fail the
3246 * qemu compile where we compile with -Werror.)
3247 */
3248 return (int)(uintptr_t)&epoll_create1;
3249 }
3250 EOF
3251 if compile_prog "" "" ; then
3252 epoll_create1=yes
3253 fi
3254
3255 epoll_pwait=no
3256 cat > $TMPC << EOF
3257 #include <sys/epoll.h>
3258
3259 int main(void)
3260 {
3261 epoll_pwait(0, 0, 0, 0, 0);
3262 return 0;
3263 }
3264 EOF
3265 if compile_prog "" "" ; then
3266 epoll_pwait=yes
3267 fi
3268
3269 # check for sendfile support
3270 sendfile=no
3271 cat > $TMPC << EOF
3272 #include <sys/sendfile.h>
3273
3274 int main(void)
3275 {
3276 return sendfile(0, 0, 0, 0);
3277 }
3278 EOF
3279 if compile_prog "" "" ; then
3280 sendfile=yes
3281 fi
3282
3283 # Check if tools are available to build documentation.
3284 if test "$docs" != "no" ; then
3285 if has makeinfo && has pod2man; then
3286 docs=yes
3287 else
3288 if test "$docs" = "yes" ; then
3289 feature_not_found "docs" "Install texinfo and Perl/perl-podlators"
3290 fi
3291 docs=no
3292 fi
3293 fi
3294
3295 # Search for bswap_32 function
3296 byteswap_h=no
3297 cat > $TMPC << EOF
3298 #include <byteswap.h>
3299 int main(void) { return bswap_32(0); }
3300 EOF
3301 if compile_prog "" "" ; then
3302 byteswap_h=yes
3303 fi
3304
3305 # Search for bswap32 function
3306 bswap_h=no
3307 cat > $TMPC << EOF
3308 #include <sys/endian.h>
3309 #include <sys/types.h>
3310 #include <machine/bswap.h>
3311 int main(void) { return bswap32(0); }
3312 EOF
3313 if compile_prog "" "" ; then
3314 bswap_h=yes
3315 fi
3316
3317 ##########################################
3318 # Do we have libiscsi
3319 # We check for iscsi_write16_sync() to make sure we have a
3320 # at least version 1.4.0 of libiscsi.
3321 if test "$libiscsi" != "no" ; then
3322 cat > $TMPC << EOF
3323 #include <stdio.h>
3324 #include <iscsi/iscsi.h>
3325 int main(void) { iscsi_write16_sync(NULL,0,0,NULL,0,0,0,0,0,0,0); return 0; }
3326 EOF
3327 if $pkg_config --atleast-version=1.7.0 libiscsi; then
3328 libiscsi="yes"
3329 libiscsi_cflags=$($pkg_config --cflags libiscsi)
3330 libiscsi_libs=$($pkg_config --libs libiscsi)
3331 elif compile_prog "" "-liscsi" ; then
3332 libiscsi="yes"
3333 libiscsi_libs="-liscsi"
3334 else
3335 if test "$libiscsi" = "yes" ; then
3336 feature_not_found "libiscsi" "Install libiscsi devel"
3337 fi
3338 libiscsi="no"
3339 fi
3340 fi
3341
3342 # We also need to know the API version because there was an
3343 # API change from 1.4.0 to 1.5.0.
3344 if test "$libiscsi" = "yes"; then
3345 cat >$TMPC <<EOF
3346 #include <iscsi/iscsi.h>
3347 int main(void)
3348 {
3349 iscsi_read10_task(0, 0, 0, 0, 0, 0, 0);
3350 return 0;
3351 }
3352 EOF
3353 if compile_prog "" "-liscsi"; then
3354 libiscsi_version="1.4.0"
3355 fi
3356 fi
3357
3358 ##########################################
3359 # Do we need libm
3360 cat > $TMPC << EOF
3361 #include <math.h>
3362 int main(void) { return isnan(sin(0.0)); }
3363 EOF
3364 if compile_prog "" "" ; then
3365 :
3366 elif compile_prog "" "-lm" ; then
3367 LIBS="-lm $LIBS"
3368 libs_qga="-lm $libs_qga"
3369 else
3370 error_exit "libm check failed"
3371 fi
3372
3373 ##########################################
3374 # Do we need librt
3375 # uClibc provides 2 versions of clock_gettime(), one with realtime
3376 # support and one without. This means that the clock_gettime() don't
3377 # need -lrt. We still need it for timer_create() so we check for this
3378 # function in addition.
3379 cat > $TMPC <<EOF
3380 #include <signal.h>
3381 #include <time.h>
3382 int main(void) {
3383 timer_create(CLOCK_REALTIME, NULL, NULL);
3384 return clock_gettime(CLOCK_REALTIME, NULL);
3385 }
3386 EOF
3387
3388 if compile_prog "" "" ; then
3389 :
3390 # we need pthread for static linking. use previous pthread test result
3391 elif compile_prog "" "-lrt $pthread_lib" ; then
3392 LIBS="-lrt $LIBS"
3393 libs_qga="-lrt $libs_qga"
3394 fi
3395
3396 if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
3397 "$aix" != "yes" -a "$haiku" != "yes" ; then
3398 libs_softmmu="-lutil $libs_softmmu"
3399 fi
3400
3401 ##########################################
3402 # spice probe
3403 if test "$spice" != "no" ; then
3404 cat > $TMPC << EOF
3405 #include <spice.h>
3406 int main(void) { spice_server_new(); return 0; }
3407 EOF
3408 spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
3409 spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
3410 if $pkg_config --atleast-version=0.12.0 spice-server && \
3411 $pkg_config --atleast-version=0.12.3 spice-protocol && \
3412 compile_prog "$spice_cflags" "$spice_libs" ; then
3413 spice="yes"
3414 libs_softmmu="$libs_softmmu $spice_libs"
3415 QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags"
3416 spice_protocol_version=$($pkg_config --modversion spice-protocol)
3417 spice_server_version=$($pkg_config --modversion spice-server)
3418 else
3419 if test "$spice" = "yes" ; then
3420 feature_not_found "spice" "Install spice-server and spice-protocol devel"
3421 fi
3422 spice="no"
3423 fi
3424 fi
3425
3426 # check for libcacard for smartcard support
3427 smartcard_cflags=""
3428 # TODO - what's the minimal nss version we support?
3429 if test "$smartcard_nss" != "no"; then
3430 cat > $TMPC << EOF
3431 #include <pk11pub.h>
3432 int main(void) { PK11_FreeSlot(0); return 0; }
3433 EOF
3434 smartcard_includes="-I\$(SRC_PATH)/libcacard"
3435 libcacard_libs="$($pkg_config --libs nss 2>/dev/null) $glib_libs"
3436 libcacard_cflags="$($pkg_config --cflags nss 2>/dev/null) $glib_cflags"
3437 test_cflags="$libcacard_cflags"
3438 # The header files in nss < 3.13.3 have a bug which causes them to
3439 # emit a warning. If we're going to compile QEMU with -Werror, then
3440 # test that the headers don't have this bug. Otherwise we would pass
3441 # the configure test but fail to compile QEMU later.
3442 if test "$werror" = "yes"; then
3443 test_cflags="-Werror $test_cflags"
3444 fi
3445 if test -n "$libtool" &&
3446 $pkg_config --atleast-version=3.12.8 nss && \
3447 compile_prog "$test_cflags" "$libcacard_libs"; then
3448 smartcard_nss="yes"
3449 QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags"
3450 QEMU_INCLUDES="$QEMU_INCLUDES $smartcard_includes"
3451 libs_softmmu="$libcacard_libs $libs_softmmu"
3452 else
3453 if test "$smartcard_nss" = "yes"; then
3454 feature_not_found "nss"
3455 fi
3456 smartcard_nss="no"
3457 fi
3458 fi
3459
3460 # check for libusb
3461 if test "$libusb" != "no" ; then
3462 if $pkg_config --atleast-version=1.0.13 libusb-1.0; then
3463 libusb="yes"
3464 libusb_cflags=$($pkg_config --cflags libusb-1.0)
3465 libusb_libs=$($pkg_config --libs libusb-1.0)
3466 QEMU_CFLAGS="$QEMU_CFLAGS $libusb_cflags"
3467 libs_softmmu="$libs_softmmu $libusb_libs"
3468 else
3469 if test "$libusb" = "yes"; then
3470 feature_not_found "libusb" "Install libusb devel"
3471 fi
3472 libusb="no"
3473 fi
3474 fi
3475
3476 # check for usbredirparser for usb network redirection support
3477 if test "$usb_redir" != "no" ; then
3478 if $pkg_config --atleast-version=0.6 libusbredirparser-0.5; then
3479 usb_redir="yes"
3480 usb_redir_cflags=$($pkg_config --cflags libusbredirparser-0.5)
3481 usb_redir_libs=$($pkg_config --libs libusbredirparser-0.5)
3482 QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags"
3483 libs_softmmu="$libs_softmmu $usb_redir_libs"
3484 else
3485 if test "$usb_redir" = "yes"; then
3486 feature_not_found "usb-redir" "Install usbredir devel"
3487 fi
3488 usb_redir="no"
3489 fi
3490 fi
3491
3492 ##########################################
3493 # check if we have VSS SDK headers for win
3494
3495 if test "$mingw32" = "yes" -a "$guest_agent" != "no" -a "$vss_win32_sdk" != "no" ; then
3496 case "$vss_win32_sdk" in
3497 "") vss_win32_include="-I$source_path" ;;
3498 *\ *) # The SDK is installed in "Program Files" by default, but we cannot
3499 # handle path with spaces. So we symlink the headers into ".sdk/vss".
3500 vss_win32_include="-I$source_path/.sdk/vss"
3501 symlink "$vss_win32_sdk/inc" "$source_path/.sdk/vss/inc"
3502 ;;
3503 *) vss_win32_include="-I$vss_win32_sdk"
3504 esac
3505 cat > $TMPC << EOF
3506 #define __MIDL_user_allocate_free_DEFINED__
3507 #include <inc/win2003/vss.h>
3508 int main(void) { return VSS_CTX_BACKUP; }
3509 EOF
3510 if compile_prog "$vss_win32_include" "" ; then
3511 guest_agent_with_vss="yes"
3512 QEMU_CFLAGS="$QEMU_CFLAGS $vss_win32_include"
3513 libs_qga="-lole32 -loleaut32 -lshlwapi -luuid -lstdc++ -Wl,--enable-stdcall-fixup $libs_qga"
3514 else
3515 if test "$vss_win32_sdk" != "" ; then
3516 echo "ERROR: Please download and install Microsoft VSS SDK:"
3517 echo "ERROR: http://www.microsoft.com/en-us/download/details.aspx?id=23490"
3518 echo "ERROR: On POSIX-systems, you can extract the SDK headers by:"
3519 echo "ERROR: scripts/extract-vsssdk-headers setup.exe"
3520 echo "ERROR: The headers are extracted in the directory \`inc'."
3521 feature_not_found "VSS support"
3522 fi
3523 guest_agent_with_vss="no"
3524 fi
3525 fi
3526
3527 ##########################################
3528 # lookup Windows platform SDK (if not specified)
3529 # The SDK is needed only to build .tlb (type library) file of guest agent
3530 # VSS provider from the source. It is usually unnecessary because the
3531 # pre-compiled .tlb file is included.
3532
3533 if test "$mingw32" = "yes" -a "$guest_agent" != "no" -a "$guest_agent_with_vss" = "yes" ; then
3534 if test -z "$win_sdk"; then
3535 programfiles="$PROGRAMFILES"
3536 test -n "$PROGRAMW6432" && programfiles="$PROGRAMW6432"
3537 if test -n "$programfiles"; then
3538 win_sdk=$(ls -d "$programfiles/Microsoft SDKs/Windows/v"* | tail -1) 2>/dev/null
3539 else
3540 feature_not_found "Windows SDK"
3541 fi
3542 elif test "$win_sdk" = "no"; then
3543 win_sdk=""
3544 fi
3545 fi
3546
3547 ##########################################
3548
3549 ##########################################
3550 # check if we have fdatasync
3551
3552 fdatasync=no
3553 cat > $TMPC << EOF
3554 #include <unistd.h>
3555 int main(void) {
3556 #if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
3557 return fdatasync(0);
3558 #else
3559 #error Not supported
3560 #endif
3561 }
3562 EOF
3563 if compile_prog "" "" ; then
3564 fdatasync=yes
3565 fi
3566
3567 ##########################################
3568 # check if we have madvise
3569
3570 madvise=no
3571 cat > $TMPC << EOF
3572 #include <sys/types.h>
3573 #include <sys/mman.h>
3574 #include <stddef.h>
3575 int main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
3576 EOF
3577 if compile_prog "" "" ; then
3578 madvise=yes
3579 fi
3580
3581 ##########################################
3582 # check if we have posix_madvise
3583
3584 posix_madvise=no
3585 cat > $TMPC << EOF
3586 #include <sys/mman.h>
3587 #include <stddef.h>
3588 int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
3589 EOF
3590 if compile_prog "" "" ; then
3591 posix_madvise=yes
3592 fi
3593
3594 ##########################################
3595 # check if we have usable SIGEV_THREAD_ID
3596
3597 sigev_thread_id=no
3598 cat > $TMPC << EOF
3599 #include <signal.h>
3600 int main(void) {
3601 struct sigevent ev;
3602 ev.sigev_notify = SIGEV_THREAD_ID;
3603 ev._sigev_un._tid = 0;
3604 asm volatile("" : : "g"(&ev));
3605 return 0;
3606 }
3607 EOF
3608 if compile_prog "" "" ; then
3609 sigev_thread_id=yes
3610 fi
3611
3612 ##########################################
3613 # check if trace backend exists
3614
3615 $python "$source_path/scripts/tracetool.py" "--backend=$trace_backend" --check-backend > /dev/null 2> /dev/null
3616 if test "$?" -ne 0 ; then
3617 error_exit "invalid trace backend" \
3618 "Please choose a supported trace backend."
3619 fi
3620
3621 ##########################################
3622 # For 'ust' backend, test if ust headers are present
3623 if test "$trace_backend" = "ust"; then
3624 cat > $TMPC << EOF
3625 #include <lttng/tracepoint.h>
3626 int main(void) { return 0; }
3627 EOF
3628 if compile_prog "" "" ; then
3629 if $pkg_config lttng-ust --exists; then
3630 lttng_ust_libs=`$pkg_config --libs lttng-ust`
3631 else
3632 lttng_ust_libs="-llttng-ust"
3633 fi
3634 if $pkg_config liburcu-bp --exists; then
3635 urcu_bp_libs=`$pkg_config --libs liburcu-bp`
3636 else
3637 urcu_bp_libs="-lurcu-bp"
3638 fi
3639
3640 LIBS="$lttng_ust_libs $urcu_bp_libs $LIBS"
3641 libs_qga="$lttng_ust_libs $urcu_bp_libs $libs_qga"
3642 else
3643 error_exit "Trace backend 'ust' missing lttng-ust header files"
3644 fi
3645 fi
3646
3647 ##########################################
3648 # For 'dtrace' backend, test if 'dtrace' command is present
3649 if test "$trace_backend" = "dtrace"; then
3650 if ! has 'dtrace' ; then
3651 error_exit "dtrace command is not found in PATH $PATH"
3652 fi
3653 trace_backend_stap="no"
3654 if has 'stap' ; then
3655 trace_backend_stap="yes"
3656 fi
3657 fi
3658
3659 ##########################################
3660 # check and set a backend for coroutine
3661
3662 # We prefer ucontext, but it's not always possible. The fallback
3663 # is sigcontext. gthread is not selectable except explicitly, because
3664 # it is not functional enough to run QEMU proper. (It is occasionally
3665 # useful for debugging purposes.) On Windows the only valid backend
3666 # is the Windows-specific one.
3667
3668 ucontext_works=no
3669 if test "$darwin" != "yes"; then
3670 cat > $TMPC << EOF
3671 #include <ucontext.h>
3672 #ifdef __stub_makecontext
3673 #error Ignoring glibc stub makecontext which will always fail
3674 #endif
3675 int main(void) { makecontext(0, 0, 0); return 0; }
3676 EOF
3677 if compile_prog "" "" ; then
3678 ucontext_works=yes
3679 fi
3680 fi
3681
3682 if test "$coroutine" = ""; then
3683 if test "$mingw32" = "yes"; then
3684 coroutine=win32
3685 elif test "$ucontext_works" = "yes"; then
3686 coroutine=ucontext
3687 else
3688 coroutine=sigaltstack
3689 fi
3690 else
3691 case $coroutine in
3692 windows)
3693 if test "$mingw32" != "yes"; then
3694 error_exit "'windows' coroutine backend only valid for Windows"
3695 fi
3696 # Unfortunately the user visible backend name doesn't match the
3697 # coroutine-*.c filename for this case, so we have to adjust it here.
3698 coroutine=win32
3699 ;;
3700 ucontext)
3701 if test "$ucontext_works" != "yes"; then
3702 feature_not_found "ucontext"
3703 fi
3704 ;;
3705 gthread|sigaltstack)
3706 if test "$mingw32" = "yes"; then
3707 error_exit "only the 'windows' coroutine backend is valid for Windows"
3708 fi
3709 ;;
3710 *)
3711 error_exit "unknown coroutine backend $coroutine"
3712 ;;
3713 esac
3714 fi
3715
3716 if test "$coroutine_pool" = ""; then
3717 if test "$coroutine" = "gthread"; then
3718 coroutine_pool=no
3719 else
3720 coroutine_pool=yes
3721 fi
3722 fi
3723 if test "$coroutine" = "gthread" -a "$coroutine_pool" = "yes"; then
3724 error_exit "'gthread' coroutine backend does not support pool (use --disable-coroutine-pool)"
3725 fi
3726
3727 ##########################################
3728 # check if we have open_by_handle_at
3729
3730 open_by_handle_at=no
3731 cat > $TMPC << EOF
3732 #include <fcntl.h>
3733 #if !defined(AT_EMPTY_PATH)
3734 # error missing definition
3735 #else
3736 int main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); }
3737 #endif
3738 EOF
3739 if compile_prog "" "" ; then
3740 open_by_handle_at=yes
3741 fi
3742
3743 ########################################
3744 # check if we have linux/magic.h
3745
3746 linux_magic_h=no
3747 cat > $TMPC << EOF
3748 #include <linux/magic.h>
3749 int main(void) {
3750 return 0;
3751 }
3752 EOF
3753 if compile_prog "" "" ; then
3754 linux_magic_h=yes
3755 fi
3756
3757 ########################################
3758 # check whether we can disable warning option with a pragma (this is needed
3759 # to silence warnings in the headers of some versions of external libraries).
3760 # This test has to be compiled with -Werror as otherwise an unknown pragma is
3761 # only a warning.
3762 #
3763 # If we can't selectively disable warning in the code, disable -Werror so that
3764 # the build doesn't fail anyway.
3765
3766 pragma_disable_unused_but_set=no
3767 cat > $TMPC << EOF
3768 #pragma GCC diagnostic push
3769 #pragma GCC diagnostic ignored "-Wunused-but-set-variable"
3770 #pragma GCC diagnostic ignored "-Wstrict-prototypes"
3771 #pragma GCC diagnostic pop
3772
3773 int main(void) {
3774 return 0;
3775 }
3776 EOF
3777 if compile_prog "-Werror" "" ; then
3778 pragma_diagnostic_available=yes
3779 else
3780 werror=no
3781 fi
3782
3783 ########################################
3784 # check if we have valgrind/valgrind.h and valgrind/memcheck.h
3785
3786 valgrind_h=no
3787 cat > $TMPC << EOF
3788 #include <valgrind/valgrind.h>
3789 #include <valgrind/memcheck.h>
3790 int main(void) {
3791 return 0;
3792 }
3793 EOF
3794 if compile_prog "" "" ; then
3795 valgrind_h=yes
3796 fi
3797
3798 ########################################
3799 # check if environ is declared
3800
3801 has_environ=no
3802 cat > $TMPC << EOF
3803 #include <unistd.h>
3804 int main(void) {
3805 environ = 0;
3806 return 0;
3807 }
3808 EOF
3809 if compile_prog "" "" ; then
3810 has_environ=yes
3811 fi
3812
3813 ########################################
3814 # check if cpuid.h is usable.
3815
3816 cpuid_h=no
3817 cat > $TMPC << EOF
3818 #include <cpuid.h>
3819 int main(void) {
3820 unsigned a, b, c, d;
3821 int max = __get_cpuid_max(0, 0);
3822
3823 if (max >= 1) {
3824 __cpuid(1, a, b, c, d);
3825 }
3826
3827 if (max >= 7) {
3828 __cpuid_count(7, 0, a, b, c, d);
3829 }
3830
3831 return 0;
3832 }
3833 EOF
3834 if compile_prog "" "" ; then
3835 cpuid_h=yes
3836 fi
3837
3838 ########################################
3839 # check if __[u]int128_t is usable.
3840
3841 int128=no
3842 cat > $TMPC << EOF
3843 #if defined(__clang_major__) && defined(__clang_minor__)
3844 # if ((__clang_major__ < 3) || (__clang_major__ == 3) && (__clang_minor__ < 2))
3845 # error __int128_t does not work in CLANG before 3.2
3846 # endif
3847 #endif
3848 __int128_t a;
3849 __uint128_t b;
3850 int main (void) {
3851 a = a + b;
3852 b = a * b;
3853 a = a * a;
3854 return 0;
3855 }
3856 EOF
3857 if compile_prog "" "" ; then
3858 int128=yes
3859 fi
3860
3861 ########################################
3862 # check if getauxval is available.
3863
3864 getauxval=no
3865 cat > $TMPC << EOF
3866 #include <sys/auxv.h>
3867 int main(void) {
3868 return getauxval(AT_HWCAP) == 0;
3869 }
3870 EOF
3871 if compile_prog "" "" ; then
3872 getauxval=yes
3873 fi
3874
3875 ##########################################
3876 # End of CC checks
3877 # After here, no more $cc or $ld runs
3878
3879 if test "$gcov" = "yes" ; then
3880 CFLAGS="-fprofile-arcs -ftest-coverage -g $CFLAGS"
3881 LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS"
3882 elif test "$debug" = "no" ; then
3883 CFLAGS="-O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $CFLAGS"
3884 fi
3885
3886 ##########################################
3887 # Do we have libnfs
3888 if test "$libnfs" != "no" ; then
3889 if $pkg_config --atleast-version=1.9.3 libnfs; then
3890 libnfs="yes"
3891 libnfs_libs=$($pkg_config --libs libnfs)
3892 LIBS="$LIBS $libnfs_libs"
3893 else
3894 if test "$libnfs" = "yes" ; then
3895 feature_not_found "libnfs"
3896 fi
3897 libnfs="no"
3898 fi
3899 fi
3900
3901 # Disable zero malloc errors for official releases unless explicitly told to
3902 # enable/disable
3903 if test -z "$zero_malloc" ; then
3904 if test "$z_version" = "50" ; then
3905 zero_malloc="no"
3906 else
3907 zero_malloc="yes"
3908 fi
3909 fi
3910
3911 # Now we've finished running tests it's OK to add -Werror to the compiler flags
3912 if test "$werror" = "yes"; then
3913 QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
3914 fi
3915
3916 if test "$solaris" = "no" ; then
3917 if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
3918 LDFLAGS="-Wl,--warn-common $LDFLAGS"
3919 fi
3920 fi
3921
3922 # test if pod2man has --utf8 option
3923 if pod2man --help | grep -q utf8; then
3924 POD2MAN="pod2man --utf8"
3925 else
3926 POD2MAN="pod2man"
3927 fi
3928
3929 # Use ASLR, no-SEH and DEP if available
3930 if test "$mingw32" = "yes" ; then
3931 for flag in --dynamicbase --no-seh --nxcompat; do
3932 if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
3933 LDFLAGS="-Wl,$flag $LDFLAGS"
3934 fi
3935 done
3936 fi
3937
3938 qemu_confdir=$sysconfdir$confsuffix
3939 qemu_moddir=$libdir$confsuffix
3940 qemu_datadir=$datadir$confsuffix
3941 qemu_localedir="$datadir/locale"
3942
3943 tools=""
3944 if test "$want_tools" = "yes" ; then
3945 tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
3946 if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
3947 tools="qemu-nbd\$(EXESUF) $tools"
3948 fi
3949 fi
3950 if test "$softmmu" = yes ; then
3951 if test "$virtfs" != no ; then
3952 if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then
3953 virtfs=yes
3954 tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
3955 else
3956 if test "$virtfs" = yes; then
3957 error_exit "VirtFS is supported only on Linux and requires libcap-devel and libattr-devel"
3958 fi
3959 virtfs=no
3960 fi
3961 fi
3962 fi
3963 if [ "$guest_agent" != "no" ]; then
3964 if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32" = "yes" ] ; then
3965 tools="qemu-ga\$(EXESUF) $tools"
3966 if [ "$mingw32" = "yes" -a "$guest_agent_with_vss" = "yes" ]; then
3967 tools="qga/vss-win32/qga-vss.dll qga/vss-win32/qga-vss.tlb $tools"
3968 fi
3969 guest_agent=yes
3970 elif [ "$guest_agent" != yes ]; then
3971 guest_agent=no
3972 else
3973 error_exit "Guest agent is not supported on this platform"
3974 fi
3975 fi
3976
3977 # Mac OS X ships with a broken assembler
3978 roms=
3979 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
3980 "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
3981 "$softmmu" = yes ; then
3982 roms="optionrom"
3983 fi
3984 if test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then
3985 roms="$roms spapr-rtas"
3986 fi
3987
3988 if test "$cpu" = "s390x" ; then
3989 roms="$roms s390-ccw"
3990 fi
3991
3992 # Probe for the need for relocating the user-only binary.
3993 if test "$pie" = "no" ; then
3994 textseg_addr=
3995 case "$cpu" in
3996 arm | hppa | i386 | m68k | ppc | ppc64 | s390* | sparc | sparc64 | x86_64 | x32)
3997 textseg_addr=0x60000000
3998 ;;
3999 mips)
4000 textseg_addr=0x400000
4001 ;;
4002 esac
4003 if [ -n "$textseg_addr" ]; then
4004 cat > $TMPC <<EOF
4005 int main(void) { return 0; }
4006 EOF
4007 textseg_ldflags="-Wl,-Ttext-segment=$textseg_addr"
4008 if ! compile_prog "" "$textseg_ldflags"; then
4009 # In case ld does not support -Ttext-segment, edit the default linker
4010 # script via sed to set the .text start addr. This is needed on FreeBSD
4011 # at least.
4012 $ld --verbose | sed \
4013 -e '1,/==================================================/d' \
4014 -e '/==================================================/,$d' \
4015 -e "s/[.] = [0-9a-fx]* [+] SIZEOF_HEADERS/. = $textseg_addr + SIZEOF_HEADERS/" \
4016 -e "s/__executable_start = [0-9a-fx]*/__executable_start = $textseg_addr/" > config-host.ld
4017 textseg_ldflags="-Wl,-T../config-host.ld"
4018 fi
4019 fi
4020 fi
4021
4022 # add pixman flags after all config tests are done
4023 QEMU_CFLAGS="$QEMU_CFLAGS $pixman_cflags $fdt_cflags"
4024 libs_softmmu="$libs_softmmu $pixman_libs"
4025
4026 echo "Install prefix $prefix"
4027 echo "BIOS directory `eval echo $qemu_datadir`"
4028 echo "binary directory `eval echo $bindir`"
4029 echo "library directory `eval echo $libdir`"
4030 echo "module directory `eval echo $qemu_moddir`"
4031 echo "libexec directory `eval echo $libexecdir`"
4032 echo "include directory `eval echo $includedir`"
4033 echo "config directory `eval echo $sysconfdir`"
4034 if test "$mingw32" = "no" ; then
4035 echo "local state directory `eval echo $local_statedir`"
4036 echo "Manual directory `eval echo $mandir`"
4037 echo "ELF interp prefix $interp_prefix"
4038 else
4039 echo "local state directory queried at runtime"
4040 echo "Windows SDK $win_sdk"
4041 fi
4042 echo "Source path $source_path"
4043 echo "C compiler $cc"
4044 echo "Host C compiler $host_cc"
4045 echo "C++ compiler $cxx"
4046 echo "Objective-C compiler $objcc"
4047 echo "ARFLAGS $ARFLAGS"
4048 echo "CFLAGS $CFLAGS"
4049 echo "QEMU_CFLAGS $QEMU_CFLAGS"
4050 echo "LDFLAGS $LDFLAGS"
4051 echo "make $make"
4052 echo "install $install"
4053 echo "python $python"
4054 if test "$slirp" = "yes" ; then
4055 echo "smbd $smbd"
4056 fi
4057 echo "module support $modules"
4058 echo "host CPU $cpu"
4059 echo "host big endian $bigendian"
4060 echo "target list $target_list"
4061 echo "tcg debug enabled $debug_tcg"
4062 echo "gprof enabled $gprof"
4063 echo "sparse enabled $sparse"
4064 echo "strip binaries $strip_opt"
4065 echo "profiler $profiler"
4066 echo "static build $static"
4067 echo "-Werror enabled $werror"
4068 if test "$darwin" = "yes" ; then
4069 echo "Cocoa support $cocoa"
4070 fi
4071 echo "pixman $pixman"
4072 echo "SDL support $sdl"
4073 echo "GTK support $gtk"
4074 echo "curses support $curses"
4075 echo "curl support $curl"
4076 echo "mingw32 support $mingw32"
4077 echo "Audio drivers $audio_drv_list"
4078 echo "Block whitelist (rw) $block_drv_rw_whitelist"
4079 echo "Block whitelist (ro) $block_drv_ro_whitelist"
4080 echo "VirtFS support $virtfs"
4081 echo "VNC support $vnc"
4082 if test "$vnc" = "yes" ; then
4083 echo "VNC TLS support $vnc_tls"
4084 echo "VNC SASL support $vnc_sasl"
4085 echo "VNC JPEG support $vnc_jpeg"
4086 echo "VNC PNG support $vnc_png"
4087 echo "VNC WS support $vnc_ws"
4088 fi
4089 if test -n "$sparc_cpu"; then
4090 echo "Target Sparc Arch $sparc_cpu"
4091 fi
4092 echo "xen support $xen"
4093 echo "brlapi support $brlapi"
4094 echo "bluez support $bluez"
4095 echo "Documentation $docs"
4096 [ ! -z "$uname_release" ] && \
4097 echo "uname -r $uname_release"
4098 echo "GUEST_BASE $guest_base"
4099 echo "PIE $pie"
4100 echo "vde support $vde"
4101 echo "netmap support $netmap"
4102 echo "Linux AIO support $linux_aio"
4103 echo "ATTR/XATTR support $attr"
4104 echo "Install blobs $blobs"
4105 echo "KVM support $kvm"
4106 echo "RDMA support $rdma"
4107 echo "TCG interpreter $tcg_interpreter"
4108 echo "fdt support $fdt"
4109 echo "preadv support $preadv"
4110 echo "fdatasync $fdatasync"
4111 echo "madvise $madvise"
4112 echo "posix_madvise $posix_madvise"
4113 echo "sigev_thread_id $sigev_thread_id"
4114 echo "uuid support $uuid"
4115 echo "libcap-ng support $cap_ng"
4116 echo "vhost-net support $vhost_net"
4117 echo "vhost-scsi support $vhost_scsi"
4118 echo "Trace backend $trace_backend"
4119 echo "Trace output file $trace_file-<pid>"
4120 if test "$spice" = "yes"; then
4121 echo "spice support $spice ($spice_protocol_version/$spice_server_version)"
4122 else
4123 echo "spice support $spice"
4124 fi
4125 echo "rbd support $rbd"
4126 echo "xfsctl support $xfs"
4127 echo "nss used $smartcard_nss"
4128 echo "libusb $libusb"
4129 echo "usb net redir $usb_redir"
4130 echo "GLX support $glx"
4131 if test "$libiscsi_version" = "1.4.0"; then
4132 echo "libiscsi support $libiscsi (1.4.0)"
4133 else
4134 echo "libiscsi support $libiscsi"
4135 fi
4136 echo "libnfs support $libnfs"
4137 echo "build guest agent $guest_agent"
4138 echo "QGA VSS support $guest_agent_with_vss"
4139 echo "seccomp support $seccomp"
4140 echo "coroutine backend $coroutine"
4141 echo "coroutine pool $coroutine_pool"
4142 echo "GlusterFS support $glusterfs"
4143 echo "virtio-blk-data-plane $virtio_blk_data_plane"
4144 echo "gcov $gcov_tool"
4145 echo "gcov enabled $gcov"
4146 echo "TPM support $tpm"
4147 echo "libssh2 support $libssh2"
4148 echo "TPM passthrough $tpm_passthrough"
4149 echo "QOM debugging $qom_cast_debug"
4150 echo "vhdx $vhdx"
4151 echo "Quorum $quorum"
4152 echo "lzo support $lzo"
4153 echo "snappy support $snappy"
4154
4155 if test "$sdl_too_old" = "yes"; then
4156 echo "-> Your SDL version is too old - please upgrade to have SDL support"
4157 fi
4158
4159 config_host_mak="config-host.mak"
4160
4161 echo "# Automatically generated by configure - do not modify" >config-all-disas.mak
4162
4163 echo "# Automatically generated by configure - do not modify" > $config_host_mak
4164 echo >> $config_host_mak
4165
4166 echo all: >> $config_host_mak
4167 echo "prefix=$prefix" >> $config_host_mak
4168 echo "bindir=$bindir" >> $config_host_mak
4169 echo "libdir=$libdir" >> $config_host_mak
4170 echo "libexecdir=$libexecdir" >> $config_host_mak
4171 echo "includedir=$includedir" >> $config_host_mak
4172 echo "mandir=$mandir" >> $config_host_mak
4173 echo "sysconfdir=$sysconfdir" >> $config_host_mak
4174 echo "qemu_confdir=$qemu_confdir" >> $config_host_mak
4175 echo "qemu_datadir=$qemu_datadir" >> $config_host_mak
4176 echo "qemu_docdir=$qemu_docdir" >> $config_host_mak
4177 echo "qemu_moddir=$qemu_moddir" >> $config_host_mak
4178 if test "$mingw32" = "no" ; then
4179 echo "qemu_localstatedir=$local_statedir" >> $config_host_mak
4180 fi
4181 echo "qemu_helperdir=$libexecdir" >> $config_host_mak
4182 echo "extra_cflags=$EXTRA_CFLAGS" >> $config_host_mak
4183 echo "extra_ldflags=$EXTRA_LDFLAGS" >> $config_host_mak
4184 echo "qemu_localedir=$qemu_localedir" >> $config_host_mak
4185 echo "libs_softmmu=$libs_softmmu" >> $config_host_mak
4186
4187 echo "ARCH=$ARCH" >> $config_host_mak
4188
4189 if test "$debug_tcg" = "yes" ; then
4190 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
4191 fi
4192 if test "$strip_opt" = "yes" ; then
4193 echo "STRIP=${strip}" >> $config_host_mak
4194 fi
4195 if test "$bigendian" = "yes" ; then
4196 echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
4197 fi
4198 if test "$mingw32" = "yes" ; then
4199 echo "CONFIG_WIN32=y" >> $config_host_mak
4200 rc_version=`cat $source_path/VERSION`
4201 version_major=${rc_version%%.*}
4202 rc_version=${rc_version#*.}
4203 version_minor=${rc_version%%.*}
4204 rc_version=${rc_version#*.}
4205 version_subminor=${rc_version%%.*}
4206 version_micro=0
4207 echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
4208 echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
4209 if test "$guest_agent_with_vss" = "yes" ; then
4210 echo "CONFIG_QGA_VSS=y" >> $config_host_mak
4211 echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak
4212 fi
4213 else
4214 echo "CONFIG_POSIX=y" >> $config_host_mak
4215 fi
4216
4217 if test "$linux" = "yes" ; then
4218 echo "CONFIG_LINUX=y" >> $config_host_mak
4219 fi
4220
4221 if test "$darwin" = "yes" ; then
4222 echo "CONFIG_DARWIN=y" >> $config_host_mak
4223 fi
4224
4225 if test "$aix" = "yes" ; then
4226 echo "CONFIG_AIX=y" >> $config_host_mak
4227 fi
4228
4229 if test "$solaris" = "yes" ; then
4230 echo "CONFIG_SOLARIS=y" >> $config_host_mak
4231 echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
4232 if test "$needs_libsunmath" = "yes" ; then
4233 echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
4234 fi
4235 fi
4236 if test "$haiku" = "yes" ; then
4237 echo "CONFIG_HAIKU=y" >> $config_host_mak
4238 fi
4239 if test "$static" = "yes" ; then
4240 echo "CONFIG_STATIC=y" >> $config_host_mak
4241 fi
4242 if test "$profiler" = "yes" ; then
4243 echo "CONFIG_PROFILER=y" >> $config_host_mak
4244 fi
4245 if test "$slirp" = "yes" ; then
4246 echo "CONFIG_SLIRP=y" >> $config_host_mak
4247 echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak
4248 fi
4249 if test "$vde" = "yes" ; then
4250 echo "CONFIG_VDE=y" >> $config_host_mak
4251 fi
4252 if test "$netmap" = "yes" ; then
4253 echo "CONFIG_NETMAP=y" >> $config_host_mak
4254 fi
4255 if test "$cap_ng" = "yes" ; then
4256 echo "CONFIG_LIBCAP=y" >> $config_host_mak
4257 fi
4258 echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
4259 for drv in $audio_drv_list; do
4260 def=CONFIG_`echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]'`
4261 echo "$def=y" >> $config_host_mak
4262 if test "$drv" = "fmod"; then
4263 echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
4264 fi
4265 done
4266 if test "$audio_pt_int" = "yes" ; then
4267 echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
4268 fi
4269 if test "$audio_win_int" = "yes" ; then
4270 echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
4271 fi
4272 echo "CONFIG_BDRV_RW_WHITELIST=$block_drv_rw_whitelist" >> $config_host_mak
4273 echo "CONFIG_BDRV_RO_WHITELIST=$block_drv_ro_whitelist" >> $config_host_mak
4274 if test "$vnc" = "yes" ; then
4275 echo "CONFIG_VNC=y" >> $config_host_mak
4276 fi
4277 if test "$vnc_tls" = "yes" ; then
4278 echo "CONFIG_VNC_TLS=y" >> $config_host_mak
4279 fi
4280 if test "$vnc_sasl" = "yes" ; then
4281 echo "CONFIG_VNC_SASL=y" >> $config_host_mak
4282 fi
4283 if test "$vnc_jpeg" = "yes" ; then
4284 echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
4285 fi
4286 if test "$vnc_png" = "yes" ; then
4287 echo "CONFIG_VNC_PNG=y" >> $config_host_mak
4288 fi
4289 if test "$vnc_ws" = "yes" ; then
4290 echo "CONFIG_VNC_WS=y" >> $config_host_mak
4291 echo "VNC_WS_CFLAGS=$vnc_ws_cflags" >> $config_host_mak
4292 fi
4293 if test "$fnmatch" = "yes" ; then
4294 echo "CONFIG_FNMATCH=y" >> $config_host_mak
4295 fi
4296 if test "$uuid" = "yes" ; then
4297 echo "CONFIG_UUID=y" >> $config_host_mak
4298 fi
4299 if test "$xfs" = "yes" ; then
4300 echo "CONFIG_XFS=y" >> $config_host_mak
4301 fi
4302 qemu_version=`head $source_path/VERSION`
4303 echo "VERSION=$qemu_version" >>$config_host_mak
4304 echo "PKGVERSION=$pkgversion" >>$config_host_mak
4305 echo "SRC_PATH=$source_path" >> $config_host_mak
4306 echo "TARGET_DIRS=$target_list" >> $config_host_mak
4307 if [ "$docs" = "yes" ] ; then
4308 echo "BUILD_DOCS=yes" >> $config_host_mak
4309 fi
4310 if test "$modules" = "yes"; then
4311 # $shacmd can generate a hash started with digit, which the compiler doesn't
4312 # like as an symbol. So prefix it with an underscore
4313 echo "CONFIG_STAMP=_`(echo $qemu_version; echo $pkgversion; cat $0) | $shacmd - | cut -f1 -d\ `" >> $config_host_mak
4314 echo "CONFIG_MODULES=y" >> $config_host_mak
4315 fi
4316 if test "$sdl" = "yes" ; then
4317 echo "CONFIG_SDL=y" >> $config_host_mak
4318 echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
4319 fi
4320 if test "$cocoa" = "yes" ; then
4321 echo "CONFIG_COCOA=y" >> $config_host_mak
4322 fi
4323 if test "$curses" = "yes" ; then
4324 echo "CONFIG_CURSES=y" >> $config_host_mak
4325 fi
4326 if test "$utimens" = "yes" ; then
4327 echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
4328 fi
4329 if test "$pipe2" = "yes" ; then
4330 echo "CONFIG_PIPE2=y" >> $config_host_mak
4331 fi
4332 if test "$accept4" = "yes" ; then
4333 echo "CONFIG_ACCEPT4=y" >> $config_host_mak
4334 fi
4335 if test "$splice" = "yes" ; then
4336 echo "CONFIG_SPLICE=y" >> $config_host_mak
4337 fi
4338 if test "$eventfd" = "yes" ; then
4339 echo "CONFIG_EVENTFD=y" >> $config_host_mak
4340 fi
4341 if test "$fallocate" = "yes" ; then
4342 echo "CONFIG_FALLOCATE=y" >> $config_host_mak
4343 fi
4344 if test "$fallocate_punch_hole" = "yes" ; then
4345 echo "CONFIG_FALLOCATE_PUNCH_HOLE=y" >> $config_host_mak
4346 fi
4347 if test "$sync_file_range" = "yes" ; then
4348 echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak
4349 fi
4350 if test "$fiemap" = "yes" ; then
4351 echo "CONFIG_FIEMAP=y" >> $config_host_mak
4352 fi
4353 if test "$dup3" = "yes" ; then
4354 echo "CONFIG_DUP3=y" >> $config_host_mak
4355 fi
4356 if test "$ppoll" = "yes" ; then
4357 echo "CONFIG_PPOLL=y" >> $config_host_mak
4358 fi
4359 if test "$prctl_pr_set_timerslack" = "yes" ; then
4360 echo "CONFIG_PRCTL_PR_SET_TIMERSLACK=y" >> $config_host_mak
4361 fi
4362 if test "$epoll" = "yes" ; then
4363 echo "CONFIG_EPOLL=y" >> $config_host_mak
4364 fi
4365 if test "$epoll_create1" = "yes" ; then
4366 echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak
4367 fi
4368 if test "$epoll_pwait" = "yes" ; then
4369 echo "CONFIG_EPOLL_PWAIT=y" >> $config_host_mak
4370 fi
4371 if test "$sendfile" = "yes" ; then
4372 echo "CONFIG_SENDFILE=y" >> $config_host_mak
4373 fi
4374 if test "$inotify" = "yes" ; then
4375 echo "CONFIG_INOTIFY=y" >> $config_host_mak
4376 fi
4377 if test "$inotify1" = "yes" ; then
4378 echo "CONFIG_INOTIFY1=y" >> $config_host_mak
4379 fi
4380 if test "$byteswap_h" = "yes" ; then
4381 echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
4382 fi
4383 if test "$bswap_h" = "yes" ; then
4384 echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
4385 fi
4386 if test "$curl" = "yes" ; then
4387 echo "CONFIG_CURL=m" >> $config_host_mak
4388 echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
4389 echo "CURL_LIBS=$curl_libs" >> $config_host_mak
4390 fi
4391 if test "$brlapi" = "yes" ; then
4392 echo "CONFIG_BRLAPI=y" >> $config_host_mak
4393 fi
4394 if test "$bluez" = "yes" ; then
4395 echo "CONFIG_BLUEZ=y" >> $config_host_mak
4396 echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
4397 fi
4398 echo "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak
4399 if test "$gtk" = "yes" ; then
4400 echo "CONFIG_GTK=y" >> $config_host_mak
4401 echo "GTK_CFLAGS=$gtk_cflags" >> $config_host_mak
4402 echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak
4403 fi
4404 if test "$xen" = "yes" ; then
4405 echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak
4406 echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
4407 fi
4408 if test "$linux_aio" = "yes" ; then
4409 echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
4410 fi
4411 if test "$attr" = "yes" ; then
4412 echo "CONFIG_ATTR=y" >> $config_host_mak
4413 fi
4414 if test "$libattr" = "yes" ; then
4415 echo "CONFIG_LIBATTR=y" >> $config_host_mak
4416 fi
4417 if test "$virtfs" = "yes" ; then
4418 echo "CONFIG_VIRTFS=y" >> $config_host_mak
4419 fi
4420 if test "$vhost_scsi" = "yes" ; then
4421 echo "CONFIG_VHOST_SCSI=y" >> $config_host_mak
4422 fi
4423 if test "$blobs" = "yes" ; then
4424 echo "INSTALL_BLOBS=yes" >> $config_host_mak
4425 fi
4426 if test "$iovec" = "yes" ; then
4427 echo "CONFIG_IOVEC=y" >> $config_host_mak
4428 fi
4429 if test "$preadv" = "yes" ; then
4430 echo "CONFIG_PREADV=y" >> $config_host_mak
4431 fi
4432 if test "$fdt" = "yes" ; then
4433 echo "CONFIG_FDT=y" >> $config_host_mak
4434 fi
4435 if test "$signalfd" = "yes" ; then
4436 echo "CONFIG_SIGNALFD=y" >> $config_host_mak
4437 fi
4438 if test "$tcg_interpreter" = "yes" ; then
4439 echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak
4440 fi
4441 if test "$fdatasync" = "yes" ; then
4442 echo "CONFIG_FDATASYNC=y" >> $config_host_mak
4443 fi
4444 if test "$madvise" = "yes" ; then
4445 echo "CONFIG_MADVISE=y" >> $config_host_mak
4446 fi
4447 if test "$posix_madvise" = "yes" ; then
4448 echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
4449 fi
4450 if test "$sigev_thread_id" = "yes" ; then
4451 echo "CONFIG_SIGEV_THREAD_ID=y" >> $config_host_mak
4452 fi
4453
4454 if test "$spice" = "yes" ; then
4455 echo "CONFIG_SPICE=y" >> $config_host_mak
4456 fi
4457
4458 if test "$smartcard_nss" = "yes" ; then
4459 echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak
4460 echo "libcacard_libs=$libcacard_libs" >> $config_host_mak
4461 echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak
4462 fi
4463
4464 if test "$libusb" = "yes" ; then
4465 echo "CONFIG_USB_LIBUSB=y" >> $config_host_mak
4466 fi
4467
4468 if test "$usb_redir" = "yes" ; then
4469 echo "CONFIG_USB_REDIR=y" >> $config_host_mak
4470 fi
4471
4472 if test "$glx" = "yes" ; then
4473 echo "CONFIG_GLX=y" >> $config_host_mak
4474 echo "GLX_LIBS=$glx_libs" >> $config_host_mak
4475 fi
4476
4477 if test "$lzo" = "yes" ; then
4478 echo "CONFIG_LZO=y" >> $config_host_mak
4479 fi
4480
4481 if test "$snappy" = "yes" ; then
4482 echo "CONFIG_SNAPPY=y" >> $config_host_mak
4483 fi
4484
4485 if test "$libiscsi" = "yes" ; then
4486 echo "CONFIG_LIBISCSI=m" >> $config_host_mak
4487 if test "$libiscsi_version" = "1.4.0"; then
4488 echo "CONFIG_LIBISCSI_1_4=y" >> $config_host_mak
4489 fi
4490 echo "LIBISCSI_CFLAGS=$libiscsi_cflags" >> $config_host_mak
4491 echo "LIBISCSI_LIBS=$libiscsi_libs" >> $config_host_mak
4492 fi
4493
4494 if test "$libnfs" = "yes" ; then
4495 echo "CONFIG_LIBNFS=y" >> $config_host_mak
4496 fi
4497
4498 if test "$seccomp" = "yes"; then
4499 echo "CONFIG_SECCOMP=y" >> $config_host_mak
4500 fi
4501
4502 # XXX: suppress that
4503 if [ "$bsd" = "yes" ] ; then
4504 echo "CONFIG_BSD=y" >> $config_host_mak
4505 fi
4506
4507 echo "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak
4508
4509 if test "$zero_malloc" = "yes" ; then
4510 echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak
4511 fi
4512 if test "$qom_cast_debug" = "yes" ; then
4513 echo "CONFIG_QOM_CAST_DEBUG=y" >> $config_host_mak
4514 fi
4515 if test "$rbd" = "yes" ; then
4516 echo "CONFIG_RBD=m" >> $config_host_mak
4517 echo "RBD_CFLAGS=$rbd_cflags" >> $config_host_mak
4518 echo "RBD_LIBS=$rbd_libs" >> $config_host_mak
4519 fi
4520
4521 echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak
4522 if test "$coroutine_pool" = "yes" ; then
4523 echo "CONFIG_COROUTINE_POOL=1" >> $config_host_mak
4524 else
4525 echo "CONFIG_COROUTINE_POOL=0" >> $config_host_mak
4526 fi
4527
4528 if test "$open_by_handle_at" = "yes" ; then
4529 echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak
4530 fi
4531
4532 if test "$linux_magic_h" = "yes" ; then
4533 echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak
4534 fi
4535
4536 if test "$pragma_diagnostic_available" = "yes" ; then
4537 echo "CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE=y" >> $config_host_mak
4538 fi
4539
4540 if test "$valgrind_h" = "yes" ; then
4541 echo "CONFIG_VALGRIND_H=y" >> $config_host_mak
4542 fi
4543
4544 if test "$has_environ" = "yes" ; then
4545 echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak
4546 fi
4547
4548 if test "$cpuid_h" = "yes" ; then
4549 echo "CONFIG_CPUID_H=y" >> $config_host_mak
4550 fi
4551
4552 if test "$int128" = "yes" ; then
4553 echo "CONFIG_INT128=y" >> $config_host_mak
4554 fi
4555
4556 if test "$getauxval" = "yes" ; then
4557 echo "CONFIG_GETAUXVAL=y" >> $config_host_mak
4558 fi
4559
4560 if test "$glusterfs" = "yes" ; then
4561 echo "CONFIG_GLUSTERFS=m" >> $config_host_mak
4562 echo "GLUSTERFS_CFLAGS=$glusterfs_cflags" >> $config_host_mak
4563 echo "GLUSTERFS_LIBS=$glusterfs_libs" >> $config_host_mak
4564 fi
4565
4566 if test "$glusterfs_discard" = "yes" ; then
4567 echo "CONFIG_GLUSTERFS_DISCARD=y" >> $config_host_mak
4568 fi
4569
4570 if test "$glusterfs_zerofill" = "yes" ; then
4571 echo "CONFIG_GLUSTERFS_ZEROFILL=y" >> $config_host_mak
4572 fi
4573
4574 if test "$libssh2" = "yes" ; then
4575 echo "CONFIG_LIBSSH2=m" >> $config_host_mak
4576 echo "LIBSSH2_CFLAGS=$libssh2_cflags" >> $config_host_mak
4577 echo "LIBSSH2_LIBS=$libssh2_libs" >> $config_host_mak
4578 fi
4579
4580 if test "$quorum" = "yes" ; then
4581 echo "CONFIG_QUORUM=y" >> $config_host_mak
4582 fi
4583
4584 if test "$virtio_blk_data_plane" = "yes" ; then
4585 echo 'CONFIG_VIRTIO_BLK_DATA_PLANE=$(CONFIG_VIRTIO)' >> $config_host_mak
4586 fi
4587
4588 if test "$vhdx" = "yes" ; then
4589 echo "CONFIG_VHDX=y" >> $config_host_mak
4590 fi
4591
4592 # USB host support
4593 if test "$libusb" = "yes"; then
4594 echo "HOST_USB=libusb legacy" >> $config_host_mak
4595 else
4596 echo "HOST_USB=stub" >> $config_host_mak
4597 fi
4598
4599 # TPM passthrough support?
4600 if test "$tpm" = "yes"; then
4601 echo 'CONFIG_TPM=$(CONFIG_SOFTMMU)' >> $config_host_mak
4602 if test "$tpm_passthrough" = "yes"; then
4603 echo "CONFIG_TPM_PASSTHROUGH=y" >> $config_host_mak
4604 fi
4605 fi
4606
4607 # use default implementation for tracing backend-specific routines
4608 trace_default=yes
4609 echo "TRACE_BACKEND=$trace_backend" >> $config_host_mak
4610 if test "$trace_backend" = "nop"; then
4611 echo "CONFIG_TRACE_NOP=y" >> $config_host_mak
4612 fi
4613 if test "$trace_backend" = "simple"; then
4614 echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak
4615 trace_default=no
4616 # Set the appropriate trace file.
4617 trace_file="\"$trace_file-\" FMT_pid"
4618 fi
4619 if test "$trace_backend" = "stderr"; then
4620 echo "CONFIG_TRACE_STDERR=y" >> $config_host_mak
4621 trace_default=no
4622 fi
4623 if test "$trace_backend" = "ust"; then
4624 echo "CONFIG_TRACE_UST=y" >> $config_host_mak
4625 fi
4626 if test "$trace_backend" = "dtrace"; then
4627 echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak
4628 if test "$trace_backend_stap" = "yes" ; then
4629 echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak
4630 fi
4631 fi
4632 if test "$trace_backend" = "ftrace"; then
4633 if test "$linux" = "yes" ; then
4634 echo "CONFIG_TRACE_FTRACE=y" >> $config_host_mak
4635 trace_default=no
4636 else
4637 feature_not_found "ftrace(trace backend)" "ftrace requires Linux"
4638 fi
4639 fi
4640 echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
4641 if test "$trace_default" = "yes"; then
4642 echo "CONFIG_TRACE_DEFAULT=y" >> $config_host_mak
4643 fi
4644
4645 if test "$rdma" = "yes" ; then
4646 echo "CONFIG_RDMA=y" >> $config_host_mak
4647 fi
4648
4649 # Hold two types of flag:
4650 # CONFIG_THREAD_SETNAME_BYTHREAD - we've got a way of setting the name on
4651 # a thread we have a handle to
4652 # CONFIG_PTHREAD_SETNAME_NP - A way of doing it on a particular
4653 # platform
4654 if test "$pthread_setname_np" = "yes" ; then
4655 echo "CONFIG_THREAD_SETNAME_BYTHREAD=y" >> $config_host_mak
4656 echo "CONFIG_PTHREAD_SETNAME_NP=y" >> $config_host_mak
4657 fi
4658
4659 if test "$tcg_interpreter" = "yes"; then
4660 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/tci $QEMU_INCLUDES"
4661 elif test "$ARCH" = "sparc64" ; then
4662 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/sparc $QEMU_INCLUDES"
4663 elif test "$ARCH" = "s390x" ; then
4664 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/s390 $QEMU_INCLUDES"
4665 elif test "$ARCH" = "x86_64" -o "$ARCH" = "x32" ; then
4666 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/i386 $QEMU_INCLUDES"
4667 else
4668 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/\$(ARCH) $QEMU_INCLUDES"
4669 fi
4670 QEMU_INCLUDES="-I\$(SRC_PATH)/tcg $QEMU_INCLUDES"
4671
4672 echo "TOOLS=$tools" >> $config_host_mak
4673 echo "ROMS=$roms" >> $config_host_mak
4674 echo "MAKE=$make" >> $config_host_mak
4675 echo "INSTALL=$install" >> $config_host_mak
4676 echo "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak
4677 echo "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak
4678 if test -n "$libtool"; then
4679 echo "INSTALL_PROG=\$(LIBTOOL) --mode=install $install -c -m 0755" >> $config_host_mak
4680 echo "INSTALL_LIB=\$(LIBTOOL) --mode=install $install -c -m 0644" >> $config_host_mak
4681 else
4682 echo "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak
4683 echo "INSTALL_LIB=$install -c -m 0644" >> $config_host_mak
4684 fi
4685 echo "PYTHON=$python" >> $config_host_mak
4686 echo "CC=$cc" >> $config_host_mak
4687 if $iasl -h > /dev/null 2>&1; then
4688 echo "IASL=$iasl" >> $config_host_mak
4689 fi
4690 echo "CC_I386=$cc_i386" >> $config_host_mak
4691 echo "HOST_CC=$host_cc" >> $config_host_mak
4692 echo "CXX=$cxx" >> $config_host_mak
4693 echo "OBJCC=$objcc" >> $config_host_mak
4694 echo "AR=$ar" >> $config_host_mak
4695 echo "ARFLAGS=$ARFLAGS" >> $config_host_mak
4696 echo "AS=$as" >> $config_host_mak
4697 echo "CPP=$cpp" >> $config_host_mak
4698 echo "OBJCOPY=$objcopy" >> $config_host_mak
4699 echo "LD=$ld" >> $config_host_mak
4700 echo "WINDRES=$windres" >> $config_host_mak
4701 echo "LIBTOOL=$libtool" >> $config_host_mak
4702 echo "CFLAGS=$CFLAGS" >> $config_host_mak
4703 echo "CFLAGS_NOPIE=$CFLAGS_NOPIE" >> $config_host_mak
4704 echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
4705 echo "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak
4706 if test "$sparse" = "yes" ; then
4707 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak
4708 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak
4709 echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
4710 fi
4711 if test "$cross_prefix" != ""; then
4712 echo "AUTOCONF_HOST := --host=${cross_prefix%-}" >> $config_host_mak
4713 else
4714 echo "AUTOCONF_HOST := " >> $config_host_mak
4715 fi
4716 echo "LDFLAGS=$LDFLAGS" >> $config_host_mak
4717 echo "LDFLAGS_NOPIE=$LDFLAGS_NOPIE" >> $config_host_mak
4718 echo "LIBTOOLFLAGS=$LIBTOOLFLAGS" >> $config_host_mak
4719 echo "LIBS+=$LIBS" >> $config_host_mak
4720 echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
4721 echo "EXESUF=$EXESUF" >> $config_host_mak
4722 echo "DSOSUF=$DSOSUF" >> $config_host_mak
4723 echo "LDFLAGS_SHARED=$LDFLAGS_SHARED" >> $config_host_mak
4724 echo "LIBS_QGA+=$libs_qga" >> $config_host_mak
4725 echo "POD2MAN=$POD2MAN" >> $config_host_mak
4726 echo "TRANSLATE_OPT_CFLAGS=$TRANSLATE_OPT_CFLAGS" >> $config_host_mak
4727 if test "$gcov" = "yes" ; then
4728 echo "CONFIG_GCOV=y" >> $config_host_mak
4729 echo "GCOV=$gcov_tool" >> $config_host_mak
4730 fi
4731
4732 # use included Linux headers
4733 if test "$linux" = "yes" ; then
4734 mkdir -p linux-headers
4735 case "$cpu" in
4736 i386|x86_64|x32)
4737 linux_arch=x86
4738 ;;
4739 ppcemb|ppc|ppc64)
4740 linux_arch=powerpc
4741 ;;
4742 s390x)
4743 linux_arch=s390
4744 ;;
4745 aarch64)
4746 linux_arch=arm64
4747 ;;
4748 *)
4749 # For most CPUs the kernel architecture name and QEMU CPU name match.
4750 linux_arch="$cpu"
4751 ;;
4752 esac
4753 # For non-KVM architectures we will not have asm headers
4754 if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then
4755 symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm
4756 fi
4757 fi
4758
4759 for target in $target_list; do
4760 target_dir="$target"
4761 config_target_mak=$target_dir/config-target.mak
4762 target_name=`echo $target | cut -d '-' -f 1`
4763 target_bigendian="no"
4764
4765 case "$target_name" in
4766 armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|moxie|or32|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb)
4767 target_bigendian=yes
4768 ;;
4769 esac
4770 target_softmmu="no"
4771 target_user_only="no"
4772 target_linux_user="no"
4773 target_bsd_user="no"
4774 case "$target" in
4775 ${target_name}-softmmu)
4776 target_softmmu="yes"
4777 ;;
4778 ${target_name}-linux-user)
4779 if test "$linux" != "yes" ; then
4780 error_exit "Target '$target' is only available on a Linux host"
4781 fi
4782 target_user_only="yes"
4783 target_linux_user="yes"
4784 ;;
4785 ${target_name}-bsd-user)
4786 if test "$bsd" != "yes" ; then
4787 error_exit "Target '$target' is only available on a BSD host"
4788 fi
4789 target_user_only="yes"
4790 target_bsd_user="yes"
4791 ;;
4792 *)
4793 error_exit "Target '$target' not recognised"
4794 exit 1
4795 ;;
4796 esac
4797
4798 mkdir -p $target_dir
4799 echo "# Automatically generated by configure - do not modify" > $config_target_mak
4800
4801 bflt="no"
4802 interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_name/g"`
4803 gdb_xml_files=""
4804
4805 TARGET_ARCH="$target_name"
4806 TARGET_BASE_ARCH=""
4807 TARGET_ABI_DIR=""
4808
4809 case "$target_name" in
4810 i386)
4811 ;;
4812 x86_64)
4813 TARGET_BASE_ARCH=i386
4814 ;;
4815 alpha)
4816 ;;
4817 arm|armeb)
4818 TARGET_ARCH=arm
4819 bflt="yes"
4820 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
4821 ;;
4822 aarch64)
4823 TARGET_BASE_ARCH=arm
4824 bflt="yes"
4825 gdb_xml_files="aarch64-core.xml aarch64-fpu.xml"
4826 ;;
4827 cris)
4828 ;;
4829 lm32)
4830 ;;
4831 m68k)
4832 bflt="yes"
4833 gdb_xml_files="cf-core.xml cf-fp.xml"
4834 ;;
4835 microblaze|microblazeel)
4836 TARGET_ARCH=microblaze
4837 bflt="yes"
4838 ;;
4839 mips|mipsel)
4840 TARGET_ARCH=mips
4841 echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
4842 ;;
4843 mipsn32|mipsn32el)
4844 TARGET_ARCH=mips64
4845 TARGET_BASE_ARCH=mips
4846 echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
4847 echo "TARGET_ABI32=y" >> $config_target_mak
4848 ;;
4849 mips64|mips64el)
4850 TARGET_ARCH=mips64
4851 TARGET_BASE_ARCH=mips
4852 echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
4853 ;;
4854 moxie)
4855 ;;
4856 or32)
4857 TARGET_ARCH=openrisc
4858 TARGET_BASE_ARCH=openrisc
4859 ;;
4860 ppc)
4861 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
4862 ;;
4863 ppcemb)
4864 TARGET_BASE_ARCH=ppc
4865 TARGET_ABI_DIR=ppc
4866 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
4867 ;;
4868 ppc64)
4869 TARGET_BASE_ARCH=ppc
4870 TARGET_ABI_DIR=ppc
4871 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
4872 ;;
4873 ppc64abi32)
4874 TARGET_ARCH=ppc64
4875 TARGET_BASE_ARCH=ppc
4876 TARGET_ABI_DIR=ppc
4877 echo "TARGET_ABI32=y" >> $config_target_mak
4878 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
4879 ;;
4880 sh4|sh4eb)
4881 TARGET_ARCH=sh4
4882 bflt="yes"
4883 ;;
4884 sparc)
4885 ;;
4886 sparc64)
4887 TARGET_BASE_ARCH=sparc
4888 ;;
4889 sparc32plus)
4890 TARGET_ARCH=sparc64
4891 TARGET_BASE_ARCH=sparc
4892 TARGET_ABI_DIR=sparc
4893 echo "TARGET_ABI32=y" >> $config_target_mak
4894 ;;
4895 s390x)
4896 ;;
4897 unicore32)
4898 ;;
4899 xtensa|xtensaeb)
4900 TARGET_ARCH=xtensa
4901 ;;
4902 *)
4903 error_exit "Unsupported target CPU"
4904 ;;
4905 esac
4906 # TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
4907 if [ "$TARGET_BASE_ARCH" = "" ]; then
4908 TARGET_BASE_ARCH=$TARGET_ARCH
4909 fi
4910
4911 symlink "$source_path/Makefile.target" "$target_dir/Makefile"
4912
4913 upper() {
4914 echo "$@"| LC_ALL=C tr '[a-z]' '[A-Z]'
4915 }
4916
4917 target_arch_name="`upper $TARGET_ARCH`"
4918 echo "TARGET_$target_arch_name=y" >> $config_target_mak
4919 echo "TARGET_NAME=$target_name" >> $config_target_mak
4920 echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
4921 if [ "$TARGET_ABI_DIR" = "" ]; then
4922 TARGET_ABI_DIR=$TARGET_ARCH
4923 fi
4924 echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
4925 case "$target_name" in
4926 i386|x86_64)
4927 if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
4928 echo "CONFIG_XEN=y" >> $config_target_mak
4929 if test "$xen_pci_passthrough" = yes; then
4930 echo "CONFIG_XEN_PCI_PASSTHROUGH=y" >> "$config_target_mak"
4931 fi
4932 fi
4933 ;;
4934 *)
4935 esac
4936 case "$target_name" in
4937 aarch64|arm|i386|x86_64|ppcemb|ppc|ppc64|s390x)
4938 # Make sure the target and host cpus are compatible
4939 if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
4940 \( "$target_name" = "$cpu" -o \
4941 \( "$target_name" = "ppcemb" -a "$cpu" = "ppc" \) -o \
4942 \( "$target_name" = "ppc64" -a "$cpu" = "ppc" \) -o \
4943 \( "$target_name" = "ppc" -a "$cpu" = "ppc64" \) -o \
4944 \( "$target_name" = "ppcemb" -a "$cpu" = "ppc64" \) -o \
4945 \( "$target_name" = "x86_64" -a "$cpu" = "i386" \) -o \
4946 \( "$target_name" = "i386" -a "$cpu" = "x86_64" \) \) ; then
4947 echo "CONFIG_KVM=y" >> $config_target_mak
4948 if test "$vhost_net" = "yes" ; then
4949 echo "CONFIG_VHOST_NET=y" >> $config_target_mak
4950 fi
4951 fi
4952 esac
4953 if test "$target_bigendian" = "yes" ; then
4954 echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
4955 fi
4956 if test "$target_softmmu" = "yes" ; then
4957 echo "CONFIG_SOFTMMU=y" >> $config_target_mak
4958 fi
4959 if test "$target_user_only" = "yes" ; then
4960 echo "CONFIG_USER_ONLY=y" >> $config_target_mak
4961 echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
4962 fi
4963 if test "$target_linux_user" = "yes" ; then
4964 echo "CONFIG_LINUX_USER=y" >> $config_target_mak
4965 fi
4966 list=""
4967 if test ! -z "$gdb_xml_files" ; then
4968 for x in $gdb_xml_files; do
4969 list="$list $source_path/gdb-xml/$x"
4970 done
4971 echo "TARGET_XML_FILES=$list" >> $config_target_mak
4972 fi
4973
4974 if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
4975 echo "TARGET_HAS_BFLT=y" >> $config_target_mak
4976 fi
4977 if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
4978 echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak
4979 fi
4980 if test "$target_bsd_user" = "yes" ; then
4981 echo "CONFIG_BSD_USER=y" >> $config_target_mak
4982 fi
4983
4984 # generate QEMU_CFLAGS/LDFLAGS for targets
4985
4986 cflags=""
4987 ldflags=""
4988
4989 for i in $ARCH $TARGET_BASE_ARCH ; do
4990 case "$i" in
4991 alpha)
4992 echo "CONFIG_ALPHA_DIS=y" >> $config_target_mak
4993 echo "CONFIG_ALPHA_DIS=y" >> config-all-disas.mak
4994 ;;
4995 aarch64)
4996 if test -n "${cxx}"; then
4997 echo "CONFIG_ARM_A64_DIS=y" >> $config_target_mak
4998 echo "CONFIG_ARM_A64_DIS=y" >> config-all-disas.mak
4999 fi
5000 ;;
5001 arm)
5002 echo "CONFIG_ARM_DIS=y" >> $config_target_mak
5003 echo "CONFIG_ARM_DIS=y" >> config-all-disas.mak
5004 if test -n "${cxx}"; then
5005 echo "CONFIG_ARM_A64_DIS=y" >> $config_target_mak
5006 echo "CONFIG_ARM_A64_DIS=y" >> config-all-disas.mak
5007 fi
5008 ;;
5009 cris)
5010 echo "CONFIG_CRIS_DIS=y" >> $config_target_mak
5011 echo "CONFIG_CRIS_DIS=y" >> config-all-disas.mak
5012 ;;
5013 hppa)
5014 echo "CONFIG_HPPA_DIS=y" >> $config_target_mak
5015 echo "CONFIG_HPPA_DIS=y" >> config-all-disas.mak
5016 ;;
5017 i386|x86_64|x32)
5018 echo "CONFIG_I386_DIS=y" >> $config_target_mak
5019 echo "CONFIG_I386_DIS=y" >> config-all-disas.mak
5020 ;;
5021 ia64*)
5022 echo "CONFIG_IA64_DIS=y" >> $config_target_mak
5023 echo "CONFIG_IA64_DIS=y" >> config-all-disas.mak
5024 ;;
5025 lm32)
5026 echo "CONFIG_LM32_DIS=y" >> $config_target_mak
5027 echo "CONFIG_LM32_DIS=y" >> config-all-disas.mak
5028 ;;
5029 m68k)
5030 echo "CONFIG_M68K_DIS=y" >> $config_target_mak
5031 echo "CONFIG_M68K_DIS=y" >> config-all-disas.mak
5032 ;;
5033 microblaze*)
5034 echo "CONFIG_MICROBLAZE_DIS=y" >> $config_target_mak
5035 echo "CONFIG_MICROBLAZE_DIS=y" >> config-all-disas.mak
5036 ;;
5037 mips*)
5038 echo "CONFIG_MIPS_DIS=y" >> $config_target_mak
5039 echo "CONFIG_MIPS_DIS=y" >> config-all-disas.mak
5040 ;;
5041 moxie*)
5042 echo "CONFIG_MOXIE_DIS=y" >> $config_target_mak
5043 echo "CONFIG_MOXIE_DIS=y" >> config-all-disas.mak
5044 ;;
5045 or32)
5046 echo "CONFIG_OPENRISC_DIS=y" >> $config_target_mak
5047 echo "CONFIG_OPENRISC_DIS=y" >> config-all-disas.mak
5048 ;;
5049 ppc*)
5050 echo "CONFIG_PPC_DIS=y" >> $config_target_mak
5051 echo "CONFIG_PPC_DIS=y" >> config-all-disas.mak
5052 ;;
5053 s390*)
5054 echo "CONFIG_S390_DIS=y" >> $config_target_mak
5055 echo "CONFIG_S390_DIS=y" >> config-all-disas.mak
5056 ;;
5057 sh4)
5058 echo "CONFIG_SH4_DIS=y" >> $config_target_mak
5059 echo "CONFIG_SH4_DIS=y" >> config-all-disas.mak
5060 ;;
5061 sparc*)
5062 echo "CONFIG_SPARC_DIS=y" >> $config_target_mak
5063 echo "CONFIG_SPARC_DIS=y" >> config-all-disas.mak
5064 ;;
5065 xtensa*)
5066 echo "CONFIG_XTENSA_DIS=y" >> $config_target_mak
5067 echo "CONFIG_XTENSA_DIS=y" >> config-all-disas.mak
5068 ;;
5069 esac
5070 done
5071 if test "$tcg_interpreter" = "yes" ; then
5072 echo "CONFIG_TCI_DIS=y" >> $config_target_mak
5073 echo "CONFIG_TCI_DIS=y" >> config-all-disas.mak
5074 fi
5075
5076 case "$ARCH" in
5077 alpha)
5078 # Ensure there's only a single GP
5079 cflags="-msmall-data $cflags"
5080 ;;
5081 esac
5082
5083 if test "$gprof" = "yes" ; then
5084 echo "TARGET_GPROF=yes" >> $config_target_mak
5085 if test "$target_linux_user" = "yes" ; then
5086 cflags="-p $cflags"
5087 ldflags="-p $ldflags"
5088 fi
5089 if test "$target_softmmu" = "yes" ; then
5090 ldflags="-p $ldflags"
5091 echo "GPROF_CFLAGS=-p" >> $config_target_mak
5092 fi
5093 fi
5094
5095 if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
5096 ldflags="$ldflags $textseg_ldflags"
5097 fi
5098
5099 echo "LDFLAGS+=$ldflags" >> $config_target_mak
5100 echo "QEMU_CFLAGS+=$cflags" >> $config_target_mak
5101
5102 done # for target in $targets
5103
5104 if [ "$pixman" = "internal" ]; then
5105 echo "config-host.h: subdir-pixman" >> $config_host_mak
5106 fi
5107
5108 if test "$rdma" = "yes" ; then
5109 echo "CONFIG_RDMA=y" >> $config_host_mak
5110 fi
5111
5112 if [ "$dtc_internal" = "yes" ]; then
5113 echo "config-host.h: subdir-dtc" >> $config_host_mak
5114 fi
5115
5116 # build tree in object directory in case the source is not in the current directory
5117 DIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32 tests/libqos tests/qapi-schema tests/tcg/xtensa tests/qemu-iotests"
5118 DIRS="$DIRS fsdev"
5119 DIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas pc-bios/s390-ccw"
5120 DIRS="$DIRS roms/seabios roms/vgabios"
5121 DIRS="$DIRS qapi-generated"
5122 FILES="Makefile tests/tcg/Makefile qdict-test-data.txt"
5123 FILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit"
5124 FILES="$FILES tests/tcg/lm32/Makefile tests/tcg/xtensa/Makefile po/Makefile"
5125 FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps"
5126 FILES="$FILES pc-bios/spapr-rtas/Makefile"
5127 FILES="$FILES pc-bios/s390-ccw/Makefile"
5128 FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
5129 FILES="$FILES pc-bios/qemu-icon.bmp"
5130 for bios_file in \
5131 $source_path/pc-bios/*.bin \
5132 $source_path/pc-bios/*.aml \
5133 $source_path/pc-bios/*.rom \
5134 $source_path/pc-bios/*.dtb \
5135 $source_path/pc-bios/*.img \
5136 $source_path/pc-bios/openbios-* \
5137 $source_path/pc-bios/palcode-*
5138 do
5139 FILES="$FILES pc-bios/`basename $bios_file`"
5140 done
5141 for test_file in `find $source_path/tests/acpi-test-data -type f`
5142 do
5143 FILES="$FILES tests/acpi-test-data`echo $test_file | sed -e 's/.*acpi-test-data//'`"
5144 done
5145 mkdir -p $DIRS
5146 for f in $FILES ; do
5147 if [ -e "$source_path/$f" ] && [ "$source_path" != `pwd` ]; then
5148 symlink "$source_path/$f" "$f"
5149 fi
5150 done
5151
5152 # temporary config to build submodules
5153 for rom in seabios vgabios ; do
5154 config_mak=roms/$rom/config.mak
5155 echo "# Automatically generated by configure - do not modify" > $config_mak
5156 echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
5157 echo "AS=$as" >> $config_mak
5158 echo "CC=$cc" >> $config_mak
5159 echo "BCC=bcc" >> $config_mak
5160 echo "CPP=$cpp" >> $config_mak
5161 echo "OBJCOPY=objcopy" >> $config_mak
5162 echo "IASL=$iasl" >> $config_mak
5163 echo "LD=$ld" >> $config_mak
5164 done
5165
5166 if test "$docs" = "yes" ; then
5167 mkdir -p QMP
5168 fi
5169
5170 # Save the configure command line for later reuse.
5171 cat <<EOD >config.status
5172 #!/bin/sh
5173 # Generated by configure.
5174 # Run this file to recreate the current configuration.
5175 # Compiler output produced by configure, useful for debugging
5176 # configure, is in config.log if it exists.
5177 EOD
5178 printf "exec" >>config.status
5179 printf " '%s'" "$0" "$@" >>config.status
5180 echo >>config.status
5181 chmod +x config.status
5182