configure 194.3 KB
Newer Older
B
bellard 已提交
1 2
#!/bin/sh
#
B
bellard 已提交
3
# qemu configure script (c) 2003 Fabrice Bellard
B
bellard 已提交
4
#
5

6 7 8 9 10
# Unset some variables known to interfere with behavior of common tools,
# just as autoconf does.
CLICOLOR_FORCE= GREP_OPTIONS=
unset CLICOLOR_FORCE GREP_OPTIONS

11 12 13
# Don't allow CCACHE, if present, to use cached results of compile tests!
export CCACHE_RECACHE=yes

14 15 16 17 18 19 20 21 22 23 24
# Temporary directory used for files created while
# configure runs. Since it is in the build directory
# we can safely blow away any previous version of it
# (and we need not jump through hoops to try to delete
# it when configure exits.)
TMPDIR1="config-temp"
rm -rf "${TMPDIR1}"
mkdir -p "${TMPDIR1}"
if [ $? -ne 0 ]; then
    echo "ERROR: failed to create temporary directory"
    exit 1
B
bellard 已提交
25 26
fi

27 28
TMPB="qemu-conf"
TMPC="${TMPDIR1}/${TMPB}.c"
29
TMPO="${TMPDIR1}/${TMPB}.o"
30
TMPCXX="${TMPDIR1}/${TMPB}.cxx"
31
TMPE="${TMPDIR1}/${TMPB}.exe"
32
TMPMO="${TMPDIR1}/${TMPB}.mo"
B
bellard 已提交
33

G
Gerd Hoffmann 已提交
34
rm -f config.log
35

36 37
# Print a helpful header at the top of config.log
echo "# QEMU configure log $(date)" >> config.log
38 39 40
printf "# Configured with:" >> config.log
printf " '%s'" "$0" "$@" >> config.log
echo >> config.log
41 42
echo "#" >> config.log

43 44
print_error() {
    (echo
45 46 47 48 49
    echo "ERROR: $1"
    while test -n "$2"; do
        echo "       $2"
        shift
    done
50 51 52 53 54
    echo) >&2
}

error_exit() {
    print_error "$@"
55 56 57
    exit 1
}

58 59 60 61 62
do_compiler() {
    # Run the compiler, capturing its output to the log. First argument
    # is compiler binary to execute.
    local compiler="$1"
    shift
63 64 65 66 67
    if test -n "$BASH_VERSION"; then eval '
        echo >>config.log "
funcs: ${FUNCNAME[*]}
lines: ${BASH_LINENO[*]}"
    '; fi
68 69
    echo $compiler "$@" >> config.log
    $compiler "$@" >> config.log 2>&1 || return $?
70 71 72 73 74 75 76 77 78 79 80 81 82
    # Test passed. If this is an --enable-werror build, rerun
    # the test with -Werror and bail out if it fails. This
    # makes warning-generating-errors in configure test code
    # obvious to developers.
    if test "$werror" != "yes"; then
        return 0
    fi
    # Don't bother rerunning the compile if we were already using -Werror
    case "$*" in
        *-Werror*)
           return 0
        ;;
    esac
83 84
    echo $compiler -Werror "$@" >> config.log
    $compiler -Werror "$@" >> config.log 2>&1 && return $?
85 86 87 88
    error_exit "configure test passed without -Werror but failed with -Werror." \
        "This is probably a bug in the configure script. The failing command" \
        "will be at the bottom of config.log." \
        "You can run configure with --disable-werror to bypass this check."
89 90
}

91 92 93 94 95 96 97 98 99 100 101 102
do_cc() {
    do_compiler "$cc" "$@"
}

do_cxx() {
    do_compiler "$cxx" "$@"
}

update_cxxflags() {
    # Set QEMU_CXXFLAGS from QEMU_CFLAGS by filtering out those
    # options which some versions of GCC's C++ compiler complain about
    # because they only make sense for C programs.
103 104
    QEMU_CXXFLAGS="$QEMU_CXXFLAGS -D__STDC_LIMIT_MACROS"

105 106 107 108 109 110 111 112 113 114 115 116
    for arg in $QEMU_CFLAGS; do
        case $arg in
            -Wstrict-prototypes|-Wmissing-prototypes|-Wnested-externs|\
            -Wold-style-declaration|-Wold-style-definition|-Wredundant-decls)
                ;;
            *)
                QEMU_CXXFLAGS=${QEMU_CXXFLAGS:+$QEMU_CXXFLAGS }$arg
                ;;
        esac
    done
}

117
compile_object() {
118 119
  local_cflags="$1"
  do_cc $QEMU_CFLAGS $local_cflags -c -o $TMPO $TMPC
120 121 122 123 124
}

compile_prog() {
  local_cflags="$1"
  local_ldflags="$2"
125
  do_cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
126 127
}

128 129
# symbolically link $1 to $2.  Portable version of "ln -sf".
symlink() {
130
  rm -rf "$2"
131
  mkdir -p "$(dirname "$2")"
132
  ln -s "$1" "$2"
133 134
}

135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
# check whether a command is available to this shell (may be either an
# executable or a builtin)
has() {
    type "$1" >/dev/null 2>&1
}

# search for an executable in PATH
path_of() {
    local_command="$1"
    local_ifs="$IFS"
    local_dir=""

    # pathname has a dir component?
    if [ "${local_command#*/}" != "$local_command" ]; then
        if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then
            echo "$local_command"
            return 0
        fi
    fi
    if [ -z "$local_command" ]; then
        return 1
    fi

    IFS=:
    for local_dir in $PATH; do
        if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then
            echo "$local_dir/$local_command"
            IFS="${local_ifs:-$(printf ' \t\n')}"
            return 0
        fi
    done
    # not found
    IFS="${local_ifs:-$(printf ' \t\n')}"
    return 1
}

L
Lluís Vilanova 已提交
171 172 173 174
have_backend () {
    echo "$trace_backends" | grep "$1" >/dev/null
}

175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
glob() {
    eval test -z '"${1#'"$2"'}"'
}

supported_hax_target() {
    test "$hax" = "yes" || return 1
    glob "$1" "*-softmmu" || return 1
    case "${1%-softmmu}" in
        i386|x86_64)
            return 0
        ;;
    esac
    return 1
}

supported_kvm_target() {
    test "$kvm" = "yes" || return 1
    glob "$1" "*-softmmu" || return 1
    case "${1%-softmmu}:$cpu" in
        arm:arm | aarch64:aarch64 | \
        i386:i386 | i386:x86_64 | i386:x32 | \
        x86_64:i386 | x86_64:x86_64 | x86_64:x32 | \
        mips:mips | mipsel:mips | \
198
        ppc:ppc | ppc64:ppc | ppc:ppc64 | ppc64:ppc64 | \
199 200 201 202 203 204 205 206 207 208
        s390x:s390x)
            return 0
        ;;
    esac
    return 1
}

supported_xen_target() {
    test "$xen" = "yes" || return 1
    glob "$1" "*-softmmu" || return 1
P
Paolo Bonzini 已提交
209 210 211
    # Only i386 and x86_64 provide the xenpv machine.
    case "${1%-softmmu}" in
        i386|x86_64)
212 213 214 215 216 217
            return 0
        ;;
    esac
    return 1
}

218 219 220 221 222 223 224 225 226 227 228
supported_hvf_target() {
    test "$hvf" = "yes" || return 1
    glob "$1" "*-softmmu" || return 1
    case "${1%-softmmu}" in
        x86_64)
            return 0
        ;;
    esac
    return 1
}

229 230 231 232 233 234 235 236 237 238 239
supported_whpx_target() {
    test "$whpx" = "yes" || return 1
    glob "$1" "*-softmmu" || return 1
    case "${1%-softmmu}" in
        i386|x86_64)
            return 0
        ;;
    esac
    return 1
}

240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
supported_target() {
    case "$1" in
        *-softmmu)
            ;;
        *-linux-user)
            if test "$linux" != "yes"; then
                print_error "Target '$target' is only available on a Linux host"
                return 1
            fi
            ;;
        *-bsd-user)
            if test "$bsd" != "yes"; then
                print_error "Target '$target' is only available on a BSD host"
                return 1
            fi
            ;;
        *)
            print_error "Invalid target name '$target'"
            return 1
            ;;
    esac
261 262 263 264
    test "$tcg" = "yes" && return 0
    supported_kvm_target "$1" && return 0
    supported_xen_target "$1" && return 0
    supported_hax_target "$1" && return 0
265
    supported_hvf_target "$1" && return 0
266
    supported_whpx_target "$1" && return 0
267 268
    print_error "TCG disabled, but hardware accelerator not available for '$target'"
    return 1
269 270
}

271 272 273 274 275

ld_has() {
    $ld --help 2>/dev/null | grep ".$1" >/dev/null 2>&1
}

B
bellard 已提交
276
# default parameters
277
source_path=$(dirname "$0")
278
cpu=""
279
iasl="iasl"
280
interp_prefix="/usr/gnemul/qemu-%M"
B
bellard 已提交
281
static="no"
B
bellard 已提交
282
cross_prefix=""
M
malc 已提交
283
audio_drv_list=""
284 285
block_drv_rw_whitelist=""
block_drv_ro_whitelist=""
286
host_cc="cc"
J
Juan Quintela 已提交
287
libs_softmmu=""
J
Juan Quintela 已提交
288
libs_tools=""
289
audio_pt_int=""
290
audio_win_int=""
291
libs_qga=""
292
debug_info="yes"
293
stack_protector=""
294

295 296
if test -e "$source_path/.git"
then
297
    git_update=yes
298 299
    git_submodules="ui/keycodemapdb"
else
300
    git_update=no
301
    git_submodules=""
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319

    if ! test -f "$source_path/ui/keycodemapdb/README"
    then
        echo
        echo "ERROR: missing file $source_path/ui/keycodemapdb/README"
        echo
        echo "This is not a GIT checkout but module content appears to"
        echo "be missing. Do not use 'git archive' or GitHub download links"
        echo "to acquire QEMU source archives. Non-GIT builds are only"
        echo "supported with source archives linked from:"
        echo
        echo "  https://www.qemu.org/download/"
        echo
        echo "Developers working with GIT can use scripts/archive-source.sh"
        echo "if they need to create valid source archives."
        echo
        exit 1
    fi
320
fi
321
git="git"
322

323 324
# Don't accept a target_list environment variable.
unset target_list
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343

# Default value for a variable defining feature "foo".
#  * foo="no"  feature will only be used if --enable-foo arg is given
#  * foo=""    feature will be searched for, and if found, will be used
#              unless --disable-foo is given
#  * foo="yes" this value will only be set by --enable-foo flag.
#              feature will searched for,
#              if not found, configure exits with error
#
# Always add --enable-foo and --disable-foo command line args.
# Distributions want to ensure that several features are compiled in, and it
# is impossible without a --enable-foo that exits if a feature is not found.

bluez=""
brlapi=""
curl=""
curses=""
docs=""
fdt=""
344
netmap="no"
345
sdl=""
346
sdlabi=""
347
virtfs=""
348
mpath=""
J
Jes Sorensen 已提交
349
vnc="yes"
350 351 352 353 354
sparse="no"
vde=""
vnc_sasl=""
vnc_jpeg=""
vnc_png=""
G
Gerd Hoffmann 已提交
355
xkbcommon=""
356
xen=""
357
xen_ctrl_version=""
358
xen_pv_domain_build="no"
359
xen_pci_passthrough=""
360
linux_aio=""
361
cap_ng=""
362
attr=""
363
libattr=""
364
xfs=""
365
tcg="yes"
366
membarrier=""
367
vhost_net="no"
368
vhost_crypto="no"
369
vhost_scsi="no"
370
vhost_vsock="no"
371
vhost_user=""
372
kvm="no"
373
hax="no"
374
hvf="no"
375
whpx="no"
M
Michael R. Hines 已提交
376
rdma=""
377
pvrdma=""
378 379 380
gprof="no"
debug_tcg="no"
debug="no"
381
sanitizers="no"
382
fortify_source=""
383
strip_opt="yes"
384
tcg_interpreter="no"
385 386
bigendian="no"
mingw32="no"
B
Blue Swirl 已提交
387 388
gcov="no"
gcov_tool="gcov"
389
EXESUF=""
F
Fam Zheng 已提交
390 391 392
DSOSUF=".so"
LDFLAGS_SHARED="-shared"
modules="no"
393 394
prefix="/usr/local"
mandir="\${prefix}/share/man"
395
datadir="\${prefix}/share"
G
Gerd Hoffmann 已提交
396
firmwarepath="\${prefix}/share/qemu-firmware"
397
qemu_docdir="\${prefix}/share/doc/qemu"
398
bindir="\${prefix}/bin"
A
Alon Levy 已提交
399
libdir="\${prefix}/lib"
400
libexecdir="\${prefix}/libexec"
401
includedir="\${prefix}/include"
402
sysconfdir="\${prefix}/etc"
L
Luiz Capitulino 已提交
403
local_statedir="\${prefix}/var"
404 405 406 407 408 409 410 411 412 413 414 415 416
confsuffix="/qemu"
slirp="yes"
oss_lib=""
bsd="no"
linux="no"
solaris="no"
profiler="no"
cocoa="no"
softmmu="yes"
linux_user="no"
bsd_user="no"
blobs="yes"
pkgversion=""
417
pie=""
418
qom_cast_debug="yes"
419
trace_backends="log"
420 421 422
trace_file="trace"
spice=""
rbd=""
423
smartcard=""
G
Gerd Hoffmann 已提交
424
libusb=""
425
usb_redir=""
G
Gerd Hoffmann 已提交
426
opengl=""
427
opengl_dmabuf="no"
428
cpuid_h="no"
429
avx2_opt="no"
A
Alon Levy 已提交
430
zlib="yes"
431
capstone=""
432 433
lzo=""
snappy=""
434
bzip2=""
435
guest_agent=""
436
guest_agent_with_vss="no"
437
guest_agent_ntddscsi="no"
438
guest_agent_msi=""
439 440
vss_win32_sdk=""
win_sdk="no"
441
want_tools="yes"
R
Ronnie Sahlberg 已提交
442
libiscsi=""
P
Peter Lieven 已提交
443
libnfs=""
444
coroutine=""
445
coroutine_pool=""
446
debug_stack_usage="no"
447
crypto_afalg="no"
448
seccomp=""
449
glusterfs=""
450
glusterfs_xlator_opt="no"
451
glusterfs_discard="no"
452
glusterfs_fallocate="no"
453
glusterfs_zerofill="no"
A
Anthony Liguori 已提交
454
gtk=""
455
gtkabi=""
456
gtk_gl="no"
457
tls_priority="NORMAL"
458
gnutls=""
459
gnutls_rnd=""
460
nettle=""
461
nettle_kdf="no"
462
gcrypt=""
463
gcrypt_hmac="no"
464
gcrypt_kdf="no"
S
Stefan Weil 已提交
465
vte=""
466
virglrenderer=""
467
tpm="yes"
468
libssh2=""
469
live_block_migration="yes"
470
numa=""
F
Fam Zheng 已提交
471
tcmalloc="no"
472
jemalloc="no"
C
Changlong Xie 已提交
473
replication="yes"
474
vxhs=""
K
Klim Kireev 已提交
475
libxml2=""
476
docker="no"
477
debug_mutex="no"
J
Junyan He 已提交
478
libpmem=""
479

480 481
# cross compilers defaults, can be overridden with --cross-cc-ARCH
cross_cc_aarch64="aarch64-linux-gnu-gcc"
482 483
cross_cc_aarch64_be="$cross_cc_aarch64"
cross_cc_cflags_aarch64_be="-mbig-endian"
484
cross_cc_arm="arm-linux-gnueabihf-gcc"
485
cross_cc_cflags_armeb="-mbig-endian"
486 487
cross_cc_i386="i386-pc-linux-gnu-gcc"
cross_cc_cflags_i386=""
488
cross_cc_powerpc="powerpc-linux-gnu-gcc"
489
cross_cc_powerpc="powerpc-linux-gnu-gcc"
490 491 492

enabled_cross_compilers=""

493 494
supported_cpu="no"
supported_os="no"
495
bogus_os="no"
496
malloc_trim=""
497

498 499
# parse CC options first
for opt do
500
  optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
501 502 503
  case "$opt" in
  --cross-prefix=*) cross_prefix="$optarg"
  ;;
504
  --cc=*) CC="$optarg"
505
  ;;
506 507
  --cxx=*) CXX="$optarg"
  ;;
P
Paolo Bonzini 已提交
508 509
  --source-path=*) source_path="$optarg"
  ;;
510 511
  --cpu=*) cpu="$optarg"
  ;;
512
  --extra-cflags=*) QEMU_CFLAGS="$QEMU_CFLAGS $optarg"
513
  ;;
514 515
  --extra-cxxflags=*) QEMU_CXXFLAGS="$QEMU_CXXFLAGS $optarg"
  ;;
516
  --extra-ldflags=*) LDFLAGS="$LDFLAGS $optarg"
517
                     EXTRA_LDFLAGS="$optarg"
518
  ;;
519 520 521 522
  --enable-debug-info) debug_info="yes"
  ;;
  --disable-debug-info) debug_info="no"
  ;;
523 524
  --cross-cc-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-cc-FOO option"
  ;;
525 526 527
  --cross-cc-cflags-*) cc_arch=${opt#--cross-cc-flags-}; cc_arch=${cc_arch%%=*}
                      eval "cross_cc_cflags_${cc_arch}=\$optarg"
  ;;
528 529 530
  --cross-cc-*) cc_arch=${opt#--cross-cc-}; cc_arch=${cc_arch%%=*}
                eval "cross_cc_${cc_arch}=\$optarg"
  ;;
531 532 533 534
  esac
done
# OS specific
# Using uname is really, really broken.  Once we have the right set of checks
535
# we can eliminate its usage altogether.
536

537 538 539 540 541 542 543 544 545 546
# Preferred compiler:
#  ${CC} (if set)
#  ${cross_prefix}gcc (if cross-prefix specified)
#  system compiler
if test -z "${CC}${cross_prefix}"; then
  cc="$host_cc"
else
  cc="${CC-${cross_prefix}gcc}"
fi

547 548 549 550 551 552
if test -z "${CXX}${cross_prefix}"; then
  cxx="c++"
else
  cxx="${CXX-${cross_prefix}g++}"
fi

553
ar="${AR-${cross_prefix}ar}"
554
as="${AS-${cross_prefix}as}"
555
ccas="${CCAS-$cc}"
556
cpp="${CPP-$cc -E}"
557 558
objcopy="${OBJCOPY-${cross_prefix}objcopy}"
ld="${LD-${cross_prefix}ld}"
559
ranlib="${RANLIB-${cross_prefix}ranlib}"
S
Stefan Weil 已提交
560
nm="${NM-${cross_prefix}nm}"
561 562
strip="${STRIP-${cross_prefix}strip}"
windres="${WINDRES-${cross_prefix}windres}"
563 564 565 566 567
pkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}"
query_pkg_config() {
    "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@"
}
pkg_config=query_pkg_config
568
sdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}"
569
sdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}"
570

571 572 573
# If the user hasn't specified ARFLAGS, default to 'rv', just as make does.
ARFLAGS="${ARFLAGS-rv}"

574
# default flags for all hosts
575 576 577 578 579
# We use -fwrapv to tell the compiler that we require a C dialect where
# left shift of signed integers is well defined and has the expected
# 2s-complement style results. (Both clang and gcc agree that it
# provides these semantics.)
QEMU_CFLAGS="-fno-strict-aliasing -fno-common -fwrapv $QEMU_CFLAGS"
580
QEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
K
Kevin Wolf 已提交
581
QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
582
QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
583
QEMU_INCLUDES="-iquote . -iquote \$(SRC_PATH) -iquote \$(SRC_PATH)/accel/tcg -iquote \$(SRC_PATH)/include"
584 585 586 587
if test "$debug_info" = "yes"; then
    CFLAGS="-g $CFLAGS"
    LDFLAGS="-g $LDFLAGS"
fi
588

P
Paolo Bonzini 已提交
589
# make source path absolute
590
source_path=$(cd "$source_path"; pwd)
P
Paolo Bonzini 已提交
591

592 593 594 595 596 597 598 599
# running configure in the source tree?
# we know that's the case if configure is there.
if test -f "./configure"; then
    pwd_is_source_path="y"
else
    pwd_is_source_path="n"
fi

600 601 602
check_define() {
cat > $TMPC <<EOF
#if !defined($1)
603
#error $1 not defined
604 605 606
#endif
int main(void) { return 0; }
EOF
607
  compile_object
608 609
}

610 611 612 613 614 615 616 617
check_include() {
cat > $TMPC <<EOF
#include <$1>
int main(void) { return 0; }
EOF
  compile_object
}

618 619 620 621 622 623
write_c_skeleton() {
    cat > $TMPC <<EOF
int main(void) { return 0; }
EOF
}

624 625 626 627 628 629 630 631 632 633
if check_define __linux__ ; then
  targetos="Linux"
elif check_define _WIN32 ; then
  targetos='MINGW32'
elif check_define __OpenBSD__ ; then
  targetos='OpenBSD'
elif check_define __sun__ ; then
  targetos='SunOS'
elif check_define __HAIKU__ ; then
  targetos='Haiku'
634 635 636 637 638 639 640 641 642 643
elif check_define __FreeBSD__ ; then
  targetos='FreeBSD'
elif check_define __FreeBSD_kernel__ && check_define __GLIBC__; then
  targetos='GNU/kFreeBSD'
elif check_define __DragonFly__ ; then
  targetos='DragonFly'
elif check_define __NetBSD__; then
  targetos='NetBSD'
elif check_define __APPLE__; then
  targetos='Darwin'
644
else
645 646 647 648 649
  # This is a fatal error, but don't report it yet, because we
  # might be going to just print the --help text, or it might
  # be the result of a missing compiler.
  targetos='bogus'
  bogus_os='yes'
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
fi

# Some host OSes need non-standard checks for which CPU to use.
# Note that these checks are broken for cross-compilation: if you're
# cross-compiling to one of these OSes then you'll need to specify
# the correct CPU with the --cpu option.
case $targetos in
Darwin)
  # on Leopard most of the system is 32-bit, so we have to ask the kernel if we can
  # run 64-bit userspace code.
  # If the user didn't specify a CPU explicitly and the kernel says this is
  # 64 bit hw, then assume x86_64. Otherwise fall through to the usual detection code.
  if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
    cpu="x86_64"
  fi
  ;;
SunOS)
667
  # $(uname -m) returns i86pc even on an x86_64 box, so default based on isainfo
668 669 670 671 672
  if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
    cpu="x86_64"
  fi
esac

673 674 675 676
if test ! -z "$cpu" ; then
  # command line argument
  :
elif check_define __i386__ ; then
677 678
  cpu="i386"
elif check_define __x86_64__ ; then
679 680 681 682 683
  if check_define __ILP32__ ; then
    cpu="x32"
  else
    cpu="x86_64"
  fi
B
blueswir1 已提交
684 685 686 687 688 689
elif check_define __sparc__ ; then
  if check_define __arch64__ ; then
    cpu="sparc64"
  else
    cpu="sparc"
  fi
M
malc 已提交
690 691 692 693 694 695
elif check_define _ARCH_PPC ; then
  if check_define _ARCH_PPC64 ; then
    cpu="ppc64"
  else
    cpu="ppc"
  fi
A
Aurelien Jarno 已提交
696 697
elif check_define __mips__ ; then
  cpu="mips"
698 699 700 701 702 703
elif check_define __s390__ ; then
  if check_define __s390x__ ; then
    cpu="s390x"
  else
    cpu="s390"
  fi
704 705
elif check_define __arm__ ; then
  cpu="arm"
706 707
elif check_define __aarch64__ ; then
  cpu="aarch64"
708
else
709
  cpu=$(uname -m)
710 711
fi

712 713 714
ARCH=
# Normalise host CPU name and set ARCH.
# Note that this case should only have supported host CPUs, not guests.
B
bellard 已提交
715
case "$cpu" in
716
  ppc|ppc64|s390|s390x|sparc64|x32)
717 718
    cpu="$cpu"
    supported_cpu="yes"
719
    eval "cross_cc_${cpu}=\$host_cc"
720
  ;;
B
bellard 已提交
721
  i386|i486|i586|i686|i86pc|BePC)
722
    cpu="i386"
723
    supported_cpu="yes"
724
    cross_cc_i386=$host_cc
B
bellard 已提交
725
  ;;
A
aurel32 已提交
726 727
  x86_64|amd64)
    cpu="x86_64"
728
    supported_cpu="yes"
729
    cross_cc_x86_64=$host_cc
A
aurel32 已提交
730
  ;;
731 732
  armv*b|armv*l|arm)
    cpu="arm"
733
    supported_cpu="yes"
734
    cross_cc_arm=$host_cc
B
bellard 已提交
735
  ;;
736 737
  aarch64)
    cpu="aarch64"
738
    supported_cpu="yes"
739
    cross_cc_aarch64=$host_cc
740
  ;;
A
Aurelien Jarno 已提交
741 742
  mips*)
    cpu="mips"
743
    supported_cpu="yes"
744
    cross_cc_mips=$host_cc
A
Aurelien Jarno 已提交
745
  ;;
746
  sparc|sun4[cdmuv])
B
bellard 已提交
747
    cpu="sparc"
748
    supported_cpu="yes"
749
    cross_cc_sparc=$host_cc
B
bellard 已提交
750
  ;;
B
bellard 已提交
751
  *)
752 753
    # This will result in either an error or falling back to TCI later
    ARCH=unknown
B
bellard 已提交
754 755
  ;;
esac
756 757 758
if test -z "$ARCH"; then
  ARCH="$cpu"
fi
J
Juan Quintela 已提交
759

B
bellard 已提交
760
# OS specific
761

762 763 764
# host *BSD for user mode
HOST_VARIANT_DIR=""

B
bellard 已提交
765
case $targetos in
B
bellard 已提交
766
MINGW32*)
767
  mingw32="yes"
768
  hax="yes"
769
  audio_possible_drivers="dsound sdl"
770 771 772 773 774
  if check_include dsound.h; then
    audio_drv_list="dsound"
  else
    audio_drv_list=""
  fi
775
  supported_os="yes"
B
bellard 已提交
776
;;
T
ths 已提交
777
GNU/kFreeBSD)
A
Aurelien Jarno 已提交
778
  bsd="yes"
779
  audio_drv_list="oss"
K
Kővágó, Zoltán 已提交
780
  audio_possible_drivers="oss sdl pa"
T
ths 已提交
781
;;
B
bellard 已提交
782
FreeBSD)
783
  bsd="yes"
784
  make="${MAKE-gmake}"
785
  audio_drv_list="oss"
K
Kővágó, Zoltán 已提交
786
  audio_possible_drivers="oss sdl pa"
787 788
  # needed for kinfo_getvmmap(3) in libutil.h
  LIBS="-lutil $LIBS"
E
Ed Maste 已提交
789 790
  # needed for kinfo_getproc
  libs_qga="-lutil $libs_qga"
791
  netmap=""  # enable netmap autodetect
792
  HOST_VARIANT_DIR="freebsd"
793
  supported_os="yes"
B
bellard 已提交
794
;;
795
DragonFly)
796
  bsd="yes"
797
  make="${MAKE-gmake}"
798
  audio_drv_list="oss"
K
Kővágó, Zoltán 已提交
799
  audio_possible_drivers="oss sdl pa"
800
  HOST_VARIANT_DIR="dragonfly"
801
;;
B
bellard 已提交
802
NetBSD)
803
  bsd="yes"
804
  make="${MAKE-gmake}"
805
  audio_drv_list="oss"
K
Kővágó, Zoltán 已提交
806
  audio_possible_drivers="oss sdl"
807
  oss_lib="-lossaudio"
808
  HOST_VARIANT_DIR="netbsd"
809
  supported_os="yes"
B
bellard 已提交
810 811
;;
OpenBSD)
812
  bsd="yes"
813
  make="${MAKE-gmake}"
B
Brad Smith 已提交
814
  audio_drv_list="sdl"
K
Kővágó, Zoltán 已提交
815
  audio_possible_drivers="sdl"
816
  HOST_VARIANT_DIR="openbsd"
817
  supported_os="yes"
B
bellard 已提交
818
;;
819
Darwin)
820 821
  bsd="yes"
  darwin="yes"
822
  hax="yes"
823
  hvf="yes"
F
Fam Zheng 已提交
824
  LDFLAGS_SHARED="-bundle -undefined dynamic_lookup"
825
  if [ "$cpu" = "x86_64" ] ; then
J
Juan Quintela 已提交
826
    QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
827
    LDFLAGS="-arch x86_64 $LDFLAGS"
828 829 830
  fi
  cocoa="yes"
  audio_drv_list="coreaudio"
K
Kővágó, Zoltán 已提交
831
  audio_possible_drivers="coreaudio sdl"
832
  LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
833
  libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
834 835 836
  # Disable attempts to use ObjectiveC features in os/object.h since they
  # won't work when we're compiling with gcc as a C compiler.
  QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS"
837
  HOST_VARIANT_DIR="darwin"
838
  supported_os="yes"
839
;;
B
bellard 已提交
840
SunOS)
841
  solaris="yes"
842 843
  make="${MAKE-gmake}"
  install="${INSTALL-ginstall}"
844
  smbd="${SMBD-/usr/sfw/sbin/smbd}"
845 846 847 848
  if test -f /usr/include/sys/soundcard.h ; then
    audio_drv_list="oss"
  fi
  audio_possible_drivers="oss sdl"
849 850 851 852
# needed for CMSG_ macros in sys/socket.h
  QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
# needed for TIOCWIN* defines in termios.h
  QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
J
Juan Quintela 已提交
853
  QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
854 855 856
  solarisnetlibs="-lsocket -lnsl -lresolv"
  LIBS="$solarisnetlibs $LIBS"
  libs_qga="$solarisnetlibs $libs_qga"
T
ths 已提交
857
;;
858 859 860 861 862
Haiku)
  haiku="yes"
  QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
  LIBS="-lposix_error_mapper -lnetwork $LIBS"
;;
863
Linux)
864
  audio_drv_list="oss"
K
Kővágó, Zoltán 已提交
865
  audio_possible_drivers="oss alsa sdl pa"
866 867
  linux="yes"
  linux_user="yes"
868 869
  kvm="yes"
  vhost_net="yes"
870
  vhost_crypto="yes"
871
  vhost_scsi="yes"
872
  vhost_vsock="yes"
873
  QEMU_INCLUDES="-I\$(SRC_PATH)/linux-headers -I$(pwd)/linux-headers $QEMU_INCLUDES"
874 875
  supported_os="yes"
;;
B
bellard 已提交
876 877
esac

B
bellard 已提交
878
if [ "$bsd" = "yes" ] ; then
879
  if [ "$darwin" != "yes" ] ; then
880
    bsd_user="yes"
881
  fi
B
bellard 已提交
882 883
fi

884 885
: ${make=${MAKE-make}}
: ${install=${INSTALL-install}}
886
: ${python=${PYTHON-python}}
887
: ${smbd=${SMBD-/usr/sbin/smbd}}
888

889 890 891 892 893 894 895
# Default objcc to clang if available, otherwise use CC
if has clang; then
  objcc=clang
else
  objcc="$cc"
fi

896 897
if test "$mingw32" = "yes" ; then
  EXESUF=".exe"
F
Fam Zheng 已提交
898
  DSOSUF=".dll"
J
Juan Quintela 已提交
899
  QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
900 901
  # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
  QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
S
Stefan Weil 已提交
902 903
  # MinGW needs -mthreads for TLS and macro _MT.
  QEMU_CFLAGS="-mthreads $QEMU_CFLAGS"
904
  LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
905
  write_c_skeleton;
906 907 908
  if compile_prog "" "-liberty" ; then
    LIBS="-liberty $LIBS"
  fi
909
  prefix="c:/Program Files/QEMU"
910
  mandir="\${prefix}"
911
  datadir="\${prefix}"
912
  qemu_docdir="\${prefix}"
913 914
  bindir="\${prefix}"
  sysconfdir="\${prefix}"
915
  local_statedir=
916
  confsuffix=""
917
  libs_qga="-lws2_32 -lwinmm -lpowrprof -lwtsapi32 -lwininet -liphlpapi -lnetapi32 $libs_qga"
918 919
fi

920
werror=""
921

B
bellard 已提交
922
for opt do
923
  optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
B
bellard 已提交
924
  case "$opt" in
925 926
  --help|-h) show_help=yes
  ;;
M
Mike Frysinger 已提交
927 928
  --version|-V) exec cat $source_path/VERSION
  ;;
929
  --prefix=*) prefix="$optarg"
B
bellard 已提交
930
  ;;
931
  --interp-prefix=*) interp_prefix="$optarg"
B
bellard 已提交
932
  ;;
P
Paolo Bonzini 已提交
933
  --source-path=*)
B
bellard 已提交
934
  ;;
935
  --cross-prefix=*)
B
bellard 已提交
936
  ;;
937
  --cc=*)
B
bellard 已提交
938
  ;;
939
  --host-cc=*) host_cc="$optarg"
B
bellard 已提交
940
  ;;
941 942
  --cxx=*)
  ;;
943 944
  --iasl=*) iasl="$optarg"
  ;;
945 946
  --objcc=*) objcc="$optarg"
  ;;
947
  --make=*) make="$optarg"
B
bellard 已提交
948
  ;;
949 950
  --install=*) install="$optarg"
  ;;
B
Blue Swirl 已提交
951 952
  --python=*) python="$optarg"
  ;;
B
Blue Swirl 已提交
953 954
  --gcov=*) gcov_tool="$optarg"
  ;;
955 956
  --smbd=*) smbd="$optarg"
  ;;
957
  --extra-cflags=*)
B
bellard 已提交
958
  ;;
959 960
  --extra-cxxflags=*)
  ;;
961
  --extra-ldflags=*)
B
bellard 已提交
962
  ;;
963 964 965 966
  --enable-debug-info)
  ;;
  --disable-debug-info)
  ;;
967 968
  --cross-cc-*)
  ;;
F
Fam Zheng 已提交
969 970
  --enable-modules)
      modules="yes"
971 972 973
  ;;
  --disable-modules)
      modules="no"
F
Fam Zheng 已提交
974
  ;;
975
  --cpu=*)
B
bellard 已提交
976
  ;;
977
  --target-list=*) target_list="$optarg"
B
bellard 已提交
978
  ;;
L
Lluís Vilanova 已提交
979 980 981 982
  --enable-trace-backends=*) trace_backends="$optarg"
  ;;
  # XXX: backwards compatibility
  --enable-trace-backend=*) trace_backends="$optarg"
983
  ;;
984
  --with-trace-file=*) trace_file="$optarg"
P
Prerna Saxena 已提交
985
  ;;
B
bellard 已提交
986 987
  --enable-gprof) gprof="yes"
  ;;
B
Blue Swirl 已提交
988 989
  --enable-gcov) gcov="yes"
  ;;
990 991 992
  --static)
    static="yes"
    LDFLAGS="-static $LDFLAGS"
993
    QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS"
B
bellard 已提交
994
  ;;
995 996 997 998
  --mandir=*) mandir="$optarg"
  ;;
  --bindir=*) bindir="$optarg"
  ;;
A
Alon Levy 已提交
999 1000
  --libdir=*) libdir="$optarg"
  ;;
1001 1002
  --libexecdir=*) libexecdir="$optarg"
  ;;
1003 1004
  --includedir=*) includedir="$optarg"
  ;;
1005
  --datadir=*) datadir="$optarg"
1006
  ;;
1007 1008
  --with-confsuffix=*) confsuffix="$optarg"
  ;;
1009
  --docdir=*) qemu_docdir="$optarg"
1010
  ;;
1011
  --sysconfdir=*) sysconfdir="$optarg"
1012
  ;;
L
Luiz Capitulino 已提交
1013 1014
  --localstatedir=*) local_statedir="$optarg"
  ;;
G
Gerd Hoffmann 已提交
1015 1016
  --firmwarepath=*) firmwarepath="$optarg"
  ;;
1017 1018
  --host=*|--build=*|\
  --disable-dependency-tracking|\
L
Luiz Capitulino 已提交
1019
  --sbindir=*|--sharedstatedir=*|\
