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