xref: /openbmc/qemu/configure (revision 2d31515b)
17d13299dSbellard#!/bin/sh
27d13299dSbellard#
33ef693a0Sbellard# qemu configure script (c) 2003 Fabrice Bellard
47d13299dSbellard#
58cd05ab6SPeter Maydell
699519e67SCornelia Huck# Unset some variables known to interfere with behavior of common tools,
799519e67SCornelia Huck# just as autoconf does.
899519e67SCornelia HuckCLICOLOR_FORCE= GREP_OPTIONS=
999519e67SCornelia Huckunset CLICOLOR_FORCE GREP_OPTIONS
1099519e67SCornelia Huck
115e4dfd3dSJohn Snow# Don't allow CCACHE, if present, to use cached results of compile tests!
125e4dfd3dSJohn Snowexport CCACHE_RECACHE=yes
135e4dfd3dSJohn Snow
148cd05ab6SPeter Maydell# Temporary directory used for files created while
158cd05ab6SPeter Maydell# configure runs. Since it is in the build directory
168cd05ab6SPeter Maydell# we can safely blow away any previous version of it
178cd05ab6SPeter Maydell# (and we need not jump through hoops to try to delete
188cd05ab6SPeter Maydell# it when configure exits.)
198cd05ab6SPeter MaydellTMPDIR1="config-temp"
208cd05ab6SPeter Maydellrm -rf "${TMPDIR1}"
218cd05ab6SPeter Maydellmkdir -p "${TMPDIR1}"
228cd05ab6SPeter Maydellif [ $? -ne 0 ]; then
238cd05ab6SPeter Maydell    echo "ERROR: failed to create temporary directory"
248cd05ab6SPeter Maydell    exit 1
257d13299dSbellardfi
267d13299dSbellard
278cd05ab6SPeter MaydellTMPB="qemu-conf"
288cd05ab6SPeter MaydellTMPC="${TMPDIR1}/${TMPB}.c"
2966518bf6SDon SlutzTMPO="${TMPDIR1}/${TMPB}.o"
309c83ffd8SPeter MaydellTMPCXX="${TMPDIR1}/${TMPB}.cxx"
3166518bf6SDon SlutzTMPL="${TMPDIR1}/${TMPB}.lo"
3266518bf6SDon SlutzTMPA="${TMPDIR1}/lib${TMPB}.la"
338cd05ab6SPeter MaydellTMPE="${TMPDIR1}/${TMPB}.exe"
346969ec6cSJames ClarkeTMPMO="${TMPDIR1}/${TMPB}.mo"
357d13299dSbellard
36da1d85e3SGerd Hoffmannrm -f config.log
379ac81bbbSmalc
38b48e3611SPeter Maydell# Print a helpful header at the top of config.log
39b48e3611SPeter Maydellecho "# QEMU configure log $(date)" >> config.log
40979ae168SPeter Maydellprintf "# Configured with:" >> config.log
41979ae168SPeter Maydellprintf " '%s'" "$0" "$@" >> config.log
42979ae168SPeter Maydellecho >> config.log
43b48e3611SPeter Maydellecho "#" >> config.log
44b48e3611SPeter Maydell
4576ad07a4SPeter Maydellerror_exit() {
4676ad07a4SPeter Maydell    echo
4776ad07a4SPeter Maydell    echo "ERROR: $1"
4876ad07a4SPeter Maydell    while test -n "$2"; do
4976ad07a4SPeter Maydell        echo "       $2"
5076ad07a4SPeter Maydell        shift
5176ad07a4SPeter Maydell    done
5276ad07a4SPeter Maydell    echo
5376ad07a4SPeter Maydell    exit 1
5476ad07a4SPeter Maydell}
5576ad07a4SPeter Maydell
569c83ffd8SPeter Maydelldo_compiler() {
579c83ffd8SPeter Maydell    # Run the compiler, capturing its output to the log. First argument
589c83ffd8SPeter Maydell    # is compiler binary to execute.
599c83ffd8SPeter Maydell    local compiler="$1"
609c83ffd8SPeter Maydell    shift
619c83ffd8SPeter Maydell    echo $compiler "$@" >> config.log
629c83ffd8SPeter Maydell    $compiler "$@" >> config.log 2>&1 || return $?
638dc38a78SPeter Maydell    # Test passed. If this is an --enable-werror build, rerun
648dc38a78SPeter Maydell    # the test with -Werror and bail out if it fails. This
658dc38a78SPeter Maydell    # makes warning-generating-errors in configure test code
668dc38a78SPeter Maydell    # obvious to developers.
678dc38a78SPeter Maydell    if test "$werror" != "yes"; then
688dc38a78SPeter Maydell        return 0
698dc38a78SPeter Maydell    fi
708dc38a78SPeter Maydell    # Don't bother rerunning the compile if we were already using -Werror
718dc38a78SPeter Maydell    case "$*" in
728dc38a78SPeter Maydell        *-Werror*)
738dc38a78SPeter Maydell           return 0
748dc38a78SPeter Maydell        ;;
758dc38a78SPeter Maydell    esac
769c83ffd8SPeter Maydell    echo $compiler -Werror "$@" >> config.log
779c83ffd8SPeter Maydell    $compiler -Werror "$@" >> config.log 2>&1 && return $?
7876ad07a4SPeter Maydell    error_exit "configure test passed without -Werror but failed with -Werror." \
7976ad07a4SPeter Maydell        "This is probably a bug in the configure script. The failing command" \
8076ad07a4SPeter Maydell        "will be at the bottom of config.log." \
8176ad07a4SPeter Maydell        "You can run configure with --disable-werror to bypass this check."
828dc38a78SPeter Maydell}
838dc38a78SPeter Maydell
849c83ffd8SPeter Maydelldo_cc() {
859c83ffd8SPeter Maydell    do_compiler "$cc" "$@"
869c83ffd8SPeter Maydell}
879c83ffd8SPeter Maydell
889c83ffd8SPeter Maydelldo_cxx() {
899c83ffd8SPeter Maydell    do_compiler "$cxx" "$@"
909c83ffd8SPeter Maydell}
919c83ffd8SPeter Maydell
929c83ffd8SPeter Maydellupdate_cxxflags() {
939c83ffd8SPeter Maydell    # Set QEMU_CXXFLAGS from QEMU_CFLAGS by filtering out those
949c83ffd8SPeter Maydell    # options which some versions of GCC's C++ compiler complain about
959c83ffd8SPeter Maydell    # because they only make sense for C programs.
969c83ffd8SPeter Maydell    QEMU_CXXFLAGS=
979c83ffd8SPeter Maydell    for arg in $QEMU_CFLAGS; do
989c83ffd8SPeter Maydell        case $arg in
999c83ffd8SPeter Maydell            -Wstrict-prototypes|-Wmissing-prototypes|-Wnested-externs|\
1009c83ffd8SPeter Maydell            -Wold-style-declaration|-Wold-style-definition|-Wredundant-decls)
1019c83ffd8SPeter Maydell                ;;
1029c83ffd8SPeter Maydell            *)
1039c83ffd8SPeter Maydell                QEMU_CXXFLAGS=${QEMU_CXXFLAGS:+$QEMU_CXXFLAGS }$arg
1049c83ffd8SPeter Maydell                ;;
1059c83ffd8SPeter Maydell        esac
1069c83ffd8SPeter Maydell    done
1079c83ffd8SPeter Maydell}
1089c83ffd8SPeter Maydell
10952166aa0SJuan Quintelacompile_object() {
110fd0e6053SJohn Snow  local_cflags="$1"
111fd0e6053SJohn Snow  do_cc $QEMU_CFLAGS $local_cflags -c -o $TMPO $TMPC
11252166aa0SJuan Quintela}
11352166aa0SJuan Quintela
11452166aa0SJuan Quintelacompile_prog() {
11552166aa0SJuan Quintela  local_cflags="$1"
11652166aa0SJuan Quintela  local_ldflags="$2"
1178dc38a78SPeter Maydell  do_cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
11852166aa0SJuan Quintela}
11952166aa0SJuan Quintela
12011568d6dSPaolo Bonzini# symbolically link $1 to $2.  Portable version of "ln -sf".
12111568d6dSPaolo Bonzinisymlink() {
12272b8b5a1SStefan Weil  rm -rf "$2"
123ec5b06d7SAnthony Liguori  mkdir -p "$(dirname "$2")"
12472b8b5a1SStefan Weil  ln -s "$1" "$2"
12511568d6dSPaolo Bonzini}
12611568d6dSPaolo Bonzini
1270dba6195SLoïc Minier# check whether a command is available to this shell (may be either an
1280dba6195SLoïc Minier# executable or a builtin)
1290dba6195SLoïc Minierhas() {
1300dba6195SLoïc Minier    type "$1" >/dev/null 2>&1
1310dba6195SLoïc Minier}
1320dba6195SLoïc Minier
1330dba6195SLoïc Minier# search for an executable in PATH
1340dba6195SLoïc Minierpath_of() {
1350dba6195SLoïc Minier    local_command="$1"
1360dba6195SLoïc Minier    local_ifs="$IFS"
1370dba6195SLoïc Minier    local_dir=""
1380dba6195SLoïc Minier
1390dba6195SLoïc Minier    # pathname has a dir component?
1400dba6195SLoïc Minier    if [ "${local_command#*/}" != "$local_command" ]; then
1410dba6195SLoïc Minier        if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then
1420dba6195SLoïc Minier            echo "$local_command"
1430dba6195SLoïc Minier            return 0
1440dba6195SLoïc Minier        fi
1450dba6195SLoïc Minier    fi
1460dba6195SLoïc Minier    if [ -z "$local_command" ]; then
1470dba6195SLoïc Minier        return 1
1480dba6195SLoïc Minier    fi
1490dba6195SLoïc Minier
1500dba6195SLoïc Minier    IFS=:
1510dba6195SLoïc Minier    for local_dir in $PATH; do
1520dba6195SLoïc Minier        if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then
1530dba6195SLoïc Minier            echo "$local_dir/$local_command"
1540dba6195SLoïc Minier            IFS="${local_ifs:-$(printf ' \t\n')}"
1550dba6195SLoïc Minier            return 0
1560dba6195SLoïc Minier        fi
1570dba6195SLoïc Minier    done
1580dba6195SLoïc Minier    # not found
1590dba6195SLoïc Minier    IFS="${local_ifs:-$(printf ' \t\n')}"
1600dba6195SLoïc Minier    return 1
1610dba6195SLoïc Minier}
1620dba6195SLoïc Minier
1635b808275SLluís Vilanovahave_backend () {
1645b808275SLluís Vilanova    echo "$trace_backends" | grep "$1" >/dev/null
1655b808275SLluís Vilanova}
1665b808275SLluís Vilanova
1677d13299dSbellard# default parameters
16889138857SStefan Weilsource_path=$(dirname "$0")
1692ff6b91eSJuan Quintelacpu=""
170a31a8642SMichael S. Tsirkiniasl="iasl"
1711e43adfcSbellardinterp_prefix="/usr/gnemul/qemu-%M"
17243ce4dfeSbellardstatic="no"
1737d13299dSbellardcross_prefix=""
1740c58ac1cSmalcaudio_drv_list=""
175b64ec4e4SFam Zhengblock_drv_rw_whitelist=""
176b64ec4e4SFam Zhengblock_drv_ro_whitelist=""
177e49d021eSPeter Maydellhost_cc="cc"
17873da375eSJuan Quintelalibs_softmmu=""
1793e2e0e6bSJuan Quintelalibs_tools=""
18067f86e8eSJuan Quintelaaudio_pt_int=""
181d5631638Smalcaudio_win_int=""
1822b2e59e6SPaolo Bonzinicc_i386=i386-pc-linux-gnu-gcc
183957f1f99SMichael Rothlibs_qga=""
1845bc62e01SGerd Hoffmanndebug_info="yes"
18563678e17SSteven Noonanstack_protector=""
186ac0df51dSaliguori
187afb63ebdSStefan Weil# Don't accept a target_list environment variable.
188afb63ebdSStefan Weilunset target_list
189377529c0SPaolo Bonzini
190377529c0SPaolo Bonzini# Default value for a variable defining feature "foo".
191377529c0SPaolo Bonzini#  * foo="no"  feature will only be used if --enable-foo arg is given
192377529c0SPaolo Bonzini#  * foo=""    feature will be searched for, and if found, will be used
193377529c0SPaolo Bonzini#              unless --disable-foo is given
194377529c0SPaolo Bonzini#  * foo="yes" this value will only be set by --enable-foo flag.
195377529c0SPaolo Bonzini#              feature will searched for,
196377529c0SPaolo Bonzini#              if not found, configure exits with error
197377529c0SPaolo Bonzini#
198377529c0SPaolo Bonzini# Always add --enable-foo and --disable-foo command line args.
199377529c0SPaolo Bonzini# Distributions want to ensure that several features are compiled in, and it
200377529c0SPaolo Bonzini# is impossible without a --enable-foo that exits if a feature is not found.
201377529c0SPaolo Bonzini
202377529c0SPaolo Bonzinibluez=""
203377529c0SPaolo Bonzinibrlapi=""
204377529c0SPaolo Bonzinicurl=""
205377529c0SPaolo Bonzinicurses=""
206377529c0SPaolo Bonzinidocs=""
207377529c0SPaolo Bonzinifdt=""
20858952137SVincenzo Maffionenetmap="no"
209e2134eb9SGerd Hoffmannpixman=""
210377529c0SPaolo Bonzinisdl=""
211ee8466d0SCole Robinsonsdlabi=""
212983eef5aSMeador Ingevirtfs=""
213821601eaSJes Sorensenvnc="yes"
214377529c0SPaolo Bonzinisparse="no"
215377529c0SPaolo Bonziniuuid=""
216377529c0SPaolo Bonzinivde=""
217377529c0SPaolo Bonzinivnc_sasl=""
218377529c0SPaolo Bonzinivnc_jpeg=""
219377529c0SPaolo Bonzinivnc_png=""
220377529c0SPaolo Bonzinixen=""
221d5b93ddfSAnthony PERARDxen_ctrl_version=""
22264a7ad6fSIan Campbellxen_pv_domain_build="no"
223eb6fda0fSAnthony PERARDxen_pci_passthrough=""
224377529c0SPaolo Bonzinilinux_aio=""
22547e98658SCorey Bryantcap_ng=""
226377529c0SPaolo Bonziniattr=""
2274f26f2b6SAvi Kivitylibattr=""
228377529c0SPaolo Bonzinixfs=""
229377529c0SPaolo Bonzini
230d41a75a2SBradvhost_net="no"
2315e9be92dSNicholas Bellingervhost_scsi="no"
232fc0b9b0eSStefan Hajnoczivhost_vsock="no"
233d41a75a2SBradkvm="no"
2342da776dbSMichael R. Hinesrdma=""
235377529c0SPaolo Bonzinigprof="no"
236377529c0SPaolo Bonzinidebug_tcg="no"
237377529c0SPaolo Bonzinidebug="no"
238b553a042SJohn Snowfortify_source=""
239377529c0SPaolo Bonzinistrip_opt="yes"
2409195b2c2SStefan Weiltcg_interpreter="no"
241377529c0SPaolo Bonzinibigendian="no"
242377529c0SPaolo Bonzinimingw32="no"
2431d728c39SBlue Swirlgcov="no"
2441d728c39SBlue Swirlgcov_tool="gcov"
245377529c0SPaolo BonziniEXESUF=""
24617969268SFam ZhengDSOSUF=".so"
24717969268SFam ZhengLDFLAGS_SHARED="-shared"
24817969268SFam Zhengmodules="no"
249377529c0SPaolo Bonziniprefix="/usr/local"
250377529c0SPaolo Bonzinimandir="\${prefix}/share/man"
251528ae5b8SEduardo Habkostdatadir="\${prefix}/share"
252850da188SEduardo Habkostqemu_docdir="\${prefix}/share/doc/qemu"
253377529c0SPaolo Bonzinibindir="\${prefix}/bin"
2543aa5d2beSAlon Levylibdir="\${prefix}/lib"
2558bf188aaSMichael Tokarevlibexecdir="\${prefix}/libexec"
2560f94d6daSAlon Levyincludedir="\${prefix}/include"
257377529c0SPaolo Bonzinisysconfdir="\${prefix}/etc"
258785c23aeSLuiz Capitulinolocal_statedir="\${prefix}/var"
259377529c0SPaolo Bonziniconfsuffix="/qemu"
260377529c0SPaolo Bonzinislirp="yes"
261377529c0SPaolo Bonzinioss_lib=""
262377529c0SPaolo Bonzinibsd="no"
263377529c0SPaolo Bonzinilinux="no"
264377529c0SPaolo Bonzinisolaris="no"
265377529c0SPaolo Bonziniprofiler="no"
266377529c0SPaolo Bonzinicocoa="no"
267377529c0SPaolo Bonzinisoftmmu="yes"
268377529c0SPaolo Bonzinilinux_user="no"
269377529c0SPaolo Bonzinibsd_user="no"
270377529c0SPaolo Bonziniaix="no"
271377529c0SPaolo Bonziniblobs="yes"
272377529c0SPaolo Bonzinipkgversion=""
27340d6444eSAvi Kivitypie=""
2743556c233SPaolo Bonziniqom_cast_debug="yes"
275baf86d6bSPaolo Bonzinitrace_backends="log"
276377529c0SPaolo Bonzinitrace_file="trace"
277377529c0SPaolo Bonzinispice=""
278377529c0SPaolo Bonzinirbd=""
2797b02f544SMarc-André Lureausmartcard=""
2802b2325ffSGerd Hoffmannlibusb=""
28169354a83SHans de Goedeusb_redir=""
282da076ffeSGerd Hoffmannopengl=""
283014cb152SGerd Hoffmannopengl_dmabuf="no"
28499f2dbd3SLiang Liavx2_opt="no"
2851ece9905SAlon Levyzlib="yes"
286b25c9dffSStefan Weillzo=""
287b25c9dffSStefan Weilsnappy=""
2886b383c08SPeter Wubzip2=""
289e8ef31a3SMichael Tokarevguest_agent=""
290d9840e25STomoki Sekiyamaguest_agent_with_vss="no"
29150cbebb9SMichael Rothguest_agent_ntddscsi="no"
2929dacf32dSYossi Hindinguest_agent_msi=""
293d9840e25STomoki Sekiyamavss_win32_sdk=""
294d9840e25STomoki Sekiyamawin_sdk="no"
2954b1c11fdSDaniel P. Berrangewant_tools="yes"
296c589b249SRonnie Sahlberglibiscsi=""
2976542aa9cSPeter Lievenlibnfs=""
298519175a2SAlex Barcelocoroutine=""
29970c60c08SStefan Hajnoczicoroutine_pool=""
300f794573eSEduardo Otuboseccomp=""
301eb100396SBharata B Raoglusterfs=""
302d85fa9ebSJeff Codyglusterfs_xlator_opt="no"
3030c14fb47SBharata B Raoglusterfs_discard="no"
3047c815372SBharata B Raoglusterfs_zerofill="no"
3056a460ed1SStefan Hajnocziarchipelago="no"
306a4ccabcfSAnthony Liguorigtk=""
3079e04c683SStefan Weilgtkabi=""
308925a0400SGerd Hoffmanngtk_gl="no"
309a1c5e949SDaniel P. Berrangetls_priority="NORMAL"
310ddbb0d09SDaniel P. Berrangegnutls=""
311b917da4cSDaniel P. Berrangegnutls_rnd=""
31291bfcdb0SDaniel P. Berrangenettle=""
313fff2f982SDaniel P. Berrangenettle_kdf="no"
31491bfcdb0SDaniel P. Berrangegcrypt=""
31537788f25SDaniel P. Berrangegcrypt_kdf="no"
316bbbf9bfbSStefan Weilvte=""
3179d9e1521SGerd Hoffmannvirglrenderer=""
318e91c793cSCole Robinsontpm="yes"
3190a12ec87SRichard W.M. Joneslibssh2=""
3204f18b782SJeff Codyvhdx=""
321a99d57bbSWanlong Gaonuma=""
3222847b469SFam Zhengtcmalloc="no"
3237b01cb97SAlexandre Derumierjemalloc="no"
324a6b1d4c0SChanglong Xiereplication="yes"
325377529c0SPaolo Bonzini
326ac0df51dSaliguori# parse CC options first
327ac0df51dSaliguorifor opt do
32889138857SStefan Weil  optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
329ac0df51dSaliguori  case "$opt" in
330ac0df51dSaliguori  --cross-prefix=*) cross_prefix="$optarg"
331ac0df51dSaliguori  ;;
3323d8df640SPaolo Bonzini  --cc=*) CC="$optarg"
333ac0df51dSaliguori  ;;
33483f73fceSTomoki Sekiyama  --cxx=*) CXX="$optarg"
33583f73fceSTomoki Sekiyama  ;;
336ca4deeb1SPaolo Bonzini  --source-path=*) source_path="$optarg"
337ca4deeb1SPaolo Bonzini  ;;
3382ff6b91eSJuan Quintela  --cpu=*) cpu="$optarg"
3392ff6b91eSJuan Quintela  ;;
340de385287SAlex Bennée  --extra-cflags=*) QEMU_CFLAGS="$QEMU_CFLAGS $optarg"
341f9943cd5SGerd Hoffmann                    EXTRA_CFLAGS="$optarg"
342e2a2ed06SJuan Quintela  ;;
343a4969e90SAlex Bennée  --extra-ldflags=*) LDFLAGS="$LDFLAGS $optarg"
344f9943cd5SGerd Hoffmann                     EXTRA_LDFLAGS="$optarg"
345e2a2ed06SJuan Quintela  ;;
3465bc62e01SGerd Hoffmann  --enable-debug-info) debug_info="yes"
3475bc62e01SGerd Hoffmann  ;;
3485bc62e01SGerd Hoffmann  --disable-debug-info) debug_info="no"
3495bc62e01SGerd Hoffmann  ;;
350ac0df51dSaliguori  esac
351ac0df51dSaliguoridone
352ac0df51dSaliguori# OS specific
353ac0df51dSaliguori# Using uname is really, really broken.  Once we have the right set of checks
35493148aa5SStefan Weil# we can eliminate its usage altogether.
355ac0df51dSaliguori
356e49d021eSPeter Maydell# Preferred compiler:
357e49d021eSPeter Maydell#  ${CC} (if set)
358e49d021eSPeter Maydell#  ${cross_prefix}gcc (if cross-prefix specified)
359e49d021eSPeter Maydell#  system compiler
360e49d021eSPeter Maydellif test -z "${CC}${cross_prefix}"; then
361e49d021eSPeter Maydell  cc="$host_cc"
362e49d021eSPeter Maydellelse
363b3198cc2SStuart Yoder  cc="${CC-${cross_prefix}gcc}"
364e49d021eSPeter Maydellfi
365e49d021eSPeter Maydell
36683f73fceSTomoki Sekiyamaif test -z "${CXX}${cross_prefix}"; then
36783f73fceSTomoki Sekiyama  cxx="c++"
36883f73fceSTomoki Sekiyamaelse
36983f73fceSTomoki Sekiyama  cxx="${CXX-${cross_prefix}g++}"
37083f73fceSTomoki Sekiyamafi
37183f73fceSTomoki Sekiyama
372b3198cc2SStuart Yoderar="${AR-${cross_prefix}ar}"
373cdbd727cSRichard Hendersonas="${AS-${cross_prefix}as}"
3745f6f0e27SRichard Hendersonccas="${CCAS-$cc}"
3753dd46c78SBlue Swirlcpp="${CPP-$cc -E}"
376b3198cc2SStuart Yoderobjcopy="${OBJCOPY-${cross_prefix}objcopy}"
377b3198cc2SStuart Yoderld="${LD-${cross_prefix}ld}"
3784852ee95SStefan Weilnm="${NM-${cross_prefix}nm}"
379b3198cc2SStuart Yoderstrip="${STRIP-${cross_prefix}strip}"
380b3198cc2SStuart Yoderwindres="${WINDRES-${cross_prefix}windres}"
38117884d7bSSergei Trofimovichpkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}"
38217884d7bSSergei Trofimovichquery_pkg_config() {
38317884d7bSSergei Trofimovich    "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@"
38417884d7bSSergei Trofimovich}
38517884d7bSSergei Trofimovichpkg_config=query_pkg_config
386b3198cc2SStuart Yodersdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}"
38747c03744SDave Airliesdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}"
388ac0df51dSaliguori
38945d285abSPeter Maydell# If the user hasn't specified ARFLAGS, default to 'rv', just as make does.
39045d285abSPeter MaydellARFLAGS="${ARFLAGS-rv}"
39145d285abSPeter Maydell
392be17dc90SMichael S. Tsirkin# default flags for all hosts
393*2d31515bSPeter Maydell# We use -fwrapv to tell the compiler that we require a C dialect where
394*2d31515bSPeter Maydell# left shift of signed integers is well defined and has the expected
395*2d31515bSPeter Maydell# 2s-complement style results. (Both clang and gcc agree that it
396*2d31515bSPeter Maydell# provides these semantics.)
397*2d31515bSPeter MaydellQEMU_CFLAGS="-fno-strict-aliasing -fno-common -fwrapv $QEMU_CFLAGS"
398f9188227SMike FrysingerQEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
399c95e3080SKevin WolfQEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
400be17dc90SMichael S. TsirkinQEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
4016b4c305cSPaolo BonziniQEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/include"
4025bc62e01SGerd Hoffmannif test "$debug_info" = "yes"; then
4035bc62e01SGerd Hoffmann    CFLAGS="-g $CFLAGS"
404be17dc90SMichael S. Tsirkin    LDFLAGS="-g $LDFLAGS"
4055bc62e01SGerd Hoffmannfi
406be17dc90SMichael S. Tsirkin
407ca4deeb1SPaolo Bonzini# make source path absolute
40889138857SStefan Weilsource_path=$(cd "$source_path"; pwd)
409ca4deeb1SPaolo Bonzini
410cab00a5aSMichael S. Tsirkin# running configure in the source tree?
411cab00a5aSMichael S. Tsirkin# we know that's the case if configure is there.
412cab00a5aSMichael S. Tsirkinif test -f "./configure"; then
413cab00a5aSMichael S. Tsirkin    pwd_is_source_path="y"
414cab00a5aSMichael S. Tsirkinelse
415cab00a5aSMichael S. Tsirkin    pwd_is_source_path="n"
416cab00a5aSMichael S. Tsirkinfi
417cab00a5aSMichael S. Tsirkin
418ac0df51dSaliguoricheck_define() {
419ac0df51dSaliguoricat > $TMPC <<EOF
420ac0df51dSaliguori#if !defined($1)
421fd786e1aSPeter Maydell#error $1 not defined
422ac0df51dSaliguori#endif
423ac0df51dSaliguoriint main(void) { return 0; }
424ac0df51dSaliguoriEOF
42552166aa0SJuan Quintela  compile_object
426ac0df51dSaliguori}
427ac0df51dSaliguori
428307119e7SGerd Hoffmanncheck_include() {
429307119e7SGerd Hoffmanncat > $TMPC <<EOF
430307119e7SGerd Hoffmann#include <$1>
431307119e7SGerd Hoffmannint main(void) { return 0; }
432307119e7SGerd HoffmannEOF
433307119e7SGerd Hoffmann  compile_object
434307119e7SGerd Hoffmann}
435307119e7SGerd Hoffmann
43693b25869SJohn Snowwrite_c_skeleton() {
43793b25869SJohn Snow    cat > $TMPC <<EOF
43893b25869SJohn Snowint main(void) { return 0; }
43993b25869SJohn SnowEOF
44093b25869SJohn Snow}
44193b25869SJohn Snow
442bbea4050SPeter Maydellif check_define __linux__ ; then
443bbea4050SPeter Maydell  targetos="Linux"
444bbea4050SPeter Maydellelif check_define _WIN32 ; then
445bbea4050SPeter Maydell  targetos='MINGW32'
446bbea4050SPeter Maydellelif check_define __OpenBSD__ ; then
447bbea4050SPeter Maydell  targetos='OpenBSD'
448bbea4050SPeter Maydellelif check_define __sun__ ; then
449bbea4050SPeter Maydell  targetos='SunOS'
450bbea4050SPeter Maydellelif check_define __HAIKU__ ; then
451bbea4050SPeter Maydell  targetos='Haiku'
452bbea4050SPeter Maydellelse
45389138857SStefan Weil  targetos=$(uname -s)
454bbea4050SPeter Maydellfi
455bbea4050SPeter Maydell
456bbea4050SPeter Maydell# Some host OSes need non-standard checks for which CPU to use.
457bbea4050SPeter Maydell# Note that these checks are broken for cross-compilation: if you're
458bbea4050SPeter Maydell# cross-compiling to one of these OSes then you'll need to specify
459bbea4050SPeter Maydell# the correct CPU with the --cpu option.
460bbea4050SPeter Maydellcase $targetos in
461bbea4050SPeter MaydellDarwin)
462bbea4050SPeter Maydell  # on Leopard most of the system is 32-bit, so we have to ask the kernel if we can
463bbea4050SPeter Maydell  # run 64-bit userspace code.
464bbea4050SPeter Maydell  # If the user didn't specify a CPU explicitly and the kernel says this is
465bbea4050SPeter Maydell  # 64 bit hw, then assume x86_64. Otherwise fall through to the usual detection code.
466bbea4050SPeter Maydell  if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
467bbea4050SPeter Maydell    cpu="x86_64"
468bbea4050SPeter Maydell  fi
469bbea4050SPeter Maydell  ;;
470bbea4050SPeter MaydellSunOS)
47189138857SStefan Weil  # $(uname -m) returns i86pc even on an x86_64 box, so default based on isainfo
472bbea4050SPeter Maydell  if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
473bbea4050SPeter Maydell    cpu="x86_64"
474bbea4050SPeter Maydell  fi
475bbea4050SPeter Maydellesac
476bbea4050SPeter Maydell
4772ff6b91eSJuan Quintelaif test ! -z "$cpu" ; then
4782ff6b91eSJuan Quintela  # command line argument
4792ff6b91eSJuan Quintela  :
4802ff6b91eSJuan Quintelaelif check_define __i386__ ; then
481ac0df51dSaliguori  cpu="i386"
482ac0df51dSaliguorielif check_define __x86_64__ ; then
483c72b26ecSRichard Henderson  if check_define __ILP32__ ; then
484c72b26ecSRichard Henderson    cpu="x32"
485c72b26ecSRichard Henderson  else
486ac0df51dSaliguori    cpu="x86_64"
487c72b26ecSRichard Henderson  fi
4883aa9bd6cSblueswir1elif check_define __sparc__ ; then
4893aa9bd6cSblueswir1  if check_define __arch64__ ; then
4903aa9bd6cSblueswir1    cpu="sparc64"
4913aa9bd6cSblueswir1  else
4923aa9bd6cSblueswir1    cpu="sparc"
4933aa9bd6cSblueswir1  fi
494fdf7ed96Smalcelif check_define _ARCH_PPC ; then
495fdf7ed96Smalc  if check_define _ARCH_PPC64 ; then
496fdf7ed96Smalc    cpu="ppc64"
497ac0df51dSaliguori  else
498fdf7ed96Smalc    cpu="ppc"
499fdf7ed96Smalc  fi
500afa05235SAurelien Jarnoelif check_define __mips__ ; then
501afa05235SAurelien Jarno  cpu="mips"
502477ba620SAurelien Jarnoelif check_define __ia64__ ; then
503477ba620SAurelien Jarno  cpu="ia64"
504d66ed0eaSAurelien Jarnoelif check_define __s390__ ; then
505d66ed0eaSAurelien Jarno  if check_define __s390x__ ; then
506d66ed0eaSAurelien Jarno    cpu="s390x"
507d66ed0eaSAurelien Jarno  else
508d66ed0eaSAurelien Jarno    cpu="s390"
509d66ed0eaSAurelien Jarno  fi
51021d89f84SPeter Maydellelif check_define __arm__ ; then
51121d89f84SPeter Maydell  cpu="arm"
5121f080313SClaudio Fontanaelif check_define __aarch64__ ; then
5131f080313SClaudio Fontana  cpu="aarch64"
514f28ffed5SBradelif check_define __hppa__ ; then
515f28ffed5SBrad  cpu="hppa"
516fdf7ed96Smalcelse
51789138857SStefan Weil  cpu=$(uname -m)
518ac0df51dSaliguorifi
519ac0df51dSaliguori
520359bc95dSPeter MaydellARCH=
521359bc95dSPeter Maydell# Normalise host CPU name and set ARCH.
522359bc95dSPeter Maydell# Note that this case should only have supported host CPUs, not guests.
5237d13299dSbellardcase "$cpu" in
524c72b26ecSRichard Henderson  ia64|ppc|ppc64|s390|s390x|sparc64|x32)
525ea8f20f8SJuan Quintela    cpu="$cpu"
526ea8f20f8SJuan Quintela  ;;
5277d13299dSbellard  i386|i486|i586|i686|i86pc|BePC)
52897a847bcSbellard    cpu="i386"
5297d13299dSbellard  ;;
530aaa5fa14Saurel32  x86_64|amd64)
531aaa5fa14Saurel32    cpu="x86_64"
532aaa5fa14Saurel32  ;;
53321d89f84SPeter Maydell  armv*b|armv*l|arm)
53421d89f84SPeter Maydell    cpu="arm"
5357d13299dSbellard  ;;
5361f080313SClaudio Fontana  aarch64)
5371f080313SClaudio Fontana    cpu="aarch64"
5381f080313SClaudio Fontana  ;;
539afa05235SAurelien Jarno  mips*)
540afa05235SAurelien Jarno    cpu="mips"
541afa05235SAurelien Jarno  ;;
5423142255cSblueswir1  sparc|sun4[cdmuv])
543ae228531Sbellard    cpu="sparc"
544ae228531Sbellard  ;;
5457d13299dSbellard  *)
546359bc95dSPeter Maydell    # This will result in either an error or falling back to TCI later
547359bc95dSPeter Maydell    ARCH=unknown
5487d13299dSbellard  ;;
5497d13299dSbellardesac
550359bc95dSPeter Maydellif test -z "$ARCH"; then
551359bc95dSPeter Maydell  ARCH="$cpu"
552359bc95dSPeter Maydellfi
553e2d52ad3SJuan Quintela
5547d13299dSbellard# OS specific
5550dbfc675SJuan Quintela
556adfc3e91SStacey Son# host *BSD for user mode
557adfc3e91SStacey SonHOST_VARIANT_DIR=""
558adfc3e91SStacey Son
5597d13299dSbellardcase $targetos in
560c326e0afSbellardCYGWIN*)
561c326e0afSbellard  mingw32="yes"
562a558ee17SJuan Quintela  QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
5633cec7cc2SKővágó, Zoltán  audio_possible_drivers="sdl"
5643cec7cc2SKővágó, Zoltán  audio_drv_list="sdl"
565c326e0afSbellard;;
56667b915a5SbellardMINGW32*)
56767b915a5Sbellard  mingw32="yes"
5683cec7cc2SKővágó, Zoltán  audio_possible_drivers="dsound sdl"
569307119e7SGerd Hoffmann  if check_include dsound.h; then
5703cec7cc2SKővágó, Zoltán    audio_drv_list="dsound"
571307119e7SGerd Hoffmann  else
572307119e7SGerd Hoffmann    audio_drv_list=""
573307119e7SGerd Hoffmann  fi
57467b915a5Sbellard;;
5755c40d2bdSthsGNU/kFreeBSD)
576a167ba50SAurelien Jarno  bsd="yes"
5770c58ac1cSmalc  audio_drv_list="oss"
5780bac1111SKővágó, Zoltán  audio_possible_drivers="oss sdl pa"
5795c40d2bdSths;;
5807d3505c5SbellardFreeBSD)
5817d3505c5Sbellard  bsd="yes"
5820db4a067SPaolo Bonzini  make="${MAKE-gmake}"
5830c58ac1cSmalc  audio_drv_list="oss"
5840bac1111SKővágó, Zoltán  audio_possible_drivers="oss sdl pa"
585f01576f1SJuergen Lock  # needed for kinfo_getvmmap(3) in libutil.h
586f01576f1SJuergen Lock  LIBS="-lutil $LIBS"
58758952137SVincenzo Maffione  netmap=""  # enable netmap autodetect
588adfc3e91SStacey Son  HOST_VARIANT_DIR="freebsd"
5897d3505c5Sbellard;;
590c5e97233Sblueswir1DragonFly)
591c5e97233Sblueswir1  bsd="yes"
5920db4a067SPaolo Bonzini  make="${MAKE-gmake}"
593c5e97233Sblueswir1  audio_drv_list="oss"
5940bac1111SKővágó, Zoltán  audio_possible_drivers="oss sdl pa"
595adfc3e91SStacey Son  HOST_VARIANT_DIR="dragonfly"
596c5e97233Sblueswir1;;
5977d3505c5SbellardNetBSD)
5987d3505c5Sbellard  bsd="yes"
5990db4a067SPaolo Bonzini  make="${MAKE-gmake}"
6000c58ac1cSmalc  audio_drv_list="oss"
6010bac1111SKővágó, Zoltán  audio_possible_drivers="oss sdl"
6028ef92a88Sblueswir1  oss_lib="-lossaudio"
603adfc3e91SStacey Son  HOST_VARIANT_DIR="netbsd"
6047d3505c5Sbellard;;
6057d3505c5SbellardOpenBSD)
6067d3505c5Sbellard  bsd="yes"
6070db4a067SPaolo Bonzini  make="${MAKE-gmake}"
6084f6ab397SBrad Smith  audio_drv_list="sdl"
6090bac1111SKővágó, Zoltán  audio_possible_drivers="sdl"
610adfc3e91SStacey Son  HOST_VARIANT_DIR="openbsd"
6117d3505c5Sbellard;;
61283fb7adfSbellardDarwin)
61383fb7adfSbellard  bsd="yes"
61483fb7adfSbellard  darwin="yes"
61517969268SFam Zheng  LDFLAGS_SHARED="-bundle -undefined dynamic_lookup"
6161b0f9cc2Saliguori  if [ "$cpu" = "x86_64" ] ; then
617a558ee17SJuan Quintela    QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
6180c439cbfSJuan Quintela    LDFLAGS="-arch x86_64 $LDFLAGS"
6191b0f9cc2Saliguori  fi
620fd677642Sths  cocoa="yes"
6210c58ac1cSmalc  audio_drv_list="coreaudio"
62214382605SKővágó, Zoltán  audio_possible_drivers="coreaudio sdl"
6230c439cbfSJuan Quintela  LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
6247973f21cSJuan Quintela  libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
625a0b7cf6bSPeter Maydell  # Disable attempts to use ObjectiveC features in os/object.h since they
626a0b7cf6bSPeter Maydell  # won't work when we're compiling with gcc as a C compiler.
627a0b7cf6bSPeter Maydell  QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS"
628adfc3e91SStacey Son  HOST_VARIANT_DIR="darwin"
62983fb7adfSbellard;;
630ec530c81SbellardSunOS)
631ec530c81Sbellard  solaris="yes"
6320db4a067SPaolo Bonzini  make="${MAKE-gmake}"
6330db4a067SPaolo Bonzini  install="${INSTALL-ginstall}"
634fa58948dSBlue Swirl  ld="gld"
635e2d8830eSBrad  smbd="${SMBD-/usr/sfw/sbin/smbd}"
6360475a5caSths  needs_libsunmath="no"
63789138857SStefan Weil  solarisrev=$(uname -r | cut -f2 -d.)
638c2b84fabSths  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
6390475a5caSths    if test "$solarisrev" -le 9 ; then
6400475a5caSths      if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
6410475a5caSths        needs_libsunmath="yes"
642f14bfdf9SJuan Quintela        QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS"
643f14bfdf9SJuan Quintela        LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS"
644f14bfdf9SJuan Quintela        LIBS="-lsunmath $LIBS"
6450475a5caSths      else
64676ad07a4SPeter Maydell        error_exit "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without" \
64776ad07a4SPeter Maydell            "libsunmath from the Sun Studio compilers tools, due to a lack of" \
64876ad07a4SPeter Maydell            "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86" \
64976ad07a4SPeter Maydell            "Studio 11 can be downloaded from www.sun.com."
6500475a5caSths      fi
6510475a5caSths    fi
65286b2bd93Sths  fi
6536b4d2ba1Sths  if test -f /usr/include/sys/soundcard.h ; then
6540c58ac1cSmalc    audio_drv_list="oss"
6556b4d2ba1Sths  fi
656c2de5c91Smalc  audio_possible_drivers="oss sdl"
657d741429aSBlue Swirl# needed for CMSG_ macros in sys/socket.h
658d741429aSBlue Swirl  QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
659d741429aSBlue Swirl# needed for TIOCWIN* defines in termios.h
660d741429aSBlue Swirl  QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
661a558ee17SJuan Quintela  QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
662560d375fSAndreas Färber  solarisnetlibs="-lsocket -lnsl -lresolv"
663560d375fSAndreas Färber  LIBS="$solarisnetlibs $LIBS"
664560d375fSAndreas Färber  libs_qga="$solarisnetlibs $libs_qga"
665ec530c81Sbellard;;
666b29fe3edSmalcAIX)
667b29fe3edSmalc  aix="yes"
6680db4a067SPaolo Bonzini  make="${MAKE-gmake}"
669b29fe3edSmalc;;
670179cf400SAndreas FärberHaiku)
671179cf400SAndreas Färber  haiku="yes"
672179cf400SAndreas Färber  QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
673179cf400SAndreas Färber  LIBS="-lposix_error_mapper -lnetwork $LIBS"
674179cf400SAndreas Färber;;
675fb065187Sbellard*)
6760c58ac1cSmalc  audio_drv_list="oss"
6770bac1111SKővágó, Zoltán  audio_possible_drivers="oss alsa sdl pa"
6785327cf48Sbellard  linux="yes"
679831b7825Sths  linux_user="yes"
680af2be207SJan Kiszka  kvm="yes"
681af2be207SJan Kiszka  vhost_net="yes"
6825e9be92dSNicholas Bellinger  vhost_scsi="yes"
683fc0b9b0eSStefan Hajnoczi  vhost_vsock="yes"
684a585140dSAlexey Kardashevskiy  QEMU_INCLUDES="-I\$(SRC_PATH)/linux-headers -I$(pwd)/linux-headers $QEMU_INCLUDES"
685fb065187Sbellard;;
6867d13299dSbellardesac
6877d13299dSbellard
6887d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
689b1a550a0Spbrook  if [ "$darwin" != "yes" ] ; then
69084778508Sblueswir1    bsd_user="yes"
6917d3505c5Sbellard  fi
69208de3949SAndreas Färberfi
6937d3505c5Sbellard
6940db4a067SPaolo Bonzini: ${make=${MAKE-make}}
6950db4a067SPaolo Bonzini: ${install=${INSTALL-install}}
69652510f8bSStefan Weil: ${python=${PYTHON-python}}
697e2d8830eSBrad: ${smbd=${SMBD-/usr/sbin/smbd}}
6980db4a067SPaolo Bonzini
6993c4a4d0dSPeter Maydell# Default objcc to clang if available, otherwise use CC
7003c4a4d0dSPeter Maydellif has clang; then
7013c4a4d0dSPeter Maydell  objcc=clang
7023c4a4d0dSPeter Maydellelse
7033c4a4d0dSPeter Maydell  objcc="$cc"
7043c4a4d0dSPeter Maydellfi
7053c4a4d0dSPeter Maydell
7063457a3f8SJuan Quintelaif test "$mingw32" = "yes" ; then
7073457a3f8SJuan Quintela  EXESUF=".exe"
70817969268SFam Zheng  DSOSUF=".dll"
709a558ee17SJuan Quintela  QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
710e94a7936SStefan Weil  # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
711e94a7936SStefan Weil  QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
71278e9d4adSStefan Weil  # MinGW needs -mthreads for TLS and macro _MT.
71378e9d4adSStefan Weil  QEMU_CFLAGS="-mthreads $QEMU_CFLAGS"
714f7cf5d5bSStefan Weil  LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
71593b25869SJohn Snow  write_c_skeleton;
716f7cf5d5bSStefan Weil  if compile_prog "" "-liberty" ; then
717f7cf5d5bSStefan Weil    LIBS="-liberty $LIBS"
718f7cf5d5bSStefan Weil  fi
719c5ec15eaSStefan Weil  prefix="c:/Program Files/QEMU"
720683035deSPaolo Bonzini  mandir="\${prefix}"
721528ae5b8SEduardo Habkost  datadir="\${prefix}"
722850da188SEduardo Habkost  qemu_docdir="\${prefix}"
723683035deSPaolo Bonzini  bindir="\${prefix}"
724683035deSPaolo Bonzini  sysconfdir="\${prefix}"
7255a699bbbSLaszlo Ersek  local_statedir=
726683035deSPaolo Bonzini  confsuffix=""
727259434b8SMarc-André Lureau  libs_qga="-lws2_32 -lwinmm -lpowrprof -liphlpapi -lnetapi32 $libs_qga"
7283457a3f8SJuan Quintelafi
7293457a3f8SJuan Quintela
730487fefdbSAnthony Liguoriwerror=""
73185aa5189Sbellard
7327d13299dSbellardfor opt do
73389138857SStefan Weil  optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
7347d13299dSbellard  case "$opt" in
7352efc3265Sbellard  --help|-h) show_help=yes
7362efc3265Sbellard  ;;
73799123e13SMike Frysinger  --version|-V) exec cat $source_path/VERSION
73899123e13SMike Frysinger  ;;
739b1a550a0Spbrook  --prefix=*) prefix="$optarg"
7407d13299dSbellard  ;;
741b1a550a0Spbrook  --interp-prefix=*) interp_prefix="$optarg"
74232ce6337Sbellard  ;;
743ca4deeb1SPaolo Bonzini  --source-path=*)
7447d13299dSbellard  ;;
745ac0df51dSaliguori  --cross-prefix=*)
7467d13299dSbellard  ;;
747ac0df51dSaliguori  --cc=*)
7487d13299dSbellard  ;;
749b1a550a0Spbrook  --host-cc=*) host_cc="$optarg"
75083469015Sbellard  ;;
75183f73fceSTomoki Sekiyama  --cxx=*)
75283f73fceSTomoki Sekiyama  ;;
753e007dbecSMichael S. Tsirkin  --iasl=*) iasl="$optarg"
754e007dbecSMichael S. Tsirkin  ;;
7553c4a4d0dSPeter Maydell  --objcc=*) objcc="$optarg"
7563c4a4d0dSPeter Maydell  ;;
757b1a550a0Spbrook  --make=*) make="$optarg"
7587d13299dSbellard  ;;
7596a882643Spbrook  --install=*) install="$optarg"
7606a882643Spbrook  ;;
761c886edfbSBlue Swirl  --python=*) python="$optarg"
762c886edfbSBlue Swirl  ;;
7631d728c39SBlue Swirl  --gcov=*) gcov_tool="$optarg"
7641d728c39SBlue Swirl  ;;
765e2d8830eSBrad  --smbd=*) smbd="$optarg"
766e2d8830eSBrad  ;;
767e2a2ed06SJuan Quintela  --extra-cflags=*)
7687d13299dSbellard  ;;
769e2a2ed06SJuan Quintela  --extra-ldflags=*)
7707d13299dSbellard  ;;
7715bc62e01SGerd Hoffmann  --enable-debug-info)
7725bc62e01SGerd Hoffmann  ;;
7735bc62e01SGerd Hoffmann  --disable-debug-info)
7745bc62e01SGerd Hoffmann  ;;
77517969268SFam Zheng  --enable-modules)
77617969268SFam Zheng      modules="yes"
77717969268SFam Zheng  ;;
7783aa88b31SStefan Hajnoczi  --disable-modules)
7793aa88b31SStefan Hajnoczi      modules="no"
7803aa88b31SStefan Hajnoczi  ;;
7812ff6b91eSJuan Quintela  --cpu=*)
7827d13299dSbellard  ;;
783b1a550a0Spbrook  --target-list=*) target_list="$optarg"
784de83cd02Sbellard  ;;
7855b808275SLluís Vilanova  --enable-trace-backends=*) trace_backends="$optarg"
7865b808275SLluís Vilanova  ;;
7875b808275SLluís Vilanova  # XXX: backwards compatibility
7885b808275SLluís Vilanova  --enable-trace-backend=*) trace_backends="$optarg"
78994a420b1SStefan Hajnoczi  ;;
79074242e0fSPaolo Bonzini  --with-trace-file=*) trace_file="$optarg"
7919410b56cSPrerna Saxena  ;;
7927d13299dSbellard  --enable-gprof) gprof="yes"
7937d13299dSbellard  ;;
7941d728c39SBlue Swirl  --enable-gcov) gcov="yes"
7951d728c39SBlue Swirl  ;;
79679427693SLoïc Minier  --static)
79779427693SLoïc Minier    static="yes"
79879427693SLoïc Minier    LDFLAGS="-static $LDFLAGS"
79917884d7bSSergei Trofimovich    QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS"
80043ce4dfeSbellard  ;;
8010b24e75fSPaolo Bonzini  --mandir=*) mandir="$optarg"
8020b24e75fSPaolo Bonzini  ;;
8030b24e75fSPaolo Bonzini  --bindir=*) bindir="$optarg"
8040b24e75fSPaolo Bonzini  ;;
8053aa5d2beSAlon Levy  --libdir=*) libdir="$optarg"
8063aa5d2beSAlon Levy  ;;
8078bf188aaSMichael Tokarev  --libexecdir=*) libexecdir="$optarg"
8088bf188aaSMichael Tokarev  ;;
8090f94d6daSAlon Levy  --includedir=*) includedir="$optarg"
8100f94d6daSAlon Levy  ;;
811528ae5b8SEduardo Habkost  --datadir=*) datadir="$optarg"
8120b24e75fSPaolo Bonzini  ;;
813023d3d67SEduardo Habkost  --with-confsuffix=*) confsuffix="$optarg"
814023d3d67SEduardo Habkost  ;;
815850da188SEduardo Habkost  --docdir=*) qemu_docdir="$optarg"
8160b24e75fSPaolo Bonzini  ;;
817ca2fb938SAndre Przywara  --sysconfdir=*) sysconfdir="$optarg"
81807381cc1SAnthony Liguori  ;;
819785c23aeSLuiz Capitulino  --localstatedir=*) local_statedir="$optarg"
820785c23aeSLuiz Capitulino  ;;
821785c23aeSLuiz Capitulino  --sbindir=*|--sharedstatedir=*|\
822023ddd74SMax Filippov  --oldincludedir=*|--datarootdir=*|--infodir=*|--localedir=*|\
823023ddd74SMax Filippov  --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*)
824023ddd74SMax Filippov    # These switches are silently ignored, for compatibility with
825023ddd74SMax Filippov    # autoconf-generated configure scripts. This allows QEMU's
826023ddd74SMax Filippov    # configure to be used by RPM and similar macros that set
827023ddd74SMax Filippov    # lots of directory switches by default.
828023ddd74SMax Filippov  ;;
829e2134eb9SGerd Hoffmann  --with-system-pixman) pixman="system"
830e2134eb9SGerd Hoffmann  ;;
831e2134eb9SGerd Hoffmann  --without-system-pixman) pixman="internal"
832e2134eb9SGerd Hoffmann  ;;
83374880fe2SRobert Schiele  --without-pixman) pixman="none"
83474880fe2SRobert Schiele  ;;
83597a847bcSbellard  --disable-sdl) sdl="no"
83697a847bcSbellard  ;;
837c4198157SJuan Quintela  --enable-sdl) sdl="yes"
838c4198157SJuan Quintela  ;;
83947c03744SDave Airlie  --with-sdlabi=*) sdlabi="$optarg"
84047c03744SDave Airlie  ;;
8413556c233SPaolo Bonzini  --disable-qom-cast-debug) qom_cast_debug="no"
8423556c233SPaolo Bonzini  ;;
8433556c233SPaolo Bonzini  --enable-qom-cast-debug) qom_cast_debug="yes"
8443556c233SPaolo Bonzini  ;;
845983eef5aSMeador Inge  --disable-virtfs) virtfs="no"
846983eef5aSMeador Inge  ;;
847983eef5aSMeador Inge  --enable-virtfs) virtfs="yes"
848983eef5aSMeador Inge  ;;
849821601eaSJes Sorensen  --disable-vnc) vnc="no"
850821601eaSJes Sorensen  ;;
851821601eaSJes Sorensen  --enable-vnc) vnc="yes"
852821601eaSJes Sorensen  ;;
8532f6a1ab0Sblueswir1  --oss-lib=*) oss_lib="$optarg"
8542f6a1ab0Sblueswir1  ;;
8550c58ac1cSmalc  --audio-drv-list=*) audio_drv_list="$optarg"
8560c58ac1cSmalc  ;;
85789138857SStefan Weil  --block-drv-rw-whitelist=*|--block-drv-whitelist=*) block_drv_rw_whitelist=$(echo "$optarg" | sed -e 's/,/ /g')
858b64ec4e4SFam Zheng  ;;
85989138857SStefan Weil  --block-drv-ro-whitelist=*) block_drv_ro_whitelist=$(echo "$optarg" | sed -e 's/,/ /g')
860eb852011SMarkus Armbruster  ;;
861f8393946Saurel32  --enable-debug-tcg) debug_tcg="yes"
862f8393946Saurel32  ;;
863f8393946Saurel32  --disable-debug-tcg) debug_tcg="no"
864f8393946Saurel32  ;;
865f3d08ee6SPaul Brook  --enable-debug)
866f3d08ee6SPaul Brook      # Enable debugging options that aren't excessively noisy
867f3d08ee6SPaul Brook      debug_tcg="yes"
868f3d08ee6SPaul Brook      debug="yes"
869f3d08ee6SPaul Brook      strip_opt="no"
870b553a042SJohn Snow      fortify_source="no"
871f3d08ee6SPaul Brook  ;;
87203b4fe7dSaliguori  --enable-sparse) sparse="yes"
87303b4fe7dSaliguori  ;;
87403b4fe7dSaliguori  --disable-sparse) sparse="no"
87503b4fe7dSaliguori  ;;
8761625af87Saliguori  --disable-strip) strip_opt="no"
8771625af87Saliguori  ;;
8782f9606b3Saliguori  --disable-vnc-sasl) vnc_sasl="no"
8792f9606b3Saliguori  ;;
880ea784e3bSJuan Quintela  --enable-vnc-sasl) vnc_sasl="yes"
881ea784e3bSJuan Quintela  ;;
8822f6f5c7aSCorentin Chary  --disable-vnc-jpeg) vnc_jpeg="no"
8832f6f5c7aSCorentin Chary  ;;
8842f6f5c7aSCorentin Chary  --enable-vnc-jpeg) vnc_jpeg="yes"
8852f6f5c7aSCorentin Chary  ;;
886efe556adSCorentin Chary  --disable-vnc-png) vnc_png="no"
887efe556adSCorentin Chary  ;;
888efe556adSCorentin Chary  --enable-vnc-png) vnc_png="yes"
889efe556adSCorentin Chary  ;;
890443f1376Sbellard  --disable-slirp) slirp="no"
891c20709aaSbellard  ;;
892ee682d27SStefan Weil  --disable-uuid) uuid="no"
893ee682d27SStefan Weil  ;;
894ee682d27SStefan Weil  --enable-uuid) uuid="yes"
895ee682d27SStefan Weil  ;;
896e0e6c8c0Saliguori  --disable-vde) vde="no"
8978a16d273Sths  ;;
898dfb278bdSJuan Quintela  --enable-vde) vde="yes"
899dfb278bdSJuan Quintela  ;;
90058952137SVincenzo Maffione  --disable-netmap) netmap="no"
90158952137SVincenzo Maffione  ;;
90258952137SVincenzo Maffione  --enable-netmap) netmap="yes"
90358952137SVincenzo Maffione  ;;
904e37630caSaliguori  --disable-xen) xen="no"
905e37630caSaliguori  ;;
906fc321b4bSJuan Quintela  --enable-xen) xen="yes"
907fc321b4bSJuan Quintela  ;;
908eb6fda0fSAnthony PERARD  --disable-xen-pci-passthrough) xen_pci_passthrough="no"
909eb6fda0fSAnthony PERARD  ;;
910eb6fda0fSAnthony PERARD  --enable-xen-pci-passthrough) xen_pci_passthrough="yes"
911eb6fda0fSAnthony PERARD  ;;
91264a7ad6fSIan Campbell  --disable-xen-pv-domain-build) xen_pv_domain_build="no"
91364a7ad6fSIan Campbell  ;;
91464a7ad6fSIan Campbell  --enable-xen-pv-domain-build) xen_pv_domain_build="yes"
91564a7ad6fSIan Campbell  ;;
9162e4d9fb1Saurel32  --disable-brlapi) brlapi="no"
9172e4d9fb1Saurel32  ;;
9184ffcedb6SJuan Quintela  --enable-brlapi) brlapi="yes"
9194ffcedb6SJuan Quintela  ;;
920fb599c9aSbalrog  --disable-bluez) bluez="no"
921fb599c9aSbalrog  ;;
922a20a6f46SJuan Quintela  --enable-bluez) bluez="yes"
923a20a6f46SJuan Quintela  ;;
9247ba1e619Saliguori  --disable-kvm) kvm="no"
9257ba1e619Saliguori  ;;
926b31a0277SJuan Quintela  --enable-kvm) kvm="yes"
927b31a0277SJuan Quintela  ;;
9289195b2c2SStefan Weil  --disable-tcg-interpreter) tcg_interpreter="no"
9299195b2c2SStefan Weil  ;;
9309195b2c2SStefan Weil  --enable-tcg-interpreter) tcg_interpreter="yes"
9319195b2c2SStefan Weil  ;;
93247e98658SCorey Bryant  --disable-cap-ng)  cap_ng="no"
93347e98658SCorey Bryant  ;;
93447e98658SCorey Bryant  --enable-cap-ng) cap_ng="yes"
93547e98658SCorey Bryant  ;;
936cd4ec0b4SGerd Hoffmann  --disable-spice) spice="no"
937cd4ec0b4SGerd Hoffmann  ;;
938cd4ec0b4SGerd Hoffmann  --enable-spice) spice="yes"
939cd4ec0b4SGerd Hoffmann  ;;
940c589b249SRonnie Sahlberg  --disable-libiscsi) libiscsi="no"
941c589b249SRonnie Sahlberg  ;;
942c589b249SRonnie Sahlberg  --enable-libiscsi) libiscsi="yes"
943c589b249SRonnie Sahlberg  ;;
9446542aa9cSPeter Lieven  --disable-libnfs) libnfs="no"
9456542aa9cSPeter Lieven  ;;
9466542aa9cSPeter Lieven  --enable-libnfs) libnfs="yes"
9476542aa9cSPeter Lieven  ;;
94805c2a3e7Sbellard  --enable-profiler) profiler="yes"
94905c2a3e7Sbellard  ;;
95014821030SPavel Borzenkov  --disable-cocoa) cocoa="no"
95114821030SPavel Borzenkov  ;;
952c2de5c91Smalc  --enable-cocoa)
953c2de5c91Smalc      cocoa="yes" ;
95489138857SStefan Weil      audio_drv_list="coreaudio $(echo $audio_drv_list | sed s,coreaudio,,g)"
9555b0753e0Sbellard  ;;
956cad25d69Spbrook  --disable-system) softmmu="no"
9570a8e90f4Spbrook  ;;
958cad25d69Spbrook  --enable-system) softmmu="yes"
9590a8e90f4Spbrook  ;;
9600953a80fSZachary Amsden  --disable-user)
9610953a80fSZachary Amsden      linux_user="no" ;
9620953a80fSZachary Amsden      bsd_user="no" ;
9630953a80fSZachary Amsden  ;;
9640953a80fSZachary Amsden  --enable-user) ;;
965831b7825Sths  --disable-linux-user) linux_user="no"
9660a8e90f4Spbrook  ;;
967831b7825Sths  --enable-linux-user) linux_user="yes"
968831b7825Sths  ;;
96984778508Sblueswir1  --disable-bsd-user) bsd_user="no"
97084778508Sblueswir1  ;;
97184778508Sblueswir1  --enable-bsd-user) bsd_user="yes"
97284778508Sblueswir1  ;;
97340d6444eSAvi Kivity  --enable-pie) pie="yes"
97434005a00SKirill A. Shutemov  ;;
97540d6444eSAvi Kivity  --disable-pie) pie="no"
97634005a00SKirill A. Shutemov  ;;
97785aa5189Sbellard  --enable-werror) werror="yes"
97885aa5189Sbellard  ;;
97985aa5189Sbellard  --disable-werror) werror="no"
98085aa5189Sbellard  ;;
98163678e17SSteven Noonan  --enable-stack-protector) stack_protector="yes"
98263678e17SSteven Noonan  ;;
98363678e17SSteven Noonan  --disable-stack-protector) stack_protector="no"
98463678e17SSteven Noonan  ;;
9854d3b6f6eSbalrog  --disable-curses) curses="no"
9864d3b6f6eSbalrog  ;;
987c584a6d0SJuan Quintela  --enable-curses) curses="yes"
988c584a6d0SJuan Quintela  ;;
989769ce76dSAlexander Graf  --disable-curl) curl="no"
990769ce76dSAlexander Graf  ;;
991788c8196SJuan Quintela  --enable-curl) curl="yes"
992788c8196SJuan Quintela  ;;
9932df87df7SJuan Quintela  --disable-fdt) fdt="no"
9942df87df7SJuan Quintela  ;;
9952df87df7SJuan Quintela  --enable-fdt) fdt="yes"
9962df87df7SJuan Quintela  ;;
9975c6c3a6cSChristoph Hellwig  --disable-linux-aio) linux_aio="no"
9985c6c3a6cSChristoph Hellwig  ;;
9995c6c3a6cSChristoph Hellwig  --enable-linux-aio) linux_aio="yes"
10005c6c3a6cSChristoph Hellwig  ;;
1001758e8e38SVenkateswararao Jujjuri (JV)  --disable-attr) attr="no"
1002758e8e38SVenkateswararao Jujjuri (JV)  ;;
1003758e8e38SVenkateswararao Jujjuri (JV)  --enable-attr) attr="yes"
1004758e8e38SVenkateswararao Jujjuri (JV)  ;;
100577755340Sths  --disable-blobs) blobs="no"
100677755340Sths  ;;
10074a19f1ecSpbrook  --with-pkgversion=*) pkgversion=" ($optarg)"
10084a19f1ecSpbrook  ;;
1009519175a2SAlex Barcelo  --with-coroutine=*) coroutine="$optarg"
1010519175a2SAlex Barcelo  ;;
101170c60c08SStefan Hajnoczi  --disable-coroutine-pool) coroutine_pool="no"
101270c60c08SStefan Hajnoczi  ;;
101370c60c08SStefan Hajnoczi  --enable-coroutine-pool) coroutine_pool="yes"
101470c60c08SStefan Hajnoczi  ;;
1015a25dba17SJuan Quintela  --disable-docs) docs="no"
101670ec5dc0SAnthony Liguori  ;;
1017a25dba17SJuan Quintela  --enable-docs) docs="yes"
101883a3ab8bSJuan Quintela  ;;
1019d5970055SMichael S. Tsirkin  --disable-vhost-net) vhost_net="no"
1020d5970055SMichael S. Tsirkin  ;;
1021d5970055SMichael S. Tsirkin  --enable-vhost-net) vhost_net="yes"
1022d5970055SMichael S. Tsirkin  ;;
10235e9be92dSNicholas Bellinger  --disable-vhost-scsi) vhost_scsi="no"
10245e9be92dSNicholas Bellinger  ;;
10255e9be92dSNicholas Bellinger  --enable-vhost-scsi) vhost_scsi="yes"
10265e9be92dSNicholas Bellinger  ;;
1027fc0b9b0eSStefan Hajnoczi  --disable-vhost-vsock) vhost_vsock="no"
1028fc0b9b0eSStefan Hajnoczi  ;;
1029fc0b9b0eSStefan Hajnoczi  --enable-vhost-vsock) vhost_vsock="yes"
1030fc0b9b0eSStefan Hajnoczi  ;;
1031da076ffeSGerd Hoffmann  --disable-opengl) opengl="no"
103220ff075bSMichael Walle  ;;
1033da076ffeSGerd Hoffmann  --enable-opengl) opengl="yes"
103420ff075bSMichael Walle  ;;
1035f27aaf4bSChristian Brunner  --disable-rbd) rbd="no"
1036f27aaf4bSChristian Brunner  ;;
1037f27aaf4bSChristian Brunner  --enable-rbd) rbd="yes"
1038f27aaf4bSChristian Brunner  ;;
10398c84cf11SSergei Trofimovich  --disable-xfsctl) xfs="no"
10408c84cf11SSergei Trofimovich  ;;
10418c84cf11SSergei Trofimovich  --enable-xfsctl) xfs="yes"
10428c84cf11SSergei Trofimovich  ;;
10437b02f544SMarc-André Lureau  --disable-smartcard) smartcard="no"
1044111a38b0SRobert Relyea  ;;
10457b02f544SMarc-André Lureau  --enable-smartcard) smartcard="yes"
1046111a38b0SRobert Relyea  ;;
10472b2325ffSGerd Hoffmann  --disable-libusb) libusb="no"
10482b2325ffSGerd Hoffmann  ;;
10492b2325ffSGerd Hoffmann  --enable-libusb) libusb="yes"
10502b2325ffSGerd Hoffmann  ;;
105169354a83SHans de Goede  --disable-usb-redir) usb_redir="no"
105269354a83SHans de Goede  ;;
105369354a83SHans de Goede  --enable-usb-redir) usb_redir="yes"
105469354a83SHans de Goede  ;;
10551ece9905SAlon Levy  --disable-zlib-test) zlib="no"
10561ece9905SAlon Levy  ;;
1057b25c9dffSStefan Weil  --disable-lzo) lzo="no"
1058b25c9dffSStefan Weil  ;;
1059607dacd0Sqiaonuohan  --enable-lzo) lzo="yes"
1060607dacd0Sqiaonuohan  ;;
1061b25c9dffSStefan Weil  --disable-snappy) snappy="no"
1062b25c9dffSStefan Weil  ;;
1063607dacd0Sqiaonuohan  --enable-snappy) snappy="yes"
1064607dacd0Sqiaonuohan  ;;
10656b383c08SPeter Wu  --disable-bzip2) bzip2="no"
10666b383c08SPeter Wu  ;;
10676b383c08SPeter Wu  --enable-bzip2) bzip2="yes"
10686b383c08SPeter Wu  ;;
1069d138cee9SMichael Roth  --enable-guest-agent) guest_agent="yes"
1070d138cee9SMichael Roth  ;;
1071d138cee9SMichael Roth  --disable-guest-agent) guest_agent="no"
1072d138cee9SMichael Roth  ;;
10739dacf32dSYossi Hindin  --enable-guest-agent-msi) guest_agent_msi="yes"
10749dacf32dSYossi Hindin  ;;
10759dacf32dSYossi Hindin  --disable-guest-agent-msi) guest_agent_msi="no"
10769dacf32dSYossi Hindin  ;;
1077d9840e25STomoki Sekiyama  --with-vss-sdk) vss_win32_sdk=""
1078d9840e25STomoki Sekiyama  ;;
1079d9840e25STomoki Sekiyama  --with-vss-sdk=*) vss_win32_sdk="$optarg"
1080d9840e25STomoki Sekiyama  ;;
1081d9840e25STomoki Sekiyama  --without-vss-sdk) vss_win32_sdk="no"
1082d9840e25STomoki Sekiyama  ;;
1083d9840e25STomoki Sekiyama  --with-win-sdk) win_sdk=""
1084d9840e25STomoki Sekiyama  ;;
1085d9840e25STomoki Sekiyama  --with-win-sdk=*) win_sdk="$optarg"
1086d9840e25STomoki Sekiyama  ;;
1087d9840e25STomoki Sekiyama  --without-win-sdk) win_sdk="no"
1088d9840e25STomoki Sekiyama  ;;
10894b1c11fdSDaniel P. Berrange  --enable-tools) want_tools="yes"
10904b1c11fdSDaniel P. Berrange  ;;
10914b1c11fdSDaniel P. Berrange  --disable-tools) want_tools="no"
10924b1c11fdSDaniel P. Berrange  ;;
1093f794573eSEduardo Otubo  --enable-seccomp) seccomp="yes"
1094f794573eSEduardo Otubo  ;;
1095f794573eSEduardo Otubo  --disable-seccomp) seccomp="no"
1096f794573eSEduardo Otubo  ;;
1097eb100396SBharata B Rao  --disable-glusterfs) glusterfs="no"
1098eb100396SBharata B Rao  ;;
1099eb100396SBharata B Rao  --enable-glusterfs) glusterfs="yes"
1100eb100396SBharata B Rao  ;;
1101c9a12e75SChrysostomos Nanakos  --disable-archipelago) archipelago="no"
1102c9a12e75SChrysostomos Nanakos  ;;
1103c9a12e75SChrysostomos Nanakos  --enable-archipelago) archipelago="yes"
1104c9a12e75SChrysostomos Nanakos  ;;
110552b53c04SFam Zheng  --disable-virtio-blk-data-plane|--enable-virtio-blk-data-plane)
110652b53c04SFam Zheng      echo "$0: $opt is obsolete, virtio-blk data-plane is always on" >&2
1107583f6e7bSStefan Hajnoczi  ;;
1108a4ccabcfSAnthony Liguori  --disable-gtk) gtk="no"
1109a4ccabcfSAnthony Liguori  ;;
1110a4ccabcfSAnthony Liguori  --enable-gtk) gtk="yes"
1111a4ccabcfSAnthony Liguori  ;;
1112a1c5e949SDaniel P. Berrange  --tls-priority=*) tls_priority="$optarg"
1113a1c5e949SDaniel P. Berrange  ;;
1114ddbb0d09SDaniel P. Berrange  --disable-gnutls) gnutls="no"
1115ddbb0d09SDaniel P. Berrange  ;;
1116ddbb0d09SDaniel P. Berrange  --enable-gnutls) gnutls="yes"
1117ddbb0d09SDaniel P. Berrange  ;;
111891bfcdb0SDaniel P. Berrange  --disable-nettle) nettle="no"
111991bfcdb0SDaniel P. Berrange  ;;
112091bfcdb0SDaniel P. Berrange  --enable-nettle) nettle="yes"
112191bfcdb0SDaniel P. Berrange  ;;
112291bfcdb0SDaniel P. Berrange  --disable-gcrypt) gcrypt="no"
112391bfcdb0SDaniel P. Berrange  ;;
112491bfcdb0SDaniel P. Berrange  --enable-gcrypt) gcrypt="yes"
112591bfcdb0SDaniel P. Berrange  ;;
11262da776dbSMichael R. Hines  --enable-rdma) rdma="yes"
11272da776dbSMichael R. Hines  ;;
11282da776dbSMichael R. Hines  --disable-rdma) rdma="no"
11292da776dbSMichael R. Hines  ;;
1130528de90aSDaniel P. Berrange  --with-gtkabi=*) gtkabi="$optarg"
1131528de90aSDaniel P. Berrange  ;;
1132bbbf9bfbSStefan Weil  --disable-vte) vte="no"
1133bbbf9bfbSStefan Weil  ;;
1134bbbf9bfbSStefan Weil  --enable-vte) vte="yes"
1135bbbf9bfbSStefan Weil  ;;
11369d9e1521SGerd Hoffmann  --disable-virglrenderer) virglrenderer="no"
11379d9e1521SGerd Hoffmann  ;;
11389d9e1521SGerd Hoffmann  --enable-virglrenderer) virglrenderer="yes"
11399d9e1521SGerd Hoffmann  ;;
1140e91c793cSCole Robinson  --disable-tpm) tpm="no"
1141e91c793cSCole Robinson  ;;
1142ab214c29SStefan Berger  --enable-tpm) tpm="yes"
1143ab214c29SStefan Berger  ;;
11440a12ec87SRichard W.M. Jones  --disable-libssh2) libssh2="no"
11450a12ec87SRichard W.M. Jones  ;;
11460a12ec87SRichard W.M. Jones  --enable-libssh2) libssh2="yes"
11470a12ec87SRichard W.M. Jones  ;;
11484f18b782SJeff Cody  --enable-vhdx) vhdx="yes"
11494f18b782SJeff Cody  ;;
11504f18b782SJeff Cody  --disable-vhdx) vhdx="no"
11514f18b782SJeff Cody  ;;
1152a99d57bbSWanlong Gao  --disable-numa) numa="no"
1153a99d57bbSWanlong Gao  ;;
1154a99d57bbSWanlong Gao  --enable-numa) numa="yes"
1155a99d57bbSWanlong Gao  ;;
11562847b469SFam Zheng  --disable-tcmalloc) tcmalloc="no"
11572847b469SFam Zheng  ;;
11582847b469SFam Zheng  --enable-tcmalloc) tcmalloc="yes"
11592847b469SFam Zheng  ;;
11607b01cb97SAlexandre Derumier  --disable-jemalloc) jemalloc="no"
11617b01cb97SAlexandre Derumier  ;;
11627b01cb97SAlexandre Derumier  --enable-jemalloc) jemalloc="yes"
11637b01cb97SAlexandre Derumier  ;;
1164a6b1d4c0SChanglong Xie  --disable-replication) replication="no"
1165a6b1d4c0SChanglong Xie  ;;
1166a6b1d4c0SChanglong Xie  --enable-replication) replication="yes"
1167a6b1d4c0SChanglong Xie  ;;
11682d2ad6d0SFam Zheng  *)
11692d2ad6d0SFam Zheng      echo "ERROR: unknown option $opt"
11702d2ad6d0SFam Zheng      echo "Try '$0 --help' for more information"
11712d2ad6d0SFam Zheng      exit 1
11727f1559c6Sbalrog  ;;
11737d13299dSbellard  esac
11747d13299dSbellarddone
11757d13299dSbellard
1176f6f0b7d9SStefan Weilif ! has $python; then
1177f6f0b7d9SStefan Weil  error_exit "Python not found. Use --python=/path/to/python"
1178f6f0b7d9SStefan Weilfi
1179f6f0b7d9SStefan Weil
1180f6f0b7d9SStefan Weil# Note that if the Python conditional here evaluates True we will exit
1181f6f0b7d9SStefan Weil# with status 1 which is a shell 'false' value.
1182fec21036SMarkus Armbrusterif ! $python -c 'import sys; sys.exit(sys.version_info < (2,6) or sys.version_info >= (3,))'; then
1183fec21036SMarkus Armbruster  error_exit "Cannot use '$python', Python 2.6 or later is required." \
1184f6f0b7d9SStefan Weil      "Note that Python 3 or later is not yet supported." \
1185f6f0b7d9SStefan Weil      "Use --python=/path/to/python to specify a supported Python."
1186f6f0b7d9SStefan Weilfi
1187f6f0b7d9SStefan Weil
1188fec21036SMarkus Armbruster# Suppress writing compiled files
1189f6f0b7d9SStefan Weilpython="$python -B"
1190f6f0b7d9SStefan Weil
119140293e58Sbellardcase "$cpu" in
1192e3608d66SRichard Henderson    ppc)
1193e3608d66SRichard Henderson           CPU_CFLAGS="-m32"
1194e3608d66SRichard Henderson           LDFLAGS="-m32 $LDFLAGS"
1195e3608d66SRichard Henderson           ;;
1196e3608d66SRichard Henderson    ppc64)
1197e3608d66SRichard Henderson           CPU_CFLAGS="-m64"
1198e3608d66SRichard Henderson           LDFLAGS="-m64 $LDFLAGS"
1199e3608d66SRichard Henderson           ;;
12009b9c37c3SRichard Henderson    sparc)
12010c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
120279f3b12fSPeter Crosthwaite           CPU_CFLAGS="-m32 -mcpu=ultrasparc"
12033142255cSblueswir1           ;;
1204ed968ff1SJuan Quintela    sparc64)
12050c439cbfSJuan Quintela           LDFLAGS="-m64 $LDFLAGS"
120679f3b12fSPeter Crosthwaite           CPU_CFLAGS="-m64 -mcpu=ultrasparc"
12073142255cSblueswir1           ;;
120876d83bdeSths    s390)
1209061cdd81SRichard Henderson           CPU_CFLAGS="-m31"
121028d7cc49SRichard Henderson           LDFLAGS="-m31 $LDFLAGS"
121128d7cc49SRichard Henderson           ;;
121228d7cc49SRichard Henderson    s390x)
1213061cdd81SRichard Henderson           CPU_CFLAGS="-m64"
121428d7cc49SRichard Henderson           LDFLAGS="-m64 $LDFLAGS"
121576d83bdeSths           ;;
121640293e58Sbellard    i386)
121779f3b12fSPeter Crosthwaite           CPU_CFLAGS="-m32"
12180c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
12192b2e59e6SPaolo Bonzini           cc_i386='$(CC) -m32'
122040293e58Sbellard           ;;
122140293e58Sbellard    x86_64)
122279f3b12fSPeter Crosthwaite           CPU_CFLAGS="-m64"
12230c439cbfSJuan Quintela           LDFLAGS="-m64 $LDFLAGS"
12242b2e59e6SPaolo Bonzini           cc_i386='$(CC) -m32'
1225379f6698SPaul Brook           ;;
1226c72b26ecSRichard Henderson    x32)
1227c72b26ecSRichard Henderson           CPU_CFLAGS="-mx32"
1228c72b26ecSRichard Henderson           LDFLAGS="-mx32 $LDFLAGS"
1229c72b26ecSRichard Henderson           cc_i386='$(CC) -m32'
1230c72b26ecSRichard Henderson           ;;
123130163d89SPeter Maydell    # No special flags required for other host CPUs
12323142255cSblueswir1esac
12333142255cSblueswir1
123479f3b12fSPeter CrosthwaiteQEMU_CFLAGS="$CPU_CFLAGS $QEMU_CFLAGS"
123579f3b12fSPeter CrosthwaiteEXTRA_CFLAGS="$CPU_CFLAGS $EXTRA_CFLAGS"
123679f3b12fSPeter Crosthwaite
1237affc88ccSPeter Maydell# For user-mode emulation the host arch has to be one we explicitly
1238affc88ccSPeter Maydell# support, even if we're using TCI.
1239affc88ccSPeter Maydellif [ "$ARCH" = "unknown" ]; then
1240affc88ccSPeter Maydell  bsd_user="no"
1241affc88ccSPeter Maydell  linux_user="no"
1242affc88ccSPeter Maydellfi
1243affc88ccSPeter Maydell
124460e0df25SPeter Maydelldefault_target_list=""
124560e0df25SPeter Maydell
12466e92f823SPeter Maydellmak_wilds=""
12476e92f823SPeter Maydell
124860e0df25SPeter Maydellif [ "$softmmu" = "yes" ]; then
12496e92f823SPeter Maydell    mak_wilds="${mak_wilds} $source_path/default-configs/*-softmmu.mak"
125060e0df25SPeter Maydellfi
125160e0df25SPeter Maydellif [ "$linux_user" = "yes" ]; then
12526e92f823SPeter Maydell    mak_wilds="${mak_wilds} $source_path/default-configs/*-linux-user.mak"
125360e0df25SPeter Maydellfi
125460e0df25SPeter Maydellif [ "$bsd_user" = "yes" ]; then
12556e92f823SPeter Maydell    mak_wilds="${mak_wilds} $source_path/default-configs/*-bsd-user.mak"
125660e0df25SPeter Maydellfi
125760e0df25SPeter Maydell
12586e92f823SPeter Maydellfor config in $mak_wilds; do
12596e92f823SPeter Maydell    default_target_list="${default_target_list} $(basename "$config" .mak)"
12606e92f823SPeter Maydelldone
12616e92f823SPeter Maydell
1262af5db58eSpbrookif test x"$show_help" = x"yes" ; then
1263af5db58eSpbrookcat << EOF
1264af5db58eSpbrook
1265af5db58eSpbrookUsage: configure [options]
1266af5db58eSpbrookOptions: [defaults in brackets after descriptions]
1267af5db58eSpbrook
126808fb77edSStefan WeilStandard options:
126908fb77edSStefan Weil  --help                   print this message
127008fb77edSStefan Weil  --prefix=PREFIX          install in PREFIX [$prefix]
127108fb77edSStefan Weil  --interp-prefix=PREFIX   where to find shared libraries, etc.
127208fb77edSStefan Weil                           use %M for cpu name [$interp_prefix]
127308fb77edSStefan Weil  --target-list=LIST       set target list (default: build everything)
127408fb77edSStefan Weil$(echo Available targets: $default_target_list | \
127508fb77edSStefan Weil  fold -s -w 53 | sed -e 's/^/                           /')
127608fb77edSStefan Weil
127708fb77edSStefan WeilAdvanced options (experts only):
127808fb77edSStefan Weil  --source-path=PATH       path of source code [$source_path]
127908fb77edSStefan Weil  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]
128008fb77edSStefan Weil  --cc=CC                  use C compiler CC [$cc]
128108fb77edSStefan Weil  --iasl=IASL              use ACPI compiler IASL [$iasl]
128208fb77edSStefan Weil  --host-cc=CC             use C compiler CC [$host_cc] for code run at
128308fb77edSStefan Weil                           build time
128408fb77edSStefan Weil  --cxx=CXX                use C++ compiler CXX [$cxx]
128508fb77edSStefan Weil  --objcc=OBJCC            use Objective-C compiler OBJCC [$objcc]
128608fb77edSStefan Weil  --extra-cflags=CFLAGS    append extra C compiler flags QEMU_CFLAGS
128708fb77edSStefan Weil  --extra-ldflags=LDFLAGS  append extra linker flags LDFLAGS
128808fb77edSStefan Weil  --make=MAKE              use specified make [$make]
128908fb77edSStefan Weil  --install=INSTALL        use specified install [$install]
129008fb77edSStefan Weil  --python=PYTHON          use specified python [$python]
129108fb77edSStefan Weil  --smbd=SMBD              use specified smbd [$smbd]
129208fb77edSStefan Weil  --static                 enable static build [$static]
129308fb77edSStefan Weil  --mandir=PATH            install man pages in PATH
129408fb77edSStefan Weil  --datadir=PATH           install firmware in PATH$confsuffix
129508fb77edSStefan Weil  --docdir=PATH            install documentation in PATH$confsuffix
129608fb77edSStefan Weil  --bindir=PATH            install binaries in PATH
129708fb77edSStefan Weil  --libdir=PATH            install libraries in PATH
129808fb77edSStefan Weil  --sysconfdir=PATH        install config in PATH$confsuffix
129908fb77edSStefan Weil  --localstatedir=PATH     install local state in PATH (set at runtime on win32)
1300e26110cfSFam Zheng  --with-confsuffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir [$confsuffix]
130108fb77edSStefan Weil  --enable-debug           enable common debug build options
130208fb77edSStefan Weil  --disable-strip          disable stripping binaries
130308fb77edSStefan Weil  --disable-werror         disable compilation abort on warning
130463678e17SSteven Noonan  --disable-stack-protector disable compiler-provided stack protection
130508fb77edSStefan Weil  --audio-drv-list=LIST    set audio drivers list:
130608fb77edSStefan Weil                           Available drivers: $audio_possible_drivers
130708fb77edSStefan Weil  --block-drv-whitelist=L  Same as --block-drv-rw-whitelist=L
130808fb77edSStefan Weil  --block-drv-rw-whitelist=L
130908fb77edSStefan Weil                           set block driver read-write whitelist
131008fb77edSStefan Weil                           (affects only QEMU, not qemu-img)
131108fb77edSStefan Weil  --block-drv-ro-whitelist=L
131208fb77edSStefan Weil                           set block driver read-only whitelist
131308fb77edSStefan Weil                           (affects only QEMU, not qemu-img)
13145b808275SLluís Vilanova  --enable-trace-backends=B Set trace backend
131508fb77edSStefan Weil                           Available backends: $($python $source_path/scripts/tracetool.py --list-backends)
131608fb77edSStefan Weil  --with-trace-file=NAME   Full PATH,NAME of file to store traces
131708fb77edSStefan Weil                           Default:trace-<pid>
1318c23f23b9SMichael Tokarev  --disable-slirp          disable SLIRP userspace network connectivity
1319c23f23b9SMichael Tokarev  --enable-tcg-interpreter enable TCG with bytecode interpreter (TCI)
1320c23f23b9SMichael Tokarev  --oss-lib                path to OSS library
1321c23f23b9SMichael Tokarev  --cpu=CPU                Build for host CPU [$cpu]
132208fb77edSStefan Weil  --with-coroutine=BACKEND coroutine backend. Supported options:
132308fb77edSStefan Weil                           gthread, ucontext, sigaltstack, windows
132408fb77edSStefan Weil  --enable-gcov            enable test coverage analysis with gcov
132508fb77edSStefan Weil  --gcov=GCOV              use specified gcov [$gcov_tool]
1326c23f23b9SMichael Tokarev  --disable-blobs          disable installing provided firmware blobs
1327c23f23b9SMichael Tokarev  --with-vss-sdk=SDK-path  enable Windows VSS support in QEMU Guest Agent
1328c23f23b9SMichael Tokarev  --with-win-sdk=SDK-path  path to Windows Platform SDK (to build VSS .tlb)
1329a1c5e949SDaniel P. Berrange  --tls-priority           default TLS protocol/cipher priority string
1330c23f23b9SMichael Tokarev
1331c23f23b9SMichael TokarevOptional features, enabled with --enable-FEATURE and
1332c23f23b9SMichael Tokarevdisabled with --disable-FEATURE, default is enabled if available:
1333c23f23b9SMichael Tokarev
1334c23f23b9SMichael Tokarev  system          all system emulation targets
1335c23f23b9SMichael Tokarev  user            supported user emulation targets
1336c23f23b9SMichael Tokarev  linux-user      all linux usermode emulation targets
1337c23f23b9SMichael Tokarev  bsd-user        all BSD usermode emulation targets
1338c23f23b9SMichael Tokarev  docs            build documentation
1339c23f23b9SMichael Tokarev  guest-agent     build the QEMU Guest Agent
1340c23f23b9SMichael Tokarev  guest-agent-msi build guest agent Windows MSI installation package
1341c23f23b9SMichael Tokarev  pie             Position Independent Executables
1342c23f23b9SMichael Tokarev  modules         modules support
1343c23f23b9SMichael Tokarev  debug-tcg       TCG debugging (default is disabled)
1344c23f23b9SMichael Tokarev  debug-info      debugging information
1345c23f23b9SMichael Tokarev  sparse          sparse checker
1346c23f23b9SMichael Tokarev
1347ddbb0d09SDaniel P. Berrange  gnutls          GNUTLS cryptography support
134891bfcdb0SDaniel P. Berrange  nettle          nettle cryptography support
134991bfcdb0SDaniel P. Berrange  gcrypt          libgcrypt cryptography support
1350c23f23b9SMichael Tokarev  sdl             SDL UI
1351c23f23b9SMichael Tokarev  --with-sdlabi     select preferred SDL ABI 1.2 or 2.0
1352c23f23b9SMichael Tokarev  gtk             gtk UI
1353c23f23b9SMichael Tokarev  --with-gtkabi     select preferred GTK ABI 2.0 or 3.0
1354c23f23b9SMichael Tokarev  vte             vte support for the gtk UI
1355c23f23b9SMichael Tokarev  curses          curses UI
1356c23f23b9SMichael Tokarev  vnc             VNC UI support
1357c23f23b9SMichael Tokarev  vnc-sasl        SASL encryption for VNC server
1358c23f23b9SMichael Tokarev  vnc-jpeg        JPEG lossy compression for VNC server
1359c23f23b9SMichael Tokarev  vnc-png         PNG compression for VNC server
1360c23f23b9SMichael Tokarev  cocoa           Cocoa UI (Mac OS X only)
1361c23f23b9SMichael Tokarev  virtfs          VirtFS
1362c23f23b9SMichael Tokarev  xen             xen backend driver support
1363c23f23b9SMichael Tokarev  xen-pci-passthrough
1364c23f23b9SMichael Tokarev  brlapi          BrlAPI (Braile)
1365c23f23b9SMichael Tokarev  curl            curl connectivity
1366c23f23b9SMichael Tokarev  fdt             fdt device tree
1367c23f23b9SMichael Tokarev  bluez           bluez stack connectivity
1368c23f23b9SMichael Tokarev  kvm             KVM acceleration support
1369c23f23b9SMichael Tokarev  rdma            RDMA-based migration support
1370c23f23b9SMichael Tokarev  uuid            uuid support
1371c23f23b9SMichael Tokarev  vde             support for vde network
1372c23f23b9SMichael Tokarev  netmap          support for netmap network
1373c23f23b9SMichael Tokarev  linux-aio       Linux AIO support
1374c23f23b9SMichael Tokarev  cap-ng          libcap-ng support
1375c23f23b9SMichael Tokarev  attr            attr and xattr support
1376c23f23b9SMichael Tokarev  vhost-net       vhost-net acceleration support
1377c23f23b9SMichael Tokarev  spice           spice
1378c23f23b9SMichael Tokarev  rbd             rados block device (rbd)
1379c23f23b9SMichael Tokarev  libiscsi        iscsi support
1380c23f23b9SMichael Tokarev  libnfs          nfs support
13817b02f544SMarc-André Lureau  smartcard       smartcard support (libcacard)
1382c23f23b9SMichael Tokarev  libusb          libusb (for usb passthrough)
1383c23f23b9SMichael Tokarev  usb-redir       usb network redirection support
1384c23f23b9SMichael Tokarev  lzo             support of lzo compression library
1385c23f23b9SMichael Tokarev  snappy          support of snappy compression library
1386c23f23b9SMichael Tokarev  bzip2           support of bzip2 compression library
1387c23f23b9SMichael Tokarev                  (for reading bzip2-compressed dmg images)
1388c23f23b9SMichael Tokarev  seccomp         seccomp support
1389c23f23b9SMichael Tokarev  coroutine-pool  coroutine freelist (better performance)
1390c23f23b9SMichael Tokarev  glusterfs       GlusterFS backend
1391c23f23b9SMichael Tokarev  archipelago     Archipelago backend
1392c23f23b9SMichael Tokarev  tpm             TPM support
1393c23f23b9SMichael Tokarev  libssh2         ssh block device support
1394c23f23b9SMichael Tokarev  vhdx            support for the Microsoft VHDX image format
1395c23f23b9SMichael Tokarev  numa            libnuma support
1396c23f23b9SMichael Tokarev  tcmalloc        tcmalloc support
13977b01cb97SAlexandre Derumier  jemalloc        jemalloc support
1398a6b1d4c0SChanglong Xie  replication     replication support
139908fb77edSStefan Weil
140008fb77edSStefan WeilNOTE: The object files are built at the place where configure is launched
1401af5db58eSpbrookEOF
14022d2ad6d0SFam Zhengexit 0
1403af5db58eSpbrookfi
1404af5db58eSpbrook
1405359bc95dSPeter Maydell# Now we have handled --enable-tcg-interpreter and know we're not just
1406359bc95dSPeter Maydell# printing the help message, bail out if the host CPU isn't supported.
1407359bc95dSPeter Maydellif test "$ARCH" = "unknown"; then
1408359bc95dSPeter Maydell    if test "$tcg_interpreter" = "yes" ; then
1409359bc95dSPeter Maydell        echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)"
1410359bc95dSPeter Maydell    else
141176ad07a4SPeter Maydell        error_exit "Unsupported CPU = $cpu, try --enable-tcg-interpreter"
1412359bc95dSPeter Maydell    fi
1413359bc95dSPeter Maydellfi
1414359bc95dSPeter Maydell
14159c83ffd8SPeter Maydell# Consult white-list to determine whether to enable werror
14169c83ffd8SPeter Maydell# by default.  Only enable by default for git builds
14179c83ffd8SPeter Maydellif test -z "$werror" ; then
14189c83ffd8SPeter Maydell    if test -d "$source_path/.git" -a \
1419e4650c81SThomas Huth        \( "$linux" = "yes" -o "$mingw32" = "yes" \) ; then
14209c83ffd8SPeter Maydell        werror="yes"
14219c83ffd8SPeter Maydell    else
14229c83ffd8SPeter Maydell        werror="no"
14239c83ffd8SPeter Maydell    fi
14249c83ffd8SPeter Maydellfi
14259c83ffd8SPeter Maydell
14268d05095cSPaolo Bonzini# check that the C compiler works.
142793b25869SJohn Snowwrite_c_skeleton;
14288d05095cSPaolo Bonziniif compile_object ; then
14298d05095cSPaolo Bonzini  : C compiler works ok
14308d05095cSPaolo Bonzinielse
143176ad07a4SPeter Maydell    error_exit "\"$cc\" either does not exist or does not work"
14328d05095cSPaolo Bonzinifi
14330ef74c74SPeter Maydellif ! compile_prog ; then
14340ef74c74SPeter Maydell    error_exit "\"$cc\" cannot build an executable (is your linker broken?)"
14350ef74c74SPeter Maydellfi
14368d05095cSPaolo Bonzini
143798b21dcdSPeter Maydell# Check that the C++ compiler exists and works with the C compiler
143898b21dcdSPeter Maydellif has $cxx; then
143998b21dcdSPeter Maydell    cat > $TMPC <<EOF
144098b21dcdSPeter Maydellint c_function(void);
144198b21dcdSPeter Maydellint main(void) { return c_function(); }
144298b21dcdSPeter MaydellEOF
144398b21dcdSPeter Maydell
144498b21dcdSPeter Maydell    compile_object
144598b21dcdSPeter Maydell
14469c83ffd8SPeter Maydell    cat > $TMPCXX <<EOF
144798b21dcdSPeter Maydellextern "C" {
144898b21dcdSPeter Maydell   int c_function(void);
144998b21dcdSPeter Maydell}
145098b21dcdSPeter Maydellint c_function(void) { return 42; }
145198b21dcdSPeter MaydellEOF
145298b21dcdSPeter Maydell
14539c83ffd8SPeter Maydell    update_cxxflags
14549c83ffd8SPeter Maydell
14559c83ffd8SPeter Maydell    if do_cxx $QEMU_CXXFLAGS -o $TMPE $TMPCXX $TMPO $LDFLAGS; then
145698b21dcdSPeter Maydell        # C++ compiler $cxx works ok with C compiler $cc
145798b21dcdSPeter Maydell        :
145898b21dcdSPeter Maydell    else
145998b21dcdSPeter Maydell        echo "C++ compiler $cxx does not work with C compiler $cc"
146098b21dcdSPeter Maydell        echo "Disabling C++ specific optional code"
146198b21dcdSPeter Maydell        cxx=
146298b21dcdSPeter Maydell    fi
146398b21dcdSPeter Maydellelse
146498b21dcdSPeter Maydell    echo "No C++ compiler available; disabling C++ specific optional code"
146598b21dcdSPeter Maydell    cxx=
146698b21dcdSPeter Maydellfi
146798b21dcdSPeter Maydell
14688d05095cSPaolo Bonzinigcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
14698d05095cSPaolo Bonzinigcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
14708d05095cSPaolo Bonzinigcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
1471435405acSPranith Kumargcc_flags="-Wendif-labels -Wno-shift-negative-value $gcc_flags"
1472c1556a81SPeter Maydellgcc_flags="-Wno-initializer-overrides $gcc_flags"
147371429097SPeter Maydellgcc_flags="-Wno-string-plus-int $gcc_flags"
14746ca026cbSPeter Maydell# Note that we do not add -Werror to gcc_flags here, because that would
14756ca026cbSPeter Maydell# enable it for all configure tests. If a configure test failed due
14766ca026cbSPeter Maydell# to -Werror this would just silently disable some features,
14776ca026cbSPeter Maydell# so it's too error prone.
147893b25869SJohn Snow
147993b25869SJohn Snowcc_has_warning_flag() {
148093b25869SJohn Snow    write_c_skeleton;
148193b25869SJohn Snow
1482a1d29d6cSPeter Maydell    # Use the positive sense of the flag when testing for -Wno-wombat
1483a1d29d6cSPeter Maydell    # support (gcc will happily accept the -Wno- form of unknown
1484a1d29d6cSPeter Maydell    # warning options).
148593b25869SJohn Snow    optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')"
148693b25869SJohn Snow    compile_prog "-Werror $optflag" ""
148793b25869SJohn Snow}
148893b25869SJohn Snow
148993b25869SJohn Snowfor flag in $gcc_flags; do
149093b25869SJohn Snow    if cc_has_warning_flag $flag ; then
14918d05095cSPaolo Bonzini        QEMU_CFLAGS="$QEMU_CFLAGS $flag"
14928d05095cSPaolo Bonzini    fi
14938d05095cSPaolo Bonzinidone
14948d05095cSPaolo Bonzini
149563678e17SSteven Noonanif test "$stack_protector" != "no"; then
1496fccd35a0SRodrigo Rebello  cat > $TMPC << EOF
1497fccd35a0SRodrigo Rebelloint main(int argc, char *argv[])
1498fccd35a0SRodrigo Rebello{
1499fccd35a0SRodrigo Rebello    char arr[64], *p = arr, *c = argv[0];
1500fccd35a0SRodrigo Rebello    while (*c) {
1501fccd35a0SRodrigo Rebello        *p++ = *c++;
1502fccd35a0SRodrigo Rebello    }
1503fccd35a0SRodrigo Rebello    return 0;
1504fccd35a0SRodrigo Rebello}
1505fccd35a0SRodrigo RebelloEOF
150663678e17SSteven Noonan  gcc_flags="-fstack-protector-strong -fstack-protector-all"
15073b463a3fSMiroslav Rezanina  sp_on=0
150863678e17SSteven Noonan  for flag in $gcc_flags; do
1509590e5dd9SPeter Maydell    # We need to check both a compile and a link, since some compiler
1510590e5dd9SPeter Maydell    # setups fail only on a .c->.o compile and some only at link time
1511590e5dd9SPeter Maydell    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC &&
1512590e5dd9SPeter Maydell       compile_prog "-Werror $flag" ""; then
151363678e17SSteven Noonan      QEMU_CFLAGS="$QEMU_CFLAGS $flag"
15143b463a3fSMiroslav Rezanina      sp_on=1
151563678e17SSteven Noonan      break
151663678e17SSteven Noonan    fi
151763678e17SSteven Noonan  done
15183b463a3fSMiroslav Rezanina  if test "$stack_protector" = yes; then
15193b463a3fSMiroslav Rezanina    if test $sp_on = 0; then
15203b463a3fSMiroslav Rezanina      error_exit "Stack protector not supported"
15213b463a3fSMiroslav Rezanina    fi
15223b463a3fSMiroslav Rezanina  fi
152337746c5eSMarc-André Lureaufi
152437746c5eSMarc-André Lureau
1525cbdd1999SPaolo Bonzini# Workaround for http://gcc.gnu.org/PR55489.  Happens with -fPIE/-fPIC and
1526cbdd1999SPaolo Bonzini# large functions that use global variables.  The bug is in all releases of
1527cbdd1999SPaolo Bonzini# GCC, but it became particularly acute in 4.6.x and 4.7.x.  It is fixed in
1528cbdd1999SPaolo Bonzini# 4.7.3 and 4.8.0.  We should be able to delete this at the end of 2013.
1529cbdd1999SPaolo Bonzinicat > $TMPC << EOF
1530cbdd1999SPaolo Bonzini#if __GNUC__ == 4 && (__GNUC_MINOR__ == 6 || (__GNUC_MINOR__ == 7 && __GNUC_PATCHLEVEL__ <= 2))
1531cbdd1999SPaolo Bonziniint main(void) { return 0; }
1532cbdd1999SPaolo Bonzini#else
1533cbdd1999SPaolo Bonzini#error No bug in this compiler.
1534cbdd1999SPaolo Bonzini#endif
1535cbdd1999SPaolo BonziniEOF
1536cbdd1999SPaolo Bonziniif compile_prog "-Werror -fno-gcse" "" ; then
1537cbdd1999SPaolo Bonzini  TRANSLATE_OPT_CFLAGS=-fno-gcse
1538cbdd1999SPaolo Bonzinifi
1539cbdd1999SPaolo Bonzini
154040d6444eSAvi Kivityif test "$static" = "yes" ; then
1541aa0d1f44SPaolo Bonzini  if test "$modules" = "yes" ; then
1542aa0d1f44SPaolo Bonzini    error_exit "static and modules are mutually incompatible"
1543aa0d1f44SPaolo Bonzini  fi
154440d6444eSAvi Kivity  if test "$pie" = "yes" ; then
154576ad07a4SPeter Maydell    error_exit "static and pie are mutually incompatible"
154640d6444eSAvi Kivity  else
154740d6444eSAvi Kivity    pie="no"
154840d6444eSAvi Kivity  fi
154940d6444eSAvi Kivityfi
155040d6444eSAvi Kivity
1551768b7855SEmilio G. Cota# Unconditional check for compiler __thread support
1552768b7855SEmilio G. Cota  cat > $TMPC << EOF
1553768b7855SEmilio G. Cotastatic __thread int tls_var;
1554768b7855SEmilio G. Cotaint main(void) { return tls_var; }
1555768b7855SEmilio G. CotaEOF
1556768b7855SEmilio G. Cota
1557768b7855SEmilio G. Cotaif ! compile_prog "-Werror" "" ; then
1558768b7855SEmilio G. Cota    error_exit "Your compiler does not support the __thread specifier for " \
1559768b7855SEmilio G. Cota	"Thread-Local Storage (TLS). Please upgrade to a version that does."
1560768b7855SEmilio G. Cotafi
1561768b7855SEmilio G. Cota
156240d6444eSAvi Kivityif test "$pie" = ""; then
156340d6444eSAvi Kivity  case "$cpu-$targetos" in
1564c72b26ecSRichard Henderson    i386-Linux|x86_64-Linux|x32-Linux|i386-OpenBSD|x86_64-OpenBSD)
156540d6444eSAvi Kivity      ;;
156640d6444eSAvi Kivity    *)
156740d6444eSAvi Kivity      pie="no"
156840d6444eSAvi Kivity      ;;
156940d6444eSAvi Kivity  esac
157040d6444eSAvi Kivityfi
157140d6444eSAvi Kivity
157240d6444eSAvi Kivityif test "$pie" != "no" ; then
157340d6444eSAvi Kivity  cat > $TMPC << EOF
157421d4a791SAvi Kivity
157521d4a791SAvi Kivity#ifdef __linux__
157621d4a791SAvi Kivity#  define THREAD __thread
157721d4a791SAvi Kivity#else
157821d4a791SAvi Kivity#  define THREAD
157921d4a791SAvi Kivity#endif
158021d4a791SAvi Kivity
158121d4a791SAvi Kivitystatic THREAD int tls_var;
158221d4a791SAvi Kivity
158321d4a791SAvi Kivityint main(void) { return tls_var; }
158421d4a791SAvi Kivity
158540d6444eSAvi KivityEOF
158640d6444eSAvi Kivity  if compile_prog "-fPIE -DPIE" "-pie"; then
158740d6444eSAvi Kivity    QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS"
158840d6444eSAvi Kivity    LDFLAGS="-pie $LDFLAGS"
158940d6444eSAvi Kivity    pie="yes"
159040d6444eSAvi Kivity    if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then
159140d6444eSAvi Kivity      LDFLAGS="-Wl,-z,relro -Wl,-z,now $LDFLAGS"
159240d6444eSAvi Kivity    fi
159340d6444eSAvi Kivity  else
159440d6444eSAvi Kivity    if test "$pie" = "yes"; then
159576ad07a4SPeter Maydell      error_exit "PIE not available due to missing toolchain support"
159640d6444eSAvi Kivity    else
159740d6444eSAvi Kivity      echo "Disabling PIE due to missing toolchain support"
159840d6444eSAvi Kivity      pie="no"
159940d6444eSAvi Kivity    fi
160040d6444eSAvi Kivity  fi
160146eef33bSBrad
1602e4a7b344SStefan Hajnoczi  if compile_prog "-Werror -fno-pie" "-nopie"; then
160346eef33bSBrad    CFLAGS_NOPIE="-fno-pie"
160446eef33bSBrad    LDFLAGS_NOPIE="-nopie"
160546eef33bSBrad  fi
160640d6444eSAvi Kivityfi
160740d6444eSAvi Kivity
160809dada40SPaolo Bonzini##########################################
160909dada40SPaolo Bonzini# __sync_fetch_and_and requires at least -march=i486. Many toolchains
161009dada40SPaolo Bonzini# use i686 as default anyway, but for those that don't, an explicit
161109dada40SPaolo Bonzini# specification is necessary
161209dada40SPaolo Bonzini
161309dada40SPaolo Bonziniif test "$cpu" = "i386"; then
161409dada40SPaolo Bonzini  cat > $TMPC << EOF
161509dada40SPaolo Bonzinistatic int sfaa(int *ptr)
161609dada40SPaolo Bonzini{
161709dada40SPaolo Bonzini  return __sync_fetch_and_and(ptr, 0);
161809dada40SPaolo Bonzini}
161909dada40SPaolo Bonzini
162009dada40SPaolo Bonziniint main(void)
162109dada40SPaolo Bonzini{
162209dada40SPaolo Bonzini  int val = 42;
16231405b629SStefan Weil  val = __sync_val_compare_and_swap(&val, 0, 1);
162409dada40SPaolo Bonzini  sfaa(&val);
162509dada40SPaolo Bonzini  return val;
162609dada40SPaolo Bonzini}
162709dada40SPaolo BonziniEOF
162809dada40SPaolo Bonzini  if ! compile_prog "" "" ; then
162909dada40SPaolo Bonzini    QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS"
163009dada40SPaolo Bonzini  fi
163109dada40SPaolo Bonzinifi
163209dada40SPaolo Bonzini
163309dada40SPaolo Bonzini#########################################
1634ec530c81Sbellard# Solaris specific configure tool chain decisions
163509dada40SPaolo Bonzini
1636ec530c81Sbellardif test "$solaris" = "yes" ; then
16376792aa11SLoïc Minier  if has $install; then
16386792aa11SLoïc Minier    :
16396792aa11SLoïc Minier  else
164076ad07a4SPeter Maydell    error_exit "Solaris install program not found. Use --install=/usr/ucb/install or" \
164176ad07a4SPeter Maydell        "install fileutils from www.blastwave.org using pkg-get -i fileutils" \
164276ad07a4SPeter Maydell        "to get ginstall which is used by default (which lives in /opt/csw/bin)"
1643ec530c81Sbellard  fi
164489138857SStefan Weil  if test "$(path_of $install)" = "/usr/sbin/install" ; then
164576ad07a4SPeter Maydell    error_exit "Solaris /usr/sbin/install is not an appropriate install program." \
164676ad07a4SPeter Maydell        "try ginstall from the GNU fileutils available from www.blastwave.org" \
164776ad07a4SPeter Maydell        "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
1648ec530c81Sbellard  fi
16496792aa11SLoïc Minier  if has ar; then
16506792aa11SLoïc Minier    :
16516792aa11SLoïc Minier  else
1652ec530c81Sbellard    if test -f /usr/ccs/bin/ar ; then
165376ad07a4SPeter Maydell      error_exit "No path includes ar" \
165476ad07a4SPeter Maydell          "Add /usr/ccs/bin to your path and rerun configure"
1655ec530c81Sbellard    fi
165676ad07a4SPeter Maydell    error_exit "No path includes ar"
1657ec530c81Sbellard  fi
1658ec530c81Sbellardfi
1659ec530c81Sbellard
1660afb63ebdSStefan Weilif test -z "${target_list+xxx}" ; then
1661121afa9eSAnthony Liguori    target_list="$default_target_list"
1662121afa9eSAnthony Liguorielse
166389138857SStefan Weil    target_list=$(echo "$target_list" | sed -e 's/,/ /g')
16645327cf48Sbellardfi
166525b48338SPeter Maydell
166625b48338SPeter Maydell# Check that we recognised the target name; this allows a more
166725b48338SPeter Maydell# friendly error message than if we let it fall through.
166825b48338SPeter Maydellfor target in $target_list; do
166925b48338SPeter Maydell    case " $default_target_list " in
167025b48338SPeter Maydell        *" $target "*)
167125b48338SPeter Maydell            ;;
167225b48338SPeter Maydell        *)
167325b48338SPeter Maydell            error_exit "Unknown target name '$target'"
167425b48338SPeter Maydell            ;;
167525b48338SPeter Maydell    esac
167625b48338SPeter Maydelldone
167725b48338SPeter Maydell
1678f55fe278SPaolo Bonzini# see if system emulation was really requested
1679f55fe278SPaolo Bonzinicase " $target_list " in
1680f55fe278SPaolo Bonzini  *"-softmmu "*) softmmu=yes
1681f55fe278SPaolo Bonzini  ;;
1682f55fe278SPaolo Bonzini  *) softmmu=no
1683f55fe278SPaolo Bonzini  ;;
1684f55fe278SPaolo Bonziniesac
16855327cf48Sbellard
1686249247c9SJuan Quintelafeature_not_found() {
1687249247c9SJuan Quintela  feature=$1
168821684af0SStewart Smith  remedy=$2
1689249247c9SJuan Quintela
169076ad07a4SPeter Maydell  error_exit "User requested feature $feature" \
169121684af0SStewart Smith      "configure was not able to find it." \
169221684af0SStewart Smith      "$remedy"
1693249247c9SJuan Quintela}
1694249247c9SJuan Quintela
16957d13299dSbellard# ---
16967d13299dSbellard# big/little endian test
16977d13299dSbellardcat > $TMPC << EOF
169861cc919fSMike Frysingershort big_endian[] = { 0x4269, 0x4765, 0x4e64, 0x4961, 0x4e00, 0, };
169961cc919fSMike Frysingershort little_endian[] = { 0x694c, 0x7454, 0x654c, 0x6e45, 0x6944, 0x6e41, 0, };
170061cc919fSMike Frysingerextern int foo(short *, short *);
170161cc919fSMike Frysingerint main(int argc, char *argv[]) {
170261cc919fSMike Frysinger    return foo(big_endian, little_endian);
17037d13299dSbellard}
17047d13299dSbellardEOF
17057d13299dSbellard
170661cc919fSMike Frysingerif compile_object ; then
170761cc919fSMike Frysinger    if grep -q BiGeNdIaN $TMPO ; then
170861cc919fSMike Frysinger        bigendian="yes"
170961cc919fSMike Frysinger    elif grep -q LiTtLeEnDiAn $TMPO ; then
171061cc919fSMike Frysinger        bigendian="no"
17117d13299dSbellard    else
17127d13299dSbellard        echo big/little test failed
17137d13299dSbellard    fi
17147d13299dSbellardelse
171561cc919fSMike Frysinger    echo big/little test failed
17167d13299dSbellardfi
17177d13299dSbellard
1718b0a47e79SJuan Quintela##########################################
1719a30878e7SPeter Maydell# cocoa implies not SDL or GTK
1720a30878e7SPeter Maydell# (the cocoa UI code currently assumes it is always the active UI
1721a30878e7SPeter Maydell# and doesn't interact well with other UI frontend code)
1722a30878e7SPeter Maydellif test "$cocoa" = "yes"; then
1723a30878e7SPeter Maydell    if test "$sdl" = "yes"; then
1724a30878e7SPeter Maydell        error_exit "Cocoa and SDL UIs cannot both be enabled at once"
1725a30878e7SPeter Maydell    fi
1726a30878e7SPeter Maydell    if test "$gtk" = "yes"; then
1727a30878e7SPeter Maydell        error_exit "Cocoa and GTK UIs cannot both be enabled at once"
1728a30878e7SPeter Maydell    fi
1729a30878e7SPeter Maydell    gtk=no
1730a30878e7SPeter Maydell    sdl=no
1731a30878e7SPeter Maydellfi
1732a30878e7SPeter Maydell
1733a30878e7SPeter Maydell##########################################
1734015a33bdSGonglei# L2TPV3 probe
1735015a33bdSGonglei
1736015a33bdSGongleicat > $TMPC <<EOF
1737015a33bdSGonglei#include <sys/socket.h>
1738bff6cb72SMichael Tokarev#include <linux/ip.h>
1739015a33bdSGongleiint main(void) { return sizeof(struct mmsghdr); }
1740015a33bdSGongleiEOF
1741015a33bdSGongleiif compile_prog "" "" ; then
1742015a33bdSGonglei  l2tpv3=yes
1743015a33bdSGongleielse
1744015a33bdSGonglei  l2tpv3=no
1745015a33bdSGongleifi
1746015a33bdSGonglei
1747015a33bdSGonglei##########################################
17484d9310f4SDaniel P. Berrange# MinGW / Mingw-w64 localtime_r/gmtime_r check
17494d9310f4SDaniel P. Berrange
17504d9310f4SDaniel P. Berrangeif test "$mingw32" = "yes"; then
17514d9310f4SDaniel P. Berrange    # Some versions of MinGW / Mingw-w64 lack localtime_r
17524d9310f4SDaniel P. Berrange    # and gmtime_r entirely.
17534d9310f4SDaniel P. Berrange    #
17544d9310f4SDaniel P. Berrange    # Some versions of Mingw-w64 define a macro for
17554d9310f4SDaniel P. Berrange    # localtime_r/gmtime_r.
17564d9310f4SDaniel P. Berrange    #
17574d9310f4SDaniel P. Berrange    # Some versions of Mingw-w64 will define functions
17584d9310f4SDaniel P. Berrange    # for localtime_r/gmtime_r, but only if you have
17594d9310f4SDaniel P. Berrange    # _POSIX_THREAD_SAFE_FUNCTIONS defined. For fun
17604d9310f4SDaniel P. Berrange    # though, unistd.h and pthread.h both define
17614d9310f4SDaniel P. Berrange    # that for you.
17624d9310f4SDaniel P. Berrange    #
17634d9310f4SDaniel P. Berrange    # So this #undef localtime_r and #include <unistd.h>
17644d9310f4SDaniel P. Berrange    # are not in fact redundant.
17654d9310f4SDaniel P. Berrangecat > $TMPC << EOF
17664d9310f4SDaniel P. Berrange#include <unistd.h>
17674d9310f4SDaniel P. Berrange#include <time.h>
17684d9310f4SDaniel P. Berrange#undef localtime_r
17694d9310f4SDaniel P. Berrangeint main(void) { localtime_r(NULL, NULL); return 0; }
17704d9310f4SDaniel P. BerrangeEOF
17714d9310f4SDaniel P. Berrange    if compile_prog "" "" ; then
17724d9310f4SDaniel P. Berrange        localtime_r="yes"
17734d9310f4SDaniel P. Berrange    else
17744d9310f4SDaniel P. Berrange        localtime_r="no"
17754d9310f4SDaniel P. Berrange    fi
17764d9310f4SDaniel P. Berrangefi
17774d9310f4SDaniel P. Berrange
17784d9310f4SDaniel P. Berrange##########################################
1779779ab5e3SStefan Weil# pkg-config probe
1780779ab5e3SStefan Weil
1781779ab5e3SStefan Weilif ! has "$pkg_config_exe"; then
178276ad07a4SPeter Maydell  error_exit "pkg-config binary '$pkg_config_exe' not found"
1783779ab5e3SStefan Weilfi
1784779ab5e3SStefan Weil
1785779ab5e3SStefan Weil##########################################
1786b0a47e79SJuan Quintela# NPTL probe
1787b0a47e79SJuan Quintela
178824cb36a6SPeter Maydellif test "$linux_user" = "yes"; then
1789bd0c5661Spbrook  cat > $TMPC <<EOF
1790bd0c5661Spbrook#include <sched.h>
179130813ceaSpbrook#include <linux/futex.h>
1792182eacc0SStefan Weilint main(void) {
1793bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
1794bd0c5661Spbrook#error bork
1795bd0c5661Spbrook#endif
1796182eacc0SStefan Weil  return 0;
1797bd0c5661Spbrook}
1798bd0c5661SpbrookEOF
179924cb36a6SPeter Maydell  if ! compile_object ; then
180021684af0SStewart Smith    feature_not_found "nptl" "Install glibc and linux kernel headers."
1801b0a47e79SJuan Quintela  fi
1802bd0c5661Spbrookfi
1803bd0c5661Spbrook
180411d9f695Sbellard##########################################
180599f2dbd3SLiang Li# avx2 optimization requirement check
180699f2dbd3SLiang Li
180771fcd8ebSAaron Lindsay
180871fcd8ebSAaron Lindsayif test "$static" = "no" ; then
180999f2dbd3SLiang Li  cat > $TMPC << EOF
18104fb8320aSDr. David Alan Gilbert#pragma GCC push_options
18114fb8320aSDr. David Alan Gilbert#pragma GCC target("avx2")
18124fb8320aSDr. David Alan Gilbert#include <cpuid.h>
18134fb8320aSDr. David Alan Gilbert#include <immintrin.h>
18144fb8320aSDr. David Alan Gilbert
18154fb8320aSDr. David Alan Gilbertstatic int bar(void *a) {
18164fb8320aSDr. David Alan Gilbert    return _mm256_movemask_epi8(_mm256_cmpeq_epi8(*(__m256i *)a, (__m256i){0}));
18174fb8320aSDr. David Alan Gilbert}
181899f2dbd3SLiang Listatic void *bar_ifunc(void) {return (void*) bar;}
18194fb8320aSDr. David Alan Gilbertint foo(void *a) __attribute__((ifunc("bar_ifunc")));
18204fb8320aSDr. David Alan Gilbertint main(int argc, char *argv[]) { return foo(argv[0]);}
182199f2dbd3SLiang LiEOF
18224fb8320aSDr. David Alan Gilbert  if compile_object "" ; then
18237dd929dfSPeter Maydell      if has readelf; then
18247dd929dfSPeter Maydell          if readelf --syms $TMPO 2>/dev/null |grep -q "IFUNC.*foo"; then
182599f2dbd3SLiang Li              avx2_opt="yes"
182699f2dbd3SLiang Li          fi
182799f2dbd3SLiang Li      fi
18287dd929dfSPeter Maydell  fi
182971fcd8ebSAaron Lindsayfi
183099f2dbd3SLiang Li
183199f2dbd3SLiang Li#########################################
1832ac62922eSbalrog# zlib check
1833ac62922eSbalrog
18341ece9905SAlon Levyif test "$zlib" != "no" ; then
1835ac62922eSbalrog    cat > $TMPC << EOF
1836ac62922eSbalrog#include <zlib.h>
1837ac62922eSbalrogint main(void) { zlibVersion(); return 0; }
1838ac62922eSbalrogEOF
183952166aa0SJuan Quintela    if compile_prog "" "-lz" ; then
1840ac62922eSbalrog        :
1841ac62922eSbalrog    else
184276ad07a4SPeter Maydell        error_exit "zlib check failed" \
184376ad07a4SPeter Maydell            "Make sure to have the zlib libs and headers installed."
1844ac62922eSbalrog    fi
18451ece9905SAlon Levyfi
1846eb0ecd5aSWill NewtonLIBS="$LIBS -lz"
1847ac62922eSbalrog
1848ac62922eSbalrog##########################################
1849607dacd0Sqiaonuohan# lzo check
1850607dacd0Sqiaonuohan
1851607dacd0Sqiaonuohanif test "$lzo" != "no" ; then
1852607dacd0Sqiaonuohan    cat > $TMPC << EOF
1853607dacd0Sqiaonuohan#include <lzo/lzo1x.h>
1854607dacd0Sqiaonuohanint main(void) { lzo_version(); return 0; }
1855607dacd0SqiaonuohanEOF
1856607dacd0Sqiaonuohan    if compile_prog "" "-llzo2" ; then
1857607dacd0Sqiaonuohan        libs_softmmu="$libs_softmmu -llzo2"
1858b25c9dffSStefan Weil        lzo="yes"
1859b25c9dffSStefan Weil    else
1860b25c9dffSStefan Weil        if test "$lzo" = "yes"; then
1861b25c9dffSStefan Weil            feature_not_found "liblzo2" "Install liblzo2 devel"
1862b25c9dffSStefan Weil        fi
1863b25c9dffSStefan Weil        lzo="no"
1864b25c9dffSStefan Weil    fi
1865607dacd0Sqiaonuohanfi
1866607dacd0Sqiaonuohan
1867607dacd0Sqiaonuohan##########################################
1868607dacd0Sqiaonuohan# snappy check
1869607dacd0Sqiaonuohan
1870607dacd0Sqiaonuohanif test "$snappy" != "no" ; then
1871607dacd0Sqiaonuohan    cat > $TMPC << EOF
1872607dacd0Sqiaonuohan#include <snappy-c.h>
1873607dacd0Sqiaonuohanint main(void) { snappy_max_compressed_length(4096); return 0; }
1874607dacd0SqiaonuohanEOF
1875607dacd0Sqiaonuohan    if compile_prog "" "-lsnappy" ; then
1876607dacd0Sqiaonuohan        libs_softmmu="$libs_softmmu -lsnappy"
1877b25c9dffSStefan Weil        snappy="yes"
1878b25c9dffSStefan Weil    else
1879b25c9dffSStefan Weil        if test "$snappy" = "yes"; then
1880b25c9dffSStefan Weil            feature_not_found "libsnappy" "Install libsnappy devel"
1881b25c9dffSStefan Weil        fi
1882b25c9dffSStefan Weil        snappy="no"
1883b25c9dffSStefan Weil    fi
1884607dacd0Sqiaonuohanfi
1885607dacd0Sqiaonuohan
1886607dacd0Sqiaonuohan##########################################
18876b383c08SPeter Wu# bzip2 check
18886b383c08SPeter Wu
18896b383c08SPeter Wuif test "$bzip2" != "no" ; then
18906b383c08SPeter Wu    cat > $TMPC << EOF
18916b383c08SPeter Wu#include <bzlib.h>
18926b383c08SPeter Wuint main(void) { BZ2_bzlibVersion(); return 0; }
18936b383c08SPeter WuEOF
18946b383c08SPeter Wu    if compile_prog "" "-lbz2" ; then
18956b383c08SPeter Wu        bzip2="yes"
18966b383c08SPeter Wu    else
18976b383c08SPeter Wu        if test "$bzip2" = "yes"; then
18986b383c08SPeter Wu            feature_not_found "libbzip2" "Install libbzip2 devel"
18996b383c08SPeter Wu        fi
19006b383c08SPeter Wu        bzip2="no"
19016b383c08SPeter Wu    fi
19026b383c08SPeter Wufi
19036b383c08SPeter Wu
19046b383c08SPeter Wu##########################################
1905f794573eSEduardo Otubo# libseccomp check
1906f794573eSEduardo Otubo
1907f794573eSEduardo Otuboif test "$seccomp" != "no" ; then
1908693e5910SAndrew Jones    case "$cpu" in
1909693e5910SAndrew Jones    i386|x86_64)
1910ba060c53Sdann frazier        libseccomp_minver="2.1.0"
1911693e5910SAndrew Jones        ;;
19125ce43972SJames Hogan    mips)
19135ce43972SJames Hogan        libseccomp_minver="2.2.0"
19145ce43972SJames Hogan        ;;
1915693e5910SAndrew Jones    arm|aarch64)
1916693e5910SAndrew Jones        libseccomp_minver="2.2.3"
1917693e5910SAndrew Jones        ;;
19183e684455SMichael Strosaker    ppc|ppc64)
19193e684455SMichael Strosaker        libseccomp_minver="2.3.0"
19203e684455SMichael Strosaker        ;;
1921693e5910SAndrew Jones    *)
1922693e5910SAndrew Jones        libseccomp_minver=""
1923693e5910SAndrew Jones        ;;
1924693e5910SAndrew Jones    esac
1925693e5910SAndrew Jones
1926693e5910SAndrew Jones    if test "$libseccomp_minver" != "" &&
1927693e5910SAndrew Jones       $pkg_config --atleast-version=$libseccomp_minver libseccomp ; then
192889138857SStefan Weil        libs_softmmu="$libs_softmmu $($pkg_config --libs libseccomp)"
192989138857SStefan Weil        QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags libseccomp)"
1930f794573eSEduardo Otubo        seccomp="yes"
1931f794573eSEduardo Otubo    else
1932f794573eSEduardo Otubo        if test "$seccomp" = "yes" ; then
1933693e5910SAndrew Jones            if test "$libseccomp_minver" != "" ; then
1934693e5910SAndrew Jones                feature_not_found "libseccomp" \
1935693e5910SAndrew Jones                    "Install libseccomp devel >= $libseccomp_minver"
1936693e5910SAndrew Jones            else
1937693e5910SAndrew Jones                feature_not_found "libseccomp" \
1938693e5910SAndrew Jones                    "libseccomp is not supported for host cpu $cpu"
1939693e5910SAndrew Jones            fi
1940896848f0SEduardo Otubo        fi
1941e84d5956SYann E. MORIN        seccomp="no"
1942f794573eSEduardo Otubo    fi
1943f794573eSEduardo Otubofi
1944f794573eSEduardo Otubo##########################################
1945e37630caSaliguori# xen probe
1946e37630caSaliguori
1947fc321b4bSJuan Quintelaif test "$xen" != "no" ; then
1948b2266beeSJuan Quintela  xen_libs="-lxenstore -lxenctrl -lxenguest"
19495eeb39c2SIan Campbell  xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn"
1950d5b93ddfSAnthony PERARD
195150ced5b3SStefan Weil  # First we test whether Xen headers and libraries are available.
195250ced5b3SStefan Weil  # If no, we are done and there is no Xen support.
195350ced5b3SStefan Weil  # If yes, more tests are run to detect the Xen version.
195450ced5b3SStefan Weil
195550ced5b3SStefan Weil  # Xen (any)
195650ced5b3SStefan Weil  cat > $TMPC <<EOF
195750ced5b3SStefan Weil#include <xenctrl.h>
195850ced5b3SStefan Weilint main(void) {
195950ced5b3SStefan Weil  return 0;
196050ced5b3SStefan Weil}
196150ced5b3SStefan WeilEOF
196250ced5b3SStefan Weil  if ! compile_prog "" "$xen_libs" ; then
196350ced5b3SStefan Weil    # Xen not found
196450ced5b3SStefan Weil    if test "$xen" = "yes" ; then
196521684af0SStewart Smith      feature_not_found "xen" "Install xen devel"
196650ced5b3SStefan Weil    fi
196750ced5b3SStefan Weil    xen=no
196850ced5b3SStefan Weil
1969d5b93ddfSAnthony PERARD  # Xen unstable
197069deef08SPeter Maydell  elif
197169deef08SPeter Maydell      cat > $TMPC <<EOF &&
19725eeb39c2SIan Campbell/*
19735eeb39c2SIan Campbell * If we have stable libs the we don't want the libxc compat
19745eeb39c2SIan Campbell * layers, regardless of what CFLAGS we may have been given.
19755eeb39c2SIan Campbell */
19765eeb39c2SIan Campbell#undef XC_WANT_COMPAT_EVTCHN_API
19775eeb39c2SIan Campbell#undef XC_WANT_COMPAT_GNTTAB_API
19785eeb39c2SIan Campbell#undef XC_WANT_COMPAT_MAP_FOREIGN_API
19795eeb39c2SIan Campbell#include <xenctrl.h>
19805eeb39c2SIan Campbell#include <xenstore.h>
19815eeb39c2SIan Campbell#include <xenevtchn.h>
19825eeb39c2SIan Campbell#include <xengnttab.h>
19835eeb39c2SIan Campbell#include <xenforeignmemory.h>
19845eeb39c2SIan Campbell#include <stdint.h>
19855eeb39c2SIan Campbell#include <xen/hvm/hvm_info_table.h>
19865eeb39c2SIan Campbell#if !defined(HVM_MAX_VCPUS)
19875eeb39c2SIan Campbell# error HVM_MAX_VCPUS not defined
19885eeb39c2SIan Campbell#endif
19895eeb39c2SIan Campbellint main(void) {
19905eeb39c2SIan Campbell  xc_interface *xc = NULL;
19915eeb39c2SIan Campbell  xenforeignmemory_handle *xfmem;
19925eeb39c2SIan Campbell  xenevtchn_handle *xe;
19935eeb39c2SIan Campbell  xengnttab_handle *xg;
19945eeb39c2SIan Campbell  xen_domain_handle_t handle;
19955eeb39c2SIan Campbell
19965eeb39c2SIan Campbell  xs_daemon_open();
19975eeb39c2SIan Campbell
19985eeb39c2SIan Campbell  xc = xc_interface_open(0, 0, 0);
19995eeb39c2SIan Campbell  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
20005eeb39c2SIan Campbell  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
20015eeb39c2SIan Campbell  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
20025eeb39c2SIan Campbell  xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
20035eeb39c2SIan Campbell  xc_domain_create(xc, 0, handle, 0, NULL, NULL);
20045eeb39c2SIan Campbell
20055eeb39c2SIan Campbell  xfmem = xenforeignmemory_open(0, 0);
20065eeb39c2SIan Campbell  xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0);
20075eeb39c2SIan Campbell
20085eeb39c2SIan Campbell  xe = xenevtchn_open(0, 0);
20095eeb39c2SIan Campbell  xenevtchn_fd(xe);
20105eeb39c2SIan Campbell
20115eeb39c2SIan Campbell  xg = xengnttab_open(0, 0);
20125eeb39c2SIan Campbell  xengnttab_map_grant_ref(xg, 0, 0, 0);
20135eeb39c2SIan Campbell
20145eeb39c2SIan Campbell  return 0;
20155eeb39c2SIan Campbell}
20165eeb39c2SIan CampbellEOF
20175eeb39c2SIan Campbell      compile_prog "" "$xen_libs $xen_stable_libs"
20185eeb39c2SIan Campbell    then
20195eeb39c2SIan Campbell    xen_ctrl_version=471
20205eeb39c2SIan Campbell    xen=yes
20215eeb39c2SIan Campbell  elif
20225eeb39c2SIan Campbell      cat > $TMPC <<EOF &&
2023e37630caSaliguori#include <xenctrl.h>
2024cdadde39SRoger Pau Monne#include <stdint.h>
2025cdadde39SRoger Pau Monneint main(void) {
2026cdadde39SRoger Pau Monne  xc_interface *xc = NULL;
2027cdadde39SRoger Pau Monne  xen_domain_handle_t handle;
2028cdadde39SRoger Pau Monne  xc_domain_create(xc, 0, handle, 0, NULL, NULL);
2029cdadde39SRoger Pau Monne  return 0;
2030cdadde39SRoger Pau Monne}
2031cdadde39SRoger Pau MonneEOF
2032cdadde39SRoger Pau Monne      compile_prog "" "$xen_libs"
2033cdadde39SRoger Pau Monne    then
2034cdadde39SRoger Pau Monne    xen_ctrl_version=470
2035cdadde39SRoger Pau Monne    xen=yes
2036cdadde39SRoger Pau Monne
2037cdadde39SRoger Pau Monne  # Xen 4.6
2038cdadde39SRoger Pau Monne  elif
2039cdadde39SRoger Pau Monne      cat > $TMPC <<EOF &&
2040cdadde39SRoger Pau Monne#include <xenctrl.h>
2041e108a3c1SAnthony PERARD#include <xenstore.h>
2042d5b93ddfSAnthony PERARD#include <stdint.h>
2043d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h>
2044d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS)
2045d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined
2046d5b93ddfSAnthony PERARD#endif
2047d5b93ddfSAnthony PERARDint main(void) {
2048d5b93ddfSAnthony PERARD  xc_interface *xc;
2049d5b93ddfSAnthony PERARD  xs_daemon_open();
2050d5b93ddfSAnthony PERARD  xc = xc_interface_open(0, 0, 0);
2051d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2052d5b93ddfSAnthony PERARD  xc_gnttab_open(NULL, 0);
2053b87de24eSAnthony PERARD  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
20548688e065SStefano Stabellini  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2055d8b441a3SJan Beulich  xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
205620a544c7SKonrad Rzeszutek Wilk  xc_reserved_device_memory_map(xc, 0, 0, 0, 0, NULL, 0);
2057d8b441a3SJan Beulich  return 0;
2058d8b441a3SJan Beulich}
2059d8b441a3SJan BeulichEOF
2060d8b441a3SJan Beulich      compile_prog "" "$xen_libs"
2061d8b441a3SJan Beulich    then
2062d8b441a3SJan Beulich    xen_ctrl_version=460
2063d8b441a3SJan Beulich    xen=yes
2064d8b441a3SJan Beulich
2065d8b441a3SJan Beulich  # Xen 4.5
2066d8b441a3SJan Beulich  elif
2067d8b441a3SJan Beulich      cat > $TMPC <<EOF &&
2068d8b441a3SJan Beulich#include <xenctrl.h>
2069d8b441a3SJan Beulich#include <xenstore.h>
2070d8b441a3SJan Beulich#include <stdint.h>
2071d8b441a3SJan Beulich#include <xen/hvm/hvm_info_table.h>
2072d8b441a3SJan Beulich#if !defined(HVM_MAX_VCPUS)
2073d8b441a3SJan Beulich# error HVM_MAX_VCPUS not defined
2074d8b441a3SJan Beulich#endif
2075d8b441a3SJan Beulichint main(void) {
2076d8b441a3SJan Beulich  xc_interface *xc;
2077d8b441a3SJan Beulich  xs_daemon_open();
2078d8b441a3SJan Beulich  xc = xc_interface_open(0, 0, 0);
2079d8b441a3SJan Beulich  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2080d8b441a3SJan Beulich  xc_gnttab_open(NULL, 0);
2081d8b441a3SJan Beulich  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2082d8b441a3SJan Beulich  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
20833996e85cSPaul Durrant  xc_hvm_create_ioreq_server(xc, 0, 0, NULL);
20843996e85cSPaul Durrant  return 0;
20853996e85cSPaul Durrant}
20863996e85cSPaul DurrantEOF
20873996e85cSPaul Durrant      compile_prog "" "$xen_libs"
20883996e85cSPaul Durrant    then
20893996e85cSPaul Durrant    xen_ctrl_version=450
20903996e85cSPaul Durrant    xen=yes
20913996e85cSPaul Durrant
20923996e85cSPaul Durrant  elif
20933996e85cSPaul Durrant      cat > $TMPC <<EOF &&
20943996e85cSPaul Durrant#include <xenctrl.h>
20953996e85cSPaul Durrant#include <xenstore.h>
20963996e85cSPaul Durrant#include <stdint.h>
20973996e85cSPaul Durrant#include <xen/hvm/hvm_info_table.h>
20983996e85cSPaul Durrant#if !defined(HVM_MAX_VCPUS)
20993996e85cSPaul Durrant# error HVM_MAX_VCPUS not defined
21003996e85cSPaul Durrant#endif
21013996e85cSPaul Durrantint main(void) {
21023996e85cSPaul Durrant  xc_interface *xc;
21033996e85cSPaul Durrant  xs_daemon_open();
21043996e85cSPaul Durrant  xc = xc_interface_open(0, 0, 0);
21053996e85cSPaul Durrant  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
21063996e85cSPaul Durrant  xc_gnttab_open(NULL, 0);
21073996e85cSPaul Durrant  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
21083996e85cSPaul Durrant  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
21098688e065SStefano Stabellini  return 0;
21108688e065SStefano Stabellini}
21118688e065SStefano StabelliniEOF
21128688e065SStefano Stabellini      compile_prog "" "$xen_libs"
211369deef08SPeter Maydell    then
21148688e065SStefano Stabellini    xen_ctrl_version=420
21158688e065SStefano Stabellini    xen=yes
21168688e065SStefano Stabellini
2117e37630caSaliguori  else
2118fc321b4bSJuan Quintela    if test "$xen" = "yes" ; then
2119edfb07edSIan Campbell      feature_not_found "xen (unsupported version)" \
2120edfb07edSIan Campbell                        "Install a supported xen (xen 4.2 or newer)"
2121fc321b4bSJuan Quintela    fi
2122fc321b4bSJuan Quintela    xen=no
2123e37630caSaliguori  fi
2124d5b93ddfSAnthony PERARD
2125d5b93ddfSAnthony PERARD  if test "$xen" = yes; then
21265eeb39c2SIan Campbell    if test $xen_ctrl_version -ge 471  ; then
21275eeb39c2SIan Campbell      libs_softmmu="$xen_stable_libs $libs_softmmu"
21285eeb39c2SIan Campbell    fi
2129d5b93ddfSAnthony PERARD    libs_softmmu="$xen_libs $libs_softmmu"
2130d5b93ddfSAnthony PERARD  fi
2131e37630caSaliguorifi
2132e37630caSaliguori
2133eb6fda0fSAnthony PERARDif test "$xen_pci_passthrough" != "no"; then
2134edfb07edSIan Campbell  if test "$xen" = "yes" && test "$linux" = "yes"; then
2135eb6fda0fSAnthony PERARD    xen_pci_passthrough=yes
2136eb6fda0fSAnthony PERARD  else
2137eb6fda0fSAnthony PERARD    if test "$xen_pci_passthrough" = "yes"; then
213876ad07a4SPeter Maydell      error_exit "User requested feature Xen PCI Passthrough" \
213976ad07a4SPeter Maydell          " but this feature requires /sys from Linux"
2140eb6fda0fSAnthony PERARD    fi
2141eb6fda0fSAnthony PERARD    xen_pci_passthrough=no
2142eb6fda0fSAnthony PERARD  fi
2143eb6fda0fSAnthony PERARDfi
2144eb6fda0fSAnthony PERARD
214564a7ad6fSIan Campbellif test "$xen_pv_domain_build" = "yes" &&
214664a7ad6fSIan Campbell   test "$xen" != "yes"; then
214764a7ad6fSIan Campbell    error_exit "User requested Xen PV domain builder support" \
214864a7ad6fSIan Campbell	       "which requires Xen support."
214964a7ad6fSIan Campbellfi
215064a7ad6fSIan Campbell
2151e37630caSaliguori##########################################
2152dfffc653SJuan Quintela# Sparse probe
2153dfffc653SJuan Quintelaif test "$sparse" != "no" ; then
21540dba6195SLoïc Minier  if has cgcc; then
2155dfffc653SJuan Quintela    sparse=yes
2156dfffc653SJuan Quintela  else
2157dfffc653SJuan Quintela    if test "$sparse" = "yes" ; then
215821684af0SStewart Smith      feature_not_found "sparse" "Install sparse binary"
2159dfffc653SJuan Quintela    fi
2160dfffc653SJuan Quintela    sparse=no
2161dfffc653SJuan Quintela  fi
2162dfffc653SJuan Quintelafi
2163dfffc653SJuan Quintela
2164dfffc653SJuan Quintela##########################################
2165f676c67eSJeremy White# X11 probe
2166f676c67eSJeremy Whitex11_cflags=
2167f676c67eSJeremy Whitex11_libs=-lX11
2168f676c67eSJeremy Whiteif $pkg_config --exists "x11"; then
216989138857SStefan Weil    x11_cflags=$($pkg_config --cflags x11)
217089138857SStefan Weil    x11_libs=$($pkg_config --libs x11)
2171f676c67eSJeremy Whitefi
2172f676c67eSJeremy White
2173f676c67eSJeremy White##########################################
2174a4ccabcfSAnthony Liguori# GTK probe
2175a4ccabcfSAnthony Liguori
21769e04c683SStefan Weilif test "$gtkabi" = ""; then
21779e04c683SStefan Weil    # The GTK ABI was not specified explicitly, so try whether 2.0 is available.
21789e04c683SStefan Weil    # Use 3.0 as a fallback if that is available.
21799e04c683SStefan Weil    if $pkg_config --exists "gtk+-2.0 >= 2.18.0"; then
21809e04c683SStefan Weil        gtkabi=2.0
21819e04c683SStefan Weil    elif $pkg_config --exists "gtk+-3.0 >= 3.0.0"; then
21829e04c683SStefan Weil        gtkabi=3.0
21839e04c683SStefan Weil    else
21849e04c683SStefan Weil        gtkabi=2.0
21859e04c683SStefan Weil    fi
21869e04c683SStefan Weilfi
21879e04c683SStefan Weil
2188a4ccabcfSAnthony Liguoriif test "$gtk" != "no"; then
2189528de90aSDaniel P. Berrange    gtkpackage="gtk+-$gtkabi"
21900a337ed0SGerd Hoffmann    gtkx11package="gtk+-x11-$gtkabi"
2191528de90aSDaniel P. Berrange    if test "$gtkabi" = "3.0" ; then
2192528de90aSDaniel P. Berrange      gtkversion="3.0.0"
2193bbbf9bfbSStefan Weil    else
2194bbbf9bfbSStefan Weil      gtkversion="2.18.0"
2195bbbf9bfbSStefan Weil    fi
2196bbbf9bfbSStefan Weil    if $pkg_config --exists "$gtkpackage >= $gtkversion"; then
219789138857SStefan Weil        gtk_cflags=$($pkg_config --cflags $gtkpackage)
219889138857SStefan Weil        gtk_libs=$($pkg_config --libs $gtkpackage)
219989138857SStefan Weil        gtk_version=$($pkg_config --modversion $gtkpackage)
22000a337ed0SGerd Hoffmann        if $pkg_config --exists "$gtkx11package >= $gtkversion"; then
2201f676c67eSJeremy White            gtk_cflags="$gtk_cflags $x11_cflags"
2202f676c67eSJeremy White            gtk_libs="$gtk_libs $x11_libs"
22030a337ed0SGerd Hoffmann        fi
2204bbbf9bfbSStefan Weil        libs_softmmu="$gtk_libs $libs_softmmu"
2205bbbf9bfbSStefan Weil        gtk="yes"
2206bbbf9bfbSStefan Weil    elif test "$gtk" = "yes"; then
22079e04c683SStefan Weil        feature_not_found "gtk" "Install gtk2 or gtk3 devel"
2208bbbf9bfbSStefan Weil    else
2209bbbf9bfbSStefan Weil        gtk="no"
2210bbbf9bfbSStefan Weil    fi
2211bbbf9bfbSStefan Weilfi
2212bbbf9bfbSStefan Weil
2213ddbb0d09SDaniel P. Berrange
2214ddbb0d09SDaniel P. Berrange##########################################
2215ddbb0d09SDaniel P. Berrange# GNUTLS probe
2216ddbb0d09SDaniel P. Berrange
221737371299SPeter Maydellgnutls_works() {
221837371299SPeter Maydell    # Unfortunately some distros have bad pkg-config information for gnutls
221937371299SPeter Maydell    # such that it claims to exist but you get a compiler error if you try
222037371299SPeter Maydell    # to use the options returned by --libs. Specifically, Ubuntu for --static
222137371299SPeter Maydell    # builds doesn't work:
222237371299SPeter Maydell    # https://bugs.launchpad.net/ubuntu/+source/gnutls26/+bug/1478035
222337371299SPeter Maydell    #
222437371299SPeter Maydell    # So sanity check the cflags/libs before assuming gnutls can be used.
222537371299SPeter Maydell    if ! $pkg_config --exists "gnutls"; then
222637371299SPeter Maydell        return 1
222737371299SPeter Maydell    fi
222837371299SPeter Maydell
222937371299SPeter Maydell    write_c_skeleton
223037371299SPeter Maydell    compile_prog "$($pkg_config --cflags gnutls)" "$($pkg_config --libs gnutls)"
223137371299SPeter Maydell}
223237371299SPeter Maydell
223362893b67SDaniel P. Berrangegnutls_gcrypt=no
2234ed754746SDaniel P. Berrangegnutls_nettle=no
2235ddbb0d09SDaniel P. Berrangeif test "$gnutls" != "no"; then
223637371299SPeter Maydell    if gnutls_works; then
223789138857SStefan Weil        gnutls_cflags=$($pkg_config --cflags gnutls)
223889138857SStefan Weil        gnutls_libs=$($pkg_config --libs gnutls)
2239ddbb0d09SDaniel P. Berrange        libs_softmmu="$gnutls_libs $libs_softmmu"
2240ddbb0d09SDaniel P. Berrange        libs_tools="$gnutls_libs $libs_tools"
2241ddbb0d09SDaniel P. Berrange	QEMU_CFLAGS="$QEMU_CFLAGS $gnutls_cflags"
2242ddbb0d09SDaniel P. Berrange        gnutls="yes"
2243ddbb0d09SDaniel P. Berrange
2244b917da4cSDaniel P. Berrange	# gnutls_rnd requires >= 2.11.0
2245b917da4cSDaniel P. Berrange	if $pkg_config --exists "gnutls >= 2.11.0"; then
2246b917da4cSDaniel P. Berrange	    gnutls_rnd="yes"
2247b917da4cSDaniel P. Berrange	else
2248b917da4cSDaniel P. Berrange	    gnutls_rnd="no"
2249b917da4cSDaniel P. Berrange	fi
2250b917da4cSDaniel P. Berrange
225162893b67SDaniel P. Berrange	if $pkg_config --exists 'gnutls >= 3.0'; then
225262893b67SDaniel P. Berrange	    gnutls_gcrypt=no
2253ed754746SDaniel P. Berrange	    gnutls_nettle=yes
225462893b67SDaniel P. Berrange	elif $pkg_config --exists 'gnutls >= 2.12'; then
225589138857SStefan Weil	    case $($pkg_config --libs --static gnutls) in
2256ed754746SDaniel P. Berrange		*gcrypt*)
2257ed754746SDaniel P. Berrange		    gnutls_gcrypt=yes
2258ed754746SDaniel P. Berrange		    gnutls_nettle=no
2259ed754746SDaniel P. Berrange		    ;;
2260ed754746SDaniel P. Berrange		*nettle*)
2261ed754746SDaniel P. Berrange		    gnutls_gcrypt=no
2262ed754746SDaniel P. Berrange		    gnutls_nettle=yes
2263ed754746SDaniel P. Berrange		    ;;
2264ed754746SDaniel P. Berrange		*)
2265ed754746SDaniel P. Berrange		    gnutls_gcrypt=yes
2266ed754746SDaniel P. Berrange		    gnutls_nettle=no
2267ed754746SDaniel P. Berrange		    ;;
226862893b67SDaniel P. Berrange	    esac
226962893b67SDaniel P. Berrange	else
227062893b67SDaniel P. Berrange	    gnutls_gcrypt=yes
2271ed754746SDaniel P. Berrange	    gnutls_nettle=no
227262893b67SDaniel P. Berrange	fi
2273ddbb0d09SDaniel P. Berrange    elif test "$gnutls" = "yes"; then
2274ddbb0d09SDaniel P. Berrange	feature_not_found "gnutls" "Install gnutls devel"
2275ddbb0d09SDaniel P. Berrange    else
2276ddbb0d09SDaniel P. Berrange        gnutls="no"
2277b917da4cSDaniel P. Berrange        gnutls_rnd="no"
2278ddbb0d09SDaniel P. Berrange    fi
2279ddbb0d09SDaniel P. Berrangeelse
2280b917da4cSDaniel P. Berrange    gnutls_rnd="no"
2281ddbb0d09SDaniel P. Berrangefi
2282ddbb0d09SDaniel P. Berrange
228391bfcdb0SDaniel P. Berrange
228491bfcdb0SDaniel P. Berrange# If user didn't give a --disable/enable-gcrypt flag,
228591bfcdb0SDaniel P. Berrange# then mark as disabled if user requested nettle
228691bfcdb0SDaniel P. Berrange# explicitly, or if gnutls links to nettle
228791bfcdb0SDaniel P. Berrangeif test -z "$gcrypt"
228891bfcdb0SDaniel P. Berrangethen
228991bfcdb0SDaniel P. Berrange    if test "$nettle" = "yes" || test "$gnutls_nettle" = "yes"
229091bfcdb0SDaniel P. Berrange    then
229191bfcdb0SDaniel P. Berrange        gcrypt="no"
229291bfcdb0SDaniel P. Berrange    fi
229391bfcdb0SDaniel P. Berrangefi
229491bfcdb0SDaniel P. Berrange
229591bfcdb0SDaniel P. Berrange# If user didn't give a --disable/enable-nettle flag,
229691bfcdb0SDaniel P. Berrange# then mark as disabled if user requested gcrypt
229791bfcdb0SDaniel P. Berrange# explicitly, or if gnutls links to gcrypt
229891bfcdb0SDaniel P. Berrangeif test -z "$nettle"
229991bfcdb0SDaniel P. Berrangethen
230091bfcdb0SDaniel P. Berrange    if test "$gcrypt" = "yes" || test "$gnutls_gcrypt" = "yes"
230191bfcdb0SDaniel P. Berrange    then
230291bfcdb0SDaniel P. Berrange        nettle="no"
230391bfcdb0SDaniel P. Berrange    fi
230491bfcdb0SDaniel P. Berrangefi
230591bfcdb0SDaniel P. Berrange
230691bfcdb0SDaniel P. Berrangehas_libgcrypt_config() {
230791bfcdb0SDaniel P. Berrange    if ! has "libgcrypt-config"
230891bfcdb0SDaniel P. Berrange    then
230991bfcdb0SDaniel P. Berrange	return 1
231091bfcdb0SDaniel P. Berrange    fi
231191bfcdb0SDaniel P. Berrange
231291bfcdb0SDaniel P. Berrange    if test -n "$cross_prefix"
231391bfcdb0SDaniel P. Berrange    then
231489138857SStefan Weil	host=$(libgcrypt-config --host)
231591bfcdb0SDaniel P. Berrange	if test "$host-" != $cross_prefix
231691bfcdb0SDaniel P. Berrange	then
231791bfcdb0SDaniel P. Berrange	    return 1
231891bfcdb0SDaniel P. Berrange	fi
231991bfcdb0SDaniel P. Berrange    fi
232091bfcdb0SDaniel P. Berrange
232191bfcdb0SDaniel P. Berrange    return 0
232291bfcdb0SDaniel P. Berrange}
232391bfcdb0SDaniel P. Berrange
232491bfcdb0SDaniel P. Berrangeif test "$gcrypt" != "no"; then
232591bfcdb0SDaniel P. Berrange    if has_libgcrypt_config; then
232689138857SStefan Weil        gcrypt_cflags=$(libgcrypt-config --cflags)
232789138857SStefan Weil        gcrypt_libs=$(libgcrypt-config --libs)
232891bfcdb0SDaniel P. Berrange        # Debian has remove -lgpg-error from libgcrypt-config
232991bfcdb0SDaniel P. Berrange        # as it "spreads unnecessary dependencies" which in
233091bfcdb0SDaniel P. Berrange        # turn breaks static builds...
233191bfcdb0SDaniel P. Berrange        if test "$static" = "yes"
233291bfcdb0SDaniel P. Berrange        then
233391bfcdb0SDaniel P. Berrange            gcrypt_libs="$gcrypt_libs -lgpg-error"
233491bfcdb0SDaniel P. Berrange        fi
233562893b67SDaniel P. Berrange        libs_softmmu="$gcrypt_libs $libs_softmmu"
233662893b67SDaniel P. Berrange        libs_tools="$gcrypt_libs $libs_tools"
233762893b67SDaniel P. Berrange        QEMU_CFLAGS="$QEMU_CFLAGS $gcrypt_cflags"
233891bfcdb0SDaniel P. Berrange        gcrypt="yes"
233991bfcdb0SDaniel P. Berrange        if test -z "$nettle"; then
234091bfcdb0SDaniel P. Berrange           nettle="no"
234191bfcdb0SDaniel P. Berrange        fi
234237788f25SDaniel P. Berrange
234337788f25SDaniel P. Berrange        cat > $TMPC << EOF
234437788f25SDaniel P. Berrange#include <gcrypt.h>
234537788f25SDaniel P. Berrangeint main(void) {
234637788f25SDaniel P. Berrange  gcry_kdf_derive(NULL, 0, GCRY_KDF_PBKDF2,
234737788f25SDaniel P. Berrange                  GCRY_MD_SHA256,
234837788f25SDaniel P. Berrange                  NULL, 0, 0, 0, NULL);
234937788f25SDaniel P. Berrange return 0;
235037788f25SDaniel P. Berrange}
235137788f25SDaniel P. BerrangeEOF
235237788f25SDaniel P. Berrange        if compile_prog "$gcrypt_cflags" "$gcrypt_libs" ; then
235337788f25SDaniel P. Berrange            gcrypt_kdf=yes
235437788f25SDaniel P. Berrange        fi
235562893b67SDaniel P. Berrange    else
235691bfcdb0SDaniel P. Berrange        if test "$gcrypt" = "yes"; then
235762893b67SDaniel P. Berrange            feature_not_found "gcrypt" "Install gcrypt devel"
235891bfcdb0SDaniel P. Berrange        else
235991bfcdb0SDaniel P. Berrange            gcrypt="no"
236091bfcdb0SDaniel P. Berrange        fi
236162893b67SDaniel P. Berrange    fi
236262893b67SDaniel P. Berrangefi
236362893b67SDaniel P. Berrange
2364ddbb0d09SDaniel P. Berrange
236591bfcdb0SDaniel P. Berrangeif test "$nettle" != "no"; then
2366ed754746SDaniel P. Berrange    if $pkg_config --exists "nettle"; then
236789138857SStefan Weil        nettle_cflags=$($pkg_config --cflags nettle)
236889138857SStefan Weil        nettle_libs=$($pkg_config --libs nettle)
236989138857SStefan Weil        nettle_version=$($pkg_config --modversion nettle)
2370ed754746SDaniel P. Berrange        libs_softmmu="$nettle_libs $libs_softmmu"
2371ed754746SDaniel P. Berrange        libs_tools="$nettle_libs $libs_tools"
2372ed754746SDaniel P. Berrange        QEMU_CFLAGS="$QEMU_CFLAGS $nettle_cflags"
237391bfcdb0SDaniel P. Berrange        nettle="yes"
2374fff2f982SDaniel P. Berrange
2375fff2f982SDaniel P. Berrange        cat > $TMPC << EOF
23769e87a691SSteven Luo#include <stddef.h>
2377fff2f982SDaniel P. Berrange#include <nettle/pbkdf2.h>
2378fff2f982SDaniel P. Berrangeint main(void) {
2379fff2f982SDaniel P. Berrange     pbkdf2_hmac_sha256(8, NULL, 1000, 8, NULL, 8, NULL);
2380fff2f982SDaniel P. Berrange     return 0;
2381fff2f982SDaniel P. Berrange}
2382fff2f982SDaniel P. BerrangeEOF
2383fff2f982SDaniel P. Berrange        if compile_prog "$nettle_cflags" "$nettle_libs" ; then
2384fff2f982SDaniel P. Berrange            nettle_kdf=yes
2385fff2f982SDaniel P. Berrange        fi
2386ed754746SDaniel P. Berrange    else
238791bfcdb0SDaniel P. Berrange        if test "$nettle" = "yes"; then
2388ed754746SDaniel P. Berrange            feature_not_found "nettle" "Install nettle devel"
238991bfcdb0SDaniel P. Berrange        else
239091bfcdb0SDaniel P. Berrange            nettle="no"
2391ed754746SDaniel P. Berrange        fi
2392ed754746SDaniel P. Berrange    fi
239391bfcdb0SDaniel P. Berrangefi
239491bfcdb0SDaniel P. Berrange
239591bfcdb0SDaniel P. Berrangeif test "$gcrypt" = "yes" && test "$nettle" = "yes"
239691bfcdb0SDaniel P. Berrangethen
239791bfcdb0SDaniel P. Berrange    error_exit "Only one of gcrypt & nettle can be enabled"
239891bfcdb0SDaniel P. Berrangefi
2399ed754746SDaniel P. Berrange
24009a2fd434SDaniel P. Berrange##########################################
24019a2fd434SDaniel P. Berrange# libtasn1 - only for the TLS creds/session test suite
24029a2fd434SDaniel P. Berrange
24039a2fd434SDaniel P. Berrangetasn1=yes
240490246037SDaniel P. Berrangetasn1_cflags=""
240590246037SDaniel P. Berrangetasn1_libs=""
24069a2fd434SDaniel P. Berrangeif $pkg_config --exists "libtasn1"; then
240789138857SStefan Weil    tasn1_cflags=$($pkg_config --cflags libtasn1)
240889138857SStefan Weil    tasn1_libs=$($pkg_config --libs libtasn1)
24099a2fd434SDaniel P. Berrangeelse
24109a2fd434SDaniel P. Berrange    tasn1=no
24119a2fd434SDaniel P. Berrangefi
24129a2fd434SDaniel P. Berrange
2413ed754746SDaniel P. Berrange
2414bbbf9bfbSStefan Weil##########################################
2415559607eaSDaniel P. Berrange# getifaddrs (for tests/test-io-channel-socket )
2416559607eaSDaniel P. Berrange
2417559607eaSDaniel P. Berrangehave_ifaddrs_h=yes
2418559607eaSDaniel P. Berrangeif ! check_include "ifaddrs.h" ; then
2419559607eaSDaniel P. Berrange  have_ifaddrs_h=no
2420559607eaSDaniel P. Berrangefi
2421559607eaSDaniel P. Berrange
2422559607eaSDaniel P. Berrange##########################################
2423bbbf9bfbSStefan Weil# VTE probe
2424bbbf9bfbSStefan Weil
2425bbbf9bfbSStefan Weilif test "$vte" != "no"; then
2426bbbf9bfbSStefan Weil    if test "$gtkabi" = "3.0"; then
2427c6feff9eSCole Robinson      vteminversion="0.32.0"
2428c6feff9eSCole Robinson      if $pkg_config --exists "vte-2.91"; then
2429c6feff9eSCole Robinson        vtepackage="vte-2.91"
2430c6feff9eSCole Robinson      else
2431528de90aSDaniel P. Berrange        vtepackage="vte-2.90"
2432c6feff9eSCole Robinson      fi
2433528de90aSDaniel P. Berrange    else
2434528de90aSDaniel P. Berrange      vtepackage="vte"
2435c6feff9eSCole Robinson      vteminversion="0.24.0"
2436528de90aSDaniel P. Berrange    fi
2437c6feff9eSCole Robinson    if $pkg_config --exists "$vtepackage >= $vteminversion"; then
243889138857SStefan Weil        vte_cflags=$($pkg_config --cflags $vtepackage)
243989138857SStefan Weil        vte_libs=$($pkg_config --libs $vtepackage)
244089138857SStefan Weil        vteversion=$($pkg_config --modversion $vtepackage)
2441bbbf9bfbSStefan Weil        libs_softmmu="$vte_libs $libs_softmmu"
2442bbbf9bfbSStefan Weil        vte="yes"
2443bbbf9bfbSStefan Weil    elif test "$vte" = "yes"; then
24449e04c683SStefan Weil        if test "$gtkabi" = "3.0"; then
2445c6feff9eSCole Robinson            feature_not_found "vte" "Install libvte-2.90/2.91 devel"
24469e04c683SStefan Weil        else
24479e04c683SStefan Weil            feature_not_found "vte" "Install libvte devel"
24489e04c683SStefan Weil        fi
2449bbbf9bfbSStefan Weil    else
2450bbbf9bfbSStefan Weil        vte="no"
2451a4ccabcfSAnthony Liguori    fi
2452a4ccabcfSAnthony Liguorifi
2453a4ccabcfSAnthony Liguori
2454a4ccabcfSAnthony Liguori##########################################
245511d9f695Sbellard# SDL probe
245611d9f695Sbellard
24573ec87ffeSPaolo Bonzini# Look for sdl configuration program (pkg-config or sdl-config).  Try
24583ec87ffeSPaolo Bonzini# sdl-config even without cross prefix, and favour pkg-config over sdl-config.
245947c03744SDave Airlie
2460ee8466d0SCole Robinsonif test "$sdlabi" = ""; then
2461ee8466d0SCole Robinson    if $pkg_config --exists "sdl"; then
2462ee8466d0SCole Robinson        sdlabi=1.2
2463ee8466d0SCole Robinson    elif $pkg_config --exists "sdl2"; then
2464ee8466d0SCole Robinson        sdlabi=2.0
2465ee8466d0SCole Robinson    else
2466ee8466d0SCole Robinson        sdlabi=1.2
2467ee8466d0SCole Robinson    fi
2468ee8466d0SCole Robinsonfi
2469ee8466d0SCole Robinson
247047c03744SDave Airlieif test $sdlabi = "2.0"; then
247147c03744SDave Airlie    sdl_config=$sdl2_config
247247c03744SDave Airlie    sdlname=sdl2
247347c03744SDave Airlie    sdlconfigname=sdl2_config
2474e07047cfSCole Robinsonelif test $sdlabi = "1.2"; then
247547c03744SDave Airlie    sdlname=sdl
247647c03744SDave Airlie    sdlconfigname=sdl_config
2477e07047cfSCole Robinsonelse
2478e07047cfSCole Robinson    error_exit "Unknown sdlabi $sdlabi, must be 1.2 or 2.0"
24793ec87ffeSPaolo Bonzinifi
24803ec87ffeSPaolo Bonzini
248189138857SStefan Weilif test "$(basename $sdl_config)" != $sdlconfigname && ! has ${sdl_config}; then
248247c03744SDave Airlie  sdl_config=$sdlconfigname
248347c03744SDave Airliefi
248447c03744SDave Airlie
248547c03744SDave Airlieif $pkg_config $sdlname --exists; then
248647c03744SDave Airlie  sdlconfig="$pkg_config $sdlname"
248789138857SStefan Weil  sdlversion=$($sdlconfig --modversion 2>/dev/null)
24883ec87ffeSPaolo Bonzinielif has ${sdl_config}; then
24893ec87ffeSPaolo Bonzini  sdlconfig="$sdl_config"
249089138857SStefan Weil  sdlversion=$($sdlconfig --version)
2491a0dfd8a4SLoïc Minierelse
2492a0dfd8a4SLoïc Minier  if test "$sdl" = "yes" ; then
249321684af0SStewart Smith    feature_not_found "sdl" "Install SDL devel"
2494a0dfd8a4SLoïc Minier  fi
2495a0dfd8a4SLoïc Minier  sdl=no
24969316f803SPaolo Bonzinifi
249729e5badaSScott Woodif test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then
24983ec87ffeSPaolo Bonzini  echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
24993ec87ffeSPaolo Bonzinifi
250011d9f695Sbellard
25019316f803SPaolo Bonzinisdl_too_old=no
2502c4198157SJuan Quintelaif test "$sdl" != "no" ; then
250311d9f695Sbellard  cat > $TMPC << EOF
250411d9f695Sbellard#include <SDL.h>
250511d9f695Sbellard#undef main /* We don't want SDL to override our main() */
250611d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
250711d9f695SbellardEOF
250889138857SStefan Weil  sdl_cflags=$($sdlconfig --cflags 2>/dev/null)
250974f42e18STeLeMan  if test "$static" = "yes" ; then
251089138857SStefan Weil    sdl_libs=$($sdlconfig --static-libs 2>/dev/null)
251174f42e18STeLeMan  else
251289138857SStefan Weil    sdl_libs=$($sdlconfig --libs 2>/dev/null)
251374f42e18STeLeMan  fi
251452166aa0SJuan Quintela  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
251589138857SStefan Weil    if test $(echo $sdlversion | sed 's/[^0-9]//g') -lt 121 ; then
251611d9f695Sbellard      sdl_too_old=yes
251711d9f695Sbellard    else
251811d9f695Sbellard      sdl=yes
251911d9f695Sbellard    fi
25207c1f25b4Sbellard
252167c274d3SPaolo Bonzini    # static link with sdl ? (note: sdl.pc's --static --libs is broken)
25221ac88f28SJuan Quintela    if test "$sdl" = "yes" -a "$static" = "yes" ; then
252367c274d3SPaolo Bonzini      if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
252489138857SStefan Weil         sdl_libs="$sdl_libs $(aalib-config --static-libs 2>/dev/null)"
252589138857SStefan Weil         sdl_cflags="$sdl_cflags $(aalib-config --cflags 2>/dev/null)"
252611d9f695Sbellard      fi
252752166aa0SJuan Quintela      if compile_prog "$sdl_cflags" "$sdl_libs" ; then
25281ac88f28SJuan Quintela	:
25291ac88f28SJuan Quintela      else
25301ac88f28SJuan Quintela        sdl=no
25317c1f25b4Sbellard      fi
25327c1f25b4Sbellard    fi # static link
2533c4198157SJuan Quintela  else # sdl not found
2534c4198157SJuan Quintela    if test "$sdl" = "yes" ; then
253521684af0SStewart Smith      feature_not_found "sdl" "Install SDL devel"
2536c4198157SJuan Quintela    fi
2537c4198157SJuan Quintela    sdl=no
25387c1f25b4Sbellard  fi # sdl compile test
2539fd677642Sthsfi
254011d9f695Sbellard
25415368a422Saliguoriif test "$sdl" = "yes" ; then
25425368a422Saliguori  cat > $TMPC <<EOF
25435368a422Saliguori#include <SDL.h>
25445368a422Saliguori#if defined(SDL_VIDEO_DRIVER_X11)
25455368a422Saliguori#include <X11/XKBlib.h>
25465368a422Saliguori#else
25475368a422Saliguori#error No x11 support
25485368a422Saliguori#endif
25495368a422Saliguoriint main(void) { return 0; }
25505368a422SaliguoriEOF
2551f676c67eSJeremy White  if compile_prog "$sdl_cflags $x11_cflags" "$sdl_libs $x11_libs" ; then
2552f676c67eSJeremy White    sdl_cflags="$sdl_cflags $x11_cflags"
2553f676c67eSJeremy White    sdl_libs="$sdl_libs $x11_libs"
25545368a422Saliguori  fi
25550705667eSJuan Quintela  libs_softmmu="$sdl_libs $libs_softmmu"
25565368a422Saliguorifi
25575368a422Saliguori
25588f28f3fbSths##########################################
25592da776dbSMichael R. Hines# RDMA needs OpenFabrics libraries
25602da776dbSMichael R. Hinesif test "$rdma" != "no" ; then
25612da776dbSMichael R. Hines  cat > $TMPC <<EOF
25622da776dbSMichael R. Hines#include <rdma/rdma_cma.h>
25632da776dbSMichael R. Hinesint main(void) { return 0; }
25642da776dbSMichael R. HinesEOF
25652da776dbSMichael R. Hines  rdma_libs="-lrdmacm -libverbs"
25662da776dbSMichael R. Hines  if compile_prog "" "$rdma_libs" ; then
25672da776dbSMichael R. Hines    rdma="yes"
25682da776dbSMichael R. Hines    libs_softmmu="$libs_softmmu $rdma_libs"
25692da776dbSMichael R. Hines  else
25702da776dbSMichael R. Hines    if test "$rdma" = "yes" ; then
25712da776dbSMichael R. Hines        error_exit \
25722da776dbSMichael R. Hines            " OpenFabrics librdmacm/libibverbs not present." \
25732da776dbSMichael R. Hines            " Your options:" \
25742da776dbSMichael R. Hines            "  (1) Fast: Install infiniband packages from your distro." \
25752da776dbSMichael R. Hines            "  (2) Cleanest: Install libraries from www.openfabrics.org" \
25762da776dbSMichael R. Hines            "  (3) Also: Install softiwarp if you don't have RDMA hardware"
25772da776dbSMichael R. Hines    fi
25782da776dbSMichael R. Hines    rdma="no"
25792da776dbSMichael R. Hines  fi
25802da776dbSMichael R. Hinesfi
25812da776dbSMichael R. Hines
258295c6bff3SBenoît Canet
258395c6bff3SBenoît Canet##########################################
25842f9606b3Saliguori# VNC SASL detection
2585821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then
25862f9606b3Saliguori  cat > $TMPC <<EOF
25872f9606b3Saliguori#include <sasl/sasl.h>
25882f9606b3Saliguori#include <stdio.h>
25892f9606b3Saliguoriint main(void) { sasl_server_init(NULL, "qemu"); return 0; }
25902f9606b3SaliguoriEOF
25912f9606b3Saliguori  # Assuming Cyrus-SASL installed in /usr prefix
25922f9606b3Saliguori  vnc_sasl_cflags=""
25932f9606b3Saliguori  vnc_sasl_libs="-lsasl2"
259452166aa0SJuan Quintela  if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
2595ea784e3bSJuan Quintela    vnc_sasl=yes
2596fa838301SJuan Quintela    libs_softmmu="$vnc_sasl_libs $libs_softmmu"
2597ca273d58SPaolo Bonzini    QEMU_CFLAGS="$QEMU_CFLAGS $vnc_sasl_cflags"
25982f9606b3Saliguori  else
2599ea784e3bSJuan Quintela    if test "$vnc_sasl" = "yes" ; then
260021684af0SStewart Smith      feature_not_found "vnc-sasl" "Install Cyrus SASL devel"
2601ea784e3bSJuan Quintela    fi
2602ea784e3bSJuan Quintela    vnc_sasl=no
26032f9606b3Saliguori  fi
26042f9606b3Saliguorifi
26052f9606b3Saliguori
26062f9606b3Saliguori##########################################
26072f6f5c7aSCorentin Chary# VNC JPEG detection
2608821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then
26092f6f5c7aSCorentin Charycat > $TMPC <<EOF
26102f6f5c7aSCorentin Chary#include <stdio.h>
26112f6f5c7aSCorentin Chary#include <jpeglib.h>
26122f6f5c7aSCorentin Charyint main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
26132f6f5c7aSCorentin CharyEOF
26142f6f5c7aSCorentin Chary    vnc_jpeg_cflags=""
26152f6f5c7aSCorentin Chary    vnc_jpeg_libs="-ljpeg"
26162f6f5c7aSCorentin Chary  if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
26172f6f5c7aSCorentin Chary    vnc_jpeg=yes
26182f6f5c7aSCorentin Chary    libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
2619ca273d58SPaolo Bonzini    QEMU_CFLAGS="$QEMU_CFLAGS $vnc_jpeg_cflags"
26202f6f5c7aSCorentin Chary  else
26212f6f5c7aSCorentin Chary    if test "$vnc_jpeg" = "yes" ; then
262221684af0SStewart Smith      feature_not_found "vnc-jpeg" "Install libjpeg-turbo devel"
26232f6f5c7aSCorentin Chary    fi
26242f6f5c7aSCorentin Chary    vnc_jpeg=no
26252f6f5c7aSCorentin Chary  fi
26262f6f5c7aSCorentin Charyfi
26272f6f5c7aSCorentin Chary
26282f6f5c7aSCorentin Chary##########################################
2629efe556adSCorentin Chary# VNC PNG detection
2630821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_png" != "no" ; then
2631efe556adSCorentin Charycat > $TMPC <<EOF
2632efe556adSCorentin Chary//#include <stdio.h>
2633efe556adSCorentin Chary#include <png.h>
2634832ce9c2SScott Wood#include <stddef.h>
2635efe556adSCorentin Charyint main(void) {
2636efe556adSCorentin Chary    png_structp png_ptr;
2637efe556adSCorentin Chary    png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
26387edc3fedSPeter Maydell    return png_ptr != 0;
2639efe556adSCorentin Chary}
2640efe556adSCorentin CharyEOF
264165d5d3f9SStefan Weil  if $pkg_config libpng --exists; then
264289138857SStefan Weil    vnc_png_cflags=$($pkg_config libpng --cflags)
264389138857SStefan Weil    vnc_png_libs=$($pkg_config libpng --libs)
26449af8025eSBrad  else
2645efe556adSCorentin Chary    vnc_png_cflags=""
2646efe556adSCorentin Chary    vnc_png_libs="-lpng"
26479af8025eSBrad  fi
2648efe556adSCorentin Chary  if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
2649efe556adSCorentin Chary    vnc_png=yes
2650efe556adSCorentin Chary    libs_softmmu="$vnc_png_libs $libs_softmmu"
26519af8025eSBrad    QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags"
2652efe556adSCorentin Chary  else
2653efe556adSCorentin Chary    if test "$vnc_png" = "yes" ; then
265421684af0SStewart Smith      feature_not_found "vnc-png" "Install libpng devel"
2655efe556adSCorentin Chary    fi
2656efe556adSCorentin Chary    vnc_png=no
2657efe556adSCorentin Chary  fi
2658efe556adSCorentin Charyfi
2659efe556adSCorentin Chary
2660efe556adSCorentin Chary##########################################
266176655d6dSaliguori# fnmatch() probe, used for ACL routines
266276655d6dSaliguorifnmatch="no"
266376655d6dSaliguoricat > $TMPC << EOF
266476655d6dSaliguori#include <fnmatch.h>
266576655d6dSaliguoriint main(void)
266676655d6dSaliguori{
266776655d6dSaliguori    fnmatch("foo", "foo", 0);
266876655d6dSaliguori    return 0;
266976655d6dSaliguori}
267076655d6dSaliguoriEOF
267152166aa0SJuan Quintelaif compile_prog "" "" ; then
267276655d6dSaliguori   fnmatch="yes"
267376655d6dSaliguorifi
267476655d6dSaliguori
267576655d6dSaliguori##########################################
2676ee682d27SStefan Weil# uuid_generate() probe, used for vdi block driver
26772d16c8e9SPeter Maydell# Note that on some systems (notably MacOSX) no extra library
26782d16c8e9SPeter Maydell# need be linked to get the uuid functions.
2679ee682d27SStefan Weilif test "$uuid" != "no" ; then
2680ee682d27SStefan Weil  uuid_libs="-luuid"
2681ee682d27SStefan Weil  cat > $TMPC << EOF
2682ee682d27SStefan Weil#include <uuid/uuid.h>
2683ee682d27SStefan Weilint main(void)
2684ee682d27SStefan Weil{
2685ee682d27SStefan Weil    uuid_t my_uuid;
2686ee682d27SStefan Weil    uuid_generate(my_uuid);
2687ee682d27SStefan Weil    return 0;
2688ee682d27SStefan Weil}
2689ee682d27SStefan WeilEOF
26902d16c8e9SPeter Maydell  if compile_prog "" "" ; then
26912d16c8e9SPeter Maydell    uuid="yes"
26922d16c8e9SPeter Maydell  elif compile_prog "" "$uuid_libs" ; then
2693ee682d27SStefan Weil    uuid="yes"
2694ee682d27SStefan Weil    libs_softmmu="$uuid_libs $libs_softmmu"
2695ee682d27SStefan Weil    libs_tools="$uuid_libs $libs_tools"
2696ee682d27SStefan Weil  else
2697ee682d27SStefan Weil    if test "$uuid" = "yes" ; then
269821684af0SStewart Smith      feature_not_found "uuid" "Install libuuid devel"
2699ee682d27SStefan Weil    fi
2700ee682d27SStefan Weil    uuid=no
2701ee682d27SStefan Weil  fi
2702ee682d27SStefan Weilfi
2703ee682d27SStefan Weil
27044f18b782SJeff Codyif test "$vhdx" = "yes" ; then
27054f18b782SJeff Cody    if test "$uuid" = "no" ; then
27064f18b782SJeff Cody        error_exit "uuid required for VHDX support"
27074f18b782SJeff Cody    fi
27084f18b782SJeff Codyelif test "$vhdx" != "no" ; then
27094f18b782SJeff Cody    if test "$uuid" = "yes" ; then
27104f18b782SJeff Cody        vhdx=yes
27114f18b782SJeff Cody    else
27124f18b782SJeff Cody        vhdx=no
27134f18b782SJeff Cody    fi
27144f18b782SJeff Codyfi
27154f18b782SJeff Cody
2716ee682d27SStefan Weil##########################################
2717dce512deSChristoph Hellwig# xfsctl() probe, used for raw-posix
2718dce512deSChristoph Hellwigif test "$xfs" != "no" ; then
2719dce512deSChristoph Hellwig  cat > $TMPC << EOF
2720ffc41d10SStefan Weil#include <stddef.h>  /* NULL */
2721dce512deSChristoph Hellwig#include <xfs/xfs.h>
2722dce512deSChristoph Hellwigint main(void)
2723dce512deSChristoph Hellwig{
2724dce512deSChristoph Hellwig    xfsctl(NULL, 0, 0, NULL);
2725dce512deSChristoph Hellwig    return 0;
2726dce512deSChristoph Hellwig}
2727dce512deSChristoph HellwigEOF
2728dce512deSChristoph Hellwig  if compile_prog "" "" ; then
2729dce512deSChristoph Hellwig    xfs="yes"
2730dce512deSChristoph Hellwig  else
2731dce512deSChristoph Hellwig    if test "$xfs" = "yes" ; then
273221684af0SStewart Smith      feature_not_found "xfs" "Instal xfsprogs/xfslibs devel"
2733dce512deSChristoph Hellwig    fi
2734dce512deSChristoph Hellwig    xfs=no
2735dce512deSChristoph Hellwig  fi
2736dce512deSChristoph Hellwigfi
2737dce512deSChristoph Hellwig
2738dce512deSChristoph Hellwig##########################################
27398a16d273Sths# vde libraries probe
2740dfb278bdSJuan Quintelaif test "$vde" != "no" ; then
27414baae0acSJuan Quintela  vde_libs="-lvdeplug"
27428a16d273Sths  cat > $TMPC << EOF
27438a16d273Sths#include <libvdeplug.h>
27444a7f0e06Spbrookint main(void)
27454a7f0e06Spbrook{
27464a7f0e06Spbrook    struct vde_open_args a = {0, 0, 0};
2747fea08e08SPeter Maydell    char s[] = "";
2748fea08e08SPeter Maydell    vde_open(s, s, &a);
27494a7f0e06Spbrook    return 0;
27504a7f0e06Spbrook}
27518a16d273SthsEOF
275252166aa0SJuan Quintela  if compile_prog "" "$vde_libs" ; then
27534baae0acSJuan Quintela    vde=yes
27548e02e54cSJuan Quintela    libs_softmmu="$vde_libs $libs_softmmu"
27558e02e54cSJuan Quintela    libs_tools="$vde_libs $libs_tools"
2756dfb278bdSJuan Quintela  else
2757dfb278bdSJuan Quintela    if test "$vde" = "yes" ; then
275821684af0SStewart Smith      feature_not_found "vde" "Install vde (Virtual Distributed Ethernet) devel"
2759dfb278bdSJuan Quintela    fi
2760dfb278bdSJuan Quintela    vde=no
27618a16d273Sths  fi
27628a16d273Sthsfi
27638a16d273Sths
27648a16d273Sths##########################################
27650a985b37SVincenzo Maffione# netmap support probe
27660a985b37SVincenzo Maffione# Apart from looking for netmap headers, we make sure that the host API version
27670a985b37SVincenzo Maffione# supports the netmap backend (>=11). The upper bound (15) is meant to simulate
27680a985b37SVincenzo Maffione# a minor/major version number. Minor new features will be marked with values up
27690a985b37SVincenzo Maffione# to 15, and if something happens that requires a change to the backend we will
27700a985b37SVincenzo Maffione# move above 15, submit the backend fixes and modify this two bounds.
277158952137SVincenzo Maffioneif test "$netmap" != "no" ; then
277258952137SVincenzo Maffione  cat > $TMPC << EOF
277358952137SVincenzo Maffione#include <inttypes.h>
277458952137SVincenzo Maffione#include <net/if.h>
277558952137SVincenzo Maffione#include <net/netmap.h>
277658952137SVincenzo Maffione#include <net/netmap_user.h>
27770a985b37SVincenzo Maffione#if (NETMAP_API < 11) || (NETMAP_API > 15)
27780a985b37SVincenzo Maffione#error
27790a985b37SVincenzo Maffione#endif
278058952137SVincenzo Maffioneint main(void) { return 0; }
278158952137SVincenzo MaffioneEOF
278258952137SVincenzo Maffione  if compile_prog "" "" ; then
278358952137SVincenzo Maffione    netmap=yes
278458952137SVincenzo Maffione  else
278558952137SVincenzo Maffione    if test "$netmap" = "yes" ; then
278658952137SVincenzo Maffione      feature_not_found "netmap"
278758952137SVincenzo Maffione    fi
278858952137SVincenzo Maffione    netmap=no
278958952137SVincenzo Maffione  fi
279058952137SVincenzo Maffionefi
279158952137SVincenzo Maffione
279258952137SVincenzo Maffione##########################################
279347e98658SCorey Bryant# libcap-ng library probe
279447e98658SCorey Bryantif test "$cap_ng" != "no" ; then
279547e98658SCorey Bryant  cap_libs="-lcap-ng"
279647e98658SCorey Bryant  cat > $TMPC << EOF
279747e98658SCorey Bryant#include <cap-ng.h>
279847e98658SCorey Bryantint main(void)
279947e98658SCorey Bryant{
280047e98658SCorey Bryant    capng_capability_to_name(CAPNG_EFFECTIVE);
280147e98658SCorey Bryant    return 0;
280247e98658SCorey Bryant}
280347e98658SCorey BryantEOF
280447e98658SCorey Bryant  if compile_prog "" "$cap_libs" ; then
280547e98658SCorey Bryant    cap_ng=yes
280647e98658SCorey Bryant    libs_tools="$cap_libs $libs_tools"
280747e98658SCorey Bryant  else
280847e98658SCorey Bryant    if test "$cap_ng" = "yes" ; then
280921684af0SStewart Smith      feature_not_found "cap_ng" "Install libcap-ng devel"
281047e98658SCorey Bryant    fi
281147e98658SCorey Bryant    cap_ng=no
281247e98658SCorey Bryant  fi
281347e98658SCorey Bryantfi
281447e98658SCorey Bryant
281547e98658SCorey Bryant##########################################
2816c2de5c91Smalc# Sound support libraries probe
28178f28f3fbSths
2818c2de5c91Smalcaudio_drv_probe()
2819c2de5c91Smalc{
2820c2de5c91Smalc    drv=$1
2821c2de5c91Smalc    hdr=$2
2822c2de5c91Smalc    lib=$3
2823c2de5c91Smalc    exp=$4
2824c2de5c91Smalc    cfl=$5
28258f28f3fbSths        cat > $TMPC << EOF
2826c2de5c91Smalc#include <$hdr>
2827c2de5c91Smalcint main(void) { $exp }
28288f28f3fbSthsEOF
282952166aa0SJuan Quintela    if compile_prog "$cfl" "$lib" ; then
28308f28f3fbSths        :
28318f28f3fbSths    else
283276ad07a4SPeter Maydell        error_exit "$drv check failed" \
283376ad07a4SPeter Maydell            "Make sure to have the $drv libs and headers installed."
28348f28f3fbSths    fi
2835c2de5c91Smalc}
2836c2de5c91Smalc
283789138857SStefan Weilaudio_drv_list=$(echo "$audio_drv_list" | sed -e 's/,/ /g')
2838c2de5c91Smalcfor drv in $audio_drv_list; do
2839c2de5c91Smalc    case $drv in
2840c2de5c91Smalc    alsa)
2841c2de5c91Smalc    audio_drv_probe $drv alsa/asoundlib.h -lasound \
2842e35bcb0cSStefan Weil        "return snd_pcm_close((snd_pcm_t *)0);"
2843a4bf6780SJuan Quintela    libs_softmmu="-lasound $libs_softmmu"
2844c2de5c91Smalc    ;;
2845c2de5c91Smalc
2846b8e59f18Smalc    pa)
2847e58ff62dSPeter Krempa    audio_drv_probe $drv pulse/pulseaudio.h "-lpulse" \
2848e58ff62dSPeter Krempa        "pa_context_set_source_output_volume(NULL, 0, NULL, NULL, NULL); return 0;"
2849a394aed2SMarc-André Lureau    libs_softmmu="-lpulse $libs_softmmu"
285067f86e8eSJuan Quintela    audio_pt_int="yes"
2851b8e59f18Smalc    ;;
2852b8e59f18Smalc
2853997e690aSJuan Quintela    coreaudio)
2854997e690aSJuan Quintela      libs_softmmu="-framework CoreAudio $libs_softmmu"
2855997e690aSJuan Quintela    ;;
2856997e690aSJuan Quintela
2857a4bf6780SJuan Quintela    dsound)
2858a4bf6780SJuan Quintela      libs_softmmu="-lole32 -ldxguid $libs_softmmu"
2859d5631638Smalc      audio_win_int="yes"
2860a4bf6780SJuan Quintela    ;;
2861a4bf6780SJuan Quintela
2862a4bf6780SJuan Quintela    oss)
2863a4bf6780SJuan Quintela      libs_softmmu="$oss_lib $libs_softmmu"
2864a4bf6780SJuan Quintela    ;;
2865a4bf6780SJuan Quintela
2866a4bf6780SJuan Quintela    sdl|wav)
28672f6a1ab0Sblueswir1    # XXX: Probes for CoreAudio, DirectSound, SDL(?)
28682f6a1ab0Sblueswir1    ;;
28692f6a1ab0Sblueswir1
2870e4c63a6aSmalc    *)
28711c9b2a52Smalc    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
287276ad07a4SPeter Maydell        error_exit "Unknown driver '$drv' selected" \
287376ad07a4SPeter Maydell            "Possible drivers are: $audio_possible_drivers"
2874e4c63a6aSmalc    }
2875e4c63a6aSmalc    ;;
2876c2de5c91Smalc    esac
2877c2de5c91Smalcdone
28788f28f3fbSths
28794d3b6f6eSbalrog##########################################
28802e4d9fb1Saurel32# BrlAPI probe
28812e4d9fb1Saurel32
28824ffcedb6SJuan Quintelaif test "$brlapi" != "no" ; then
2883eb82284fSJuan Quintela  brlapi_libs="-lbrlapi"
28842e4d9fb1Saurel32  cat > $TMPC << EOF
28852e4d9fb1Saurel32#include <brlapi.h>
2886832ce9c2SScott Wood#include <stddef.h>
28872e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
28882e4d9fb1Saurel32EOF
288952166aa0SJuan Quintela  if compile_prog "" "$brlapi_libs" ; then
28902e4d9fb1Saurel32    brlapi=yes
2891264606b3SJuan Quintela    libs_softmmu="$brlapi_libs $libs_softmmu"
28924ffcedb6SJuan Quintela  else
28934ffcedb6SJuan Quintela    if test "$brlapi" = "yes" ; then
289421684af0SStewart Smith      feature_not_found "brlapi" "Install brlapi devel"
28954ffcedb6SJuan Quintela    fi
28964ffcedb6SJuan Quintela    brlapi=no
2897eb82284fSJuan Quintela  fi
2898eb82284fSJuan Quintelafi
28992e4d9fb1Saurel32
29002e4d9fb1Saurel32##########################################
29014d3b6f6eSbalrog# curses probe
2902a3605bf6SMichael Tokarevif test "$curses" != "no" ; then
2903e095e2f3SStefan Weil  if test "$mingw32" = "yes" ; then
2904ae629634SStefan Weil    curses_list="$($pkg_config --libs ncurses 2>/dev/null):-lpdcurses"
2905e095e2f3SStefan Weil  else
2906cfeda5f4SEd Maste    curses_list="$($pkg_config --libs ncurses 2>/dev/null):-lncurses:-lcurses"
2907e095e2f3SStefan Weil  fi
2908c584a6d0SJuan Quintela  curses_found=no
29094d3b6f6eSbalrog  cat > $TMPC << EOF
29104d3b6f6eSbalrog#include <curses.h>
2911ef9a2524SStefan Weilint main(void) {
2912ef9a2524SStefan Weil  const char *s = curses_version();
2913ef9a2524SStefan Weil  resize_term(0, 0);
2914ef9a2524SStefan Weil  return s != 0;
2915ef9a2524SStefan Weil}
29164d3b6f6eSbalrogEOF
2917ecbe251fSVadim Evard  IFS=:
29184f78ef9aSJuan Quintela  for curses_lib in $curses_list; do
2919ecbe251fSVadim Evard    unset IFS
29204f78ef9aSJuan Quintela    if compile_prog "" "$curses_lib" ; then
2921c584a6d0SJuan Quintela      curses_found=yes
29224f78ef9aSJuan Quintela      libs_softmmu="$curses_lib $libs_softmmu"
29234f78ef9aSJuan Quintela      break
29244d3b6f6eSbalrog    fi
29254f78ef9aSJuan Quintela  done
2926ecbe251fSVadim Evard  unset IFS
2927c584a6d0SJuan Quintela  if test "$curses_found" = "yes" ; then
2928c584a6d0SJuan Quintela    curses=yes
2929c584a6d0SJuan Quintela  else
2930c584a6d0SJuan Quintela    if test "$curses" = "yes" ; then
293121684af0SStewart Smith      feature_not_found "curses" "Install ncurses devel"
2932c584a6d0SJuan Quintela    fi
2933c584a6d0SJuan Quintela    curses=no
2934c584a6d0SJuan Quintela  fi
29354f78ef9aSJuan Quintelafi
29364d3b6f6eSbalrog
2937414f0dabSblueswir1##########################################
2938769ce76dSAlexander Graf# curl probe
2939a3605bf6SMichael Tokarevif test "$curl" != "no" ; then
294065d5d3f9SStefan Weil  if $pkg_config libcurl --exists; then
2941a8bd70adSPaolo Bonzini    curlconfig="$pkg_config libcurl"
29424e2b0658SPaolo Bonzini  else
29434e2b0658SPaolo Bonzini    curlconfig=curl-config
29444e2b0658SPaolo Bonzini  fi
2945769ce76dSAlexander Graf  cat > $TMPC << EOF
2946769ce76dSAlexander Graf#include <curl/curl.h>
29470b862cedSPeter Maydellint main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; }
2948769ce76dSAlexander GrafEOF
294989138857SStefan Weil  curl_cflags=$($curlconfig --cflags 2>/dev/null)
295089138857SStefan Weil  curl_libs=$($curlconfig --libs 2>/dev/null)
2951b1d5a277SJuan Quintela  if compile_prog "$curl_cflags" "$curl_libs" ; then
2952769ce76dSAlexander Graf    curl=yes
2953788c8196SJuan Quintela  else
2954788c8196SJuan Quintela    if test "$curl" = "yes" ; then
295521684af0SStewart Smith      feature_not_found "curl" "Install libcurl devel"
2956788c8196SJuan Quintela    fi
2957788c8196SJuan Quintela    curl=no
2958769ce76dSAlexander Graf  fi
2959769ce76dSAlexander Graffi # test "$curl"
2960769ce76dSAlexander Graf
2961769ce76dSAlexander Graf##########################################
2962fb599c9aSbalrog# bluez support probe
2963a20a6f46SJuan Quintelaif test "$bluez" != "no" ; then
2964e820e3f4Sbalrog  cat > $TMPC << EOF
2965e820e3f4Sbalrog#include <bluetooth/bluetooth.h>
2966e820e3f4Sbalrogint main(void) { return bt_error(0); }
2967e820e3f4SbalrogEOF
296889138857SStefan Weil  bluez_cflags=$($pkg_config --cflags bluez 2>/dev/null)
296989138857SStefan Weil  bluez_libs=$($pkg_config --libs bluez 2>/dev/null)
297052166aa0SJuan Quintela  if compile_prog "$bluez_cflags" "$bluez_libs" ; then
2971a20a6f46SJuan Quintela    bluez=yes
2972e482d56aSJuan Quintela    libs_softmmu="$bluez_libs $libs_softmmu"
2973e820e3f4Sbalrog  else
2974a20a6f46SJuan Quintela    if test "$bluez" = "yes" ; then
297521684af0SStewart Smith      feature_not_found "bluez" "Install bluez-libs/libbluetooth devel"
2976a20a6f46SJuan Quintela    fi
2977e820e3f4Sbalrog    bluez="no"
2978e820e3f4Sbalrog  fi
2979fb599c9aSbalrogfi
2980fb599c9aSbalrog
2981fb599c9aSbalrog##########################################
2982e18df141SAnthony Liguori# glib support probe
2983a52d28afSPaolo Bonzini
2984f40685c6SJohn Snowglib_req_ver=2.22
2985aa0d1f44SPaolo Bonziniglib_modules=gthread-2.0
2986aa0d1f44SPaolo Bonziniif test "$modules" = yes; then
2987aa0d1f44SPaolo Bonzini    glib_modules="$glib_modules gmodule-2.0"
2988aa0d1f44SPaolo Bonzinifi
2989e26110cfSFam Zheng
2990aa0d1f44SPaolo Bonzinifor i in $glib_modules; do
2991e26110cfSFam Zheng    if $pkg_config --atleast-version=$glib_req_ver $i; then
299289138857SStefan Weil        glib_cflags=$($pkg_config --cflags $i)
299389138857SStefan Weil        glib_libs=$($pkg_config --libs $i)
2994ba1183daSFam Zheng        CFLAGS="$glib_cflags $CFLAGS"
299514015304SAnthony Liguori        LIBS="$glib_libs $LIBS"
2996957f1f99SMichael Roth        libs_qga="$glib_libs $libs_qga"
2997e18df141SAnthony Liguori    else
2998e26110cfSFam Zheng        error_exit "glib-$glib_req_ver $i is required to compile QEMU"
2999e26110cfSFam Zheng    fi
3000e26110cfSFam Zhengdone
3001e26110cfSFam Zheng
3002977a82abSDaniel P. Berrange# Sanity check that the current size_t matches the
3003977a82abSDaniel P. Berrange# size that glib thinks it should be. This catches
3004977a82abSDaniel P. Berrange# problems on multi-arch where people try to build
3005977a82abSDaniel P. Berrange# 32-bit QEMU while pointing at 64-bit glib headers
3006977a82abSDaniel P. Berrangecat > $TMPC <<EOF
3007977a82abSDaniel P. Berrange#include <glib.h>
3008977a82abSDaniel P. Berrange#include <unistd.h>
3009977a82abSDaniel P. Berrange
3010977a82abSDaniel P. Berrange#define QEMU_BUILD_BUG_ON(x) \
3011977a82abSDaniel P. Berrange  typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused));
3012977a82abSDaniel P. Berrange
3013977a82abSDaniel P. Berrangeint main(void) {
3014977a82abSDaniel P. Berrange   QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T);
3015977a82abSDaniel P. Berrange   return 0;
3016977a82abSDaniel P. Berrange}
3017977a82abSDaniel P. BerrangeEOF
3018977a82abSDaniel P. Berrange
30195919e032SStefan Weilif ! compile_prog "$CFLAGS" "$LIBS" ; then
3020977a82abSDaniel P. Berrange    error_exit "sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T."\
3021977a82abSDaniel P. Berrange               "You probably need to set PKG_CONFIG_LIBDIR"\
3022977a82abSDaniel P. Berrange	       "to point to the right pkg-config files for your"\
3023977a82abSDaniel P. Berrange	       "build target"
3024977a82abSDaniel P. Berrangefi
3025977a82abSDaniel P. Berrange
30269d41401bSMichael S. Tsirkin# g_test_trap_subprocess added in 2.38. Used by some tests.
30279d41401bSMichael S. Tsirkinglib_subprocess=yes
30289d41401bSMichael S. Tsirkinif ! $pkg_config --atleast-version=2.38 glib-2.0; then
30299d41401bSMichael S. Tsirkin    glib_subprocess=no
30309d41401bSMichael S. Tsirkinfi
30319d41401bSMichael S. Tsirkin
3032bbbf2e04SJohn Snow# Silence clang 3.5.0 warnings about glib attribute __alloc_size__ usage
3033bbbf2e04SJohn Snowcat > $TMPC << EOF
3034bbbf2e04SJohn Snow#include <glib.h>
3035bbbf2e04SJohn Snowint main(void) { return 0; }
3036bbbf2e04SJohn SnowEOF
3037bbbf2e04SJohn Snowif ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then
3038bbbf2e04SJohn Snow    if cc_has_warning_flag "-Wno-unknown-attributes"; then
3039bbbf2e04SJohn Snow        glib_cflags="-Wno-unknown-attributes $glib_cflags"
3040bbbf2e04SJohn Snow        CFLAGS="-Wno-unknown-attributes $CFLAGS"
3041bbbf2e04SJohn Snow    fi
3042bbbf2e04SJohn Snowfi
3043bbbf2e04SJohn Snow
3044e26110cfSFam Zheng##########################################
3045e26110cfSFam Zheng# SHA command probe for modules
3046e26110cfSFam Zhengif test "$modules" = yes; then
3047e26110cfSFam Zheng    shacmd_probe="sha1sum sha1 shasum"
3048e26110cfSFam Zheng    for c in $shacmd_probe; do
30498ccefb91SFam Zheng        if has $c; then
3050e26110cfSFam Zheng            shacmd="$c"
3051e26110cfSFam Zheng            break
3052e26110cfSFam Zheng        fi
3053e26110cfSFam Zheng    done
3054e26110cfSFam Zheng    if test "$shacmd" = ""; then
3055e26110cfSFam Zheng        error_exit "one of the checksum commands is required to enable modules: $shacmd_probe"
3056e26110cfSFam Zheng    fi
3057e18df141SAnthony Liguorifi
3058e18df141SAnthony Liguori
3059e18df141SAnthony Liguori##########################################
3060e2134eb9SGerd Hoffmann# pixman support probe
3061e2134eb9SGerd Hoffmann
3062e2134eb9SGerd Hoffmannif test "$pixman" = ""; then
306374880fe2SRobert Schiele  if test "$want_tools" = "no" -a "$softmmu" = "no"; then
306474880fe2SRobert Schiele    pixman="none"
3065236f282cSHu Tao  elif $pkg_config --atleast-version=0.21.8 pixman-1 > /dev/null 2>&1; then
3066e2134eb9SGerd Hoffmann    pixman="system"
3067e2134eb9SGerd Hoffmann  else
3068e2134eb9SGerd Hoffmann    pixman="internal"
3069e2134eb9SGerd Hoffmann  fi
3070e2134eb9SGerd Hoffmannfi
307174880fe2SRobert Schieleif test "$pixman" = "none"; then
307274880fe2SRobert Schiele  if test "$want_tools" != "no" -o "$softmmu" != "no"; then
307376ad07a4SPeter Maydell    error_exit "pixman disabled but system emulation or tools build" \
307476ad07a4SPeter Maydell        "enabled.  You can turn off pixman only if you also" \
307576ad07a4SPeter Maydell        "disable all system emulation targets and the tools" \
307676ad07a4SPeter Maydell        "build with '--disable-tools --disable-system'."
307774880fe2SRobert Schiele  fi
307874880fe2SRobert Schiele  pixman_cflags=
307974880fe2SRobert Schiele  pixman_libs=
308074880fe2SRobert Schieleelif test "$pixman" = "system"; then
3081236f282cSHu Tao  # pixman version has been checked above
308289138857SStefan Weil  pixman_cflags=$($pkg_config --cflags pixman-1)
308389138857SStefan Weil  pixman_libs=$($pkg_config --libs pixman-1)
3084e2134eb9SGerd Hoffmannelse
3085e2134eb9SGerd Hoffmann  if test ! -d ${source_path}/pixman/pixman; then
3086236f282cSHu Tao    error_exit "pixman >= 0.21.8 not present. Your options:" \
308776ad07a4SPeter Maydell        "  (1) Preferred: Install the pixman devel package (any recent" \
308876ad07a4SPeter Maydell        "      distro should have packages as Xorg needs pixman too)." \
308976ad07a4SPeter Maydell        "  (2) Fetch the pixman submodule, using:" \
309076ad07a4SPeter Maydell        "      git submodule update --init pixman"
3091e2134eb9SGerd Hoffmann  fi
30925ca9388aSGerd Hoffmann  mkdir -p pixman/pixman
30935ca9388aSGerd Hoffmann  pixman_cflags="-I\$(SRC_PATH)/pixman/pixman -I\$(BUILD_DIR)/pixman/pixman"
30945ca9388aSGerd Hoffmann  pixman_libs="-L\$(BUILD_DIR)/pixman/pixman/.libs -lpixman-1"
3095e2134eb9SGerd Hoffmannfi
3096e2134eb9SGerd Hoffmann
3097e2134eb9SGerd Hoffmann##########################################
309817bff52bSM. Mohan Kumar# libcap probe
309917bff52bSM. Mohan Kumar
310017bff52bSM. Mohan Kumarif test "$cap" != "no" ; then
310117bff52bSM. Mohan Kumar  cat > $TMPC <<EOF
310217bff52bSM. Mohan Kumar#include <stdio.h>
310317bff52bSM. Mohan Kumar#include <sys/capability.h>
3104cc939743SStefan Weilint main(void) { cap_t caps; caps = cap_init(); return caps != NULL; }
310517bff52bSM. Mohan KumarEOF
310617bff52bSM. Mohan Kumar  if compile_prog "" "-lcap" ; then
310717bff52bSM. Mohan Kumar    cap=yes
310817bff52bSM. Mohan Kumar  else
310917bff52bSM. Mohan Kumar    cap=no
311017bff52bSM. Mohan Kumar  fi
311117bff52bSM. Mohan Kumarfi
311217bff52bSM. Mohan Kumar
311317bff52bSM. Mohan Kumar##########################################
3114e5d355d1Saliguori# pthread probe
31154b29ec41SBradPTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2"
31163c529d93Saliguori
3117e5d355d1Saliguoripthread=no
3118414f0dabSblueswir1cat > $TMPC << EOF
31193c529d93Saliguori#include <pthread.h>
31207a42bbe4SStefan Weilstatic void *f(void *p) { return NULL; }
31217a42bbe4SStefan Weilint main(void) {
31227a42bbe4SStefan Weil  pthread_t thread;
31237a42bbe4SStefan Weil  pthread_create(&thread, 0, f, 0);
31247a42bbe4SStefan Weil  return 0;
31257a42bbe4SStefan Weil}
3126414f0dabSblueswir1EOF
3127bd00d539SAndreas Färberif compile_prog "" "" ; then
3128bd00d539SAndreas Färber  pthread=yes
3129bd00d539SAndreas Färberelse
3130de65fe0fSSebastian Herbszt  for pthread_lib in $PTHREADLIBS_LIST; do
313152166aa0SJuan Quintela    if compile_prog "" "$pthread_lib" ; then
3132e5d355d1Saliguori      pthread=yes
3133e3c56761SPeter Portante      found=no
3134e3c56761SPeter Portante      for lib_entry in $LIBS; do
3135e3c56761SPeter Portante        if test "$lib_entry" = "$pthread_lib"; then
3136e3c56761SPeter Portante          found=yes
3137e3c56761SPeter Portante          break
3138e3c56761SPeter Portante        fi
3139e3c56761SPeter Portante      done
3140e3c56761SPeter Portante      if test "$found" = "no"; then
31415572b539SJuan Quintela        LIBS="$pthread_lib $LIBS"
3142e3c56761SPeter Portante      fi
3143409437e1SDaniel P. Berrange      PTHREAD_LIB="$pthread_lib"
3144de65fe0fSSebastian Herbszt      break
3145414f0dabSblueswir1    fi
3146de65fe0fSSebastian Herbszt  done
3147bd00d539SAndreas Färberfi
3148414f0dabSblueswir1
31494617e593SAnthony Liguoriif test "$mingw32" != yes -a "$pthread" = no; then
315076ad07a4SPeter Maydell  error_exit "pthread check failed" \
315176ad07a4SPeter Maydell      "Make sure to have the pthread libs and headers installed."
3152e5d355d1Saliguorifi
3153e5d355d1Saliguori
31545c312079SDr. David Alan Gilbert# check for pthread_setname_np
31555c312079SDr. David Alan Gilbertpthread_setname_np=no
31565c312079SDr. David Alan Gilbertcat > $TMPC << EOF
31575c312079SDr. David Alan Gilbert#include <pthread.h>
31585c312079SDr. David Alan Gilbert
31595c312079SDr. David Alan Gilbertstatic void *f(void *p) { return NULL; }
31605c312079SDr. David Alan Gilbertint main(void)
31615c312079SDr. David Alan Gilbert{
31625c312079SDr. David Alan Gilbert    pthread_t thread;
31635c312079SDr. David Alan Gilbert    pthread_create(&thread, 0, f, 0);
31645c312079SDr. David Alan Gilbert    pthread_setname_np(thread, "QEMU");
31655c312079SDr. David Alan Gilbert    return 0;
31665c312079SDr. David Alan Gilbert}
31675c312079SDr. David Alan GilbertEOF
31685c312079SDr. David Alan Gilbertif compile_prog "" "$pthread_lib" ; then
31695c312079SDr. David Alan Gilbert  pthread_setname_np=yes
31705c312079SDr. David Alan Gilbertfi
31715c312079SDr. David Alan Gilbert
3172bf9298b9Saliguori##########################################
3173f27aaf4bSChristian Brunner# rbd probe
3174f27aaf4bSChristian Brunnerif test "$rbd" != "no" ; then
3175f27aaf4bSChristian Brunner  cat > $TMPC <<EOF
3176f27aaf4bSChristian Brunner#include <stdio.h>
3177ad32e9c0SJosh Durgin#include <rbd/librbd.h>
3178f27aaf4bSChristian Brunnerint main(void) {
3179ad32e9c0SJosh Durgin    rados_t cluster;
3180ad32e9c0SJosh Durgin    rados_create(&cluster, NULL);
3181f27aaf4bSChristian Brunner    return 0;
3182f27aaf4bSChristian Brunner}
3183f27aaf4bSChristian BrunnerEOF
3184ad32e9c0SJosh Durgin  rbd_libs="-lrbd -lrados"
3185f27aaf4bSChristian Brunner  if compile_prog "" "$rbd_libs" ; then
3186f27aaf4bSChristian Brunner    rbd=yes
3187f27aaf4bSChristian Brunner  else
3188f27aaf4bSChristian Brunner    if test "$rbd" = "yes" ; then
318921684af0SStewart Smith      feature_not_found "rados block device" "Install librbd/ceph devel"
3190f27aaf4bSChristian Brunner    fi
3191f27aaf4bSChristian Brunner    rbd=no
3192f27aaf4bSChristian Brunner  fi
3193f27aaf4bSChristian Brunnerfi
3194f27aaf4bSChristian Brunner
3195f27aaf4bSChristian Brunner##########################################
31960a12ec87SRichard W.M. Jones# libssh2 probe
31974fc16838SRichard W.M. Jonesmin_libssh2_version=1.2.8
31980a12ec87SRichard W.M. Jonesif test "$libssh2" != "no" ; then
319965d5d3f9SStefan Weil  if $pkg_config --atleast-version=$min_libssh2_version libssh2; then
320089138857SStefan Weil    libssh2_cflags=$($pkg_config libssh2 --cflags)
320189138857SStefan Weil    libssh2_libs=$($pkg_config libssh2 --libs)
32020a12ec87SRichard W.M. Jones    libssh2=yes
32030a12ec87SRichard W.M. Jones  else
32040a12ec87SRichard W.M. Jones    if test "$libssh2" = "yes" ; then
32054fc16838SRichard W.M. Jones      error_exit "libssh2 >= $min_libssh2_version required for --enable-libssh2"
32060a12ec87SRichard W.M. Jones    fi
32070a12ec87SRichard W.M. Jones    libssh2=no
32080a12ec87SRichard W.M. Jones  fi
32090a12ec87SRichard W.M. Jonesfi
32100a12ec87SRichard W.M. Jones
32110a12ec87SRichard W.M. Jones##########################################
32129a2d462eSRichard W.M. Jones# libssh2_sftp_fsync probe
32139a2d462eSRichard W.M. Jones
32149a2d462eSRichard W.M. Jonesif test "$libssh2" = "yes"; then
32159a2d462eSRichard W.M. Jones  cat > $TMPC <<EOF
32169a2d462eSRichard W.M. Jones#include <stdio.h>
32179a2d462eSRichard W.M. Jones#include <libssh2.h>
32189a2d462eSRichard W.M. Jones#include <libssh2_sftp.h>
32199a2d462eSRichard W.M. Jonesint main(void) {
32209a2d462eSRichard W.M. Jones    LIBSSH2_SESSION *session;
32219a2d462eSRichard W.M. Jones    LIBSSH2_SFTP *sftp;
32229a2d462eSRichard W.M. Jones    LIBSSH2_SFTP_HANDLE *sftp_handle;
32239a2d462eSRichard W.M. Jones    session = libssh2_session_init ();
32249a2d462eSRichard W.M. Jones    sftp = libssh2_sftp_init (session);
32259a2d462eSRichard W.M. Jones    sftp_handle = libssh2_sftp_open (sftp, "/", 0, 0);
32269a2d462eSRichard W.M. Jones    libssh2_sftp_fsync (sftp_handle);
32279a2d462eSRichard W.M. Jones    return 0;
32289a2d462eSRichard W.M. Jones}
32299a2d462eSRichard W.M. JonesEOF
32309a2d462eSRichard W.M. Jones  # libssh2_cflags/libssh2_libs defined in previous test.
32319a2d462eSRichard W.M. Jones  if compile_prog "$libssh2_cflags" "$libssh2_libs" ; then
32329a2d462eSRichard W.M. Jones    QEMU_CFLAGS="-DHAS_LIBSSH2_SFTP_FSYNC $QEMU_CFLAGS"
32339a2d462eSRichard W.M. Jones  fi
32349a2d462eSRichard W.M. Jonesfi
32359a2d462eSRichard W.M. Jones
32369a2d462eSRichard W.M. Jones##########################################
32375c6c3a6cSChristoph Hellwig# linux-aio probe
32385c6c3a6cSChristoph Hellwig
32395c6c3a6cSChristoph Hellwigif test "$linux_aio" != "no" ; then
32405c6c3a6cSChristoph Hellwig  cat > $TMPC <<EOF
32415c6c3a6cSChristoph Hellwig#include <libaio.h>
32425c6c3a6cSChristoph Hellwig#include <sys/eventfd.h>
3243832ce9c2SScott Wood#include <stddef.h>
32445c6c3a6cSChristoph Hellwigint main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
32455c6c3a6cSChristoph HellwigEOF
32465c6c3a6cSChristoph Hellwig  if compile_prog "" "-laio" ; then
32475c6c3a6cSChristoph Hellwig    linux_aio=yes
32485c6c3a6cSChristoph Hellwig  else
32495c6c3a6cSChristoph Hellwig    if test "$linux_aio" = "yes" ; then
325021684af0SStewart Smith      feature_not_found "linux AIO" "Install libaio devel"
32515c6c3a6cSChristoph Hellwig    fi
32523cfcae3cSLuiz Capitulino    linux_aio=no
32535c6c3a6cSChristoph Hellwig  fi
32545c6c3a6cSChristoph Hellwigfi
32555c6c3a6cSChristoph Hellwig
32565c6c3a6cSChristoph Hellwig##########################################
32573b8acc11SPaolo Bonzini# TPM passthrough is only on x86 Linux
32583b8acc11SPaolo Bonzini
32593b8acc11SPaolo Bonziniif test "$targetos" = Linux && test "$cpu" = i386 -o "$cpu" = x86_64; then
32603b8acc11SPaolo Bonzini  tpm_passthrough=$tpm
32613b8acc11SPaolo Bonzinielse
32623b8acc11SPaolo Bonzini  tpm_passthrough=no
32633b8acc11SPaolo Bonzinifi
32643b8acc11SPaolo Bonzini
32653b8acc11SPaolo Bonzini##########################################
3266758e8e38SVenkateswararao Jujjuri (JV)# attr probe
3267758e8e38SVenkateswararao Jujjuri (JV)
3268758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" != "no" ; then
3269758e8e38SVenkateswararao Jujjuri (JV)  cat > $TMPC <<EOF
3270758e8e38SVenkateswararao Jujjuri (JV)#include <stdio.h>
3271758e8e38SVenkateswararao Jujjuri (JV)#include <sys/types.h>
3272f2338fb4SPavel Borzenkov#ifdef CONFIG_LIBATTR
3273f2338fb4SPavel Borzenkov#include <attr/xattr.h>
3274f2338fb4SPavel Borzenkov#else
32754f26f2b6SAvi Kivity#include <sys/xattr.h>
3276f2338fb4SPavel Borzenkov#endif
3277758e8e38SVenkateswararao Jujjuri (JV)int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
3278758e8e38SVenkateswararao Jujjuri (JV)EOF
32794f26f2b6SAvi Kivity  if compile_prog "" "" ; then
32804f26f2b6SAvi Kivity    attr=yes
32814f26f2b6SAvi Kivity  # Older distros have <attr/xattr.h>, and need -lattr:
3282f2338fb4SPavel Borzenkov  elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then
3283758e8e38SVenkateswararao Jujjuri (JV)    attr=yes
3284758e8e38SVenkateswararao Jujjuri (JV)    LIBS="-lattr $LIBS"
32854f26f2b6SAvi Kivity    libattr=yes
3286758e8e38SVenkateswararao Jujjuri (JV)  else
3287758e8e38SVenkateswararao Jujjuri (JV)    if test "$attr" = "yes" ; then
328821684af0SStewart Smith      feature_not_found "ATTR" "Install libc6 or libattr devel"
3289758e8e38SVenkateswararao Jujjuri (JV)    fi
3290758e8e38SVenkateswararao Jujjuri (JV)    attr=no
3291758e8e38SVenkateswararao Jujjuri (JV)  fi
3292758e8e38SVenkateswararao Jujjuri (JV)fi
3293758e8e38SVenkateswararao Jujjuri (JV)
3294758e8e38SVenkateswararao Jujjuri (JV)##########################################
3295bf9298b9Saliguori# iovec probe
3296bf9298b9Saliguoricat > $TMPC <<EOF
3297db34f0b3Sblueswir1#include <sys/types.h>
3298bf9298b9Saliguori#include <sys/uio.h>
3299db34f0b3Sblueswir1#include <unistd.h>
3300f91f9beeSStefan Weilint main(void) { return sizeof(struct iovec); }
3301bf9298b9SaliguoriEOF
3302bf9298b9Saliguoriiovec=no
330352166aa0SJuan Quintelaif compile_prog "" "" ; then
3304bf9298b9Saliguori  iovec=yes
3305bf9298b9Saliguorifi
3306bf9298b9Saliguori
3307f652e6afSaurel32##########################################
3308ceb42de8Saliguori# preadv probe
3309ceb42de8Saliguoricat > $TMPC <<EOF
3310ceb42de8Saliguori#include <sys/types.h>
3311ceb42de8Saliguori#include <sys/uio.h>
3312ceb42de8Saliguori#include <unistd.h>
3313c075a723SBlue Swirlint main(void) { return preadv(0, 0, 0, 0); }
3314ceb42de8SaliguoriEOF
3315ceb42de8Saliguoripreadv=no
331652166aa0SJuan Quintelaif compile_prog "" "" ; then
3317ceb42de8Saliguori  preadv=yes
3318ceb42de8Saliguorifi
3319ceb42de8Saliguori
3320ceb42de8Saliguori##########################################
3321f652e6afSaurel32# fdt probe
3322e169e1e1SPeter Maydell# fdt support is mandatory for at least some target architectures,
3323e169e1e1SPeter Maydell# so insist on it if we're building those system emulators.
3324e169e1e1SPeter Maydellfdt_required=no
3325e169e1e1SPeter Maydellfor target in $target_list; do
3326e169e1e1SPeter Maydell  case $target in
33276a49fa95SAlexander Graf    aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu)
3328e169e1e1SPeter Maydell      fdt_required=yes
3329e169e1e1SPeter Maydell    ;;
3330e169e1e1SPeter Maydell  esac
3331e169e1e1SPeter Maydelldone
3332e169e1e1SPeter Maydell
3333e169e1e1SPeter Maydellif test "$fdt_required" = "yes"; then
3334e169e1e1SPeter Maydell  if test "$fdt" = "no"; then
3335e169e1e1SPeter Maydell    error_exit "fdt disabled but some requested targets require it." \
3336e169e1e1SPeter Maydell      "You can turn off fdt only if you also disable all the system emulation" \
3337e169e1e1SPeter Maydell      "targets which need it (by specifying a cut down --target-list)."
3338e169e1e1SPeter Maydell  fi
3339e169e1e1SPeter Maydell  fdt=yes
3340e169e1e1SPeter Maydellfi
3341e169e1e1SPeter Maydell
33422df87df7SJuan Quintelaif test "$fdt" != "no" ; then
3343b41af4baSJuan Quintela  fdt_libs="-lfdt"
334496ce6545SPeter Crosthwaite  # explicitly check for libfdt_env.h as it is missing in some stable installs
334531ce0adbSThomas Huth  # and test for required functions to make sure we are on a version >= 1.4.0
3346f652e6afSaurel32  cat > $TMPC << EOF
334731ce0adbSThomas Huth#include <libfdt.h>
334896ce6545SPeter Crosthwaite#include <libfdt_env.h>
334931ce0adbSThomas Huthint main(void) { fdt_get_property_by_offset(0, 0, 0); return 0; }
3350f652e6afSaurel32EOF
335152166aa0SJuan Quintela  if compile_prog "" "$fdt_libs" ; then
3352a540f158SPeter Crosthwaite    # system DTC is good - use it
3353f652e6afSaurel32    fdt=yes
3354a540f158SPeter Crosthwaite  elif test -d ${source_path}/dtc/libfdt ; then
3355a540f158SPeter Crosthwaite    # have submodule DTC - use it
3356a540f158SPeter Crosthwaite    fdt=yes
3357a540f158SPeter Crosthwaite    dtc_internal="yes"
3358a540f158SPeter Crosthwaite    mkdir -p dtc
3359cab00a5aSMichael S. Tsirkin    if [ "$pwd_is_source_path" != "y" ] ; then
3360a540f158SPeter Crosthwaite       symlink "$source_path/dtc/Makefile" "dtc/Makefile"
3361a540f158SPeter Crosthwaite       symlink "$source_path/dtc/scripts" "dtc/scripts"
33622df87df7SJuan Quintela    fi
3363a540f158SPeter Crosthwaite    fdt_cflags="-I\$(SRC_PATH)/dtc/libfdt"
3364a540f158SPeter Crosthwaite    fdt_libs="-L\$(BUILD_DIR)/dtc/libfdt $fdt_libs"
3365a540f158SPeter Crosthwaite  elif test "$fdt" = "yes" ; then
3366a540f158SPeter Crosthwaite    # have neither and want - prompt for system/submodule install
336731ce0adbSThomas Huth    error_exit "DTC (libfdt) version >= 1.4.0 not present. Your options:" \
33683f281822SStewart Smith        "  (1) Preferred: Install the DTC (libfdt) devel package" \
3369a540f158SPeter Crosthwaite        "  (2) Fetch the DTC submodule, using:" \
3370a540f158SPeter Crosthwaite        "      git submodule update --init dtc"
3371a540f158SPeter Crosthwaite  else
3372a540f158SPeter Crosthwaite    # don't have and don't want
3373de3a354aSMichael Walle    fdt_libs=
33742df87df7SJuan Quintela    fdt=no
3375f652e6afSaurel32  fi
3376f652e6afSaurel32fi
3377f652e6afSaurel32
3378a540f158SPeter Crosthwaitelibs_softmmu="$libs_softmmu $fdt_libs"
3379a540f158SPeter Crosthwaite
338020ff075bSMichael Walle##########################################
3381fb719563SOGAWA Hirofumi# opengl probe (for sdl2, gtk, milkymist-tmu2)
3382b1546f32SGerd Hoffmann
3383da076ffeSGerd Hoffmannif test "$opengl" != "no" ; then
3384014cb152SGerd Hoffmann  opengl_pkgs="epoxy libdrm gbm"
3385fb719563SOGAWA Hirofumi  if $pkg_config $opengl_pkgs x11; then
3386f676c67eSJeremy White    opengl_cflags="$($pkg_config --cflags $opengl_pkgs) $x11_cflags"
3387f676c67eSJeremy White    opengl_libs="$($pkg_config --libs $opengl_pkgs) $x11_libs"
3388da076ffeSGerd Hoffmann    opengl=yes
3389925a0400SGerd Hoffmann    if test "$gtk" = "yes" && $pkg_config --exists "$gtkpackage >= 3.16"; then
3390925a0400SGerd Hoffmann        gtk_gl="yes"
3391925a0400SGerd Hoffmann    fi
339220ff075bSMichael Walle  else
3393da076ffeSGerd Hoffmann    if test "$opengl" = "yes" ; then
3394dcf30025SGerd Hoffmann      feature_not_found "opengl" "Please install opengl (mesa) devel pkgs: $opengl_pkgs"
339520ff075bSMichael Walle    fi
3396f676c67eSJeremy White    opengl_cflags=""
3397da076ffeSGerd Hoffmann    opengl_libs=""
3398da076ffeSGerd Hoffmann    opengl=no
339920ff075bSMichael Walle  fi
340020ff075bSMichael Wallefi
340120ff075bSMichael Walle
3402014cb152SGerd Hoffmannif test "$opengl" = "yes"; then
3403014cb152SGerd Hoffmann  cat > $TMPC << EOF
3404014cb152SGerd Hoffmann#include <epoxy/egl.h>
3405014cb152SGerd Hoffmann#ifndef EGL_MESA_image_dma_buf_export
3406014cb152SGerd Hoffmann# error mesa/epoxy lacks support for dmabufs (mesa 10.6+)
3407014cb152SGerd Hoffmann#endif
3408014cb152SGerd Hoffmannint main(void) { return 0; }
3409014cb152SGerd HoffmannEOF
3410014cb152SGerd Hoffmann  if compile_prog "" "" ; then
3411014cb152SGerd Hoffmann    opengl_dmabuf=yes
3412014cb152SGerd Hoffmann  fi
3413014cb152SGerd Hoffmannfi
3414c9a12e75SChrysostomos Nanakos
3415c9a12e75SChrysostomos Nanakos##########################################
3416c9a12e75SChrysostomos Nanakos# archipelago probe
3417c9a12e75SChrysostomos Nanakosif test "$archipelago" != "no" ; then
3418c9a12e75SChrysostomos Nanakos    cat > $TMPC <<EOF
3419c9a12e75SChrysostomos Nanakos#include <stdio.h>
3420c9a12e75SChrysostomos Nanakos#include <xseg/xseg.h>
3421c9a12e75SChrysostomos Nanakos#include <xseg/protocol.h>
3422c9a12e75SChrysostomos Nanakosint main(void) {
3423c9a12e75SChrysostomos Nanakos    xseg_initialize();
3424c9a12e75SChrysostomos Nanakos    return 0;
3425c9a12e75SChrysostomos Nanakos}
3426c9a12e75SChrysostomos NanakosEOF
3427c9a12e75SChrysostomos Nanakos    archipelago_libs=-lxseg
3428c9a12e75SChrysostomos Nanakos    if compile_prog "" "$archipelago_libs"; then
3429c9a12e75SChrysostomos Nanakos        archipelago="yes"
3430c9a12e75SChrysostomos Nanakos        libs_tools="$archipelago_libs $libs_tools"
3431c9a12e75SChrysostomos Nanakos        libs_softmmu="$archipelago_libs $libs_softmmu"
34326a460ed1SStefan Hajnoczi
34336a460ed1SStefan Hajnoczi	echo "WARNING: Please check the licenses of QEMU and libxseg carefully."
34346a460ed1SStefan Hajnoczi	echo "GPLv3 versions of libxseg may not be compatible with QEMU's"
34356a460ed1SStefan Hajnoczi	echo "license and therefore prevent redistribution."
34366a460ed1SStefan Hajnoczi	echo
34376a460ed1SStefan Hajnoczi	echo "To disable Archipelago, use --disable-archipelago"
3438c9a12e75SChrysostomos Nanakos    else
3439c9a12e75SChrysostomos Nanakos      if test "$archipelago" = "yes" ; then
3440c9a12e75SChrysostomos Nanakos        feature_not_found "Archipelago backend support" "Install libxseg devel"
3441c9a12e75SChrysostomos Nanakos      fi
3442c9a12e75SChrysostomos Nanakos      archipelago="no"
3443c9a12e75SChrysostomos Nanakos    fi
3444c9a12e75SChrysostomos Nanakosfi
3445c9a12e75SChrysostomos Nanakos
3446c9a12e75SChrysostomos Nanakos
3447eb100396SBharata B Rao##########################################
3448eb100396SBharata B Rao# glusterfs probe
3449eb100396SBharata B Raoif test "$glusterfs" != "no" ; then
345065d5d3f9SStefan Weil  if $pkg_config --atleast-version=3 glusterfs-api; then
3451e01bee08SBharata B Rao    glusterfs="yes"
345289138857SStefan Weil    glusterfs_cflags=$($pkg_config --cflags glusterfs-api)
345389138857SStefan Weil    glusterfs_libs=$($pkg_config --libs glusterfs-api)
3454d85fa9ebSJeff Cody    if $pkg_config --atleast-version=4 glusterfs-api; then
3455d85fa9ebSJeff Cody      glusterfs_xlator_opt="yes"
3456d85fa9ebSJeff Cody    fi
345765d5d3f9SStefan Weil    if $pkg_config --atleast-version=5 glusterfs-api; then
34580c14fb47SBharata B Rao      glusterfs_discard="yes"
34590c14fb47SBharata B Rao    fi
34607c815372SBharata B Rao    if $pkg_config --atleast-version=6 glusterfs-api; then
34617c815372SBharata B Rao      glusterfs_zerofill="yes"
34627c815372SBharata B Rao    fi
3463eb100396SBharata B Rao  else
3464eb100396SBharata B Rao    if test "$glusterfs" = "yes" ; then
34658efc9363SHu Tao      feature_not_found "GlusterFS backend support" \
34668efc9363SHu Tao          "Install glusterfs-api devel >= 3"
3467eb100396SBharata B Rao    fi
3468e01bee08SBharata B Rao    glusterfs="no"
3469eb100396SBharata B Rao  fi
3470eb100396SBharata B Raofi
3471eb100396SBharata B Rao
347239386ac7Saurel32# Check for inotify functions when we are building linux-user
34733b3f24adSaurel32# emulator.  This is done because older glibc versions don't
34743b3f24adSaurel32# have syscall stubs for these implemented.  In that case we
34753b3f24adSaurel32# don't provide them even if kernel supports them.
34763b3f24adSaurel32#
34773b3f24adSaurel32inotify=no
34783b3f24adSaurel32cat > $TMPC << EOF
34793b3f24adSaurel32#include <sys/inotify.h>
34803b3f24adSaurel32
34813b3f24adSaurel32int
34823b3f24adSaurel32main(void)
34833b3f24adSaurel32{
34843b3f24adSaurel32	/* try to start inotify */
34858690e420Saurel32	return inotify_init();
34863b3f24adSaurel32}
34873b3f24adSaurel32EOF
348852166aa0SJuan Quintelaif compile_prog "" "" ; then
34893b3f24adSaurel32  inotify=yes
34903b3f24adSaurel32fi
34913b3f24adSaurel32
3492c05c7a73SRiku Voipioinotify1=no
3493c05c7a73SRiku Voipiocat > $TMPC << EOF
3494c05c7a73SRiku Voipio#include <sys/inotify.h>
3495c05c7a73SRiku Voipio
3496c05c7a73SRiku Voipioint
3497c05c7a73SRiku Voipiomain(void)
3498c05c7a73SRiku Voipio{
3499c05c7a73SRiku Voipio    /* try to start inotify */
3500c05c7a73SRiku Voipio    return inotify_init1(0);
3501c05c7a73SRiku Voipio}
3502c05c7a73SRiku VoipioEOF
3503c05c7a73SRiku Voipioif compile_prog "" "" ; then
3504c05c7a73SRiku Voipio  inotify1=yes
3505c05c7a73SRiku Voipiofi
3506c05c7a73SRiku Voipio
3507ebc996f3SRiku Voipio# check if utimensat and futimens are supported
3508ebc996f3SRiku Voipioutimens=no
3509ebc996f3SRiku Voipiocat > $TMPC << EOF
3510ebc996f3SRiku Voipio#define _ATFILE_SOURCE
3511ebc996f3SRiku Voipio#include <stddef.h>
3512ebc996f3SRiku Voipio#include <fcntl.h>
35133014ee00SPeter Maydell#include <sys/stat.h>
3514ebc996f3SRiku Voipio
3515ebc996f3SRiku Voipioint main(void)
3516ebc996f3SRiku Voipio{
3517ebc996f3SRiku Voipio    utimensat(AT_FDCWD, "foo", NULL, 0);
3518ebc996f3SRiku Voipio    futimens(0, NULL);
3519ebc996f3SRiku Voipio    return 0;
3520ebc996f3SRiku Voipio}
3521ebc996f3SRiku VoipioEOF
352252166aa0SJuan Quintelaif compile_prog "" "" ; then
3523ebc996f3SRiku Voipio  utimens=yes
3524ebc996f3SRiku Voipiofi
3525ebc996f3SRiku Voipio
3526099d6b0fSRiku Voipio# check if pipe2 is there
3527099d6b0fSRiku Voipiopipe2=no
3528099d6b0fSRiku Voipiocat > $TMPC << EOF
3529099d6b0fSRiku Voipio#include <unistd.h>
3530099d6b0fSRiku Voipio#include <fcntl.h>
3531099d6b0fSRiku Voipio
3532099d6b0fSRiku Voipioint main(void)
3533099d6b0fSRiku Voipio{
3534099d6b0fSRiku Voipio    int pipefd[2];
35359bca8162SBruce Rogers    return pipe2(pipefd, O_CLOEXEC);
3536099d6b0fSRiku Voipio}
3537099d6b0fSRiku VoipioEOF
353852166aa0SJuan Quintelaif compile_prog "" "" ; then
3539099d6b0fSRiku Voipio  pipe2=yes
3540099d6b0fSRiku Voipiofi
3541099d6b0fSRiku Voipio
354240ff6d7eSKevin Wolf# check if accept4 is there
354340ff6d7eSKevin Wolfaccept4=no
354440ff6d7eSKevin Wolfcat > $TMPC << EOF
354540ff6d7eSKevin Wolf#include <sys/socket.h>
354640ff6d7eSKevin Wolf#include <stddef.h>
354740ff6d7eSKevin Wolf
354840ff6d7eSKevin Wolfint main(void)
354940ff6d7eSKevin Wolf{
355040ff6d7eSKevin Wolf    accept4(0, NULL, NULL, SOCK_CLOEXEC);
355140ff6d7eSKevin Wolf    return 0;
355240ff6d7eSKevin Wolf}
355340ff6d7eSKevin WolfEOF
355440ff6d7eSKevin Wolfif compile_prog "" "" ; then
355540ff6d7eSKevin Wolf  accept4=yes
355640ff6d7eSKevin Wolffi
355740ff6d7eSKevin Wolf
35583ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time.
35593ce34dfbSvibisreenivasansplice=no
35603ce34dfbSvibisreenivasancat > $TMPC << EOF
35613ce34dfbSvibisreenivasan#include <unistd.h>
35623ce34dfbSvibisreenivasan#include <fcntl.h>
35633ce34dfbSvibisreenivasan#include <limits.h>
35643ce34dfbSvibisreenivasan
35653ce34dfbSvibisreenivasanint main(void)
35663ce34dfbSvibisreenivasan{
356766ea0f22SStefan Weil    int len, fd = 0;
35683ce34dfbSvibisreenivasan    len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
35693ce34dfbSvibisreenivasan    splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
35703ce34dfbSvibisreenivasan    return 0;
35713ce34dfbSvibisreenivasan}
35723ce34dfbSvibisreenivasanEOF
357352166aa0SJuan Quintelaif compile_prog "" "" ; then
35743ce34dfbSvibisreenivasan  splice=yes
35753ce34dfbSvibisreenivasanfi
35763ce34dfbSvibisreenivasan
3577dcc38d1cSMarcelo Tosatti##########################################
3578a99d57bbSWanlong Gao# libnuma probe
3579a99d57bbSWanlong Gao
3580a99d57bbSWanlong Gaoif test "$numa" != "no" ; then
3581a99d57bbSWanlong Gao  cat > $TMPC << EOF
3582a99d57bbSWanlong Gao#include <numa.h>
3583a99d57bbSWanlong Gaoint main(void) { return numa_available(); }
3584a99d57bbSWanlong GaoEOF
3585a99d57bbSWanlong Gao
3586a99d57bbSWanlong Gao  if compile_prog "" "-lnuma" ; then
3587a99d57bbSWanlong Gao    numa=yes
3588a99d57bbSWanlong Gao    libs_softmmu="-lnuma $libs_softmmu"
3589a99d57bbSWanlong Gao  else
3590a99d57bbSWanlong Gao    if test "$numa" = "yes" ; then
3591a99d57bbSWanlong Gao      feature_not_found "numa" "install numactl devel"
3592a99d57bbSWanlong Gao    fi
3593a99d57bbSWanlong Gao    numa=no
3594a99d57bbSWanlong Gao  fi
3595a99d57bbSWanlong Gaofi
3596a99d57bbSWanlong Gao
35977b01cb97SAlexandre Derumierif test "$tcmalloc" = "yes" && test "$jemalloc" = "yes" ; then
35987b01cb97SAlexandre Derumier    echo "ERROR: tcmalloc && jemalloc can't be used at the same time"
35997b01cb97SAlexandre Derumier    exit 1
36007b01cb97SAlexandre Derumierfi
36017b01cb97SAlexandre Derumier
3602a99d57bbSWanlong Gao##########################################
36032847b469SFam Zheng# tcmalloc probe
36042847b469SFam Zheng
36052847b469SFam Zhengif test "$tcmalloc" = "yes" ; then
36062847b469SFam Zheng  cat > $TMPC << EOF
36072847b469SFam Zheng#include <stdlib.h>
36082847b469SFam Zhengint main(void) { malloc(1); return 0; }
36092847b469SFam ZhengEOF
36102847b469SFam Zheng
36112847b469SFam Zheng  if compile_prog "" "-ltcmalloc" ; then
36122847b469SFam Zheng    LIBS="-ltcmalloc $LIBS"
36132847b469SFam Zheng  else
36142847b469SFam Zheng    feature_not_found "tcmalloc" "install gperftools devel"
36152847b469SFam Zheng  fi
36162847b469SFam Zhengfi
36172847b469SFam Zheng
36182847b469SFam Zheng##########################################
36197b01cb97SAlexandre Derumier# jemalloc probe
36207b01cb97SAlexandre Derumier
36217b01cb97SAlexandre Derumierif test "$jemalloc" = "yes" ; then
36227b01cb97SAlexandre Derumier  cat > $TMPC << EOF
36237b01cb97SAlexandre Derumier#include <stdlib.h>
36247b01cb97SAlexandre Derumierint main(void) { malloc(1); return 0; }
36257b01cb97SAlexandre DerumierEOF
36267b01cb97SAlexandre Derumier
36277b01cb97SAlexandre Derumier  if compile_prog "" "-ljemalloc" ; then
36287b01cb97SAlexandre Derumier    LIBS="-ljemalloc $LIBS"
36297b01cb97SAlexandre Derumier  else
36307b01cb97SAlexandre Derumier    feature_not_found "jemalloc" "install jemalloc devel"
36317b01cb97SAlexandre Derumier  fi
36327b01cb97SAlexandre Derumierfi
36337b01cb97SAlexandre Derumier
36347b01cb97SAlexandre Derumier##########################################
3635dcc38d1cSMarcelo Tosatti# signalfd probe
3636dcc38d1cSMarcelo Tosattisignalfd="no"
3637dcc38d1cSMarcelo Tosatticat > $TMPC << EOF
3638dcc38d1cSMarcelo Tosatti#include <unistd.h>
3639dcc38d1cSMarcelo Tosatti#include <sys/syscall.h>
3640dcc38d1cSMarcelo Tosatti#include <signal.h>
3641dcc38d1cSMarcelo Tosattiint main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
3642dcc38d1cSMarcelo TosattiEOF
3643dcc38d1cSMarcelo Tosatti
3644dcc38d1cSMarcelo Tosattiif compile_prog "" "" ; then
3645dcc38d1cSMarcelo Tosatti  signalfd=yes
3646dcc38d1cSMarcelo Tosattifi
3647dcc38d1cSMarcelo Tosatti
3648c2882b96SRiku Voipio# check if eventfd is supported
3649c2882b96SRiku Voipioeventfd=no
3650c2882b96SRiku Voipiocat > $TMPC << EOF
3651c2882b96SRiku Voipio#include <sys/eventfd.h>
3652c2882b96SRiku Voipio
3653c2882b96SRiku Voipioint main(void)
3654c2882b96SRiku Voipio{
365555cc7f3eSStefan Weil    return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
3656c2882b96SRiku Voipio}
3657c2882b96SRiku VoipioEOF
3658c2882b96SRiku Voipioif compile_prog "" "" ; then
3659c2882b96SRiku Voipio  eventfd=yes
3660c2882b96SRiku Voipiofi
3661c2882b96SRiku Voipio
3662751bcc39SMarc-André Lureau# check if memfd is supported
3663751bcc39SMarc-André Lureaumemfd=no
3664751bcc39SMarc-André Lureaucat > $TMPC << EOF
3665751bcc39SMarc-André Lureau#include <sys/memfd.h>
3666751bcc39SMarc-André Lureau
3667751bcc39SMarc-André Lureauint main(void)
3668751bcc39SMarc-André Lureau{
3669751bcc39SMarc-André Lureau    return memfd_create("foo", MFD_ALLOW_SEALING);
3670751bcc39SMarc-André Lureau}
3671751bcc39SMarc-André LureauEOF
3672751bcc39SMarc-André Lureauif compile_prog "" "" ; then
3673751bcc39SMarc-André Lureau  memfd=yes
3674751bcc39SMarc-André Lureaufi
3675751bcc39SMarc-André Lureau
3676751bcc39SMarc-André Lureau
3677751bcc39SMarc-André Lureau
3678d0927938SUlrich Hecht# check for fallocate
3679d0927938SUlrich Hechtfallocate=no
3680d0927938SUlrich Hechtcat > $TMPC << EOF
3681d0927938SUlrich Hecht#include <fcntl.h>
3682d0927938SUlrich Hecht
3683d0927938SUlrich Hechtint main(void)
3684d0927938SUlrich Hecht{
3685d0927938SUlrich Hecht    fallocate(0, 0, 0, 0);
3686d0927938SUlrich Hecht    return 0;
3687d0927938SUlrich Hecht}
3688d0927938SUlrich HechtEOF
36898fb03151SPeter Maydellif compile_prog "" "" ; then
3690d0927938SUlrich Hecht  fallocate=yes
3691d0927938SUlrich Hechtfi
3692d0927938SUlrich Hecht
36933d4fa43eSKusanagi Kouichi# check for fallocate hole punching
36943d4fa43eSKusanagi Kouichifallocate_punch_hole=no
36953d4fa43eSKusanagi Kouichicat > $TMPC << EOF
36963d4fa43eSKusanagi Kouichi#include <fcntl.h>
36973d4fa43eSKusanagi Kouichi#include <linux/falloc.h>
36983d4fa43eSKusanagi Kouichi
36993d4fa43eSKusanagi Kouichiint main(void)
37003d4fa43eSKusanagi Kouichi{
37013d4fa43eSKusanagi Kouichi    fallocate(0, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, 0, 0);
37023d4fa43eSKusanagi Kouichi    return 0;
37033d4fa43eSKusanagi Kouichi}
37043d4fa43eSKusanagi KouichiEOF
37053d4fa43eSKusanagi Kouichiif compile_prog "" "" ; then
37063d4fa43eSKusanagi Kouichi  fallocate_punch_hole=yes
37073d4fa43eSKusanagi Kouichifi
37083d4fa43eSKusanagi Kouichi
3709b953f075SDenis V. Lunev# check that fallocate supports range zeroing inside the file
3710b953f075SDenis V. Lunevfallocate_zero_range=no
3711b953f075SDenis V. Lunevcat > $TMPC << EOF
3712b953f075SDenis V. Lunev#include <fcntl.h>
3713b953f075SDenis V. Lunev#include <linux/falloc.h>
3714b953f075SDenis V. Lunev
3715b953f075SDenis V. Lunevint main(void)
3716b953f075SDenis V. Lunev{
3717b953f075SDenis V. Lunev    fallocate(0, FALLOC_FL_ZERO_RANGE, 0, 0);
3718b953f075SDenis V. Lunev    return 0;
3719b953f075SDenis V. Lunev}
3720b953f075SDenis V. LunevEOF
3721b953f075SDenis V. Lunevif compile_prog "" "" ; then
3722b953f075SDenis V. Lunev  fallocate_zero_range=yes
3723b953f075SDenis V. Lunevfi
3724b953f075SDenis V. Lunev
3725ed911435SKevin Wolf# check for posix_fallocate
3726ed911435SKevin Wolfposix_fallocate=no
3727ed911435SKevin Wolfcat > $TMPC << EOF
3728ed911435SKevin Wolf#include <fcntl.h>
3729ed911435SKevin Wolf
3730ed911435SKevin Wolfint main(void)
3731ed911435SKevin Wolf{
3732ed911435SKevin Wolf    posix_fallocate(0, 0, 0);
3733ed911435SKevin Wolf    return 0;
3734ed911435SKevin Wolf}
3735ed911435SKevin WolfEOF
3736ed911435SKevin Wolfif compile_prog "" "" ; then
3737ed911435SKevin Wolf    posix_fallocate=yes
3738ed911435SKevin Wolffi
3739ed911435SKevin Wolf
3740c727f47dSPeter Maydell# check for sync_file_range
3741c727f47dSPeter Maydellsync_file_range=no
3742c727f47dSPeter Maydellcat > $TMPC << EOF
3743c727f47dSPeter Maydell#include <fcntl.h>
3744c727f47dSPeter Maydell
3745c727f47dSPeter Maydellint main(void)
3746c727f47dSPeter Maydell{
3747c727f47dSPeter Maydell    sync_file_range(0, 0, 0, 0);
3748c727f47dSPeter Maydell    return 0;
3749c727f47dSPeter Maydell}
3750c727f47dSPeter MaydellEOF
37518fb03151SPeter Maydellif compile_prog "" "" ; then
3752c727f47dSPeter Maydell  sync_file_range=yes
3753c727f47dSPeter Maydellfi
3754c727f47dSPeter Maydell
3755dace20dcSPeter Maydell# check for linux/fiemap.h and FS_IOC_FIEMAP
3756dace20dcSPeter Maydellfiemap=no
3757dace20dcSPeter Maydellcat > $TMPC << EOF
3758dace20dcSPeter Maydell#include <sys/ioctl.h>
3759dace20dcSPeter Maydell#include <linux/fs.h>
3760dace20dcSPeter Maydell#include <linux/fiemap.h>
3761dace20dcSPeter Maydell
3762dace20dcSPeter Maydellint main(void)
3763dace20dcSPeter Maydell{
3764dace20dcSPeter Maydell    ioctl(0, FS_IOC_FIEMAP, 0);
3765dace20dcSPeter Maydell    return 0;
3766dace20dcSPeter Maydell}
3767dace20dcSPeter MaydellEOF
37688fb03151SPeter Maydellif compile_prog "" "" ; then
3769dace20dcSPeter Maydell  fiemap=yes
3770dace20dcSPeter Maydellfi
3771dace20dcSPeter Maydell
3772d0927938SUlrich Hecht# check for dup3
3773d0927938SUlrich Hechtdup3=no
3774d0927938SUlrich Hechtcat > $TMPC << EOF
3775d0927938SUlrich Hecht#include <unistd.h>
3776d0927938SUlrich Hecht
3777d0927938SUlrich Hechtint main(void)
3778d0927938SUlrich Hecht{
3779d0927938SUlrich Hecht    dup3(0, 0, 0);
3780d0927938SUlrich Hecht    return 0;
3781d0927938SUlrich Hecht}
3782d0927938SUlrich HechtEOF
378378f5d726SJan Kiszkaif compile_prog "" "" ; then
3784d0927938SUlrich Hecht  dup3=yes
3785d0927938SUlrich Hechtfi
3786d0927938SUlrich Hecht
37874e0c6529SAlex Bligh# check for ppoll support
37884e0c6529SAlex Blighppoll=no
37894e0c6529SAlex Blighcat > $TMPC << EOF
37904e0c6529SAlex Bligh#include <poll.h>
37914e0c6529SAlex Bligh
37924e0c6529SAlex Blighint main(void)
37934e0c6529SAlex Bligh{
37944e0c6529SAlex Bligh    struct pollfd pfd = { .fd = 0, .events = 0, .revents = 0 };
37954e0c6529SAlex Bligh    ppoll(&pfd, 1, 0, 0);
37964e0c6529SAlex Bligh    return 0;
37974e0c6529SAlex Bligh}
37984e0c6529SAlex BlighEOF
37994e0c6529SAlex Blighif compile_prog "" "" ; then
38004e0c6529SAlex Bligh  ppoll=yes
38014e0c6529SAlex Blighfi
38024e0c6529SAlex Bligh
3803cd758dd0SAlex Bligh# check for prctl(PR_SET_TIMERSLACK , ... ) support
3804cd758dd0SAlex Blighprctl_pr_set_timerslack=no
3805cd758dd0SAlex Blighcat > $TMPC << EOF
3806cd758dd0SAlex Bligh#include <sys/prctl.h>
3807cd758dd0SAlex Bligh
3808cd758dd0SAlex Blighint main(void)
3809cd758dd0SAlex Bligh{
3810cd758dd0SAlex Bligh    prctl(PR_SET_TIMERSLACK, 1, 0, 0, 0);
3811cd758dd0SAlex Bligh    return 0;
3812cd758dd0SAlex Bligh}
3813cd758dd0SAlex BlighEOF
3814cd758dd0SAlex Blighif compile_prog "" "" ; then
3815cd758dd0SAlex Bligh  prctl_pr_set_timerslack=yes
3816cd758dd0SAlex Blighfi
3817cd758dd0SAlex Bligh
38183b6edd16SPeter Maydell# check for epoll support
38193b6edd16SPeter Maydellepoll=no
38203b6edd16SPeter Maydellcat > $TMPC << EOF
38213b6edd16SPeter Maydell#include <sys/epoll.h>
38223b6edd16SPeter Maydell
38233b6edd16SPeter Maydellint main(void)
38243b6edd16SPeter Maydell{
38253b6edd16SPeter Maydell    epoll_create(0);
38263b6edd16SPeter Maydell    return 0;
38273b6edd16SPeter Maydell}
38283b6edd16SPeter MaydellEOF
38298fb03151SPeter Maydellif compile_prog "" "" ; then
38303b6edd16SPeter Maydell  epoll=yes
38313b6edd16SPeter Maydellfi
38323b6edd16SPeter Maydell
3833227f0214SPeter Maydell# epoll_create1 is a later addition
3834227f0214SPeter Maydell# so we must check separately for its presence
38353b6edd16SPeter Maydellepoll_create1=no
38363b6edd16SPeter Maydellcat > $TMPC << EOF
38373b6edd16SPeter Maydell#include <sys/epoll.h>
38383b6edd16SPeter Maydell
38393b6edd16SPeter Maydellint main(void)
38403b6edd16SPeter Maydell{
384119e83f6bSPeter Maydell    /* Note that we use epoll_create1 as a value, not as
384219e83f6bSPeter Maydell     * a function being called. This is necessary so that on
384319e83f6bSPeter Maydell     * old SPARC glibc versions where the function was present in
384419e83f6bSPeter Maydell     * the library but not declared in the header file we will
384519e83f6bSPeter Maydell     * fail the configure check. (Otherwise we will get a compiler
384619e83f6bSPeter Maydell     * warning but not an error, and will proceed to fail the
384719e83f6bSPeter Maydell     * qemu compile where we compile with -Werror.)
384819e83f6bSPeter Maydell     */
3849c075a723SBlue Swirl    return (int)(uintptr_t)&epoll_create1;
38503b6edd16SPeter Maydell}
38513b6edd16SPeter MaydellEOF
38528fb03151SPeter Maydellif compile_prog "" "" ; then
38533b6edd16SPeter Maydell  epoll_create1=yes
38543b6edd16SPeter Maydellfi
38553b6edd16SPeter Maydell
3856a8fd1abaSPeter Maydell# check for sendfile support
3857a8fd1abaSPeter Maydellsendfile=no
3858a8fd1abaSPeter Maydellcat > $TMPC << EOF
3859a8fd1abaSPeter Maydell#include <sys/sendfile.h>
3860a8fd1abaSPeter Maydell
3861a8fd1abaSPeter Maydellint main(void)
3862a8fd1abaSPeter Maydell{
3863a8fd1abaSPeter Maydell    return sendfile(0, 0, 0, 0);
3864a8fd1abaSPeter Maydell}
3865a8fd1abaSPeter MaydellEOF
3866a8fd1abaSPeter Maydellif compile_prog "" "" ; then
3867a8fd1abaSPeter Maydell  sendfile=yes
3868a8fd1abaSPeter Maydellfi
3869a8fd1abaSPeter Maydell
387051834341SRiku Voipio# check for timerfd support (glibc 2.8 and newer)
387151834341SRiku Voipiotimerfd=no
387251834341SRiku Voipiocat > $TMPC << EOF
387351834341SRiku Voipio#include <sys/timerfd.h>
387451834341SRiku Voipio
387551834341SRiku Voipioint main(void)
387651834341SRiku Voipio{
387751834341SRiku Voipio    return(timerfd_create(CLOCK_REALTIME, 0));
387851834341SRiku Voipio}
387951834341SRiku VoipioEOF
388051834341SRiku Voipioif compile_prog "" "" ; then
388151834341SRiku Voipio  timerfd=yes
388251834341SRiku Voipiofi
388351834341SRiku Voipio
38849af5c906SRiku Voipio# check for setns and unshare support
38859af5c906SRiku Voipiosetns=no
38869af5c906SRiku Voipiocat > $TMPC << EOF
38879af5c906SRiku Voipio#include <sched.h>
38889af5c906SRiku Voipio
38899af5c906SRiku Voipioint main(void)
38909af5c906SRiku Voipio{
38919af5c906SRiku Voipio    int ret;
38929af5c906SRiku Voipio    ret = setns(0, 0);
38939af5c906SRiku Voipio    ret = unshare(0);
38949af5c906SRiku Voipio    return ret;
38959af5c906SRiku Voipio}
38969af5c906SRiku VoipioEOF
38979af5c906SRiku Voipioif compile_prog "" "" ; then
38989af5c906SRiku Voipio  setns=yes
38999af5c906SRiku Voipiofi
39009af5c906SRiku Voipio
3901cc8ae6deSpbrook# Check if tools are available to build documentation.
3902a25dba17SJuan Quintelaif test "$docs" != "no" ; then
390301668d98SStefan Weil  if has makeinfo && has pod2man; then
3904a25dba17SJuan Quintela    docs=yes
390583a3ab8bSJuan Quintela  else
3906a25dba17SJuan Quintela    if test "$docs" = "yes" ; then
390721684af0SStewart Smith      feature_not_found "docs" "Install texinfo and Perl/perl-podlators"
390883a3ab8bSJuan Quintela    fi
3909a25dba17SJuan Quintela    docs=no
391083a3ab8bSJuan Quintela  fi
3911cc8ae6deSpbrookfi
3912cc8ae6deSpbrook
3913f514f41cSStefan Weil# Search for bswap_32 function
39146ae9a1f4SJuan Quintelabyteswap_h=no
39156ae9a1f4SJuan Quintelacat > $TMPC << EOF
39166ae9a1f4SJuan Quintela#include <byteswap.h>
39176ae9a1f4SJuan Quintelaint main(void) { return bswap_32(0); }
39186ae9a1f4SJuan QuintelaEOF
391952166aa0SJuan Quintelaif compile_prog "" "" ; then
39206ae9a1f4SJuan Quintela  byteswap_h=yes
39216ae9a1f4SJuan Quintelafi
39226ae9a1f4SJuan Quintela
392375f13596SStefan Weil# Search for bswap32 function
39246ae9a1f4SJuan Quintelabswap_h=no
39256ae9a1f4SJuan Quintelacat > $TMPC << EOF
39266ae9a1f4SJuan Quintela#include <sys/endian.h>
39276ae9a1f4SJuan Quintela#include <sys/types.h>
39286ae9a1f4SJuan Quintela#include <machine/bswap.h>
39296ae9a1f4SJuan Quintelaint main(void) { return bswap32(0); }
39306ae9a1f4SJuan QuintelaEOF
393152166aa0SJuan Quintelaif compile_prog "" "" ; then
39326ae9a1f4SJuan Quintela  bswap_h=yes
39336ae9a1f4SJuan Quintelafi
39346ae9a1f4SJuan Quintela
3935da93a1fdSaliguori##########################################
3936e49ab19fSPeter Lieven# Do we have libiscsi >= 1.9.0
3937c589b249SRonnie Sahlbergif test "$libiscsi" != "no" ; then
3938e49ab19fSPeter Lieven  if $pkg_config --atleast-version=1.9.0 libiscsi; then
39393c33ea96SPaolo Bonzini    libiscsi="yes"
3940ca871ec8SStefan Weil    libiscsi_cflags=$($pkg_config --cflags libiscsi)
3941ca871ec8SStefan Weil    libiscsi_libs=$($pkg_config --libs libiscsi)
3942c589b249SRonnie Sahlberg  else
3943c589b249SRonnie Sahlberg    if test "$libiscsi" = "yes" ; then
3944e49ab19fSPeter Lieven      feature_not_found "libiscsi" "Install libiscsi >= 1.9.0"
3945c589b249SRonnie Sahlberg    fi
3946c589b249SRonnie Sahlberg    libiscsi="no"
3947c589b249SRonnie Sahlberg  fi
3948c589b249SRonnie Sahlbergfi
3949c589b249SRonnie Sahlberg
3950c589b249SRonnie Sahlberg##########################################
39518bacde8dSNatanael Copa# Do we need libm
39528bacde8dSNatanael Copacat > $TMPC << EOF
39538bacde8dSNatanael Copa#include <math.h>
3954f80ea986SAlexey Kardashevskiyint main(int argc, char **argv) { return isnan(sin((double)argc)); }
39558bacde8dSNatanael CopaEOF
39568bacde8dSNatanael Copaif compile_prog "" "" ; then
39578bacde8dSNatanael Copa  :
39588bacde8dSNatanael Copaelif compile_prog "" "-lm" ; then
39598bacde8dSNatanael Copa  LIBS="-lm $LIBS"
39608bacde8dSNatanael Copa  libs_qga="-lm $libs_qga"
39618bacde8dSNatanael Copaelse
396276ad07a4SPeter Maydell  error_exit "libm check failed"
39638bacde8dSNatanael Copafi
39648bacde8dSNatanael Copa
39658bacde8dSNatanael Copa##########################################
3966da93a1fdSaliguori# Do we need librt
39678bacde8dSNatanael Copa# uClibc provides 2 versions of clock_gettime(), one with realtime
39688bacde8dSNatanael Copa# support and one without. This means that the clock_gettime() don't
39698bacde8dSNatanael Copa# need -lrt. We still need it for timer_create() so we check for this
39708bacde8dSNatanael Copa# function in addition.
3971da93a1fdSaliguoricat > $TMPC <<EOF
3972da93a1fdSaliguori#include <signal.h>
3973da93a1fdSaliguori#include <time.h>
39748bacde8dSNatanael Copaint main(void) {
39758bacde8dSNatanael Copa  timer_create(CLOCK_REALTIME, NULL, NULL);
39768bacde8dSNatanael Copa  return clock_gettime(CLOCK_REALTIME, NULL);
39778bacde8dSNatanael Copa}
3978da93a1fdSaliguoriEOF
3979da93a1fdSaliguori
398052166aa0SJuan Quintelaif compile_prog "" "" ; then
398107ffa4bdSJuan Quintela  :
39828bacde8dSNatanael Copa# we need pthread for static linking. use previous pthread test result
398318e588b1SRick Liuelif compile_prog "" "$pthread_lib -lrt" ; then
398418e588b1SRick Liu  LIBS="$LIBS -lrt"
398518e588b1SRick Liu  libs_qga="$libs_qga -lrt"
3986da93a1fdSaliguorifi
3987da93a1fdSaliguori
398831ff504dSBlue Swirlif test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
3989179cf400SAndreas Färber        "$aix" != "yes" -a "$haiku" != "yes" ; then
39906362a53fSJuan Quintela    libs_softmmu="-lutil $libs_softmmu"
39916362a53fSJuan Quintelafi
39926362a53fSJuan Quintela
3993de5071c5SBlue Swirl##########################################
3994cd4ec0b4SGerd Hoffmann# spice probe
3995cd4ec0b4SGerd Hoffmannif test "$spice" != "no" ; then
3996cd4ec0b4SGerd Hoffmann  cat > $TMPC << EOF
3997cd4ec0b4SGerd Hoffmann#include <spice.h>
3998cd4ec0b4SGerd Hoffmannint main(void) { spice_server_new(); return 0; }
3999cd4ec0b4SGerd HoffmannEOF
4000710fc4f5SJiri Denemark  spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
4001710fc4f5SJiri Denemark  spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
400265d5d3f9SStefan Weil  if $pkg_config --atleast-version=0.12.0 spice-server && \
400365d5d3f9SStefan Weil     $pkg_config --atleast-version=0.12.3 spice-protocol && \
4004cd4ec0b4SGerd Hoffmann     compile_prog "$spice_cflags" "$spice_libs" ; then
4005cd4ec0b4SGerd Hoffmann    spice="yes"
4006cd4ec0b4SGerd Hoffmann    libs_softmmu="$libs_softmmu $spice_libs"
4007cd4ec0b4SGerd Hoffmann    QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags"
40082e0e3c39SAlon Levy    spice_protocol_version=$($pkg_config --modversion spice-protocol)
40092e0e3c39SAlon Levy    spice_server_version=$($pkg_config --modversion spice-server)
4010cd4ec0b4SGerd Hoffmann  else
4011cd4ec0b4SGerd Hoffmann    if test "$spice" = "yes" ; then
40128efc9363SHu Tao      feature_not_found "spice" \
40138efc9363SHu Tao          "Install spice-server(>=0.12.0) and spice-protocol(>=0.12.3) devel"
4014cd4ec0b4SGerd Hoffmann    fi
4015cd4ec0b4SGerd Hoffmann    spice="no"
4016cd4ec0b4SGerd Hoffmann  fi
4017cd4ec0b4SGerd Hoffmannfi
4018cd4ec0b4SGerd Hoffmann
40197b02f544SMarc-André Lureau# check for smartcard support
4020111a38b0SRobert Relyeasmartcard_cflags=""
40217b02f544SMarc-André Lureauif test "$smartcard" != "no"; then
40227b02f544SMarc-André Lureau    if $pkg_config libcacard; then
40237b02f544SMarc-André Lureau        libcacard_cflags=$($pkg_config --cflags libcacard)
40247b02f544SMarc-André Lureau        libcacard_libs=$($pkg_config --libs libcacard)
40257b02f544SMarc-André Lureau        QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags"
40267b02f544SMarc-André Lureau        libs_softmmu="$libs_softmmu $libcacard_libs"
40277b02f544SMarc-André Lureau        smartcard="yes"
4028111a38b0SRobert Relyea    else
40297b02f544SMarc-André Lureau        if test "$smartcard" = "yes"; then
40307b02f544SMarc-André Lureau            feature_not_found "smartcard" "Install libcacard devel"
4031111a38b0SRobert Relyea        fi
40327b02f544SMarc-André Lureau        smartcard="no"
4033111a38b0SRobert Relyea    fi
4034111a38b0SRobert Relyeafi
4035111a38b0SRobert Relyea
40362b2325ffSGerd Hoffmann# check for libusb
40372b2325ffSGerd Hoffmannif test "$libusb" != "no" ; then
403865d5d3f9SStefan Weil    if $pkg_config --atleast-version=1.0.13 libusb-1.0; then
40392b2325ffSGerd Hoffmann        libusb="yes"
4040ca871ec8SStefan Weil        libusb_cflags=$($pkg_config --cflags libusb-1.0)
4041ca871ec8SStefan Weil        libusb_libs=$($pkg_config --libs libusb-1.0)
40422b2325ffSGerd Hoffmann        QEMU_CFLAGS="$QEMU_CFLAGS $libusb_cflags"
40432b2325ffSGerd Hoffmann        libs_softmmu="$libs_softmmu $libusb_libs"
40442b2325ffSGerd Hoffmann    else
40452b2325ffSGerd Hoffmann        if test "$libusb" = "yes"; then
40468efc9363SHu Tao            feature_not_found "libusb" "Install libusb devel >= 1.0.13"
40472b2325ffSGerd Hoffmann        fi
40482b2325ffSGerd Hoffmann        libusb="no"
40492b2325ffSGerd Hoffmann    fi
40502b2325ffSGerd Hoffmannfi
40512b2325ffSGerd Hoffmann
405269354a83SHans de Goede# check for usbredirparser for usb network redirection support
405369354a83SHans de Goedeif test "$usb_redir" != "no" ; then
405465d5d3f9SStefan Weil    if $pkg_config --atleast-version=0.6 libusbredirparser-0.5; then
405569354a83SHans de Goede        usb_redir="yes"
4056ca871ec8SStefan Weil        usb_redir_cflags=$($pkg_config --cflags libusbredirparser-0.5)
4057ca871ec8SStefan Weil        usb_redir_libs=$($pkg_config --libs libusbredirparser-0.5)
405869354a83SHans de Goede        QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags"
405956ab2ad1SAurelien Jarno        libs_softmmu="$libs_softmmu $usb_redir_libs"
406069354a83SHans de Goede    else
406169354a83SHans de Goede        if test "$usb_redir" = "yes"; then
406221684af0SStewart Smith            feature_not_found "usb-redir" "Install usbredir devel"
406369354a83SHans de Goede        fi
406469354a83SHans de Goede        usb_redir="no"
406569354a83SHans de Goede    fi
406669354a83SHans de Goedefi
406769354a83SHans de Goede
4068cd4ec0b4SGerd Hoffmann##########################################
4069d9840e25STomoki Sekiyama# check if we have VSS SDK headers for win
4070d9840e25STomoki Sekiyama
4071d9840e25STomoki Sekiyamaif test "$mingw32" = "yes" -a "$guest_agent" != "no" -a "$vss_win32_sdk" != "no" ; then
4072d9840e25STomoki Sekiyama  case "$vss_win32_sdk" in
4073690604f6SMichael Roth    "")   vss_win32_include="-isystem $source_path" ;;
4074d9840e25STomoki Sekiyama    *\ *) # The SDK is installed in "Program Files" by default, but we cannot
4075d9840e25STomoki Sekiyama          # handle path with spaces. So we symlink the headers into ".sdk/vss".
4076690604f6SMichael Roth          vss_win32_include="-isystem $source_path/.sdk/vss"
4077d9840e25STomoki Sekiyama	  symlink "$vss_win32_sdk/inc" "$source_path/.sdk/vss/inc"
4078d9840e25STomoki Sekiyama	  ;;
4079690604f6SMichael Roth    *)    vss_win32_include="-isystem $vss_win32_sdk"
4080d9840e25STomoki Sekiyama  esac
4081d9840e25STomoki Sekiyama  cat > $TMPC << EOF
4082d9840e25STomoki Sekiyama#define __MIDL_user_allocate_free_DEFINED__
4083d9840e25STomoki Sekiyama#include <inc/win2003/vss.h>
4084d9840e25STomoki Sekiyamaint main(void) { return VSS_CTX_BACKUP; }
4085d9840e25STomoki SekiyamaEOF
4086d9840e25STomoki Sekiyama  if compile_prog "$vss_win32_include" "" ; then
4087d9840e25STomoki Sekiyama    guest_agent_with_vss="yes"
4088d9840e25STomoki Sekiyama    QEMU_CFLAGS="$QEMU_CFLAGS $vss_win32_include"
4089d9840e25STomoki Sekiyama    libs_qga="-lole32 -loleaut32 -lshlwapi -luuid -lstdc++ -Wl,--enable-stdcall-fixup $libs_qga"
4090f33ca81fSMichael Roth    qga_vss_provider="qga/vss-win32/qga-vss.dll qga/vss-win32/qga-vss.tlb"
4091d9840e25STomoki Sekiyama  else
4092d9840e25STomoki Sekiyama    if test "$vss_win32_sdk" != "" ; then
4093d9840e25STomoki Sekiyama      echo "ERROR: Please download and install Microsoft VSS SDK:"
4094d9840e25STomoki Sekiyama      echo "ERROR:   http://www.microsoft.com/en-us/download/details.aspx?id=23490"
4095d9840e25STomoki Sekiyama      echo "ERROR: On POSIX-systems, you can extract the SDK headers by:"
4096d9840e25STomoki Sekiyama      echo "ERROR:   scripts/extract-vsssdk-headers setup.exe"
4097d9840e25STomoki Sekiyama      echo "ERROR: The headers are extracted in the directory \`inc'."
4098d9840e25STomoki Sekiyama      feature_not_found "VSS support"
4099d9840e25STomoki Sekiyama    fi
4100d9840e25STomoki Sekiyama    guest_agent_with_vss="no"
4101d9840e25STomoki Sekiyama  fi
4102d9840e25STomoki Sekiyamafi
4103d9840e25STomoki Sekiyama
4104d9840e25STomoki Sekiyama##########################################
4105d9840e25STomoki Sekiyama# lookup Windows platform SDK (if not specified)
4106d9840e25STomoki Sekiyama# The SDK is needed only to build .tlb (type library) file of guest agent
4107d9840e25STomoki Sekiyama# VSS provider from the source. It is usually unnecessary because the
4108d9840e25STomoki Sekiyama# pre-compiled .tlb file is included.
4109d9840e25STomoki Sekiyama
4110d9840e25STomoki Sekiyamaif test "$mingw32" = "yes" -a "$guest_agent" != "no" -a "$guest_agent_with_vss" = "yes" ; then
4111d9840e25STomoki Sekiyama  if test -z "$win_sdk"; then
4112d9840e25STomoki Sekiyama    programfiles="$PROGRAMFILES"
4113d9840e25STomoki Sekiyama    test -n "$PROGRAMW6432" && programfiles="$PROGRAMW6432"
4114d9840e25STomoki Sekiyama    if test -n "$programfiles"; then
4115d9840e25STomoki Sekiyama      win_sdk=$(ls -d "$programfiles/Microsoft SDKs/Windows/v"* | tail -1) 2>/dev/null
4116d9840e25STomoki Sekiyama    else
4117d9840e25STomoki Sekiyama      feature_not_found "Windows SDK"
4118d9840e25STomoki Sekiyama    fi
4119d9840e25STomoki Sekiyama  elif test "$win_sdk" = "no"; then
4120d9840e25STomoki Sekiyama    win_sdk=""
4121d9840e25STomoki Sekiyama  fi
4122d9840e25STomoki Sekiyamafi
4123d9840e25STomoki Sekiyama
4124d9840e25STomoki Sekiyama##########################################
412550cbebb9SMichael Roth# check if mingw environment provides a recent ntddscsi.h
412650cbebb9SMichael Rothif test "$mingw32" = "yes" -a "$guest_agent" != "no"; then
412750cbebb9SMichael Roth  cat > $TMPC << EOF
412850cbebb9SMichael Roth#include <windows.h>
412950cbebb9SMichael Roth#include <ntddscsi.h>
413050cbebb9SMichael Rothint main(void) {
413150cbebb9SMichael Roth#if !defined(IOCTL_SCSI_GET_ADDRESS)
413250cbebb9SMichael Roth#error Missing required ioctl definitions
413350cbebb9SMichael Roth#endif
413450cbebb9SMichael Roth  SCSI_ADDRESS addr = { .Lun = 0, .TargetId = 0, .PathId = 0 };
413550cbebb9SMichael Roth  return addr.Lun;
413650cbebb9SMichael Roth}
413750cbebb9SMichael RothEOF
413850cbebb9SMichael Roth  if compile_prog "" "" ; then
413950cbebb9SMichael Roth    guest_agent_ntddscsi=yes
4140c54e1eb4SMichael Roth    libs_qga="-lsetupapi $libs_qga"
414150cbebb9SMichael Roth  fi
414250cbebb9SMichael Rothfi
414350cbebb9SMichael Roth
414450cbebb9SMichael Roth##########################################
41459d9e1521SGerd Hoffmann# virgl renderer probe
41469d9e1521SGerd Hoffmann
41479d9e1521SGerd Hoffmannif test "$virglrenderer" != "no" ; then
41489d9e1521SGerd Hoffmann  cat > $TMPC << EOF
41499d9e1521SGerd Hoffmann#include <virglrenderer.h>
41509d9e1521SGerd Hoffmannint main(void) { virgl_renderer_poll(); return 0; }
41519d9e1521SGerd HoffmannEOF
41529d9e1521SGerd Hoffmann  virgl_cflags=$($pkg_config --cflags virglrenderer 2>/dev/null)
41539d9e1521SGerd Hoffmann  virgl_libs=$($pkg_config --libs virglrenderer 2>/dev/null)
41549d9e1521SGerd Hoffmann  if $pkg_config virglrenderer >/dev/null 2>&1 && \
41559d9e1521SGerd Hoffmann     compile_prog "$virgl_cflags" "$virgl_libs" ; then
41569d9e1521SGerd Hoffmann    virglrenderer="yes"
41579d9e1521SGerd Hoffmann  else
41589d9e1521SGerd Hoffmann    if test "$virglrenderer" = "yes" ; then
41599d9e1521SGerd Hoffmann      feature_not_found "virglrenderer"
41609d9e1521SGerd Hoffmann    fi
41619d9e1521SGerd Hoffmann    virglrenderer="no"
41629d9e1521SGerd Hoffmann  fi
41639d9e1521SGerd Hoffmannfi
41649d9e1521SGerd Hoffmann
41659d9e1521SGerd Hoffmann##########################################
41665f6b9e8fSBlue Swirl# check if we have fdatasync
41675f6b9e8fSBlue Swirl
41685f6b9e8fSBlue Swirlfdatasync=no
41695f6b9e8fSBlue Swirlcat > $TMPC << EOF
41705f6b9e8fSBlue Swirl#include <unistd.h>
4171d1722a27SAlexandre Raymondint main(void) {
4172d1722a27SAlexandre Raymond#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
4173d1722a27SAlexandre Raymondreturn fdatasync(0);
4174d1722a27SAlexandre Raymond#else
4175e172fe11SStefan Weil#error Not supported
4176d1722a27SAlexandre Raymond#endif
4177d1722a27SAlexandre Raymond}
41785f6b9e8fSBlue SwirlEOF
41795f6b9e8fSBlue Swirlif compile_prog "" "" ; then
41805f6b9e8fSBlue Swirl    fdatasync=yes
41815f6b9e8fSBlue Swirlfi
41825f6b9e8fSBlue Swirl
418394a420b1SStefan Hajnoczi##########################################
4184e78815a5SAndreas Färber# check if we have madvise
4185e78815a5SAndreas Färber
4186e78815a5SAndreas Färbermadvise=no
4187e78815a5SAndreas Färbercat > $TMPC << EOF
4188e78815a5SAndreas Färber#include <sys/types.h>
4189e78815a5SAndreas Färber#include <sys/mman.h>
4190832ce9c2SScott Wood#include <stddef.h>
4191e78815a5SAndreas Färberint main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
4192e78815a5SAndreas FärberEOF
4193e78815a5SAndreas Färberif compile_prog "" "" ; then
4194e78815a5SAndreas Färber    madvise=yes
4195e78815a5SAndreas Färberfi
4196e78815a5SAndreas Färber
4197e78815a5SAndreas Färber##########################################
4198e78815a5SAndreas Färber# check if we have posix_madvise
4199e78815a5SAndreas Färber
4200e78815a5SAndreas Färberposix_madvise=no
4201e78815a5SAndreas Färbercat > $TMPC << EOF
4202e78815a5SAndreas Färber#include <sys/mman.h>
4203832ce9c2SScott Wood#include <stddef.h>
4204e78815a5SAndreas Färberint main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
4205e78815a5SAndreas FärberEOF
4206e78815a5SAndreas Färberif compile_prog "" "" ; then
4207e78815a5SAndreas Färber    posix_madvise=yes
4208e78815a5SAndreas Färberfi
4209e78815a5SAndreas Färber
4210e78815a5SAndreas Färber##########################################
42110a852417SPaul Durrant# check if we have posix_syslog
42120a852417SPaul Durrant
42130a852417SPaul Durrantposix_syslog=no
42140a852417SPaul Durrantcat > $TMPC << EOF
42150a852417SPaul Durrant#include <syslog.h>
42160a852417SPaul Durrantint main(void) { openlog("qemu", LOG_PID, LOG_DAEMON); syslog(LOG_INFO, "configure"); return 0; }
42170a852417SPaul DurrantEOF
42180a852417SPaul Durrantif compile_prog "" "" ; then
42190a852417SPaul Durrant    posix_syslog=yes
42200a852417SPaul Durrantfi
42210a852417SPaul Durrant
42220a852417SPaul Durrant##########################################
422394a420b1SStefan Hajnoczi# check if trace backend exists
422494a420b1SStefan Hajnoczi
42255b808275SLluís Vilanova$python "$source_path/scripts/tracetool.py" "--backends=$trace_backends" --check-backends  > /dev/null 2> /dev/null
422694a420b1SStefan Hajnocziif test "$?" -ne 0 ; then
42275b808275SLluís Vilanova  error_exit "invalid trace backends" \
42285b808275SLluís Vilanova      "Please choose supported trace backends."
422994a420b1SStefan Hajnoczifi
423094a420b1SStefan Hajnoczi
42317e24e92aSStefan Hajnoczi##########################################
42327e24e92aSStefan Hajnoczi# For 'ust' backend, test if ust headers are present
42335b808275SLluís Vilanovaif have_backend "ust"; then
42347e24e92aSStefan Hajnoczi  cat > $TMPC << EOF
4235bf15f63cSMohamad Gebai#include <lttng/tracepoint.h>
42367e24e92aSStefan Hajnocziint main(void) { return 0; }
42377e24e92aSStefan HajnocziEOF
42387e24e92aSStefan Hajnoczi  if compile_prog "" "" ; then
4239bf15f63cSMohamad Gebai    if $pkg_config lttng-ust --exists; then
424089138857SStefan Weil      lttng_ust_libs=$($pkg_config --libs lttng-ust)
42417e24e92aSStefan Hajnoczi    else
4242bf15f63cSMohamad Gebai      lttng_ust_libs="-llttng-ust"
4243bf15f63cSMohamad Gebai    fi
4244bf15f63cSMohamad Gebai    if $pkg_config liburcu-bp --exists; then
424589138857SStefan Weil      urcu_bp_libs=$($pkg_config --libs liburcu-bp)
4246bf15f63cSMohamad Gebai    else
4247bf15f63cSMohamad Gebai      urcu_bp_libs="-lurcu-bp"
4248bf15f63cSMohamad Gebai    fi
4249bf15f63cSMohamad Gebai
4250bf15f63cSMohamad Gebai    LIBS="$lttng_ust_libs $urcu_bp_libs $LIBS"
4251bf15f63cSMohamad Gebai    libs_qga="$lttng_ust_libs $urcu_bp_libs $libs_qga"
4252bf15f63cSMohamad Gebai  else
4253bf15f63cSMohamad Gebai    error_exit "Trace backend 'ust' missing lttng-ust header files"
42547e24e92aSStefan Hajnoczi  fi
42557e24e92aSStefan Hajnoczifi
4256b3d08c02SDaniel P. Berrange
4257b3d08c02SDaniel P. Berrange##########################################
4258b3d08c02SDaniel P. Berrange# For 'dtrace' backend, test if 'dtrace' command is present
42595b808275SLluís Vilanovaif have_backend "dtrace"; then
4260b3d08c02SDaniel P. Berrange  if ! has 'dtrace' ; then
426176ad07a4SPeter Maydell    error_exit "dtrace command is not found in PATH $PATH"
4262b3d08c02SDaniel P. Berrange  fi
4263c276b17dSDaniel P. Berrange  trace_backend_stap="no"
4264c276b17dSDaniel P. Berrange  if has 'stap' ; then
4265c276b17dSDaniel P. Berrange    trace_backend_stap="yes"
4266c276b17dSDaniel P. Berrange  fi
4267b3d08c02SDaniel P. Berrangefi
4268b3d08c02SDaniel P. Berrange
42697e24e92aSStefan Hajnoczi##########################################
4270519175a2SAlex Barcelo# check and set a backend for coroutine
4271d0e2fce5SAneesh Kumar K.V
42727c2acc70SPeter Maydell# We prefer ucontext, but it's not always possible. The fallback
42737c2acc70SPeter Maydell# is sigcontext. gthread is not selectable except explicitly, because
42747c2acc70SPeter Maydell# it is not functional enough to run QEMU proper. (It is occasionally
42757c2acc70SPeter Maydell# useful for debugging purposes.)  On Windows the only valid backend
42767c2acc70SPeter Maydell# is the Windows-specific one.
42777c2acc70SPeter Maydell
42787c2acc70SPeter Maydellucontext_works=no
4279d0e2fce5SAneesh Kumar K.Vif test "$darwin" != "yes"; then
4280d0e2fce5SAneesh Kumar K.V  cat > $TMPC << EOF
4281d0e2fce5SAneesh Kumar K.V#include <ucontext.h>
4282cdf84806SPeter Maydell#ifdef __stub_makecontext
4283cdf84806SPeter Maydell#error Ignoring glibc stub makecontext which will always fail
4284cdf84806SPeter Maydell#endif
428575cafad7SStefan Weilint main(void) { makecontext(0, 0, 0); return 0; }
4286d0e2fce5SAneesh Kumar K.VEOF
4287d0e2fce5SAneesh Kumar K.V  if compile_prog "" "" ; then
42887c2acc70SPeter Maydell    ucontext_works=yes
4289d0e2fce5SAneesh Kumar K.V  fi
4290519175a2SAlex Barcelofi
42917c2acc70SPeter Maydell
42927c2acc70SPeter Maydellif test "$coroutine" = ""; then
42937c2acc70SPeter Maydell  if test "$mingw32" = "yes"; then
42947c2acc70SPeter Maydell    coroutine=win32
42957c2acc70SPeter Maydell  elif test "$ucontext_works" = "yes"; then
42967c2acc70SPeter Maydell    coroutine=ucontext
4297519175a2SAlex Barcelo  else
42987c2acc70SPeter Maydell    coroutine=sigaltstack
42997c2acc70SPeter Maydell  fi
43007c2acc70SPeter Maydellelse
43017c2acc70SPeter Maydell  case $coroutine in
43027c2acc70SPeter Maydell  windows)
43037c2acc70SPeter Maydell    if test "$mingw32" != "yes"; then
43047c2acc70SPeter Maydell      error_exit "'windows' coroutine backend only valid for Windows"
43057c2acc70SPeter Maydell    fi
43067c2acc70SPeter Maydell    # Unfortunately the user visible backend name doesn't match the
43077c2acc70SPeter Maydell    # coroutine-*.c filename for this case, so we have to adjust it here.
43087c2acc70SPeter Maydell    coroutine=win32
43097c2acc70SPeter Maydell    ;;
43107c2acc70SPeter Maydell  ucontext)
43117c2acc70SPeter Maydell    if test "$ucontext_works" != "yes"; then
43127c2acc70SPeter Maydell      feature_not_found "ucontext"
43137c2acc70SPeter Maydell    fi
43147c2acc70SPeter Maydell    ;;
43157c2acc70SPeter Maydell  gthread|sigaltstack)
43167c2acc70SPeter Maydell    if test "$mingw32" = "yes"; then
43177c2acc70SPeter Maydell      error_exit "only the 'windows' coroutine backend is valid for Windows"
43187c2acc70SPeter Maydell    fi
43197c2acc70SPeter Maydell    ;;
43207c2acc70SPeter Maydell  *)
432176ad07a4SPeter Maydell    error_exit "unknown coroutine backend $coroutine"
43227c2acc70SPeter Maydell    ;;
43237c2acc70SPeter Maydell  esac
4324d0e2fce5SAneesh Kumar K.Vfi
4325d0e2fce5SAneesh Kumar K.V
432670c60c08SStefan Hajnocziif test "$coroutine_pool" = ""; then
432770c60c08SStefan Hajnoczi  if test "$coroutine" = "gthread"; then
432870c60c08SStefan Hajnoczi    coroutine_pool=no
432970c60c08SStefan Hajnoczi  else
433070c60c08SStefan Hajnoczi    coroutine_pool=yes
433170c60c08SStefan Hajnoczi  fi
433270c60c08SStefan Hajnoczifi
433370c60c08SStefan Hajnocziif test "$coroutine" = "gthread" -a "$coroutine_pool" = "yes"; then
433470c60c08SStefan Hajnoczi  error_exit "'gthread' coroutine backend does not support pool (use --disable-coroutine-pool)"
433570c60c08SStefan Hajnoczifi
433670c60c08SStefan Hajnoczi
4337d0e2fce5SAneesh Kumar K.V##########################################
4338d2042378SAneesh Kumar K.V# check if we have open_by_handle_at
4339d2042378SAneesh Kumar K.V
43404e1797f9SStefan Weilopen_by_handle_at=no
4341d2042378SAneesh Kumar K.Vcat > $TMPC << EOF
4342d2042378SAneesh Kumar K.V#include <fcntl.h>
4343acc55ba8SStefan Weil#if !defined(AT_EMPTY_PATH)
4344acc55ba8SStefan Weil# error missing definition
4345acc55ba8SStefan Weil#else
434675cafad7SStefan Weilint main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); }
4347acc55ba8SStefan Weil#endif
4348d2042378SAneesh Kumar K.VEOF
4349d2042378SAneesh Kumar K.Vif compile_prog "" "" ; then
4350d2042378SAneesh Kumar K.V    open_by_handle_at=yes
4351d2042378SAneesh Kumar K.Vfi
4352d2042378SAneesh Kumar K.V
4353e06a765eSHarsh Prateek Bora########################################
4354e06a765eSHarsh Prateek Bora# check if we have linux/magic.h
4355e06a765eSHarsh Prateek Bora
4356e06a765eSHarsh Prateek Boralinux_magic_h=no
4357e06a765eSHarsh Prateek Boracat > $TMPC << EOF
4358e06a765eSHarsh Prateek Bora#include <linux/magic.h>
4359e06a765eSHarsh Prateek Boraint main(void) {
436075cafad7SStefan Weil  return 0;
4361e06a765eSHarsh Prateek Bora}
4362e06a765eSHarsh Prateek BoraEOF
4363e06a765eSHarsh Prateek Boraif compile_prog "" "" ; then
4364e06a765eSHarsh Prateek Bora    linux_magic_h=yes
4365e06a765eSHarsh Prateek Borafi
4366e06a765eSHarsh Prateek Bora
43678ab1bf12SLuiz Capitulino########################################
4368c95e3080SKevin Wolf# check whether we can disable warning option with a pragma (this is needed
4369c95e3080SKevin Wolf# to silence warnings in the headers of some versions of external libraries).
4370c95e3080SKevin Wolf# This test has to be compiled with -Werror as otherwise an unknown pragma is
4371c95e3080SKevin Wolf# only a warning.
4372c95e3080SKevin Wolf#
4373c95e3080SKevin Wolf# If we can't selectively disable warning in the code, disable -Werror so that
4374c95e3080SKevin Wolf# the build doesn't fail anyway.
4375c95e3080SKevin Wolf
437606d71fa1SPeter Maydellpragma_disable_unused_but_set=no
437706d71fa1SPeter Maydellcat > $TMPC << EOF
4378e6f53fd5SMarkus Armbruster#pragma GCC diagnostic push
437906d71fa1SPeter Maydell#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
4380c95e3080SKevin Wolf#pragma GCC diagnostic ignored "-Wstrict-prototypes"
4381e6f53fd5SMarkus Armbruster#pragma GCC diagnostic pop
4382c95e3080SKevin Wolf
438306d71fa1SPeter Maydellint main(void) {
438406d71fa1SPeter Maydell    return 0;
438506d71fa1SPeter Maydell}
438606d71fa1SPeter MaydellEOF
438706d71fa1SPeter Maydellif compile_prog "-Werror" "" ; then
4388cc6e3ca9SGerd Hoffmann    pragma_diagnostic_available=yes
4389c95e3080SKevin Wolfelse
4390c95e3080SKevin Wolf    werror=no
439106d71fa1SPeter Maydellfi
439206d71fa1SPeter Maydell
439306d71fa1SPeter Maydell########################################
4394541be927SChristian Borntraeger# check if we have valgrind/valgrind.h
43953f4349dcSKevin Wolf
43963f4349dcSKevin Wolfvalgrind_h=no
43973f4349dcSKevin Wolfcat > $TMPC << EOF
43983f4349dcSKevin Wolf#include <valgrind/valgrind.h>
43993f4349dcSKevin Wolfint main(void) {
44003f4349dcSKevin Wolf  return 0;
44013f4349dcSKevin Wolf}
44023f4349dcSKevin WolfEOF
44033f4349dcSKevin Wolfif compile_prog "" "" ; then
44043f4349dcSKevin Wolf    valgrind_h=yes
44053f4349dcSKevin Wolffi
44063f4349dcSKevin Wolf
44073f4349dcSKevin Wolf########################################
44088ab1bf12SLuiz Capitulino# check if environ is declared
44098ab1bf12SLuiz Capitulino
44108ab1bf12SLuiz Capitulinohas_environ=no
44118ab1bf12SLuiz Capitulinocat > $TMPC << EOF
44128ab1bf12SLuiz Capitulino#include <unistd.h>
44138ab1bf12SLuiz Capitulinoint main(void) {
4414c075a723SBlue Swirl    environ = 0;
44158ab1bf12SLuiz Capitulino    return 0;
44168ab1bf12SLuiz Capitulino}
44178ab1bf12SLuiz CapitulinoEOF
44188ab1bf12SLuiz Capitulinoif compile_prog "" "" ; then
44198ab1bf12SLuiz Capitulino    has_environ=yes
44208ab1bf12SLuiz Capitulinofi
44218ab1bf12SLuiz Capitulino
442276a347e1SRichard Henderson########################################
442376a347e1SRichard Henderson# check if cpuid.h is usable.
442476a347e1SRichard Henderson
442576a347e1SRichard Hendersoncpuid_h=no
442676a347e1SRichard Hendersoncat > $TMPC << EOF
442776a347e1SRichard Henderson#include <cpuid.h>
442876a347e1SRichard Hendersonint main(void) {
4429774d566cSPeter Maydell    unsigned a, b, c, d;
4430774d566cSPeter Maydell    int max = __get_cpuid_max(0, 0);
4431774d566cSPeter Maydell
4432774d566cSPeter Maydell    if (max >= 1) {
4433774d566cSPeter Maydell        __cpuid(1, a, b, c, d);
4434774d566cSPeter Maydell    }
4435774d566cSPeter Maydell
4436774d566cSPeter Maydell    if (max >= 7) {
4437774d566cSPeter Maydell        __cpuid_count(7, 0, a, b, c, d);
4438774d566cSPeter Maydell    }
4439774d566cSPeter Maydell
444076a347e1SRichard Henderson    return 0;
444176a347e1SRichard Henderson}
444276a347e1SRichard HendersonEOF
444376a347e1SRichard Hendersonif compile_prog "" "" ; then
444476a347e1SRichard Henderson    cpuid_h=yes
444576a347e1SRichard Hendersonfi
444676a347e1SRichard Henderson
4447f540166bSRichard Henderson########################################
4448f540166bSRichard Henderson# check if __[u]int128_t is usable.
4449f540166bSRichard Henderson
4450f540166bSRichard Hendersonint128=no
4451f540166bSRichard Hendersoncat > $TMPC << EOF
4452a00f66abSStefan Weil#if defined(__clang_major__) && defined(__clang_minor__)
4453a00f66abSStefan Weil# if ((__clang_major__ < 3) || (__clang_major__ == 3) && (__clang_minor__ < 2))
4454a00f66abSStefan Weil#  error __int128_t does not work in CLANG before 3.2
4455a00f66abSStefan Weil# endif
4456a00f66abSStefan Weil#endif
4457f540166bSRichard Henderson__int128_t a;
4458f540166bSRichard Henderson__uint128_t b;
4459f540166bSRichard Hendersonint main (void) {
4460f540166bSRichard Henderson  a = a + b;
4461f540166bSRichard Henderson  b = a * b;
4462464e3671SPeter Maydell  a = a * a;
4463f540166bSRichard Henderson  return 0;
4464f540166bSRichard Henderson}
4465f540166bSRichard HendersonEOF
4466f540166bSRichard Hendersonif compile_prog "" "" ; then
4467f540166bSRichard Henderson    int128=yes
4468f540166bSRichard Hendersonfi
446976a347e1SRichard Henderson
44701e6e9acaSRichard Henderson########################################
44711e6e9acaSRichard Henderson# check if getauxval is available.
44721e6e9acaSRichard Henderson
44731e6e9acaSRichard Hendersongetauxval=no
44741e6e9acaSRichard Hendersoncat > $TMPC << EOF
44751e6e9acaSRichard Henderson#include <sys/auxv.h>
44761e6e9acaSRichard Hendersonint main(void) {
44771e6e9acaSRichard Henderson  return getauxval(AT_HWCAP) == 0;
44781e6e9acaSRichard Henderson}
44791e6e9acaSRichard HendersonEOF
44801e6e9acaSRichard Hendersonif compile_prog "" "" ; then
44811e6e9acaSRichard Henderson    getauxval=yes
44821e6e9acaSRichard Hendersonfi
44831e6e9acaSRichard Henderson
4484fd0e6053SJohn Snow########################################
4485fd0e6053SJohn Snow# check if ccache is interfering with
4486fd0e6053SJohn Snow# semantic analysis of macros
4487fd0e6053SJohn Snow
44885e4dfd3dSJohn Snowunset CCACHE_CPP2
4489fd0e6053SJohn Snowccache_cpp2=no
4490fd0e6053SJohn Snowcat > $TMPC << EOF
4491fd0e6053SJohn Snowstatic const int Z = 1;
4492fd0e6053SJohn Snow#define fn() ({ Z; })
4493fd0e6053SJohn Snow#define TAUT(X) ((X) == Z)
4494fd0e6053SJohn Snow#define PAREN(X, Y) (X == Y)
4495fd0e6053SJohn Snow#define ID(X) (X)
4496fd0e6053SJohn Snowint main(int argc, char *argv[])
4497fd0e6053SJohn Snow{
4498fd0e6053SJohn Snow    int x = 0, y = 0;
4499fd0e6053SJohn Snow    x = ID(x);
4500fd0e6053SJohn Snow    x = fn();
4501fd0e6053SJohn Snow    fn();
4502fd0e6053SJohn Snow    if (PAREN(x, y)) return 0;
4503fd0e6053SJohn Snow    if (TAUT(Z)) return 0;
4504fd0e6053SJohn Snow    return 0;
4505fd0e6053SJohn Snow}
4506fd0e6053SJohn SnowEOF
4507fd0e6053SJohn Snow
4508fd0e6053SJohn Snowif ! compile_object "-Werror"; then
4509fd0e6053SJohn Snow    ccache_cpp2=yes
4510fd0e6053SJohn Snowfi
4511fd0e6053SJohn Snow
4512b553a042SJohn Snow#################################################
4513b553a042SJohn Snow# clang does not support glibc + FORTIFY_SOURCE.
4514b553a042SJohn Snow
4515b553a042SJohn Snowif test "$fortify_source" != "no"; then
4516b553a042SJohn Snow  if echo | $cc -dM -E - | grep __clang__ > /dev/null 2>&1 ; then
4517b553a042SJohn Snow    fortify_source="no";
4518cfcc7c14SJohn Snow  elif test -n "$cxx" &&
4519cfcc7c14SJohn Snow       echo | $cxx -dM -E - | grep __clang__ >/dev/null 2>&1 ; then
4520b553a042SJohn Snow    fortify_source="no";
4521b553a042SJohn Snow  else
4522b553a042SJohn Snow    fortify_source="yes"
4523b553a042SJohn Snow  fi
4524b553a042SJohn Snowfi
4525b553a042SJohn Snow
4526d2042378SAneesh Kumar K.V##########################################
4527277abf15SJan Vesely# check if struct fsxattr is available via linux/fs.h
4528277abf15SJan Vesely
4529277abf15SJan Veselyhave_fsxattr=no
4530277abf15SJan Veselycat > $TMPC << EOF
4531277abf15SJan Vesely#include <linux/fs.h>
4532277abf15SJan Veselystruct fsxattr foo;
4533277abf15SJan Veselyint main(void) {
4534277abf15SJan Vesely  return 0;
4535277abf15SJan Vesely}
4536277abf15SJan VeselyEOF
4537277abf15SJan Veselyif compile_prog "" "" ; then
4538277abf15SJan Vesely    have_fsxattr=yes
4539277abf15SJan Veselyfi
4540277abf15SJan Vesely
4541b66e10e4SPeter Maydell##########################################
4542b66e10e4SPeter Maydell# check if rtnetlink.h exists and is useful
4543575b22b1SLaurent Vivierhave_rtnetlink=no
4544575b22b1SLaurent Viviercat > $TMPC << EOF
4545575b22b1SLaurent Vivier#include <linux/rtnetlink.h>
4546575b22b1SLaurent Vivierint main(void) {
4547575b22b1SLaurent Vivier  return IFLA_PROTO_DOWN;
4548575b22b1SLaurent Vivier}
4549575b22b1SLaurent VivierEOF
4550575b22b1SLaurent Vivierif compile_prog "" "" ; then
4551575b22b1SLaurent Vivier    have_rtnetlink=yes
4552575b22b1SLaurent Vivierfi
4553575b22b1SLaurent Vivier
45546969ec6cSJames Clarke#################################################
45556969ec6cSJames Clarke# Sparc implicitly links with --relax, which is
45566969ec6cSJames Clarke# incompatible with -r, so --no-relax should be
45576969ec6cSJames Clarke# given. It does no harm to give it on other
45586969ec6cSJames Clarke# platforms too.
45596969ec6cSJames Clarke
45606969ec6cSJames Clarke# Note: the prototype is needed since QEMU_CFLAGS
45616969ec6cSJames Clarke#       contains -Wmissing-prototypes
45626969ec6cSJames Clarkecat > $TMPC << EOF
45636969ec6cSJames Clarkeextern int foo(void);
45646969ec6cSJames Clarkeint foo(void) { return 0; }
45656969ec6cSJames ClarkeEOF
45666969ec6cSJames Clarkeif ! compile_object ""; then
45676969ec6cSJames Clarke  error_exit "Failed to compile object file for LD_REL_FLAGS test"
45686969ec6cSJames Clarkefi
45696969ec6cSJames Clarkeif do_cc -nostdlib -Wl,-r -Wl,--no-relax -o $TMPMO $TMPO; then
45706969ec6cSJames Clarke  LD_REL_FLAGS="-Wl,--no-relax"
45716969ec6cSJames Clarkefi
45726969ec6cSJames Clarke
4573277abf15SJan Vesely##########################################
4574e86ecd4bSJuan Quintela# End of CC checks
4575e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs
4576e86ecd4bSJuan Quintela
45771d728c39SBlue Swirlif test "$gcov" = "yes" ; then
45781d728c39SBlue Swirl  CFLAGS="-fprofile-arcs -ftest-coverage -g $CFLAGS"
45791d728c39SBlue Swirl  LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS"
4580b553a042SJohn Snowelif test "$fortify_source" = "yes" ; then
4581e600cdf3SMichal Privoznik  CFLAGS="-O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $CFLAGS"
4582ce278618SPeter Maydellelif test "$debug" = "no"; then
4583ce278618SPeter Maydell  CFLAGS="-O2 $CFLAGS"
4584e86ecd4bSJuan Quintelafi
4585a316e378SJuan Quintela
45866542aa9cSPeter Lieven##########################################
45876542aa9cSPeter Lieven# Do we have libnfs
45886542aa9cSPeter Lievenif test "$libnfs" != "no" ; then
4589b7d769c9SPeter Lieven  if $pkg_config --atleast-version=1.9.3 libnfs; then
45906542aa9cSPeter Lieven    libnfs="yes"
45916542aa9cSPeter Lieven    libnfs_libs=$($pkg_config --libs libnfs)
45926542aa9cSPeter Lieven    LIBS="$LIBS $libnfs_libs"
45936542aa9cSPeter Lieven  else
45946542aa9cSPeter Lieven    if test "$libnfs" = "yes" ; then
45958efc9363SHu Tao      feature_not_found "libnfs" "Install libnfs devel >= 1.9.3"
45966542aa9cSPeter Lieven    fi
45976542aa9cSPeter Lieven    libnfs="no"
45986542aa9cSPeter Lieven  fi
45996542aa9cSPeter Lievenfi
46001d728c39SBlue Swirl
46016ca026cbSPeter Maydell# Now we've finished running tests it's OK to add -Werror to the compiler flags
46026ca026cbSPeter Maydellif test "$werror" = "yes"; then
46036ca026cbSPeter Maydell    QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
46046ca026cbSPeter Maydellfi
46056ca026cbSPeter Maydell
4606e86ecd4bSJuan Quintelaif test "$solaris" = "no" ; then
4607e86ecd4bSJuan Quintela    if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
46081156c669SJuan Quintela        LDFLAGS="-Wl,--warn-common $LDFLAGS"
4609e86ecd4bSJuan Quintela    fi
4610e86ecd4bSJuan Quintelafi
4611e86ecd4bSJuan Quintela
461294dd53c5SGerd Hoffmann# test if pod2man has --utf8 option
461394dd53c5SGerd Hoffmannif pod2man --help | grep -q utf8; then
461494dd53c5SGerd Hoffmann    POD2MAN="pod2man --utf8"
461594dd53c5SGerd Hoffmannelse
461694dd53c5SGerd Hoffmann    POD2MAN="pod2man"
461794dd53c5SGerd Hoffmannfi
461894dd53c5SGerd Hoffmann
4619952afb71SBlue Swirl# Use ASLR, no-SEH and DEP if available
4620952afb71SBlue Swirlif test "$mingw32" = "yes" ; then
4621952afb71SBlue Swirl    for flag in --dynamicbase --no-seh --nxcompat; do
4622952afb71SBlue Swirl        if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
4623952afb71SBlue Swirl            LDFLAGS="-Wl,$flag $LDFLAGS"
4624952afb71SBlue Swirl        fi
4625952afb71SBlue Swirl    done
4626952afb71SBlue Swirlfi
4627952afb71SBlue Swirl
462810ea68b3SEduardo Habkostqemu_confdir=$sysconfdir$confsuffix
4629e26110cfSFam Zhengqemu_moddir=$libdir$confsuffix
4630528ae5b8SEduardo Habkostqemu_datadir=$datadir$confsuffix
4631834574eaSAnthony Liguoriqemu_localedir="$datadir/locale"
46325a67135aSbellard
46334b1c11fdSDaniel P. Berrangetools=""
46344b1c11fdSDaniel P. Berrangeif test "$want_tools" = "yes" ; then
4635ca35f780SPaolo Bonzini  tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
46364b1c11fdSDaniel P. Berrange  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
46374b1c11fdSDaniel P. Berrange    tools="qemu-nbd\$(EXESUF) $tools"
4638a75eb03bSDavid Marchand    tools="ivshmem-client\$(EXESUF) ivshmem-server\$(EXESUF) $tools"
46394b1c11fdSDaniel P. Berrange  fi
46404b1c11fdSDaniel P. Berrangefi
46414b1c11fdSDaniel P. Berrangeif test "$softmmu" = yes ; then
4642983eef5aSMeador Inge  if test "$virtfs" != no ; then
4643be5ea8edSAnthony Liguori    if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then
4644983eef5aSMeador Inge      virtfs=yes
464517bff52bSM. Mohan Kumar      tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
4646983eef5aSMeador Inge    else
4647983eef5aSMeador Inge      if test "$virtfs" = yes; then
46483f3b5388SStefan Weil        error_exit "VirtFS is supported only on Linux and requires libcap devel and libattr devel"
4649983eef5aSMeador Inge      fi
465017500370SAndreas Färber      virtfs=no
4651983eef5aSMeador Inge    fi
465217bff52bSM. Mohan Kumar  fi
4653d138cee9SMichael Rothfi
46549d6bc27bSMichael Roth
46559d6bc27bSMichael Roth# Probe for guest agent support/options
46569d6bc27bSMichael Roth
4657e8ef31a3SMichael Tokarevif [ "$guest_agent" != "no" ]; then
4658b39297aeSTomoki Sekiyama  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32" = "yes" ] ; then
4659fafcaf1dSMichael Roth      tools="qemu-ga $tools"
4660e8ef31a3SMichael Tokarev      guest_agent=yes
4661e8ef31a3SMichael Tokarev  elif [ "$guest_agent" != yes ]; then
4662e8ef31a3SMichael Tokarev      guest_agent=no
4663e8ef31a3SMichael Tokarev  else
4664e8ef31a3SMichael Tokarev      error_exit "Guest agent is not supported on this platform"
4665ca35f780SPaolo Bonzini  fi
46664b1c11fdSDaniel P. Berrangefi
4667ca35f780SPaolo Bonzini
46689d6bc27bSMichael Roth# Guest agent Window MSI  package
46699d6bc27bSMichael Roth
46709d6bc27bSMichael Rothif test "$guest_agent" != yes; then
46719d6bc27bSMichael Roth  if test "$guest_agent_msi" = yes; then
46729d6bc27bSMichael Roth    error_exit "MSI guest agent package requires guest agent enabled"
46739d6bc27bSMichael Roth  fi
46749d6bc27bSMichael Roth  guest_agent_msi=no
46759d6bc27bSMichael Rothelif test "$mingw32" != "yes"; then
46769d6bc27bSMichael Roth  if test "$guest_agent_msi" = "yes"; then
46779d6bc27bSMichael Roth    error_exit "MSI guest agent package is available only for MinGW Windows cross-compilation"
46789d6bc27bSMichael Roth  fi
46799d6bc27bSMichael Roth  guest_agent_msi=no
46809d6bc27bSMichael Rothelif ! has wixl; then
46819d6bc27bSMichael Roth  if test "$guest_agent_msi" = "yes"; then
46829d6bc27bSMichael Roth    error_exit "MSI guest agent package requires wixl tool installed ( usually from msitools package )"
46839d6bc27bSMichael Roth  fi
46849d6bc27bSMichael Roth  guest_agent_msi=no
46851a34904eSMichael Rothelse
46861a34904eSMichael Roth  # we support qemu-ga, mingw32, and wixl: default to MSI enabled if it wasn't
46871a34904eSMichael Roth  # disabled explicitly
46881a34904eSMichael Roth  if test "$guest_agent_msi" != "no"; then
46891a34904eSMichael Roth    guest_agent_msi=yes
46901a34904eSMichael Roth  fi
46919d6bc27bSMichael Rothfi
46929d6bc27bSMichael Roth
46931a34904eSMichael Rothif test "$guest_agent_msi" = "yes"; then
46949d6bc27bSMichael Roth  if test "$guest_agent_with_vss" = "yes"; then
46959d6bc27bSMichael Roth    QEMU_GA_MSI_WITH_VSS="-D InstallVss"
46969d6bc27bSMichael Roth  fi
46979d6bc27bSMichael Roth
46989d6bc27bSMichael Roth  if test "$QEMU_GA_MANUFACTURER" = ""; then
46999d6bc27bSMichael Roth    QEMU_GA_MANUFACTURER=QEMU
47009d6bc27bSMichael Roth  fi
47019d6bc27bSMichael Roth
47029d6bc27bSMichael Roth  if test "$QEMU_GA_DISTRO" = ""; then
47039d6bc27bSMichael Roth    QEMU_GA_DISTRO=Linux
47049d6bc27bSMichael Roth  fi
47059d6bc27bSMichael Roth
47069d6bc27bSMichael Roth  if test "$QEMU_GA_VERSION" = ""; then
470789138857SStefan Weil      QEMU_GA_VERSION=$(cat $source_path/VERSION)
47089d6bc27bSMichael Roth  fi
47099d6bc27bSMichael Roth
471089138857SStefan Weil  QEMU_GA_MSI_MINGW_DLL_PATH="-D Mingw_dlls=$($pkg_config --variable=prefix glib-2.0)/bin"
47119d6bc27bSMichael Roth
47129d6bc27bSMichael Roth  case "$cpu" in
47139d6bc27bSMichael Roth  x86_64)
47149d6bc27bSMichael Roth    QEMU_GA_MSI_ARCH="-a x64 -D Arch=64"
47159d6bc27bSMichael Roth    ;;
47169d6bc27bSMichael Roth  i386)
47179d6bc27bSMichael Roth    QEMU_GA_MSI_ARCH="-D Arch=32"
47189d6bc27bSMichael Roth    ;;
47199d6bc27bSMichael Roth  *)
47209d6bc27bSMichael Roth    error_exit "CPU $cpu not supported for building installation package"
47219d6bc27bSMichael Roth    ;;
47229d6bc27bSMichael Roth  esac
47239d6bc27bSMichael Rothfi
47249d6bc27bSMichael Roth
4725ca35f780SPaolo Bonzini# Mac OS X ships with a broken assembler
4726ca35f780SPaolo Bonziniroms=
4727ca35f780SPaolo Bonziniif test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
4728ca35f780SPaolo Bonzini        "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
4729ca35f780SPaolo Bonzini        "$softmmu" = yes ; then
4730e57218b6SPeter Maydell    # Different host OS linkers have different ideas about the name of the ELF
4731e57218b6SPeter Maydell    # emulation. Linux and OpenBSD use 'elf_i386'; FreeBSD uses the _fbsd
4732e57218b6SPeter Maydell    # variant; and Windows uses i386pe.
4733e57218b6SPeter Maydell    for emu in elf_i386 elf_i386_fbsd i386pe; do
4734e57218b6SPeter Maydell        if "$ld" -verbose 2>&1 | grep -q "^[[:space:]]*$emu[[:space:]]*$"; then
4735e57218b6SPeter Maydell            ld_i386_emulation="$emu"
4736ca35f780SPaolo Bonzini            roms="optionrom"
4737e57218b6SPeter Maydell            break
4738e57218b6SPeter Maydell        fi
4739e57218b6SPeter Maydell    done
4740ca35f780SPaolo Bonzinifi
4741d0384d1dSAndreas Färberif test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then
474239ac8455SDavid Gibson  roms="$roms spapr-rtas"
474339ac8455SDavid Gibsonfi
4744ca35f780SPaolo Bonzini
47459933c305SChristian Borntraegerif test "$cpu" = "s390x" ; then
47469933c305SChristian Borntraeger  roms="$roms s390-ccw"
47479933c305SChristian Borntraegerfi
47489933c305SChristian Borntraeger
4749964c6fa1SRichard Henderson# Probe for the need for relocating the user-only binary.
475092fe2ba8SPeter Maydellif ( [ "$linux_user" = yes ] || [ "$bsd_user" = yes ] ) && [ "$pie" = no ]; then
4751964c6fa1SRichard Henderson  textseg_addr=
4752964c6fa1SRichard Henderson  case "$cpu" in
4753479eb121SRichard Henderson    arm | i386 | ppc* | s390* | sparc* | x86_64 | x32)
4754479eb121SRichard Henderson      # ??? Rationale for choosing this address
4755964c6fa1SRichard Henderson      textseg_addr=0x60000000
4756964c6fa1SRichard Henderson      ;;
4757964c6fa1SRichard Henderson    mips)
4758479eb121SRichard Henderson      # A 256M aligned address, high in the address space, with enough
4759479eb121SRichard Henderson      # room for the code_gen_buffer above it before the stack.
4760479eb121SRichard Henderson      textseg_addr=0x60000000
4761964c6fa1SRichard Henderson      ;;
4762964c6fa1SRichard Henderson  esac
4763964c6fa1SRichard Henderson  if [ -n "$textseg_addr" ]; then
4764964c6fa1SRichard Henderson    cat > $TMPC <<EOF
4765964c6fa1SRichard Henderson    int main(void) { return 0; }
4766964c6fa1SRichard HendersonEOF
4767964c6fa1SRichard Henderson    textseg_ldflags="-Wl,-Ttext-segment=$textseg_addr"
4768964c6fa1SRichard Henderson    if ! compile_prog "" "$textseg_ldflags"; then
4769964c6fa1SRichard Henderson      # In case ld does not support -Ttext-segment, edit the default linker
4770964c6fa1SRichard Henderson      # script via sed to set the .text start addr.  This is needed on FreeBSD
4771964c6fa1SRichard Henderson      # at least.
477292fe2ba8SPeter Maydell      if ! $ld --verbose >/dev/null 2>&1; then
477392fe2ba8SPeter Maydell        error_exit \
477492fe2ba8SPeter Maydell            "We need to link the QEMU user mode binaries at a" \
477592fe2ba8SPeter Maydell            "specific text address. Unfortunately your linker" \
477692fe2ba8SPeter Maydell            "doesn't support either the -Ttext-segment option or" \
477792fe2ba8SPeter Maydell            "printing the default linker script with --verbose." \
477892fe2ba8SPeter Maydell            "If you don't want the user mode binaries, pass the" \
477992fe2ba8SPeter Maydell            "--disable-user option to configure."
478092fe2ba8SPeter Maydell      fi
478192fe2ba8SPeter Maydell
4782964c6fa1SRichard Henderson      $ld --verbose | sed \
4783964c6fa1SRichard Henderson        -e '1,/==================================================/d' \
4784964c6fa1SRichard Henderson        -e '/==================================================/,$d' \
4785964c6fa1SRichard Henderson        -e "s/[.] = [0-9a-fx]* [+] SIZEOF_HEADERS/. = $textseg_addr + SIZEOF_HEADERS/" \
4786964c6fa1SRichard Henderson        -e "s/__executable_start = [0-9a-fx]*/__executable_start = $textseg_addr/" > config-host.ld
4787964c6fa1SRichard Henderson      textseg_ldflags="-Wl,-T../config-host.ld"
4788964c6fa1SRichard Henderson    fi
4789964c6fa1SRichard Henderson  fi
4790964c6fa1SRichard Hendersonfi
4791964c6fa1SRichard Henderson
479202d34f62SCole Robinsonecho_version() {
479302d34f62SCole Robinson    if test "$1" = "yes" ; then
479402d34f62SCole Robinson        echo "($2)"
479502d34f62SCole Robinson    fi
479602d34f62SCole Robinson}
479702d34f62SCole Robinson
479850e12060SJan Kiszka# prepend pixman and ftd flags after all config tests are done
479950e12060SJan KiszkaQEMU_CFLAGS="$pixman_cflags $fdt_cflags $QEMU_CFLAGS"
480050e12060SJan Kiszkalibs_softmmu="$pixman_libs $libs_softmmu"
48015ca9388aSGerd Hoffmann
48027d13299dSbellardecho "Install prefix    $prefix"
480389138857SStefan Weilecho "BIOS directory    $(eval echo $qemu_datadir)"
480489138857SStefan Weilecho "binary directory  $(eval echo $bindir)"
480589138857SStefan Weilecho "library directory $(eval echo $libdir)"
480689138857SStefan Weilecho "module directory  $(eval echo $qemu_moddir)"
480789138857SStefan Weilecho "libexec directory $(eval echo $libexecdir)"
480889138857SStefan Weilecho "include directory $(eval echo $includedir)"
480989138857SStefan Weilecho "config directory  $(eval echo $sysconfdir)"
481011d9f695Sbellardif test "$mingw32" = "no" ; then
481189138857SStefan Weilecho "local state directory   $(eval echo $local_statedir)"
481289138857SStefan Weilecho "Manual directory  $(eval echo $mandir)"
481343ce4dfeSbellardecho "ELF interp prefix $interp_prefix"
48145a699bbbSLaszlo Ersekelse
48155a699bbbSLaszlo Ersekecho "local state directory   queried at runtime"
4816d9840e25STomoki Sekiyamaecho "Windows SDK       $win_sdk"
481711d9f695Sbellardfi
48185a67135aSbellardecho "Source path       $source_path"
48197d13299dSbellardecho "C compiler        $cc"
482083469015Sbellardecho "Host C compiler   $host_cc"
482183f73fceSTomoki Sekiyamaecho "C++ compiler      $cxx"
48223c4a4d0dSPeter Maydellecho "Objective-C compiler $objcc"
482345d285abSPeter Maydellecho "ARFLAGS           $ARFLAGS"
48240c439cbfSJuan Quintelaecho "CFLAGS            $CFLAGS"
4825a558ee17SJuan Quintelaecho "QEMU_CFLAGS       $QEMU_CFLAGS"
48260c439cbfSJuan Quintelaecho "LDFLAGS           $LDFLAGS"
48277d13299dSbellardecho "make              $make"
48286a882643Spbrookecho "install           $install"
4829c886edfbSBlue Swirlecho "python            $python"
4830e2d8830eSBradif test "$slirp" = "yes" ; then
4831e2d8830eSBrad    echo "smbd              $smbd"
4832e2d8830eSBradfi
483317969268SFam Zhengecho "module support    $modules"
4834a98fd896Sbellardecho "host CPU          $cpu"
4835de83cd02Sbellardecho "host big endian   $bigendian"
483697a847bcSbellardecho "target list       $target_list"
4837ade25b0dSaurel32echo "tcg debug enabled $debug_tcg"
48387d13299dSbellardecho "gprof enabled     $gprof"
483903b4fe7dSaliguoriecho "sparse enabled    $sparse"
48401625af87Saliguoriecho "strip binaries    $strip_opt"
484105c2a3e7Sbellardecho "profiler          $profiler"
484243ce4dfeSbellardecho "static build      $static"
48435b0753e0Sbellardif test "$darwin" = "yes" ; then
48445b0753e0Sbellard    echo "Cocoa support     $cocoa"
48455b0753e0Sbellardfi
4846e2134eb9SGerd Hoffmannecho "pixman            $pixman"
484789138857SStefan Weilecho "SDL support       $sdl $(echo_version $sdl $sdlversion)"
484889138857SStefan Weilecho "GTK support       $gtk $(echo_version $gtk $gtk_version)"
4849925a0400SGerd Hoffmannecho "GTK GL support    $gtk_gl"
485089138857SStefan Weilecho "VTE support       $vte $(echo_version $vte $vteversion)"
4851a1c5e949SDaniel P. Berrangeecho "TLS priority      $tls_priority"
4852ddbb0d09SDaniel P. Berrangeecho "GNUTLS support    $gnutls"
4853b917da4cSDaniel P. Berrangeecho "GNUTLS rnd        $gnutls_rnd"
485491bfcdb0SDaniel P. Berrangeecho "libgcrypt         $gcrypt"
485537788f25SDaniel P. Berrangeecho "libgcrypt kdf     $gcrypt_kdf"
485689138857SStefan Weilecho "nettle            $nettle $(echo_version $nettle $nettle_version)"
4857fff2f982SDaniel P. Berrangeecho "nettle kdf        $nettle_kdf"
48589a2fd434SDaniel P. Berrangeecho "libtasn1          $tasn1"
48594d3b6f6eSbalrogecho "curses support    $curses"
48609d9e1521SGerd Hoffmannecho "virgl support     $virglrenderer"
4861769ce76dSAlexander Grafecho "curl support      $curl"
486267b915a5Sbellardecho "mingw32 support   $mingw32"
48630c58ac1cSmalcecho "Audio drivers     $audio_drv_list"
4864b64ec4e4SFam Zhengecho "Block whitelist (rw) $block_drv_rw_whitelist"
4865b64ec4e4SFam Zhengecho "Block whitelist (ro) $block_drv_ro_whitelist"
4866983eef5aSMeador Ingeecho "VirtFS support    $virtfs"
4867821601eaSJes Sorensenecho "VNC support       $vnc"
4868821601eaSJes Sorensenif test "$vnc" = "yes" ; then
48692f9606b3Saliguori    echo "VNC SASL support  $vnc_sasl"
48702f6f5c7aSCorentin Chary    echo "VNC JPEG support  $vnc_jpeg"
4871efe556adSCorentin Chary    echo "VNC PNG support   $vnc_png"
4872821601eaSJes Sorensenfi
48733142255cSblueswir1if test -n "$sparc_cpu"; then
48743142255cSblueswir1    echo "Target Sparc Arch $sparc_cpu"
48753142255cSblueswir1fi
4876e37630caSaliguoriecho "xen support       $xen"
48773996e85cSPaul Durrantif test "$xen" = "yes" ; then
48783996e85cSPaul Durrant  echo "xen ctrl version  $xen_ctrl_version"
487964a7ad6fSIan Campbell  echo "pv dom build      $xen_pv_domain_build"
48803996e85cSPaul Durrantfi
48812e4d9fb1Saurel32echo "brlapi support    $brlapi"
4882a20a6f46SJuan Quintelaecho "bluez  support    $bluez"
4883a25dba17SJuan Quintelaecho "Documentation     $docs"
488440d6444eSAvi Kivityecho "PIE               $pie"
48858a16d273Sthsecho "vde support       $vde"
488658952137SVincenzo Maffioneecho "netmap support    $netmap"
48875c6c3a6cSChristoph Hellwigecho "Linux AIO support $linux_aio"
4888758e8e38SVenkateswararao Jujjuri (JV)echo "ATTR/XATTR support $attr"
488977755340Sthsecho "Install blobs     $blobs"
4890b31a0277SJuan Quintelaecho "KVM support       $kvm"
48912da776dbSMichael R. Hinesecho "RDMA support      $rdma"
48929195b2c2SStefan Weilecho "TCG interpreter   $tcg_interpreter"
4893f652e6afSaurel32echo "fdt support       $fdt"
4894ceb42de8Saliguoriecho "preadv support    $preadv"
48955f6b9e8fSBlue Swirlecho "fdatasync         $fdatasync"
4896e78815a5SAndreas Färberecho "madvise           $madvise"
4897e78815a5SAndreas Färberecho "posix_madvise     $posix_madvise"
4898ee682d27SStefan Weilecho "uuid support      $uuid"
489947e98658SCorey Bryantecho "libcap-ng support $cap_ng"
4900d5970055SMichael S. Tsirkinecho "vhost-net support $vhost_net"
49015e9be92dSNicholas Bellingerecho "vhost-scsi support $vhost_scsi"
4902fc0b9b0eSStefan Hajnocziecho "vhost-vsock support $vhost_vsock"
49035b808275SLluís Vilanovaecho "Trace backends    $trace_backends"
4904713572a7SMarc-André Lureauif have_backend "simple"; then
49059410b56cSPrerna Saxenaecho "Trace output file $trace_file-<pid>"
4906e00e36fbSStefan Weilfi
490789138857SStefan Weilecho "spice support     $spice $(echo_version $spice $spice_protocol_version/$spice_server_version)"
4908f27aaf4bSChristian Brunnerecho "rbd support       $rbd"
4909dce512deSChristoph Hellwigecho "xfsctl support    $xfs"
49107b02f544SMarc-André Lureauecho "smartcard support $smartcard"
49112b2325ffSGerd Hoffmannecho "libusb            $libusb"
491269354a83SHans de Goedeecho "usb net redir     $usb_redir"
4913da076ffeSGerd Hoffmannecho "OpenGL support    $opengl"
4914014cb152SGerd Hoffmannecho "OpenGL dmabufs    $opengl_dmabuf"
4915c589b249SRonnie Sahlbergecho "libiscsi support  $libiscsi"
49166542aa9cSPeter Lievenecho "libnfs support    $libnfs"
4917d138cee9SMichael Rothecho "build guest agent $guest_agent"
4918d9840e25STomoki Sekiyamaecho "QGA VSS support   $guest_agent_with_vss"
491950cbebb9SMichael Rothecho "QGA w32 disk info $guest_agent_ntddscsi"
49204c875d89SMichael Rothecho "QGA MSI support   $guest_agent_msi"
4921f794573eSEduardo Otuboecho "seccomp support   $seccomp"
49227c2acc70SPeter Maydellecho "coroutine backend $coroutine"
492370c60c08SStefan Hajnocziecho "coroutine pool    $coroutine_pool"
4924eb100396SBharata B Raoecho "GlusterFS support $glusterfs"
4925c9a12e75SChrysostomos Nanakosecho "Archipelago support $archipelago"
49261d728c39SBlue Swirlecho "gcov              $gcov_tool"
49271d728c39SBlue Swirlecho "gcov enabled      $gcov"
4928ab214c29SStefan Bergerecho "TPM support       $tpm"
49290a12ec87SRichard W.M. Jonesecho "libssh2 support   $libssh2"
49303b8acc11SPaolo Bonziniecho "TPM passthrough   $tpm_passthrough"
49313556c233SPaolo Bonziniecho "QOM debugging     $qom_cast_debug"
49324f18b782SJeff Codyecho "vhdx              $vhdx"
4933607dacd0Sqiaonuohanecho "lzo support       $lzo"
4934607dacd0Sqiaonuohanecho "snappy support    $snappy"
49356b383c08SPeter Wuecho "bzip2 support     $bzip2"
4936a99d57bbSWanlong Gaoecho "NUMA host support $numa"
49372847b469SFam Zhengecho "tcmalloc support  $tcmalloc"
49387b01cb97SAlexandre Derumierecho "jemalloc support  $jemalloc"
493999f2dbd3SLiang Liecho "avx2 optimization $avx2_opt"
4940a6b1d4c0SChanglong Xieecho "replication support $replication"
494167b915a5Sbellard
49421ba16968SStefan Weilif test "$sdl_too_old" = "yes"; then
494324b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support"
4944e8cd23deSbellardfi
494597a847bcSbellard
494698ec69acSJuan Quintelaconfig_host_mak="config-host.mak"
494797a847bcSbellard
4948dbd99ae3SStefan Weilecho "# Automatically generated by configure - do not modify" >config-all-disas.mak
4949dbd99ae3SStefan Weil
495098ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak
495198ec69acSJuan Quintelaecho >> $config_host_mak
495298ec69acSJuan Quintela
4953e6c3b0f7SPaolo Bonziniecho all: >> $config_host_mak
495499d7cc75SPaolo Bonziniecho "prefix=$prefix" >> $config_host_mak
495599d7cc75SPaolo Bonziniecho "bindir=$bindir" >> $config_host_mak
49563aa5d2beSAlon Levyecho "libdir=$libdir" >> $config_host_mak
49578bf188aaSMichael Tokarevecho "libexecdir=$libexecdir" >> $config_host_mak
49580f94d6daSAlon Levyecho "includedir=$includedir" >> $config_host_mak
495999d7cc75SPaolo Bonziniecho "mandir=$mandir" >> $config_host_mak
496099d7cc75SPaolo Bonziniecho "sysconfdir=$sysconfdir" >> $config_host_mak
496122d07038SEduardo Habkostecho "qemu_confdir=$qemu_confdir" >> $config_host_mak
49629afa52ceSEduardo Habkostecho "qemu_datadir=$qemu_datadir" >> $config_host_mak
49639afa52ceSEduardo Habkostecho "qemu_docdir=$qemu_docdir" >> $config_host_mak
4964e26110cfSFam Zhengecho "qemu_moddir=$qemu_moddir" >> $config_host_mak
49655a699bbbSLaszlo Ersekif test "$mingw32" = "no" ; then
4966785c23aeSLuiz Capitulino  echo "qemu_localstatedir=$local_statedir" >> $config_host_mak
49675a699bbbSLaszlo Ersekfi
4968f354b1a1SMichael Tokarevecho "qemu_helperdir=$libexecdir" >> $config_host_mak
4969f9943cd5SGerd Hoffmannecho "extra_cflags=$EXTRA_CFLAGS" >> $config_host_mak
4970f9943cd5SGerd Hoffmannecho "extra_ldflags=$EXTRA_LDFLAGS" >> $config_host_mak
4971834574eaSAnthony Liguoriecho "qemu_localedir=$qemu_localedir" >> $config_host_mak
4972f544a488SPaolo Bonziniecho "libs_softmmu=$libs_softmmu" >> $config_host_mak
4973804edf29SJuan Quintela
497498ec69acSJuan Quintelaecho "ARCH=$ARCH" >> $config_host_mak
4975727e5283SPaolo Bonzini
4976f8393946Saurel32if test "$debug_tcg" = "yes" ; then
49772358a494SJuan Quintela  echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
4978f8393946Saurel32fi
49791625af87Saliguoriif test "$strip_opt" = "yes" ; then
498052ba784dSHollis Blanchard  echo "STRIP=${strip}" >> $config_host_mak
49811625af87Saliguorifi
49827d13299dSbellardif test "$bigendian" = "yes" ; then
4983e2542fe2SJuan Quintela  echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
498497a847bcSbellardfi
498567b915a5Sbellardif test "$mingw32" = "yes" ; then
498698ec69acSJuan Quintela  echo "CONFIG_WIN32=y" >> $config_host_mak
498789138857SStefan Weil  rc_version=$(cat $source_path/VERSION)
49889fe6de94SBlue Swirl  version_major=${rc_version%%.*}
49899fe6de94SBlue Swirl  rc_version=${rc_version#*.}
49909fe6de94SBlue Swirl  version_minor=${rc_version%%.*}
49919fe6de94SBlue Swirl  rc_version=${rc_version#*.}
49929fe6de94SBlue Swirl  version_subminor=${rc_version%%.*}
49939fe6de94SBlue Swirl  version_micro=0
49949fe6de94SBlue Swirl  echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
49959fe6de94SBlue Swirl  echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
4996d9840e25STomoki Sekiyama  if test "$guest_agent_with_vss" = "yes" ; then
4997d9840e25STomoki Sekiyama    echo "CONFIG_QGA_VSS=y" >> $config_host_mak
4998f33ca81fSMichael Roth    echo "QGA_VSS_PROVIDER=$qga_vss_provider" >> $config_host_mak
4999d9840e25STomoki Sekiyama    echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak
5000d9840e25STomoki Sekiyama  fi
500150cbebb9SMichael Roth  if test "$guest_agent_ntddscsi" = "yes" ; then
500250cbebb9SMichael Roth    echo "CONFIG_QGA_NTDDDISK=y" >> $config_host_mak
500350cbebb9SMichael Roth  fi
50041a34904eSMichael Roth  if test "$guest_agent_msi" = "yes"; then
50059dacf32dSYossi Hindin    echo "QEMU_GA_MSI_ENABLED=yes" >> $config_host_mak
50069dacf32dSYossi Hindin    echo "QEMU_GA_MSI_MINGW_DLL_PATH=${QEMU_GA_MSI_MINGW_DLL_PATH}" >> $config_host_mak
50079dacf32dSYossi Hindin    echo "QEMU_GA_MSI_WITH_VSS=${QEMU_GA_MSI_WITH_VSS}" >> $config_host_mak
50089dacf32dSYossi Hindin    echo "QEMU_GA_MSI_ARCH=${QEMU_GA_MSI_ARCH}" >> $config_host_mak
50099dacf32dSYossi Hindin    echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER}" >> $config_host_mak
50109dacf32dSYossi Hindin    echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO}" >> $config_host_mak
50119dacf32dSYossi Hindin    echo "QEMU_GA_VERSION=${QEMU_GA_VERSION}" >> $config_host_mak
50129dacf32dSYossi Hindin  fi
5013210fa556Spbrookelse
501435f4df27SJuan Quintela  echo "CONFIG_POSIX=y" >> $config_host_mak
5015210fa556Spbrookfi
5016128ab2ffSblueswir1
5017dffcb71cSMark McLoughlinif test "$linux" = "yes" ; then
5018dffcb71cSMark McLoughlin  echo "CONFIG_LINUX=y" >> $config_host_mak
5019dffcb71cSMark McLoughlinfi
5020dffcb71cSMark McLoughlin
502183fb7adfSbellardif test "$darwin" = "yes" ; then
502298ec69acSJuan Quintela  echo "CONFIG_DARWIN=y" >> $config_host_mak
502383fb7adfSbellardfi
5024b29fe3edSmalc
5025b29fe3edSmalcif test "$aix" = "yes" ; then
502698ec69acSJuan Quintela  echo "CONFIG_AIX=y" >> $config_host_mak
5027b29fe3edSmalcfi
5028b29fe3edSmalc
5029ec530c81Sbellardif test "$solaris" = "yes" ; then
503098ec69acSJuan Quintela  echo "CONFIG_SOLARIS=y" >> $config_host_mak
50312358a494SJuan Quintela  echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
50320475a5caSths  if test "$needs_libsunmath" = "yes" ; then
503375b5a697SJuan Quintela    echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
50340475a5caSths  fi
5035ec530c81Sbellardfi
5036179cf400SAndreas Färberif test "$haiku" = "yes" ; then
5037179cf400SAndreas Färber  echo "CONFIG_HAIKU=y" >> $config_host_mak
5038179cf400SAndreas Färberfi
503997a847bcSbellardif test "$static" = "yes" ; then
504098ec69acSJuan Quintela  echo "CONFIG_STATIC=y" >> $config_host_mak
504197a847bcSbellardfi
50421ba16968SStefan Weilif test "$profiler" = "yes" ; then
50432358a494SJuan Quintela  echo "CONFIG_PROFILER=y" >> $config_host_mak
504405c2a3e7Sbellardfi
5045c20709aaSbellardif test "$slirp" = "yes" ; then
504698ec69acSJuan Quintela  echo "CONFIG_SLIRP=y" >> $config_host_mak
5047e2d8830eSBrad  echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak
5048c20709aaSbellardfi
50498a16d273Sthsif test "$vde" = "yes" ; then
505098ec69acSJuan Quintela  echo "CONFIG_VDE=y" >> $config_host_mak
50518a16d273Sthsfi
505258952137SVincenzo Maffioneif test "$netmap" = "yes" ; then
505358952137SVincenzo Maffione  echo "CONFIG_NETMAP=y" >> $config_host_mak
505458952137SVincenzo Maffionefi
5055015a33bdSGongleiif test "$l2tpv3" = "yes" ; then
5056015a33bdSGonglei  echo "CONFIG_L2TPV3=y" >> $config_host_mak
5057015a33bdSGongleifi
505847e98658SCorey Bryantif test "$cap_ng" = "yes" ; then
505947e98658SCorey Bryant  echo "CONFIG_LIBCAP=y" >> $config_host_mak
506047e98658SCorey Bryantfi
50612358a494SJuan Quintelaecho "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
50620c58ac1cSmalcfor drv in $audio_drv_list; do
506389138857SStefan Weil    def=CONFIG_$(echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]')
506498ec69acSJuan Quintela    echo "$def=y" >> $config_host_mak
50650c58ac1cSmalcdone
506667f86e8eSJuan Quintelaif test "$audio_pt_int" = "yes" ; then
506767f86e8eSJuan Quintela  echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
506867f86e8eSJuan Quintelafi
5069d5631638Smalcif test "$audio_win_int" = "yes" ; then
5070d5631638Smalc  echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
5071d5631638Smalcfi
5072b64ec4e4SFam Zhengecho "CONFIG_BDRV_RW_WHITELIST=$block_drv_rw_whitelist" >> $config_host_mak
5073b64ec4e4SFam Zhengecho "CONFIG_BDRV_RO_WHITELIST=$block_drv_ro_whitelist" >> $config_host_mak
5074821601eaSJes Sorensenif test "$vnc" = "yes" ; then
5075821601eaSJes Sorensen  echo "CONFIG_VNC=y" >> $config_host_mak
5076821601eaSJes Sorensenfi
50772f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then
507898ec69acSJuan Quintela  echo "CONFIG_VNC_SASL=y" >> $config_host_mak
50792f9606b3Saliguorifi
5080821601eaSJes Sorensenif test "$vnc_jpeg" = "yes" ; then
50812f6f5c7aSCorentin Chary  echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
50822f6f5c7aSCorentin Charyfi
5083821601eaSJes Sorensenif test "$vnc_png" = "yes" ; then
5084efe556adSCorentin Chary  echo "CONFIG_VNC_PNG=y" >> $config_host_mak
5085efe556adSCorentin Charyfi
508676655d6dSaliguoriif test "$fnmatch" = "yes" ; then
50872358a494SJuan Quintela  echo "CONFIG_FNMATCH=y" >> $config_host_mak
508876655d6dSaliguorifi
5089ee682d27SStefan Weilif test "$uuid" = "yes" ; then
5090ee682d27SStefan Weil  echo "CONFIG_UUID=y" >> $config_host_mak
5091ee682d27SStefan Weilfi
5092dce512deSChristoph Hellwigif test "$xfs" = "yes" ; then
5093dce512deSChristoph Hellwig  echo "CONFIG_XFS=y" >> $config_host_mak
5094dce512deSChristoph Hellwigfi
509589138857SStefan Weilqemu_version=$(head $source_path/VERSION)
509698ec69acSJuan Quintelaecho "VERSION=$qemu_version" >>$config_host_mak
50972358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak
509898ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak
509998ec69acSJuan Quintelaecho "TARGET_DIRS=$target_list" >> $config_host_mak
5100a25dba17SJuan Quintelaif [ "$docs" = "yes" ] ; then
510198ec69acSJuan Quintela  echo "BUILD_DOCS=yes" >> $config_host_mak
5102cc8ae6deSpbrookfi
510317969268SFam Zhengif test "$modules" = "yes"; then
5104e26110cfSFam Zheng  # $shacmd can generate a hash started with digit, which the compiler doesn't
5105e26110cfSFam Zheng  # like as an symbol. So prefix it with an underscore
510689138857SStefan Weil  echo "CONFIG_STAMP=_$( (echo $qemu_version; echo $pkgversion; cat $0) | $shacmd - | cut -f1 -d\ )" >> $config_host_mak
510717969268SFam Zheng  echo "CONFIG_MODULES=y" >> $config_host_mak
510817969268SFam Zhengfi
51091ac88f28SJuan Quintelaif test "$sdl" = "yes" ; then
511098ec69acSJuan Quintela  echo "CONFIG_SDL=y" >> $config_host_mak
5111a3f4d63dSCole Robinson  echo "CONFIG_SDLABI=$sdlabi" >> $config_host_mak
51128ad3a7ddSJuan Quintela  echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
511349ecc3faSbellardfi
511449ecc3faSbellardif test "$cocoa" = "yes" ; then
511598ec69acSJuan Quintela  echo "CONFIG_COCOA=y" >> $config_host_mak
511649ecc3faSbellardfi
51174d3b6f6eSbalrogif test "$curses" = "yes" ; then
511898ec69acSJuan Quintela  echo "CONFIG_CURSES=y" >> $config_host_mak
5119ab4e5602SJan Kiszkafi
5120ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then
51212358a494SJuan Quintela  echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
5122ebc996f3SRiku Voipiofi
5123099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then
51242358a494SJuan Quintela  echo "CONFIG_PIPE2=y" >> $config_host_mak
5125099d6b0fSRiku Voipiofi
512640ff6d7eSKevin Wolfif test "$accept4" = "yes" ; then
512740ff6d7eSKevin Wolf  echo "CONFIG_ACCEPT4=y" >> $config_host_mak
512840ff6d7eSKevin Wolffi
51293ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then
51302358a494SJuan Quintela  echo "CONFIG_SPLICE=y" >> $config_host_mak
51313ce34dfbSvibisreenivasanfi
5132c2882b96SRiku Voipioif test "$eventfd" = "yes" ; then
5133c2882b96SRiku Voipio  echo "CONFIG_EVENTFD=y" >> $config_host_mak
5134c2882b96SRiku Voipiofi
5135751bcc39SMarc-André Lureauif test "$memfd" = "yes" ; then
5136751bcc39SMarc-André Lureau  echo "CONFIG_MEMFD=y" >> $config_host_mak
5137751bcc39SMarc-André Lureaufi
5138d0927938SUlrich Hechtif test "$fallocate" = "yes" ; then
5139d0927938SUlrich Hecht  echo "CONFIG_FALLOCATE=y" >> $config_host_mak
5140d0927938SUlrich Hechtfi
51413d4fa43eSKusanagi Kouichiif test "$fallocate_punch_hole" = "yes" ; then
51423d4fa43eSKusanagi Kouichi  echo "CONFIG_FALLOCATE_PUNCH_HOLE=y" >> $config_host_mak
51433d4fa43eSKusanagi Kouichifi
5144b953f075SDenis V. Lunevif test "$fallocate_zero_range" = "yes" ; then
5145b953f075SDenis V. Lunev  echo "CONFIG_FALLOCATE_ZERO_RANGE=y" >> $config_host_mak
5146b953f075SDenis V. Lunevfi
5147ed911435SKevin Wolfif test "$posix_fallocate" = "yes" ; then
5148ed911435SKevin Wolf  echo "CONFIG_POSIX_FALLOCATE=y" >> $config_host_mak
5149ed911435SKevin Wolffi
5150c727f47dSPeter Maydellif test "$sync_file_range" = "yes" ; then
5151c727f47dSPeter Maydell  echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak
5152c727f47dSPeter Maydellfi
5153dace20dcSPeter Maydellif test "$fiemap" = "yes" ; then
5154dace20dcSPeter Maydell  echo "CONFIG_FIEMAP=y" >> $config_host_mak
5155dace20dcSPeter Maydellfi
5156d0927938SUlrich Hechtif test "$dup3" = "yes" ; then
5157d0927938SUlrich Hecht  echo "CONFIG_DUP3=y" >> $config_host_mak
5158d0927938SUlrich Hechtfi
51594e0c6529SAlex Blighif test "$ppoll" = "yes" ; then
51604e0c6529SAlex Bligh  echo "CONFIG_PPOLL=y" >> $config_host_mak
51614e0c6529SAlex Blighfi
5162cd758dd0SAlex Blighif test "$prctl_pr_set_timerslack" = "yes" ; then
5163cd758dd0SAlex Bligh  echo "CONFIG_PRCTL_PR_SET_TIMERSLACK=y" >> $config_host_mak
5164cd758dd0SAlex Blighfi
51653b6edd16SPeter Maydellif test "$epoll" = "yes" ; then
51663b6edd16SPeter Maydell  echo "CONFIG_EPOLL=y" >> $config_host_mak
51673b6edd16SPeter Maydellfi
51683b6edd16SPeter Maydellif test "$epoll_create1" = "yes" ; then
51693b6edd16SPeter Maydell  echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak
51703b6edd16SPeter Maydellfi
5171a8fd1abaSPeter Maydellif test "$sendfile" = "yes" ; then
5172a8fd1abaSPeter Maydell  echo "CONFIG_SENDFILE=y" >> $config_host_mak
5173a8fd1abaSPeter Maydellfi
517451834341SRiku Voipioif test "$timerfd" = "yes" ; then
517551834341SRiku Voipio  echo "CONFIG_TIMERFD=y" >> $config_host_mak
517651834341SRiku Voipiofi
51779af5c906SRiku Voipioif test "$setns" = "yes" ; then
51789af5c906SRiku Voipio  echo "CONFIG_SETNS=y" >> $config_host_mak
51799af5c906SRiku Voipiofi
51803b3f24adSaurel32if test "$inotify" = "yes" ; then
51812358a494SJuan Quintela  echo "CONFIG_INOTIFY=y" >> $config_host_mak
51823b3f24adSaurel32fi
5183c05c7a73SRiku Voipioif test "$inotify1" = "yes" ; then
5184c05c7a73SRiku Voipio  echo "CONFIG_INOTIFY1=y" >> $config_host_mak
5185c05c7a73SRiku Voipiofi
51866ae9a1f4SJuan Quintelaif test "$byteswap_h" = "yes" ; then
51876ae9a1f4SJuan Quintela  echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
51886ae9a1f4SJuan Quintelafi
51896ae9a1f4SJuan Quintelaif test "$bswap_h" = "yes" ; then
51906ae9a1f4SJuan Quintela  echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
51916ae9a1f4SJuan Quintelafi
5192769ce76dSAlexander Grafif test "$curl" = "yes" ; then
5193d3399d7cSFam Zheng  echo "CONFIG_CURL=m" >> $config_host_mak
5194b1d5a277SJuan Quintela  echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
51956ebc91e5SFam Zheng  echo "CURL_LIBS=$curl_libs" >> $config_host_mak
5196769ce76dSAlexander Graffi
51972e4d9fb1Saurel32if test "$brlapi" = "yes" ; then
519898ec69acSJuan Quintela  echo "CONFIG_BRLAPI=y" >> $config_host_mak
51992e4d9fb1Saurel32fi
5200fb599c9aSbalrogif test "$bluez" = "yes" ; then
520198ec69acSJuan Quintela  echo "CONFIG_BLUEZ=y" >> $config_host_mak
5202ef7635ecSJuan Quintela  echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
5203fb599c9aSbalrogfi
5204d46f7c9eSDr. David Alan Gilbertif test "$glib_subprocess" = "yes" ; then
52059d41401bSMichael S. Tsirkin  echo "CONFIG_HAS_GLIB_SUBPROCESS_TESTS=y" >> $config_host_mak
52069d41401bSMichael S. Tsirkinfi
5207e18df141SAnthony Liguoriecho "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak
5208a4ccabcfSAnthony Liguoriif test "$gtk" = "yes" ; then
5209a4ccabcfSAnthony Liguori  echo "CONFIG_GTK=y" >> $config_host_mak
5210a3f4d63dSCole Robinson  echo "CONFIG_GTKABI=$gtkabi" >> $config_host_mak
5211a4ccabcfSAnthony Liguori  echo "GTK_CFLAGS=$gtk_cflags" >> $config_host_mak
5212014cb152SGerd Hoffmann  echo "GTK_LIBS=$gtk_libs" >> $config_host_mak
5213925a0400SGerd Hoffmann  if test "$gtk_gl" = "yes" ; then
5214925a0400SGerd Hoffmann    echo "CONFIG_GTK_GL=y" >> $config_host_mak
5215925a0400SGerd Hoffmann  fi
5216bbbf9bfbSStefan Weilfi
5217a1c5e949SDaniel P. Berrangeecho "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak
5218ddbb0d09SDaniel P. Berrangeif test "$gnutls" = "yes" ; then
5219ddbb0d09SDaniel P. Berrange  echo "CONFIG_GNUTLS=y" >> $config_host_mak
5220ddbb0d09SDaniel P. Berrangefi
5221b917da4cSDaniel P. Berrangeif test "$gnutls_rnd" = "yes" ; then
5222b917da4cSDaniel P. Berrange  echo "CONFIG_GNUTLS_RND=y" >> $config_host_mak
5223b917da4cSDaniel P. Berrangefi
522491bfcdb0SDaniel P. Berrangeif test "$gcrypt" = "yes" ; then
522591bfcdb0SDaniel P. Berrange  echo "CONFIG_GCRYPT=y" >> $config_host_mak
522637788f25SDaniel P. Berrange  if test "$gcrypt_kdf" = "yes" ; then
522737788f25SDaniel P. Berrange    echo "CONFIG_GCRYPT_KDF=y" >> $config_host_mak
522837788f25SDaniel P. Berrange  fi
522962893b67SDaniel P. Berrangefi
523091bfcdb0SDaniel P. Berrangeif test "$nettle" = "yes" ; then
523191bfcdb0SDaniel P. Berrange  echo "CONFIG_NETTLE=y" >> $config_host_mak
5232becaeb72SRadim Krčmář  echo "CONFIG_NETTLE_VERSION_MAJOR=${nettle_version%%.*}" >> $config_host_mak
5233fff2f982SDaniel P. Berrange  if test "$nettle_kdf" = "yes" ; then
5234fff2f982SDaniel P. Berrange    echo "CONFIG_NETTLE_KDF=y" >> $config_host_mak
5235fff2f982SDaniel P. Berrange  fi
5236ed754746SDaniel P. Berrangefi
52379a2fd434SDaniel P. Berrangeif test "$tasn1" = "yes" ; then
52389a2fd434SDaniel P. Berrange  echo "CONFIG_TASN1=y" >> $config_host_mak
52399a2fd434SDaniel P. Berrangefi
5240559607eaSDaniel P. Berrangeif test "$have_ifaddrs_h" = "yes" ; then
5241559607eaSDaniel P. Berrange    echo "HAVE_IFADDRS_H=y" >> $config_host_mak
5242559607eaSDaniel P. Berrangefi
5243277abf15SJan Vesely
5244277abf15SJan Vesely# Work around a system header bug with some kernel/XFS header
5245277abf15SJan Vesely# versions where they both try to define 'struct fsxattr':
5246277abf15SJan Vesely# xfs headers will not try to redefine structs from linux headers
5247277abf15SJan Vesely# if this macro is set.
5248277abf15SJan Veselyif test "$have_fsxattr" = "yes" ; then
5249277abf15SJan Vesely    echo "HAVE_FSXATTR=y" >> $config_host_mak
5250277abf15SJan Veselyfi
5251bbbf9bfbSStefan Weilif test "$vte" = "yes" ; then
5252bbbf9bfbSStefan Weil  echo "CONFIG_VTE=y" >> $config_host_mak
5253a4ccabcfSAnthony Liguori  echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak
5254a4ccabcfSAnthony Liguorifi
52559d9e1521SGerd Hoffmannif test "$virglrenderer" = "yes" ; then
52569d9e1521SGerd Hoffmann  echo "CONFIG_VIRGL=y" >> $config_host_mak
52579d9e1521SGerd Hoffmann  echo "VIRGL_CFLAGS=$virgl_cflags" >> $config_host_mak
52589d9e1521SGerd Hoffmann  echo "VIRGL_LIBS=$virgl_libs" >> $config_host_mak
52599d9e1521SGerd Hoffmannfi
5260e37630caSaliguoriif test "$xen" = "yes" ; then
52616dbd588aSJan Kiszka  echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak
5262d5b93ddfSAnthony PERARD  echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
526364a7ad6fSIan Campbell  if test "$xen_pv_domain_build" = "yes" ; then
526464a7ad6fSIan Campbell    echo "CONFIG_XEN_PV_DOMAIN_BUILD=y" >> $config_host_mak
526564a7ad6fSIan Campbell  fi
5266e37630caSaliguorifi
52675c6c3a6cSChristoph Hellwigif test "$linux_aio" = "yes" ; then
52685c6c3a6cSChristoph Hellwig  echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
52695c6c3a6cSChristoph Hellwigfi
5270758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" = "yes" ; then
5271758e8e38SVenkateswararao Jujjuri (JV)  echo "CONFIG_ATTR=y" >> $config_host_mak
5272758e8e38SVenkateswararao Jujjuri (JV)fi
52734f26f2b6SAvi Kivityif test "$libattr" = "yes" ; then
52744f26f2b6SAvi Kivity  echo "CONFIG_LIBATTR=y" >> $config_host_mak
52754f26f2b6SAvi Kivityfi
5276983eef5aSMeador Ingeif test "$virtfs" = "yes" ; then
5277758e8e38SVenkateswararao Jujjuri (JV)  echo "CONFIG_VIRTFS=y" >> $config_host_mak
5278758e8e38SVenkateswararao Jujjuri (JV)fi
52795e9be92dSNicholas Bellingerif test "$vhost_scsi" = "yes" ; then
52805e9be92dSNicholas Bellinger  echo "CONFIG_VHOST_SCSI=y" >> $config_host_mak
52815e9be92dSNicholas Bellingerfi
528203ce5744SNikolay Nikolaevif test "$vhost_net" = "yes" ; then
528303ce5744SNikolay Nikolaev  echo "CONFIG_VHOST_NET_USED=y" >> $config_host_mak
528403ce5744SNikolay Nikolaevfi
5285fc0b9b0eSStefan Hajnocziif test "$vhost_vsock" = "yes" ; then
5286fc0b9b0eSStefan Hajnoczi  echo "CONFIG_VHOST_VSOCK=y" >> $config_host_mak
5287fc0b9b0eSStefan Hajnoczifi
528877755340Sthsif test "$blobs" = "yes" ; then
528998ec69acSJuan Quintela  echo "INSTALL_BLOBS=yes" >> $config_host_mak
529077755340Sthsfi
5291bf9298b9Saliguoriif test "$iovec" = "yes" ; then
52922358a494SJuan Quintela  echo "CONFIG_IOVEC=y" >> $config_host_mak
5293bf9298b9Saliguorifi
5294ceb42de8Saliguoriif test "$preadv" = "yes" ; then
52952358a494SJuan Quintela  echo "CONFIG_PREADV=y" >> $config_host_mak
5296ceb42de8Saliguorifi
5297f652e6afSaurel32if test "$fdt" = "yes" ; then
52983f0855b1SJuan Quintela  echo "CONFIG_FDT=y" >> $config_host_mak
5299f652e6afSaurel32fi
5300dcc38d1cSMarcelo Tosattiif test "$signalfd" = "yes" ; then
5301dcc38d1cSMarcelo Tosatti  echo "CONFIG_SIGNALFD=y" >> $config_host_mak
5302dcc38d1cSMarcelo Tosattifi
53039195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then
53049195b2c2SStefan Weil  echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak
53059195b2c2SStefan Weilfi
53065f6b9e8fSBlue Swirlif test "$fdatasync" = "yes" ; then
53075f6b9e8fSBlue Swirl  echo "CONFIG_FDATASYNC=y" >> $config_host_mak
53085f6b9e8fSBlue Swirlfi
5309e78815a5SAndreas Färberif test "$madvise" = "yes" ; then
5310e78815a5SAndreas Färber  echo "CONFIG_MADVISE=y" >> $config_host_mak
5311e78815a5SAndreas Färberfi
5312e78815a5SAndreas Färberif test "$posix_madvise" = "yes" ; then
5313e78815a5SAndreas Färber  echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
5314e78815a5SAndreas Färberfi
531597a847bcSbellard
5316cd4ec0b4SGerd Hoffmannif test "$spice" = "yes" ; then
5317cd4ec0b4SGerd Hoffmann  echo "CONFIG_SPICE=y" >> $config_host_mak
5318cd4ec0b4SGerd Hoffmannfi
5319cd4ec0b4SGerd Hoffmann
53207b02f544SMarc-André Lureauif test "$smartcard" = "yes" ; then
53217b02f544SMarc-André Lureau  echo "CONFIG_SMARTCARD=y" >> $config_host_mak
5322111a38b0SRobert Relyeafi
5323111a38b0SRobert Relyea
53242b2325ffSGerd Hoffmannif test "$libusb" = "yes" ; then
53252b2325ffSGerd Hoffmann  echo "CONFIG_USB_LIBUSB=y" >> $config_host_mak
53262b2325ffSGerd Hoffmannfi
53272b2325ffSGerd Hoffmann
532869354a83SHans de Goedeif test "$usb_redir" = "yes" ; then
532969354a83SHans de Goede  echo "CONFIG_USB_REDIR=y" >> $config_host_mak
533069354a83SHans de Goedefi
533169354a83SHans de Goede
5332da076ffeSGerd Hoffmannif test "$opengl" = "yes" ; then
5333da076ffeSGerd Hoffmann  echo "CONFIG_OPENGL=y" >> $config_host_mak
5334f676c67eSJeremy White  echo "OPENGL_CFLAGS=$opengl_cflags" >> $config_host_mak
5335da076ffeSGerd Hoffmann  echo "OPENGL_LIBS=$opengl_libs" >> $config_host_mak
5336014cb152SGerd Hoffmann  if test "$opengl_dmabuf" = "yes" ; then
5337014cb152SGerd Hoffmann    echo "CONFIG_OPENGL_DMABUF=y" >> $config_host_mak
5338014cb152SGerd Hoffmann  fi
533920ff075bSMichael Wallefi
534020ff075bSMichael Walle
534199f2dbd3SLiang Liif test "$avx2_opt" = "yes" ; then
534299f2dbd3SLiang Li  echo "CONFIG_AVX2_OPT=y" >> $config_host_mak
534399f2dbd3SLiang Lifi
534499f2dbd3SLiang Li
5345607dacd0Sqiaonuohanif test "$lzo" = "yes" ; then
5346607dacd0Sqiaonuohan  echo "CONFIG_LZO=y" >> $config_host_mak
5347607dacd0Sqiaonuohanfi
5348607dacd0Sqiaonuohan
5349607dacd0Sqiaonuohanif test "$snappy" = "yes" ; then
5350607dacd0Sqiaonuohan  echo "CONFIG_SNAPPY=y" >> $config_host_mak
5351607dacd0Sqiaonuohanfi
5352607dacd0Sqiaonuohan
53536b383c08SPeter Wuif test "$bzip2" = "yes" ; then
53546b383c08SPeter Wu  echo "CONFIG_BZIP2=y" >> $config_host_mak
53556b383c08SPeter Wu  echo "BZIP2_LIBS=-lbz2" >> $config_host_mak
53566b383c08SPeter Wufi
53576b383c08SPeter Wu
5358c589b249SRonnie Sahlbergif test "$libiscsi" = "yes" ; then
5359d3399d7cSFam Zheng  echo "CONFIG_LIBISCSI=m" >> $config_host_mak
53606ebc91e5SFam Zheng  echo "LIBISCSI_CFLAGS=$libiscsi_cflags" >> $config_host_mak
53616ebc91e5SFam Zheng  echo "LIBISCSI_LIBS=$libiscsi_libs" >> $config_host_mak
5362c589b249SRonnie Sahlbergfi
5363c589b249SRonnie Sahlberg
53646542aa9cSPeter Lievenif test "$libnfs" = "yes" ; then
53656542aa9cSPeter Lieven  echo "CONFIG_LIBNFS=y" >> $config_host_mak
53666542aa9cSPeter Lievenfi
53676542aa9cSPeter Lieven
5368f794573eSEduardo Otuboif test "$seccomp" = "yes"; then
5369f794573eSEduardo Otubo  echo "CONFIG_SECCOMP=y" >> $config_host_mak
5370f794573eSEduardo Otubofi
5371f794573eSEduardo Otubo
537283fb7adfSbellard# XXX: suppress that
53737d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
53742358a494SJuan Quintela  echo "CONFIG_BSD=y" >> $config_host_mak
53757d3505c5Sbellardfi
53767d3505c5Sbellard
53774d9310f4SDaniel P. Berrangeif test "$localtime_r" = "yes" ; then
53784d9310f4SDaniel P. Berrange  echo "CONFIG_LOCALTIME_R=y" >> $config_host_mak
53794d9310f4SDaniel P. Berrangefi
53803556c233SPaolo Bonziniif test "$qom_cast_debug" = "yes" ; then
53813556c233SPaolo Bonzini  echo "CONFIG_QOM_CAST_DEBUG=y" >> $config_host_mak
53823556c233SPaolo Bonzinifi
5383f27aaf4bSChristian Brunnerif test "$rbd" = "yes" ; then
5384d3399d7cSFam Zheng  echo "CONFIG_RBD=m" >> $config_host_mak
53856ebc91e5SFam Zheng  echo "RBD_CFLAGS=$rbd_cflags" >> $config_host_mak
53866ebc91e5SFam Zheng  echo "RBD_LIBS=$rbd_libs" >> $config_host_mak
5387f27aaf4bSChristian Brunnerfi
538820ff6c80SAnthony Liguori
53897c2acc70SPeter Maydellecho "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak
539070c60c08SStefan Hajnocziif test "$coroutine_pool" = "yes" ; then
539170c60c08SStefan Hajnoczi  echo "CONFIG_COROUTINE_POOL=1" >> $config_host_mak
539270c60c08SStefan Hajnoczielse
539370c60c08SStefan Hajnoczi  echo "CONFIG_COROUTINE_POOL=0" >> $config_host_mak
539470c60c08SStefan Hajnoczifi
5395d0e2fce5SAneesh Kumar K.V
5396d2042378SAneesh Kumar K.Vif test "$open_by_handle_at" = "yes" ; then
5397d2042378SAneesh Kumar K.V  echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak
5398d2042378SAneesh Kumar K.Vfi
5399d2042378SAneesh Kumar K.V
5400e06a765eSHarsh Prateek Boraif test "$linux_magic_h" = "yes" ; then
5401e06a765eSHarsh Prateek Bora  echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak
5402e06a765eSHarsh Prateek Borafi
5403e06a765eSHarsh Prateek Bora
5404cc6e3ca9SGerd Hoffmannif test "$pragma_diagnostic_available" = "yes" ; then
5405cc6e3ca9SGerd Hoffmann  echo "CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE=y" >> $config_host_mak
540606d71fa1SPeter Maydellfi
540706d71fa1SPeter Maydell
54083f4349dcSKevin Wolfif test "$valgrind_h" = "yes" ; then
54093f4349dcSKevin Wolf  echo "CONFIG_VALGRIND_H=y" >> $config_host_mak
54103f4349dcSKevin Wolffi
54113f4349dcSKevin Wolf
54128ab1bf12SLuiz Capitulinoif test "$has_environ" = "yes" ; then
54138ab1bf12SLuiz Capitulino  echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak
54148ab1bf12SLuiz Capitulinofi
54158ab1bf12SLuiz Capitulino
541676a347e1SRichard Hendersonif test "$cpuid_h" = "yes" ; then
541776a347e1SRichard Henderson  echo "CONFIG_CPUID_H=y" >> $config_host_mak
541876a347e1SRichard Hendersonfi
541976a347e1SRichard Henderson
5420f540166bSRichard Hendersonif test "$int128" = "yes" ; then
5421f540166bSRichard Henderson  echo "CONFIG_INT128=y" >> $config_host_mak
5422f540166bSRichard Hendersonfi
5423f540166bSRichard Henderson
54241e6e9acaSRichard Hendersonif test "$getauxval" = "yes" ; then
54251e6e9acaSRichard Henderson  echo "CONFIG_GETAUXVAL=y" >> $config_host_mak
54261e6e9acaSRichard Hendersonfi
54271e6e9acaSRichard Henderson
5428eb100396SBharata B Raoif test "$glusterfs" = "yes" ; then
5429d3399d7cSFam Zheng  echo "CONFIG_GLUSTERFS=m" >> $config_host_mak
54306ebc91e5SFam Zheng  echo "GLUSTERFS_CFLAGS=$glusterfs_cflags" >> $config_host_mak
54316ebc91e5SFam Zheng  echo "GLUSTERFS_LIBS=$glusterfs_libs" >> $config_host_mak
5432eb100396SBharata B Raofi
5433eb100396SBharata B Rao
5434d85fa9ebSJeff Codyif test "$glusterfs_xlator_opt" = "yes" ; then
5435d85fa9ebSJeff Cody  echo "CONFIG_GLUSTERFS_XLATOR_OPT=y" >> $config_host_mak
5436d85fa9ebSJeff Codyfi
5437d85fa9ebSJeff Cody
54380c14fb47SBharata B Raoif test "$glusterfs_discard" = "yes" ; then
54390c14fb47SBharata B Rao  echo "CONFIG_GLUSTERFS_DISCARD=y" >> $config_host_mak
54400c14fb47SBharata B Raofi
54410c14fb47SBharata B Rao
54427c815372SBharata B Raoif test "$glusterfs_zerofill" = "yes" ; then
54437c815372SBharata B Rao  echo "CONFIG_GLUSTERFS_ZEROFILL=y" >> $config_host_mak
54447c815372SBharata B Raofi
54457c815372SBharata B Rao
5446c9a12e75SChrysostomos Nanakosif test "$archipelago" = "yes" ; then
5447c9a12e75SChrysostomos Nanakos  echo "CONFIG_ARCHIPELAGO=m" >> $config_host_mak
5448c9a12e75SChrysostomos Nanakos  echo "ARCHIPELAGO_LIBS=$archipelago_libs" >> $config_host_mak
5449c9a12e75SChrysostomos Nanakosfi
5450c9a12e75SChrysostomos Nanakos
54510a12ec87SRichard W.M. Jonesif test "$libssh2" = "yes" ; then
5452d3399d7cSFam Zheng  echo "CONFIG_LIBSSH2=m" >> $config_host_mak
54536ebc91e5SFam Zheng  echo "LIBSSH2_CFLAGS=$libssh2_cflags" >> $config_host_mak
54546ebc91e5SFam Zheng  echo "LIBSSH2_LIBS=$libssh2_libs" >> $config_host_mak
54550a12ec87SRichard W.M. Jonesfi
54560a12ec87SRichard W.M. Jones
54574f18b782SJeff Codyif test "$vhdx" = "yes" ; then
54584f18b782SJeff Cody  echo "CONFIG_VHDX=y" >> $config_host_mak
54594f18b782SJeff Codyfi
54604f18b782SJeff Cody
546168063649Sblueswir1# USB host support
5462b5613fdcSGerd Hoffmannif test "$libusb" = "yes"; then
54632b2325ffSGerd Hoffmann  echo "HOST_USB=libusb legacy" >> $config_host_mak
5464b5613fdcSGerd Hoffmannelse
546598ec69acSJuan Quintela  echo "HOST_USB=stub" >> $config_host_mak
5466b5613fdcSGerd Hoffmannfi
546768063649Sblueswir1
54683b8acc11SPaolo Bonzini# TPM passthrough support?
54693b8acc11SPaolo Bonziniif test "$tpm" = "yes"; then
54703b8acc11SPaolo Bonzini  echo 'CONFIG_TPM=$(CONFIG_SOFTMMU)' >> $config_host_mak
54713b8acc11SPaolo Bonzini  if test "$tpm_passthrough" = "yes"; then
54723b8acc11SPaolo Bonzini    echo "CONFIG_TPM_PASSTHROUGH=y" >> $config_host_mak
54733b8acc11SPaolo Bonzini  fi
54743b8acc11SPaolo Bonzinifi
54753b8acc11SPaolo Bonzini
54765b808275SLluís Vilanovaecho "TRACE_BACKENDS=$trace_backends" >> $config_host_mak
54775b808275SLluís Vilanovaif have_backend "nop"; then
54786d8a764eSLluís  echo "CONFIG_TRACE_NOP=y" >> $config_host_mak
547922890ab5SPrerna Saxenafi
54805b808275SLluís Vilanovaif have_backend "simple"; then
54816d8a764eSLluís  echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak
54826d8a764eSLluís  # Set the appropriate trace file.
5483953ffe0fSAndreas Färber  trace_file="\"$trace_file-\" FMT_pid"
54849410b56cSPrerna Saxenafi
5485ed7f5f1dSPaolo Bonziniif have_backend "log"; then
5486ed7f5f1dSPaolo Bonzini  echo "CONFIG_TRACE_LOG=y" >> $config_host_mak
54876d8a764eSLluísfi
54885b808275SLluís Vilanovaif have_backend "ust"; then
54896d8a764eSLluís  echo "CONFIG_TRACE_UST=y" >> $config_host_mak
54906d8a764eSLluísfi
54915b808275SLluís Vilanovaif have_backend "dtrace"; then
54926d8a764eSLluís  echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak
54936d8a764eSLluís  if test "$trace_backend_stap" = "yes" ; then
54946d8a764eSLluís    echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak
54956d8a764eSLluís  fi
5496c276b17dSDaniel P. Berrangefi
54975b808275SLluís Vilanovaif have_backend "ftrace"; then
5498781e9545SEiichi Tsukata  if test "$linux" = "yes" ; then
5499781e9545SEiichi Tsukata    echo "CONFIG_TRACE_FTRACE=y" >> $config_host_mak
5500781e9545SEiichi Tsukata  else
550121684af0SStewart Smith    feature_not_found "ftrace(trace backend)" "ftrace requires Linux"
5502781e9545SEiichi Tsukata  fi
5503781e9545SEiichi Tsukatafi
55040a852417SPaul Durrantif have_backend "syslog"; then
55050a852417SPaul Durrant  if test "$posix_syslog" = "yes" ; then
55060a852417SPaul Durrant    echo "CONFIG_TRACE_SYSLOG=y" >> $config_host_mak
55070a852417SPaul Durrant  else
55080a852417SPaul Durrant    feature_not_found "syslog(trace backend)" "syslog not available"
55090a852417SPaul Durrant  fi
55100a852417SPaul Durrantfi
55119410b56cSPrerna Saxenaecho "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
55129410b56cSPrerna Saxena
55132da776dbSMichael R. Hinesif test "$rdma" = "yes" ; then
55142da776dbSMichael R. Hines  echo "CONFIG_RDMA=y" >> $config_host_mak
55152da776dbSMichael R. Hinesfi
55162da776dbSMichael R. Hines
5517575b22b1SLaurent Vivierif test "$have_rtnetlink" = "yes" ; then
5518575b22b1SLaurent Vivier  echo "CONFIG_RTNETLINK=y" >> $config_host_mak
5519575b22b1SLaurent Vivierfi
5520575b22b1SLaurent Vivier
5521a6b1d4c0SChanglong Xieif test "$replication" = "yes" ; then
5522a6b1d4c0SChanglong Xie  echo "CONFIG_REPLICATION=y" >> $config_host_mak
5523a6b1d4c0SChanglong Xiefi
5524a6b1d4c0SChanglong Xie
55255c312079SDr. David Alan Gilbert# Hold two types of flag:
55265c312079SDr. David Alan Gilbert#   CONFIG_THREAD_SETNAME_BYTHREAD  - we've got a way of setting the name on
55275c312079SDr. David Alan Gilbert#                                     a thread we have a handle to
55285c312079SDr. David Alan Gilbert#   CONFIG_PTHREAD_SETNAME_NP       - A way of doing it on a particular
55295c312079SDr. David Alan Gilbert#                                     platform
55305c312079SDr. David Alan Gilbertif test "$pthread_setname_np" = "yes" ; then
55315c312079SDr. David Alan Gilbert  echo "CONFIG_THREAD_SETNAME_BYTHREAD=y" >> $config_host_mak
55325c312079SDr. David Alan Gilbert  echo "CONFIG_PTHREAD_SETNAME_NP=y" >> $config_host_mak
55335c312079SDr. David Alan Gilbertfi
55345c312079SDr. David Alan Gilbert
55355b5e3037SPaolo Bonziniif test "$tcg_interpreter" = "yes"; then
55365b5e3037SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/tci $QEMU_INCLUDES"
55375b5e3037SPaolo Bonzinielif test "$ARCH" = "sparc64" ; then
55385b5e3037SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/sparc $QEMU_INCLUDES"
55395b5e3037SPaolo Bonzinielif test "$ARCH" = "s390x" ; then
55405b5e3037SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/s390 $QEMU_INCLUDES"
5541c72b26ecSRichard Hendersonelif test "$ARCH" = "x86_64" -o "$ARCH" = "x32" ; then
55425b5e3037SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/i386 $QEMU_INCLUDES"
554340d964b5SRichard Hendersonelif test "$ARCH" = "ppc64" ; then
554440d964b5SRichard Henderson  QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/ppc $QEMU_INCLUDES"
55455b5e3037SPaolo Bonzinielse
55465b5e3037SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/\$(ARCH) $QEMU_INCLUDES"
55475b5e3037SPaolo Bonzinifi
55485b5e3037SPaolo BonziniQEMU_INCLUDES="-I\$(SRC_PATH)/tcg $QEMU_INCLUDES"
55495b5e3037SPaolo Bonzini
555098ec69acSJuan Quintelaecho "TOOLS=$tools" >> $config_host_mak
555198ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak
5552804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak
5553804edf29SJuan Quintelaecho "INSTALL=$install" >> $config_host_mak
55541901cb14SBradecho "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak
55551901cb14SBradecho "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak
55561901cb14SBradecho "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak
555721655882SPaolo Bonziniecho "INSTALL_LIB=$install -c -m 0644" >> $config_host_mak
5558c886edfbSBlue Swirlecho "PYTHON=$python" >> $config_host_mak
5559804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak
5560a31a8642SMichael S. Tsirkinif $iasl -h > /dev/null 2>&1; then
5561a31a8642SMichael S. Tsirkin  echo "IASL=$iasl" >> $config_host_mak
5562a31a8642SMichael S. Tsirkinfi
55632b2e59e6SPaolo Bonziniecho "CC_I386=$cc_i386" >> $config_host_mak
5564804edf29SJuan Quintelaecho "HOST_CC=$host_cc" >> $config_host_mak
556583f73fceSTomoki Sekiyamaecho "CXX=$cxx" >> $config_host_mak
55663c4a4d0dSPeter Maydellecho "OBJCC=$objcc" >> $config_host_mak
5567804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak
556845d285abSPeter Maydellecho "ARFLAGS=$ARFLAGS" >> $config_host_mak
5569cdbd727cSRichard Hendersonecho "AS=$as" >> $config_host_mak
55705f6f0e27SRichard Hendersonecho "CCAS=$ccas" >> $config_host_mak
55713dd46c78SBlue Swirlecho "CPP=$cpp" >> $config_host_mak
5572804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak
5573804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak
55744852ee95SStefan Weilecho "NM=$nm" >> $config_host_mak
55759fe6de94SBlue Swirlecho "WINDRES=$windres" >> $config_host_mak
5576e2a2ed06SJuan Quintelaecho "CFLAGS=$CFLAGS" >> $config_host_mak
557746eef33bSBradecho "CFLAGS_NOPIE=$CFLAGS_NOPIE" >> $config_host_mak
5578a558ee17SJuan Quintelaecho "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
5579f9728943SPaolo Bonziniecho "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak
5580e39f0062SPaolo Bonziniif test "$sparse" = "yes" ; then
5581e39f0062SPaolo Bonzini  echo "CC           := REAL_CC=\"\$(CC)\" cgcc"       >> $config_host_mak
558280fd48dfSChristian Borntraeger  echo "CPP          := REAL_CC=\"\$(CPP)\" cgcc"      >> $config_host_mak
55832944d742SGerd Hoffmann  echo "CXX          := REAL_CC=\"\$(CXX)\" cgcc"      >> $config_host_mak
5584e39f0062SPaolo Bonzini  echo "HOST_CC      := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_host_mak
5585e39f0062SPaolo Bonzini  echo "QEMU_CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
5586e39f0062SPaolo Bonzinifi
558742da6041SGerd Hoffmannif test "$cross_prefix" != ""; then
558842da6041SGerd Hoffmann  echo "AUTOCONF_HOST := --host=${cross_prefix%-}"     >> $config_host_mak
558942da6041SGerd Hoffmannelse
559042da6041SGerd Hoffmann  echo "AUTOCONF_HOST := "                             >> $config_host_mak
559142da6041SGerd Hoffmannfi
5592e2a2ed06SJuan Quintelaecho "LDFLAGS=$LDFLAGS" >> $config_host_mak
559346eef33bSBradecho "LDFLAGS_NOPIE=$LDFLAGS_NOPIE" >> $config_host_mak
55946969ec6cSJames Clarkeecho "LD_REL_FLAGS=$LD_REL_FLAGS" >> $config_host_mak
5595e57218b6SPeter Maydellecho "LD_I386_EMULATION=$ld_i386_emulation" >> $config_host_mak
559673da375eSJuan Quintelaecho "LIBS+=$LIBS" >> $config_host_mak
55973e2e0e6bSJuan Quintelaecho "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
5598409437e1SDaniel P. Berrangeecho "PTHREAD_LIB=$PTHREAD_LIB" >> $config_host_mak
5599804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak
560017969268SFam Zhengecho "DSOSUF=$DSOSUF" >> $config_host_mak
560117969268SFam Zhengecho "LDFLAGS_SHARED=$LDFLAGS_SHARED" >> $config_host_mak
5602957f1f99SMichael Rothecho "LIBS_QGA+=$libs_qga" >> $config_host_mak
560390246037SDaniel P. Berrangeecho "TASN1_LIBS=$tasn1_libs" >> $config_host_mak
560490246037SDaniel P. Berrangeecho "TASN1_CFLAGS=$tasn1_cflags" >> $config_host_mak
560594dd53c5SGerd Hoffmannecho "POD2MAN=$POD2MAN" >> $config_host_mak
5606cbdd1999SPaolo Bonziniecho "TRANSLATE_OPT_CFLAGS=$TRANSLATE_OPT_CFLAGS" >> $config_host_mak
56071d728c39SBlue Swirlif test "$gcov" = "yes" ; then
56081d728c39SBlue Swirl  echo "CONFIG_GCOV=y" >> $config_host_mak
56091d728c39SBlue Swirl  echo "GCOV=$gcov_tool" >> $config_host_mak
56101d728c39SBlue Swirlfi
5611804edf29SJuan Quintela
56126efd7517SPeter Maydell# use included Linux headers
56136efd7517SPeter Maydellif test "$linux" = "yes" ; then
5614a307beb6SAndreas Färber  mkdir -p linux-headers
56156efd7517SPeter Maydell  case "$cpu" in
5616c72b26ecSRichard Henderson  i386|x86_64|x32)
561708312a63SPeter Maydell    linux_arch=x86
56186efd7517SPeter Maydell    ;;
56196efd7517SPeter Maydell  ppcemb|ppc|ppc64)
562008312a63SPeter Maydell    linux_arch=powerpc
56216efd7517SPeter Maydell    ;;
56226efd7517SPeter Maydell  s390x)
562308312a63SPeter Maydell    linux_arch=s390
562408312a63SPeter Maydell    ;;
56251f080313SClaudio Fontana  aarch64)
56261f080313SClaudio Fontana    linux_arch=arm64
56271f080313SClaudio Fontana    ;;
5628222e7d11SSanjay Lal  mips64)
5629222e7d11SSanjay Lal    linux_arch=mips
5630222e7d11SSanjay Lal    ;;
563108312a63SPeter Maydell  *)
563208312a63SPeter Maydell    # For most CPUs the kernel architecture name and QEMU CPU name match.
563308312a63SPeter Maydell    linux_arch="$cpu"
56346efd7517SPeter Maydell    ;;
56356efd7517SPeter Maydell  esac
563608312a63SPeter Maydell    # For non-KVM architectures we will not have asm headers
563708312a63SPeter Maydell    if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then
563808312a63SPeter Maydell      symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm
563908312a63SPeter Maydell    fi
56406efd7517SPeter Maydellfi
56416efd7517SPeter Maydell
564297a847bcSbellardfor target in $target_list; do
564397a847bcSbellardtarget_dir="$target"
564425be210fSJuan Quintelaconfig_target_mak=$target_dir/config-target.mak
564589138857SStefan Weiltarget_name=$(echo $target | cut -d '-' -f 1)
564697a847bcSbellardtarget_bigendian="no"
56471f3d3c8fSJuan Quintela
5648c1799a84SPaolo Bonzinicase "$target_name" in
5649d15a9c23SAnthony Green  armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|moxie|or32|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb)
5650ea2d6a39SJuan Quintela  target_bigendian=yes
5651ea2d6a39SJuan Quintela  ;;
5652ea2d6a39SJuan Quintelaesac
565397a847bcSbellardtarget_softmmu="no"
5654997344f3Sbellardtarget_user_only="no"
5655831b7825Sthstarget_linux_user="no"
565684778508Sblueswir1target_bsd_user="no"
56579e407a85Spbrookcase "$target" in
5658c1799a84SPaolo Bonzini  ${target_name}-softmmu)
56599e407a85Spbrook    target_softmmu="yes"
56609e407a85Spbrook    ;;
5661c1799a84SPaolo Bonzini  ${target_name}-linux-user)
56629c7a4202SBlue Swirl    if test "$linux" != "yes" ; then
566376ad07a4SPeter Maydell      error_exit "Target '$target' is only available on a Linux host"
56649c7a4202SBlue Swirl    fi
56659e407a85Spbrook    target_user_only="yes"
56669e407a85Spbrook    target_linux_user="yes"
56679e407a85Spbrook    ;;
5668c1799a84SPaolo Bonzini  ${target_name}-bsd-user)
56699cf55765SBlue Swirl    if test "$bsd" != "yes" ; then
567076ad07a4SPeter Maydell      error_exit "Target '$target' is only available on a BSD host"
56719c7a4202SBlue Swirl    fi
567284778508Sblueswir1    target_user_only="yes"
567384778508Sblueswir1    target_bsd_user="yes"
567484778508Sblueswir1    ;;
56759e407a85Spbrook  *)
567676ad07a4SPeter Maydell    error_exit "Target '$target' not recognised"
56779e407a85Spbrook    exit 1
56789e407a85Spbrook    ;;
56799e407a85Spbrookesac
5680831b7825Sths
568197a847bcSbellardmkdir -p $target_dir
568225be210fSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_target_mak
568397a847bcSbellard
5684e5fe0c52Spbrookbflt="no"
568589138857SStefan Weilinterp_prefix1=$(echo "$interp_prefix" | sed "s/%M/$target_name/g")
568656aebc89Spbrookgdb_xml_files=""
56877ba1e619Saliguori
5688c1799a84SPaolo BonziniTARGET_ARCH="$target_name"
56896acff7daSJuan QuintelaTARGET_BASE_ARCH=""
5690e6e91b9cSJuan QuintelaTARGET_ABI_DIR=""
5691e73aae67SJuan Quintela
5692c1799a84SPaolo Bonzinicase "$target_name" in
56932408a527Saurel32  i386)
56942408a527Saurel32  ;;
56952408a527Saurel32  x86_64)
56966acff7daSJuan Quintela    TARGET_BASE_ARCH=i386
56972408a527Saurel32  ;;
56982408a527Saurel32  alpha)
56992408a527Saurel32  ;;
57002408a527Saurel32  arm|armeb)
5701b498c8a0SJuan Quintela    TARGET_ARCH=arm
5702e5fe0c52Spbrook    bflt="yes"
570356aebc89Spbrook    gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
57042408a527Saurel32  ;;
57056a49fa95SAlexander Graf  aarch64)
57066a49fa95SAlexander Graf    TARGET_BASE_ARCH=arm
57076a49fa95SAlexander Graf    bflt="yes"
57088f95ce2eSPeter Maydell    gdb_xml_files="aarch64-core.xml aarch64-fpu.xml arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
57096a49fa95SAlexander Graf  ;;
57102408a527Saurel32  cris)
57112408a527Saurel32  ;;
5712613a22c9SMichael Walle  lm32)
5713613a22c9SMichael Walle  ;;
57142408a527Saurel32  m68k)
57150938cda5Saurel32    bflt="yes"
571656aebc89Spbrook    gdb_xml_files="cf-core.xml cf-fp.xml"
57172408a527Saurel32  ;;
5718877fdc12SEdgar E. Iglesias  microblaze|microblazeel)
5719877fdc12SEdgar E. Iglesias    TARGET_ARCH=microblaze
572072b675caSEdgar E. Iglesias    bflt="yes"
572172b675caSEdgar E. Iglesias  ;;
57222408a527Saurel32  mips|mipsel)
5723b498c8a0SJuan Quintela    TARGET_ARCH=mips
572425be210fSJuan Quintela    echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
57252408a527Saurel32  ;;
57262408a527Saurel32  mipsn32|mipsn32el)
5727597e2cecSRichard Henderson    TARGET_ARCH=mips64
57286acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
572925be210fSJuan Quintela    echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
5730597e2cecSRichard Henderson    echo "TARGET_ABI32=y" >> $config_target_mak
57312408a527Saurel32  ;;
57322408a527Saurel32  mips64|mips64el)
5733b498c8a0SJuan Quintela    TARGET_ARCH=mips64
57346acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
573525be210fSJuan Quintela    echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
57362408a527Saurel32  ;;
5737d15a9c23SAnthony Green  moxie)
5738d15a9c23SAnthony Green  ;;
5739e67db06eSJia Liu  or32)
5740e67db06eSJia Liu    TARGET_ARCH=openrisc
5741e67db06eSJia Liu    TARGET_BASE_ARCH=openrisc
5742e67db06eSJia Liu  ;;
57432408a527Saurel32  ppc)
5744c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
57452408a527Saurel32  ;;
57462408a527Saurel32  ppcemb)
57476acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
5748e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
5749c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
57502408a527Saurel32  ;;
57512408a527Saurel32  ppc64)
57526acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
5753e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
57541438eff3SAnton Blanchard    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
57552408a527Saurel32  ;;
57569c35126cSDoug Kwan  ppc64le)
57579c35126cSDoug Kwan    TARGET_ARCH=ppc64
57589c35126cSDoug Kwan    TARGET_BASE_ARCH=ppc
57599c35126cSDoug Kwan    TARGET_ABI_DIR=ppc
57601438eff3SAnton Blanchard    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
57619c35126cSDoug Kwan  ;;
57622408a527Saurel32  ppc64abi32)
5763b498c8a0SJuan Quintela    TARGET_ARCH=ppc64
57646acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
5765e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
576625be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
57671438eff3SAnton Blanchard    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
57682408a527Saurel32  ;;
57692408a527Saurel32  sh4|sh4eb)
5770b498c8a0SJuan Quintela    TARGET_ARCH=sh4
57714dbed897Spbrook    bflt="yes"
57722408a527Saurel32  ;;
57732408a527Saurel32  sparc)
57742408a527Saurel32  ;;
57752408a527Saurel32  sparc64)
57766acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
57772408a527Saurel32  ;;
57782408a527Saurel32  sparc32plus)
5779b498c8a0SJuan Quintela    TARGET_ARCH=sparc64
57806acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
5781e6e91b9cSJuan Quintela    TARGET_ABI_DIR=sparc
578225be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
57832408a527Saurel32  ;;
578424e804ecSAlexander Graf  s390x)
57858a641ff6SDavid Hildenbrand    gdb_xml_files="s390x-core64.xml s390-acr.xml s390-fpr.xml s390-vx.xml s390-cr.xml s390-virt.xml"
578624e804ecSAlexander Graf  ;;
5787444e06b1SChen Gang  tilegx)
5788444e06b1SChen Gang  ;;
57895ecaa4edSPeter Crosthwaite  tricore)
57905ecaa4edSPeter Crosthwaite  ;;
5791d2fbca94SGuan Xuetao  unicore32)
5792d2fbca94SGuan Xuetao  ;;
5793cfa550c6SMax Filippov  xtensa|xtensaeb)
5794cfa550c6SMax Filippov    TARGET_ARCH=xtensa
5795cfa550c6SMax Filippov  ;;
57962408a527Saurel32  *)
579776ad07a4SPeter Maydell    error_exit "Unsupported target CPU"
57982408a527Saurel32  ;;
57992408a527Saurel32esac
58005e8861a0SPaolo Bonzini# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
58015e8861a0SPaolo Bonziniif [ "$TARGET_BASE_ARCH" = "" ]; then
58025e8861a0SPaolo Bonzini  TARGET_BASE_ARCH=$TARGET_ARCH
58035e8861a0SPaolo Bonzinifi
58045e8861a0SPaolo Bonzini
58055e8861a0SPaolo Bonzinisymlink "$source_path/Makefile.target" "$target_dir/Makefile"
58065e8861a0SPaolo Bonzini
580799afc91dSDaniel P. Berrangeupper() {
580899afc91dSDaniel P. Berrange    echo "$@"| LC_ALL=C tr '[a-z]' '[A-Z]'
580999afc91dSDaniel P. Berrange}
581099afc91dSDaniel P. Berrange
581189138857SStefan Weiltarget_arch_name="$(upper $TARGET_ARCH)"
581225be210fSJuan Quintelaecho "TARGET_$target_arch_name=y" >> $config_target_mak
5813c1799a84SPaolo Bonziniecho "TARGET_NAME=$target_name" >> $config_target_mak
581425be210fSJuan Quintelaecho "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
5815e6e91b9cSJuan Quintelaif [ "$TARGET_ABI_DIR" = "" ]; then
5816e6e91b9cSJuan Quintela  TARGET_ABI_DIR=$TARGET_ARCH
5817e6e91b9cSJuan Quintelafi
581825be210fSJuan Quintelaecho "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
5819adfc3e91SStacey Sonif [ "$HOST_VARIANT_DIR" != "" ]; then
5820adfc3e91SStacey Son    echo "HOST_VARIANT_DIR=$HOST_VARIANT_DIR" >> $config_target_mak
5821adfc3e91SStacey Sonfi
5822c1799a84SPaolo Bonzinicase "$target_name" in
58231b0c87fcSJuan Quintela  i386|x86_64)
58241b0c87fcSJuan Quintela    if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
582525be210fSJuan Quintela      echo "CONFIG_XEN=y" >> $config_target_mak
5826eb6fda0fSAnthony PERARD      if test "$xen_pci_passthrough" = yes; then
5827eb6fda0fSAnthony PERARD        echo "CONFIG_XEN_PCI_PASSTHROUGH=y" >> "$config_target_mak"
5828eb6fda0fSAnthony PERARD      fi
5829432d268cSJun Nakajima    fi
583059d21e53SAlexander Graf    ;;
583159d21e53SAlexander Graf  *)
58321b0c87fcSJuan Quintelaesac
5833c1799a84SPaolo Bonzinicase "$target_name" in
5834222e7d11SSanjay Lal  aarch64|arm|i386|x86_64|ppcemb|ppc|ppc64|s390x|mipsel|mips)
5835c59249f9SJuan Quintela    # Make sure the target and host cpus are compatible
5836c59249f9SJuan Quintela    if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
5837c1799a84SPaolo Bonzini      \( "$target_name" = "$cpu" -o \
5838c1799a84SPaolo Bonzini      \( "$target_name" = "ppcemb" -a "$cpu" = "ppc" \) -o \
5839c1799a84SPaolo Bonzini      \( "$target_name" = "ppc64"  -a "$cpu" = "ppc" \) -o \
5840c1799a84SPaolo Bonzini      \( "$target_name" = "ppc"    -a "$cpu" = "ppc64" \) -o \
5841c1799a84SPaolo Bonzini      \( "$target_name" = "ppcemb" -a "$cpu" = "ppc64" \) -o \
5842222e7d11SSanjay Lal      \( "$target_name" = "mipsel" -a "$cpu" = "mips" \) -o \
5843c1799a84SPaolo Bonzini      \( "$target_name" = "x86_64" -a "$cpu" = "i386"   \) -o \
584418b8263eSMichael Tokarev      \( "$target_name" = "i386"   -a "$cpu" = "x86_64" \) -o \
584518b8263eSMichael Tokarev      \( "$target_name" = "x86_64" -a "$cpu" = "x32"   \) -o \
584618b8263eSMichael Tokarev      \( "$target_name" = "i386"   -a "$cpu" = "x32" \) \) ; then
584725be210fSJuan Quintela      echo "CONFIG_KVM=y" >> $config_target_mak
58481ba16968SStefan Weil      if test "$vhost_net" = "yes" ; then
5849d5970055SMichael S. Tsirkin        echo "CONFIG_VHOST_NET=y" >> $config_target_mak
5850421f4448SMarc-André Lureau        echo "CONFIG_VHOST_NET_TEST_$target_name=y" >> $config_host_mak
5851d5970055SMichael S. Tsirkin      fi
5852c59249f9SJuan Quintela    fi
5853c59249f9SJuan Quintelaesac
5854de83cd02Sbellardif test "$target_bigendian" = "yes" ; then
585525be210fSJuan Quintela  echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
585697a847bcSbellardfi
585797a847bcSbellardif test "$target_softmmu" = "yes" ; then
585825be210fSJuan Quintela  echo "CONFIG_SOFTMMU=y" >> $config_target_mak
5859de83cd02Sbellardfi
5860997344f3Sbellardif test "$target_user_only" = "yes" ; then
586125be210fSJuan Quintela  echo "CONFIG_USER_ONLY=y" >> $config_target_mak
5862a2c80be9SStefan Weil  echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
5863997344f3Sbellardfi
5864831b7825Sthsif test "$target_linux_user" = "yes" ; then
586525be210fSJuan Quintela  echo "CONFIG_LINUX_USER=y" >> $config_target_mak
5866831b7825Sthsfi
586756aebc89Spbrooklist=""
586856aebc89Spbrookif test ! -z "$gdb_xml_files" ; then
586956aebc89Spbrook  for x in $gdb_xml_files; do
587056aebc89Spbrook    list="$list $source_path/gdb-xml/$x"
587156aebc89Spbrook  done
587225be210fSJuan Quintela  echo "TARGET_XML_FILES=$list" >> $config_target_mak
58733d0f1517SJuan Quintelafi
5874de83cd02Sbellard
5875e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
587625be210fSJuan Quintela  echo "TARGET_HAS_BFLT=y" >> $config_target_mak
5877e5fe0c52Spbrookfi
587884778508Sblueswir1if test "$target_bsd_user" = "yes" ; then
587925be210fSJuan Quintela  echo "CONFIG_BSD_USER=y" >> $config_target_mak
588084778508Sblueswir1fi
58815b0753e0Sbellard
58824afddb55SJuan Quintela# generate QEMU_CFLAGS/LDFLAGS for targets
5883fa282484SJuan Quintela
58844afddb55SJuan Quintelacflags=""
5885fa282484SJuan Quintelaldflags=""
58869b8e111fSJuan Quintela
5887c765fcacSPeter Crosthwaitedisas_config() {
5888c765fcacSPeter Crosthwaite  echo "CONFIG_${1}_DIS=y" >> $config_target_mak
5889c765fcacSPeter Crosthwaite  echo "CONFIG_${1}_DIS=y" >> config-all-disas.mak
5890c765fcacSPeter Crosthwaite}
5891c765fcacSPeter Crosthwaite
589264656024SJuan Quintelafor i in $ARCH $TARGET_BASE_ARCH ; do
589364656024SJuan Quintela  case "$i" in
589464656024SJuan Quintela  alpha)
5895c765fcacSPeter Crosthwaite    disas_config "ALPHA"
589664656024SJuan Quintela  ;;
589782295d8aSRichard Henderson  aarch64)
589882295d8aSRichard Henderson    if test -n "${cxx}"; then
5899c765fcacSPeter Crosthwaite      disas_config "ARM_A64"
590082295d8aSRichard Henderson    fi
590182295d8aSRichard Henderson  ;;
590264656024SJuan Quintela  arm)
5903c765fcacSPeter Crosthwaite    disas_config "ARM"
5904999b53ecSClaudio Fontana    if test -n "${cxx}"; then
5905c765fcacSPeter Crosthwaite      disas_config "ARM_A64"
5906999b53ecSClaudio Fontana    fi
590764656024SJuan Quintela  ;;
590864656024SJuan Quintela  cris)
5909c765fcacSPeter Crosthwaite    disas_config "CRIS"
591064656024SJuan Quintela  ;;
591164656024SJuan Quintela  hppa)
5912c765fcacSPeter Crosthwaite    disas_config "HPPA"
591364656024SJuan Quintela  ;;
5914c72b26ecSRichard Henderson  i386|x86_64|x32)
5915c765fcacSPeter Crosthwaite    disas_config "I386"
591664656024SJuan Quintela  ;;
5917903ec55cSAurelien Jarno  ia64*)
5918c765fcacSPeter Crosthwaite    disas_config "IA64"
5919903ec55cSAurelien Jarno  ;;
592079368f49SMichael Walle  lm32)
5921c765fcacSPeter Crosthwaite    disas_config "LM32"
592279368f49SMichael Walle  ;;
592364656024SJuan Quintela  m68k)
5924c765fcacSPeter Crosthwaite    disas_config "M68K"
592564656024SJuan Quintela  ;;
5926877fdc12SEdgar E. Iglesias  microblaze*)
5927c765fcacSPeter Crosthwaite    disas_config "MICROBLAZE"
592864656024SJuan Quintela  ;;
592964656024SJuan Quintela  mips*)
5930c765fcacSPeter Crosthwaite    disas_config "MIPS"
593164656024SJuan Quintela  ;;
5932d15a9c23SAnthony Green  moxie*)
5933c765fcacSPeter Crosthwaite    disas_config "MOXIE"
5934d15a9c23SAnthony Green  ;;
5935e67db06eSJia Liu  or32)
5936c765fcacSPeter Crosthwaite    disas_config "OPENRISC"
5937e67db06eSJia Liu  ;;
593864656024SJuan Quintela  ppc*)
5939c765fcacSPeter Crosthwaite    disas_config "PPC"
594064656024SJuan Quintela  ;;
594124e804ecSAlexander Graf  s390*)
5942c765fcacSPeter Crosthwaite    disas_config "S390"
594364656024SJuan Quintela  ;;
594464656024SJuan Quintela  sh4)
5945c765fcacSPeter Crosthwaite    disas_config "SH4"
594664656024SJuan Quintela  ;;
594764656024SJuan Quintela  sparc*)
5948c765fcacSPeter Crosthwaite    disas_config "SPARC"
594964656024SJuan Quintela  ;;
5950cfa550c6SMax Filippov  xtensa*)
5951c765fcacSPeter Crosthwaite    disas_config "XTENSA"
5952cfa550c6SMax Filippov  ;;
595364656024SJuan Quintela  esac
595464656024SJuan Quinteladone
59559195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then
5956c765fcacSPeter Crosthwaite  disas_config "TCI"
59579195b2c2SStefan Weilfi
595864656024SJuan Quintela
59596ee7126fSJuan Quintelacase "$ARCH" in
59606ee7126fSJuan Quintelaalpha)
59616ee7126fSJuan Quintela  # Ensure there's only a single GP
59626ee7126fSJuan Quintela  cflags="-msmall-data $cflags"
59636ee7126fSJuan Quintela;;
59646ee7126fSJuan Quintelaesac
59656ee7126fSJuan Quintela
5966d02c1db3SJuan Quintelaif test "$gprof" = "yes" ; then
596725be210fSJuan Quintela  echo "TARGET_GPROF=yes" >> $config_target_mak
5968d02c1db3SJuan Quintela  if test "$target_linux_user" = "yes" ; then
5969d02c1db3SJuan Quintela    cflags="-p $cflags"
5970d02c1db3SJuan Quintela    ldflags="-p $ldflags"
5971d02c1db3SJuan Quintela  fi
5972d02c1db3SJuan Quintela  if test "$target_softmmu" = "yes" ; then
5973d02c1db3SJuan Quintela    ldflags="-p $ldflags"
597425be210fSJuan Quintela    echo "GPROF_CFLAGS=-p" >> $config_target_mak
5975d02c1db3SJuan Quintela  fi
5976d02c1db3SJuan Quintelafi
5977d02c1db3SJuan Quintela
59789b8e111fSJuan Quintelaif test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
5979964c6fa1SRichard Henderson  ldflags="$ldflags $textseg_ldflags"
5980fa282484SJuan Quintelafi
5981fa282484SJuan Quintela
598225be210fSJuan Quintelaecho "LDFLAGS+=$ldflags" >> $config_target_mak
598325be210fSJuan Quintelaecho "QEMU_CFLAGS+=$cflags" >> $config_target_mak
5984fa282484SJuan Quintela
598597a847bcSbellarddone # for target in $targets
59867d13299dSbellard
5987b776eca1SGerd Hoffmannif [ "$pixman" = "internal" ]; then
5988b776eca1SGerd Hoffmann  echo "config-host.h: subdir-pixman" >> $config_host_mak
5989b776eca1SGerd Hoffmannfi
5990b776eca1SGerd Hoffmann
5991a540f158SPeter Crosthwaiteif [ "$dtc_internal" = "yes" ]; then
5992a540f158SPeter Crosthwaite  echo "config-host.h: subdir-dtc" >> $config_host_mak
5993a540f158SPeter Crosthwaitefi
5994a540f158SPeter Crosthwaite
5995a99d57bbSWanlong Gaoif test "$numa" = "yes"; then
5996a99d57bbSWanlong Gao  echo "CONFIG_NUMA=y" >> $config_host_mak
5997a99d57bbSWanlong Gaofi
5998a99d57bbSWanlong Gao
5999fd0e6053SJohn Snowif test "$ccache_cpp2" = "yes"; then
6000fd0e6053SJohn Snow  echo "export CCACHE_CPP2=y" >> $config_host_mak
6001fd0e6053SJohn Snowfi
6002fd0e6053SJohn Snow
6003d1807a4fSPaolo Bonzini# build tree in object directory in case the source is not in the current directory
6004f93296eaSWenchao XiaDIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32 tests/libqos tests/qapi-schema tests/tcg/xtensa tests/qemu-iotests"
60052b170effSMichael TokarevDIRS="$DIRS fsdev"
60069933c305SChristian BorntraegerDIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas pc-bios/s390-ccw"
60072d9f27d2SAnthony LiguoriDIRS="$DIRS roms/seabios roms/vgabios"
60082dee8d54SPaolo BonziniDIRS="$DIRS qapi-generated"
6009c09015ddSAnthony LiguoriFILES="Makefile tests/tcg/Makefile qdict-test-data.txt"
6010c09015ddSAnthony LiguoriFILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit"
6011aaa2ebc5SAndreas FärberFILES="$FILES tests/tcg/lm32/Makefile tests/tcg/xtensa/Makefile po/Makefile"
6012ae0bfb79SBlue SwirlFILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps"
6013446b9165SAndreas FärberFILES="$FILES pc-bios/spapr-rtas/Makefile"
60149933c305SChristian BorntraegerFILES="$FILES pc-bios/s390-ccw/Makefile"
60152d9f27d2SAnthony LiguoriFILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
60164652b792SJan KiszkaFILES="$FILES pc-bios/qemu-icon.bmp"
6017753d11f2SRichard Hendersonfor bios_file in \
6018753d11f2SRichard Henderson    $source_path/pc-bios/*.bin \
60195acc2ec0SGerd Hoffmann    $source_path/pc-bios/*.aml \
6020753d11f2SRichard Henderson    $source_path/pc-bios/*.rom \
6021753d11f2SRichard Henderson    $source_path/pc-bios/*.dtb \
6022e89e33e1SDominik Dingel    $source_path/pc-bios/*.img \
6023753d11f2SRichard Henderson    $source_path/pc-bios/openbios-* \
60244e73c781SAlexander Graf    $source_path/pc-bios/u-boot.* \
6025753d11f2SRichard Henderson    $source_path/pc-bios/palcode-*
6026753d11f2SRichard Hendersondo
602789138857SStefan Weil    FILES="$FILES pc-bios/$(basename $bios_file)"
60287ea78b74SJan Kiszkadone
602989138857SStefan Weilfor test_file in $(find $source_path/tests/acpi-test-data -type f)
6030c2304b52SMarcel Apfelbaumdo
603189138857SStefan Weil    FILES="$FILES tests/acpi-test-data$(echo $test_file | sed -e 's/.*acpi-test-data//')"
6032c2304b52SMarcel Apfelbaumdone
6033d1807a4fSPaolo Bonzinimkdir -p $DIRS
60347d13299dSbellardfor f in $FILES ; do
6035cab00a5aSMichael S. Tsirkin    if [ -e "$source_path/$f" ] && [ "$pwd_is_source_path" != "y" ]; then
6036f9245e10SPeter Maydell        symlink "$source_path/$f" "$f"
6037f9245e10SPeter Maydell    fi
60387d13299dSbellarddone
60391ad2134fSPaul Brook
6040c34ebfdcSAnthony Liguori# temporary config to build submodules
60412d9f27d2SAnthony Liguorifor rom in seabios vgabios ; do
6042c34ebfdcSAnthony Liguori    config_mak=roms/$rom/config.mak
604337116c89SStefan Weil    echo "# Automatically generated by configure - do not modify" > $config_mak
6044c34ebfdcSAnthony Liguori    echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
6045cdbd727cSRichard Henderson    echo "AS=$as" >> $config_mak
60465f6f0e27SRichard Henderson    echo "CCAS=$ccas" >> $config_mak
6047c34ebfdcSAnthony Liguori    echo "CC=$cc" >> $config_mak
6048c34ebfdcSAnthony Liguori    echo "BCC=bcc" >> $config_mak
60493dd46c78SBlue Swirl    echo "CPP=$cpp" >> $config_mak
6050c34ebfdcSAnthony Liguori    echo "OBJCOPY=objcopy" >> $config_mak
6051a31a8642SMichael S. Tsirkin    echo "IASL=$iasl" >> $config_mak
6052c34ebfdcSAnthony Liguori    echo "LD=$ld" >> $config_mak
6053c34ebfdcSAnthony Liguoridone
6054c34ebfdcSAnthony Liguori
6055fe31017fSMarc-André Lureau# set up tests data directory
6056fe31017fSMarc-André Lureauif [ ! -e tests/data ]; then
6057fe31017fSMarc-André Lureau    symlink "$source_path/tests/data" tests/data
6058fe31017fSMarc-André Lureaufi
6059fe31017fSMarc-André Lureau
606076c7560aSMax Reitz# set up qemu-iotests in this build directory
606176c7560aSMax Reitziotests_common_env="tests/qemu-iotests/common.env"
606276c7560aSMax Reitziotests_check="tests/qemu-iotests/check"
606376c7560aSMax Reitz
606476c7560aSMax Reitzecho "# Automatically generated by configure - do not modify" > "$iotests_common_env"
606576c7560aSMax Reitzecho >> "$iotests_common_env"
606676c7560aSMax Reitzecho "export PYTHON='$python'" >> "$iotests_common_env"
606776c7560aSMax Reitz
606876c7560aSMax Reitzif [ ! -e "$iotests_check" ]; then
606976c7560aSMax Reitz    symlink "$source_path/$iotests_check" "$iotests_check"
607076c7560aSMax Reitzfi
607176c7560aSMax Reitz
6072dc655404SMichael S. Tsirkin# Save the configure command line for later reuse.
6073dc655404SMichael S. Tsirkincat <<EOD >config.status
6074dc655404SMichael S. Tsirkin#!/bin/sh
6075dc655404SMichael S. Tsirkin# Generated by configure.
6076dc655404SMichael S. Tsirkin# Run this file to recreate the current configuration.
6077dc655404SMichael S. Tsirkin# Compiler output produced by configure, useful for debugging
6078dc655404SMichael S. Tsirkin# configure, is in config.log if it exists.
6079dc655404SMichael S. TsirkinEOD
6080dc655404SMichael S. Tsirkinprintf "exec" >>config.status
6081dc655404SMichael S. Tsirkinprintf " '%s'" "$0" "$@" >>config.status
6082cf7cc929SDr. David Alan Gilbertecho ' "$@"' >>config.status
6083dc655404SMichael S. Tsirkinchmod +x config.status
6084dc655404SMichael S. Tsirkin
60858cd05ab6SPeter Maydellrm -r "$TMPDIR1"
6086