1020 1021 1022 1023 1024 1025 1026
  --oldincludedir=*|--datarootdir=*|--infodir=*|--localedir=*|\
  --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*)
    # These switches are silently ignored, for compatibility with
    # autoconf-generated configure scripts. This allows QEMU's
    # configure to be used by RPM and similar macros that set
    # lots of directory switches by default.
  ;;
1027 1028
  --disable-sdl) sdl="no"
  ;;
1029 1030
  --enable-sdl) sdl="yes"
  ;;
1031 1032
  --with-sdlabi=*) sdlabi="$optarg"
  ;;
1033 1034 1035 1036
  --disable-qom-cast-debug) qom_cast_debug="no"
  ;;
  --enable-qom-cast-debug) qom_cast_debug="yes"
  ;;
1037 1038 1039 1040
  --disable-virtfs) virtfs="no"
  ;;
  --enable-virtfs) virtfs="yes"
  ;;
1041 1042 1043 1044
  --disable-mpath) mpath="no"
  ;;
  --enable-mpath) mpath="yes"
  ;;
J
Jes Sorensen 已提交
1045 1046 1047 1048
  --disable-vnc) vnc="no"
  ;;
  --enable-vnc) vnc="yes"
  ;;
B
blueswir1 已提交
1049 1050
  --oss-lib=*) oss_lib="$optarg"
  ;;
M
malc 已提交
1051
  --audio-drv-list=*) audio_drv_list="$optarg"
B
bellard 已提交
1052
  ;;
1053
  --block-drv-rw-whitelist=*|--block-drv-whitelist=*) block_drv_rw_whitelist=$(echo "$optarg" | sed -e 's/,/ /g')
1054
  ;;
1055
  --block-drv-ro-whitelist=*) block_drv_ro_whitelist=$(echo "$optarg" | sed -e 's/,/ /g')
1056
  ;;
1057 1058 1059 1060
  --enable-debug-tcg) debug_tcg="yes"
  ;;
  --disable-debug-tcg) debug_tcg="no"
  ;;
P
Paul Brook 已提交
1061 1062 1063
  --enable-debug)
      # Enable debugging options that aren't excessively noisy
      debug_tcg="yes"
1064
      debug_mutex="yes"
P
Paul Brook 已提交
1065 1066
      debug="yes"
      strip_opt="no"
1067
      fortify_source="no"
P
Paul Brook 已提交
1068
  ;;
1069 1070 1071 1072
  --enable-sanitizers) sanitizers="yes"
  ;;
  --disable-sanitizers) sanitizers="no"
  ;;
1073 1074 1075 1076
  --enable-sparse) sparse="yes"
  ;;
  --disable-sparse) sparse="no"
  ;;
1077 1078
  --disable-strip) strip_opt="no"
  ;;
1079 1080
  --disable-vnc-sasl) vnc_sasl="no"
  ;;
1081 1082
  --enable-vnc-sasl) vnc_sasl="yes"
  ;;
1083 1084 1085 1086
  --disable-vnc-jpeg) vnc_jpeg="no"
  ;;
  --enable-vnc-jpeg) vnc_jpeg="yes"
  ;;
C
Corentin Chary 已提交
1087 1088 1089 1090
  --disable-vnc-png) vnc_png="no"
  ;;
  --enable-vnc-png) vnc_png="yes"
  ;;
B
bellard 已提交
1091
  --disable-slirp) slirp="no"
1092
  ;;
1093
  --disable-vde) vde="no"
1094
  ;;
1095 1096
  --enable-vde) vde="yes"
  ;;
1097 1098 1099 1100
  --disable-netmap) netmap="no"
  ;;
  --enable-netmap) netmap="yes"
  ;;
1101 1102
  --disable-xen) xen="no"
  ;;
1103 1104
  --enable-xen) xen="yes"
  ;;
1105 1106 1107 1108
  --disable-xen-pci-passthrough) xen_pci_passthrough="no"
  ;;
  --enable-xen-pci-passthrough) xen_pci_passthrough="yes"
  ;;
1109 1110 1111 1112
  --disable-xen-pv-domain-build) xen_pv_domain_build="no"
  ;;
  --enable-xen-pv-domain-build) xen_pv_domain_build="yes"
  ;;
A
aurel32 已提交
1113 1114
  --disable-brlapi) brlapi="no"
  ;;
1115 1116
  --enable-brlapi) brlapi="yes"
  ;;
B
balrog 已提交
1117 1118
  --disable-bluez) bluez="no"
  ;;
1119 1120
  --enable-bluez) bluez="yes"
  ;;
A
aliguori 已提交
1121 1122
  --disable-kvm) kvm="no"
  ;;
1123 1124
  --enable-kvm) kvm="yes"
  ;;
1125
  --disable-hax) hax="no"
1126
  ;;
1127
  --enable-hax) hax="yes"
1128
  ;;
1129 1130 1131 1132
  --disable-hvf) hvf="no"
  ;;
  --enable-hvf) hvf="yes"
  ;;
1133 1134 1135 1136
  --disable-whpx) whpx="no"
  ;;
  --enable-whpx) whpx="yes"
  ;;
1137 1138 1139 1140
  --disable-tcg-interpreter) tcg_interpreter="no"
  ;;
  --enable-tcg-interpreter) tcg_interpreter="yes"
  ;;
1141 1142 1143 1144
  --disable-cap-ng)  cap_ng="no"
  ;;
  --enable-cap-ng) cap_ng="yes"
  ;;
1145 1146 1147 1148
  --disable-tcg) tcg="no"
  ;;
  --enable-tcg) tcg="yes"
  ;;
1149 1150 1151 1152
  --disable-malloc-trim) malloc_trim="no"
  ;;
  --enable-malloc-trim) malloc_trim="yes"
  ;;
1153 1154 1155 1156
  --disable-spice) spice="no"
  ;;
  --enable-spice) spice="yes"
  ;;
R
Ronnie Sahlberg 已提交
1157 1158 1159 1160
  --disable-libiscsi) libiscsi="no"
  ;;
  --enable-libiscsi) libiscsi="yes"
  ;;
P
Peter Lieven 已提交
1161 1162 1163 1164
  --disable-libnfs) libnfs="no"
  ;;
  --enable-libnfs) libnfs="yes"
  ;;
1165 1166
  --enable-profiler) profiler="yes"
  ;;
1167 1168
  --disable-cocoa) cocoa="no"
  ;;
1169 1170
  --enable-cocoa)
      cocoa="yes" ;
1171
      audio_drv_list="coreaudio $(echo $audio_drv_list | sed s,coreaudio,,g)"
1172
  ;;
P
pbrook 已提交
1173
  --disable-system) softmmu="no"
1174
  ;;
P
pbrook 已提交
1175
  --enable-system) softmmu="yes"
1176
  ;;
1177 1178 1179 1180 1181
  --disable-user)
      linux_user="no" ;
      bsd_user="no" ;
  ;;
  --enable-user) ;;
1182
  --disable-linux-user) linux_user="no"
1183
  ;;
1184 1185
  --enable-linux-user) linux_user="yes"
  ;;
B
blueswir1 已提交
1186 1187 1188 1189
  --disable-bsd-user) bsd_user="no"
  ;;
  --enable-bsd-user) bsd_user="yes"
  ;;
1190
  --enable-pie) pie="yes"
1191
  ;;
1192
  --disable-pie) pie="no"
1193
  ;;
1194 1195 1196 1197
  --enable-werror) werror="yes"
  ;;
  --disable-werror) werror="no"
  ;;
1198 1199 1200 1201
  --enable-stack-protector) stack_protector="yes"
  ;;
  --disable-stack-protector) stack_protector="no"
  ;;
B
balrog 已提交
1202 1203
  --disable-curses) curses="no"
  ;;
1204 1205
  --enable-curses) curses="yes"
  ;;
A
Alexander Graf 已提交
1206 1207
  --disable-curl) curl="no"
  ;;
1208 1209
  --enable-curl) curl="yes"
  ;;
1210 1211 1212 1213
  --disable-fdt) fdt="no"
  ;;
  --enable-fdt) fdt="yes"
  ;;
1214 1215 1216 1217
  --disable-linux-aio) linux_aio="no"
  ;;
  --enable-linux-aio) linux_aio="yes"
  ;;
1218 1219 1220 1221
  --disable-attr) attr="no"
  ;;
  --enable-attr) attr="yes"
  ;;
1222 1223 1224 1225
  --disable-membarrier) membarrier="no"
  ;;
  --enable-membarrier) membarrier="yes"
  ;;
T
ths 已提交
1226 1227
  --disable-blobs) blobs="no"
  ;;
1228
  --with-pkgversion=*) pkgversion="$optarg"
P
pbrook 已提交
1229
  ;;
1230 1231
  --with-coroutine=*) coroutine="$optarg"
  ;;
1232 1233 1234 1235
  --disable-coroutine-pool) coroutine_pool="no"
  ;;
  --enable-coroutine-pool) coroutine_pool="yes"
  ;;
1236 1237
  --enable-debug-stack-usage) debug_stack_usage="yes"
  ;;
1238 1239 1240 1241
  --enable-crypto-afalg) crypto_afalg="yes"
  ;;
  --disable-crypto-afalg) crypto_afalg="no"
  ;;
J
Juan Quintela 已提交
1242
  --disable-docs) docs="no"
1243
  ;;
J
Juan Quintela 已提交
1244
  --enable-docs) docs="yes"
1245
  ;;
M
Michael S. Tsirkin 已提交
1246 1247 1248 1249
  --disable-vhost-net) vhost_net="no"
  ;;
  --enable-vhost-net) vhost_net="yes"
  ;;
1250 1251 1252 1253 1254 1255 1256 1257
  --disable-vhost-crypto) vhost_crypto="no"
  ;;
  --enable-vhost-crypto)
      vhost_crypto="yes"
      if test "$mingw32" = "yes"; then
          error_exit "vhost-crypto isn't available on win32"
      fi
  ;;
1258 1259 1260 1261
  --disable-vhost-scsi) vhost_scsi="no"
  ;;
  --enable-vhost-scsi) vhost_scsi="yes"
  ;;
1262 1263 1264 1265
  --disable-vhost-vsock) vhost_vsock="no"
  ;;
  --enable-vhost-vsock) vhost_vsock="yes"
  ;;
G
Gerd Hoffmann 已提交
1266
  --disable-opengl) opengl="no"
M
Michael Walle 已提交
1267
  ;;
G
Gerd Hoffmann 已提交
1268
  --enable-opengl) opengl="yes"
M
Michael Walle 已提交
1269
  ;;
1270 1271 1272 1273
  --disable-rbd) rbd="no"
  ;;
  --enable-rbd) rbd="yes"
  ;;
1274 1275 1276 1277
  --disable-xfsctl) xfs="no"
  ;;
  --enable-xfsctl) xfs="yes"
  ;;
1278
  --disable-smartcard) smartcard="no"
R
Robert Relyea 已提交
1279
  ;;
1280
  --enable-smartcard) smartcard="yes"
R
Robert Relyea 已提交
1281
  ;;
G
Gerd Hoffmann 已提交
1282 1283 1284 1285
  --disable-libusb) libusb="no"
  ;;
  --enable-libusb) libusb="yes"
  ;;
1286 1287 1288 1289
  --disable-usb-redir) usb_redir="no"
  ;;
  --enable-usb-redir) usb_redir="yes"
  ;;
A
Alon Levy 已提交
1290 1291
  --disable-zlib-test) zlib="no"
  ;;
1292 1293
  --disable-lzo) lzo="no"
  ;;
Q
qiaonuohan 已提交
1294 1295
  --enable-lzo) lzo="yes"
  ;;
1296 1297
  --disable-snappy) snappy="no"
  ;;
Q
qiaonuohan 已提交
1298 1299
  --enable-snappy) snappy="yes"
  ;;
1300 1301 1302 1303
  --disable-bzip2) bzip2="no"
  ;;
  --enable-bzip2) bzip2="yes"
  ;;
1304 1305 1306 1307
  --enable-guest-agent) guest_agent="yes"
  ;;
  --disable-guest-agent) guest_agent="no"
  ;;
1308 1309 1310 1311
  --enable-guest-agent-msi) guest_agent_msi="yes"
  ;;
  --disable-guest-agent-msi) guest_agent_msi="no"
  ;;
1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
  --with-vss-sdk) vss_win32_sdk=""
  ;;
  --with-vss-sdk=*) vss_win32_sdk="$optarg"
  ;;
  --without-vss-sdk) vss_win32_sdk="no"
  ;;
  --with-win-sdk) win_sdk=""
  ;;
  --with-win-sdk=*) win_sdk="$optarg"
  ;;
  --without-win-sdk) win_sdk="no"
  ;;
1324 1325 1326 1327
  --enable-tools) want_tools="yes"
  ;;
  --disable-tools) want_tools="no"
  ;;
1328 1329 1330 1331
  --enable-seccomp) seccomp="yes"
  ;;
  --disable-seccomp) seccomp="no"
  ;;
1332 1333 1334 1335
  --disable-glusterfs) glusterfs="no"
  ;;
  --enable-glusterfs) glusterfs="yes"
  ;;
1336 1337
  --disable-virtio-blk-data-plane|--enable-virtio-blk-data-plane)
      echo "$0: $opt is obsolete, virtio-blk data-plane is always on" >&2
1338
  ;;
F
Fam Zheng 已提交
1339 1340 1341
  --enable-vhdx|--disable-vhdx)
      echo "$0: $opt is obsolete, VHDX driver is always built" >&2
  ;;
1342 1343 1344
  --enable-uuid|--disable-uuid)
      echo "$0: $opt is obsolete, UUID support is always built" >&2
  ;;
A
Anthony Liguori 已提交
1345 1346 1347 1348
  --disable-gtk) gtk="no"
  ;;
  --enable-gtk) gtk="yes"
  ;;
1349 1350
  --tls-priority=*) tls_priority="$optarg"
  ;;
1351 1352 1353 1354
  --disable-gnutls) gnutls="no"
  ;;
  --enable-gnutls) gnutls="yes"
  ;;
1355 1356 1357 1358 1359 1360 1361 1362
  --disable-nettle) nettle="no"
  ;;
  --enable-nettle) nettle="yes"
  ;;
  --disable-gcrypt) gcrypt="no"
  ;;
  --enable-gcrypt) gcrypt="yes"
  ;;
M
Michael R. Hines 已提交
1363 1364 1365 1366
  --enable-rdma) rdma="yes"
  ;;
  --disable-rdma) rdma="no"
  ;;
1367 1368 1369 1370
  --enable-pvrdma) pvrdma="yes"
  ;;
  --disable-pvrdma) pvrdma="no"
  ;;
1371 1372
  --with-gtkabi=*) gtkabi="$optarg"
  ;;
S
Stefan Weil 已提交
1373 1374 1375 1376
  --disable-vte) vte="no"
  ;;
  --enable-vte) vte="yes"
  ;;
1377 1378 1379 1380
  --disable-virglrenderer) virglrenderer="no"
  ;;
  --enable-virglrenderer) virglrenderer="yes"
  ;;
1381 1382
  --disable-tpm) tpm="no"
  ;;
S
Stefan Berger 已提交
1383 1384
  --enable-tpm) tpm="yes"
  ;;
1385 1386 1387 1388
  --disable-libssh2) libssh2="no"
  ;;
  --enable-libssh2) libssh2="yes"
  ;;
1389 1390 1391 1392
  --disable-live-block-migration) live_block_migration="no"
  ;;
  --enable-live-block-migration) live_block_migration="yes"
  ;;
1393 1394 1395 1396
  --disable-numa) numa="no"
  ;;
  --enable-numa) numa="yes"
  ;;
K
Klim Kireev 已提交
1397 1398 1399 1400
  --disable-libxml2) libxml2="no"
  ;;
  --enable-libxml2) libxml2="yes"
  ;;
F
Fam Zheng 已提交
1401 1402 1403 1404
  --disable-tcmalloc) tcmalloc="no"
  ;;
  --enable-tcmalloc) tcmalloc="yes"
  ;;
1405 1406 1407 1408
  --disable-jemalloc) jemalloc="no"
  ;;
  --enable-jemalloc) jemalloc="yes"
  ;;
C
Changlong Xie 已提交
1409 1410 1411 1412
  --disable-replication) replication="no"
  ;;
  --enable-replication) replication="yes"
  ;;
1413 1414 1415 1416
  --disable-vxhs) vxhs="no"
  ;;
  --enable-vxhs) vxhs="yes"
  ;;
1417 1418 1419 1420 1421 1422 1423 1424
  --disable-vhost-user) vhost_user="no"
  ;;
  --enable-vhost-user)
      vhost_user="yes"
      if test "$mingw32" = "yes"; then
          error_exit "vhost-user isn't available on win32"
      fi
  ;;
1425 1426 1427 1428
  --disable-capstone) capstone="no"
  ;;
  --enable-capstone) capstone="yes"
  ;;
1429 1430 1431 1432
  --enable-capstone=git) capstone="git"
  ;;
  --enable-capstone=system) capstone="system"
  ;;
1433 1434
  --with-git=*) git="$optarg"
  ;;
1435 1436 1437 1438
  --enable-git-update) git_update=yes
  ;;
  --disable-git-update) git_update=no
  ;;
1439 1440 1441 1442
  --enable-debug-mutex) debug_mutex=yes
  ;;
  --disable-debug-mutex) debug_mutex=no
  ;;
J
Junyan He 已提交
1443 1444 1445 1446
  --enable-libpmem) libpmem=yes
  ;;
  --disable-libpmem) libpmem=no
  ;;
F
Fam Zheng 已提交
1447 1448 1449 1450
  *)
      echo "ERROR: unknown option $opt"
      echo "Try '$0 --help' for more information"
      exit 1
1451
  ;;
B
bellard 已提交
1452 1453 1454
  esac
done

1455 1456 1457 1458 1459 1460 1461 1462
if test "$vhost_user" = ""; then
    if test "$mingw32" = "yes"; then
        vhost_user="no"
    else
        vhost_user="yes"
    fi
fi

1463
case "$cpu" in
1464 1465 1466
    ppc)
           CPU_CFLAGS="-m32"
           LDFLAGS="-m32 $LDFLAGS"
1467 1468
           cross_cc_powerpc=$cc
           cross_cc_cflags_powerpc=$CPU_CFLAGS
1469 1470 1471 1472
           ;;
    ppc64)
           CPU_CFLAGS="-m64"
           LDFLAGS="-m64 $LDFLAGS"
1473 1474
           cross_cc_ppc64=$cc
           cross_cc_cflags_ppc64=$CPU_CFLAGS
1475
           ;;
1476
    sparc)
1477 1478
           CPU_CFLAGS="-m32 -mv8plus -mcpu=ultrasparc"
           LDFLAGS="-m32 -mv8plus $LDFLAGS"
1479 1480
           cross_cc_sparc=$cc
           cross_cc_cflags_sparc=$CPU_CFLAGS
1481
           ;;
1482
    sparc64)
1483
           CPU_CFLAGS="-m64 -mcpu=ultrasparc"
1484
           LDFLAGS="-m64 $LDFLAGS"
1485 1486
           cross_cc_sparc64=$cc
           cross_cc_cflags_sparc64=$CPU_CFLAGS
1487
           ;;
1488
    s390)
1489
           CPU_CFLAGS="-m31"
1490
           LDFLAGS="-m31 $LDFLAGS"
1491 1492
           cross_cc_s390=$cc
           cross_cc_cflags_s390=$CPU_CFLAGS
1493 1494
           ;;
    s390x)
1495
           CPU_CFLAGS="-m64"
1496
           LDFLAGS="-m64 $LDFLAGS"
1497 1498
           cross_cc_s390x=$cc
           cross_cc_cflags_s390x=$CPU_CFLAGS
1499
           ;;
1500
    i386)
1501
           CPU_CFLAGS="-m32"
1502
           LDFLAGS="-m32 $LDFLAGS"
1503 1504
           cross_cc_i386=$cc
           cross_cc_cflags_i386=$CPU_CFLAGS
1505 1506
           ;;
    x86_64)
R
Richard Henderson 已提交
1507 1508 1509 1510
           # ??? Only extremely old AMD cpus do not have cmpxchg16b.
           # If we truly care, we should simply detect this case at
           # runtime and generate the fallback to serial emulation.
           CPU_CFLAGS="-m64 -mcx16"
1511
           LDFLAGS="-m64 $LDFLAGS"
1512 1513
           cross_cc_x86_64=$cc
           cross_cc_cflags_x86_64=$CPU_CFLAGS
1514
           ;;
1515 1516 1517
    x32)
           CPU_CFLAGS="-mx32"
           LDFLAGS="-mx32 $LDFLAGS"
1518
           cross_cc_i386=$cc
1519
           cross_cc_cflags_i386=$CPU_CFLAGS
1520
           ;;
1521
    # No special flags required for other host CPUs
1522 1523
esac

1524 1525
QEMU_CFLAGS="$CPU_CFLAGS $QEMU_CFLAGS"

1526 1527 1528 1529 1530 1531 1532
# For user-mode emulation the host arch has to be one we explicitly
# support, even if we're using TCI.
if [ "$ARCH" = "unknown" ]; then
  bsd_user="no"
  linux_user="no"
fi

1533 1534
default_target_list=""

1535 1536 1537 1538
mak_wilds=""

if [ "$softmmu" = "yes" ]; then
    mak_wilds="${mak_wilds} $source_path/default-configs/*-softmmu.mak"
1539
fi
1540 1541
if [ "$linux_user" = "yes" ]; then
    mak_wilds="${mak_wilds} $source_path/default-configs/*-linux-user.mak"
1542
fi
1543 1544
if [ "$bsd_user" = "yes" ]; then
    mak_wilds="${mak_wilds} $source_path/default-configs/*-bsd-user.mak"
1545 1546
fi

1547 1548 1549 1550
for config in $mak_wilds; do
    default_target_list="${default_target_list} $(basename "$config" .mak)"
done

1551
# Enumerate public trace backends for --help output
1552
trace_backend_list=$(echo $(grep -le '^PUBLIC = True$' "$source_path"/scripts/tracetool/backend/*.py | sed -e 's/^.*\/\(.*\)\.py$/\1/'))
1553

1554 1555 1556 1557 1558 1559
if test x"$show_help" = x"yes" ; then
cat << EOF

Usage: configure [options]
Options: [defaults in brackets after descriptions]

1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578
Standard options:
  --help                   print this message
  --prefix=PREFIX          install in PREFIX [$prefix]
  --interp-prefix=PREFIX   where to find shared libraries, etc.
                           use %M for cpu name [$interp_prefix]
  --target-list=LIST       set target list (default: build everything)
$(echo Available targets: $default_target_list | \
  fold -s -w 53 | sed -e 's/^/                           /')

Advanced options (experts only):
  --source-path=PATH       path of source code [$source_path]
  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]
  --cc=CC                  use C compiler CC [$cc]
  --iasl=IASL              use ACPI compiler IASL [$iasl]
  --host-cc=CC             use C compiler CC [$host_cc] for code run at
                           build time
  --cxx=CXX                use C++ compiler CXX [$cxx]
  --objcc=OBJCC            use Objective-C compiler OBJCC [$objcc]
  --extra-cflags=CFLAGS    append extra C compiler flags QEMU_CFLAGS
1579
  --extra-cxxflags=CXXFLAGS append extra C++ compiler flags QEMU_CXXFLAGS
1580
  --extra-ldflags=LDFLAGS  append extra linker flags LDFLAGS
1581
  --cross-cc-ARCH=CC       use compiler when building ARCH guest test cases
1582
  --cross-cc-flags-ARCH=   use compiler flags when building ARCH guest tests
1583 1584 1585 1586
  --make=MAKE              use specified make [$make]
  --install=INSTALL        use specified install [$install]
  --python=PYTHON          use specified python [$python]
  --smbd=SMBD              use specified smbd [$smbd]
1587
  --with-git=GIT           use specified git [$git]
1588 1589 1590 1591 1592 1593
  --static                 enable static build [$static]
  --mandir=PATH            install man pages in PATH
  --datadir=PATH           install firmware in PATH$confsuffix
  --docdir=PATH            install documentation in PATH$confsuffix
  --bindir=PATH            install binaries in PATH
  --libdir=PATH            install libraries in PATH
1594
  --libexecdir=PATH        install helper binaries in PATH
1595 1596
  --sysconfdir=PATH        install config in PATH$confsuffix
  --localstatedir=PATH     install local state in PATH (set at runtime on win32)
G
Gerd Hoffmann 已提交
1597
  --firmwarepath=PATH      search PATH for firmware files
F
Fam Zheng 已提交
1598
  --with-confsuffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir [$confsuffix]
1599
  --with-pkgversion=VERS   use specified string as sub-version of the package
1600
  --enable-debug           enable common debug build options
1601
  --enable-sanitizers      enable default sanitizers
1602 1603
  --disable-strip          disable stripping binaries
  --disable-werror         disable compilation abort on warning
1604
  --disable-stack-protector disable compiler-provided stack protection
1605 1606 1607 1608 1609 1610 1611 1612 1613
  --audio-drv-list=LIST    set audio drivers list:
                           Available drivers: $audio_possible_drivers
  --block-drv-whitelist=L  Same as --block-drv-rw-whitelist=L
  --block-drv-rw-whitelist=L
                           set block driver read-write whitelist
                           (affects only QEMU, not qemu-img)
  --block-drv-ro-whitelist=L
                           set block driver read-only whitelist
                           (affects only QEMU, not qemu-img)
L
Lluís Vilanova 已提交
1614
  --enable-trace-backends=B Set trace backend
1615
                           Available backends: $trace_backend_list
1616 1617
  --with-trace-file=NAME   Full PATH,NAME of file to store traces
                           Default:trace-<pid>
1618 1619
  --disable-slirp          disable SLIRP userspace network connectivity
  --enable-tcg-interpreter enable TCG with bytecode interpreter (TCI)
1620
  --enable-malloc-trim     enable libc malloc_trim() for memory optimization
1621 1622
  --oss-lib                path to OSS library
  --cpu=CPU                Build for host CPU [$cpu]
1623
  --with-coroutine=BACKEND coroutine backend. Supported options:
1624
                           ucontext, sigaltstack, windows
1625 1626
  --enable-gcov            enable test coverage analysis with gcov
  --gcov=GCOV              use specified gcov [$gcov_tool]
1627 1628 1629
  --disable-blobs          disable installing provided firmware blobs
  --with-vss-sdk=SDK-path  enable Windows VSS support in QEMU Guest Agent
  --with-win-sdk=SDK-path  path to Windows Platform SDK (to build VSS .tlb)
1630
  --tls-priority           default TLS protocol/cipher priority string
1631 1632 1633 1634 1635 1636
  --enable-gprof           QEMU profiling with gprof
  --enable-profiler        profiler support
  --enable-xen-pv-domain-build
                           xen pv domain builder
  --enable-debug-stack-usage
                           track the maximum stack usage of stacks created by qemu_alloc_stack
1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653

Optional features, enabled with --enable-FEATURE and
disabled with --disable-FEATURE, default is enabled if available:

  system          all system emulation targets
  user            supported user emulation targets
  linux-user      all linux usermode emulation targets
  bsd-user        all BSD usermode emulation targets
  docs            build documentation
  guest-agent     build the QEMU Guest Agent
  guest-agent-msi build guest agent Windows MSI installation package
  pie             Position Independent Executables
  modules         modules support
  debug-tcg       TCG debugging (default is disabled)
  debug-info      debugging information
  sparse          sparse checker

1654
  gnutls          GNUTLS cryptography support
1655 1656
  nettle          nettle cryptography support
  gcrypt          libgcrypt cryptography support
1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668
  sdl             SDL UI
  --with-sdlabi     select preferred SDL ABI 1.2 or 2.0
  gtk             gtk UI
  --with-gtkabi     select preferred GTK ABI 2.0 or 3.0
  vte             vte support for the gtk UI
  curses          curses UI
  vnc             VNC UI support
  vnc-sasl        SASL encryption for VNC server
  vnc-jpeg        JPEG lossy compression for VNC server
  vnc-png         PNG compression for VNC server
  cocoa           Cocoa UI (Mac OS X only)
  virtfs          VirtFS
1669
  mpath           Multipath persistent reservation passthrough
1670
  xen             xen backend driver support
1671
  xen-pci-passthrough    PCI passthrough support for Xen
1672 1673
  brlapi          BrlAPI (Braile)
  curl            curl connectivity
1674
  membarrier      membarrier system call (for Linux 4.14+ or Windows)
1675 1676 1677
  fdt             fdt device tree
  bluez           bluez stack connectivity
  kvm             KVM acceleration support
1678
  hax             HAX acceleration support
1679
  hvf             Hypervisor.framework acceleration support
1680
  whpx            Windows Hypervisor Platform acceleration support
1681 1682
  rdma            Enable RDMA-based migration
  pvrdma          Enable PVRDMA support
1683 1684 1685 1686 1687 1688
  vde             support for vde network
  netmap          support for netmap network
  linux-aio       Linux AIO support
  cap-ng          libcap-ng support
  attr            attr and xattr support
  vhost-net       vhost-net acceleration support
1689
  vhost-crypto    vhost-crypto acceleration support
1690 1691 1692 1693
  spice           spice
  rbd             rados block device (rbd)
  libiscsi        iscsi support
  libnfs          nfs support
1694
  smartcard       smartcard support (libcacard)
1695
  libusb          libusb (for usb passthrough)
1696
  live-block-migration   Block migration in the main migration stream
1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707
  usb-redir       usb network redirection support
  lzo             support of lzo compression library
  snappy          support of snappy compression library
  bzip2           support of bzip2 compression library
                  (for reading bzip2-compressed dmg images)
  seccomp         seccomp support
  coroutine-pool  coroutine freelist (better performance)
  glusterfs       GlusterFS backend
  tpm             TPM support
  libssh2         ssh block device support
  numa            libnuma support
K
Klim Kireev 已提交
1708
  libxml2         for Parallels image format
1709
  tcmalloc        tcmalloc support
1710
  jemalloc        jemalloc support
C
Changlong Xie 已提交
1711
  replication     replication support
1712 1713 1714 1715 1716 1717
  vhost-vsock     virtio sockets device support
  opengl          opengl support
  virglrenderer   virgl rendering support
  xfsctl          xfsctl support
  qom-cast-debug  cast debugging support
  tools           build qemu-io, qemu-nbd and qemu-image tools
1718
  vxhs            Veritas HyperScale vDisk backend support
1719
  crypto-afalg    Linux AF_ALG crypto backend driver
1720
  vhost-user      vhost-user support
1721
  capstone        capstone disassembler support
1722
  debug-mutex     mutex debugging support
J
Junyan He 已提交
1723
  libpmem         libpmem support
1724 1725

NOTE: The object files are built at the place where configure is launched
1726
EOF
F
Fam Zheng 已提交
1727
exit 0
1728 1729
fi

1730 1731 1732 1733 1734 1735
if ! has $python; then
  error_exit "Python not found. Use --python=/path/to/python"
fi

# Note that if the Python conditional here evaluates True we will exit
# with status 1 which is a shell 'false' value.
1736 1737
if ! $python -c 'import sys; sys.exit(sys.version_info < (2,7))'; then
  error_exit "Cannot use '$python', Python 2 >= 2.7 or Python 3 is required." \
1738 1739 1740 1741 1742 1743
      "Use --python=/path/to/python to specify a supported Python."
fi

# Suppress writing compiled files
python="$python -B"

1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757
# Check that the C compiler works. Doing this here before testing
# the host CPU ensures that we had a valid CC to autodetect the
# $cpu var (and we should bail right here if that's not the case).
# It also allows the help message to be printed without a CC.
write_c_skeleton;
if compile_object ; then
  : C compiler works ok
else
    error_exit "\"$cc\" either does not exist or does not work"
fi
if ! compile_prog ; then
    error_exit "\"$cc\" cannot build an executable (is your linker broken?)"
fi

1758 1759 1760 1761 1762 1763
# Now we have handled --enable-tcg-interpreter and know we're not just
# printing the help message, bail out if the host CPU isn't supported.
if test "$ARCH" = "unknown"; then
    if test "$tcg_interpreter" = "yes" ; then
        echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)"
    else
1764
        error_exit "Unsupported CPU = $cpu, try --enable-tcg-interpreter"
1765 1766 1767
    fi
fi

1768 1769 1770 1771
# Consult white-list to determine whether to enable werror
# by default.  Only enable by default for git builds
if test -z "$werror" ; then
    if test -d "$source_path/.git" -a \
1772
        \( "$linux" = "yes" -o "$mingw32" = "yes" \) ; then
1773 1774 1775 1776 1777 1778
        werror="yes"
    else
        werror="no"
    fi
fi

1779 1780 1781 1782 1783
if test "$bogus_os" = "yes"; then
    # Now that we know that we're not printing the help and that
    # the compiler works (so the results of the check_defines we used
    # to identify the OS are reliable), if we didn't recognize the
    # host OS we should stop now.
1784
    error_exit "Unrecognized host OS (uname -s reports '$(uname -s)')"
1785 1786
fi

1787 1788
gcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
gcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
1789
gcc_flags="-Wno-missing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
1790
gcc_flags="-Wendif-labels -Wno-shift-negative-value $gcc_flags"
1791
gcc_flags="-Wno-initializer-overrides -Wexpansion-to-defined $gcc_flags"
1792
gcc_flags="-Wno-string-plus-int $gcc_flags"
1793
gcc_flags="-Wno-error=address-of-packed-member $gcc_flags"
1794 1795 1796 1797
# Note that we do not add -Werror to gcc_flags here, because that would
# enable it for all configure tests. If a configure test failed due
# to -Werror this would just silently disable some features,
# so it's too error prone.
1798 1799 1800 1801

cc_has_warning_flag() {
    write_c_skeleton;

1802 1803 1804
    # Use the positive sense of the flag when testing for -Wno-wombat
    # support (gcc will happily accept the -Wno- form of unknown
    # warning options).
1805 1806 1807 1808 1809 1810 1811
    optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')"
    compile_prog "-Werror $optflag" ""
}

for flag in $gcc_flags; do
    if cc_has_warning_flag $flag ; then
        QEMU_CFLAGS="$QEMU_CFLAGS $flag"
1812 1813 1814
    fi
done

1815
if test "$stack_protector" != "no"; then
1816 1817 1818 1819 1820 1821 1822 1823 1824 1825
  cat > $TMPC << EOF
int main(int argc, char *argv[])
{
    char arr[64], *p = arr, *c = argv[0];
    while (*c) {
        *p++ = *c++;
    }
    return 0;
}
EOF
1826
  gcc_flags="-fstack-protector-strong -fstack-protector-all"
1827
  sp_on=0
1828
  for flag in $gcc_flags; do
1829 1830 1831 1832
    # We need to check both a compile and a link, since some compiler
    # setups fail only on a .c->.o compile and some only at link time
    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC &&
       compile_prog "-Werror $flag" ""; then
1833
      QEMU_CFLAGS="$QEMU_CFLAGS $flag"
1834
      sp_on=1
1835 1836 1837
      break
    fi
  done
1838 1839 1840 1841 1842
  if test "$stack_protector" = yes; then
    if test $sp_on = 0; then
      error_exit "Stack protector not supported"
    fi
  fi
1843 1844
fi

1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857
# Disable -Wmissing-braces on older compilers that warn even for
# the "universal" C zero initializer {0}.
cat > $TMPC << EOF
struct {
  int a[2];
} x = {0};
EOF
if compile_object "-Werror" "" ; then
  :
else
  QEMU_CFLAGS="$QEMU_CFLAGS -Wno-missing-braces"
fi

1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872
# Workaround for http://gcc.gnu.org/PR55489.  Happens with -fPIE/-fPIC and
# large functions that use global variables.  The bug is in all releases of
# GCC, but it became particularly acute in 4.6.x and 4.7.x.  It is fixed in
# 4.7.3 and 4.8.0.  We should be able to delete this at the end of 2013.
cat > $TMPC << EOF
#if __GNUC__ == 4 && (__GNUC_MINOR__ == 6 || (__GNUC_MINOR__ == 7 && __GNUC_PATCHLEVEL__ <= 2))
int main(void) { return 0; }
#else
#error No bug in this compiler.
#endif
EOF
if compile_prog "-Werror -fno-gcse" "" ; then
  TRANSLATE_OPT_CFLAGS=-fno-gcse
fi

1873
if test "$static" = "yes" ; then
1874 1875 1876
  if test "$modules" = "yes" ; then
    error_exit "static and modules are mutually incompatible"
  fi
1877
  if test "$pie" = "yes" ; then
1878
    error_exit "static and pie are mutually incompatible"
1879 1880 1881 1882 1883
  else
    pie="no"
  fi
fi

1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894
# Unconditional check for compiler __thread support
  cat > $TMPC << EOF
static __thread int tls_var;
int main(void) { return tls_var; }
EOF

if ! compile_prog "-Werror" "" ; then
    error_exit "Your compiler does not support the __thread specifier for " \
	"Thread-Local Storage (TLS). Please upgrade to a version that does."
fi

1895 1896
if test "$pie" = ""; then
  case "$cpu-$targetos" in
1897
    i386-Linux|x86_64-Linux|x32-Linux|i386-OpenBSD|x86_64-OpenBSD)
1898 1899 1900 1901 1902 1903 1904 1905 1906
      ;;
    *)
      pie="no"
      ;;
  esac
fi

if test "$pie" != "no" ; then
  cat > $TMPC << EOF
1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917

#ifdef __linux__
#  define THREAD __thread
#else
#  define THREAD
#endif

static THREAD int tls_var;

int main(void) { return tls_var; }

1918 1919 1920 1921 1922 1923 1924 1925 1926 1927
EOF
  if compile_prog "-fPIE -DPIE" "-pie"; then
    QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS"
    LDFLAGS="-pie $LDFLAGS"
    pie="yes"
    if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then
      LDFLAGS="-Wl,-z,relro -Wl,-z,now $LDFLAGS"
    fi
  else
    if test "$pie" = "yes"; then
1928
      error_exit "PIE not available due to missing toolchain support"
1929 1930 1931 1932 1933
    else
      echo "Disabling PIE due to missing toolchain support"
      pie="no"
    fi
  fi
B
Brad 已提交
1934

1935
  if compile_prog "-Werror -fno-pie" "-nopie"; then
B
Brad 已提交
1936 1937 1938
    CFLAGS_NOPIE="-fno-pie"
    LDFLAGS_NOPIE="-nopie"
  fi
1939 1940
fi

P
Paolo Bonzini 已提交
1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955
##########################################
# __sync_fetch_and_and requires at least -march=i486. Many toolchains
# use i686 as default anyway, but for those that don't, an explicit
# specification is necessary

if test "$cpu" = "i386"; then
  cat > $TMPC << EOF
static int sfaa(int *ptr)
{
  return __sync_fetch_and_and(ptr, 0);
}

int main(void)
{
  int val = 42;
1956
  val = __sync_val_compare_and_swap(&val, 0, 1);
P
Paolo Bonzini 已提交
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966
  sfaa(&val);
  return val;
}
EOF
  if ! compile_prog "" "" ; then
    QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS"
  fi
fi

#########################################
B
bellard 已提交
1967
# Solaris specific configure tool chain decisions
P
Paolo Bonzini 已提交
1968

B
bellard 已提交
1969
if test "$solaris" = "yes" ; then
1970 1971 1972
  if has $install; then
    :
  else
1973 1974 1975
    error_exit "Solaris install program not found. Use --install=/usr/ucb/install or" \
        "install fileutils from www.blastwave.org using pkg-get -i fileutils" \
        "to get ginstall which is used by default (which lives in /opt/csw/bin)"
B
bellard 已提交
1976
  fi
1977
  if test "$(path_of $install)" = "/usr/sbin/install" ; then
1978 1979 1980
    error_exit "Solaris /usr/sbin/install is not an appropriate install program." \
        "try ginstall from the GNU fileutils available from www.blastwave.org" \
        "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
B
bellard 已提交
1981
  fi
1982 1983 1984
  if has ar; then
    :
  else
B
bellard 已提交
1985
    if test -f /usr/ccs/bin/ar ; then
1986 1987
      error_exit "No path includes ar" \
          "Add /usr/ccs/bin to your path and rerun configure"
B
bellard 已提交
1988
    fi
1989
    error_exit "No path includes ar"
B
bellard 已提交
1990
  fi
1991
fi
B
bellard 已提交
1992

1993
if test -z "${target_list+xxx}" ; then
1994 1995 1996 1997 1998
    for target in $default_target_list; do
        supported_target $target 2>/dev/null && \
            target_list="$target_list $target"
    done
    target_list="${target_list# }"
1999
else
2000
    target_list=$(echo "$target_list" | sed -e 's/,/ /g')
2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012
    for target in $target_list; do
        # Check that we recognised the target name; this allows a more
        # friendly error message than if we let it fall through.
        case " $default_target_list " in
            *" $target "*)
                ;;
            *)
                error_exit "Unknown target name '$target'"
                ;;
        esac
        supported_target $target || exit 1
    done
2013
fi
2014

P
Paolo Bonzini 已提交
2015 2016 2017 2018 2019 2020 2021
# see if system emulation was really requested
case " $target_list " in
  *"-softmmu "*) softmmu=yes
  ;;
  *) softmmu=no
  ;;
esac
B
bellard 已提交
2022

2023 2024
feature_not_found() {
  feature=$1
2025
  remedy=$2
2026

2027
  error_exit "User requested feature $feature" \
2028 2029
      "configure was not able to find it." \
      "$remedy"
2030 2031
}

B
bellard 已提交
2032 2033 2034
# ---
# big/little endian test
cat > $TMPC << EOF
2035 2036 2037 2038 2039
short big_endian[] = { 0x4269, 0x4765, 0x4e64, 0x4961, 0x4e00, 0, };
short little_endian[] = { 0x694c, 0x7454, 0x654c, 0x6e45, 0x6944, 0x6e41, 0, };
extern int foo(short *, short *);
int main(int argc, char *argv[]) {
    return foo(big_endian, little_endian);
B
bellard 已提交
2040 2041 2042
}
EOF

2043
if compile_object ; then
2044
    if strings -a $TMPO | grep -q BiGeNdIaN ; then
2045
        bigendian="yes"
2046
    elif strings -a $TMPO | grep -q LiTtLeEnDiAn ; then
2047 2048 2049
        bigendian="no"
    else
        echo big/little test failed
2050
    fi
2051 2052
else
    echo big/little test failed
B
bellard 已提交
2053 2054
fi

2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069
##########################################
# cocoa implies not SDL or GTK
# (the cocoa UI code currently assumes it is always the active UI
# and doesn't interact well with other UI frontend code)
if test "$cocoa" = "yes"; then
    if test "$sdl" = "yes"; then
        error_exit "Cocoa and SDL UIs cannot both be enabled at once"
    fi
    if test "$gtk" = "yes"; then
        error_exit "Cocoa and GTK UIs cannot both be enabled at once"
    fi
    gtk=no
    sdl=no
fi

2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082
# Some versions of Mac OS X incorrectly define SIZE_MAX
cat > $TMPC << EOF
#include <stdint.h>
#include <stdio.h>
int main(int argc, char *argv[]) {
    return printf("%zu", SIZE_MAX);
}
EOF
have_broken_size_max=no
if ! compile_object -Werror ; then
    have_broken_size_max=yes
fi

2083 2084 2085 2086 2087
##########################################
# L2TPV3 probe

cat > $TMPC <<EOF
#include <sys/socket.h>
2088
#include <linux/ip.h>
2089 2090 2091 2092 2093 2094 2095 2096
int main(void) { return sizeof(struct mmsghdr); }
EOF
if compile_prog "" "" ; then
  l2tpv3=yes
else
  l2tpv3=no
fi

2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127
##########################################
# MinGW / Mingw-w64 localtime_r/gmtime_r check

if test "$mingw32" = "yes"; then
    # Some versions of MinGW / Mingw-w64 lack localtime_r
    # and gmtime_r entirely.
    #
    # Some versions of Mingw-w64 define a macro for
    # localtime_r/gmtime_r.
    #
    # Some versions of Mingw-w64 will define functions
    # for localtime_r/gmtime_r, but only if you have
    # _POSIX_THREAD_SAFE_FUNCTIONS defined. For fun
    # though, unistd.h and pthread.h both define
    # that for you.
    #
    # So this #undef localtime_r and #include <unistd.h>
    # are not in fact redundant.
cat > $TMPC << EOF
#include <unistd.h>
#include <time.h>
#undef localtime_r
int main(void) { localtime_r(NULL, NULL); return 0; }
EOF
    if compile_prog "" "" ; then
        localtime_r="yes"
    else
        localtime_r="no"
    fi
fi

S
Stefan Weil 已提交
2128 2129 2130 2131
##########################################
# pkg-config probe

if ! has "$pkg_config_exe"; then
2132
  error_exit "pkg-config binary '$pkg_config_exe' not found"
S
Stefan Weil 已提交
2133 2134
fi

2135 2136 2137
##########################################
# NPTL probe

2138
if test "$linux_user" = "yes"; then
2139
  cat > $TMPC <<EOF
2140
#include <sched.h>
P
pbrook 已提交
2141
#include <linux/futex.h>
2142
int main(void) {
2143 2144 2145
#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
#error bork
#endif
2146
  return 0;
2147 2148
}
EOF
2149
  if ! compile_object ; then
2150
    feature_not_found "nptl" "Install glibc and linux kernel headers."
2151
  fi
2152 2153
fi

2154
#########################################
2155 2156
# zlib check

A
Alon Levy 已提交
2157 2158
if test "$zlib" != "no" ; then
    cat > $TMPC << EOF
2159 2160 2161
#include <zlib.h>
int main(void) { zlibVersion(); return 0; }
EOF
A
Alon Levy 已提交
2162 2163 2164
    if compile_prog "" "-lz" ; then
        :
    else
2165 2166
        error_exit "zlib check failed" \
            "Make sure to have the zlib libs and headers installed."
A
Alon Levy 已提交
2167
    fi
2168
fi
2169
LIBS="$LIBS -lz"
2170

Q
qiaonuohan 已提交
2171 2172 2173 2174 2175 2176 2177 2178 2179
##########################################
# lzo check

if test "$lzo" != "no" ; then
    cat > $TMPC << EOF
#include <lzo/lzo1x.h>
int main(void) { lzo_version(); return 0; }
EOF
    if compile_prog "" "-llzo2" ; then
2180 2181
        libs_softmmu="$libs_softmmu -llzo2"
        lzo="yes"
Q
qiaonuohan 已提交
2182
    else
2183 2184 2185 2186
        if test "$lzo" = "yes"; then
            feature_not_found "liblzo2" "Install liblzo2 devel"
        fi
        lzo="no"
Q
qiaonuohan 已提交
2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198
    fi
fi

##########################################
# snappy check

if test "$snappy" != "no" ; then
    cat > $TMPC << EOF
#include <snappy-c.h>
int main(void) { snappy_max_compressed_length(4096); return 0; }
EOF
    if compile_prog "" "-lsnappy" ; then
2199 2200
        libs_softmmu="$libs_softmmu -lsnappy"
        snappy="yes"
Q
qiaonuohan 已提交
2201
    else
2202 2203 2204 2205
        if test "$snappy" = "yes"; then
            feature_not_found "libsnappy" "Install libsnappy devel"
        fi
        snappy="no"
Q
qiaonuohan 已提交
2206 2207 2208
    fi
fi

2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226
##########################################
# bzip2 check

if test "$bzip2" != "no" ; then
    cat > $TMPC << EOF
#include <bzlib.h>
int main(void) { BZ2_bzlibVersion(); return 0; }
EOF
    if compile_prog "" "-lbz2" ; then
        bzip2="yes"
    else
        if test "$bzip2" = "yes"; then
            feature_not_found "libbzip2" "Install libbzip2 devel"
        fi
        bzip2="no"
    fi
fi

2227 2228 2229
##########################################
# libseccomp check

2230
libseccomp_minver="2.2.0"
2231
if test "$seccomp" != "no" ; then
2232
    case "$cpu" in
2233
    i386|x86_64|mips)
2234
        ;;
2235 2236 2237
    arm|aarch64)
        libseccomp_minver="2.2.3"
        ;;
2238
    ppc|ppc64|s390x)
2239 2240
        libseccomp_minver="2.3.0"
        ;;
2241 2242 2243 2244 2245 2246 2247
    *)
        libseccomp_minver=""
        ;;
    esac

    if test "$libseccomp_minver" != "" &&
       $pkg_config --atleast-version=$libseccomp_minver libseccomp ; then
2248 2249
        seccomp_cflags="$($pkg_config --cflags libseccomp)"
        seccomp_libs="$($pkg_config --libs libseccomp)"
2250
        seccomp="yes"
2251
    else
2252 2253 2254 2255 2256 2257 2258 2259 2260 2261
        if test "$seccomp" = "yes" ; then
            if test "$libseccomp_minver" != "" ; then
                feature_not_found "libseccomp" \
                    "Install libseccomp devel >= $libseccomp_minver"
            else
                feature_not_found "libseccomp" \
                    "libseccomp is not supported for host cpu $cpu"
            fi
        fi
        seccomp="no"
2262 2263
    fi
fi
2264 2265 2266
##########################################
# xen probe

2267
if test "$xen" != "no" ; then
2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278
  # Check whether Xen library path is specified via --extra-ldflags to avoid
  # overriding this setting with pkg-config output. If not, try pkg-config
  # to obtain all needed flags.

  if ! echo $EXTRA_LDFLAGS | grep tools/libxc > /dev/null && \
     $pkg_config --exists xencontrol ; then
    xen_ctrl_version="$(printf '%d%02d%02d' \
      $($pkg_config --modversion xencontrol | sed 's/\./ /g') )"
    xen=yes
    xen_pc="xencontrol xenstore xenguest xenforeignmemory xengnttab"
    xen_pc="$xen_pc xenevtchn xendevicemodel"
A
Anthony PERARD 已提交
2279 2280 2281
    if $pkg_config --exists xentoolcore; then
      xen_pc="$xen_pc xentoolcore"
    fi
2282 2283 2284 2285
    QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags $xen_pc)"
    libs_softmmu="$($pkg_config --libs $xen_pc) $libs_softmmu"
    LDFLAGS="$($pkg_config --libs $xen_pc) $LDFLAGS"
  else
2286

2287
    xen_libs="-lxenstore -lxenctrl -lxenguest"
2288
    xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn"
2289

2290 2291 2292 2293 2294 2295
    # First we test whether Xen headers and libraries are available.
    # If no, we are done and there is no Xen support.
    # If yes, more tests are run to detect the Xen version.

    # Xen (any)
    cat > $TMPC <<EOF
2296
#include <xenctrl.h>
2297 2298 2299 2300
int main(void) {
  return 0;
}
EOF
2301 2302 2303 2304 2305 2306
    if ! compile_prog "" "$xen_libs" ; then
      # Xen not found
      if test "$xen" = "yes" ; then
        feature_not_found "xen" "Install xen devel"
      fi
      xen=no
2307

2308 2309 2310
    # Xen unstable
    elif
        cat > $TMPC <<EOF &&
2311 2312 2313
#undef XC_WANT_COMPAT_DEVICEMODEL_API
#define __XEN_TOOLS__
#include <xendevicemodel.h>
2314
#include <xenforeignmemory.h>
2315 2316
int main(void) {
  xendevicemodel_handle *xd;
2317
  xenforeignmemory_handle *xfmem;
2318 2319 2320 2321

  xd = xendevicemodel_open(0, 0);
  xendevicemodel_pin_memory_cacheattr(xd, 0, 0, 0, 0);

2322 2323 2324
  xfmem = xenforeignmemory_open(0, 0);
  xenforeignmemory_map_resource(xfmem, 0, 0, 0, 0, 0, NULL, 0, 0);

2325 2326 2327 2328 2329 2330 2331 2332 2333 2334
  return 0;
}
EOF
        compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore"
      then
      xen_stable_libs="-lxendevicemodel $xen_stable_libs -lxentoolcore"
      xen_ctrl_version=41100
      xen=yes
    elif
        cat > $TMPC <<EOF &&
2335 2336
#undef XC_WANT_COMPAT_MAP_FOREIGN_API
#include <xenforeignmemory.h>
A
Anthony PERARD 已提交
2337
#include <xentoolcore.h>
2338 2339 2340 2341 2342
int main(void) {
  xenforeignmemory_handle *xfmem;

  xfmem = xenforeignmemory_open(0, 0);
  xenforeignmemory_map2(xfmem, 0, 0, 0, 0, 0, 0, 0);
A
Anthony PERARD 已提交
2343
  xentoolcore_restrict_all(0);
2344 2345 2346 2347

  return 0;
}
EOF
A
Anthony PERARD 已提交
2348
        compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore"
2349
      then
A
Anthony PERARD 已提交
2350
      xen_stable_libs="-lxendevicemodel $xen_stable_libs -lxentoolcore"
2351 2352 2353 2354
      xen_ctrl_version=41000
      xen=yes
    elif
        cat > $TMPC <<EOF &&
2355 2356 2357 2358 2359 2360 2361 2362
#undef XC_WANT_COMPAT_DEVICEMODEL_API
#define __XEN_TOOLS__
#include <xendevicemodel.h>
int main(void) {
  xendevicemodel_handle *xd;

  xd = xendevicemodel_open(0, 0);
  xendevicemodel_close(xd);
2363

2364 2365 2366
  return 0;
}
EOF
2367 2368 2369 2370 2371 2372 2373
        compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs"
      then
      xen_stable_libs="-lxendevicemodel $xen_stable_libs"
      xen_ctrl_version=40900
      xen=yes
    elif
        cat > $TMPC <<EOF &&
2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422
/*
 * If we have stable libs the we don't want the libxc compat
 * layers, regardless of what CFLAGS we may have been given.
 *
 * Also, check if xengnttab_grant_copy_segment_t is defined and
 * grant copy operation is implemented.
 */
#undef XC_WANT_COMPAT_EVTCHN_API
#undef XC_WANT_COMPAT_GNTTAB_API
#undef XC_WANT_COMPAT_MAP_FOREIGN_API
#include <xenctrl.h>
#include <xenstore.h>
#include <xenevtchn.h>
#include <xengnttab.h>
#include <xenforeignmemory.h>
#include <stdint.h>
#include <xen/hvm/hvm_info_table.h>
#if !defined(HVM_MAX_VCPUS)
# error HVM_MAX_VCPUS not defined
#endif
int main(void) {
  xc_interface *xc = NULL;
  xenforeignmemory_handle *xfmem;
  xenevtchn_handle *xe;
  xengnttab_handle *xg;
  xen_domain_handle_t handle;
  xengnttab_grant_copy_segment_t* seg = NULL;

  xs_daemon_open();

  xc = xc_interface_open(0, 0, 0);
  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
  xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
  xc_domain_create(xc, 0, handle, 0, NULL, NULL);

  xfmem = xenforeignmemory_open(0, 0);
  xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0);

  xe = xenevtchn_open(0, 0);
  xenevtchn_fd(xe);

  xg = xengnttab_open(0, 0);
  xengnttab_grant_copy(xg, 0, seg);

  return 0;
}
EOF
2423 2424 2425 2426 2427 2428
        compile_prog "" "$xen_libs $xen_stable_libs"
      then
      xen_ctrl_version=40800
      xen=yes
    elif
        cat > $TMPC <<EOF &&
2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473
/*
 * If we have stable libs the we don't want the libxc compat
 * layers, regardless of what CFLAGS we may have been given.
 */
#undef XC_WANT_COMPAT_EVTCHN_API
#undef XC_WANT_COMPAT_GNTTAB_API
#undef XC_WANT_COMPAT_MAP_FOREIGN_API
#include <xenctrl.h>
#include <xenstore.h>
#include <xenevtchn.h>
#include <xengnttab.h>
#include <xenforeignmemory.h>
#include <stdint.h>
#include <xen/hvm/hvm_info_table.h>
#if !defined(HVM_MAX_VCPUS)
# error HVM_MAX_VCPUS not defined
#endif
int main(void) {
  xc_interface *xc = NULL;
  xenforeignmemory_handle *xfmem;
  xenevtchn_handle *xe;
  xengnttab_handle *xg;
  xen_domain_handle_t handle;

  xs_daemon_open();

  xc = xc_interface_open(0, 0, 0);
  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
  xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
  xc_domain_create(xc, 0, handle, 0, NULL, NULL);

  xfmem = xenforeignmemory_open(0, 0);
  xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0);

  xe = xenevtchn_open(0, 0);
  xenevtchn_fd(xe);

  xg = xengnttab_open(0, 0);
  xengnttab_map_grant_ref(xg, 0, 0, 0);

  return 0;
}
EOF
2474 2475 2476 2477 2478 2479
        compile_prog "" "$xen_libs $xen_stable_libs"
      then
      xen_ctrl_version=40701
      xen=yes
    elif
        cat > $TMPC <<EOF &&
2480
#include <xenctrl.h>
2481 2482 2483 2484 2485 2486 2487 2488
#include <stdint.h>
int main(void) {
  xc_interface *xc = NULL;
  xen_domain_handle_t handle;
  xc_domain_create(xc, 0, handle, 0, NULL, NULL);
  return 0;
}
EOF
2489 2490 2491 2492 2493 2494 2495 2496
        compile_prog "" "$xen_libs"
      then
      xen_ctrl_version=40700
      xen=yes

    # Xen 4.6
    elif
        cat > $TMPC <<EOF &&
2497
#include <xenctrl.h>
A
Anthony PERARD 已提交
2498
#include <xenstore.h>
2499 2500 2501 2502 2503
#include <stdint.h>
#include <xen/hvm/hvm_info_table.h>
#if !defined(HVM_MAX_VCPUS)
# error HVM_MAX_VCPUS not defined
#endif
2504 2505 2506 2507 2508 2509 2510 2511 2512
int main(void) {
  xc_interface *xc;
  xs_daemon_open();
  xc = xc_interface_open(0, 0, 0);
  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
  xc_gnttab_open(NULL, 0);
  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
  xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
2513
  xc_reserved_device_memory_map(xc, 0, 0, 0, 0, NULL, 0);
2514 2515 2516
  return 0;
}
EOF
2517 2518 2519 2520 2521 2522 2523 2524
        compile_prog "" "$xen_libs"
      then
      xen_ctrl_version=40600
      xen=yes

    # Xen 4.5
    elif
        cat > $TMPC <<EOF &&
2525 2526 2527 2528 2529 2530 2531
#include <xenctrl.h>
#include <xenstore.h>
#include <stdint.h>
#include <xen/hvm/hvm_info_table.h>
#if !defined(HVM_MAX_VCPUS)
# error HVM_MAX_VCPUS not defined
#endif
2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543
int main(void) {
  xc_interface *xc;
  xs_daemon_open();
  xc = xc_interface_open(0, 0, 0);
  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
  xc_gnttab_open(NULL, 0);
  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
  xc_hvm_create_ioreq_server(xc, 0, 0, NULL);
  return 0;
}
EOF
2544 2545 2546 2547
        compile_prog "" "$xen_libs"
      then
      xen_ctrl_version=40500
      xen=yes
2548

2549 2550
    elif
        cat > $TMPC <<EOF &&
2551 2552 2553 2554 2555 2556 2557
#include <xenctrl.h>
#include <xenstore.h>
#include <stdint.h>
#include <xen/hvm/hvm_info_table.h>
#if !defined(HVM_MAX_VCPUS)
# error HVM_MAX_VCPUS not defined
#endif
2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568
int main(void) {
  xc_interface *xc;
  xs_daemon_open();
  xc = xc_interface_open(0, 0, 0);
  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
  xc_gnttab_open(NULL, 0);
  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
  return 0;
}
EOF
2569 2570 2571 2572
        compile_prog "" "$xen_libs"
      then
      xen_ctrl_version=40200
      xen=yes
2573

2574 2575 2576 2577 2578 2579
    else
      if test "$xen" = "yes" ; then
        feature_not_found "xen (unsupported version)" \
                          "Install a supported xen (xen 4.2 or newer)"
      fi
      xen=no
2580
    fi
2581

2582 2583 2584 2585 2586
    if test "$xen" = yes; then
      if test $xen_ctrl_version -ge 40701  ; then
        libs_softmmu="$xen_stable_libs $libs_softmmu"
      fi
      libs_softmmu="$xen_libs $libs_softmmu"
2587
    fi
2588
  fi
2589 2590
fi

2591
if test "$xen_pci_passthrough" != "no"; then
2592
  if test "$xen" = "yes" && test "$linux" = "yes"; then
2593 2594 2595
    xen_pci_passthrough=yes
  else
    if test "$xen_pci_passthrough" = "yes"; then
2596 2597
      error_exit "User requested feature Xen PCI Passthrough" \
          " but this feature requires /sys from Linux"
2598 2599 2600 2601 2602
    fi
    xen_pci_passthrough=no
  fi
fi

2603 2604 2605 2606 2607 2608
if test "$xen_pv_domain_build" = "yes" &&
   test "$xen" != "yes"; then
    error_exit "User requested Xen PV domain builder support" \
	       "which requires Xen support."
fi

2609 2610 2611
##########################################
# Windows Hypervisor Platform accelerator (WHPX) check
if test "$whpx" != "no" ; then
2612
    if check_include "WinHvPlatform.h" && check_include "WinHvEmulation.h"; then
2613 2614 2615
        whpx="yes"
    else
        if test "$whpx" = "yes"; then
2616
            feature_not_found "WinHvPlatform" "WinHvEmulation is not installed"
2617 2618 2619 2620 2621
        fi
        whpx="no"
    fi
fi

2622 2623 2624
##########################################
# Sparse probe
if test "$sparse" != "no" ; then
2625
  if has cgcc; then
2626 2627 2628
    sparse=yes
  else
    if test "$sparse" = "yes" ; then
2629
      feature_not_found "sparse" "Install sparse binary"
2630 2631 2632 2633 2634
    fi
    sparse=no
  fi
fi

2635 2636 2637
##########################################
# X11 probe
if $pkg_config --exists "x11"; then
2638
    have_x11=yes
2639 2640
    x11_cflags=$($pkg_config --cflags x11)
    x11_libs=$($pkg_config --libs x11)
2641 2642
fi

A
Anthony Liguori 已提交
2643 2644 2645 2646
##########################################
# GTK probe

if test "$gtk" != "no"; then
P
Peter Xu 已提交
2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657
    if test "$gtkabi" = ""; then
        # The GTK ABI was not specified explicitly, so try whether 3.0 is available.
        # Use 2.0 as a fallback if that is available.
        if $pkg_config --exists "gtk+-3.0 >= 3.0.0"; then
            gtkabi=3.0
        elif $pkg_config --exists "gtk+-2.0 >= 2.18.0"; then
            gtkabi=2.0
        else
            gtkabi=3.0
        fi
    fi
2658
    gtkpackage="gtk+-$gtkabi"
2659
    gtkx11package="gtk+-x11-$gtkabi"
2660 2661
    if test "$gtkabi" = "3.0" ; then
      gtkversion="3.0.0"
S
Stefan Weil 已提交
2662 2663 2664 2665
    else
      gtkversion="2.18.0"
    fi
    if $pkg_config --exists "$gtkpackage >= $gtkversion"; then
2666 2667 2668
        gtk_cflags=$($pkg_config --cflags $gtkpackage)
        gtk_libs=$($pkg_config --libs $gtkpackage)
        gtk_version=$($pkg_config --modversion $gtkpackage)
2669
        if $pkg_config --exists "$gtkx11package >= $gtkversion"; then
2670
            need_x11=yes
2671 2672
            gtk_cflags="$gtk_cflags $x11_cflags"
            gtk_libs="$gtk_libs $x11_libs"
2673
        fi
S
Stefan Weil 已提交
2674 2675
        gtk="yes"
    elif test "$gtk" = "yes"; then
G
Gerd Hoffmann 已提交
2676
        feature_not_found "gtk" "Install gtk3-devel"
S
Stefan Weil 已提交
2677 2678 2679 2680 2681
    else
        gtk="no"
    fi
fi

2682 2683 2684 2685

##########################################
# GNUTLS probe

2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701
gnutls_works() {
    # Unfortunately some distros have bad pkg-config information for gnutls
    # such that it claims to exist but you get a compiler error if you try
    # to use the options returned by --libs. Specifically, Ubuntu for --static
    # builds doesn't work:
    # https://bugs.launchpad.net/ubuntu/+source/gnutls26/+bug/1478035
    #
    # So sanity check the cflags/libs before assuming gnutls can be used.
    if ! $pkg_config --exists "gnutls"; then
        return 1
    fi

    write_c_skeleton
    compile_prog "$($pkg_config --cflags gnutls)" "$($pkg_config --libs gnutls)"
}

2702
gnutls_gcrypt=no
2703
gnutls_nettle=no
2704
if test "$gnutls" != "no"; then
2705
    if gnutls_works; then
2706 2707
        gnutls_cflags=$($pkg_config --cflags gnutls)
        gnutls_libs=$($pkg_config --libs gnutls)
2708 2709 2710 2711 2712
        libs_softmmu="$gnutls_libs $libs_softmmu"
        libs_tools="$gnutls_libs $libs_tools"
	QEMU_CFLAGS="$QEMU_CFLAGS $gnutls_cflags"
        gnutls="yes"

2713 2714 2715 2716 2717 2718 2719
	# gnutls_rnd requires >= 2.11.0
	if $pkg_config --exists "gnutls >= 2.11.0"; then
	    gnutls_rnd="yes"
	else
	    gnutls_rnd="no"
	fi

2720 2721
	if $pkg_config --exists 'gnutls >= 3.0'; then
	    gnutls_gcrypt=no
2722
	    gnutls_nettle=yes
2723
	elif $pkg_config --exists 'gnutls >= 2.12'; then
2724
	    case $($pkg_config --libs --static gnutls) in
2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736
		*gcrypt*)
		    gnutls_gcrypt=yes
		    gnutls_nettle=no
		    ;;
		*nettle*)
		    gnutls_gcrypt=no
		    gnutls_nettle=yes
		    ;;
		*)
		    gnutls_gcrypt=yes
		    gnutls_nettle=no
		    ;;
2737 2738 2739
	    esac
	else
	    gnutls_gcrypt=yes
2740
	    gnutls_nettle=no
2741
	fi
2742 2743 2744 2745
    elif test "$gnutls" = "yes"; then
	feature_not_found "gnutls" "Install gnutls devel"
    else
        gnutls="no"
2746
        gnutls_rnd="no"
2747 2748
    fi
else
2749
    gnutls_rnd="no"
2750 2751
fi

2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782

# If user didn't give a --disable/enable-gcrypt flag,
# then mark as disabled if user requested nettle
# explicitly, or if gnutls links to nettle
if test -z "$gcrypt"
then
    if test "$nettle" = "yes" || test "$gnutls_nettle" = "yes"
    then
        gcrypt="no"
    fi
fi

# If user didn't give a --disable/enable-nettle flag,
# then mark as disabled if user requested gcrypt
# explicitly, or if gnutls links to gcrypt
if test -z "$nettle"
then
    if test "$gcrypt" = "yes" || test "$gnutls_gcrypt" = "yes"
    then
        nettle="no"
    fi
fi

has_libgcrypt_config() {
    if ! has "libgcrypt-config"
    then
	return 1
    fi

    if test -n "$cross_prefix"
    then
2783
	host=$(libgcrypt-config --host)
2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794
	if test "$host-" != $cross_prefix
	then
	    return 1
	fi
    fi

    return 0
}

if test "$gcrypt" != "no"; then
    if has_libgcrypt_config; then
2795 2796
        gcrypt_cflags=$(libgcrypt-config --cflags)
        gcrypt_libs=$(libgcrypt-config --libs)
2797 2798 2799 2800 2801 2802 2803
        # Debian has remove -lgpg-error from libgcrypt-config
        # as it "spreads unnecessary dependencies" which in
        # turn breaks static builds...
        if test "$static" = "yes"
        then
            gcrypt_libs="$gcrypt_libs -lgpg-error"
        fi
2804 2805 2806
        libs_softmmu="$gcrypt_libs $libs_softmmu"
        libs_tools="$gcrypt_libs $libs_tools"
        QEMU_CFLAGS="$QEMU_CFLAGS $gcrypt_cflags"
2807 2808 2809 2810
        gcrypt="yes"
        if test -z "$nettle"; then
           nettle="no"
        fi
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823

        cat > $TMPC << EOF
#include <gcrypt.h>
int main(void) {
  gcry_kdf_derive(NULL, 0, GCRY_KDF_PBKDF2,
                  GCRY_MD_SHA256,
                  NULL, 0, 0, 0, NULL);
 return 0;
}
EOF
        if compile_prog "$gcrypt_cflags" "$gcrypt_libs" ; then
            gcrypt_kdf=yes
        fi
2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836

        cat > $TMPC << EOF
#include <gcrypt.h>
int main(void) {
  gcry_mac_hd_t handle;
  gcry_mac_open(&handle, GCRY_MAC_HMAC_MD5,
                GCRY_MAC_FLAG_SECURE, NULL);
  return 0;
}
EOF
        if compile_prog "$gcrypt_cflags" "$gcrypt_libs" ; then
            gcrypt_hmac=yes
        fi
2837
    else
2838 2839 2840 2841 2842
        if test "$gcrypt" = "yes"; then
            feature_not_found "gcrypt" "Install gcrypt devel"
        else
            gcrypt="no"
        fi
2843 2844 2845
    fi
fi

2846

2847
if test "$nettle" != "no"; then
2848
    if $pkg_config --exists "nettle"; then
2849 2850 2851
        nettle_cflags=$($pkg_config --cflags nettle)
        nettle_libs=$($pkg_config --libs nettle)
        nettle_version=$($pkg_config --modversion nettle)
2852 2853 2854
        libs_softmmu="$nettle_libs $libs_softmmu"
        libs_tools="$nettle_libs $libs_tools"
        QEMU_CFLAGS="$QEMU_CFLAGS $nettle_cflags"
2855
        nettle="yes"
2856 2857

        cat > $TMPC << EOF
2858
#include <stddef.h>
2859 2860 2861 2862 2863 2864 2865 2866 2867
#include <nettle/pbkdf2.h>
int main(void) {
     pbkdf2_hmac_sha256(8, NULL, 1000, 8, NULL, 8, NULL);
     return 0;
}
EOF
        if compile_prog "$nettle_cflags" "$nettle_libs" ; then
            nettle_kdf=yes
        fi
2868
    else
2869 2870 2871 2872 2873
        if test "$nettle" = "yes"; then
            feature_not_found "nettle" "Install nettle devel"
        else
            nettle="no"
        fi
2874 2875 2876
    fi
fi

2877 2878 2879 2880 2881
if test "$gcrypt" = "yes" && test "$nettle" = "yes"
then
    error_exit "Only one of gcrypt & nettle can be enabled"
fi

2882 2883 2884 2885
##########################################
# libtasn1 - only for the TLS creds/session test suite

tasn1=yes
2886 2887
tasn1_cflags=""
tasn1_libs=""
2888
if $pkg_config --exists "libtasn1"; then
2889 2890
    tasn1_cflags=$($pkg_config --cflags libtasn1)
    tasn1_libs=$($pkg_config --libs libtasn1)
2891 2892 2893 2894
else
    tasn1=no
fi

2895

2896 2897 2898 2899 2900 2901 2902 2903
##########################################
# getifaddrs (for tests/test-io-channel-socket )

have_ifaddrs_h=yes
if ! check_include "ifaddrs.h" ; then
  have_ifaddrs_h=no
fi

S
Stefan Weil 已提交
2904 2905 2906 2907 2908
##########################################
# VTE probe

if test "$vte" != "no"; then
    if test "$gtkabi" = "3.0"; then
C
Cole Robinson 已提交
2909 2910 2911 2912 2913 2914
      vteminversion="0.32.0"
      if $pkg_config --exists "vte-2.91"; then
        vtepackage="vte-2.91"
      else
        vtepackage="vte-2.90"
      fi
2915 2916
    else
      vtepackage="vte"
C
Cole Robinson 已提交
2917
      vteminversion="0.24.0"
2918
    fi
C
Cole Robinson 已提交
2919
    if $pkg_config --exists "$vtepackage >= $vteminversion"; then
2920 2921 2922
        vte_cflags=$($pkg_config --cflags $vtepackage)
        vte_libs=$($pkg_config --libs $vtepackage)
        vteversion=$($pkg_config --modversion $vtepackage)
S
Stefan Weil 已提交
2923 2924
        vte="yes"
    elif test "$vte" = "yes"; then
2925
        if test "$gtkabi" = "3.0"; then
C
Cole Robinson 已提交
2926
            feature_not_found "vte" "Install libvte-2.90/2.91 devel"
2927 2928 2929
        else
            feature_not_found "vte" "Install libvte devel"
        fi
2930
    else
S
Stefan Weil 已提交
2931
        vte="no"
A
Anthony Liguori 已提交
2932 2933 2934
    fi
fi

B
bellard 已提交
2935 2936 2937
##########################################
# SDL probe

P
Paolo Bonzini 已提交
2938 2939
# Look for sdl configuration program (pkg-config or sdl-config).  Try
# sdl-config even without cross prefix, and favour pkg-config over sdl-config.
2940

2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952
sdl_probe ()
{
  sdl_too_old=no
  if test "$sdlabi" = ""; then
      if $pkg_config --exists "sdl2"; then
          sdlabi=2.0
      elif $pkg_config --exists "sdl"; then
          sdlabi=1.2
      else
          sdlabi=2.0
      fi
  fi
2953

2954 2955 2956 2957 2958 2959 2960 2961 2962 2963
  if test $sdlabi = "2.0"; then
      sdl_config=$sdl2_config
      sdlname=sdl2
      sdlconfigname=sdl2_config
  elif test $sdlabi = "1.2"; then
      sdlname=sdl
      sdlconfigname=sdl_config
  else
      error_exit "Unknown sdlabi $sdlabi, must be 1.2 or 2.0"
  fi
2964

2965 2966 2967
  if test "$(basename $sdl_config)" != $sdlconfigname && ! has ${sdl_config}; then
    sdl_config=$sdlconfigname
  fi
P
Paolo Bonzini 已提交
2968

2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984
  if $pkg_config $sdlname --exists; then
    sdlconfig="$pkg_config $sdlname"
    sdlversion=$($sdlconfig --modversion 2>/dev/null)
  elif has ${sdl_config}; then
    sdlconfig="$sdl_config"
    sdlversion=$($sdlconfig --version)
  else
    if test "$sdl" = "yes" ; then
      feature_not_found "sdl" "Install SDL2-devel"
    fi
    sdl=no
    # no need to do the rest
    return
  fi
  if test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then
    echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
2985
  fi
B
bellard 已提交
2986

J
Juan Quintela 已提交
2987
  cat > $TMPC << EOF
B
bellard 已提交
2988 2989 2990 2991
#include <SDL.h>
#undef main /* We don't want SDL to override our main() */
int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
EOF
2992
  sdl_cflags=$($sdlconfig --cflags 2>/dev/null)
2993
  sdl_cflags="$sdl_cflags -Wno-undef"  # workaround 2.0.8 bug
2994
  if test "$static" = "yes" ; then
2995 2996 2997 2998 2999
    if $pkg_config $sdlname --exists; then
      sdl_libs=$($pkg_config $sdlname --static --libs 2>/dev/null)
    else
      sdl_libs=$($sdlconfig --static-libs 2>/dev/null)
    fi
3000
  else
3001
    sdl_libs=$($sdlconfig --libs 2>/dev/null)
3002
  fi
3003
  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
3004
    if test $(echo $sdlversion | sed 's/[^0-9]//g') -lt 121 ; then
J
Juan Quintela 已提交
3005 3006
      sdl_too_old=yes
    else
3007
      sdl=yes
J
Juan Quintela 已提交
3008
    fi
A
aliguori 已提交
3009

3010
    # static link with sdl ? (note: sdl.pc's --static --libs is broken)
J
Juan Quintela 已提交
3011
    if test "$sdl" = "yes" -a "$static" = "yes" ; then
3012
      if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
3013 3014
         sdl_libs="$sdl_libs $(aalib-config --static-libs 2>/dev/null)"
         sdl_cflags="$sdl_cflags $(aalib-config --cflags 2>/dev/null)"
J
Juan Quintela 已提交
3015
      fi
3016
      if compile_prog "$sdl_cflags" "$sdl_libs" ; then
J
Juan Quintela 已提交
3017 3018 3019 3020 3021
	:
      else
        sdl=no
      fi
    fi # static link
3022 3023
  else # sdl not found
    if test "$sdl" = "yes" ; then
3024
      feature_not_found "sdl" "Install SDL devel"
3025 3026
    fi
    sdl=no
J
Juan Quintela 已提交
3027
  fi # sdl compile test
3028 3029 3030 3031
}

if test "$sdl" != "no" ; then
  sdl_probe
3032
fi
B
bellard 已提交
3033

3034
if test "$sdl" = "yes" ; then
J
Juan Quintela 已提交
3035
  cat > $TMPC <<EOF
3036 3037 3038 3039 3040 3041 3042 3043
#include <SDL.h>
#if defined(SDL_VIDEO_DRIVER_X11)
#include <X11/XKBlib.h>
#else
#error No x11 support
#endif
int main(void) { return 0; }
EOF
3044
  if compile_prog "$sdl_cflags $x11_cflags" "$sdl_libs $x11_libs" ; then
3045
    need_x11=yes
3046 3047
    sdl_cflags="$sdl_cflags $x11_cflags"
    sdl_libs="$sdl_libs $x11_libs"
J
Juan Quintela 已提交
3048
  fi
3049 3050
fi

M
Michael R. Hines 已提交
3051 3052 3053 3054 3055 3056 3057
##########################################
# RDMA needs OpenFabrics libraries
if test "$rdma" != "no" ; then
  cat > $TMPC <<EOF
#include <rdma/rdma_cma.h>
int main(void) { return 0; }
EOF
3058
  rdma_libs="-lrdmacm -libverbs -libumad"
M
Michael R. Hines 已提交
3059 3060
  if compile_prog "" "$rdma_libs" ; then
    rdma="yes"
3061
    libs_softmmu="$libs_softmmu $rdma_libs"
M
Michael R. Hines 已提交
3062 3063 3064
  else
    if test "$rdma" = "yes" ; then
        error_exit \
3065
            " OpenFabrics librdmacm/libibverbs/libibumad not present." \
M
Michael R. Hines 已提交
3066
            " Your options:" \
3067
            "  (1) Fast: Install infiniband packages (devel) from your distro." \
M
Michael R. Hines 已提交
3068 3069 3070 3071 3072 3073 3074
            "  (2) Cleanest: Install libraries from www.openfabrics.org" \
            "  (3) Also: Install softiwarp if you don't have RDMA hardware"
    fi
    rdma="no"
  fi
fi

3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116
##########################################
# PVRDMA detection

cat > $TMPC <<EOF &&
#include <sys/mman.h>

int
main(void)
{
    char buf = 0;
    void *addr = &buf;
    addr = mremap(addr, 0, 1, MREMAP_MAYMOVE | MREMAP_FIXED);

    return 0;
}
EOF

if test "$rdma" = "yes" ; then
    case "$pvrdma" in
    "")
        if compile_prog "" ""; then
            pvrdma="yes"
        else
            pvrdma="no"
        fi
        ;;
    "yes")
        if ! compile_prog "" ""; then
            error_exit "PVRDMA is not supported since mremap is not implemented"
        fi
        pvrdma="yes"
        ;;
    "no")
        pvrdma="no"
        ;;
    esac
else
    if test "$pvrdma" = "yes" ; then
        error_exit "PVRDMA requires rdma suppport"
    fi
    pvrdma="no"
fi
B
Benoît Canet 已提交
3117

3118 3119
##########################################
# VNC SASL detection
J
Jes Sorensen 已提交
3120
if test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then
3121
  cat > $TMPC <<EOF
3122 3123 3124 3125
#include <sasl/sasl.h>
#include <stdio.h>
int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
EOF
3126 3127 3128 3129 3130 3131
  # Assuming Cyrus-SASL installed in /usr prefix
  vnc_sasl_cflags=""
  vnc_sasl_libs="-lsasl2"
  if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
    vnc_sasl=yes
    libs_softmmu="$vnc_sasl_libs $libs_softmmu"
P
Paolo Bonzini 已提交
3132
    QEMU_CFLAGS="$QEMU_CFLAGS $vnc_sasl_cflags"
3133 3134
  else
    if test "$vnc_sasl" = "yes" ; then
3135
      feature_not_found "vnc-sasl" "Install Cyrus SASL devel"
3136
    fi
3137 3138
    vnc_sasl=no
  fi
3139 3140
fi

3141 3142
##########################################
# VNC JPEG detection
J
Jes Sorensen 已提交
3143
if test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then
3144 3145 3146 3147 3148 3149 3150 3151 3152 3153
cat > $TMPC <<EOF
#include <stdio.h>
#include <jpeglib.h>
int main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
EOF
    vnc_jpeg_cflags=""
    vnc_jpeg_libs="-ljpeg"
  if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
    vnc_jpeg=yes
    libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
P
Paolo Bonzini 已提交
3154
    QEMU_CFLAGS="$QEMU_CFLAGS $vnc_jpeg_cflags"
3155 3156
  else
    if test "$vnc_jpeg" = "yes" ; then
3157
      feature_not_found "vnc-jpeg" "Install libjpeg-turbo devel"
3158 3159 3160 3161 3162
    fi
    vnc_jpeg=no
  fi
fi

C
Corentin Chary 已提交
3163 3164
##########################################
# VNC PNG detection
J
Jes Sorensen 已提交
3165
if test "$vnc" = "yes" -a "$vnc_png" != "no" ; then
C
Corentin Chary 已提交
3166 3167 3168
cat > $TMPC <<EOF
//#include <stdio.h>
#include <png.h>
S
Scott Wood 已提交
3169
#include <stddef.h>
C
Corentin Chary 已提交
3170 3171 3172
int main(void) {
    png_structp png_ptr;
    png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
3173
    return png_ptr != 0;
C
Corentin Chary 已提交
3174 3175
}
EOF
3176
  if $pkg_config libpng --exists; then
3177 3178
    vnc_png_cflags=$($pkg_config libpng --cflags)
    vnc_png_libs=$($pkg_config libpng --libs)
3179
  else
C
Corentin Chary 已提交
3180 3181
    vnc_png_cflags=""
    vnc_png_libs="-lpng"
3182
  fi
C
Corentin Chary 已提交
3183 3184 3185
  if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
    vnc_png=yes
    libs_softmmu="$vnc_png_libs $libs_softmmu"
3186
    QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags"
C
Corentin Chary 已提交
3187 3188
  else
    if test "$vnc_png" = "yes" ; then
3189
      feature_not_found "vnc-png" "Install libpng devel"
C
Corentin Chary 已提交
3190 3191 3192 3193 3194
    fi
    vnc_png=no
  fi
fi

G
Gerd Hoffmann 已提交
3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209
##########################################
# xkbcommon probe
if test "$xkbcommon" != "no" ; then
  if $pkg_config xkbcommon --exists; then
    xkbcommon_cflags=$($pkg_config xkbcommon --cflags)
    xkbcommon_libs=$($pkg_config xkbcommon --libs)
    xkbcommon=yes
  else
    if test "$xkbcommon" = "yes" ; then
      feature_not_found "xkbcommon" "Install libxkbcommon-devel"
    fi
    xkbcommon=no
  fi
fi

3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220
##########################################
# fnmatch() probe, used for ACL routines
fnmatch="no"
cat > $TMPC << EOF
#include <fnmatch.h>
int main(void)
{
    fnmatch("foo", "foo", 0);
    return 0;
}
EOF
3221
if compile_prog "" "" ; then
3222 3223 3224
   fnmatch="yes"
fi

3225
##########################################
3226
# xfsctl() probe, used for file-posix.c
C
Christoph Hellwig 已提交
3227 3228
if test "$xfs" != "no" ; then
  cat > $TMPC << EOF
3229
#include <stddef.h>  /* NULL */
C
Christoph Hellwig 已提交
3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240
#include <xfs/xfs.h>
int main(void)
{
    xfsctl(NULL, 0, 0, NULL);
    return 0;
}
EOF
  if compile_prog "" "" ; then
    xfs="yes"
  else
    if test "$xfs" = "yes" ; then
3241
      feature_not_found "xfs" "Instal xfsprogs/xfslibs devel"
C
Christoph Hellwig 已提交
3242 3243 3244 3245 3246
    fi
    xfs=no
  fi
fi

3247 3248
##########################################
# vde libraries probe
3249
if test "$vde" != "no" ; then
J
Juan Quintela 已提交
3250
  vde_libs="-lvdeplug"
3251 3252
  cat > $TMPC << EOF
#include <libvdeplug.h>
P
pbrook 已提交
3253 3254 3255
int main(void)
{
    struct vde_open_args a = {0, 0, 0};
3256 3257
    char s[] = "";
    vde_open(s, s, &a);
P
pbrook 已提交
3258 3259
    return 0;
}
3260
EOF
3261
  if compile_prog "" "$vde_libs" ; then
J
Juan Quintela 已提交
3262
    vde=yes
3263 3264
  else
    if test "$vde" = "yes" ; then
3265
      feature_not_found "vde" "Install vde (Virtual Distributed Ethernet) devel"
3266 3267
    fi
    vde=no
J
Juan Quintela 已提交
3268
  fi
3269 3270
fi

3271
##########################################
3272 3273 3274 3275 3276 3277
# netmap support probe
# Apart from looking for netmap headers, we make sure that the host API version
# supports the netmap backend (>=11). The upper bound (15) is meant to simulate
# a minor/major version number. Minor new features will be marked with values up
# to 15, and if something happens that requires a change to the backend we will
# move above 15, submit the backend fixes and modify this two bounds.
3278 3279 3280 3281 3282 3283
if test "$netmap" != "no" ; then
  cat > $TMPC << EOF
#include <inttypes.h>
#include <net/if.h>
#include <net/netmap.h>
#include <net/netmap_user.h>
3284 3285 3286
#if (NETMAP_API < 11) || (NETMAP_API > 15)
#error
#endif
3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298
int main(void) { return 0; }
EOF
  if compile_prog "" "" ; then
    netmap=yes
  else
    if test "$netmap" = "yes" ; then
      feature_not_found "netmap"
    fi
    netmap=no
  fi
fi

3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315
##########################################
# libcap-ng library probe
if test "$cap_ng" != "no" ; then
  cap_libs="-lcap-ng"
  cat > $TMPC << EOF
#include <cap-ng.h>
int main(void)
{
    capng_capability_to_name(CAPNG_EFFECTIVE);
    return 0;
}
EOF
  if compile_prog "" "$cap_libs" ; then
    cap_ng=yes
    libs_tools="$cap_libs $libs_tools"
  else
    if test "$cap_ng" = "yes" ; then
3316
      feature_not_found "cap_ng" "Install libcap-ng devel"
3317 3318 3319 3320 3321
    fi
    cap_ng=no
  fi
fi

3322
##########################################
3323
# Sound support libraries probe
3324

3325 3326 3327 3328 3329 3330 3331 3332 3333 3334
audio_drv_probe()
{
    drv=$1
    hdr=$2
    lib=$3
    exp=$4
    cfl=$5
        cat > $TMPC << EOF
#include <$hdr>
int main(void) { $exp }
3335
EOF
3336
    if compile_prog "$cfl" "$lib" ; then
3337 3338
        :
    else
3339 3340
        error_exit "$drv check failed" \
            "Make sure to have the $drv libs and headers installed."
3341 3342 3343
    fi
}

3344
audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/,/ /g')
3345 3346 3347 3348
for drv in $audio_drv_list; do
    case $drv in
    alsa)
    audio_drv_probe $drv alsa/asoundlib.h -lasound \
3349
        "return snd_pcm_close((snd_pcm_t *)0);"
3350
    alsa_libs="-lasound"
3351 3352
    ;;

M
malc 已提交
3353
    pa)
3354 3355
    audio_drv_probe $drv pulse/pulseaudio.h "-lpulse" \
        "pa_context_set_source_output_volume(NULL, 0, NULL, NULL, NULL); return 0;"
3356
    pulse_libs="-lpulse"
3357
    audio_pt_int="yes"
M
malc 已提交
3358 3359
    ;;

G
Gerd Hoffmann 已提交
3360 3361 3362 3363 3364 3365
    sdl)
    if test "$sdl" = "no"; then
        error_exit "sdl not found or disabled, can not use sdl audio driver"
    fi
    ;;

3366
    coreaudio)
3367
      coreaudio_libs="-framework CoreAudio"
3368 3369
    ;;

3370
    dsound)
3371
      dsound_libs="-lole32 -ldxguid"
3372
      audio_win_int="yes"
3373 3374 3375
    ;;

    oss)
3376
      oss_libs="$oss_lib"
3377 3378
    ;;

G
Gerd Hoffmann 已提交
3379 3380
    wav)
    # XXX: Probes for CoreAudio, DirectSound
B
blueswir1 已提交
3381 3382
    ;;

M
malc 已提交
3383
    *)
M
malc 已提交
3384
    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
3385 3386
        error_exit "Unknown driver '$drv' selected" \
            "Possible drivers are: $audio_possible_drivers"
M
malc 已提交
3387 3388
    }
    ;;
3389 3390
    esac
done
3391

A
aurel32 已提交
3392 3393 3394
##########################################
# BrlAPI probe

3395
if test "$brlapi" != "no" ; then
J
Juan Quintela 已提交
3396 3397
  brlapi_libs="-lbrlapi"
  cat > $TMPC << EOF
A
aurel32 已提交
3398
#include <brlapi.h>
S
Scott Wood 已提交
3399
#include <stddef.h>
A
aurel32 已提交
3400 3401
int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
EOF
3402
  if compile_prog "" "$brlapi_libs" ; then
J
Juan Quintela 已提交
3403
    brlapi=yes
3404 3405
  else
    if test "$brlapi" = "yes" ; then
3406
      feature_not_found "brlapi" "Install brlapi devel"
3407 3408
    fi
    brlapi=no
J
Juan Quintela 已提交
3409 3410
  fi
fi
A
aurel32 已提交
3411

B
balrog 已提交
3412 3413
##########################################
# curses probe
3414 3415
if test "$curses" != "no" ; then
  if test "$mingw32" = "yes" ; then
3416 3417
    curses_inc_list="$($pkg_config --cflags ncurses 2>/dev/null):"
    curses_lib_list="$($pkg_config --libs ncurses 2>/dev/null):-lpdcurses"
3418
  else
S
Samuel Thibault 已提交
3419
    curses_inc_list="$($pkg_config --cflags ncursesw 2>/dev/null):-I/usr/include/ncursesw:"
3420
    curses_lib_list="$($pkg_config --libs ncursesw 2>/dev/null):-lncursesw:-lcursesw"
3421
  fi
3422
  curses_found=no
B
balrog 已提交
3423
  cat > $TMPC << EOF
3424
#include <locale.h>
B
balrog 已提交
3425
#include <curses.h>
3426
#include <wchar.h>
3427
int main(void) {
3428 3429
  wchar_t wch = L'w';
  setlocale(LC_ALL, "");
3430
  resize_term(0, 0);
3431 3432
  addwstr(L"wide chars\n");
  addnwstr(&wch, 1);
S
Samuel Thibault 已提交
3433
  add_wch(WACS_DEGREE);
3434
  return 0;
3435
}
B
balrog 已提交
3436
EOF
3437
  IFS=:
3438
  for curses_inc in $curses_inc_list; do
3439 3440
    # Make sure we get the wide character prototypes
    curses_inc="-DNCURSES_WIDECHAR $curses_inc"
S
Samuel Thibault 已提交
3441
    IFS=:
3442 3443 3444 3445 3446 3447 3448
    for curses_lib in $curses_lib_list; do
      unset IFS
      if compile_prog "$curses_inc" "$curses_lib" ; then
        curses_found=yes
        break
      fi
    done
S
Samuel Thibault 已提交
3449 3450 3451
    if test "$curses_found" = yes ; then
      break
    fi
3452
  done
3453
  unset IFS
3454 3455 3456 3457
  if test "$curses_found" = "yes" ; then
    curses=yes
  else
    if test "$curses" = "yes" ; then
3458
      feature_not_found "curses" "Install ncurses devel"
3459 3460 3461
    fi
    curses=no
  fi
3462
fi
B
balrog 已提交
3463

A
Alexander Graf 已提交
3464 3465
##########################################
# curl probe
3466
if test "$curl" != "no" ; then
3467
  if $pkg_config libcurl --exists; then
3468 3469 3470 3471
    curlconfig="$pkg_config libcurl"
  else
    curlconfig=curl-config
  fi
A
Alexander Graf 已提交
3472 3473
  cat > $TMPC << EOF
#include <curl/curl.h>
3474
int main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; }
A
Alexander Graf 已提交
3475
EOF
3476 3477
  curl_cflags=$($curlconfig --cflags 2>/dev/null)
  curl_libs=$($curlconfig --libs 2>/dev/null)
J
Juan Quintela 已提交
3478
  if compile_prog "$curl_cflags" "$curl_libs" ; then
A
Alexander Graf 已提交
3479
    curl=yes
3480 3481
  else
    if test "$curl" = "yes" ; then
3482
      feature_not_found "curl" "Install libcurl devel"
3483 3484
    fi
    curl=no
A
Alexander Graf 已提交
3485 3486 3487
  fi
fi # test "$curl"

B
balrog 已提交
3488 3489
##########################################
# bluez support probe
3490
if test "$bluez" != "no" ; then
3491 3492 3493 3494
  cat > $TMPC << EOF
#include <bluetooth/bluetooth.h>
int main(void) { return bt_error(0); }
EOF
3495 3496
  bluez_cflags=$($pkg_config --cflags bluez 2>/dev/null)
  bluez_libs=$($pkg_config --libs bluez 2>/dev/null)
3497
  if compile_prog "$bluez_cflags" "$bluez_libs" ; then
3498
    bluez=yes
3499
    libs_softmmu="$bluez_libs $libs_softmmu"
3500
  else
3501
    if test "$bluez" = "yes" ; then
3502
      feature_not_found "bluez" "Install bluez-libs/libbluetooth devel"
3503
    fi
3504 3505
    bluez="no"
  fi
B
balrog 已提交
3506 3507
fi

3508 3509
##########################################
# glib support probe
3510

3511
glib_req_ver=2.40
3512 3513
glib_modules=gthread-2.0
if test "$modules" = yes; then
G
Gerd Hoffmann 已提交
3514
    glib_modules="$glib_modules gmodule-export-2.0"
3515
fi
F
Fam Zheng 已提交
3516

3517 3518 3519 3520 3521 3522 3523
# This workaround is required due to a bug in pkg-config file for glib as it
# doesn't define GLIB_STATIC_COMPILATION for pkg-config --static

if test "$static" = yes -a "$mingw32" = yes; then
    QEMU_CFLAGS="-DGLIB_STATIC_COMPILATION $QEMU_CFLAGS"
fi

3524
for i in $glib_modules; do
F
Fam Zheng 已提交
3525
    if $pkg_config --atleast-version=$glib_req_ver $i; then
3526 3527
        glib_cflags=$($pkg_config --cflags $i)
        glib_libs=$($pkg_config --libs $i)
3528
        QEMU_CFLAGS="$glib_cflags $QEMU_CFLAGS"
F
Fam Zheng 已提交
3529 3530 3531 3532 3533 3534 3535
        LIBS="$glib_libs $LIBS"
        libs_qga="$glib_libs $libs_qga"
    else
        error_exit "glib-$glib_req_ver $i is required to compile QEMU"
    fi
done

3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552
# Sanity check that the current size_t matches the
# size that glib thinks it should be. This catches
# problems on multi-arch where people try to build
# 32-bit QEMU while pointing at 64-bit glib headers
cat > $TMPC <<EOF
#include <glib.h>
#include <unistd.h>

#define QEMU_BUILD_BUG_ON(x) \
  typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused));

int main(void) {
   QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T);
   return 0;
}
EOF

3553
if ! compile_prog "$CFLAGS" "$LIBS" ; then
3554 3555 3556 3557 3558 3559
    error_exit "sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T."\
               "You probably need to set PKG_CONFIG_LIBDIR"\
	       "to point to the right pkg-config files for your"\
	       "build target"
fi

3560 3561
# g_test_trap_subprocess added in 2.38. Used by some tests.
glib_subprocess=yes
3562
if ! $pkg_config --atleast-version=2.38 glib-2.0; then
3563 3564 3565
    glib_subprocess=no
fi

3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577
# Silence clang 3.5.0 warnings about glib attribute __alloc_size__ usage
cat > $TMPC << EOF
#include <glib.h>
int main(void) { return 0; }
EOF
if ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then
    if cc_has_warning_flag "-Wno-unknown-attributes"; then
        glib_cflags="-Wno-unknown-attributes $glib_cflags"
        CFLAGS="-Wno-unknown-attributes $CFLAGS"
    fi
fi

F
Fam Zheng 已提交
3578 3579 3580 3581 3582
##########################################
# SHA command probe for modules
if test "$modules" = yes; then
    shacmd_probe="sha1sum sha1 shasum"
    for c in $shacmd_probe; do
F
Fam Zheng 已提交
3583
        if has $c; then
F
Fam Zheng 已提交
3584 3585 3586 3587 3588 3589 3590
            shacmd="$c"
            break
        fi
    done
    if test "$shacmd" = ""; then
        error_exit "one of the checksum commands is required to enable modules: $shacmd_probe"
    fi
3591 3592
fi

3593 3594 3595
##########################################
# pixman support probe

G
Gerd Hoffmann 已提交
3596
if test "$want_tools" = "no" -a "$softmmu" = "no"; then
3597 3598
  pixman_cflags=
  pixman_libs=
G
Gerd Hoffmann 已提交
3599
elif $pkg_config --atleast-version=0.21.8 pixman-1 > /dev/null 2>&1; then
3600 3601
  pixman_cflags=$($pkg_config --cflags pixman-1)
  pixman_libs=$($pkg_config --libs pixman-1)
3602
else
G
Gerd Hoffmann 已提交
3603 3604
  error_exit "pixman >= 0.21.8 not present." \
      "Please install the pixman devel package."
3605 3606
fi

3607 3608 3609 3610
##########################################
# libmpathpersist probe

if test "$mpath" != "no" ; then
3611
  # probe for the new API
3612 3613 3614 3615 3616
  cat > $TMPC <<EOF
#include <libudev.h>
#include <mpath_persist.h>
unsigned mpath_mx_alloc_len = 1024;
int logsink;
3617 3618 3619 3620 3621 3622 3623 3624
static struct config *multipath_conf;
extern struct udev *udev;
extern struct config *get_multipath_config(void);
extern void put_multipath_config(struct config *conf);
struct udev *udev;
struct config *get_multipath_config(void) { return multipath_conf; }
void put_multipath_config(struct config *conf) { }

3625
int main(void) {
3626 3627
    udev = udev_new();
    multipath_conf = mpath_lib_init();
3628 3629 3630 3631 3632
    return 0;
}
EOF
  if compile_prog "" "-ludev -lmultipath -lmpathpersist" ; then
    mpathpersist=yes
3633
    mpathpersist_new_api=yes
3634
  else
3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652
    # probe for the old API
    cat > $TMPC <<EOF
#include <libudev.h>
#include <mpath_persist.h>
unsigned mpath_mx_alloc_len = 1024;
int logsink;
int main(void) {
    struct udev *udev = udev_new();
    mpath_lib_init(udev);
    return 0;
}
EOF
    if compile_prog "" "-ludev -lmultipath -lmpathpersist" ; then
      mpathpersist=yes
      mpathpersist_new_api=no
    else
      mpathpersist=no
    fi
3653 3654 3655 3656 3657
  fi
else
  mpathpersist=no
fi

3658 3659 3660 3661 3662 3663 3664
##########################################
# libcap probe

if test "$cap" != "no" ; then
  cat > $TMPC <<EOF
#include <stdio.h>
#include <sys/capability.h>
3665
int main(void) { cap_t caps; caps = cap_init(); return caps != NULL; }
3666 3667 3668 3669 3670 3671 3672 3673
EOF
  if compile_prog "" "-lcap" ; then
    cap=yes
  else
    cap=no
  fi
fi

3674
##########################################
3675
# pthread probe
3676
PTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2"
3677

C
Christoph Hellwig 已提交
3678
pthread=no
3679
cat > $TMPC << EOF
3680
#include <pthread.h>
3681 3682 3683 3684 3685 3686
static void *f(void *p) { return NULL; }
int main(void) {
  pthread_t thread;
  pthread_create(&thread, 0, f, 0);
  return 0;
}
3687
EOF
3688 3689 3690 3691 3692 3693
if compile_prog "" "" ; then
  pthread=yes
else
  for pthread_lib in $PTHREADLIBS_LIST; do
    if compile_prog "" "$pthread_lib" ; then
      pthread=yes
P
Peter Portante 已提交
3694 3695 3696 3697 3698 3699 3700 3701 3702
      found=no
      for lib_entry in $LIBS; do
        if test "$lib_entry" = "$pthread_lib"; then
          found=yes
          break
        fi
      done
      if test "$found" = "no"; then
        LIBS="$pthread_lib $LIBS"
3703
        libs_qga="$pthread_lib $libs_qga"
P
Peter Portante 已提交
3704
      fi
3705
      PTHREAD_LIB="$pthread_lib"
3706 3707 3708 3709
      break
    fi
  done
fi
3710

3711
if test "$mingw32" != yes -a "$pthread" = no; then
3712 3713
  error_exit "pthread check failed" \
      "Make sure to have the pthread libs and headers installed."
3714 3715
fi

3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733
# check for pthread_setname_np
pthread_setname_np=no
cat > $TMPC << EOF
#include <pthread.h>

static void *f(void *p) { return NULL; }
int main(void)
{
    pthread_t thread;
    pthread_create(&thread, 0, f, 0);
    pthread_setname_np(thread, "QEMU");
    return 0;
}
EOF
if compile_prog "" "$pthread_lib" ; then
  pthread_setname_np=yes
fi

3734 3735 3736 3737 3738
##########################################
# rbd probe
if test "$rbd" != "no" ; then
  cat > $TMPC <<EOF
#include <stdio.h>
3739
#include <rbd/librbd.h>
3740
int main(void) {
3741 3742
    rados_t cluster;
    rados_create(&cluster, NULL);
3743 3744 3745
    return 0;
}
EOF
3746 3747 3748
  rbd_libs="-lrbd -lrados"
  if compile_prog "" "$rbd_libs" ; then
    rbd=yes
3749 3750
  else
    if test "$rbd" = "yes" ; then
3751
      feature_not_found "rados block device" "Install librbd/ceph devel"
3752 3753 3754 3755 3756
    fi
    rbd=no
  fi
fi

3757 3758
##########################################
# libssh2 probe
3759
min_libssh2_version=1.2.8
3760
if test "$libssh2" != "no" ; then
3761
  if $pkg_config --atleast-version=$min_libssh2_version libssh2; then
3762 3763
    libssh2_cflags=$($pkg_config libssh2 --cflags)
    libssh2_libs=$($pkg_config libssh2 --libs)
3764 3765 3766
    libssh2=yes
  else
    if test "$libssh2" = "yes" ; then
3767
      error_exit "libssh2 >= $min_libssh2_version required for --enable-libssh2"
3768 3769 3770 3771 3772
    fi
    libssh2=no
  fi
fi

3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797
##########################################
# libssh2_sftp_fsync probe

if test "$libssh2" = "yes"; then
  cat > $TMPC <<EOF
#include <stdio.h>
#include <libssh2.h>
#include <libssh2_sftp.h>
int main(void) {
    LIBSSH2_SESSION *session;
    LIBSSH2_SFTP *sftp;
    LIBSSH2_SFTP_HANDLE *sftp_handle;
    session = libssh2_session_init ();
    sftp = libssh2_sftp_init (session);
    sftp_handle = libssh2_sftp_open (sftp, "/", 0, 0);
    libssh2_sftp_fsync (sftp_handle);
    return 0;
}
EOF
  # libssh2_cflags/libssh2_libs defined in previous test.
  if compile_prog "$libssh2_cflags" "$libssh2_libs" ; then
    QEMU_CFLAGS="-DHAS_LIBSSH2_SFTP_FSYNC $QEMU_CFLAGS"
  fi
fi

3798 3799 3800 3801 3802 3803 3804
##########################################
# linux-aio probe

if test "$linux_aio" != "no" ; then
  cat > $TMPC <<EOF
#include <libaio.h>
#include <sys/eventfd.h>
S
Scott Wood 已提交
3805
#include <stddef.h>
3806 3807 3808 3809 3810 3811
int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
EOF
  if compile_prog "" "-laio" ; then
    linux_aio=yes
  else
    if test "$linux_aio" = "yes" ; then
3812
      feature_not_found "linux AIO" "Install libaio devel"
3813
    fi
3814
    linux_aio=no
3815 3816 3817
  fi
fi

P
Paolo Bonzini 已提交
3818 3819 3820 3821 3822 3823 3824 3825 3826
##########################################
# TPM passthrough is only on x86 Linux

if test "$targetos" = Linux && test "$cpu" = i386 -o "$cpu" = x86_64; then
  tpm_passthrough=$tpm
else
  tpm_passthrough=no
fi

3827 3828 3829 3830 3831 3832
# TPM emulator is for all posix systems
if test "$mingw32" != "yes"; then
  tpm_emulator=$tpm
else
  tpm_emulator=no
fi
3833 3834 3835 3836 3837 3838 3839
##########################################
# attr probe

if test "$attr" != "no" ; then
  cat > $TMPC <<EOF
#include <stdio.h>
#include <sys/types.h>
P
Pavel Borzenkov 已提交
3840 3841 3842
#ifdef CONFIG_LIBATTR
#include <attr/xattr.h>
#else
3843
#include <sys/xattr.h>
P
Pavel Borzenkov 已提交
3844
#endif
3845 3846
int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
EOF
3847 3848 3849
  if compile_prog "" "" ; then
    attr=yes
  # Older distros have <attr/xattr.h>, and need -lattr:
P
Pavel Borzenkov 已提交
3850
  elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then
3851 3852
    attr=yes
    LIBS="-lattr $LIBS"
3853
    libattr=yes
3854 3855
  else
    if test "$attr" = "yes" ; then
3856
      feature_not_found "ATTR" "Install libc6 or libattr devel"
3857 3858 3859 3860 3861
    fi
    attr=no
  fi
fi

A
aliguori 已提交
3862 3863 3864
##########################################
# iovec probe
cat > $TMPC <<EOF
B
blueswir1 已提交
3865
#include <sys/types.h>
A
aliguori 已提交
3866
#include <sys/uio.h>
B
blueswir1 已提交
3867
#include <unistd.h>
3868
int main(void) { return sizeof(struct iovec); }
A
aliguori 已提交
3869 3870
EOF
iovec=no
3871
if compile_prog "" "" ; then
A
aliguori 已提交
3872 3873 3874
  iovec=yes
fi

3875 3876 3877 3878 3879 3880
##########################################
# preadv probe
cat > $TMPC <<EOF
#include <sys/types.h>
#include <sys/uio.h>
#include <unistd.h>
3881
int main(void) { return preadv(0, 0, 0, 0); }
3882 3883
EOF
preadv=no
3884
if compile_prog "" "" ; then
3885 3886 3887
  preadv=yes
fi

3888 3889
##########################################
# fdt probe
3890 3891 3892 3893 3894
# fdt support is mandatory for at least some target architectures,
# so insist on it if we're building those system emulators.
fdt_required=no
for target in $target_list; do
  case $target in
K
KONRAD Frederic 已提交
3895
    aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu|mips64el-softmmu|riscv*-softmmu)
3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909
      fdt_required=yes
    ;;
  esac
done

if test "$fdt_required" = "yes"; then
  if test "$fdt" = "no"; then
    error_exit "fdt disabled but some requested targets require it." \
      "You can turn off fdt only if you also disable all the system emulation" \
      "targets which need it (by specifying a cut down --target-list)."
  fi
  fdt=yes
fi

3910
if test "$fdt" != "no" ; then
J
Juan Quintela 已提交
3911
  fdt_libs="-lfdt"
3912
  # explicitly check for libfdt_env.h as it is missing in some stable installs
P
Paul Burton 已提交
3913
  # and test for required functions to make sure we are on a version >= 1.4.2
J
Juan Quintela 已提交
3914
  cat > $TMPC << EOF
3915
#include <libfdt.h>
3916
#include <libfdt_env.h>
P
Paul Burton 已提交
3917
int main(void) { fdt_first_subnode(0, 0); return 0; }
3918
EOF
3919
  if compile_prog "" "$fdt_libs" ; then
3920
    # system DTC is good - use it
3921
    fdt=system
3922
  else
3923 3924 3925 3926 3927
      # have GIT checkout, so activate dtc submodule
      if test -e "${source_path}/.git" ; then
          git_submodules="${git_submodules} dtc"
      fi
      if test -d "${source_path}/dtc/libfdt" || test -e "${source_path}/.git" ; then
3928
          fdt=git
3929 3930 3931 3932 3933 3934
          mkdir -p dtc
          if [ "$pwd_is_source_path" != "y" ] ; then
              symlink "$source_path/dtc/Makefile" "dtc/Makefile"
              symlink "$source_path/dtc/scripts" "dtc/scripts"
          fi
          fdt_cflags="-I\$(SRC_PATH)/dtc/libfdt"
3935 3936
          fdt_ldflags="-L\$(BUILD_DIR)/dtc/libfdt"
          fdt_libs="$fdt_libs"
3937 3938 3939 3940 3941 3942 3943 3944 3945
      elif test "$fdt" = "yes" ; then
          # Not a git build & no libfdt found, prompt for system install
          error_exit "DTC (libfdt) version >= 1.4.2 not present." \
                     "Please install the DTC (libfdt) devel package"
      else
          # don't have and don't want
          fdt_libs=
          fdt=no
      fi
3946 3947 3948
  fi
fi

3949 3950
libs_softmmu="$libs_softmmu $fdt_libs"

M
Michael Walle 已提交
3951
##########################################
3952
# opengl probe (for sdl2, gtk, milkymist-tmu2)
G
Gerd Hoffmann 已提交
3953

G
Gerd Hoffmann 已提交
3954
if test "$opengl" != "no" ; then
3955
  opengl_pkgs="epoxy gbm"
3956 3957 3958
  if $pkg_config $opengl_pkgs; then
    opengl_cflags="$($pkg_config --cflags $opengl_pkgs)"
    opengl_libs="$($pkg_config --libs $opengl_pkgs)"
G
Gerd Hoffmann 已提交
3959
    opengl=yes
3960 3961 3962
    if test "$gtk" = "yes" && $pkg_config --exists "$gtkpackage >= 3.16"; then
        gtk_gl="yes"
    fi
G
Gerd Hoffmann 已提交
3963
    QEMU_CFLAGS="$QEMU_CFLAGS $opengl_cflags"
M
Michael Walle 已提交
3964
  else
G
Gerd Hoffmann 已提交
3965
    if test "$opengl" = "yes" ; then
G
Gerd Hoffmann 已提交
3966
      feature_not_found "opengl" "Please install opengl (mesa) devel pkgs: $opengl_pkgs"
M
Michael Walle 已提交
3967
    fi
3968
    opengl_cflags=""
G
Gerd Hoffmann 已提交
3969 3970
    opengl_libs=""
    opengl=no
M
Michael Walle 已提交
3971 3972 3973
  fi
fi

3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985
if test "$opengl" = "yes"; then
  cat > $TMPC << EOF
#include <epoxy/egl.h>
#ifndef EGL_MESA_image_dma_buf_export
# error mesa/epoxy lacks support for dmabufs (mesa 10.6+)
#endif
int main(void) { return 0; }
EOF
  if compile_prog "" "" ; then
    opengl_dmabuf=yes
  fi
fi
3986

K
Klim Kireev 已提交
3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000
##########################################
# libxml2 probe
if test "$libxml2" != "no" ; then
    if $pkg_config --exists libxml-2.0; then
        libxml2="yes"
        libxml2_cflags=$($pkg_config --cflags libxml-2.0)
        libxml2_libs=$($pkg_config --libs libxml-2.0)
    else
        if test "$libxml2" = "yes"; then
            feature_not_found "libxml2" "Install libxml2 devel"
        fi
        libxml2="no"
    fi
fi
4001

4002 4003 4004
##########################################
# glusterfs probe
if test "$glusterfs" != "no" ; then
4005
  if $pkg_config --atleast-version=3 glusterfs-api; then
4006
    glusterfs="yes"
4007 4008
    glusterfs_cflags=$($pkg_config --cflags glusterfs-api)
    glusterfs_libs=$($pkg_config --libs glusterfs-api)
4009 4010 4011
    if $pkg_config --atleast-version=4 glusterfs-api; then
      glusterfs_xlator_opt="yes"
    fi
4012
    if $pkg_config --atleast-version=5 glusterfs-api; then
4013 4014
      glusterfs_discard="yes"
    fi
4015
    if $pkg_config --atleast-version=6 glusterfs-api; then
4016
      glusterfs_fallocate="yes"
4017 4018
      glusterfs_zerofill="yes"
    fi
4019 4020
  else
    if test "$glusterfs" = "yes" ; then
4021 4022
      feature_not_found "GlusterFS backend support" \
          "Install glusterfs-api devel >= 3"
4023
    fi
4024
    glusterfs="no"
4025 4026 4027
  fi
fi

A
aurel32 已提交
4028
# Check for inotify functions when we are building linux-user
4029 4030 4031 4032 4033
# emulator.  This is done because older glibc versions don't
# have syscall stubs for these implemented.  In that case we
# don't provide them even if kernel supports them.
#
inotify=no
4034
cat > $TMPC << EOF
4035 4036 4037 4038 4039 4040
#include <sys/inotify.h>

int
main(void)
{
	/* try to start inotify */
A
aurel32 已提交
4041
	return inotify_init();
4042 4043
}
EOF
4044
if compile_prog "" "" ; then
4045
  inotify=yes
4046 4047
fi

4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062
inotify1=no
cat > $TMPC << EOF
#include <sys/inotify.h>

int
main(void)
{
    /* try to start inotify */
    return inotify_init1(0);
}
EOF
if compile_prog "" "" ; then
  inotify1=yes
fi

R
Riku Voipio 已提交
4063 4064 4065 4066 4067 4068 4069 4070 4071
# check if pipe2 is there
pipe2=no
cat > $TMPC << EOF
#include <unistd.h>
#include <fcntl.h>

int main(void)
{
    int pipefd[2];
4072
    return pipe2(pipefd, O_CLOEXEC);
R
Riku Voipio 已提交
4073 4074
}
EOF
4075
if compile_prog "" "" ; then
R
Riku Voipio 已提交
4076 4077 4078
  pipe2=yes
fi

K
Kevin Wolf 已提交
4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094
# check if accept4 is there
accept4=no
cat > $TMPC << EOF
#include <sys/socket.h>
#include <stddef.h>

int main(void)
{
    accept4(0, NULL, NULL, SOCK_CLOEXEC);
    return 0;
}
EOF
if compile_prog "" "" ; then
  accept4=yes
fi

4095 4096 4097 4098 4099 4100 4101 4102 4103
# check if tee/splice is there. vmsplice was added same time.
splice=no
cat > $TMPC << EOF
#include <unistd.h>
#include <fcntl.h>
#include <limits.h>

int main(void)
{
4104
    int len, fd = 0;
4105 4106 4107 4108 4109
    len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
    splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
    return 0;
}
EOF
4110
if compile_prog "" "" ; then
4111 4112 4113
  splice=yes
fi

4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133
##########################################
# libnuma probe

if test "$numa" != "no" ; then
  cat > $TMPC << EOF
#include <numa.h>
int main(void) { return numa_available(); }
EOF

  if compile_prog "" "-lnuma" ; then
    numa=yes
    libs_softmmu="-lnuma $libs_softmmu"
  else
    if test "$numa" = "yes" ; then
      feature_not_found "numa" "install numactl devel"
    fi
    numa=no
  fi
fi

4134 4135 4136 4137 4138
if test "$tcmalloc" = "yes" && test "$jemalloc" = "yes" ; then
    echo "ERROR: tcmalloc && jemalloc can't be used at the same time"
    exit 1
fi

4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162
# Even if malloc_trim() is available, these non-libc memory allocators
# do not support it.
if test "$tcmalloc" = "yes" || test "$jemalloc" = "yes" ; then
    if test "$malloc_trim" = "yes" ; then
        echo "Disabling malloc_trim with non-libc memory allocator"
    fi
    malloc_trim="no"
fi

#######################################
# malloc_trim

if test "$malloc_trim" != "no" ; then
    cat > $TMPC << EOF
#include <malloc.h>
int main(void) { malloc_trim(0); return 0; }
EOF
    if compile_prog "" "" ; then
        malloc_trim="yes"
    else
        malloc_trim="no"
    fi
fi

F
Fam Zheng 已提交
4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178
##########################################
# tcmalloc probe

if test "$tcmalloc" = "yes" ; then
  cat > $TMPC << EOF
#include <stdlib.h>
int main(void) { malloc(1); return 0; }
EOF

  if compile_prog "" "-ltcmalloc" ; then
    LIBS="-ltcmalloc $LIBS"
  else
    feature_not_found "tcmalloc" "install gperftools devel"
  fi
fi

4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194
##########################################
# jemalloc probe

if test "$jemalloc" = "yes" ; then
  cat > $TMPC << EOF
#include <stdlib.h>
int main(void) { malloc(1); return 0; }
EOF

  if compile_prog "" "-ljemalloc" ; then
    LIBS="-ljemalloc $LIBS"
  else
    feature_not_found "jemalloc" "install jemalloc devel"
  fi
fi

M
Marcelo Tosatti 已提交
4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208
##########################################
# signalfd probe
signalfd="no"
cat > $TMPC << EOF
#include <unistd.h>
#include <sys/syscall.h>
#include <signal.h>
int main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
EOF

if compile_prog "" "" ; then
  signalfd=yes
fi

R
Riku Voipio 已提交
4209 4210 4211 4212 4213 4214 4215
# check if eventfd is supported
eventfd=no
cat > $TMPC << EOF
#include <sys/eventfd.h>

int main(void)
{
4216
    return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
R
Riku Voipio 已提交
4217 4218 4219 4220 4221 4222
}
EOF
if compile_prog "" "" ; then
  eventfd=yes
fi

M
Marc-André Lureau 已提交
4223 4224 4225
# check if memfd is supported
memfd=no
cat > $TMPC << EOF
P
Paolo Bonzini 已提交
4226
#include <sys/mman.h>
M
Marc-André Lureau 已提交
4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238

int main(void)
{
    return memfd_create("foo", MFD_ALLOW_SEALING);
}
EOF
if compile_prog "" "" ; then
  memfd=yes
fi



4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249
# check for fallocate
fallocate=no
cat > $TMPC << EOF
#include <fcntl.h>

int main(void)
{
    fallocate(0, 0, 0, 0);
    return 0;
}
EOF
4250
if compile_prog "" "" ; then
4251 4252 4253
  fallocate=yes
fi

4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269
# check for fallocate hole punching
fallocate_punch_hole=no
cat > $TMPC << EOF
#include <fcntl.h>
#include <linux/falloc.h>

int main(void)
{
    fallocate(0, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, 0, 0);
    return 0;
}
EOF
if compile_prog "" "" ; then
  fallocate_punch_hole=yes
fi

4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285
# check that fallocate supports range zeroing inside the file
fallocate_zero_range=no
cat > $TMPC << EOF
#include <fcntl.h>
#include <linux/falloc.h>

int main(void)
{
    fallocate(0, FALLOC_FL_ZERO_RANGE, 0, 0);
    return 0;
}
EOF
if compile_prog "" "" ; then
  fallocate_zero_range=yes
fi

4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300
# check for posix_fallocate
posix_fallocate=no
cat > $TMPC << EOF
#include <fcntl.h>

int main(void)
{
    posix_fallocate(0, 0, 0);
    return 0;
}
EOF
if compile_prog "" "" ; then
    posix_fallocate=yes
fi

4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311
# check for sync_file_range
sync_file_range=no
cat > $TMPC << EOF
#include <fcntl.h>

int main(void)
{
    sync_file_range(0, 0, 0, 0);
    return 0;
}
EOF
4312
if compile_prog "" "" ; then
4313 4314 4315
  sync_file_range=yes
fi

4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328
# check for linux/fiemap.h and FS_IOC_FIEMAP
fiemap=no
cat > $TMPC << EOF
#include <sys/ioctl.h>
#include <linux/fs.h>
#include <linux/fiemap.h>

int main(void)
{
    ioctl(0, FS_IOC_FIEMAP, 0);
    return 0;
}
EOF
4329
if compile_prog "" "" ; then
4330 4331 4332
  fiemap=yes
fi

4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343
# check for dup3
dup3=no
cat > $TMPC << EOF
#include <unistd.h>

int main(void)
{
    dup3(0, 0, 0);
    return 0;
}
EOF
4344
if compile_prog "" "" ; then
4345 4346 4347
  dup3=yes
fi

4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363
# check for ppoll support
ppoll=no
cat > $TMPC << EOF
#include <poll.h>

int main(void)
{
    struct pollfd pfd = { .fd = 0, .events = 0, .revents = 0 };
    ppoll(&pfd, 1, 0, 0);
    return 0;
}
EOF
if compile_prog "" "" ; then
  ppoll=yes
fi

4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378
# check for prctl(PR_SET_TIMERSLACK , ... ) support
prctl_pr_set_timerslack=no
cat > $TMPC << EOF
#include <sys/prctl.h>

int main(void)
{
    prctl(PR_SET_TIMERSLACK, 1, 0, 0, 0);
    return 0;
}
EOF
if compile_prog "" "" ; then
  prctl_pr_set_timerslack=yes
fi

4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389
# check for epoll support
epoll=no
cat > $TMPC << EOF
#include <sys/epoll.h>

int main(void)
{
    epoll_create(0);
    return 0;
}
EOF
4390
if compile_prog "" "" ; then
4391 4392 4393
  epoll=yes
fi

4394 4395
# epoll_create1 is a later addition
# so we must check separately for its presence
4396 4397 4398 4399 4400 4401
epoll_create1=no
cat > $TMPC << EOF
#include <sys/epoll.h>

int main(void)
{
4402 4403 4404 4405 4406 4407 4408 4409
    /* Note that we use epoll_create1 as a value, not as
     * a function being called. This is necessary so that on
     * old SPARC glibc versions where the function was present in
     * the library but not declared in the header file we will
     * fail the configure check. (Otherwise we will get a compiler
     * warning but not an error, and will proceed to fail the
     * qemu compile where we compile with -Werror.)
     */
4410
    return (int)(uintptr_t)&epoll_create1;
4411 4412
}
EOF
4413
if compile_prog "" "" ; then
4414 4415 4416
  epoll_create1=yes
fi

4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430
# check for sendfile support
sendfile=no
cat > $TMPC << EOF
#include <sys/sendfile.h>

int main(void)
{
    return sendfile(0, 0, 0, 0);
}
EOF
if compile_prog "" "" ; then
  sendfile=yes
fi

4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444
# check for timerfd support (glibc 2.8 and newer)
timerfd=no
cat > $TMPC << EOF
#include <sys/timerfd.h>

int main(void)
{
    return(timerfd_create(CLOCK_REALTIME, 0));
}
EOF
if compile_prog "" "" ; then
  timerfd=yes
fi

R
Riku Voipio 已提交
4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461
# check for setns and unshare support
setns=no
cat > $TMPC << EOF
#include <sched.h>

int main(void)
{
    int ret;
    ret = setns(0, 0);
    ret = unshare(0);
    return ret;
}
EOF
if compile_prog "" "" ; then
  setns=yes
fi

4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476
# clock_adjtime probe
clock_adjtime=no
cat > $TMPC <<EOF
#include <time.h>

int main(void)
{
    return clock_adjtime(0, 0);
}
EOF
clock_adjtime=no
if compile_prog "" "" ; then
  clock_adjtime=yes
fi

4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491
# syncfs probe
syncfs=no
cat > $TMPC <<EOF
#include <unistd.h>

int main(void)
{
    return syncfs(0);
}
EOF
syncfs=no
if compile_prog "" "" ; then
  syncfs=yes
fi

4492
# Check if tools are available to build documentation.
J
Juan Quintela 已提交
4493
if test "$docs" != "no" ; then
4494
  if has makeinfo && has pod2man; then
J
Juan Quintela 已提交
4495
    docs=yes
4496
  else
J
Juan Quintela 已提交
4497
    if test "$docs" = "yes" ; then
4498
      feature_not_found "docs" "Install texinfo and Perl/perl-podlators"
4499
    fi
J
Juan Quintela 已提交
4500
    docs=no
4501
  fi
4502 4503
fi

S
Stefan Weil 已提交
4504
# Search for bswap_32 function
4505 4506 4507 4508 4509
byteswap_h=no
cat > $TMPC << EOF
#include <byteswap.h>
int main(void) { return bswap_32(0); }
EOF
4510
if compile_prog "" "" ; then
4511 4512 4513
  byteswap_h=yes
fi

4514
# Search for bswap32 function
4515 4516 4517 4518 4519 4520 4521
bswap_h=no
cat > $TMPC << EOF
#include <sys/endian.h>
#include <sys/types.h>
#include <machine/bswap.h>
int main(void) { return bswap32(0); }
EOF
4522
if compile_prog "" "" ; then
4523 4524 4525
  bswap_h=yes
fi

R
Ronnie Sahlberg 已提交
4526
##########################################
4527
# Do we have libiscsi >= 1.9.0
R
Ronnie Sahlberg 已提交
4528
if test "$libiscsi" != "no" ; then
4529
  if $pkg_config --atleast-version=1.9.0 libiscsi; then
4530
    libiscsi="yes"
4531 4532
    libiscsi_cflags=$($pkg_config --cflags libiscsi)
    libiscsi_libs=$($pkg_config --libs libiscsi)
R
Ronnie Sahlberg 已提交
4533 4534
  else
    if test "$libiscsi" = "yes" ; then
4535
      feature_not_found "libiscsi" "Install libiscsi >= 1.9.0"
R
Ronnie Sahlberg 已提交
4536 4537 4538 4539 4540
    fi
    libiscsi="no"
  fi
fi

4541 4542 4543 4544
##########################################
# Do we need libm
cat > $TMPC << EOF
#include <math.h>
4545
int main(int argc, char **argv) { return isnan(sin((double)argc)); }
4546 4547 4548 4549 4550 4551 4552
EOF
if compile_prog "" "" ; then
  :
elif compile_prog "" "-lm" ; then
  LIBS="-lm $LIBS"
  libs_qga="-lm $libs_qga"
else
4553
  error_exit "libm check failed"
4554 4555
fi

A
aliguori 已提交
4556 4557
##########################################
# Do we need librt
4558 4559 4560 4561
# uClibc provides 2 versions of clock_gettime(), one with realtime
# support and one without. This means that the clock_gettime() don't
# need -lrt. We still need it for timer_create() so we check for this
# function in addition.
A
aliguori 已提交
4562 4563 4564
cat > $TMPC <<EOF
#include <signal.h>
#include <time.h>
4565 4566 4567 4568
int main(void) {
  timer_create(CLOCK_REALTIME, NULL, NULL);
  return clock_gettime(CLOCK_REALTIME, NULL);
}
A
aliguori 已提交
4569 4570
EOF

4571
if compile_prog "" "" ; then
4572
  :
4573
# we need pthread for static linking. use previous pthread test result
4574 4575 4576
elif compile_prog "" "$pthread_lib -lrt" ; then
  LIBS="$LIBS -lrt"
  libs_qga="$libs_qga -lrt"
A
aliguori 已提交
4577 4578
fi

4579
if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
P
Peter Maydell 已提交
4580
        "$haiku" != "yes" ; then
4581 4582 4583
    libs_softmmu="-lutil $libs_softmmu"
fi

4584
##########################################
4585 4586 4587 4588 4589 4590
# spice probe
if test "$spice" != "no" ; then
  cat > $TMPC << EOF
#include <spice.h>
int main(void) { spice_server_new(); return 0; }
EOF
J
Jiri Denemark 已提交
4591 4592
  spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
  spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
4593 4594
  if $pkg_config --atleast-version=0.12.0 spice-server && \
     $pkg_config --atleast-version=0.12.3 spice-protocol && \
4595 4596 4597 4598
     compile_prog "$spice_cflags" "$spice_libs" ; then
    spice="yes"
    libs_softmmu="$libs_softmmu $spice_libs"
    QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags"
4599 4600
    spice_protocol_version=$($pkg_config --modversion spice-protocol)
    spice_server_version=$($pkg_config --modversion spice-server)
4601 4602
  else
    if test "$spice" = "yes" ; then
4603 4604
      feature_not_found "spice" \
          "Install spice-server(>=0.12.0) and spice-protocol(>=0.12.3) devel"
4605 4606 4607 4608 4609
    fi
    spice="no"
  fi
fi

4610 4611
# check for smartcard support
if test "$smartcard" != "no"; then
4612
    if $pkg_config --atleast-version=2.5.1 libcacard; then
4613 4614 4615
        libcacard_cflags=$($pkg_config --cflags libcacard)
        libcacard_libs=$($pkg_config --libs libcacard)
        smartcard="yes"
P
Paolo Bonzini 已提交
4616
    else
4617 4618
        if test "$smartcard" = "yes"; then
            feature_not_found "smartcard" "Install libcacard devel"
R
Robert Relyea 已提交
4619
        fi
4620
        smartcard="no"
R
Robert Relyea 已提交
4621 4622 4623
    fi
fi

G
Gerd Hoffmann 已提交
4624 4625
# check for libusb
if test "$libusb" != "no" ; then
4626
    if $pkg_config --atleast-version=1.0.13 libusb-1.0; then
G
Gerd Hoffmann 已提交
4627
        libusb="yes"
4628 4629
        libusb_cflags=$($pkg_config --cflags libusb-1.0)
        libusb_libs=$($pkg_config --libs libusb-1.0)
G
Gerd Hoffmann 已提交
4630 4631
    else
        if test "$libusb" = "yes"; then
4632
            feature_not_found "libusb" "Install libusb devel >= 1.0.13"
G
Gerd Hoffmann 已提交
4633 4634 4635 4636 4637
        fi
        libusb="no"
    fi
fi

4638 4639
# check for usbredirparser for usb network redirection support
if test "$usb_redir" != "no" ; then
4640
    if $pkg_config --atleast-version=0.6 libusbredirparser-0.5; then
4641
        usb_redir="yes"
4642 4643
        usb_redir_cflags=$($pkg_config --cflags libusbredirparser-0.5)
        usb_redir_libs=$($pkg_config --libs libusbredirparser-0.5)
4644 4645
    else
        if test "$usb_redir" = "yes"; then
4646
            feature_not_found "usb-redir" "Install usbredir devel"
4647 4648 4649 4650 4651
        fi
        usb_redir="no"
    fi
fi

4652 4653 4654 4655 4656
##########################################
# check if we have VSS SDK headers for win

if test "$mingw32" = "yes" -a "$guest_agent" != "no" -a "$vss_win32_sdk" != "no" ; then
  case "$vss_win32_sdk" in
4657
    "")   vss_win32_include="-isystem $source_path" ;;
4658 4659
    *\ *) # The SDK is installed in "Program Files" by default, but we cannot
          # handle path with spaces. So we symlink the headers into ".sdk/vss".
4660
          vss_win32_include="-isystem $source_path/.sdk/vss"
4661 4662
	  symlink "$vss_win32_sdk/inc" "$source_path/.sdk/vss/inc"
	  ;;
4663
    *)    vss_win32_include="-isystem $vss_win32_sdk"
4664 4665 4666 4667 4668 4669 4670 4671 4672
  esac
  cat > $TMPC << EOF
#define __MIDL_user_allocate_free_DEFINED__
#include <inc/win2003/vss.h>
int main(void) { return VSS_CTX_BACKUP; }
EOF
  if compile_prog "$vss_win32_include" "" ; then
    guest_agent_with_vss="yes"
    QEMU_CFLAGS="$QEMU_CFLAGS $vss_win32_include"
4673
    libs_qga="-lole32 -loleaut32 -lshlwapi -lstdc++ -Wl,--enable-stdcall-fixup $libs_qga"
4674
    qga_vss_provider="qga/vss-win32/qga-vss.dll qga/vss-win32/qga-vss.tlb"
4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707
  else
    if test "$vss_win32_sdk" != "" ; then
      echo "ERROR: Please download and install Microsoft VSS SDK:"
      echo "ERROR:   http://www.microsoft.com/en-us/download/details.aspx?id=23490"
      echo "ERROR: On POSIX-systems, you can extract the SDK headers by:"
      echo "ERROR:   scripts/extract-vsssdk-headers setup.exe"
      echo "ERROR: The headers are extracted in the directory \`inc'."
      feature_not_found "VSS support"
    fi
    guest_agent_with_vss="no"
  fi
fi

##########################################
# lookup Windows platform SDK (if not specified)
# The SDK is needed only to build .tlb (type library) file of guest agent
# VSS provider from the source. It is usually unnecessary because the
# pre-compiled .tlb file is included.

if test "$mingw32" = "yes" -a "$guest_agent" != "no" -a "$guest_agent_with_vss" = "yes" ; then
  if test -z "$win_sdk"; then
    programfiles="$PROGRAMFILES"
    test -n "$PROGRAMW6432" && programfiles="$PROGRAMW6432"
    if test -n "$programfiles"; then
      win_sdk=$(ls -d "$programfiles/Microsoft SDKs/Windows/v"* | tail -1) 2>/dev/null
    else
      feature_not_found "Windows SDK"
    fi
  elif test "$win_sdk" = "no"; then
    win_sdk=""
  fi
fi

4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723
##########################################
# check if mingw environment provides a recent ntddscsi.h
if test "$mingw32" = "yes" -a "$guest_agent" != "no"; then
  cat > $TMPC << EOF
#include <windows.h>
#include <ntddscsi.h>
int main(void) {
#if !defined(IOCTL_SCSI_GET_ADDRESS)
#error Missing required ioctl definitions
#endif
  SCSI_ADDRESS addr = { .Lun = 0, .TargetId = 0, .PathId = 0 };
  return addr.Lun;
}
EOF
  if compile_prog "" "" ; then
    guest_agent_ntddscsi=yes
4724
    libs_qga="-lsetupapi $libs_qga"
4725 4726 4727
  fi
fi

4728 4729 4730 4731 4732 4733 4734 4735 4736 4737
##########################################
# virgl renderer probe

if test "$virglrenderer" != "no" ; then
  cat > $TMPC << EOF
#include <virglrenderer.h>
int main(void) { virgl_renderer_poll(); return 0; }
EOF
  virgl_cflags=$($pkg_config --cflags virglrenderer 2>/dev/null)
  virgl_libs=$($pkg_config --libs virglrenderer 2>/dev/null)
4738
  virgl_version=$($pkg_config --modversion virglrenderer 2>/dev/null)
4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749
  if $pkg_config virglrenderer >/dev/null 2>&1 && \
     compile_prog "$virgl_cflags" "$virgl_libs" ; then
    virglrenderer="yes"
  else
    if test "$virglrenderer" = "yes" ; then
      feature_not_found "virglrenderer"
    fi
    virglrenderer="no"
  fi
fi

4750 4751 4752
##########################################
# capstone

4753 4754 4755 4756
case "$capstone" in
  "" | yes)
    if $pkg_config capstone; then
      capstone=system
4757
    elif test -e "${source_path}/.git" -a $git_update = 'yes' ; then
4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790
      capstone=git
    elif test -e "${source_path}/capstone/Makefile" ; then
      capstone=internal
    elif test -z "$capstone" ; then
      capstone=no
    else
      feature_not_found "capstone" "Install capstone devel or git submodule"
    fi
    ;;

  system)
    if ! $pkg_config capstone; then
      feature_not_found "capstone" "Install capstone devel"
    fi
    ;;
esac

case "$capstone" in
  git | internal)
    if test "$capstone" = git; then
      git_submodules="${git_submodules} capstone"
    fi
    mkdir -p capstone
    QEMU_CFLAGS="$QEMU_CFLAGS -I\$(SRC_PATH)/capstone/include"
    if test "$mingw32" = "yes"; then
      LIBCAPSTONE=capstone.lib
    else
      LIBCAPSTONE=libcapstone.a
    fi
    LIBS="-L\$(BUILD_DIR)/capstone -lcapstone $LIBS"
    ;;

  system)
4791 4792
    QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags capstone)"
    LIBS="$($pkg_config --libs capstone) $LIBS"
4793 4794 4795 4796 4797 4798 4799 4800
    ;;

  no)
    ;;
  *)
    error_exit "Unknown state for capstone: $capstone"
    ;;
esac
4801

B
Blue Swirl 已提交
4802 4803 4804 4805 4806 4807
##########################################
# check if we have fdatasync

fdatasync=no
cat > $TMPC << EOF
#include <unistd.h>
4808 4809 4810 4811
int main(void) {
#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
return fdatasync(0);
#else
4812
#error Not supported
4813 4814
#endif
}
B
Blue Swirl 已提交
4815 4816 4817 4818 4819
EOF
if compile_prog "" "" ; then
    fdatasync=yes
fi

A
Andreas Färber 已提交
4820 4821 4822 4823 4824 4825 4826
##########################################
# check if we have madvise

madvise=no
cat > $TMPC << EOF
#include <sys/types.h>
#include <sys/mman.h>
S
Scott Wood 已提交
4827
#include <stddef.h>
A
Andreas Färber 已提交
4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839
int main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
EOF
if compile_prog "" "" ; then
    madvise=yes
fi

##########################################
# check if we have posix_madvise

posix_madvise=no
cat > $TMPC << EOF
#include <sys/mman.h>
S
Scott Wood 已提交
4840
#include <stddef.h>
A
Andreas Färber 已提交
4841 4842 4843 4844 4845 4846
int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
EOF
if compile_prog "" "" ; then
    posix_madvise=yes
fi

4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861
##########################################
# check if we have posix_memalign()

posix_memalign=no
cat > $TMPC << EOF
#include <stdlib.h>
int main(void) {
    void *p;
    return posix_memalign(&p, 8, 8);
}
EOF
if compile_prog "" "" ; then
    posix_memalign=yes
fi

P
Paul Durrant 已提交
4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873
##########################################
# check if we have posix_syslog

posix_syslog=no
cat > $TMPC << EOF
#include <syslog.h>
int main(void) { openlog("qemu", LOG_PID, LOG_DAEMON); syslog(LOG_INFO, "configure"); return 0; }
EOF
if compile_prog "" "" ; then
    posix_syslog=yes
fi

4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885
##########################################
# check if we have sem_timedwait

sem_timedwait=no
cat > $TMPC << EOF
#include <semaphore.h>
int main(void) { return sem_timedwait(0, 0); }
EOF
if compile_prog "" "" ; then
    sem_timedwait=yes
fi

K
Keno Fischer 已提交
4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900
##########################################
# check if we have strchrnul

strchrnul=no
cat > $TMPC << EOF
#include <string.h>
int main(void);
// Use a haystack that the compiler shouldn't be able to constant fold
char *haystack = (char*)&main;
int main(void) { return strchrnul(haystack, 'x') != &haystack[6]; }
EOF
if compile_prog "" "" ; then
    strchrnul=yes
fi

4901 4902 4903
##########################################
# check if trace backend exists

L
Lluís Vilanova 已提交
4904
$python "$source_path/scripts/tracetool.py" "--backends=$trace_backends" --check-backends  > /dev/null 2> /dev/null
4905
if test "$?" -ne 0 ; then
L
Lluís Vilanova 已提交
4906 4907
  error_exit "invalid trace backends" \
      "Please choose supported trace backends."
4908 4909
fi

4910 4911
##########################################
# For 'ust' backend, test if ust headers are present
L
Lluís Vilanova 已提交
4912
if have_backend "ust"; then
4913
  cat > $TMPC << EOF
4914
#include <lttng/tracepoint.h>
4915 4916
int main(void) { return 0; }
EOF
4917
  if compile_prog "" "-Wl,--no-as-needed -ldl" ; then
4918
    if $pkg_config lttng-ust --exists; then
4919
      lttng_ust_libs=$($pkg_config --libs lttng-ust)
4920
    else
4921
      lttng_ust_libs="-llttng-ust -ldl"
4922 4923
    fi
    if $pkg_config liburcu-bp --exists; then
4924
      urcu_bp_libs=$($pkg_config --libs liburcu-bp)
4925 4926 4927 4928 4929 4930
    else
      urcu_bp_libs="-lurcu-bp"
    fi

    LIBS="$lttng_ust_libs $urcu_bp_libs $LIBS"
    libs_qga="$lttng_ust_libs $urcu_bp_libs $libs_qga"
4931
  else
4932
    error_exit "Trace backend 'ust' missing lttng-ust header files"
4933 4934
  fi
fi
4935 4936 4937

##########################################
# For 'dtrace' backend, test if 'dtrace' command is present
L
Lluís Vilanova 已提交
4938
if have_backend "dtrace"; then
4939
  if ! has 'dtrace' ; then
4940
    error_exit "dtrace command is not found in PATH $PATH"
4941
  fi
4942 4943 4944 4945
  trace_backend_stap="no"
  if has 'stap' ; then
    trace_backend_stap="yes"
  fi
4946 4947
fi

W
Wolfgang Mauerer 已提交
4948
##########################################
4949
# check and set a backend for coroutine
4950

4951
# We prefer ucontext, but it's not always possible. The fallback
4952 4953
# is sigcontext. On Windows the only valid backend is the Windows
# specific one.
4954 4955 4956 4957

ucontext_works=no
if test "$darwin" != "yes"; then
  cat > $TMPC << EOF
4958
#include <ucontext.h>
4959 4960 4961
#ifdef __stub_makecontext
#error Ignoring glibc stub makecontext which will always fail
#endif
4962
int main(void) { makecontext(0, 0, 0); return 0; }
4963
EOF
4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975
  if compile_prog "" "" ; then
    ucontext_works=yes
  fi
fi

if test "$coroutine" = ""; then
  if test "$mingw32" = "yes"; then
    coroutine=win32
  elif test "$ucontext_works" = "yes"; then
    coroutine=ucontext
  else
    coroutine=sigaltstack
4976
  fi
4977
else
4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991
  case $coroutine in
  windows)
    if test "$mingw32" != "yes"; then
      error_exit "'windows' coroutine backend only valid for Windows"
    fi
    # Unfortunately the user visible backend name doesn't match the
    # coroutine-*.c filename for this case, so we have to adjust it here.
    coroutine=win32
    ;;
  ucontext)
    if test "$ucontext_works" != "yes"; then
      feature_not_found "ucontext"
    fi
    ;;
4992
  sigaltstack)
4993 4994 4995 4996 4997 4998 4999 5000
    if test "$mingw32" = "yes"; then
      error_exit "only the 'windows' coroutine backend is valid for Windows"
    fi
    ;;
  *)
    error_exit "unknown coroutine backend $coroutine"
    ;;
  esac
5001 5002
fi

5003
if test "$coroutine_pool" = ""; then
5004
  coroutine_pool=yes
5005 5006
fi

5007 5008 5009 5010 5011 5012 5013 5014
if test "$debug_stack_usage" = "yes"; then
  if test "$coroutine_pool" = "yes"; then
    echo "WARN: disabling coroutine pool for stack usage debugging"
    coroutine_pool=no
  fi
fi


5015 5016 5017
##########################################
# check if we have open_by_handle_at

S
Stefan Weil 已提交
5018
open_by_handle_at=no
5019 5020
cat > $TMPC << EOF
#include <fcntl.h>
5021 5022 5023
#if !defined(AT_EMPTY_PATH)
# error missing definition
#else
5024
int main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); }
5025
#endif
5026 5027 5028 5029 5030
EOF
if compile_prog "" "" ; then
    open_by_handle_at=yes
fi

5031 5032 5033 5034 5035 5036 5037
########################################
# check if we have linux/magic.h

linux_magic_h=no
cat > $TMPC << EOF
#include <linux/magic.h>
int main(void) {
5038
  return 0;
5039 5040 5041 5042 5043 5044
}
EOF
if compile_prog "" "" ; then
    linux_magic_h=yes
fi

5045
########################################
K
Kevin Wolf 已提交
5046 5047 5048 5049 5050 5051 5052 5053
# check whether we can disable warning option with a pragma (this is needed
# to silence warnings in the headers of some versions of external libraries).
# This test has to be compiled with -Werror as otherwise an unknown pragma is
# only a warning.
#
# If we can't selectively disable warning in the code, disable -Werror so that
# the build doesn't fail anyway.

5054 5055
pragma_disable_unused_but_set=no
cat > $TMPC << EOF
5056
#pragma GCC diagnostic push
K
Kevin Wolf 已提交
5057
#pragma GCC diagnostic ignored "-Wstrict-prototypes"
5058
#pragma GCC diagnostic pop
K
Kevin Wolf 已提交
5059

5060 5061 5062 5063 5064
int main(void) {
    return 0;
}
EOF
if compile_prog "-Werror" "" ; then
5065
    pragma_diagnostic_available=yes
K
Kevin Wolf 已提交
5066 5067
else
    werror=no
5068 5069
fi

5070
########################################
5071
# check if we have valgrind/valgrind.h
5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083

valgrind_h=no
cat > $TMPC << EOF
#include <valgrind/valgrind.h>
int main(void) {
  return 0;
}
EOF
if compile_prog "" "" ; then
    valgrind_h=yes
fi

5084 5085 5086 5087 5088 5089 5090
########################################
# check if environ is declared

has_environ=no
cat > $TMPC << EOF
#include <unistd.h>
int main(void) {
5091
    environ = 0;
5092 5093 5094 5095 5096 5097 5098
    return 0;
}
EOF
if compile_prog "" "" ; then
    has_environ=yes
fi

5099 5100 5101 5102 5103 5104
########################################
# check if cpuid.h is usable.

cat > $TMPC << EOF
#include <cpuid.h>
int main(void) {
5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116
    unsigned a, b, c, d;
    int max = __get_cpuid_max(0, 0);

    if (max >= 1) {
        __cpuid(1, a, b, c, d);
    }

    if (max >= 7) {
        __cpuid_count(7, 0, a, b, c, d);
    }

    return 0;
5117 5118 5119 5120 5121 5122
}
EOF
if compile_prog "" "" ; then
    cpuid_h=yes
fi

5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145
##########################################
# avx2 optimization requirement check
#
# There is no point enabling this if cpuid.h is not usable,
# since we won't be able to select the new routines.

if test $cpuid_h = yes; then
  cat > $TMPC << EOF
#pragma GCC push_options
#pragma GCC target("avx2")
#include <cpuid.h>
#include <immintrin.h>
static int bar(void *a) {
    __m256i x = *(__m256i *)a;
    return _mm256_testz_si256(x, x);
}
int main(int argc, char *argv[]) { return bar(argv[0]); }
EOF
  if compile_object "" ; then
    avx2_opt="yes"
  fi
fi

5146 5147 5148 5149 5150
########################################
# check if __[u]int128_t is usable.

int128=no
cat > $TMPC << EOF
5151 5152 5153 5154 5155
#if defined(__clang_major__) && defined(__clang_minor__)
# if ((__clang_major__ < 3) || (__clang_major__ == 3) && (__clang_minor__ < 2))
#  error __int128_t does not work in CLANG before 3.2
# endif
#endif
5156 5157 5158 5159 5160
__int128_t a;
__uint128_t b;
int main (void) {
  a = a + b;
  b = a * b;
5161
  a = a * a;
5162 5163 5164 5165 5166 5167
  return 0;
}
EOF
if compile_prog "" "" ; then
    int128=yes
fi
5168

R
Richard Henderson 已提交
5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188
#########################################
# See if 128-bit atomic operations are supported.

atomic128=no
if test "$int128" = "yes"; then
  cat > $TMPC << EOF
int main(void)
{
  unsigned __int128 x = 0, y = 0;
  y = __atomic_load_16(&x, 0);
  __atomic_store_16(&x, y, 0);
  __atomic_compare_exchange_16(&x, &y, x, 0, 0, 0);
  return 0;
}
EOF
  if compile_prog "" "" ; then
    atomic128=yes
  fi
fi

R
Richard Henderson 已提交
5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217
#########################################
# See if 64-bit atomic operations are supported.
# Note that without __atomic builtins, we can only
# assume atomic loads/stores max at pointer size.

cat > $TMPC << EOF
#include <stdint.h>
int main(void)
{
  uint64_t x = 0, y = 0;
#ifdef __ATOMIC_RELAXED
  y = __atomic_load_8(&x, 0);
  __atomic_store_8(&x, y, 0);
  __atomic_compare_exchange_8(&x, &y, x, 0, 0, 0);
  __atomic_exchange_8(&x, y, 0);
  __atomic_fetch_add_8(&x, y, 0);
#else
  typedef char is_host64[sizeof(void *) >= sizeof(uint64_t) ? 1 : -1];
  __sync_lock_test_and_set(&x, y);
  __sync_val_compare_and_swap(&x, y, 0);
  __sync_fetch_and_add(&x, y);
#endif
  return 0;
}
EOF
if compile_prog "" "" ; then
  atomic64=yes
fi

5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241
########################################
# See if 16-byte vector operations are supported.
# Even without a vector unit the compiler may expand these.
# There is a bug in old GCC for PPC that crashes here.
# Unfortunately it's the system compiler for Centos 7.

cat > $TMPC << EOF
typedef unsigned char U1 __attribute__((vector_size(16)));
typedef unsigned short U2 __attribute__((vector_size(16)));
typedef unsigned int U4 __attribute__((vector_size(16)));
typedef unsigned long long U8 __attribute__((vector_size(16)));
typedef signed char S1 __attribute__((vector_size(16)));
typedef signed short S2 __attribute__((vector_size(16)));
typedef signed int S4 __attribute__((vector_size(16)));
typedef signed long long S8 __attribute__((vector_size(16)));
static U1 a1, b1;
static U2 a2, b2;
static U4 a4, b4;
static U8 a8, b8;
static S1 c1;
static S2 c2;
static S4 c4;
static S8 c8;
static int i;
5242 5243 5244 5245 5246 5247 5248 5249
void helper(void *d, void *a, int shift, int i);
void helper(void *d, void *a, int shift, int i)
{
  *(U1 *)(d + i) = *(U1 *)(a + i) << shift;
  *(U2 *)(d + i) = *(U2 *)(a + i) << shift;
  *(U4 *)(d + i) = *(U4 *)(a + i) << shift;
  *(U8 *)(d + i) = *(U8 *)(a + i) << shift;
}
5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269
int main(void)
{
  a1 += b1; a2 += b2; a4 += b4; a8 += b8;
  a1 -= b1; a2 -= b2; a4 -= b4; a8 -= b8;
  a1 *= b1; a2 *= b2; a4 *= b4; a8 *= b8;
  a1 &= b1; a2 &= b2; a4 &= b4; a8 &= b8;
  a1 |= b1; a2 |= b2; a4 |= b4; a8 |= b8;
  a1 ^= b1; a2 ^= b2; a4 ^= b4; a8 ^= b8;
  a1 <<= i; a2 <<= i; a4 <<= i; a8 <<= i;
  a1 >>= i; a2 >>= i; a4 >>= i; a8 >>= i;
  c1 >>= i; c2 >>= i; c4 >>= i; c8 >>= i;
  return 0;
}
EOF

vector16=no
if compile_prog "" "" ; then
  vector16=yes
fi

5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283
########################################
# check if getauxval is available.

getauxval=no
cat > $TMPC << EOF
#include <sys/auxv.h>
int main(void) {
  return getauxval(AT_HWCAP) == 0;
}
EOF
if compile_prog "" "" ; then
    getauxval=yes
fi

5284 5285 5286 5287
########################################
# check if ccache is interfering with
# semantic analysis of macros

5288
unset CCACHE_CPP2
5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311
ccache_cpp2=no
cat > $TMPC << EOF
static const int Z = 1;
#define fn() ({ Z; })
#define TAUT(X) ((X) == Z)
#define PAREN(X, Y) (X == Y)
#define ID(X) (X)
int main(int argc, char *argv[])
{
    int x = 0, y = 0;
    x = ID(x);
    x = fn();
    fn();
    if (PAREN(x, y)) return 0;
    if (TAUT(Z)) return 0;
    return 0;
}
EOF

if ! compile_object "-Werror"; then
    ccache_cpp2=yes
fi

5312 5313 5314 5315 5316 5317
#################################################
# clang does not support glibc + FORTIFY_SOURCE.

if test "$fortify_source" != "no"; then
  if echo | $cc -dM -E - | grep __clang__ > /dev/null 2>&1 ; then
    fortify_source="no";
5318
  elif test -n "$cxx" && has $cxx &&
J
John Snow 已提交
5319
       echo | $cxx -dM -E - | grep __clang__ >/dev/null 2>&1 ; then
5320 5321 5322 5323 5324 5325
    fortify_source="no";
  else
    fortify_source="yes"
  fi
fi

5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339
###############################################
# Check if copy_file_range is provided by glibc
have_copy_file_range=no
cat > $TMPC << EOF
#include <unistd.h>
int main(void) {
  copy_file_range(0, NULL, 0, NULL, 0, 0);
  return 0;
}
EOF
if compile_prog "" "" ; then
    have_copy_file_range=yes
fi

5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354
##########################################
# check if struct fsxattr is available via linux/fs.h

have_fsxattr=no
cat > $TMPC << EOF
#include <linux/fs.h>
struct fsxattr foo;
int main(void) {
  return 0;
}
EOF
if compile_prog "" "" ; then
    have_fsxattr=yes
fi

5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385
##########################################
# check for usable membarrier system call
if test "$membarrier" = "yes"; then
    have_membarrier=no
    if test "$mingw32" = "yes" ; then
        have_membarrier=yes
    elif test "$linux" = "yes" ; then
        cat > $TMPC << EOF
    #include <linux/membarrier.h>
    #include <sys/syscall.h>
    #include <unistd.h>
    #include <stdlib.h>
    int main(void) {
        syscall(__NR_membarrier, MEMBARRIER_CMD_QUERY, 0);
        syscall(__NR_membarrier, MEMBARRIER_CMD_SHARED, 0);
	exit(0);
    }
EOF
        if compile_prog "" "" ; then
            have_membarrier=yes
        fi
    fi
    if test "$have_membarrier" = "no"; then
      feature_not_found "membarrier" "membarrier system call not available"
    fi
else
    # Do not enable it by default even for Mingw32, because it doesn't
    # work on Wine.
    membarrier=no
fi

5386 5387
##########################################
# check if rtnetlink.h exists and is useful
5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398
have_rtnetlink=no
cat > $TMPC << EOF
#include <linux/rtnetlink.h>
int main(void) {
  return IFLA_PROTO_DOWN;
}
EOF
if compile_prog "" "" ; then
    have_rtnetlink=yes
fi

S
Stefan Hajnoczi 已提交
5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425
##########################################
# check for usable AF_VSOCK environment
have_af_vsock=no
cat > $TMPC << EOF
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#if !defined(AF_VSOCK)
# error missing AF_VSOCK flag
#endif
#include <linux/vm_sockets.h>
int main(void) {
    int sock, ret;
    struct sockaddr_vm svm;
    socklen_t len = sizeof(svm);
    sock = socket(AF_VSOCK, SOCK_STREAM, 0);
    ret = getpeername(sock, (struct sockaddr *)&svm, &len);
    if ((ret == -1) && (errno == ENOTCONN)) {
        return 0;
    }
    return -1;
}
EOF
if compile_prog "" "" ; then
    have_af_vsock=yes
fi

5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451
##########################################
# check for usable AF_ALG environment
hava_afalg=no
cat > $TMPC << EOF
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <linux/if_alg.h>
int main(void) {
    int sock;
    sock = socket(AF_ALG, SOCK_SEQPACKET, 0);
    return sock;
}
EOF
if compile_prog "" "" ; then
    have_afalg=yes
fi
if test "$crypto_afalg" = "yes"
then
    if test "$have_afalg" != "yes"
    then
	error_exit "AF_ALG requested but could not be detected"
    fi
fi


5452 5453
#################################################
# Check to see if we have the Hypervisor framework
5454
if [ "$darwin" = "yes" ] ; then
5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466
  cat > $TMPC << EOF
#include <Hypervisor/hv.h>
int main() { return 0;}
EOF
  if ! compile_object ""; then
    hvf='no'
  else
    hvf='yes'
    LDFLAGS="-framework Hypervisor $LDFLAGS"
  fi
fi

5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481
#################################################
# Sparc implicitly links with --relax, which is
# incompatible with -r, so --no-relax should be
# given. It does no harm to give it on other
# platforms too.

# Note: the prototype is needed since QEMU_CFLAGS
#       contains -Wmissing-prototypes
cat > $TMPC << EOF
extern int foo(void);
int foo(void) { return 0; }
EOF
if ! compile_object ""; then
  error_exit "Failed to compile object file for LD_REL_FLAGS test"
fi
5482 5483 5484 5485 5486 5487 5488 5489
for i in '-Wl,-r -Wl,--no-relax' -Wl,-r -r; do
  if do_cc -nostdlib $i -o $TMPMO $TMPO; then
    LD_REL_FLAGS=$i
    break
  fi
done
if test "$modules" = "yes" && test "$LD_REL_FLAGS" = ""; then
  feature_not_found "modules" "Cannot find how to build relocatable objects"
5490 5491
fi

5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505
##########################################
# check for sysmacros.h

have_sysmacros=no
cat > $TMPC << EOF
#include <sys/sysmacros.h>
int main(void) {
    return makedev(0, 0);
}
EOF
if compile_prog "" "" ; then
    have_sysmacros=yes
fi

5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532
##########################################
# Veritas HyperScale block driver VxHS
# Check if libvxhs is installed

if test "$vxhs" != "no" ; then
  cat > $TMPC <<EOF
#include <stdint.h>
#include <qnio/qnio_api.h>

void *vxhs_callback;

int main(void) {
    iio_init(QNIO_VERSION, vxhs_callback);
    return 0;
}
EOF
  vxhs_libs="-lvxhs -lssl"
  if compile_prog "" "$vxhs_libs" ; then
    vxhs=yes
  else
    if test "$vxhs" = "yes" ; then
      feature_not_found "vxhs block device" "Install libvxhs See github"
    fi
    vxhs=no
  fi
fi

5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546
##########################################
# check for _Static_assert()

have_static_assert=no
cat > $TMPC << EOF
_Static_assert(1, "success");
int main(void) {
    return 0;
}
EOF
if compile_prog "" "" ; then
    have_static_assert=yes
fi

5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561
##########################################
# check for utmpx.h, it is missing e.g. on OpenBSD

have_utmpx=no
cat > $TMPC << EOF
#include <utmpx.h>
struct utmpx user_info;
int main(void) {
    return 0;
}
EOF
if compile_prog "" "" ; then
    have_utmpx=yes
fi

5562 5563 5564 5565 5566
##########################################
# checks for sanitizers

have_asan=no
have_ubsan=no
5567 5568
have_asan_iface_h=no
have_asan_iface_fiber=no
5569 5570

if test "$sanitizers" = "yes" ; then
5571
  write_c_skeleton
5572 5573 5574
  if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" ""; then
      have_asan=yes
  fi
5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585

  # we could use a simple skeleton for flags checks, but this also
  # detect the static linking issue of ubsan, see also:
  # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84285
  cat > $TMPC << EOF
#include <stdlib.h>
int main(void) {
    void *tmp = malloc(10);
    return *(int *)(tmp + 2);
}
EOF
5586 5587 5588
  if compile_prog "$CPU_CFLAGS -Werror -fsanitize=undefined" ""; then
      have_ubsan=yes
  fi
5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603

  if check_include "sanitizer/asan_interface.h" ; then
      have_asan_iface_h=yes
  fi

  cat > $TMPC << EOF
#include <sanitizer/asan_interface.h>
int main(void) {
  __sanitizer_start_switch_fiber(0, 0, 0);
  return 0;
}
EOF
  if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" "" ; then
      have_asan_iface_fiber=yes
  fi
5604 5605
fi

5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616
##########################################
# Docker and cross-compiler support
#
# This is specifically for building test
# cases for foreign architectures, not
# cross-compiling QEMU itself.

if has "docker"; then
    docker=$($python $source_path/tests/docker/docker.py probe)
fi

J
Junyan He 已提交
5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634
##########################################
# check for libpmem

if test "$libpmem" != "no"; then
	if $pkg_config --exists "libpmem"; then
		libpmem="yes"
		libpmem_libs=$($pkg_config --libs libpmem)
		libpmem_cflags=$($pkg_config --cflags libpmem)
		libs_softmmu="$libs_softmmu $libpmem_libs"
		QEMU_CFLAGS="$QEMU_CFLAGS $libpmem_cflags"
	else
		if test "$libpmem" = "yes" ; then
			feature_not_found "libpmem" "Install nvml or pmdk"
		fi
		libpmem="no"
	fi
fi

5635
##########################################
5636 5637 5638
# End of CC checks
# After here, no more $cc or $ld runs

5639 5640
write_c_skeleton

B
Blue Swirl 已提交
5641 5642 5643
if test "$gcov" = "yes" ; then
  CFLAGS="-fprofile-arcs -ftest-coverage -g $CFLAGS"
  LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS"
5644
elif test "$fortify_source" = "yes" ; then
5645
  CFLAGS="-O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $CFLAGS"
5646 5647
elif test "$debug" = "no"; then
  CFLAGS="-O2 $CFLAGS"
5648
fi
J
Juan Quintela 已提交
5649

5650 5651
if test "$have_asan" = "yes"; then
  CFLAGS="-fsanitize=address $CFLAGS"
5652 5653 5654 5655 5656 5657 5658
  if test "$have_asan_iface_h" = "no" ; then
      echo "ASAN build enabled, but ASAN header missing." \
           "Without code annotation, the report may be inferior."
  elif test "$have_asan_iface_fiber" = "no" ; then
      echo "ASAN build enabled, but ASAN header is too old." \
           "Without code annotation, the report may be inferior."
  fi
5659 5660 5661 5662 5663
fi
if test "$have_ubsan" = "yes"; then
  CFLAGS="-fsanitize=undefined $CFLAGS"
fi

P
Peter Lieven 已提交
5664 5665 5666
##########################################
# Do we have libnfs
if test "$libnfs" != "no" ; then
5667
  if $pkg_config --atleast-version=1.9.3 libnfs; then
P
Peter Lieven 已提交
5668 5669 5670 5671
    libnfs="yes"
    libnfs_libs=$($pkg_config --libs libnfs)
  else
    if test "$libnfs" = "yes" ; then
5672
      feature_not_found "libnfs" "Install libnfs devel >= 1.9.3"
P
Peter Lieven 已提交
5673 5674 5675 5676
    fi
    libnfs="no"
  fi
fi
B
Blue Swirl 已提交
5677

5678 5679 5680 5681 5682
# Now we've finished running tests it's OK to add -Werror to the compiler flags
if test "$werror" = "yes"; then
    QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
fi

5683 5684
if test "$solaris" = "no" ; then
    if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
5685
        LDFLAGS="-Wl,--warn-common $LDFLAGS"
5686 5687 5688
    fi
fi

5689 5690 5691 5692 5693 5694 5695
# test if pod2man has --utf8 option
if pod2man --help | grep -q utf8; then
    POD2MAN="pod2man --utf8"
else
    POD2MAN="pod2man"
fi

5696 5697 5698
# Use ASLR, no-SEH and DEP if available
if test "$mingw32" = "yes" ; then
    for flag in --dynamicbase --no-seh --nxcompat; do
5699
        if ld_has $flag ; then
5700 5701 5702 5703 5704
            LDFLAGS="-Wl,$flag $LDFLAGS"
        fi
    done
fi

5705
qemu_confdir=$sysconfdir$confsuffix
F
Fam Zheng 已提交
5706
qemu_moddir=$libdir$confsuffix
5707
qemu_datadir=$datadir$confsuffix
5708
qemu_localedir="$datadir/locale"
5709

5710 5711 5712 5713 5714
# We can only support ivshmem if we have eventfd
if [ "$eventfd" = "yes" ]; then
  ivshmem=yes
fi

5715 5716
tools=""
if test "$want_tools" = "yes" ; then
5717
  tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) qemu-edid\$(EXESUF) $tools"
5718 5719
  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
    tools="qemu-nbd\$(EXESUF) $tools"
5720 5721
  fi
  if [ "$ivshmem" = "yes" ]; then
5722
    tools="ivshmem-client\$(EXESUF) ivshmem-server\$(EXESUF) $tools"
5723 5724 5725
  fi
fi
if test "$softmmu" = yes ; then
P
Paolo Bonzini 已提交
5726 5727
  if test "$linux" = yes; then
    if test "$virtfs" != no && test "$cap" = yes && test "$attr" = yes ; then
5728 5729 5730 5731
      virtfs=yes
      tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
    else
      if test "$virtfs" = yes; then
P
Paolo Bonzini 已提交
5732
        error_exit "VirtFS requires libcap devel and libattr devel"
5733
      fi
5734
      virtfs=no
5735
    fi
5736 5737 5738 5739 5740 5741 5742 5743
    if test "$mpath" != no && test "$mpathpersist" = yes ; then
      mpath=yes
    else
      if test "$mpath" = yes; then
        error_exit "Multipath requires libmpathpersist devel"
      fi
      mpath=no
    fi
P
Paolo Bonzini 已提交
5744 5745 5746 5747 5748 5749
    tools="$tools scsi/qemu-pr-helper\$(EXESUF)"
  else
    if test "$virtfs" = yes; then
      error_exit "VirtFS is supported only on Linux"
    fi
    virtfs=no
5750 5751 5752 5753
    if test "$mpath" = yes; then
      error_exit "Multipath is supported only on Linux"
    fi
    mpath=no
5754
  fi
5755 5756 5757
  if test "$xkbcommon" = "yes"; then
    tools="qemu-keymap\$(EXESUF) $tools"
  fi
G
Gerd Hoffmann 已提交
5758
fi
5759 5760 5761

# Probe for guest agent support/options

5762
if [ "$guest_agent" != "no" ]; then
5763
  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32" = "yes" ] ; then
5764
      tools="qemu-ga $tools"
5765 5766 5767 5768 5769
      guest_agent=yes
  elif [ "$guest_agent" != yes ]; then
      guest_agent=no
  else
      error_exit "Guest agent is not supported on this platform"
5770
  fi
5771
fi
5772

5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789
# Guest agent Window MSI  package

if test "$guest_agent" != yes; then
  if test "$guest_agent_msi" = yes; then
    error_exit "MSI guest agent package requires guest agent enabled"
  fi
  guest_agent_msi=no
elif test "$mingw32" != "yes"; then
  if test "$guest_agent_msi" = "yes"; then
    error_exit "MSI guest agent package is available only for MinGW Windows cross-compilation"
  fi
  guest_agent_msi=no
elif ! has wixl; then
  if test "$guest_agent_msi" = "yes"; then
    error_exit "MSI guest agent package requires wixl tool installed ( usually from msitools package )"
  fi
  guest_agent_msi=no
5790 5791 5792 5793 5794 5795
else
  # we support qemu-ga, mingw32, and wixl: default to MSI enabled if it wasn't
  # disabled explicitly
  if test "$guest_agent_msi" != "no"; then
    guest_agent_msi=yes
  fi
5796 5797
fi

5798
if test "$guest_agent_msi" = "yes"; then
5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811
  if test "$guest_agent_with_vss" = "yes"; then
    QEMU_GA_MSI_WITH_VSS="-D InstallVss"
  fi

  if test "$QEMU_GA_MANUFACTURER" = ""; then
    QEMU_GA_MANUFACTURER=QEMU
  fi

  if test "$QEMU_GA_DISTRO" = ""; then
    QEMU_GA_DISTRO=Linux
  fi

  if test "$QEMU_GA_VERSION" = ""; then
5812
      QEMU_GA_VERSION=$(cat $source_path/VERSION)
5813 5814
  fi

5815
  QEMU_GA_MSI_MINGW_DLL_PATH="-D Mingw_dlls=$($pkg_config --variable=prefix glib-2.0)/bin"
5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829

  case "$cpu" in
  x86_64)
    QEMU_GA_MSI_ARCH="-a x64 -D Arch=64"
    ;;
  i386)
    QEMU_GA_MSI_ARCH="-D Arch=32"
    ;;
  *)
    error_exit "CPU $cpu not supported for building installation package"
    ;;
  esac
fi

5830 5831 5832 5833 5834
# Mac OS X ships with a broken assembler
roms=
if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
        "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
        "$softmmu" = yes ; then
5835
    # Different host OS linkers have different ideas about the name of the ELF
5836 5837 5838
    # emulation. Linux and OpenBSD/amd64 use 'elf_i386'; FreeBSD uses the _fbsd
    # variant; OpenBSD/i386 uses the _obsd variant; and Windows uses i386pe.
    for emu in elf_i386 elf_i386_fbsd elf_i386_obsd i386pe; do
5839 5840 5841 5842 5843 5844
        if "$ld" -verbose 2>&1 | grep -q "^[[:space:]]*$emu[[:space:]]*$"; then
            ld_i386_emulation="$emu"
            roms="optionrom"
            break
        fi
    done
5845
fi
5846
if test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then
5847 5848
  roms="$roms spapr-rtas"
fi
5849

5850 5851 5852 5853
if test "$cpu" = "s390x" ; then
  roms="$roms s390-ccw"
fi

5854
# Probe for the need for relocating the user-only binary.
5855
if ( [ "$linux_user" = yes ] || [ "$bsd_user" = yes ] ) && [ "$pie" = no ]; then
5856 5857
  textseg_addr=
  case "$cpu" in
5858 5859
    arm | i386 | ppc* | s390* | sparc* | x86_64 | x32)
      # ??? Rationale for choosing this address
5860 5861 5862
      textseg_addr=0x60000000
      ;;
    mips)
5863 5864 5865
      # A 256M aligned address, high in the address space, with enough
      # room for the code_gen_buffer above it before the stack.
      textseg_addr=0x60000000
5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876
      ;;
  esac
  if [ -n "$textseg_addr" ]; then
    cat > $TMPC <<EOF
    int main(void) { return 0; }
EOF
    textseg_ldflags="-Wl,-Ttext-segment=$textseg_addr"
    if ! compile_prog "" "$textseg_ldflags"; then
      # In case ld does not support -Ttext-segment, edit the default linker
      # script via sed to set the .text start addr.  This is needed on FreeBSD
      # at least.
5877 5878 5879 5880 5881 5882 5883 5884 5885 5886
      if ! $ld --verbose >/dev/null 2>&1; then
        error_exit \
            "We need to link the QEMU user mode binaries at a" \
            "specific text address. Unfortunately your linker" \
            "doesn't support either the -Ttext-segment option or" \
            "printing the default linker script with --verbose." \
            "If you don't want the user mode binaries, pass the" \
            "--disable-user option to configure."
      fi

5887 5888 5889 5890 5891 5892 5893 5894 5895 5896
      $ld --verbose | sed \
        -e '1,/==================================================/d' \
        -e '/==================================================/,$d' \
        -e "s/[.] = [0-9a-fx]* [+] SIZEOF_HEADERS/. = $textseg_addr + SIZEOF_HEADERS/" \
        -e "s/__executable_start = [0-9a-fx]*/__executable_start = $textseg_addr/" > config-host.ld
      textseg_ldflags="-Wl,-T../config-host.ld"
    fi
  fi
fi

5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928
# Check that the C++ compiler exists and works with the C compiler.
# All the QEMU_CXXFLAGS are based on QEMU_CFLAGS. Keep this at the end to don't miss any other that could be added.
if has $cxx; then
    cat > $TMPC <<EOF
int c_function(void);
int main(void) { return c_function(); }
EOF

    compile_object

    cat > $TMPCXX <<EOF
extern "C" {
   int c_function(void);
}
int c_function(void) { return 42; }
EOF

    update_cxxflags

    if do_cxx $QEMU_CXXFLAGS -o $TMPE $TMPCXX $TMPO $LDFLAGS; then
        # C++ compiler $cxx works ok with C compiler $cc
        :
    else
        echo "C++ compiler $cxx does not work with C compiler $cc"
        echo "Disabling C++ specific optional code"
        cxx=
    fi
else
    echo "No C++ compiler available; disabling C++ specific optional code"
    cxx=
fi

5929 5930 5931 5932 5933 5934
echo_version() {
    if test "$1" = "yes" ; then
        echo "($2)"
    fi
}

5935 5936
# prepend pixman and ftd flags after all config tests are done
QEMU_CFLAGS="$pixman_cflags $fdt_cflags $QEMU_CFLAGS"
5937
QEMU_LDFLAGS="$fdt_ldflags $QEMU_LDFLAGS"
5938
libs_softmmu="$pixman_libs $libs_softmmu"
5939

B
bellard 已提交
5940
echo "Install prefix    $prefix"
5941
echo "BIOS directory    $(eval echo $qemu_datadir)"
G
Gerd Hoffmann 已提交
5942
echo "firmware path     $(eval echo $firmwarepath)"
5943 5944 5945 5946 5947 5948
echo "binary directory  $(eval echo $bindir)"
echo "library directory $(eval echo $libdir)"
echo "module directory  $(eval echo $qemu_moddir)"
echo "libexec directory $(eval echo $libexecdir)"
echo "include directory $(eval echo $includedir)"
echo "config directory  $(eval echo $sysconfdir)"
B
bellard 已提交
5949
if test "$mingw32" = "no" ; then
5950 5951
echo "local state directory   $(eval echo $local_statedir)"
echo "Manual directory  $(eval echo $mandir)"
B
bellard 已提交
5952
echo "ELF interp prefix $interp_prefix"
5953 5954
else
echo "local state directory   queried at runtime"
5955
echo "Windows SDK       $win_sdk"
B
bellard 已提交
5956
fi
5957
echo "Source path       $source_path"
5958
echo "GIT binary        $git"
5959
echo "GIT submodules    $git_submodules"
B
bellard 已提交
5960
echo "C compiler        $cc"
B
bellard 已提交
5961
echo "Host C compiler   $host_cc"
5962
echo "C++ compiler      $cxx"
5963
echo "Objective-C compiler $objcc"
5964
echo "ARFLAGS           $ARFLAGS"
5965
echo "CFLAGS            $CFLAGS"
J
Juan Quintela 已提交
5966
echo "QEMU_CFLAGS       $QEMU_CFLAGS"
5967
echo "LDFLAGS           $LDFLAGS"
5968
echo "QEMU_LDFLAGS      $QEMU_LDFLAGS"
B
bellard 已提交
5969
echo "make              $make"
5970
echo "install           $install"
B
Blue Swirl 已提交
5971
echo "python            $python"
5972 5973 5974
if test "$slirp" = "yes" ; then
    echo "smbd              $smbd"
fi
F
Fam Zheng 已提交
5975
echo "module support    $modules"
B
bellard 已提交
5976
echo "host CPU          $cpu"
B
bellard 已提交
5977
echo "host big endian   $bigendian"
5978
echo "target list       $target_list"
B
bellard 已提交
5979
echo "gprof enabled     $gprof"
5980
echo "sparse enabled    $sparse"
5981
echo "strip binaries    $strip_opt"
5982
echo "profiler          $profiler"
B
bellard 已提交
5983
echo "static build      $static"
5984 5985 5986
if test "$darwin" = "yes" ; then
    echo "Cocoa support     $cocoa"
fi
5987 5988
echo "SDL support       $sdl $(echo_version $sdl $sdlversion)"
echo "GTK support       $gtk $(echo_version $gtk $gtk_version)"
5989
echo "GTK GL support    $gtk_gl"
5990
echo "VTE support       $vte $(echo_version $vte $vteversion)"
5991
echo "TLS priority      $tls_priority"
5992
echo "GNUTLS support    $gnutls"
5993
echo "GNUTLS rnd        $gnutls_rnd"
5994
echo "libgcrypt         $gcrypt"
5995
echo "libgcrypt kdf     $gcrypt_kdf"
5996
echo "nettle            $nettle $(echo_version $nettle $nettle_version)"
5997
echo "nettle kdf        $nettle_kdf"
5998
echo "libtasn1          $tasn1"
B
balrog 已提交
5999
echo "curses support    $curses"
6000
echo "virgl support     $virglrenderer $(echo_version $virglrenderer $virgl_version)"
A
Alexander Graf 已提交
6001
echo "curl support      $curl"
B
bellard 已提交
6002
echo "mingw32 support   $mingw32"
M
malc 已提交
6003
echo "Audio drivers     $audio_drv_list"
6004 6005
echo "Block whitelist (rw) $block_drv_rw_whitelist"
echo "Block whitelist (ro) $block_drv_ro_whitelist"
6006
echo "VirtFS support    $virtfs"
6007
echo "Multipath support $mpath"
J
Jes Sorensen 已提交
6008 6009 6010 6011 6012 6013
echo "VNC support       $vnc"
if test "$vnc" = "yes" ; then
    echo "VNC SASL support  $vnc_sasl"
    echo "VNC JPEG support  $vnc_jpeg"
    echo "VNC PNG support   $vnc_png"
fi
6014 6015 6016
if test -n "$sparc_cpu"; then
    echo "Target Sparc Arch $sparc_cpu"
fi
6017
echo "xen support       $xen"
6018 6019
if test "$xen" = "yes" ; then
  echo "xen ctrl version  $xen_ctrl_version"
6020
  echo "pv dom build      $xen_pv_domain_build"
6021
fi
A
aurel32 已提交
6022
echo "brlapi support    $brlapi"
6023
echo "bluez  support    $bluez"
J
Juan Quintela 已提交
6024
echo "Documentation     $docs"
6025
echo "PIE               $pie"
6026
echo "vde support       $vde"
6027
echo "netmap support    $netmap"
6028
echo "Linux AIO support $linux_aio"
6029
echo "ATTR/XATTR support $attr"
T
ths 已提交
6030
echo "Install blobs     $blobs"
6031
echo "KVM support       $kvm"
6032
echo "HAX support       $hax"
6033
echo "HVF support       $hvf"
6034
echo "WHPX support      $whpx"
6035 6036 6037 6038 6039
echo "TCG support       $tcg"
if test "$tcg" = "yes" ; then
    echo "TCG debug enabled $debug_tcg"
    echo "TCG interpreter   $tcg_interpreter"
fi
6040
echo "malloc trim support $malloc_trim"
M
Michael R. Hines 已提交
6041
echo "RDMA support      $rdma"
6042
echo "PVRDMA support    $pvrdma"
6043
echo "fdt support       $fdt"
6044
echo "membarrier        $membarrier"
6045
echo "preadv support    $preadv"
B
Blue Swirl 已提交
6046
echo "fdatasync         $fdatasync"
A
Andreas Färber 已提交
6047 6048
echo "madvise           $madvise"
echo "posix_madvise     $posix_madvise"
6049
echo "posix_memalign    $posix_memalign"
6050
echo "libcap-ng support $cap_ng"
M
Michael S. Tsirkin 已提交
6051
echo "vhost-net support $vhost_net"
6052
echo "vhost-crypto support $vhost_crypto"
6053
echo "vhost-scsi support $vhost_scsi"
6054
echo "vhost-vsock support $vhost_vsock"
6055
echo "vhost-user support $vhost_user"
L
Lluís Vilanova 已提交
6056
echo "Trace backends    $trace_backends"
6057
if have_backend "simple"; then
P
Prerna Saxena 已提交
6058
echo "Trace output file $trace_file-<pid>"
6059
fi
6060
echo "spice support     $spice $(echo_version $spice $spice_protocol_version/$spice_server_version)"
6061
echo "rbd support       $rbd"
C
Christoph Hellwig 已提交
6062
echo "xfsctl support    $xfs"
6063
echo "smartcard support $smartcard"
G
Gerd Hoffmann 已提交
6064
echo "libusb            $libusb"
6065
echo "usb net redir     $usb_redir"
G
Gerd Hoffmann 已提交
6066
echo "OpenGL support    $opengl"
6067
echo "OpenGL dmabufs    $opengl_dmabuf"
R
Ronnie Sahlberg 已提交
6068
echo "libiscsi support  $libiscsi"
P
Peter Lieven 已提交
6069
echo "libnfs support    $libnfs"
6070
echo "build guest agent $guest_agent"
6071
echo "QGA VSS support   $guest_agent_with_vss"
6072
echo "QGA w32 disk info $guest_agent_ntddscsi"
6073
echo "QGA MSI support   $guest_agent_msi"
6074
echo "seccomp support   $seccomp"
6075
echo "coroutine backend $coroutine"
6076
echo "coroutine pool    $coroutine_pool"
6077
echo "debug stack usage $debug_stack_usage"
6078
echo "mutex debugging   $debug_mutex"
6079
echo "crypto afalg      $crypto_afalg"
6080
echo "GlusterFS support $glusterfs"
B
Blue Swirl 已提交
6081 6082
echo "gcov              $gcov_tool"
echo "gcov enabled      $gcov"
S
Stefan Berger 已提交
6083
echo "TPM support       $tpm"
6084
echo "libssh2 support   $libssh2"
P
Paolo Bonzini 已提交
6085
echo "TPM passthrough   $tpm_passthrough"
6086
echo "TPM emulator      $tpm_emulator"
6087
echo "QOM debugging     $qom_cast_debug"
6088
echo "Live block migration $live_block_migration"
Q
qiaonuohan 已提交
6089 6090
echo "lzo support       $lzo"
echo "snappy support    $snappy"
6091
echo "bzip2 support     $bzip2"
6092
echo "NUMA host support $numa"
K
Klim Kireev 已提交
6093
echo "libxml2           $libxml2"
F
Fam Zheng 已提交
6094
echo "tcmalloc support  $tcmalloc"
6095
echo "jemalloc support  $jemalloc"
6096
echo "avx2 optimization $avx2_opt"
C
Changlong Xie 已提交
6097
echo "replication support $replication"
6098
echo "VxHS block device $vxhs"
6099
echo "capstone          $capstone"
6100
echo "docker            $docker"
J
Junyan He 已提交
6101
echo "libpmem support   $libpmem"
B
bellard 已提交
6102

6103
if test "$sdl_too_old" = "yes"; then
B
bellard 已提交
6104
echo "-> Your SDL version is too old - please upgrade to have SDL support"
B
bellard 已提交
6105
fi
B
bellard 已提交
6106

6107 6108 6109 6110 6111 6112
if test "$gtkabi" = "2.0"; then
    echo
    echo "WARNING: Use of GTK 2.0 is deprecated and will be removed in"
    echo "WARNING: future releases. Please switch to using GTK 3.0"
fi

6113 6114 6115 6116 6117 6118
if test "$sdlabi" = "1.2"; then
    echo
    echo "WARNING: Use of SDL 1.2 is deprecated and will be removed in"
    echo "WARNING: future releases. Please switch to using SDL 2.0"
fi

6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135
if test "$supported_cpu" = "no"; then
    echo
    echo "WARNING: SUPPORT FOR THIS HOST CPU WILL GO AWAY IN FUTURE RELEASES!"
    echo
    echo "CPU host architecture $cpu support is not currently maintained."
    echo "The QEMU project intends to remove support for this host CPU in"
    echo "a future release if nobody volunteers to maintain it and to"
    echo "provide a build host for our continuous integration setup."
    echo "configure has succeeded and you can continue to build, but"
    echo "if you care about QEMU on this platform you should contact"
    echo "us upstream at qemu-devel@nongnu.org."
fi

if test "$supported_os" = "no"; then
    echo
    echo "WARNING: SUPPORT FOR THIS HOST OS WILL GO AWAY IN FUTURE RELEASES!"
    echo
6136 6137
    echo "Host OS $targetos support is not currently maintained."
    echo "The QEMU project intends to remove support for this host OS in"
6138 6139 6140 6141 6142 6143 6144
    echo "a future release if nobody volunteers to maintain it and to"
    echo "provide a build host for our continuous integration setup."
    echo "configure has succeeded and you can continue to build, but"
    echo "if you care about QEMU on this platform you should contact"
    echo "us upstream at qemu-devel@nongnu.org."
fi

6145 6146
config_host_mak="config-host.mak"

6147 6148
echo "# Automatically generated by configure - do not modify" >config-all-disas.mak

6149 6150 6151
echo "# Automatically generated by configure - do not modify" > $config_host_mak
echo >> $config_host_mak

6152
echo all: >> $config_host_mak
6153 6154
echo "prefix=$prefix" >> $config_host_mak
echo "bindir=$bindir" >> $config_host_mak
A
Alon Levy 已提交
6155
echo "libdir=$libdir" >> $config_host_mak
6156
echo "libexecdir=$libexecdir" >> $config_host_mak
6157
echo "includedir=$includedir" >> $config_host_mak
6158 6159
echo "mandir=$mandir" >> $config_host_mak
echo "sysconfdir=$sysconfdir" >> $config_host_mak
6160
echo "qemu_confdir=$qemu_confdir" >> $config_host_mak
6161
echo "qemu_datadir=$qemu_datadir" >> $config_host_mak
G
Gerd Hoffmann 已提交
6162
echo "qemu_firmwarepath=$firmwarepath" >> $config_host_mak
6163
echo "qemu_docdir=$qemu_docdir" >> $config_host_mak
F
Fam Zheng 已提交
6164
echo "qemu_moddir=$qemu_moddir" >> $config_host_mak
6165 6166 6167
if test "$mingw32" = "no" ; then
  echo "qemu_localstatedir=$local_statedir" >> $config_host_mak
fi
6168
echo "qemu_helperdir=$libexecdir" >> $config_host_mak
6169
echo "qemu_localedir=$qemu_localedir" >> $config_host_mak
6170
echo "libs_softmmu=$libs_softmmu" >> $config_host_mak
6171
echo "GIT=$git" >> $config_host_mak
6172
echo "GIT_SUBMODULES=$git_submodules" >> $config_host_mak
6173
echo "GIT_UPDATE=$git_update" >> $config_host_mak
6174

6175
echo "ARCH=$ARCH" >> $config_host_mak
6176

6177
if test "$debug_tcg" = "yes" ; then
6178
  echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
6179
fi
6180
if test "$strip_opt" = "yes" ; then
6181
  echo "STRIP=${strip}" >> $config_host_mak
6182
fi
B
bellard 已提交
6183
if test "$bigendian" = "yes" ; then
6184
  echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
6185
fi
B
bellard 已提交
6186
if test "$mingw32" = "yes" ; then
6187
  echo "CONFIG_WIN32=y" >> $config_host_mak
6188
  rc_version=$(cat $source_path/VERSION)
6189 6190 6191 6192 6193 6194 6195 6196
  version_major=${rc_version%%.*}
  rc_version=${rc_version#*.}
  version_minor=${rc_version%%.*}
  rc_version=${rc_version#*.}
  version_subminor=${rc_version%%.*}
  version_micro=0
  echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
  echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
6197 6198
  if test "$guest_agent_with_vss" = "yes" ; then
    echo "CONFIG_QGA_VSS=y" >> $config_host_mak
6199
    echo "QGA_VSS_PROVIDER=$qga_vss_provider" >> $config_host_mak
6200 6201
    echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak
  fi
6202 6203 6204
  if test "$guest_agent_ntddscsi" = "yes" ; then
    echo "CONFIG_QGA_NTDDDISK=y" >> $config_host_mak
  fi
6205
  if test "$guest_agent_msi" = "yes"; then
6206
    echo "QEMU_GA_MSI_ENABLED=yes" >> $config_host_mak
6207 6208 6209 6210 6211 6212 6213
    echo "QEMU_GA_MSI_MINGW_DLL_PATH=${QEMU_GA_MSI_MINGW_DLL_PATH}" >> $config_host_mak
    echo "QEMU_GA_MSI_WITH_VSS=${QEMU_GA_MSI_WITH_VSS}" >> $config_host_mak
    echo "QEMU_GA_MSI_ARCH=${QEMU_GA_MSI_ARCH}" >> $config_host_mak
    echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER}" >> $config_host_mak
    echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO}" >> $config_host_mak
    echo "QEMU_GA_VERSION=${QEMU_GA_VERSION}" >> $config_host_mak
  fi
6214
else
J
Juan Quintela 已提交
6215
  echo "CONFIG_POSIX=y" >> $config_host_mak
M
Mark McLoughlin 已提交
6216 6217 6218 6219
fi

if test "$linux" = "yes" ; then
  echo "CONFIG_LINUX=y" >> $config_host_mak
B
bellard 已提交
6220
fi
6221

6222
if test "$darwin" = "yes" ; then
6223
  echo "CONFIG_DARWIN=y" >> $config_host_mak
6224
fi
M
malc 已提交
6225

B
bellard 已提交
6226
if test "$solaris" = "yes" ; then
6227
  echo "CONFIG_SOLARIS=y" >> $config_host_mak
B
bellard 已提交
6228
fi
6229 6230 6231
if test "$haiku" = "yes" ; then
  echo "CONFIG_HAIKU=y" >> $config_host_mak
fi
6232
if test "$static" = "yes" ; then
6233
  echo "CONFIG_STATIC=y" >> $config_host_mak
B
bellard 已提交
6234
fi
6235
if test "$profiler" = "yes" ; then
6236
  echo "CONFIG_PROFILER=y" >> $config_host_mak
6237
fi
B
bellard 已提交
6238
if test "$slirp" = "yes" ; then
6239
  echo "CONFIG_SLIRP=y" >> $config_host_mak
6240
  echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak
B
bellard 已提交
6241
fi
6242
if test "$vde" = "yes" ; then
6243
  echo "CONFIG_VDE=y" >> $config_host_mak
6244
  echo "VDE_LIBS=$vde_libs" >> $config_host_mak
6245
fi
6246 6247 6248
if test "$netmap" = "yes" ; then
  echo "CONFIG_NETMAP=y" >> $config_host_mak
fi
6249 6250 6251
if test "$l2tpv3" = "yes" ; then
  echo "CONFIG_L2TPV3=y" >> $config_host_mak
fi
6252 6253 6254
if test "$cap_ng" = "yes" ; then
  echo "CONFIG_LIBCAP=y" >> $config_host_mak
fi
6255
echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
M
malc 已提交
6256
for drv in $audio_drv_list; do
6257
    def=CONFIG_AUDIO_$(echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]')
G
Gerd Hoffmann 已提交
6258
    case "$drv" in
G
Gerd Hoffmann 已提交
6259
	alsa | oss | pa | sdl)
G
Gerd Hoffmann 已提交
6260 6261 6262 6263
	    echo "$def=m" >> $config_host_mak ;;
	*)
	    echo "$def=y" >> $config_host_mak ;;
    esac
M
malc 已提交
6264
done
6265 6266 6267 6268 6269
echo "ALSA_LIBS=$alsa_libs" >> $config_host_mak
echo "PULSE_LIBS=$pulse_libs" >> $config_host_mak
echo "COREAUDIO_LIBS=$coreaudio_libs" >> $config_host_mak
echo "DSOUND_LIBS=$dsound_libs" >> $config_host_mak
echo "OSS_LIBS=$oss_libs" >> $config_host_mak
6270 6271 6272
if test "$audio_pt_int" = "yes" ; then
  echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
fi
6273 6274 6275
if test "$audio_win_int" = "yes" ; then
  echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
fi
6276 6277
echo "CONFIG_BDRV_RW_WHITELIST=$block_drv_rw_whitelist" >> $config_host_mak
echo "CONFIG_BDRV_RO_WHITELIST=$block_drv_ro_whitelist" >> $config_host_mak
J
Jes Sorensen 已提交
6278 6279 6280
if test "$vnc" = "yes" ; then
  echo "CONFIG_VNC=y" >> $config_host_mak
fi
6281
if test "$vnc_sasl" = "yes" ; then
6282
  echo "CONFIG_VNC_SASL=y" >> $config_host_mak
6283
fi
J
Jes Sorensen 已提交
6284
if test "$vnc_jpeg" = "yes" ; then
6285 6286
  echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
fi
J
Jes Sorensen 已提交
6287
if test "$vnc_png" = "yes" ; then
C
Corentin Chary 已提交
6288 6289
  echo "CONFIG_VNC_PNG=y" >> $config_host_mak
fi
G
Gerd Hoffmann 已提交
6290 6291 6292 6293
if test "$xkbcommon" = "yes" ; then
  echo "XKBCOMMON_CFLAGS=$xkbcommon_cflags" >> $config_host_mak
  echo "XKBCOMMON_LIBS=$xkbcommon_libs" >> $config_host_mak
fi
6294
if test "$fnmatch" = "yes" ; then
6295
  echo "CONFIG_FNMATCH=y" >> $config_host_mak
6296
fi
C
Christoph Hellwig 已提交
6297 6298 6299
if test "$xfs" = "yes" ; then
  echo "CONFIG_XFS=y" >> $config_host_mak
fi
6300
qemu_version=$(head $source_path/VERSION)
6301
echo "VERSION=$qemu_version" >>$config_host_mak
6302
echo "PKGVERSION=$pkgversion" >>$config_host_mak
6303
echo "SRC_PATH=$source_path" >> $config_host_mak
6304
echo "TARGET_DIRS=$target_list" >> $config_host_mak
J
Juan Quintela 已提交
6305
if [ "$docs" = "yes" ] ; then
6306
  echo "BUILD_DOCS=yes" >> $config_host_mak
6307
fi
F
Fam Zheng 已提交
6308
if test "$modules" = "yes"; then
F
Fam Zheng 已提交
6309 6310
  # $shacmd can generate a hash started with digit, which the compiler doesn't
  # like as an symbol. So prefix it with an underscore
6311
  echo "CONFIG_STAMP=_$( (echo $qemu_version; echo $pkgversion; cat $0) | $shacmd - | cut -f1 -d\ )" >> $config_host_mak
F
Fam Zheng 已提交
6312 6313
  echo "CONFIG_MODULES=y" >> $config_host_mak
fi
6314 6315 6316 6317 6318
if test "$have_x11" = "yes" -a "$need_x11" = "yes"; then
  echo "CONFIG_X11=y" >> $config_host_mak
  echo "X11_CFLAGS=$x11_cflags" >> $config_host_mak
  echo "X11_LIBS=$x11_libs" >> $config_host_mak
fi
6319
if test "$sdl" = "yes" ; then
G
Gerd Hoffmann 已提交
6320
  echo "CONFIG_SDL=m" >> $config_host_mak
6321
  echo "CONFIG_SDLABI=$sdlabi" >> $config_host_mak
6322
  echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
6323
  echo "SDL_LIBS=$sdl_libs" >> $config_host_mak
6324 6325
fi
if test "$cocoa" = "yes" ; then
6326
  echo "CONFIG_COCOA=y" >> $config_host_mak
B
balrog 已提交
6327 6328
fi
if test "$curses" = "yes" ; then
G
Gerd Hoffmann 已提交
6329 6330 6331
  echo "CONFIG_CURSES=m" >> $config_host_mak
  echo "CURSES_CFLAGS=$curses_inc" >> $config_host_mak
  echo "CURSES_LIBS=$curses_lib" >> $config_host_mak
6332
fi
R
Riku Voipio 已提交
6333
if test "$pipe2" = "yes" ; then
6334
  echo "CONFIG_PIPE2=y" >> $config_host_mak
R
Riku Voipio 已提交
6335
fi
K
Kevin Wolf 已提交
6336 6337 6338
if test "$accept4" = "yes" ; then
  echo "CONFIG_ACCEPT4=y" >> $config_host_mak
fi
6339
if test "$splice" = "yes" ; then
6340
  echo "CONFIG_SPLICE=y" >> $config_host_mak
6341
fi
R
Riku Voipio 已提交
6342 6343 6344
if test "$eventfd" = "yes" ; then
  echo "CONFIG_EVENTFD=y" >> $config_host_mak
fi
M
Marc-André Lureau 已提交
6345 6346 6347
if test "$memfd" = "yes" ; then
  echo "CONFIG_MEMFD=y" >> $config_host_mak
fi
6348 6349 6350
if test "$fallocate" = "yes" ; then
  echo "CONFIG_FALLOCATE=y" >> $config_host_mak
fi
6351 6352 6353
if test "$fallocate_punch_hole" = "yes" ; then
  echo "CONFIG_FALLOCATE_PUNCH_HOLE=y" >> $config_host_mak
fi
6354 6355 6356
if test "$fallocate_zero_range" = "yes" ; then
  echo "CONFIG_FALLOCATE_ZERO_RANGE=y" >> $config_host_mak
fi
6357 6358 6359
if test "$posix_fallocate" = "yes" ; then
  echo "CONFIG_POSIX_FALLOCATE=y" >> $config_host_mak
fi
6360 6361 6362
if test "$sync_file_range" = "yes" ; then
  echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak
fi
6363 6364 6365
if test "$fiemap" = "yes" ; then
  echo "CONFIG_FIEMAP=y" >> $config_host_mak
fi
6366 6367 6368
if test "$dup3" = "yes" ; then
  echo "CONFIG_DUP3=y" >> $config_host_mak
fi
6369 6370 6371
if test "$ppoll" = "yes" ; then
  echo "CONFIG_PPOLL=y" >> $config_host_mak
fi
6372 6373 6374
if test "$prctl_pr_set_timerslack" = "yes" ; then
  echo "CONFIG_PRCTL_PR_SET_TIMERSLACK=y" >> $config_host_mak
fi
6375 6376 6377 6378 6379 6380
if test "$epoll" = "yes" ; then
  echo "CONFIG_EPOLL=y" >> $config_host_mak
fi
if test "$epoll_create1" = "yes" ; then
  echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak
fi
6381 6382 6383
if test "$sendfile" = "yes" ; then
  echo "CONFIG_SENDFILE=y" >> $config_host_mak
fi
6384 6385 6386
if test "$timerfd" = "yes" ; then
  echo "CONFIG_TIMERFD=y" >> $config_host_mak
fi
R
Riku Voipio 已提交
6387 6388 6389
if test "$setns" = "yes" ; then
  echo "CONFIG_SETNS=y" >> $config_host_mak
fi
6390 6391 6392
if test "$clock_adjtime" = "yes" ; then
  echo "CONFIG_CLOCK_ADJTIME=y" >> $config_host_mak
fi
6393 6394 6395
if test "$syncfs" = "yes" ; then
  echo "CONFIG_SYNCFS=y" >> $config_host_mak
fi
6396
if test "$inotify" = "yes" ; then
6397
  echo "CONFIG_INOTIFY=y" >> $config_host_mak
6398
fi
6399 6400 6401
if test "$inotify1" = "yes" ; then
  echo "CONFIG_INOTIFY1=y" >> $config_host_mak
fi
6402 6403 6404
if test "$sem_timedwait" = "yes" ; then
  echo "CONFIG_SEM_TIMEDWAIT=y" >> $config_host_mak
fi
K
Keno Fischer 已提交
6405 6406 6407
if test "$strchrnul" = "yes" ; then
  echo "HAVE_STRCHRNUL=y" >> $config_host_mak
fi
6408 6409 6410 6411 6412 6413
if test "$byteswap_h" = "yes" ; then
  echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
fi
if test "$bswap_h" = "yes" ; then
  echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
fi
A
Alexander Graf 已提交
6414
if test "$curl" = "yes" ; then
6415
  echo "CONFIG_CURL=m" >> $config_host_mak
J
Juan Quintela 已提交
6416
  echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
6417
  echo "CURL_LIBS=$curl_libs" >> $config_host_mak
A
Alexander Graf 已提交
6418
fi
A
aurel32 已提交
6419
if test "$brlapi" = "yes" ; then
6420
  echo "CONFIG_BRLAPI=y" >> $config_host_mak
6421
  echo "BRLAPI_LIBS=$brlapi_libs" >> $config_host_mak
A
aurel32 已提交
6422
fi
B
balrog 已提交
6423
if test "$bluez" = "yes" ; then
6424
  echo "CONFIG_BLUEZ=y" >> $config_host_mak
6425
  echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
B
balrog 已提交
6426
fi
A
Anthony Liguori 已提交
6427
if test "$gtk" = "yes" ; then
G
Gerd Hoffmann 已提交
6428
  echo "CONFIG_GTK=m" >> $config_host_mak
6429
  echo "CONFIG_GTKABI=$gtkabi" >> $config_host_mak
A
Anthony Liguori 已提交
6430
  echo "GTK_CFLAGS=$gtk_cflags" >> $config_host_mak
6431
  echo "GTK_LIBS=$gtk_libs" >> $config_host_mak
6432 6433 6434
  if test "$gtk_gl" = "yes" ; then
    echo "CONFIG_GTK_GL=y" >> $config_host_mak
  fi
S
Stefan Weil 已提交
6435
fi
6436
echo "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak
6437 6438 6439
if test "$gnutls" = "yes" ; then
  echo "CONFIG_GNUTLS=y" >> $config_host_mak
fi
6440 6441 6442
if test "$gnutls_rnd" = "yes" ; then
  echo "CONFIG_GNUTLS_RND=y" >> $config_host_mak
fi
6443 6444
if test "$gcrypt" = "yes" ; then
  echo "CONFIG_GCRYPT=y" >> $config_host_mak
6445 6446 6447
  if test "$gcrypt_hmac" = "yes" ; then
    echo "CONFIG_GCRYPT_HMAC=y" >> $config_host_mak
  fi
6448 6449 6450
  if test "$gcrypt_kdf" = "yes" ; then
    echo "CONFIG_GCRYPT_KDF=y" >> $config_host_mak
  fi
6451
fi
6452 6453
if test "$nettle" = "yes" ; then
  echo "CONFIG_NETTLE=y" >> $config_host_mak
6454
  echo "CONFIG_NETTLE_VERSION_MAJOR=${nettle_version%%.*}" >> $config_host_mak
6455 6456 6457
  if test "$nettle_kdf" = "yes" ; then
    echo "CONFIG_NETTLE_KDF=y" >> $config_host_mak
  fi
6458
fi
6459 6460 6461
if test "$tasn1" = "yes" ; then
  echo "CONFIG_TASN1=y" >> $config_host_mak
fi
6462 6463 6464
if test "$have_ifaddrs_h" = "yes" ; then
    echo "HAVE_IFADDRS_H=y" >> $config_host_mak
fi
6465 6466 6467
if test "$have_broken_size_max" = "yes" ; then
    echo "HAVE_BROKEN_SIZE_MAX=y" >> $config_host_mak
fi
6468 6469 6470 6471 6472 6473 6474 6475

# Work around a system header bug with some kernel/XFS header
# versions where they both try to define 'struct fsxattr':
# xfs headers will not try to redefine structs from linux headers
# if this macro is set.
if test "$have_fsxattr" = "yes" ; then
    echo "HAVE_FSXATTR=y" >> $config_host_mak
fi
6476 6477 6478
if test "$have_copy_file_range" = "yes" ; then
    echo "HAVE_COPY_FILE_RANGE=y" >> $config_host_mak
fi
S
Stefan Weil 已提交
6479 6480
if test "$vte" = "yes" ; then
  echo "CONFIG_VTE=y" >> $config_host_mak
A
Anthony Liguori 已提交
6481
  echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak
G
Gerd Hoffmann 已提交
6482
  echo "VTE_LIBS=$vte_libs" >> $config_host_mak
A
Anthony Liguori 已提交
6483
fi
6484 6485 6486 6487 6488
if test "$virglrenderer" = "yes" ; then
  echo "CONFIG_VIRGL=y" >> $config_host_mak
  echo "VIRGL_CFLAGS=$virgl_cflags" >> $config_host_mak
  echo "VIRGL_LIBS=$virgl_libs" >> $config_host_mak
fi
6489
if test "$xen" = "yes" ; then
J
Jan Kiszka 已提交
6490
  echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak
6491
  echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
6492 6493 6494
  if test "$xen_pv_domain_build" = "yes" ; then
    echo "CONFIG_XEN_PV_DOMAIN_BUILD=y" >> $config_host_mak
  fi
6495
fi
6496 6497 6498
if test "$linux_aio" = "yes" ; then
  echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
fi
6499 6500 6501
if test "$attr" = "yes" ; then
  echo "CONFIG_ATTR=y" >> $config_host_mak
fi
6502 6503 6504
if test "$libattr" = "yes" ; then
  echo "CONFIG_LIBATTR=y" >> $config_host_mak
fi
6505 6506
if test "$virtfs" = "yes" ; then
  echo "CONFIG_VIRTFS=y" >> $config_host_mak
6507
fi
6508 6509
if test "$mpath" = "yes" ; then
  echo "CONFIG_MPATH=y" >> $config_host_mak
6510 6511 6512
  if test "$mpathpersist_new_api" = "yes"; then
    echo "CONFIG_MPATH_NEW_API=y" >> $config_host_mak
  fi
6513
fi
6514 6515 6516
if test "$vhost_scsi" = "yes" ; then
  echo "CONFIG_VHOST_SCSI=y" >> $config_host_mak
fi
6517
if test "$vhost_net" = "yes" -a "$vhost_user" = "yes"; then
6518 6519
  echo "CONFIG_VHOST_NET_USED=y" >> $config_host_mak
fi
6520 6521 6522
if test "$vhost_crypto" = "yes" ; then
  echo "CONFIG_VHOST_CRYPTO=y" >> $config_host_mak
fi
6523 6524 6525
if test "$vhost_vsock" = "yes" ; then
  echo "CONFIG_VHOST_VSOCK=y" >> $config_host_mak
fi
6526 6527 6528
if test "$vhost_user" = "yes" ; then
  echo "CONFIG_VHOST_USER=y" >> $config_host_mak
fi
T
ths 已提交
6529
if test "$blobs" = "yes" ; then
6530
  echo "INSTALL_BLOBS=yes" >> $config_host_mak
T
ths 已提交
6531
fi
A
aliguori 已提交
6532
if test "$iovec" = "yes" ; then
6533
  echo "CONFIG_IOVEC=y" >> $config_host_mak
A
aliguori 已提交
6534
fi
6535
if test "$preadv" = "yes" ; then
6536
  echo "CONFIG_PREADV=y" >> $config_host_mak
6537
fi
6538
if test "$fdt" != "no" ; then
6539
  echo "CONFIG_FDT=y" >> $config_host_mak
6540
fi
6541 6542 6543
if test "$membarrier" = "yes" ; then
  echo "CONFIG_MEMBARRIER=y" >> $config_host_mak
fi
M
Marcelo Tosatti 已提交
6544 6545 6546
if test "$signalfd" = "yes" ; then
  echo "CONFIG_SIGNALFD=y" >> $config_host_mak
fi
6547 6548 6549 6550 6551
if test "$tcg" = "yes"; then
  echo "CONFIG_TCG=y" >> $config_host_mak
  if test "$tcg_interpreter" = "yes" ; then
    echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak
  fi
6552
fi
B
Blue Swirl 已提交
6553 6554 6555
if test "$fdatasync" = "yes" ; then
  echo "CONFIG_FDATASYNC=y" >> $config_host_mak
fi
A
Andreas Färber 已提交
6556 6557 6558 6559 6560 6561
if test "$madvise" = "yes" ; then
  echo "CONFIG_MADVISE=y" >> $config_host_mak
fi
if test "$posix_madvise" = "yes" ; then
  echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
fi
6562 6563 6564
if test "$posix_memalign" = "yes" ; then
  echo "CONFIG_POSIX_MEMALIGN=y" >> $config_host_mak
fi
6565

6566 6567 6568
if test "$spice" = "yes" ; then
  echo "CONFIG_SPICE=y" >> $config_host_mak
fi
A
Alon Levy 已提交
6569

6570 6571
if test "$smartcard" = "yes" ; then
  echo "CONFIG_SMARTCARD=y" >> $config_host_mak
6572 6573
  echo "SMARTCARD_CFLAGS=$libcacard_cflags" >> $config_host_mak
  echo "SMARTCARD_LIBS=$libcacard_libs" >> $config_host_mak
R
Robert Relyea 已提交
6574 6575
fi

G
Gerd Hoffmann 已提交
6576 6577
if test "$libusb" = "yes" ; then
  echo "CONFIG_USB_LIBUSB=y" >> $config_host_mak
6578 6579
  echo "LIBUSB_CFLAGS=$libusb_cflags" >> $config_host_mak
  echo "LIBUSB_LIBS=$libusb_libs" >> $config_host_mak
G
Gerd Hoffmann 已提交
6580 6581
fi

6582 6583
if test "$usb_redir" = "yes" ; then
  echo "CONFIG_USB_REDIR=y" >> $config_host_mak
6584 6585
  echo "USB_REDIR_CFLAGS=$usb_redir_cflags" >> $config_host_mak
  echo "USB_REDIR_LIBS=$usb_redir_libs" >> $config_host_mak
6586 6587
fi

G
Gerd Hoffmann 已提交
6588 6589 6590
if test "$opengl" = "yes" ; then
  echo "CONFIG_OPENGL=y" >> $config_host_mak
  echo "OPENGL_LIBS=$opengl_libs" >> $config_host_mak
6591 6592 6593
  if test "$opengl_dmabuf" = "yes" ; then
    echo "CONFIG_OPENGL_DMABUF=y" >> $config_host_mak
  fi
M
Michael Walle 已提交
6594 6595
fi

6596 6597 6598 6599
if test "$malloc_trim" = "yes" ; then
  echo "CONFIG_MALLOC_TRIM=y" >> $config_host_mak
fi

6600 6601 6602 6603
if test "$avx2_opt" = "yes" ; then
  echo "CONFIG_AVX2_OPT=y" >> $config_host_mak
fi

Q
qiaonuohan 已提交
6604 6605 6606 6607 6608 6609 6610 6611
if test "$lzo" = "yes" ; then
  echo "CONFIG_LZO=y" >> $config_host_mak
fi

if test "$snappy" = "yes" ; then
  echo "CONFIG_SNAPPY=y" >> $config_host_mak
fi

6612 6613 6614 6615 6616
if test "$bzip2" = "yes" ; then
  echo "CONFIG_BZIP2=y" >> $config_host_mak
  echo "BZIP2_LIBS=-lbz2" >> $config_host_mak
fi

R
Ronnie Sahlberg 已提交
6617
if test "$libiscsi" = "yes" ; then
6618
  echo "CONFIG_LIBISCSI=m" >> $config_host_mak
6619 6620
  echo "LIBISCSI_CFLAGS=$libiscsi_cflags" >> $config_host_mak
  echo "LIBISCSI_LIBS=$libiscsi_libs" >> $config_host_mak
R
Ronnie Sahlberg 已提交
6621 6622
fi

P
Peter Lieven 已提交
6623
if test "$libnfs" = "yes" ; then
6624 6625
  echo "CONFIG_LIBNFS=m" >> $config_host_mak
  echo "LIBNFS_LIBS=$libnfs_libs" >> $config_host_mak
P
Peter Lieven 已提交
6626 6627
fi

6628 6629
if test "$seccomp" = "yes"; then
  echo "CONFIG_SECCOMP=y" >> $config_host_mak
6630 6631
  echo "SECCOMP_CFLAGS=$seccomp_cflags" >> $config_host_mak
  echo "SECCOMP_LIBS=$seccomp_libs" >> $config_host_mak
6632 6633
fi

6634
# XXX: suppress that
B
bellard 已提交
6635
if [ "$bsd" = "yes" ] ; then
6636
  echo "CONFIG_BSD=y" >> $config_host_mak
B
bellard 已提交
6637 6638
fi

6639 6640 6641
if test "$localtime_r" = "yes" ; then
  echo "CONFIG_LOCALTIME_R=y" >> $config_host_mak
fi
6642 6643 6644
if test "$qom_cast_debug" = "yes" ; then
  echo "CONFIG_QOM_CAST_DEBUG=y" >> $config_host_mak
fi
6645
if test "$rbd" = "yes" ; then
6646
  echo "CONFIG_RBD=m" >> $config_host_mak
6647 6648
  echo "RBD_CFLAGS=$rbd_cflags" >> $config_host_mak
  echo "RBD_LIBS=$rbd_libs" >> $config_host_mak
6649 6650
fi

6651
echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak
6652 6653 6654 6655 6656
if test "$coroutine_pool" = "yes" ; then
  echo "CONFIG_COROUTINE_POOL=1" >> $config_host_mak
else
  echo "CONFIG_COROUTINE_POOL=0" >> $config_host_mak
fi
6657

6658 6659 6660 6661
if test "$debug_stack_usage" = "yes" ; then
  echo "CONFIG_DEBUG_STACK_USAGE=y" >> $config_host_mak
fi

6662 6663 6664 6665
if test "$crypto_afalg" = "yes" ; then
  echo "CONFIG_AF_ALG=y" >> $config_host_mak
fi

6666 6667 6668 6669
if test "$open_by_handle_at" = "yes" ; then
  echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak
fi

6670 6671
if test "$linux_magic_h" = "yes" ; then
  echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak
6672 6673
fi

6674 6675
if test "$pragma_diagnostic_available" = "yes" ; then
  echo "CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE=y" >> $config_host_mak
6676 6677
fi

6678 6679 6680 6681
if test "$valgrind_h" = "yes" ; then
  echo "CONFIG_VALGRIND_H=y" >> $config_host_mak
fi

6682 6683 6684 6685
if test "$have_asan_iface_fiber" = "yes" ; then
    echo "CONFIG_ASAN_IFACE_FIBER=y" >> $config_host_mak
fi

6686 6687
if test "$has_environ" = "yes" ; then
  echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak
6688 6689
fi

6690 6691 6692 6693
if test "$cpuid_h" = "yes" ; then
  echo "CONFIG_CPUID_H=y" >> $config_host_mak
fi

6694 6695 6696 6697
if test "$int128" = "yes" ; then
  echo "CONFIG_INT128=y" >> $config_host_mak
fi

R
Richard Henderson 已提交
6698 6699 6700 6701
if test "$atomic128" = "yes" ; then
  echo "CONFIG_ATOMIC128=y" >> $config_host_mak
fi

R
Richard Henderson 已提交
6702 6703 6704 6705
if test "$atomic64" = "yes" ; then
  echo "CONFIG_ATOMIC64=y" >> $config_host_mak
fi

6706 6707 6708 6709
if test "$vector16" = "yes" ; then
  echo "CONFIG_VECTOR16=y" >> $config_host_mak
fi

6710 6711 6712 6713
if test "$getauxval" = "yes" ; then
  echo "CONFIG_GETAUXVAL=y" >> $config_host_mak
fi

6714
if test "$glusterfs" = "yes" ; then
6715
  echo "CONFIG_GLUSTERFS=m" >> $config_host_mak
6716 6717
  echo "GLUSTERFS_CFLAGS=$glusterfs_cflags" >> $config_host_mak
  echo "GLUSTERFS_LIBS=$glusterfs_libs" >> $config_host_mak
6718 6719
fi

6720 6721 6722 6723
if test "$glusterfs_xlator_opt" = "yes" ; then
  echo "CONFIG_GLUSTERFS_XLATOR_OPT=y" >> $config_host_mak
fi

6724 6725
if test "$glusterfs_discard" = "yes" ; then
  echo "CONFIG_GLUSTERFS_DISCARD=y" >> $config_host_mak
6726
fi
6727

6728 6729 6730 6731
if test "$glusterfs_fallocate" = "yes" ; then
  echo "CONFIG_GLUSTERFS_FALLOCATE=y" >> $config_host_mak
fi

6732 6733 6734 6735
if test "$glusterfs_zerofill" = "yes" ; then
  echo "CONFIG_GLUSTERFS_ZEROFILL=y" >> $config_host_mak
fi

6736
if test "$libssh2" = "yes" ; then
6737
  echo "CONFIG_LIBSSH2=m" >> $config_host_mak
6738 6739
  echo "LIBSSH2_CFLAGS=$libssh2_cflags" >> $config_host_mak
  echo "LIBSSH2_LIBS=$libssh2_libs" >> $config_host_mak
6740 6741
fi

6742 6743 6744 6745
if test "$live_block_migration" = "yes" ; then
  echo "CONFIG_LIVE_BLOCK_MIGRATION=y" >> $config_host_mak
fi

P
Paolo Bonzini 已提交
6746 6747
if test "$tpm" = "yes"; then
  echo 'CONFIG_TPM=$(CONFIG_SOFTMMU)' >> $config_host_mak
6748
  # TPM passthrough support?
P
Paolo Bonzini 已提交
6749 6750 6751
  if test "$tpm_passthrough" = "yes"; then
    echo "CONFIG_TPM_PASSTHROUGH=y" >> $config_host_mak
  fi
6752 6753 6754 6755
  # TPM emulator support?
  if test "$tpm_emulator" = "yes"; then
    echo "CONFIG_TPM_EMULATOR=y" >> $config_host_mak
  fi
P
Paolo Bonzini 已提交
6756 6757
fi

L
Lluís Vilanova 已提交
6758 6759
echo "TRACE_BACKENDS=$trace_backends" >> $config_host_mak
if have_backend "nop"; then
6760
  echo "CONFIG_TRACE_NOP=y" >> $config_host_mak
6761
fi
L
Lluís Vilanova 已提交
6762
if have_backend "simple"; then
6763 6764
  echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak
  # Set the appropriate trace file.
6765
  trace_file="\"$trace_file-\" FMT_pid"
P
Prerna Saxena 已提交
6766
fi
6767 6768
if have_backend "log"; then
  echo "CONFIG_TRACE_LOG=y" >> $config_host_mak
6769
fi
L
Lluís Vilanova 已提交
6770
if have_backend "ust"; then
6771 6772
  echo "CONFIG_TRACE_UST=y" >> $config_host_mak
fi
L
Lluís Vilanova 已提交
6773
if have_backend "dtrace"; then
6774 6775 6776 6777
  echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak
  if test "$trace_backend_stap" = "yes" ; then
    echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak
  fi
6778
fi
L
Lluís Vilanova 已提交
6779
if have_backend "ftrace"; then
6780 6781 6782
  if test "$linux" = "yes" ; then
    echo "CONFIG_TRACE_FTRACE=y" >> $config_host_mak
  else
6783
    feature_not_found "ftrace(trace backend)" "ftrace requires Linux"
6784 6785
  fi
fi
P
Paul Durrant 已提交
6786 6787 6788 6789 6790 6791 6792
if have_backend "syslog"; then
  if test "$posix_syslog" = "yes" ; then
    echo "CONFIG_TRACE_SYSLOG=y" >> $config_host_mak
  else
    feature_not_found "syslog(trace backend)" "syslog not available"
  fi
fi
P
Prerna Saxena 已提交
6793 6794
echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak

M
Michael R. Hines 已提交
6795 6796
if test "$rdma" = "yes" ; then
  echo "CONFIG_RDMA=y" >> $config_host_mak
6797
  echo "RDMA_LIBS=$rdma_libs" >> $config_host_mak
M
Michael R. Hines 已提交
6798 6799
fi

6800 6801 6802 6803
if test "$pvrdma" = "yes" ; then
  echo "CONFIG_PVRDMA=y" >> $config_host_mak
fi

6804 6805 6806 6807
if test "$have_rtnetlink" = "yes" ; then
  echo "CONFIG_RTNETLINK=y" >> $config_host_mak
fi

K
Klim Kireev 已提交
6808 6809 6810 6811 6812 6813
if test "$libxml2" = "yes" ; then
  echo "CONFIG_LIBXML2=y" >> $config_host_mak
  echo "LIBXML2_CFLAGS=$libxml2_cflags" >> $config_host_mak
  echo "LIBXML2_LIBS=$libxml2_libs" >> $config_host_mak
fi

C
Changlong Xie 已提交
6814 6815 6816 6817
if test "$replication" = "yes" ; then
  echo "CONFIG_REPLICATION=y" >> $config_host_mak
fi

S
Stefan Hajnoczi 已提交
6818 6819 6820 6821
if test "$have_af_vsock" = "yes" ; then
  echo "CONFIG_AF_VSOCK=y" >> $config_host_mak
fi

6822 6823 6824 6825
if test "$have_sysmacros" = "yes" ; then
  echo "CONFIG_SYSMACROS=y" >> $config_host_mak
fi

6826 6827 6828 6829
if test "$have_static_assert" = "yes" ; then
  echo "CONFIG_STATIC_ASSERT=y" >> $config_host_mak
fi

6830 6831 6832 6833
if test "$have_utmpx" = "yes" ; then
  echo "HAVE_UTMPX=y" >> $config_host_mak
fi

6834 6835
if test "$ivshmem" = "yes" ; then
  echo "CONFIG_IVSHMEM=y" >> $config_host_mak
6836
fi
6837
if test "$capstone" != "no" ; then
6838
  echo "CONFIG_CAPSTONE=y" >> $config_host_mak
6839
fi
6840 6841 6842
if test "$debug_mutex" = "yes" ; then
  echo "CONFIG_DEBUG_MUTEX=y" >> $config_host_mak
fi
6843

6844 6845 6846 6847 6848 6849 6850 6851 6852 6853
# Hold two types of flag:
#   CONFIG_THREAD_SETNAME_BYTHREAD  - we've got a way of setting the name on
#                                     a thread we have a handle to
#   CONFIG_PTHREAD_SETNAME_NP       - A way of doing it on a particular
#                                     platform
if test "$pthread_setname_np" = "yes" ; then
  echo "CONFIG_THREAD_SETNAME_BYTHREAD=y" >> $config_host_mak
  echo "CONFIG_PTHREAD_SETNAME_NP=y" >> $config_host_mak
fi

6854 6855 6856 6857 6858
if test "$vxhs" = "yes" ; then
  echo "CONFIG_VXHS=y" >> $config_host_mak
  echo "VXHS_LIBS=$vxhs_libs" >> $config_host_mak
fi

J
Junyan He 已提交
6859 6860 6861 6862
if test "$libpmem" = "yes" ; then
  echo "CONFIG_LIBPMEM=y" >> $config_host_mak
fi

6863
if test "$tcg_interpreter" = "yes"; then
6864
  QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg/tci $QEMU_INCLUDES"
6865
elif test "$ARCH" = "sparc64" ; then
6866
  QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg/sparc $QEMU_INCLUDES"
6867
elif test "$ARCH" = "s390x" ; then
6868
  QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg/s390 $QEMU_INCLUDES"
6869
elif test "$ARCH" = "x86_64" -o "$ARCH" = "x32" ; then
6870
  QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg/i386 $QEMU_INCLUDES"
6871
elif test "$ARCH" = "ppc64" ; then
6872
  QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg/ppc $QEMU_INCLUDES"
6873
else
6874
  QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg/\$(ARCH) $QEMU_INCLUDES"
6875
fi
6876
QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg $QEMU_INCLUDES"
6877

6878 6879
echo "TOOLS=$tools" >> $config_host_mak
echo "ROMS=$roms" >> $config_host_mak
6880 6881
echo "MAKE=$make" >> $config_host_mak
echo "INSTALL=$install" >> $config_host_mak
6882 6883
echo "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak
echo "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak
M
Michael Tokarev 已提交
6884 6885
echo "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak
echo "INSTALL_LIB=$install -c -m 0644" >> $config_host_mak
B
Blue Swirl 已提交
6886
echo "PYTHON=$python" >> $config_host_mak
6887
echo "CC=$cc" >> $config_host_mak
6888 6889 6890
if $iasl -h > /dev/null 2>&1; then
  echo "IASL=$iasl" >> $config_host_mak
fi
6891
echo "HOST_CC=$host_cc" >> $config_host_mak
6892
echo "CXX=$cxx" >> $config_host_mak
6893
echo "OBJCC=$objcc" >> $config_host_mak
6894
echo "AR=$ar" >> $config_host_mak
6895
echo "ARFLAGS=$ARFLAGS" >> $config_host_mak
6896
echo "AS=$as" >> $config_host_mak
6897
echo "CCAS=$ccas" >> $config_host_mak
6898
echo "CPP=$cpp" >> $config_host_mak
6899 6900
echo "OBJCOPY=$objcopy" >> $config_host_mak
echo "LD=$ld" >> $config_host_mak
6901
echo "RANLIB=$ranlib" >> $config_host_mak
S
Stefan Weil 已提交
6902
echo "NM=$nm" >> $config_host_mak
6903
echo "WINDRES=$windres" >> $config_host_mak
6904
echo "CFLAGS=$CFLAGS" >> $config_host_mak
B
Brad 已提交
6905
echo "CFLAGS_NOPIE=$CFLAGS_NOPIE" >> $config_host_mak
J
Juan Quintela 已提交
6906
echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
6907
echo "QEMU_CXXFLAGS=$QEMU_CXXFLAGS" >> $config_host_mak
6908
echo "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak
P
Paolo Bonzini 已提交
6909 6910
if test "$sparse" = "yes" ; then
  echo "CC           := REAL_CC=\"\$(CC)\" cgcc"       >> $config_host_mak
6911
  echo "CPP          := REAL_CC=\"\$(CPP)\" cgcc"      >> $config_host_mak
G
Gerd Hoffmann 已提交
6912
  echo "CXX          := REAL_CC=\"\$(CXX)\" cgcc"      >> $config_host_mak
P
Paolo Bonzini 已提交
6913 6914 6915
  echo "HOST_CC      := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_host_mak
  echo "QEMU_CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
fi
6916 6917 6918 6919 6920
if test "$cross_prefix" != ""; then
  echo "AUTOCONF_HOST := --host=${cross_prefix%-}"     >> $config_host_mak
else
  echo "AUTOCONF_HOST := "                             >> $config_host_mak
fi
6921
echo "LDFLAGS=$LDFLAGS" >> $config_host_mak
B
Brad 已提交
6922
echo "LDFLAGS_NOPIE=$LDFLAGS_NOPIE" >> $config_host_mak
6923
echo "QEMU_LDFLAGS=$QEMU_LDFLAGS" >> $config_host_mak
6924
echo "LD_REL_FLAGS=$LD_REL_FLAGS" >> $config_host_mak
6925
echo "LD_I386_EMULATION=$ld_i386_emulation" >> $config_host_mak
J
Juan Quintela 已提交
6926
echo "LIBS+=$LIBS" >> $config_host_mak
J
Juan Quintela 已提交
6927
echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
6928
echo "PTHREAD_LIB=$PTHREAD_LIB" >> $config_host_mak
6929
echo "EXESUF=$EXESUF" >> $config_host_mak
F
Fam Zheng 已提交
6930 6931
echo "DSOSUF=$DSOSUF" >> $config_host_mak
echo "LDFLAGS_SHARED=$LDFLAGS_SHARED" >> $config_host_mak
6932
echo "LIBS_QGA+=$libs_qga" >> $config_host_mak
6933 6934
echo "TASN1_LIBS=$tasn1_libs" >> $config_host_mak
echo "TASN1_CFLAGS=$tasn1_cflags" >> $config_host_mak
6935
echo "POD2MAN=$POD2MAN" >> $config_host_mak
6936
echo "TRANSLATE_OPT_CFLAGS=$TRANSLATE_OPT_CFLAGS" >> $config_host_mak
B
Blue Swirl 已提交
6937 6938 6939 6940
if test "$gcov" = "yes" ; then
  echo "CONFIG_GCOV=y" >> $config_host_mak
  echo "GCOV=$gcov_tool" >> $config_host_mak
fi
6941

6942 6943 6944 6945
if test "$docker" != "no"; then
    echo "HAVE_USER_DOCKER=y" >> $config_host_mak
fi

6946 6947
# use included Linux headers
if test "$linux" = "yes" ; then
6948
  mkdir -p linux-headers
6949
  case "$cpu" in
6950
  i386|x86_64|x32)
6951
    linux_arch=x86
6952
    ;;
6953
  ppc|ppc64)
6954
    linux_arch=powerpc
6955 6956
    ;;
  s390x)
6957 6958
    linux_arch=s390
    ;;
6959 6960 6961
  aarch64)
    linux_arch=arm64
    ;;
6962 6963 6964
  mips64)
    linux_arch=mips
    ;;
6965 6966 6967
  *)
    # For most CPUs the kernel architecture name and QEMU CPU name match.
    linux_arch="$cpu"
6968 6969
    ;;
  esac
6970 6971 6972 6973
    # For non-KVM architectures we will not have asm headers
    if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then
      symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm
    fi
6974 6975
fi

6976
for target in $target_list; do
6977
target_dir="$target"
6978
config_target_mak=$target_dir/config-target.mak
6979
target_name=$(echo $target | cut -d '-' -f 1)
6980
target_bigendian="no"
6981

6982
case "$target_name" in
6983
  armeb|aarch64_be|hppa|lm32|m68k|microblaze|mips|mipsn32|mips64|moxie|or1k|ppc|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb)
6984 6985 6986
  target_bigendian=yes
  ;;
esac
6987
target_softmmu="no"
B
bellard 已提交
6988
target_user_only="no"
6989
target_linux_user="no"
B
blueswir1 已提交
6990
target_bsd_user="no"
P
pbrook 已提交
6991
case "$target" in
6992
  ${target_name}-softmmu)
P
pbrook 已提交
6993 6994
    target_softmmu="yes"
    ;;
6995
  ${target_name}-linux-user)
P
pbrook 已提交
6996 6997 6998
    target_user_only="yes"
    target_linux_user="yes"
    ;;
6999
  ${target_name}-bsd-user)
B
blueswir1 已提交
7000 7001 7002
    target_user_only="yes"
    target_bsd_user="yes"
    ;;
P
pbrook 已提交
7003
  *)
7004
    error_exit "Target '$target' not recognised"
P
pbrook 已提交
7005 7006 7007
    exit 1
    ;;
esac
7008

7009 7010
target_compiler=""
target_compiler_static=""
7011
target_compiler_cflags=""
7012

7013
mkdir -p $target_dir
7014
echo "# Automatically generated by configure - do not modify" > $config_target_mak
B
bellard 已提交
7015

P
pbrook 已提交
7016
bflt="no"
7017
mttcg="no"
7018
interp_prefix1=$(echo "$interp_prefix" | sed "s/%M/$target_name/g")
P
pbrook 已提交
7019
gdb_xml_files=""
A
aliguori 已提交
7020

7021
TARGET_ARCH="$target_name"
7022
TARGET_BASE_ARCH=""
7023
TARGET_ABI_DIR=""
7024

7025
case "$target_name" in
A
aurel32 已提交
7026
  i386)
7027
    gdb_xml_files="i386-32bit.xml i386-32bit-core.xml i386-32bit-sse.xml"
7028
    target_compiler=$cross_cc_i386
7029
    target_compiler_cflags=$cross_cc_ccflags_i386
A
aurel32 已提交
7030 7031
  ;;
  x86_64)
7032
    TARGET_BASE_ARCH=i386
7033
    gdb_xml_files="i386-64bit.xml i386-64bit-core.xml i386-64bit-sse.xml"
7034
    target_compiler=$cross_cc_x86_64
A
aurel32 已提交
7035 7036
  ;;
  alpha)
7037
    mttcg="yes"
7038
    target_compiler=$cross_cc_alpha
A
aurel32 已提交
7039 7040
  ;;
  arm|armeb)
J
Juan Quintela 已提交
7041
    TARGET_ARCH=arm
A
aurel32 已提交
7042
    bflt="yes"
7043
    mttcg="yes"
P
pbrook 已提交
7044
    gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
7045
    target_compiler=$cross_cc_arm
7046
    eval "target_compiler_cflags=\$cross_cc_cflags_${target_name}"
A
aurel32 已提交
7047
  ;;
7048 7049
  aarch64|aarch64_be)
    TARGET_ARCH=aarch64
7050 7051
    TARGET_BASE_ARCH=arm
    bflt="yes"
7052
    mttcg="yes"
7053
    gdb_xml_files="aarch64-core.xml aarch64-fpu.xml arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
7054
    target_compiler=$cross_cc_aarch64
7055
    eval "target_compiler_cflags=\$cross_cc_cflags_${target_name}"
7056
  ;;
A
aurel32 已提交
7057
  cris)
7058
    target_compiler=$cross_cc_cris
A
aurel32 已提交
7059
  ;;
7060
  hppa)
R
Richard Henderson 已提交
7061
    mttcg="yes"
7062
    target_compiler=$cross_cc_hppa
7063
  ;;
M
Michael Walle 已提交
7064
  lm32)
7065
    target_compiler=$cross_cc_lm32
M
Michael Walle 已提交
7066
  ;;
A
aurel32 已提交
7067 7068
  m68k)
    bflt="yes"
7069
    gdb_xml_files="cf-core.xml cf-fp.xml m68k-fp.xml"
7070
    target_compiler=$cross_cc_m68k
A
aurel32 已提交
7071
  ;;
7072 7073
  microblaze|microblazeel)
    TARGET_ARCH=microblaze
7074
    bflt="yes"
7075
    echo "TARGET_ABI32=y" >> $config_target_mak
7076
    target_compiler=$cross_cc_microblaze
7077
  ;;
J
Juan Quintela 已提交
7078
  mips|mipsel)
J
Juan Quintela 已提交
7079
    TARGET_ARCH=mips
7080
    target_compiler=$cross_cc_mips
7081
    echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
A
aurel32 已提交
7082 7083
  ;;
  mipsn32|mipsn32el)
7084
    TARGET_ARCH=mips64
7085
    TARGET_BASE_ARCH=mips
7086
    target_compiler=$cross_cc_mipsn32
7087
    echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
7088
    echo "TARGET_ABI32=y" >> $config_target_mak
A
aurel32 已提交
7089 7090
  ;;
  mips64|mips64el)
J
Juan Quintela 已提交
7091
    TARGET_ARCH=mips64
7092
    TARGET_BASE_ARCH=mips
7093
    target_compiler=$cross_cc_mips64
7094
    echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
A
aurel32 已提交
7095
  ;;
A
Anthony Green 已提交
7096
  moxie)
7097
    target_compiler=$cross_cc_moxie
A
Anthony Green 已提交
7098
  ;;
M
Marek Vasut 已提交
7099
  nios2)
7100
    target_compiler=$cross_cc_nios2
M
Marek Vasut 已提交
7101
  ;;
7102
  or1k)
7103
    target_compiler=$cross_cc_or1k
7104 7105 7106
    TARGET_ARCH=openrisc
    TARGET_BASE_ARCH=openrisc
  ;;
A
aurel32 已提交
7107
  ppc)
7108
    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
7109
    target_compiler=$cross_cc_powerpc
A
aurel32 已提交
7110 7111
  ;;
  ppc64)
7112
    TARGET_BASE_ARCH=ppc
7113
    TARGET_ABI_DIR=ppc
7114
    mttcg=yes
7115
    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
7116
    target_compiler=$cross_cc_ppc64
A
aurel32 已提交
7117
  ;;
7118 7119 7120 7121
  ppc64le)
    TARGET_ARCH=ppc64
    TARGET_BASE_ARCH=ppc
    TARGET_ABI_DIR=ppc
7122
    mttcg=yes
7123
    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
7124
    target_compiler=$cross_cc_ppc64le
7125
  ;;
A
aurel32 已提交
7126
  ppc64abi32)
J
Juan Quintela 已提交
7127
    TARGET_ARCH=ppc64
7128
    TARGET_BASE_ARCH=ppc
7129
    TARGET_ABI_DIR=ppc
7130
    echo "TARGET_ABI32=y" >> $config_target_mak
7131
    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
7132
    target_compiler=$cross_cc_ppc64abi32
A
aurel32 已提交
7133
  ;;
M
Michael Clark 已提交
7134 7135 7136 7137
  riscv32)
    TARGET_BASE_ARCH=riscv
    TARGET_ABI_DIR=riscv
    mttcg=yes
7138
    target_compiler=$cross_cc_riscv32
M
Michael Clark 已提交
7139 7140 7141 7142 7143
  ;;
  riscv64)
    TARGET_BASE_ARCH=riscv
    TARGET_ABI_DIR=riscv
    mttcg=yes
7144
    target_compiler=$cross_cc_riscv64
M
Michael Clark 已提交
7145
  ;;
A
aurel32 已提交
7146
  sh4|sh4eb)
J
Juan Quintela 已提交
7147
    TARGET_ARCH=sh4
A
aurel32 已提交
7148
    bflt="yes"
7149
    target_compiler=$cross_cc_sh4
A
aurel32 已提交
7150 7151
  ;;
  sparc)
7152
    target_compiler=$cross_cc_sparc
A
aurel32 已提交
7153 7154
  ;;
  sparc64)
7155
    TARGET_BASE_ARCH=sparc
7156
    target_compiler=$cross_cc_sparc64
A
aurel32 已提交
7157 7158
  ;;
  sparc32plus)
J
Juan Quintela 已提交
7159
    TARGET_ARCH=sparc64
7160
    TARGET_BASE_ARCH=sparc
7161
    TARGET_ABI_DIR=sparc
7162
    target_compiler=$cross_cc_sparc32plus
7163
    echo "TARGET_ABI32=y" >> $config_target_mak
A
aurel32 已提交
7164
  ;;
7165
  s390x)
7166
    mttcg=yes
7167
    gdb_xml_files="s390x-core64.xml s390-acr.xml s390-fpr.xml s390-vx.xml s390-cr.xml s390-virt.xml s390-gs.xml"
7168
    target_compiler=$cross_cc_s390x
7169
  ;;
7170
  tilegx)
7171
    target_compiler=$cross_cc_tilegx
7172
  ;;
7173
  tricore)
7174
    target_compiler=$cross_cc_tricore
7175
  ;;
7176
  unicore32)
7177
    target_compiler=$cross_cc_unicore32
7178
  ;;
7179 7180
  xtensa|xtensaeb)
    TARGET_ARCH=xtensa
M
Max Filippov 已提交
7181
    mttcg="yes"
7182
    target_compiler=$cross_cc_xtensa
7183
  ;;
A
aurel32 已提交
7184
  *)
7185
    error_exit "Unsupported target CPU"
A
aurel32 已提交
7186 7187
  ;;
esac
7188 7189 7190 7191 7192
# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
if [ "$TARGET_BASE_ARCH" = "" ]; then
  TARGET_BASE_ARCH=$TARGET_ARCH
fi

7193 7194 7195 7196 7197
# Do we have a cross compiler for this target?
if has $target_compiler; then

    write_c_skeleton

7198
    if ! do_compiler "$target_compiler" $target_compiler_cflags -o $TMPE $TMPC -static ; then
7199
        # For host systems we might get away with building without -static
7200
        if ! do_compiler "$target_compiler" $target_compiler_cflags -o $TMPE $TMPC ; then
7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213
            target_compiler=""
        else
            enabled_cross_compilers="${enabled_cross_compilers} '${target_compiler}'"
            target_compiler_static="n"
        fi
    else
        enabled_cross_compilers="${enabled_cross_compilers} '${target_compiler}'"
        target_compiler_static="y"
    fi
else
    target_compiler=""
fi

7214 7215
symlink "$source_path/Makefile.target" "$target_dir/Makefile"

7216 7217 7218 7219
upper() {
    echo "$@"| LC_ALL=C tr '[a-z]' '[A-Z]'
}

7220
target_arch_name="$(upper $TARGET_ARCH)"
7221
echo "TARGET_$target_arch_name=y" >> $config_target_mak
7222
echo "TARGET_NAME=$target_name" >> $config_target_mak
7223
echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
7224 7225 7226
if [ "$TARGET_ABI_DIR" = "" ]; then
  TARGET_ABI_DIR=$TARGET_ARCH
fi
7227
echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
7228 7229 7230
if [ "$HOST_VARIANT_DIR" != "" ]; then
    echo "HOST_VARIANT_DIR=$HOST_VARIANT_DIR" >> $config_target_mak
fi
7231 7232 7233 7234

if supported_xen_target $target; then
    echo "CONFIG_XEN=y" >> $config_target_mak
    if test "$xen_pci_passthrough" = yes; then
7235
        echo "CONFIG_XEN_PCI_PASSTHROUGH=y" >> "$config_target_mak"
J
Juan Quintela 已提交
7236
    fi
7237 7238 7239 7240
fi
if supported_kvm_target $target; then
    echo "CONFIG_KVM=y" >> $config_target_mak
    if test "$vhost_net" = "yes" ; then
M
Michael S. Tsirkin 已提交
7241
        echo "CONFIG_VHOST_NET=y" >> $config_target_mak
7242 7243 7244
        if test "$vhost_user" = "yes" ; then
            echo "CONFIG_VHOST_USER_NET_TEST_$target_name=y" >> $config_host_mak
        fi
J
Juan Quintela 已提交
7245
    fi
7246 7247 7248
fi
if supported_hax_target $target; then
    echo "CONFIG_HAX=y" >> $config_target_mak
7249
fi
7250 7251 7252
if supported_hvf_target $target; then
    echo "CONFIG_HVF=y" >> $config_target_mak
fi
7253 7254 7255
if supported_whpx_target $target; then
    echo "CONFIG_WHPX=y" >> $config_target_mak
fi
B
bellard 已提交
7256
if test "$target_bigendian" = "yes" ; then
7257
  echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
B
bellard 已提交
7258
fi
7259
if test "$target_softmmu" = "yes" ; then
7260
  echo "CONFIG_SOFTMMU=y" >> $config_target_mak
7261 7262 7263
  if test "$mttcg" = "yes" ; then
    echo "TARGET_SUPPORTS_MTTCG=y" >> $config_target_mak
  fi
B
bellard 已提交
7264
fi
B
bellard 已提交
7265
if test "$target_user_only" = "yes" ; then
7266
  echo "CONFIG_USER_ONLY=y" >> $config_target_mak
7267
  echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
B
bellard 已提交
7268
fi
7269
if test "$target_linux_user" = "yes" ; then
7270
  echo "CONFIG_LINUX_USER=y" >> $config_target_mak
7271
fi
P
pbrook 已提交
7272 7273 7274 7275 7276
list=""
if test ! -z "$gdb_xml_files" ; then
  for x in $gdb_xml_files; do
    list="$list $source_path/gdb-xml/$x"
  done
7277
  echo "TARGET_XML_FILES=$list" >> $config_target_mak
P
pbrook 已提交
7278
fi
7279

P
pbrook 已提交
7280
if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
7281
  echo "TARGET_HAS_BFLT=y" >> $config_target_mak
P
pbrook 已提交
7282
fi
B
blueswir1 已提交
7283
if test "$target_bsd_user" = "yes" ; then
7284
  echo "CONFIG_BSD_USER=y" >> $config_target_mak
B
blueswir1 已提交
7285
fi
7286

7287 7288 7289 7290 7291 7292
if test -n "$target_compiler"; then
  echo "CROSS_CC_GUEST=\"$target_compiler\"" >> $config_target_mak

  if test -n "$target_compiler_static"; then
      echo "CROSS_CC_GUEST_STATIC=$target_compiler_static" >> $config_target_mak
  fi
7293 7294 7295 7296

  if test -n "$target_compiler_cflags"; then
      echo "CROSS_CC_GUEST_CFLAGS=$target_compiler_cflags" >> $config_target_mak
  fi
7297 7298
fi

7299

7300
# generate QEMU_CFLAGS/LDFLAGS for targets
7301

7302
cflags=""
7303
ldflags=""
7304

7305 7306 7307 7308 7309
disas_config() {
  echo "CONFIG_${1}_DIS=y" >> $config_target_mak
  echo "CONFIG_${1}_DIS=y" >> config-all-disas.mak
}

7310 7311 7312
for i in $ARCH $TARGET_BASE_ARCH ; do
  case "$i" in
  alpha)
7313
    disas_config "ALPHA"
7314
  ;;
7315 7316
  aarch64)
    if test -n "${cxx}"; then
7317
      disas_config "ARM_A64"
7318 7319
    fi
  ;;
7320
  arm)
7321
    disas_config "ARM"
7322
    if test -n "${cxx}"; then
7323
      disas_config "ARM_A64"
7324
    fi
7325 7326
  ;;
  cris)
7327
    disas_config "CRIS"
7328
  ;;
7329 7330 7331
  hppa)
    disas_config "HPPA"
  ;;
7332
  i386|x86_64|x32)
7333
    disas_config "I386"
7334
  ;;
7335
  lm32)
7336
    disas_config "LM32"
7337
  ;;
7338
  m68k)
7339
    disas_config "M68K"
7340
  ;;
7341
  microblaze*)
7342
    disas_config "MICROBLAZE"
7343 7344
  ;;
  mips*)
7345
    disas_config "MIPS"
7346
  ;;
A
Anthony Green 已提交
7347
  moxie*)
7348
    disas_config "MOXIE"
A
Anthony Green 已提交
7349
  ;;
M
Marek Vasut 已提交
7350 7351 7352
  nios2)
    disas_config "NIOS2"
  ;;
7353
  or1k)
7354
    disas_config "OPENRISC"
7355
  ;;
7356
  ppc*)
7357
    disas_config "PPC"
7358
  ;;
M
Michael Clark 已提交
7359 7360 7361
  riscv)
    disas_config "RISCV"
  ;;
7362
  s390*)
7363
    disas_config "S390"
7364 7365
  ;;
  sh4)
7366
    disas_config "SH4"
7367 7368
  ;;
  sparc*)
7369
    disas_config "SPARC"
7370
  ;;
7371
  xtensa*)
7372
    disas_config "XTENSA"
7373
  ;;
7374 7375
  esac
done
7376
if test "$tcg_interpreter" = "yes" ; then
7377
  disas_config "TCI"
7378
fi
7379

7380 7381 7382 7383 7384 7385 7386
case "$ARCH" in
alpha)
  # Ensure there's only a single GP
  cflags="-msmall-data $cflags"
;;
esac

7387
if test "$gprof" = "yes" ; then
7388
  echo "TARGET_GPROF=yes" >> $config_target_mak
7389 7390 7391 7392 7393 7394
  if test "$target_linux_user" = "yes" ; then
    cflags="-p $cflags"
    ldflags="-p $ldflags"
  fi
  if test "$target_softmmu" = "yes" ; then
    ldflags="-p $ldflags"
7395
    echo "GPROF_CFLAGS=-p" >> $config_target_mak
7396 7397 7398
  fi
fi

7399
if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
7400
  ldflags="$ldflags $textseg_ldflags"
7401 7402
fi

7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416
# Newer kernels on s390 check for an S390_PGSTE program header and
# enable the pgste page table extensions in that case. This makes
# the vm.allocate_pgste sysctl unnecessary. We enable this program
# header if
#  - we build on s390x
#  - we build the system emulation for s390x (qemu-system-s390x)
#  - KVM is enabled
#  - the linker supports --s390-pgste
if test "$TARGET_ARCH" = "s390x" -a "$target_softmmu" = "yes"  -a "$ARCH" = "s390x" -a "$kvm" = "yes"; then
    if ld_has --s390-pgste ; then
        ldflags="-Wl,--s390-pgste $ldflags"
    fi
fi

7417 7418
echo "LDFLAGS+=$ldflags" >> $config_target_mak
echo "QEMU_CFLAGS+=$cflags" >> $config_target_mak
7419

7420
done # for target in $targets
B
bellard 已提交
7421

7422 7423 7424 7425 7426
if test -n "$enabled_cross_compilers"; then
    echo
    echo "NOTE: cross-compilers enabled: $enabled_cross_compilers"
fi

7427
if [ "$fdt" = "git" ]; then
7428 7429
  echo "config-host.h: subdir-dtc" >> $config_host_mak
fi
7430 7431 7432 7433 7434 7435
if [ "$capstone" = "git" -o "$capstone" = "internal" ]; then
  echo "config-host.h: subdir-capstone" >> $config_host_mak
fi
if test -n "$LIBCAPSTONE"; then
  echo "LIBCAPSTONE=$LIBCAPSTONE" >> $config_host_mak
fi
7436

7437 7438 7439 7440
if test "$numa" = "yes"; then
  echo "CONFIG_NUMA=y" >> $config_host_mak
fi

7441 7442 7443 7444
if test "$ccache_cpp2" = "yes"; then
  echo "export CCACHE_CPP2=y" >> $config_host_mak
fi

P
Paolo Bonzini 已提交
7445
# build tree in object directory in case the source is not in the current directory
F
Fam Zheng 已提交
7446
DIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32 tests/libqos tests/qapi-schema tests/tcg/xtensa tests/qemu-iotests tests/vm"
P
Paolo Bonzini 已提交
7447
DIRS="$DIRS docs docs/interop fsdev scsi"
7448
DIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas pc-bios/s390-ccw"
P
Paolo Bonzini 已提交
7449
DIRS="$DIRS roms/seabios roms/vgabios"
A
Anthony Liguori 已提交
7450 7451
FILES="Makefile tests/tcg/Makefile qdict-test-data.txt"
FILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit"
7452
FILES="$FILES tests/tcg/lm32/Makefile tests/tcg/xtensa/Makefile po/Makefile"
P
Paolo Bonzini 已提交
7453
FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps"
A
Andreas Färber 已提交
7454
FILES="$FILES pc-bios/spapr-rtas/Makefile"
7455
FILES="$FILES pc-bios/s390-ccw/Makefile"
P
Paolo Bonzini 已提交
7456
FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
7457
FILES="$FILES pc-bios/qemu-icon.bmp"
7458
FILES="$FILES .gdbinit scripts" # scripts needed by relative path in .gdbinit
7459 7460
for bios_file in \
    $source_path/pc-bios/*.bin \
7461
    $source_path/pc-bios/*.lid \
7462
    $source_path/pc-bios/*.aml \
7463 7464
    $source_path/pc-bios/*.rom \
    $source_path/pc-bios/*.dtb \
7465
    $source_path/pc-bios/*.img \
7466
    $source_path/pc-bios/openbios-* \
7467
    $source_path/pc-bios/u-boot.* \
7468 7469
    $source_path/pc-bios/palcode-*
do
7470
    FILES="$FILES pc-bios/$(basename $bios_file)"
P
Paolo Bonzini 已提交
7471
done
7472
for test_file in $(find $source_path/tests/acpi-test-data -type f)
7473
do
7474
    FILES="$FILES tests/acpi-test-data$(echo $test_file | sed -e 's/.*acpi-test-data//')"
7475
done
7476 7477 7478 7479
for test_file in $(find $source_path/tests/hex-loader-check-data -type f)
do
    FILES="$FILES tests/hex-loader-check-data$(echo $test_file | sed -e 's/.*hex-loader-check-data//')"
done
P
Paolo Bonzini 已提交
7480 7481
mkdir -p $DIRS
for f in $FILES ; do
7482
    if [ -e "$source_path/$f" ] && [ "$pwd_is_source_path" != "y" ]; then
7483 7484
        symlink "$source_path/$f" "$f"
    fi
P
Paolo Bonzini 已提交
7485
done
P
Paul Brook 已提交
7486

7487
# temporary config to build submodules
7488
for rom in seabios vgabios ; do
7489
    config_mak=roms/$rom/config.mak
7490
    echo "# Automatically generated by configure - do not modify" > $config_mak
7491
    echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
7492
    echo "AS=$as" >> $config_mak
7493
    echo "CCAS=$ccas" >> $config_mak
7494 7495
    echo "CC=$cc" >> $config_mak
    echo "BCC=bcc" >> $config_mak
7496
    echo "CPP=$cpp" >> $config_mak
7497
    echo "OBJCOPY=objcopy" >> $config_mak
7498
    echo "IASL=$iasl" >> $config_mak
7499
    echo "LD=$ld" >> $config_mak
7500
    echo "RANLIB=$ranlib" >> $config_mak
7501 7502
done

M
Marc-André Lureau 已提交
7503
# set up tests data directory
7504 7505 7506 7507 7508
for tests_subdir in acceptance data; do
    if [ ! -e tests/$tests_subdir ]; then
        symlink "$source_path/tests/$tests_subdir" tests/$tests_subdir
    fi
done
M
Marc-André Lureau 已提交
7509

7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521
# set up qemu-iotests in this build directory
iotests_common_env="tests/qemu-iotests/common.env"
iotests_check="tests/qemu-iotests/check"

echo "# Automatically generated by configure - do not modify" > "$iotests_common_env"
echo >> "$iotests_common_env"
echo "export PYTHON='$python'" >> "$iotests_common_env"

if [ ! -e "$iotests_check" ]; then
    symlink "$source_path/$iotests_check" "$iotests_check"
fi

7522 7523 7524 7525 7526 7527 7528 7529 7530 7531
# Save the configure command line for later reuse.
cat <<EOD >config.status
#!/bin/sh
# Generated by configure.
# Run this file to recreate the current configuration.
# Compiler output produced by configure, useful for debugging
# configure, is in config.log if it exists.
EOD
printf "exec" >>config.status
printf " '%s'" "$0" "$@" >>config.status
7532
echo ' "$@"' >>config.status
7533 7534
chmod +x config.status

7535
rm -r "$TMPDIR1"