xref: /openbmc/qemu/configure (revision 8ddc5bf9e5de51c2a4842c01dd3a97f5591776fd)
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 Bonzinivde=""
216377529c0SPaolo Bonzinivnc_sasl=""
217377529c0SPaolo Bonzinivnc_jpeg=""
218377529c0SPaolo Bonzinivnc_png=""
219377529c0SPaolo Bonzinixen=""
220d5b93ddfSAnthony PERARDxen_ctrl_version=""
22164a7ad6fSIan Campbellxen_pv_domain_build="no"
222eb6fda0fSAnthony PERARDxen_pci_passthrough=""
223377529c0SPaolo Bonzinilinux_aio=""
22447e98658SCorey Bryantcap_ng=""
225377529c0SPaolo Bonziniattr=""
2264f26f2b6SAvi Kivitylibattr=""
227377529c0SPaolo Bonzinixfs=""
228377529c0SPaolo Bonzini
229d41a75a2SBradvhost_net="no"
2305e9be92dSNicholas Bellingervhost_scsi="no"
231fc0b9b0eSStefan Hajnoczivhost_vsock="no"
232d41a75a2SBradkvm="no"
2332da776dbSMichael R. Hinesrdma=""
234377529c0SPaolo Bonzinigprof="no"
235377529c0SPaolo Bonzinidebug_tcg="no"
236377529c0SPaolo Bonzinidebug="no"
237b553a042SJohn Snowfortify_source=""
238377529c0SPaolo Bonzinistrip_opt="yes"
2399195b2c2SStefan Weiltcg_interpreter="no"
240377529c0SPaolo Bonzinibigendian="no"
241377529c0SPaolo Bonzinimingw32="no"
2421d728c39SBlue Swirlgcov="no"
2431d728c39SBlue Swirlgcov_tool="gcov"
244377529c0SPaolo BonziniEXESUF=""
24517969268SFam ZhengDSOSUF=".so"
24617969268SFam ZhengLDFLAGS_SHARED="-shared"
24717969268SFam Zhengmodules="no"
248377529c0SPaolo Bonziniprefix="/usr/local"
249377529c0SPaolo Bonzinimandir="\${prefix}/share/man"
250528ae5b8SEduardo Habkostdatadir="\${prefix}/share"
251850da188SEduardo Habkostqemu_docdir="\${prefix}/share/doc/qemu"
252377529c0SPaolo Bonzinibindir="\${prefix}/bin"
2533aa5d2beSAlon Levylibdir="\${prefix}/lib"
2548bf188aaSMichael Tokarevlibexecdir="\${prefix}/libexec"
2550f94d6daSAlon Levyincludedir="\${prefix}/include"
256377529c0SPaolo Bonzinisysconfdir="\${prefix}/etc"
257785c23aeSLuiz Capitulinolocal_statedir="\${prefix}/var"
258377529c0SPaolo Bonziniconfsuffix="/qemu"
259377529c0SPaolo Bonzinislirp="yes"
260377529c0SPaolo Bonzinioss_lib=""
261377529c0SPaolo Bonzinibsd="no"
262377529c0SPaolo Bonzinilinux="no"
263377529c0SPaolo Bonzinisolaris="no"
264377529c0SPaolo Bonziniprofiler="no"
265377529c0SPaolo Bonzinicocoa="no"
266377529c0SPaolo Bonzinisoftmmu="yes"
267377529c0SPaolo Bonzinilinux_user="no"
268377529c0SPaolo Bonzinibsd_user="no"
269377529c0SPaolo Bonziniaix="no"
270377529c0SPaolo Bonziniblobs="yes"
271377529c0SPaolo Bonzinipkgversion=""
27240d6444eSAvi Kivitypie=""
2733556c233SPaolo Bonziniqom_cast_debug="yes"
274baf86d6bSPaolo Bonzinitrace_backends="log"
275377529c0SPaolo Bonzinitrace_file="trace"
276377529c0SPaolo Bonzinispice=""
277377529c0SPaolo Bonzinirbd=""
2787b02f544SMarc-André Lureausmartcard=""
2792b2325ffSGerd Hoffmannlibusb=""
28069354a83SHans de Goedeusb_redir=""
281da076ffeSGerd Hoffmannopengl=""
282014cb152SGerd Hoffmannopengl_dmabuf="no"
28399f2dbd3SLiang Liavx2_opt="no"
2841ece9905SAlon Levyzlib="yes"
285b25c9dffSStefan Weillzo=""
286b25c9dffSStefan Weilsnappy=""
2876b383c08SPeter Wubzip2=""
288e8ef31a3SMichael Tokarevguest_agent=""
289d9840e25STomoki Sekiyamaguest_agent_with_vss="no"
29050cbebb9SMichael Rothguest_agent_ntddscsi="no"
2919dacf32dSYossi Hindinguest_agent_msi=""
292d9840e25STomoki Sekiyamavss_win32_sdk=""
293d9840e25STomoki Sekiyamawin_sdk="no"
2944b1c11fdSDaniel P. Berrangewant_tools="yes"
295c589b249SRonnie Sahlberglibiscsi=""
2966542aa9cSPeter Lievenlibnfs=""
297519175a2SAlex Barcelocoroutine=""
29870c60c08SStefan Hajnoczicoroutine_pool=""
2997d992e4dSPeter Lievendebug_stack_usage="no"
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=""
320a99d57bbSWanlong Gaonuma=""
3212847b469SFam Zhengtcmalloc="no"
3227b01cb97SAlexandre Derumierjemalloc="no"
323a6b1d4c0SChanglong Xiereplication="yes"
324377529c0SPaolo Bonzini
325ac0df51dSaliguori# parse CC options first
326ac0df51dSaliguorifor opt do
32789138857SStefan Weil  optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
328ac0df51dSaliguori  case "$opt" in
329ac0df51dSaliguori  --cross-prefix=*) cross_prefix="$optarg"
330ac0df51dSaliguori  ;;
3313d8df640SPaolo Bonzini  --cc=*) CC="$optarg"
332ac0df51dSaliguori  ;;
33383f73fceSTomoki Sekiyama  --cxx=*) CXX="$optarg"
33483f73fceSTomoki Sekiyama  ;;
335ca4deeb1SPaolo Bonzini  --source-path=*) source_path="$optarg"
336ca4deeb1SPaolo Bonzini  ;;
3372ff6b91eSJuan Quintela  --cpu=*) cpu="$optarg"
3382ff6b91eSJuan Quintela  ;;
339de385287SAlex Bennée  --extra-cflags=*) QEMU_CFLAGS="$QEMU_CFLAGS $optarg"
340f9943cd5SGerd Hoffmann                    EXTRA_CFLAGS="$optarg"
341e2a2ed06SJuan Quintela  ;;
342a4969e90SAlex Bennée  --extra-ldflags=*) LDFLAGS="$LDFLAGS $optarg"
343f9943cd5SGerd Hoffmann                     EXTRA_LDFLAGS="$optarg"
344e2a2ed06SJuan Quintela  ;;
3455bc62e01SGerd Hoffmann  --enable-debug-info) debug_info="yes"
3465bc62e01SGerd Hoffmann  ;;
3475bc62e01SGerd Hoffmann  --disable-debug-info) debug_info="no"
3485bc62e01SGerd Hoffmann  ;;
349ac0df51dSaliguori  esac
350ac0df51dSaliguoridone
351ac0df51dSaliguori# OS specific
352ac0df51dSaliguori# Using uname is really, really broken.  Once we have the right set of checks
35393148aa5SStefan Weil# we can eliminate its usage altogether.
354ac0df51dSaliguori
355e49d021eSPeter Maydell# Preferred compiler:
356e49d021eSPeter Maydell#  ${CC} (if set)
357e49d021eSPeter Maydell#  ${cross_prefix}gcc (if cross-prefix specified)
358e49d021eSPeter Maydell#  system compiler
359e49d021eSPeter Maydellif test -z "${CC}${cross_prefix}"; then
360e49d021eSPeter Maydell  cc="$host_cc"
361e49d021eSPeter Maydellelse
362b3198cc2SStuart Yoder  cc="${CC-${cross_prefix}gcc}"
363e49d021eSPeter Maydellfi
364e49d021eSPeter Maydell
36583f73fceSTomoki Sekiyamaif test -z "${CXX}${cross_prefix}"; then
36683f73fceSTomoki Sekiyama  cxx="c++"
36783f73fceSTomoki Sekiyamaelse
36883f73fceSTomoki Sekiyama  cxx="${CXX-${cross_prefix}g++}"
36983f73fceSTomoki Sekiyamafi
37083f73fceSTomoki Sekiyama
371b3198cc2SStuart Yoderar="${AR-${cross_prefix}ar}"
372cdbd727cSRichard Hendersonas="${AS-${cross_prefix}as}"
3735f6f0e27SRichard Hendersonccas="${CCAS-$cc}"
3743dd46c78SBlue Swirlcpp="${CPP-$cc -E}"
375b3198cc2SStuart Yoderobjcopy="${OBJCOPY-${cross_prefix}objcopy}"
376b3198cc2SStuart Yoderld="${LD-${cross_prefix}ld}"
3774852ee95SStefan Weilnm="${NM-${cross_prefix}nm}"
378b3198cc2SStuart Yoderstrip="${STRIP-${cross_prefix}strip}"
379b3198cc2SStuart Yoderwindres="${WINDRES-${cross_prefix}windres}"
38017884d7bSSergei Trofimovichpkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}"
38117884d7bSSergei Trofimovichquery_pkg_config() {
38217884d7bSSergei Trofimovich    "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@"
38317884d7bSSergei Trofimovich}
38417884d7bSSergei Trofimovichpkg_config=query_pkg_config
385b3198cc2SStuart Yodersdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}"
38647c03744SDave Airliesdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}"
387ac0df51dSaliguori
38845d285abSPeter Maydell# If the user hasn't specified ARFLAGS, default to 'rv', just as make does.
38945d285abSPeter MaydellARFLAGS="${ARFLAGS-rv}"
39045d285abSPeter Maydell
391be17dc90SMichael S. Tsirkin# default flags for all hosts
3922d31515bSPeter Maydell# We use -fwrapv to tell the compiler that we require a C dialect where
3932d31515bSPeter Maydell# left shift of signed integers is well defined and has the expected
3942d31515bSPeter Maydell# 2s-complement style results. (Both clang and gcc agree that it
3952d31515bSPeter Maydell# provides these semantics.)
3962d31515bSPeter MaydellQEMU_CFLAGS="-fno-strict-aliasing -fno-common -fwrapv $QEMU_CFLAGS"
397f9188227SMike FrysingerQEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
398c95e3080SKevin WolfQEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
399be17dc90SMichael S. TsirkinQEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
4006b4c305cSPaolo BonziniQEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/include"
4015bc62e01SGerd Hoffmannif test "$debug_info" = "yes"; then
4025bc62e01SGerd Hoffmann    CFLAGS="-g $CFLAGS"
403be17dc90SMichael S. Tsirkin    LDFLAGS="-g $LDFLAGS"
4045bc62e01SGerd Hoffmannfi
405be17dc90SMichael S. Tsirkin
406ca4deeb1SPaolo Bonzini# make source path absolute
40789138857SStefan Weilsource_path=$(cd "$source_path"; pwd)
408ca4deeb1SPaolo Bonzini
409cab00a5aSMichael S. Tsirkin# running configure in the source tree?
410cab00a5aSMichael S. Tsirkin# we know that's the case if configure is there.
411cab00a5aSMichael S. Tsirkinif test -f "./configure"; then
412cab00a5aSMichael S. Tsirkin    pwd_is_source_path="y"
413cab00a5aSMichael S. Tsirkinelse
414cab00a5aSMichael S. Tsirkin    pwd_is_source_path="n"
415cab00a5aSMichael S. Tsirkinfi
416cab00a5aSMichael S. Tsirkin
417ac0df51dSaliguoricheck_define() {
418ac0df51dSaliguoricat > $TMPC <<EOF
419ac0df51dSaliguori#if !defined($1)
420fd786e1aSPeter Maydell#error $1 not defined
421ac0df51dSaliguori#endif
422ac0df51dSaliguoriint main(void) { return 0; }
423ac0df51dSaliguoriEOF
42452166aa0SJuan Quintela  compile_object
425ac0df51dSaliguori}
426ac0df51dSaliguori
427307119e7SGerd Hoffmanncheck_include() {
428307119e7SGerd Hoffmanncat > $TMPC <<EOF
429307119e7SGerd Hoffmann#include <$1>
430307119e7SGerd Hoffmannint main(void) { return 0; }
431307119e7SGerd HoffmannEOF
432307119e7SGerd Hoffmann  compile_object
433307119e7SGerd Hoffmann}
434307119e7SGerd Hoffmann
43593b25869SJohn Snowwrite_c_skeleton() {
43693b25869SJohn Snow    cat > $TMPC <<EOF
43793b25869SJohn Snowint main(void) { return 0; }
43893b25869SJohn SnowEOF
43993b25869SJohn Snow}
44093b25869SJohn Snow
441bbea4050SPeter Maydellif check_define __linux__ ; then
442bbea4050SPeter Maydell  targetos="Linux"
443bbea4050SPeter Maydellelif check_define _WIN32 ; then
444bbea4050SPeter Maydell  targetos='MINGW32'
445bbea4050SPeter Maydellelif check_define __OpenBSD__ ; then
446bbea4050SPeter Maydell  targetos='OpenBSD'
447bbea4050SPeter Maydellelif check_define __sun__ ; then
448bbea4050SPeter Maydell  targetos='SunOS'
449bbea4050SPeter Maydellelif check_define __HAIKU__ ; then
450bbea4050SPeter Maydell  targetos='Haiku'
451bbea4050SPeter Maydellelse
45289138857SStefan Weil  targetos=$(uname -s)
453bbea4050SPeter Maydellfi
454bbea4050SPeter Maydell
455bbea4050SPeter Maydell# Some host OSes need non-standard checks for which CPU to use.
456bbea4050SPeter Maydell# Note that these checks are broken for cross-compilation: if you're
457bbea4050SPeter Maydell# cross-compiling to one of these OSes then you'll need to specify
458bbea4050SPeter Maydell# the correct CPU with the --cpu option.
459bbea4050SPeter Maydellcase $targetos in
460bbea4050SPeter MaydellDarwin)
461bbea4050SPeter Maydell  # on Leopard most of the system is 32-bit, so we have to ask the kernel if we can
462bbea4050SPeter Maydell  # run 64-bit userspace code.
463bbea4050SPeter Maydell  # If the user didn't specify a CPU explicitly and the kernel says this is
464bbea4050SPeter Maydell  # 64 bit hw, then assume x86_64. Otherwise fall through to the usual detection code.
465bbea4050SPeter Maydell  if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
466bbea4050SPeter Maydell    cpu="x86_64"
467bbea4050SPeter Maydell  fi
468bbea4050SPeter Maydell  ;;
469bbea4050SPeter MaydellSunOS)
47089138857SStefan Weil  # $(uname -m) returns i86pc even on an x86_64 box, so default based on isainfo
471bbea4050SPeter Maydell  if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
472bbea4050SPeter Maydell    cpu="x86_64"
473bbea4050SPeter Maydell  fi
474bbea4050SPeter Maydellesac
475bbea4050SPeter Maydell
4762ff6b91eSJuan Quintelaif test ! -z "$cpu" ; then
4772ff6b91eSJuan Quintela  # command line argument
4782ff6b91eSJuan Quintela  :
4792ff6b91eSJuan Quintelaelif check_define __i386__ ; then
480ac0df51dSaliguori  cpu="i386"
481ac0df51dSaliguorielif check_define __x86_64__ ; then
482c72b26ecSRichard Henderson  if check_define __ILP32__ ; then
483c72b26ecSRichard Henderson    cpu="x32"
484c72b26ecSRichard Henderson  else
485ac0df51dSaliguori    cpu="x86_64"
486c72b26ecSRichard Henderson  fi
4873aa9bd6cSblueswir1elif check_define __sparc__ ; then
4883aa9bd6cSblueswir1  if check_define __arch64__ ; then
4893aa9bd6cSblueswir1    cpu="sparc64"
4903aa9bd6cSblueswir1  else
4913aa9bd6cSblueswir1    cpu="sparc"
4923aa9bd6cSblueswir1  fi
493fdf7ed96Smalcelif check_define _ARCH_PPC ; then
494fdf7ed96Smalc  if check_define _ARCH_PPC64 ; then
495fdf7ed96Smalc    cpu="ppc64"
496ac0df51dSaliguori  else
497fdf7ed96Smalc    cpu="ppc"
498fdf7ed96Smalc  fi
499afa05235SAurelien Jarnoelif check_define __mips__ ; then
500afa05235SAurelien Jarno  cpu="mips"
501477ba620SAurelien Jarnoelif check_define __ia64__ ; then
502477ba620SAurelien Jarno  cpu="ia64"
503d66ed0eaSAurelien Jarnoelif check_define __s390__ ; then
504d66ed0eaSAurelien Jarno  if check_define __s390x__ ; then
505d66ed0eaSAurelien Jarno    cpu="s390x"
506d66ed0eaSAurelien Jarno  else
507d66ed0eaSAurelien Jarno    cpu="s390"
508d66ed0eaSAurelien Jarno  fi
50921d89f84SPeter Maydellelif check_define __arm__ ; then
51021d89f84SPeter Maydell  cpu="arm"
5111f080313SClaudio Fontanaelif check_define __aarch64__ ; then
5121f080313SClaudio Fontana  cpu="aarch64"
513fdf7ed96Smalcelse
51489138857SStefan Weil  cpu=$(uname -m)
515ac0df51dSaliguorifi
516ac0df51dSaliguori
517359bc95dSPeter MaydellARCH=
518359bc95dSPeter Maydell# Normalise host CPU name and set ARCH.
519359bc95dSPeter Maydell# Note that this case should only have supported host CPUs, not guests.
5207d13299dSbellardcase "$cpu" in
521c72b26ecSRichard Henderson  ia64|ppc|ppc64|s390|s390x|sparc64|x32)
522ea8f20f8SJuan Quintela    cpu="$cpu"
523ea8f20f8SJuan Quintela  ;;
5247d13299dSbellard  i386|i486|i586|i686|i86pc|BePC)
52597a847bcSbellard    cpu="i386"
5267d13299dSbellard  ;;
527aaa5fa14Saurel32  x86_64|amd64)
528aaa5fa14Saurel32    cpu="x86_64"
529aaa5fa14Saurel32  ;;
53021d89f84SPeter Maydell  armv*b|armv*l|arm)
53121d89f84SPeter Maydell    cpu="arm"
5327d13299dSbellard  ;;
5331f080313SClaudio Fontana  aarch64)
5341f080313SClaudio Fontana    cpu="aarch64"
5351f080313SClaudio Fontana  ;;
536afa05235SAurelien Jarno  mips*)
537afa05235SAurelien Jarno    cpu="mips"
538afa05235SAurelien Jarno  ;;
5393142255cSblueswir1  sparc|sun4[cdmuv])
540ae228531Sbellard    cpu="sparc"
541ae228531Sbellard  ;;
5427d13299dSbellard  *)
543359bc95dSPeter Maydell    # This will result in either an error or falling back to TCI later
544359bc95dSPeter Maydell    ARCH=unknown
5457d13299dSbellard  ;;
5467d13299dSbellardesac
547359bc95dSPeter Maydellif test -z "$ARCH"; then
548359bc95dSPeter Maydell  ARCH="$cpu"
549359bc95dSPeter Maydellfi
550e2d52ad3SJuan Quintela
5517d13299dSbellard# OS specific
5520dbfc675SJuan Quintela
553adfc3e91SStacey Son# host *BSD for user mode
554adfc3e91SStacey SonHOST_VARIANT_DIR=""
555adfc3e91SStacey Son
5567d13299dSbellardcase $targetos in
557c326e0afSbellardCYGWIN*)
558c326e0afSbellard  mingw32="yes"
559a558ee17SJuan Quintela  QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
5603cec7cc2SKővágó, Zoltán  audio_possible_drivers="sdl"
5613cec7cc2SKővágó, Zoltán  audio_drv_list="sdl"
562c326e0afSbellard;;
56367b915a5SbellardMINGW32*)
56467b915a5Sbellard  mingw32="yes"
5653cec7cc2SKővágó, Zoltán  audio_possible_drivers="dsound sdl"
566307119e7SGerd Hoffmann  if check_include dsound.h; then
5673cec7cc2SKővágó, Zoltán    audio_drv_list="dsound"
568307119e7SGerd Hoffmann  else
569307119e7SGerd Hoffmann    audio_drv_list=""
570307119e7SGerd Hoffmann  fi
57167b915a5Sbellard;;
5725c40d2bdSthsGNU/kFreeBSD)
573a167ba50SAurelien Jarno  bsd="yes"
5740c58ac1cSmalc  audio_drv_list="oss"
5750bac1111SKővágó, Zoltán  audio_possible_drivers="oss sdl pa"
5765c40d2bdSths;;
5777d3505c5SbellardFreeBSD)
5787d3505c5Sbellard  bsd="yes"
5790db4a067SPaolo Bonzini  make="${MAKE-gmake}"
5800c58ac1cSmalc  audio_drv_list="oss"
5810bac1111SKővágó, Zoltán  audio_possible_drivers="oss sdl pa"
582f01576f1SJuergen Lock  # needed for kinfo_getvmmap(3) in libutil.h
583f01576f1SJuergen Lock  LIBS="-lutil $LIBS"
58458952137SVincenzo Maffione  netmap=""  # enable netmap autodetect
585adfc3e91SStacey Son  HOST_VARIANT_DIR="freebsd"
5867d3505c5Sbellard;;
587c5e97233Sblueswir1DragonFly)
588c5e97233Sblueswir1  bsd="yes"
5890db4a067SPaolo Bonzini  make="${MAKE-gmake}"
590c5e97233Sblueswir1  audio_drv_list="oss"
5910bac1111SKővágó, Zoltán  audio_possible_drivers="oss sdl pa"
592adfc3e91SStacey Son  HOST_VARIANT_DIR="dragonfly"
593c5e97233Sblueswir1;;
5947d3505c5SbellardNetBSD)
5957d3505c5Sbellard  bsd="yes"
5960db4a067SPaolo Bonzini  make="${MAKE-gmake}"
5970c58ac1cSmalc  audio_drv_list="oss"
5980bac1111SKővágó, Zoltán  audio_possible_drivers="oss sdl"
5998ef92a88Sblueswir1  oss_lib="-lossaudio"
600adfc3e91SStacey Son  HOST_VARIANT_DIR="netbsd"
6017d3505c5Sbellard;;
6027d3505c5SbellardOpenBSD)
6037d3505c5Sbellard  bsd="yes"
6040db4a067SPaolo Bonzini  make="${MAKE-gmake}"
6054f6ab397SBrad Smith  audio_drv_list="sdl"
6060bac1111SKővágó, Zoltán  audio_possible_drivers="sdl"
607adfc3e91SStacey Son  HOST_VARIANT_DIR="openbsd"
6087d3505c5Sbellard;;
60983fb7adfSbellardDarwin)
61083fb7adfSbellard  bsd="yes"
61183fb7adfSbellard  darwin="yes"
61217969268SFam Zheng  LDFLAGS_SHARED="-bundle -undefined dynamic_lookup"
6131b0f9cc2Saliguori  if [ "$cpu" = "x86_64" ] ; then
614a558ee17SJuan Quintela    QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
6150c439cbfSJuan Quintela    LDFLAGS="-arch x86_64 $LDFLAGS"
6161b0f9cc2Saliguori  fi
617fd677642Sths  cocoa="yes"
6180c58ac1cSmalc  audio_drv_list="coreaudio"
61914382605SKővágó, Zoltán  audio_possible_drivers="coreaudio sdl"
6200c439cbfSJuan Quintela  LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
6217973f21cSJuan Quintela  libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
622a0b7cf6bSPeter Maydell  # Disable attempts to use ObjectiveC features in os/object.h since they
623a0b7cf6bSPeter Maydell  # won't work when we're compiling with gcc as a C compiler.
624a0b7cf6bSPeter Maydell  QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS"
625adfc3e91SStacey Son  HOST_VARIANT_DIR="darwin"
62683fb7adfSbellard;;
627ec530c81SbellardSunOS)
628ec530c81Sbellard  solaris="yes"
6290db4a067SPaolo Bonzini  make="${MAKE-gmake}"
6300db4a067SPaolo Bonzini  install="${INSTALL-ginstall}"
631fa58948dSBlue Swirl  ld="gld"
632e2d8830eSBrad  smbd="${SMBD-/usr/sfw/sbin/smbd}"
6330475a5caSths  needs_libsunmath="no"
63489138857SStefan Weil  solarisrev=$(uname -r | cut -f2 -d.)
635c2b84fabSths  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
6360475a5caSths    if test "$solarisrev" -le 9 ; then
6370475a5caSths      if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
6380475a5caSths        needs_libsunmath="yes"
639f14bfdf9SJuan Quintela        QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS"
640f14bfdf9SJuan Quintela        LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS"
641f14bfdf9SJuan Quintela        LIBS="-lsunmath $LIBS"
6420475a5caSths      else
64376ad07a4SPeter Maydell        error_exit "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without" \
64476ad07a4SPeter Maydell            "libsunmath from the Sun Studio compilers tools, due to a lack of" \
64576ad07a4SPeter Maydell            "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86" \
64676ad07a4SPeter Maydell            "Studio 11 can be downloaded from www.sun.com."
6470475a5caSths      fi
6480475a5caSths    fi
64986b2bd93Sths  fi
6506b4d2ba1Sths  if test -f /usr/include/sys/soundcard.h ; then
6510c58ac1cSmalc    audio_drv_list="oss"
6526b4d2ba1Sths  fi
653c2de5c91Smalc  audio_possible_drivers="oss sdl"
654d741429aSBlue Swirl# needed for CMSG_ macros in sys/socket.h
655d741429aSBlue Swirl  QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
656d741429aSBlue Swirl# needed for TIOCWIN* defines in termios.h
657d741429aSBlue Swirl  QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
658a558ee17SJuan Quintela  QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
659560d375fSAndreas Färber  solarisnetlibs="-lsocket -lnsl -lresolv"
660560d375fSAndreas Färber  LIBS="$solarisnetlibs $LIBS"
661560d375fSAndreas Färber  libs_qga="$solarisnetlibs $libs_qga"
662ec530c81Sbellard;;
663b29fe3edSmalcAIX)
664b29fe3edSmalc  aix="yes"
6650db4a067SPaolo Bonzini  make="${MAKE-gmake}"
666b29fe3edSmalc;;
667179cf400SAndreas FärberHaiku)
668179cf400SAndreas Färber  haiku="yes"
669179cf400SAndreas Färber  QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
670179cf400SAndreas Färber  LIBS="-lposix_error_mapper -lnetwork $LIBS"
671179cf400SAndreas Färber;;
672fb065187Sbellard*)
6730c58ac1cSmalc  audio_drv_list="oss"
6740bac1111SKővágó, Zoltán  audio_possible_drivers="oss alsa sdl pa"
6755327cf48Sbellard  linux="yes"
676831b7825Sths  linux_user="yes"
677af2be207SJan Kiszka  kvm="yes"
678af2be207SJan Kiszka  vhost_net="yes"
6795e9be92dSNicholas Bellinger  vhost_scsi="yes"
680fc0b9b0eSStefan Hajnoczi  vhost_vsock="yes"
681a585140dSAlexey Kardashevskiy  QEMU_INCLUDES="-I\$(SRC_PATH)/linux-headers -I$(pwd)/linux-headers $QEMU_INCLUDES"
682fb065187Sbellard;;
6837d13299dSbellardesac
6847d13299dSbellard
6857d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
686b1a550a0Spbrook  if [ "$darwin" != "yes" ] ; then
68784778508Sblueswir1    bsd_user="yes"
6887d3505c5Sbellard  fi
68908de3949SAndreas Färberfi
6907d3505c5Sbellard
6910db4a067SPaolo Bonzini: ${make=${MAKE-make}}
6920db4a067SPaolo Bonzini: ${install=${INSTALL-install}}
69352510f8bSStefan Weil: ${python=${PYTHON-python}}
694e2d8830eSBrad: ${smbd=${SMBD-/usr/sbin/smbd}}
6950db4a067SPaolo Bonzini
6963c4a4d0dSPeter Maydell# Default objcc to clang if available, otherwise use CC
6973c4a4d0dSPeter Maydellif has clang; then
6983c4a4d0dSPeter Maydell  objcc=clang
6993c4a4d0dSPeter Maydellelse
7003c4a4d0dSPeter Maydell  objcc="$cc"
7013c4a4d0dSPeter Maydellfi
7023c4a4d0dSPeter Maydell
7033457a3f8SJuan Quintelaif test "$mingw32" = "yes" ; then
7043457a3f8SJuan Quintela  EXESUF=".exe"
70517969268SFam Zheng  DSOSUF=".dll"
706a558ee17SJuan Quintela  QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
707e94a7936SStefan Weil  # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
708e94a7936SStefan Weil  QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
70978e9d4adSStefan Weil  # MinGW needs -mthreads for TLS and macro _MT.
71078e9d4adSStefan Weil  QEMU_CFLAGS="-mthreads $QEMU_CFLAGS"
711f7cf5d5bSStefan Weil  LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
71293b25869SJohn Snow  write_c_skeleton;
713f7cf5d5bSStefan Weil  if compile_prog "" "-liberty" ; then
714f7cf5d5bSStefan Weil    LIBS="-liberty $LIBS"
715f7cf5d5bSStefan Weil  fi
716c5ec15eaSStefan Weil  prefix="c:/Program Files/QEMU"
717683035deSPaolo Bonzini  mandir="\${prefix}"
718528ae5b8SEduardo Habkost  datadir="\${prefix}"
719850da188SEduardo Habkost  qemu_docdir="\${prefix}"
720683035deSPaolo Bonzini  bindir="\${prefix}"
721683035deSPaolo Bonzini  sysconfdir="\${prefix}"
7225a699bbbSLaszlo Ersek  local_statedir=
723683035deSPaolo Bonzini  confsuffix=""
724259434b8SMarc-André Lureau  libs_qga="-lws2_32 -lwinmm -lpowrprof -liphlpapi -lnetapi32 $libs_qga"
7253457a3f8SJuan Quintelafi
7263457a3f8SJuan Quintela
727487fefdbSAnthony Liguoriwerror=""
72885aa5189Sbellard
7297d13299dSbellardfor opt do
73089138857SStefan Weil  optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
7317d13299dSbellard  case "$opt" in
7322efc3265Sbellard  --help|-h) show_help=yes
7332efc3265Sbellard  ;;
73499123e13SMike Frysinger  --version|-V) exec cat $source_path/VERSION
73599123e13SMike Frysinger  ;;
736b1a550a0Spbrook  --prefix=*) prefix="$optarg"
7377d13299dSbellard  ;;
738b1a550a0Spbrook  --interp-prefix=*) interp_prefix="$optarg"
73932ce6337Sbellard  ;;
740ca4deeb1SPaolo Bonzini  --source-path=*)
7417d13299dSbellard  ;;
742ac0df51dSaliguori  --cross-prefix=*)
7437d13299dSbellard  ;;
744ac0df51dSaliguori  --cc=*)
7457d13299dSbellard  ;;
746b1a550a0Spbrook  --host-cc=*) host_cc="$optarg"
74783469015Sbellard  ;;
74883f73fceSTomoki Sekiyama  --cxx=*)
74983f73fceSTomoki Sekiyama  ;;
750e007dbecSMichael S. Tsirkin  --iasl=*) iasl="$optarg"
751e007dbecSMichael S. Tsirkin  ;;
7523c4a4d0dSPeter Maydell  --objcc=*) objcc="$optarg"
7533c4a4d0dSPeter Maydell  ;;
754b1a550a0Spbrook  --make=*) make="$optarg"
7557d13299dSbellard  ;;
7566a882643Spbrook  --install=*) install="$optarg"
7576a882643Spbrook  ;;
758c886edfbSBlue Swirl  --python=*) python="$optarg"
759c886edfbSBlue Swirl  ;;
7601d728c39SBlue Swirl  --gcov=*) gcov_tool="$optarg"
7611d728c39SBlue Swirl  ;;
762e2d8830eSBrad  --smbd=*) smbd="$optarg"
763e2d8830eSBrad  ;;
764e2a2ed06SJuan Quintela  --extra-cflags=*)
7657d13299dSbellard  ;;
766e2a2ed06SJuan Quintela  --extra-ldflags=*)
7677d13299dSbellard  ;;
7685bc62e01SGerd Hoffmann  --enable-debug-info)
7695bc62e01SGerd Hoffmann  ;;
7705bc62e01SGerd Hoffmann  --disable-debug-info)
7715bc62e01SGerd Hoffmann  ;;
77217969268SFam Zheng  --enable-modules)
77317969268SFam Zheng      modules="yes"
77417969268SFam Zheng  ;;
7753aa88b31SStefan Hajnoczi  --disable-modules)
7763aa88b31SStefan Hajnoczi      modules="no"
7773aa88b31SStefan Hajnoczi  ;;
7782ff6b91eSJuan Quintela  --cpu=*)
7797d13299dSbellard  ;;
780b1a550a0Spbrook  --target-list=*) target_list="$optarg"
781de83cd02Sbellard  ;;
7825b808275SLluís Vilanova  --enable-trace-backends=*) trace_backends="$optarg"
7835b808275SLluís Vilanova  ;;
7845b808275SLluís Vilanova  # XXX: backwards compatibility
7855b808275SLluís Vilanova  --enable-trace-backend=*) trace_backends="$optarg"
78694a420b1SStefan Hajnoczi  ;;
78774242e0fSPaolo Bonzini  --with-trace-file=*) trace_file="$optarg"
7889410b56cSPrerna Saxena  ;;
7897d13299dSbellard  --enable-gprof) gprof="yes"
7907d13299dSbellard  ;;
7911d728c39SBlue Swirl  --enable-gcov) gcov="yes"
7921d728c39SBlue Swirl  ;;
79379427693SLoïc Minier  --static)
79479427693SLoïc Minier    static="yes"
79579427693SLoïc Minier    LDFLAGS="-static $LDFLAGS"
79617884d7bSSergei Trofimovich    QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS"
79743ce4dfeSbellard  ;;
7980b24e75fSPaolo Bonzini  --mandir=*) mandir="$optarg"
7990b24e75fSPaolo Bonzini  ;;
8000b24e75fSPaolo Bonzini  --bindir=*) bindir="$optarg"
8010b24e75fSPaolo Bonzini  ;;
8023aa5d2beSAlon Levy  --libdir=*) libdir="$optarg"
8033aa5d2beSAlon Levy  ;;
8048bf188aaSMichael Tokarev  --libexecdir=*) libexecdir="$optarg"
8058bf188aaSMichael Tokarev  ;;
8060f94d6daSAlon Levy  --includedir=*) includedir="$optarg"
8070f94d6daSAlon Levy  ;;
808528ae5b8SEduardo Habkost  --datadir=*) datadir="$optarg"
8090b24e75fSPaolo Bonzini  ;;
810023d3d67SEduardo Habkost  --with-confsuffix=*) confsuffix="$optarg"
811023d3d67SEduardo Habkost  ;;
812850da188SEduardo Habkost  --docdir=*) qemu_docdir="$optarg"
8130b24e75fSPaolo Bonzini  ;;
814ca2fb938SAndre Przywara  --sysconfdir=*) sysconfdir="$optarg"
81507381cc1SAnthony Liguori  ;;
816785c23aeSLuiz Capitulino  --localstatedir=*) local_statedir="$optarg"
817785c23aeSLuiz Capitulino  ;;
818785c23aeSLuiz Capitulino  --sbindir=*|--sharedstatedir=*|\
819023ddd74SMax Filippov  --oldincludedir=*|--datarootdir=*|--infodir=*|--localedir=*|\
820023ddd74SMax Filippov  --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*)
821023ddd74SMax Filippov    # These switches are silently ignored, for compatibility with
822023ddd74SMax Filippov    # autoconf-generated configure scripts. This allows QEMU's
823023ddd74SMax Filippov    # configure to be used by RPM and similar macros that set
824023ddd74SMax Filippov    # lots of directory switches by default.
825023ddd74SMax Filippov  ;;
826e2134eb9SGerd Hoffmann  --with-system-pixman) pixman="system"
827e2134eb9SGerd Hoffmann  ;;
828e2134eb9SGerd Hoffmann  --without-system-pixman) pixman="internal"
829e2134eb9SGerd Hoffmann  ;;
83074880fe2SRobert Schiele  --without-pixman) pixman="none"
83174880fe2SRobert Schiele  ;;
83297a847bcSbellard  --disable-sdl) sdl="no"
83397a847bcSbellard  ;;
834c4198157SJuan Quintela  --enable-sdl) sdl="yes"
835c4198157SJuan Quintela  ;;
83647c03744SDave Airlie  --with-sdlabi=*) sdlabi="$optarg"
83747c03744SDave Airlie  ;;
8383556c233SPaolo Bonzini  --disable-qom-cast-debug) qom_cast_debug="no"
8393556c233SPaolo Bonzini  ;;
8403556c233SPaolo Bonzini  --enable-qom-cast-debug) qom_cast_debug="yes"
8413556c233SPaolo Bonzini  ;;
842983eef5aSMeador Inge  --disable-virtfs) virtfs="no"
843983eef5aSMeador Inge  ;;
844983eef5aSMeador Inge  --enable-virtfs) virtfs="yes"
845983eef5aSMeador Inge  ;;
846821601eaSJes Sorensen  --disable-vnc) vnc="no"
847821601eaSJes Sorensen  ;;
848821601eaSJes Sorensen  --enable-vnc) vnc="yes"
849821601eaSJes Sorensen  ;;
8502f6a1ab0Sblueswir1  --oss-lib=*) oss_lib="$optarg"
8512f6a1ab0Sblueswir1  ;;
8520c58ac1cSmalc  --audio-drv-list=*) audio_drv_list="$optarg"
8530c58ac1cSmalc  ;;
85489138857SStefan Weil  --block-drv-rw-whitelist=*|--block-drv-whitelist=*) block_drv_rw_whitelist=$(echo "$optarg" | sed -e 's/,/ /g')
855b64ec4e4SFam Zheng  ;;
85689138857SStefan Weil  --block-drv-ro-whitelist=*) block_drv_ro_whitelist=$(echo "$optarg" | sed -e 's/,/ /g')
857eb852011SMarkus Armbruster  ;;
858f8393946Saurel32  --enable-debug-tcg) debug_tcg="yes"
859f8393946Saurel32  ;;
860f8393946Saurel32  --disable-debug-tcg) debug_tcg="no"
861f8393946Saurel32  ;;
862f3d08ee6SPaul Brook  --enable-debug)
863f3d08ee6SPaul Brook      # Enable debugging options that aren't excessively noisy
864f3d08ee6SPaul Brook      debug_tcg="yes"
865f3d08ee6SPaul Brook      debug="yes"
866f3d08ee6SPaul Brook      strip_opt="no"
867b553a042SJohn Snow      fortify_source="no"
868f3d08ee6SPaul Brook  ;;
86903b4fe7dSaliguori  --enable-sparse) sparse="yes"
87003b4fe7dSaliguori  ;;
87103b4fe7dSaliguori  --disable-sparse) sparse="no"
87203b4fe7dSaliguori  ;;
8731625af87Saliguori  --disable-strip) strip_opt="no"
8741625af87Saliguori  ;;
8752f9606b3Saliguori  --disable-vnc-sasl) vnc_sasl="no"
8762f9606b3Saliguori  ;;
877ea784e3bSJuan Quintela  --enable-vnc-sasl) vnc_sasl="yes"
878ea784e3bSJuan Quintela  ;;
8792f6f5c7aSCorentin Chary  --disable-vnc-jpeg) vnc_jpeg="no"
8802f6f5c7aSCorentin Chary  ;;
8812f6f5c7aSCorentin Chary  --enable-vnc-jpeg) vnc_jpeg="yes"
8822f6f5c7aSCorentin Chary  ;;
883efe556adSCorentin Chary  --disable-vnc-png) vnc_png="no"
884efe556adSCorentin Chary  ;;
885efe556adSCorentin Chary  --enable-vnc-png) vnc_png="yes"
886efe556adSCorentin Chary  ;;
887443f1376Sbellard  --disable-slirp) slirp="no"
888c20709aaSbellard  ;;
889e0e6c8c0Saliguori  --disable-vde) vde="no"
8908a16d273Sths  ;;
891dfb278bdSJuan Quintela  --enable-vde) vde="yes"
892dfb278bdSJuan Quintela  ;;
89358952137SVincenzo Maffione  --disable-netmap) netmap="no"
89458952137SVincenzo Maffione  ;;
89558952137SVincenzo Maffione  --enable-netmap) netmap="yes"
89658952137SVincenzo Maffione  ;;
897e37630caSaliguori  --disable-xen) xen="no"
898e37630caSaliguori  ;;
899fc321b4bSJuan Quintela  --enable-xen) xen="yes"
900fc321b4bSJuan Quintela  ;;
901eb6fda0fSAnthony PERARD  --disable-xen-pci-passthrough) xen_pci_passthrough="no"
902eb6fda0fSAnthony PERARD  ;;
903eb6fda0fSAnthony PERARD  --enable-xen-pci-passthrough) xen_pci_passthrough="yes"
904eb6fda0fSAnthony PERARD  ;;
90564a7ad6fSIan Campbell  --disable-xen-pv-domain-build) xen_pv_domain_build="no"
90664a7ad6fSIan Campbell  ;;
90764a7ad6fSIan Campbell  --enable-xen-pv-domain-build) xen_pv_domain_build="yes"
90864a7ad6fSIan Campbell  ;;
9092e4d9fb1Saurel32  --disable-brlapi) brlapi="no"
9102e4d9fb1Saurel32  ;;
9114ffcedb6SJuan Quintela  --enable-brlapi) brlapi="yes"
9124ffcedb6SJuan Quintela  ;;
913fb599c9aSbalrog  --disable-bluez) bluez="no"
914fb599c9aSbalrog  ;;
915a20a6f46SJuan Quintela  --enable-bluez) bluez="yes"
916a20a6f46SJuan Quintela  ;;
9177ba1e619Saliguori  --disable-kvm) kvm="no"
9187ba1e619Saliguori  ;;
919b31a0277SJuan Quintela  --enable-kvm) kvm="yes"
920b31a0277SJuan Quintela  ;;
9219195b2c2SStefan Weil  --disable-tcg-interpreter) tcg_interpreter="no"
9229195b2c2SStefan Weil  ;;
9239195b2c2SStefan Weil  --enable-tcg-interpreter) tcg_interpreter="yes"
9249195b2c2SStefan Weil  ;;
92547e98658SCorey Bryant  --disable-cap-ng)  cap_ng="no"
92647e98658SCorey Bryant  ;;
92747e98658SCorey Bryant  --enable-cap-ng) cap_ng="yes"
92847e98658SCorey Bryant  ;;
929cd4ec0b4SGerd Hoffmann  --disable-spice) spice="no"
930cd4ec0b4SGerd Hoffmann  ;;
931cd4ec0b4SGerd Hoffmann  --enable-spice) spice="yes"
932cd4ec0b4SGerd Hoffmann  ;;
933c589b249SRonnie Sahlberg  --disable-libiscsi) libiscsi="no"
934c589b249SRonnie Sahlberg  ;;
935c589b249SRonnie Sahlberg  --enable-libiscsi) libiscsi="yes"
936c589b249SRonnie Sahlberg  ;;
9376542aa9cSPeter Lieven  --disable-libnfs) libnfs="no"
9386542aa9cSPeter Lieven  ;;
9396542aa9cSPeter Lieven  --enable-libnfs) libnfs="yes"
9406542aa9cSPeter Lieven  ;;
94105c2a3e7Sbellard  --enable-profiler) profiler="yes"
94205c2a3e7Sbellard  ;;
94314821030SPavel Borzenkov  --disable-cocoa) cocoa="no"
94414821030SPavel Borzenkov  ;;
945c2de5c91Smalc  --enable-cocoa)
946c2de5c91Smalc      cocoa="yes" ;
94789138857SStefan Weil      audio_drv_list="coreaudio $(echo $audio_drv_list | sed s,coreaudio,,g)"
9485b0753e0Sbellard  ;;
949cad25d69Spbrook  --disable-system) softmmu="no"
9500a8e90f4Spbrook  ;;
951cad25d69Spbrook  --enable-system) softmmu="yes"
9520a8e90f4Spbrook  ;;
9530953a80fSZachary Amsden  --disable-user)
9540953a80fSZachary Amsden      linux_user="no" ;
9550953a80fSZachary Amsden      bsd_user="no" ;
9560953a80fSZachary Amsden  ;;
9570953a80fSZachary Amsden  --enable-user) ;;
958831b7825Sths  --disable-linux-user) linux_user="no"
9590a8e90f4Spbrook  ;;
960831b7825Sths  --enable-linux-user) linux_user="yes"
961831b7825Sths  ;;
96284778508Sblueswir1  --disable-bsd-user) bsd_user="no"
96384778508Sblueswir1  ;;
96484778508Sblueswir1  --enable-bsd-user) bsd_user="yes"
96584778508Sblueswir1  ;;
96640d6444eSAvi Kivity  --enable-pie) pie="yes"
96734005a00SKirill A. Shutemov  ;;
96840d6444eSAvi Kivity  --disable-pie) pie="no"
96934005a00SKirill A. Shutemov  ;;
97085aa5189Sbellard  --enable-werror) werror="yes"
97185aa5189Sbellard  ;;
97285aa5189Sbellard  --disable-werror) werror="no"
97385aa5189Sbellard  ;;
97463678e17SSteven Noonan  --enable-stack-protector) stack_protector="yes"
97563678e17SSteven Noonan  ;;
97663678e17SSteven Noonan  --disable-stack-protector) stack_protector="no"
97763678e17SSteven Noonan  ;;
9784d3b6f6eSbalrog  --disable-curses) curses="no"
9794d3b6f6eSbalrog  ;;
980c584a6d0SJuan Quintela  --enable-curses) curses="yes"
981c584a6d0SJuan Quintela  ;;
982769ce76dSAlexander Graf  --disable-curl) curl="no"
983769ce76dSAlexander Graf  ;;
984788c8196SJuan Quintela  --enable-curl) curl="yes"
985788c8196SJuan Quintela  ;;
9862df87df7SJuan Quintela  --disable-fdt) fdt="no"
9872df87df7SJuan Quintela  ;;
9882df87df7SJuan Quintela  --enable-fdt) fdt="yes"
9892df87df7SJuan Quintela  ;;
9905c6c3a6cSChristoph Hellwig  --disable-linux-aio) linux_aio="no"
9915c6c3a6cSChristoph Hellwig  ;;
9925c6c3a6cSChristoph Hellwig  --enable-linux-aio) linux_aio="yes"
9935c6c3a6cSChristoph Hellwig  ;;
994758e8e38SVenkateswararao Jujjuri (JV)  --disable-attr) attr="no"
995758e8e38SVenkateswararao Jujjuri (JV)  ;;
996758e8e38SVenkateswararao Jujjuri (JV)  --enable-attr) attr="yes"
997758e8e38SVenkateswararao Jujjuri (JV)  ;;
99877755340Sths  --disable-blobs) blobs="no"
99977755340Sths  ;;
10004a19f1ecSpbrook  --with-pkgversion=*) pkgversion=" ($optarg)"
10014a19f1ecSpbrook  ;;
1002519175a2SAlex Barcelo  --with-coroutine=*) coroutine="$optarg"
1003519175a2SAlex Barcelo  ;;
100470c60c08SStefan Hajnoczi  --disable-coroutine-pool) coroutine_pool="no"
100570c60c08SStefan Hajnoczi  ;;
100670c60c08SStefan Hajnoczi  --enable-coroutine-pool) coroutine_pool="yes"
100770c60c08SStefan Hajnoczi  ;;
10087d992e4dSPeter Lieven  --enable-debug-stack-usage) debug_stack_usage="yes"
10097d992e4dSPeter Lieven  ;;
1010a25dba17SJuan Quintela  --disable-docs) docs="no"
101170ec5dc0SAnthony Liguori  ;;
1012a25dba17SJuan Quintela  --enable-docs) docs="yes"
101383a3ab8bSJuan Quintela  ;;
1014d5970055SMichael S. Tsirkin  --disable-vhost-net) vhost_net="no"
1015d5970055SMichael S. Tsirkin  ;;
1016d5970055SMichael S. Tsirkin  --enable-vhost-net) vhost_net="yes"
1017d5970055SMichael S. Tsirkin  ;;
10185e9be92dSNicholas Bellinger  --disable-vhost-scsi) vhost_scsi="no"
10195e9be92dSNicholas Bellinger  ;;
10205e9be92dSNicholas Bellinger  --enable-vhost-scsi) vhost_scsi="yes"
10215e9be92dSNicholas Bellinger  ;;
1022fc0b9b0eSStefan Hajnoczi  --disable-vhost-vsock) vhost_vsock="no"
1023fc0b9b0eSStefan Hajnoczi  ;;
1024fc0b9b0eSStefan Hajnoczi  --enable-vhost-vsock) vhost_vsock="yes"
1025fc0b9b0eSStefan Hajnoczi  ;;
1026da076ffeSGerd Hoffmann  --disable-opengl) opengl="no"
102720ff075bSMichael Walle  ;;
1028da076ffeSGerd Hoffmann  --enable-opengl) opengl="yes"
102920ff075bSMichael Walle  ;;
1030f27aaf4bSChristian Brunner  --disable-rbd) rbd="no"
1031f27aaf4bSChristian Brunner  ;;
1032f27aaf4bSChristian Brunner  --enable-rbd) rbd="yes"
1033f27aaf4bSChristian Brunner  ;;
10348c84cf11SSergei Trofimovich  --disable-xfsctl) xfs="no"
10358c84cf11SSergei Trofimovich  ;;
10368c84cf11SSergei Trofimovich  --enable-xfsctl) xfs="yes"
10378c84cf11SSergei Trofimovich  ;;
10387b02f544SMarc-André Lureau  --disable-smartcard) smartcard="no"
1039111a38b0SRobert Relyea  ;;
10407b02f544SMarc-André Lureau  --enable-smartcard) smartcard="yes"
1041111a38b0SRobert Relyea  ;;
10422b2325ffSGerd Hoffmann  --disable-libusb) libusb="no"
10432b2325ffSGerd Hoffmann  ;;
10442b2325ffSGerd Hoffmann  --enable-libusb) libusb="yes"
10452b2325ffSGerd Hoffmann  ;;
104669354a83SHans de Goede  --disable-usb-redir) usb_redir="no"
104769354a83SHans de Goede  ;;
104869354a83SHans de Goede  --enable-usb-redir) usb_redir="yes"
104969354a83SHans de Goede  ;;
10501ece9905SAlon Levy  --disable-zlib-test) zlib="no"
10511ece9905SAlon Levy  ;;
1052b25c9dffSStefan Weil  --disable-lzo) lzo="no"
1053b25c9dffSStefan Weil  ;;
1054607dacd0Sqiaonuohan  --enable-lzo) lzo="yes"
1055607dacd0Sqiaonuohan  ;;
1056b25c9dffSStefan Weil  --disable-snappy) snappy="no"
1057b25c9dffSStefan Weil  ;;
1058607dacd0Sqiaonuohan  --enable-snappy) snappy="yes"
1059607dacd0Sqiaonuohan  ;;
10606b383c08SPeter Wu  --disable-bzip2) bzip2="no"
10616b383c08SPeter Wu  ;;
10626b383c08SPeter Wu  --enable-bzip2) bzip2="yes"
10636b383c08SPeter Wu  ;;
1064d138cee9SMichael Roth  --enable-guest-agent) guest_agent="yes"
1065d138cee9SMichael Roth  ;;
1066d138cee9SMichael Roth  --disable-guest-agent) guest_agent="no"
1067d138cee9SMichael Roth  ;;
10689dacf32dSYossi Hindin  --enable-guest-agent-msi) guest_agent_msi="yes"
10699dacf32dSYossi Hindin  ;;
10709dacf32dSYossi Hindin  --disable-guest-agent-msi) guest_agent_msi="no"
10719dacf32dSYossi Hindin  ;;
1072d9840e25STomoki Sekiyama  --with-vss-sdk) vss_win32_sdk=""
1073d9840e25STomoki Sekiyama  ;;
1074d9840e25STomoki Sekiyama  --with-vss-sdk=*) vss_win32_sdk="$optarg"
1075d9840e25STomoki Sekiyama  ;;
1076d9840e25STomoki Sekiyama  --without-vss-sdk) vss_win32_sdk="no"
1077d9840e25STomoki Sekiyama  ;;
1078d9840e25STomoki Sekiyama  --with-win-sdk) win_sdk=""
1079d9840e25STomoki Sekiyama  ;;
1080d9840e25STomoki Sekiyama  --with-win-sdk=*) win_sdk="$optarg"
1081d9840e25STomoki Sekiyama  ;;
1082d9840e25STomoki Sekiyama  --without-win-sdk) win_sdk="no"
1083d9840e25STomoki Sekiyama  ;;
10844b1c11fdSDaniel P. Berrange  --enable-tools) want_tools="yes"
10854b1c11fdSDaniel P. Berrange  ;;
10864b1c11fdSDaniel P. Berrange  --disable-tools) want_tools="no"
10874b1c11fdSDaniel P. Berrange  ;;
1088f794573eSEduardo Otubo  --enable-seccomp) seccomp="yes"
1089f794573eSEduardo Otubo  ;;
1090f794573eSEduardo Otubo  --disable-seccomp) seccomp="no"
1091f794573eSEduardo Otubo  ;;
1092eb100396SBharata B Rao  --disable-glusterfs) glusterfs="no"
1093eb100396SBharata B Rao  ;;
1094eb100396SBharata B Rao  --enable-glusterfs) glusterfs="yes"
1095eb100396SBharata B Rao  ;;
1096c9a12e75SChrysostomos Nanakos  --disable-archipelago) archipelago="no"
1097c9a12e75SChrysostomos Nanakos  ;;
1098c9a12e75SChrysostomos Nanakos  --enable-archipelago) archipelago="yes"
1099c9a12e75SChrysostomos Nanakos  ;;
110052b53c04SFam Zheng  --disable-virtio-blk-data-plane|--enable-virtio-blk-data-plane)
110152b53c04SFam Zheng      echo "$0: $opt is obsolete, virtio-blk data-plane is always on" >&2
1102583f6e7bSStefan Hajnoczi  ;;
1103cb6414dfSFam Zheng  --enable-vhdx|--disable-vhdx)
1104cb6414dfSFam Zheng      echo "$0: $opt is obsolete, VHDX driver is always built" >&2
1105cb6414dfSFam Zheng  ;;
1106315d3184SFam Zheng  --enable-uuid|--disable-uuid)
1107315d3184SFam Zheng      echo "$0: $opt is obsolete, UUID support is always built" >&2
1108315d3184SFam Zheng  ;;
1109a4ccabcfSAnthony Liguori  --disable-gtk) gtk="no"
1110a4ccabcfSAnthony Liguori  ;;
1111a4ccabcfSAnthony Liguori  --enable-gtk) gtk="yes"
1112a4ccabcfSAnthony Liguori  ;;
1113a1c5e949SDaniel P. Berrange  --tls-priority=*) tls_priority="$optarg"
1114a1c5e949SDaniel P. Berrange  ;;
1115ddbb0d09SDaniel P. Berrange  --disable-gnutls) gnutls="no"
1116ddbb0d09SDaniel P. Berrange  ;;
1117ddbb0d09SDaniel P. Berrange  --enable-gnutls) gnutls="yes"
1118ddbb0d09SDaniel P. Berrange  ;;
111991bfcdb0SDaniel P. Berrange  --disable-nettle) nettle="no"
112091bfcdb0SDaniel P. Berrange  ;;
112191bfcdb0SDaniel P. Berrange  --enable-nettle) nettle="yes"
112291bfcdb0SDaniel P. Berrange  ;;
112391bfcdb0SDaniel P. Berrange  --disable-gcrypt) gcrypt="no"
112491bfcdb0SDaniel P. Berrange  ;;
112591bfcdb0SDaniel P. Berrange  --enable-gcrypt) gcrypt="yes"
112691bfcdb0SDaniel P. Berrange  ;;
11272da776dbSMichael R. Hines  --enable-rdma) rdma="yes"
11282da776dbSMichael R. Hines  ;;
11292da776dbSMichael R. Hines  --disable-rdma) rdma="no"
11302da776dbSMichael R. Hines  ;;
1131528de90aSDaniel P. Berrange  --with-gtkabi=*) gtkabi="$optarg"
1132528de90aSDaniel P. Berrange  ;;
1133bbbf9bfbSStefan Weil  --disable-vte) vte="no"
1134bbbf9bfbSStefan Weil  ;;
1135bbbf9bfbSStefan Weil  --enable-vte) vte="yes"
1136bbbf9bfbSStefan Weil  ;;
11379d9e1521SGerd Hoffmann  --disable-virglrenderer) virglrenderer="no"
11389d9e1521SGerd Hoffmann  ;;
11399d9e1521SGerd Hoffmann  --enable-virglrenderer) virglrenderer="yes"
11409d9e1521SGerd Hoffmann  ;;
1141e91c793cSCole Robinson  --disable-tpm) tpm="no"
1142e91c793cSCole Robinson  ;;
1143ab214c29SStefan Berger  --enable-tpm) tpm="yes"
1144ab214c29SStefan Berger  ;;
11450a12ec87SRichard W.M. Jones  --disable-libssh2) libssh2="no"
11460a12ec87SRichard W.M. Jones  ;;
11470a12ec87SRichard W.M. Jones  --enable-libssh2) libssh2="yes"
11480a12ec87SRichard W.M. Jones  ;;
1149a99d57bbSWanlong Gao  --disable-numa) numa="no"
1150a99d57bbSWanlong Gao  ;;
1151a99d57bbSWanlong Gao  --enable-numa) numa="yes"
1152a99d57bbSWanlong Gao  ;;
11532847b469SFam Zheng  --disable-tcmalloc) tcmalloc="no"
11542847b469SFam Zheng  ;;
11552847b469SFam Zheng  --enable-tcmalloc) tcmalloc="yes"
11562847b469SFam Zheng  ;;
11577b01cb97SAlexandre Derumier  --disable-jemalloc) jemalloc="no"
11587b01cb97SAlexandre Derumier  ;;
11597b01cb97SAlexandre Derumier  --enable-jemalloc) jemalloc="yes"
11607b01cb97SAlexandre Derumier  ;;
1161a6b1d4c0SChanglong Xie  --disable-replication) replication="no"
1162a6b1d4c0SChanglong Xie  ;;
1163a6b1d4c0SChanglong Xie  --enable-replication) replication="yes"
1164a6b1d4c0SChanglong Xie  ;;
11652d2ad6d0SFam Zheng  *)
11662d2ad6d0SFam Zheng      echo "ERROR: unknown option $opt"
11672d2ad6d0SFam Zheng      echo "Try '$0 --help' for more information"
11682d2ad6d0SFam Zheng      exit 1
11697f1559c6Sbalrog  ;;
11707d13299dSbellard  esac
11717d13299dSbellarddone
11727d13299dSbellard
1173f6f0b7d9SStefan Weilif ! has $python; then
1174f6f0b7d9SStefan Weil  error_exit "Python not found. Use --python=/path/to/python"
1175f6f0b7d9SStefan Weilfi
1176f6f0b7d9SStefan Weil
1177f6f0b7d9SStefan Weil# Note that if the Python conditional here evaluates True we will exit
1178f6f0b7d9SStefan Weil# with status 1 which is a shell 'false' value.
1179fec21036SMarkus Armbrusterif ! $python -c 'import sys; sys.exit(sys.version_info < (2,6) or sys.version_info >= (3,))'; then
1180fec21036SMarkus Armbruster  error_exit "Cannot use '$python', Python 2.6 or later is required." \
1181f6f0b7d9SStefan Weil      "Note that Python 3 or later is not yet supported." \
1182f6f0b7d9SStefan Weil      "Use --python=/path/to/python to specify a supported Python."
1183f6f0b7d9SStefan Weilfi
1184f6f0b7d9SStefan Weil
1185fec21036SMarkus Armbruster# Suppress writing compiled files
1186f6f0b7d9SStefan Weilpython="$python -B"
1187f6f0b7d9SStefan Weil
118840293e58Sbellardcase "$cpu" in
1189e3608d66SRichard Henderson    ppc)
1190e3608d66SRichard Henderson           CPU_CFLAGS="-m32"
1191e3608d66SRichard Henderson           LDFLAGS="-m32 $LDFLAGS"
1192e3608d66SRichard Henderson           ;;
1193e3608d66SRichard Henderson    ppc64)
1194e3608d66SRichard Henderson           CPU_CFLAGS="-m64"
1195e3608d66SRichard Henderson           LDFLAGS="-m64 $LDFLAGS"
1196e3608d66SRichard Henderson           ;;
11979b9c37c3SRichard Henderson    sparc)
11980c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
119979f3b12fSPeter Crosthwaite           CPU_CFLAGS="-m32 -mcpu=ultrasparc"
12003142255cSblueswir1           ;;
1201ed968ff1SJuan Quintela    sparc64)
12020c439cbfSJuan Quintela           LDFLAGS="-m64 $LDFLAGS"
120379f3b12fSPeter Crosthwaite           CPU_CFLAGS="-m64 -mcpu=ultrasparc"
12043142255cSblueswir1           ;;
120576d83bdeSths    s390)
1206061cdd81SRichard Henderson           CPU_CFLAGS="-m31"
120728d7cc49SRichard Henderson           LDFLAGS="-m31 $LDFLAGS"
120828d7cc49SRichard Henderson           ;;
120928d7cc49SRichard Henderson    s390x)
1210061cdd81SRichard Henderson           CPU_CFLAGS="-m64"
121128d7cc49SRichard Henderson           LDFLAGS="-m64 $LDFLAGS"
121276d83bdeSths           ;;
121340293e58Sbellard    i386)
121479f3b12fSPeter Crosthwaite           CPU_CFLAGS="-m32"
12150c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
12162b2e59e6SPaolo Bonzini           cc_i386='$(CC) -m32'
121740293e58Sbellard           ;;
121840293e58Sbellard    x86_64)
12197ebee43eSRichard Henderson           # ??? Only extremely old AMD cpus do not have cmpxchg16b.
12207ebee43eSRichard Henderson           # If we truly care, we should simply detect this case at
12217ebee43eSRichard Henderson           # runtime and generate the fallback to serial emulation.
12227ebee43eSRichard Henderson           CPU_CFLAGS="-m64 -mcx16"
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  vde             support for vde network
1371c23f23b9SMichael Tokarev  netmap          support for netmap network
1372c23f23b9SMichael Tokarev  linux-aio       Linux AIO support
1373c23f23b9SMichael Tokarev  cap-ng          libcap-ng support
1374c23f23b9SMichael Tokarev  attr            attr and xattr support
1375c23f23b9SMichael Tokarev  vhost-net       vhost-net acceleration support
1376c23f23b9SMichael Tokarev  spice           spice
1377c23f23b9SMichael Tokarev  rbd             rados block device (rbd)
1378c23f23b9SMichael Tokarev  libiscsi        iscsi support
1379c23f23b9SMichael Tokarev  libnfs          nfs support
13807b02f544SMarc-André Lureau  smartcard       smartcard support (libcacard)
1381c23f23b9SMichael Tokarev  libusb          libusb (for usb passthrough)
1382c23f23b9SMichael Tokarev  usb-redir       usb network redirection support
1383c23f23b9SMichael Tokarev  lzo             support of lzo compression library
1384c23f23b9SMichael Tokarev  snappy          support of snappy compression library
1385c23f23b9SMichael Tokarev  bzip2           support of bzip2 compression library
1386c23f23b9SMichael Tokarev                  (for reading bzip2-compressed dmg images)
1387c23f23b9SMichael Tokarev  seccomp         seccomp support
1388c23f23b9SMichael Tokarev  coroutine-pool  coroutine freelist (better performance)
1389c23f23b9SMichael Tokarev  glusterfs       GlusterFS backend
1390c23f23b9SMichael Tokarev  archipelago     Archipelago backend
1391c23f23b9SMichael Tokarev  tpm             TPM support
1392c23f23b9SMichael Tokarev  libssh2         ssh block device support
1393c23f23b9SMichael Tokarev  numa            libnuma support
1394c23f23b9SMichael Tokarev  tcmalloc        tcmalloc support
13957b01cb97SAlexandre Derumier  jemalloc        jemalloc support
1396a6b1d4c0SChanglong Xie  replication     replication support
139708fb77edSStefan Weil
139808fb77edSStefan WeilNOTE: The object files are built at the place where configure is launched
1399af5db58eSpbrookEOF
14002d2ad6d0SFam Zhengexit 0
1401af5db58eSpbrookfi
1402af5db58eSpbrook
1403359bc95dSPeter Maydell# Now we have handled --enable-tcg-interpreter and know we're not just
1404359bc95dSPeter Maydell# printing the help message, bail out if the host CPU isn't supported.
1405359bc95dSPeter Maydellif test "$ARCH" = "unknown"; then
1406359bc95dSPeter Maydell    if test "$tcg_interpreter" = "yes" ; then
1407359bc95dSPeter Maydell        echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)"
1408359bc95dSPeter Maydell    else
140976ad07a4SPeter Maydell        error_exit "Unsupported CPU = $cpu, try --enable-tcg-interpreter"
1410359bc95dSPeter Maydell    fi
1411359bc95dSPeter Maydellfi
1412359bc95dSPeter Maydell
14139c83ffd8SPeter Maydell# Consult white-list to determine whether to enable werror
14149c83ffd8SPeter Maydell# by default.  Only enable by default for git builds
14159c83ffd8SPeter Maydellif test -z "$werror" ; then
14169c83ffd8SPeter Maydell    if test -d "$source_path/.git" -a \
1417e4650c81SThomas Huth        \( "$linux" = "yes" -o "$mingw32" = "yes" \) ; then
14189c83ffd8SPeter Maydell        werror="yes"
14199c83ffd8SPeter Maydell    else
14209c83ffd8SPeter Maydell        werror="no"
14219c83ffd8SPeter Maydell    fi
14229c83ffd8SPeter Maydellfi
14239c83ffd8SPeter Maydell
14248d05095cSPaolo Bonzini# check that the C compiler works.
142593b25869SJohn Snowwrite_c_skeleton;
14268d05095cSPaolo Bonziniif compile_object ; then
14278d05095cSPaolo Bonzini  : C compiler works ok
14288d05095cSPaolo Bonzinielse
142976ad07a4SPeter Maydell    error_exit "\"$cc\" either does not exist or does not work"
14308d05095cSPaolo Bonzinifi
14310ef74c74SPeter Maydellif ! compile_prog ; then
14320ef74c74SPeter Maydell    error_exit "\"$cc\" cannot build an executable (is your linker broken?)"
14330ef74c74SPeter Maydellfi
14348d05095cSPaolo Bonzini
143598b21dcdSPeter Maydell# Check that the C++ compiler exists and works with the C compiler
143698b21dcdSPeter Maydellif has $cxx; then
143798b21dcdSPeter Maydell    cat > $TMPC <<EOF
143898b21dcdSPeter Maydellint c_function(void);
143998b21dcdSPeter Maydellint main(void) { return c_function(); }
144098b21dcdSPeter MaydellEOF
144198b21dcdSPeter Maydell
144298b21dcdSPeter Maydell    compile_object
144398b21dcdSPeter Maydell
14449c83ffd8SPeter Maydell    cat > $TMPCXX <<EOF
144598b21dcdSPeter Maydellextern "C" {
144698b21dcdSPeter Maydell   int c_function(void);
144798b21dcdSPeter Maydell}
144898b21dcdSPeter Maydellint c_function(void) { return 42; }
144998b21dcdSPeter MaydellEOF
145098b21dcdSPeter Maydell
14519c83ffd8SPeter Maydell    update_cxxflags
14529c83ffd8SPeter Maydell
14539c83ffd8SPeter Maydell    if do_cxx $QEMU_CXXFLAGS -o $TMPE $TMPCXX $TMPO $LDFLAGS; then
145498b21dcdSPeter Maydell        # C++ compiler $cxx works ok with C compiler $cc
145598b21dcdSPeter Maydell        :
145698b21dcdSPeter Maydell    else
145798b21dcdSPeter Maydell        echo "C++ compiler $cxx does not work with C compiler $cc"
145898b21dcdSPeter Maydell        echo "Disabling C++ specific optional code"
145998b21dcdSPeter Maydell        cxx=
146098b21dcdSPeter Maydell    fi
146198b21dcdSPeter Maydellelse
146298b21dcdSPeter Maydell    echo "No C++ compiler available; disabling C++ specific optional code"
146398b21dcdSPeter Maydell    cxx=
146498b21dcdSPeter Maydellfi
146598b21dcdSPeter Maydell
14668d05095cSPaolo Bonzinigcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
14678d05095cSPaolo Bonzinigcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
14688d05095cSPaolo Bonzinigcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
1469435405acSPranith Kumargcc_flags="-Wendif-labels -Wno-shift-negative-value $gcc_flags"
1470c1556a81SPeter Maydellgcc_flags="-Wno-initializer-overrides $gcc_flags"
147171429097SPeter Maydellgcc_flags="-Wno-string-plus-int $gcc_flags"
14726ca026cbSPeter Maydell# Note that we do not add -Werror to gcc_flags here, because that would
14736ca026cbSPeter Maydell# enable it for all configure tests. If a configure test failed due
14746ca026cbSPeter Maydell# to -Werror this would just silently disable some features,
14756ca026cbSPeter Maydell# so it's too error prone.
147693b25869SJohn Snow
147793b25869SJohn Snowcc_has_warning_flag() {
147893b25869SJohn Snow    write_c_skeleton;
147993b25869SJohn Snow
1480a1d29d6cSPeter Maydell    # Use the positive sense of the flag when testing for -Wno-wombat
1481a1d29d6cSPeter Maydell    # support (gcc will happily accept the -Wno- form of unknown
1482a1d29d6cSPeter Maydell    # warning options).
148393b25869SJohn Snow    optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')"
148493b25869SJohn Snow    compile_prog "-Werror $optflag" ""
148593b25869SJohn Snow}
148693b25869SJohn Snow
148793b25869SJohn Snowfor flag in $gcc_flags; do
148893b25869SJohn Snow    if cc_has_warning_flag $flag ; then
14898d05095cSPaolo Bonzini        QEMU_CFLAGS="$QEMU_CFLAGS $flag"
14908d05095cSPaolo Bonzini    fi
14918d05095cSPaolo Bonzinidone
14928d05095cSPaolo Bonzini
149363678e17SSteven Noonanif test "$stack_protector" != "no"; then
1494fccd35a0SRodrigo Rebello  cat > $TMPC << EOF
1495fccd35a0SRodrigo Rebelloint main(int argc, char *argv[])
1496fccd35a0SRodrigo Rebello{
1497fccd35a0SRodrigo Rebello    char arr[64], *p = arr, *c = argv[0];
1498fccd35a0SRodrigo Rebello    while (*c) {
1499fccd35a0SRodrigo Rebello        *p++ = *c++;
1500fccd35a0SRodrigo Rebello    }
1501fccd35a0SRodrigo Rebello    return 0;
1502fccd35a0SRodrigo Rebello}
1503fccd35a0SRodrigo RebelloEOF
150463678e17SSteven Noonan  gcc_flags="-fstack-protector-strong -fstack-protector-all"
15053b463a3fSMiroslav Rezanina  sp_on=0
150663678e17SSteven Noonan  for flag in $gcc_flags; do
1507590e5dd9SPeter Maydell    # We need to check both a compile and a link, since some compiler
1508590e5dd9SPeter Maydell    # setups fail only on a .c->.o compile and some only at link time
1509590e5dd9SPeter Maydell    if do_cc $QEMU_CFLAGS -Werror $flag -c -o $TMPO $TMPC &&
1510590e5dd9SPeter Maydell       compile_prog "-Werror $flag" ""; then
151163678e17SSteven Noonan      QEMU_CFLAGS="$QEMU_CFLAGS $flag"
15123b463a3fSMiroslav Rezanina      sp_on=1
151363678e17SSteven Noonan      break
151463678e17SSteven Noonan    fi
151563678e17SSteven Noonan  done
15163b463a3fSMiroslav Rezanina  if test "$stack_protector" = yes; then
15173b463a3fSMiroslav Rezanina    if test $sp_on = 0; then
15183b463a3fSMiroslav Rezanina      error_exit "Stack protector not supported"
15193b463a3fSMiroslav Rezanina    fi
15203b463a3fSMiroslav Rezanina  fi
152137746c5eSMarc-André Lureaufi
152237746c5eSMarc-André Lureau
1523cbdd1999SPaolo Bonzini# Workaround for http://gcc.gnu.org/PR55489.  Happens with -fPIE/-fPIC and
1524cbdd1999SPaolo Bonzini# large functions that use global variables.  The bug is in all releases of
1525cbdd1999SPaolo Bonzini# GCC, but it became particularly acute in 4.6.x and 4.7.x.  It is fixed in
1526cbdd1999SPaolo Bonzini# 4.7.3 and 4.8.0.  We should be able to delete this at the end of 2013.
1527cbdd1999SPaolo Bonzinicat > $TMPC << EOF
1528cbdd1999SPaolo Bonzini#if __GNUC__ == 4 && (__GNUC_MINOR__ == 6 || (__GNUC_MINOR__ == 7 && __GNUC_PATCHLEVEL__ <= 2))
1529cbdd1999SPaolo Bonziniint main(void) { return 0; }
1530cbdd1999SPaolo Bonzini#else
1531cbdd1999SPaolo Bonzini#error No bug in this compiler.
1532cbdd1999SPaolo Bonzini#endif
1533cbdd1999SPaolo BonziniEOF
1534cbdd1999SPaolo Bonziniif compile_prog "-Werror -fno-gcse" "" ; then
1535cbdd1999SPaolo Bonzini  TRANSLATE_OPT_CFLAGS=-fno-gcse
1536cbdd1999SPaolo Bonzinifi
1537cbdd1999SPaolo Bonzini
153840d6444eSAvi Kivityif test "$static" = "yes" ; then
1539aa0d1f44SPaolo Bonzini  if test "$modules" = "yes" ; then
1540aa0d1f44SPaolo Bonzini    error_exit "static and modules are mutually incompatible"
1541aa0d1f44SPaolo Bonzini  fi
154240d6444eSAvi Kivity  if test "$pie" = "yes" ; then
154376ad07a4SPeter Maydell    error_exit "static and pie are mutually incompatible"
154440d6444eSAvi Kivity  else
154540d6444eSAvi Kivity    pie="no"
154640d6444eSAvi Kivity  fi
154740d6444eSAvi Kivityfi
154840d6444eSAvi Kivity
1549768b7855SEmilio G. Cota# Unconditional check for compiler __thread support
1550768b7855SEmilio G. Cota  cat > $TMPC << EOF
1551768b7855SEmilio G. Cotastatic __thread int tls_var;
1552768b7855SEmilio G. Cotaint main(void) { return tls_var; }
1553768b7855SEmilio G. CotaEOF
1554768b7855SEmilio G. Cota
1555768b7855SEmilio G. Cotaif ! compile_prog "-Werror" "" ; then
1556768b7855SEmilio G. Cota    error_exit "Your compiler does not support the __thread specifier for " \
1557768b7855SEmilio G. Cota	"Thread-Local Storage (TLS). Please upgrade to a version that does."
1558768b7855SEmilio G. Cotafi
1559768b7855SEmilio G. Cota
156040d6444eSAvi Kivityif test "$pie" = ""; then
156140d6444eSAvi Kivity  case "$cpu-$targetos" in
1562c72b26ecSRichard Henderson    i386-Linux|x86_64-Linux|x32-Linux|i386-OpenBSD|x86_64-OpenBSD)
156340d6444eSAvi Kivity      ;;
156440d6444eSAvi Kivity    *)
156540d6444eSAvi Kivity      pie="no"
156640d6444eSAvi Kivity      ;;
156740d6444eSAvi Kivity  esac
156840d6444eSAvi Kivityfi
156940d6444eSAvi Kivity
157040d6444eSAvi Kivityif test "$pie" != "no" ; then
157140d6444eSAvi Kivity  cat > $TMPC << EOF
157221d4a791SAvi Kivity
157321d4a791SAvi Kivity#ifdef __linux__
157421d4a791SAvi Kivity#  define THREAD __thread
157521d4a791SAvi Kivity#else
157621d4a791SAvi Kivity#  define THREAD
157721d4a791SAvi Kivity#endif
157821d4a791SAvi Kivity
157921d4a791SAvi Kivitystatic THREAD int tls_var;
158021d4a791SAvi Kivity
158121d4a791SAvi Kivityint main(void) { return tls_var; }
158221d4a791SAvi Kivity
158340d6444eSAvi KivityEOF
158440d6444eSAvi Kivity  if compile_prog "-fPIE -DPIE" "-pie"; then
158540d6444eSAvi Kivity    QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS"
158640d6444eSAvi Kivity    LDFLAGS="-pie $LDFLAGS"
158740d6444eSAvi Kivity    pie="yes"
158840d6444eSAvi Kivity    if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then
158940d6444eSAvi Kivity      LDFLAGS="-Wl,-z,relro -Wl,-z,now $LDFLAGS"
159040d6444eSAvi Kivity    fi
159140d6444eSAvi Kivity  else
159240d6444eSAvi Kivity    if test "$pie" = "yes"; then
159376ad07a4SPeter Maydell      error_exit "PIE not available due to missing toolchain support"
159440d6444eSAvi Kivity    else
159540d6444eSAvi Kivity      echo "Disabling PIE due to missing toolchain support"
159640d6444eSAvi Kivity      pie="no"
159740d6444eSAvi Kivity    fi
159840d6444eSAvi Kivity  fi
159946eef33bSBrad
1600e4a7b344SStefan Hajnoczi  if compile_prog "-Werror -fno-pie" "-nopie"; then
160146eef33bSBrad    CFLAGS_NOPIE="-fno-pie"
160246eef33bSBrad    LDFLAGS_NOPIE="-nopie"
160346eef33bSBrad  fi
160440d6444eSAvi Kivityfi
160540d6444eSAvi Kivity
160609dada40SPaolo Bonzini##########################################
160709dada40SPaolo Bonzini# __sync_fetch_and_and requires at least -march=i486. Many toolchains
160809dada40SPaolo Bonzini# use i686 as default anyway, but for those that don't, an explicit
160909dada40SPaolo Bonzini# specification is necessary
161009dada40SPaolo Bonzini
161109dada40SPaolo Bonziniif test "$cpu" = "i386"; then
161209dada40SPaolo Bonzini  cat > $TMPC << EOF
161309dada40SPaolo Bonzinistatic int sfaa(int *ptr)
161409dada40SPaolo Bonzini{
161509dada40SPaolo Bonzini  return __sync_fetch_and_and(ptr, 0);
161609dada40SPaolo Bonzini}
161709dada40SPaolo Bonzini
161809dada40SPaolo Bonziniint main(void)
161909dada40SPaolo Bonzini{
162009dada40SPaolo Bonzini  int val = 42;
16211405b629SStefan Weil  val = __sync_val_compare_and_swap(&val, 0, 1);
162209dada40SPaolo Bonzini  sfaa(&val);
162309dada40SPaolo Bonzini  return val;
162409dada40SPaolo Bonzini}
162509dada40SPaolo BonziniEOF
162609dada40SPaolo Bonzini  if ! compile_prog "" "" ; then
162709dada40SPaolo Bonzini    QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS"
162809dada40SPaolo Bonzini  fi
162909dada40SPaolo Bonzinifi
163009dada40SPaolo Bonzini
163109dada40SPaolo Bonzini#########################################
1632ec530c81Sbellard# Solaris specific configure tool chain decisions
163309dada40SPaolo Bonzini
1634ec530c81Sbellardif test "$solaris" = "yes" ; then
16356792aa11SLoïc Minier  if has $install; then
16366792aa11SLoïc Minier    :
16376792aa11SLoïc Minier  else
163876ad07a4SPeter Maydell    error_exit "Solaris install program not found. Use --install=/usr/ucb/install or" \
163976ad07a4SPeter Maydell        "install fileutils from www.blastwave.org using pkg-get -i fileutils" \
164076ad07a4SPeter Maydell        "to get ginstall which is used by default (which lives in /opt/csw/bin)"
1641ec530c81Sbellard  fi
164289138857SStefan Weil  if test "$(path_of $install)" = "/usr/sbin/install" ; then
164376ad07a4SPeter Maydell    error_exit "Solaris /usr/sbin/install is not an appropriate install program." \
164476ad07a4SPeter Maydell        "try ginstall from the GNU fileutils available from www.blastwave.org" \
164576ad07a4SPeter Maydell        "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
1646ec530c81Sbellard  fi
16476792aa11SLoïc Minier  if has ar; then
16486792aa11SLoïc Minier    :
16496792aa11SLoïc Minier  else
1650ec530c81Sbellard    if test -f /usr/ccs/bin/ar ; then
165176ad07a4SPeter Maydell      error_exit "No path includes ar" \
165276ad07a4SPeter Maydell          "Add /usr/ccs/bin to your path and rerun configure"
1653ec530c81Sbellard    fi
165476ad07a4SPeter Maydell    error_exit "No path includes ar"
1655ec530c81Sbellard  fi
1656ec530c81Sbellardfi
1657ec530c81Sbellard
1658afb63ebdSStefan Weilif test -z "${target_list+xxx}" ; then
1659121afa9eSAnthony Liguori    target_list="$default_target_list"
1660121afa9eSAnthony Liguorielse
166189138857SStefan Weil    target_list=$(echo "$target_list" | sed -e 's/,/ /g')
16625327cf48Sbellardfi
166325b48338SPeter Maydell
166425b48338SPeter Maydell# Check that we recognised the target name; this allows a more
166525b48338SPeter Maydell# friendly error message than if we let it fall through.
166625b48338SPeter Maydellfor target in $target_list; do
166725b48338SPeter Maydell    case " $default_target_list " in
166825b48338SPeter Maydell        *" $target "*)
166925b48338SPeter Maydell            ;;
167025b48338SPeter Maydell        *)
167125b48338SPeter Maydell            error_exit "Unknown target name '$target'"
167225b48338SPeter Maydell            ;;
167325b48338SPeter Maydell    esac
167425b48338SPeter Maydelldone
167525b48338SPeter Maydell
1676f55fe278SPaolo Bonzini# see if system emulation was really requested
1677f55fe278SPaolo Bonzinicase " $target_list " in
1678f55fe278SPaolo Bonzini  *"-softmmu "*) softmmu=yes
1679f55fe278SPaolo Bonzini  ;;
1680f55fe278SPaolo Bonzini  *) softmmu=no
1681f55fe278SPaolo Bonzini  ;;
1682f55fe278SPaolo Bonziniesac
16835327cf48Sbellard
1684249247c9SJuan Quintelafeature_not_found() {
1685249247c9SJuan Quintela  feature=$1
168621684af0SStewart Smith  remedy=$2
1687249247c9SJuan Quintela
168876ad07a4SPeter Maydell  error_exit "User requested feature $feature" \
168921684af0SStewart Smith      "configure was not able to find it." \
169021684af0SStewart Smith      "$remedy"
1691249247c9SJuan Quintela}
1692249247c9SJuan Quintela
16937d13299dSbellard# ---
16947d13299dSbellard# big/little endian test
16957d13299dSbellardcat > $TMPC << EOF
169661cc919fSMike Frysingershort big_endian[] = { 0x4269, 0x4765, 0x4e64, 0x4961, 0x4e00, 0, };
169761cc919fSMike Frysingershort little_endian[] = { 0x694c, 0x7454, 0x654c, 0x6e45, 0x6944, 0x6e41, 0, };
169861cc919fSMike Frysingerextern int foo(short *, short *);
169961cc919fSMike Frysingerint main(int argc, char *argv[]) {
170061cc919fSMike Frysinger    return foo(big_endian, little_endian);
17017d13299dSbellard}
17027d13299dSbellardEOF
17037d13299dSbellard
170461cc919fSMike Frysingerif compile_object ; then
170561cc919fSMike Frysinger    if grep -q BiGeNdIaN $TMPO ; then
170661cc919fSMike Frysinger        bigendian="yes"
170761cc919fSMike Frysinger    elif grep -q LiTtLeEnDiAn $TMPO ; then
170861cc919fSMike Frysinger        bigendian="no"
17097d13299dSbellard    else
17107d13299dSbellard        echo big/little test failed
17117d13299dSbellard    fi
17127d13299dSbellardelse
171361cc919fSMike Frysinger    echo big/little test failed
17147d13299dSbellardfi
17157d13299dSbellard
1716b0a47e79SJuan Quintela##########################################
1717a30878e7SPeter Maydell# cocoa implies not SDL or GTK
1718a30878e7SPeter Maydell# (the cocoa UI code currently assumes it is always the active UI
1719a30878e7SPeter Maydell# and doesn't interact well with other UI frontend code)
1720a30878e7SPeter Maydellif test "$cocoa" = "yes"; then
1721a30878e7SPeter Maydell    if test "$sdl" = "yes"; then
1722a30878e7SPeter Maydell        error_exit "Cocoa and SDL UIs cannot both be enabled at once"
1723a30878e7SPeter Maydell    fi
1724a30878e7SPeter Maydell    if test "$gtk" = "yes"; then
1725a30878e7SPeter Maydell        error_exit "Cocoa and GTK UIs cannot both be enabled at once"
1726a30878e7SPeter Maydell    fi
1727a30878e7SPeter Maydell    gtk=no
1728a30878e7SPeter Maydell    sdl=no
1729a30878e7SPeter Maydellfi
1730a30878e7SPeter Maydell
17316b39b063SEric Blake# Some versions of Mac OS X incorrectly define SIZE_MAX
17326b39b063SEric Blakecat > $TMPC << EOF
17336b39b063SEric Blake#include <stdint.h>
17346b39b063SEric Blake#include <stdio.h>
17356b39b063SEric Blakeint main(int argc, char *argv[]) {
17366b39b063SEric Blake    return printf("%zu", SIZE_MAX);
17376b39b063SEric Blake}
17386b39b063SEric BlakeEOF
17396b39b063SEric Blakehave_broken_size_max=no
17406b39b063SEric Blakeif ! compile_object -Werror ; then
17416b39b063SEric Blake    have_broken_size_max=yes
17426b39b063SEric Blakefi
17436b39b063SEric Blake
1744a30878e7SPeter Maydell##########################################
1745015a33bdSGonglei# L2TPV3 probe
1746015a33bdSGonglei
1747015a33bdSGongleicat > $TMPC <<EOF
1748015a33bdSGonglei#include <sys/socket.h>
1749bff6cb72SMichael Tokarev#include <linux/ip.h>
1750015a33bdSGongleiint main(void) { return sizeof(struct mmsghdr); }
1751015a33bdSGongleiEOF
1752015a33bdSGongleiif compile_prog "" "" ; then
1753015a33bdSGonglei  l2tpv3=yes
1754015a33bdSGongleielse
1755015a33bdSGonglei  l2tpv3=no
1756015a33bdSGongleifi
1757015a33bdSGonglei
1758015a33bdSGonglei##########################################
17594d9310f4SDaniel P. Berrange# MinGW / Mingw-w64 localtime_r/gmtime_r check
17604d9310f4SDaniel P. Berrange
17614d9310f4SDaniel P. Berrangeif test "$mingw32" = "yes"; then
17624d9310f4SDaniel P. Berrange    # Some versions of MinGW / Mingw-w64 lack localtime_r
17634d9310f4SDaniel P. Berrange    # and gmtime_r entirely.
17644d9310f4SDaniel P. Berrange    #
17654d9310f4SDaniel P. Berrange    # Some versions of Mingw-w64 define a macro for
17664d9310f4SDaniel P. Berrange    # localtime_r/gmtime_r.
17674d9310f4SDaniel P. Berrange    #
17684d9310f4SDaniel P. Berrange    # Some versions of Mingw-w64 will define functions
17694d9310f4SDaniel P. Berrange    # for localtime_r/gmtime_r, but only if you have
17704d9310f4SDaniel P. Berrange    # _POSIX_THREAD_SAFE_FUNCTIONS defined. For fun
17714d9310f4SDaniel P. Berrange    # though, unistd.h and pthread.h both define
17724d9310f4SDaniel P. Berrange    # that for you.
17734d9310f4SDaniel P. Berrange    #
17744d9310f4SDaniel P. Berrange    # So this #undef localtime_r and #include <unistd.h>
17754d9310f4SDaniel P. Berrange    # are not in fact redundant.
17764d9310f4SDaniel P. Berrangecat > $TMPC << EOF
17774d9310f4SDaniel P. Berrange#include <unistd.h>
17784d9310f4SDaniel P. Berrange#include <time.h>
17794d9310f4SDaniel P. Berrange#undef localtime_r
17804d9310f4SDaniel P. Berrangeint main(void) { localtime_r(NULL, NULL); return 0; }
17814d9310f4SDaniel P. BerrangeEOF
17824d9310f4SDaniel P. Berrange    if compile_prog "" "" ; then
17834d9310f4SDaniel P. Berrange        localtime_r="yes"
17844d9310f4SDaniel P. Berrange    else
17854d9310f4SDaniel P. Berrange        localtime_r="no"
17864d9310f4SDaniel P. Berrange    fi
17874d9310f4SDaniel P. Berrangefi
17884d9310f4SDaniel P. Berrange
17894d9310f4SDaniel P. Berrange##########################################
1790779ab5e3SStefan Weil# pkg-config probe
1791779ab5e3SStefan Weil
1792779ab5e3SStefan Weilif ! has "$pkg_config_exe"; then
179376ad07a4SPeter Maydell  error_exit "pkg-config binary '$pkg_config_exe' not found"
1794779ab5e3SStefan Weilfi
1795779ab5e3SStefan Weil
1796779ab5e3SStefan Weil##########################################
1797b0a47e79SJuan Quintela# NPTL probe
1798b0a47e79SJuan Quintela
179924cb36a6SPeter Maydellif test "$linux_user" = "yes"; then
1800bd0c5661Spbrook  cat > $TMPC <<EOF
1801bd0c5661Spbrook#include <sched.h>
180230813ceaSpbrook#include <linux/futex.h>
1803182eacc0SStefan Weilint main(void) {
1804bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
1805bd0c5661Spbrook#error bork
1806bd0c5661Spbrook#endif
1807182eacc0SStefan Weil  return 0;
1808bd0c5661Spbrook}
1809bd0c5661SpbrookEOF
181024cb36a6SPeter Maydell  if ! compile_object ; then
181121684af0SStewart Smith    feature_not_found "nptl" "Install glibc and linux kernel headers."
1812b0a47e79SJuan Quintela  fi
1813bd0c5661Spbrookfi
1814bd0c5661Spbrook
181511d9f695Sbellard##########################################
181699f2dbd3SLiang Li# avx2 optimization requirement check
181799f2dbd3SLiang Li
181899f2dbd3SLiang Licat > $TMPC << EOF
18194fb8320aSDr. David Alan Gilbert#pragma GCC push_options
18204fb8320aSDr. David Alan Gilbert#pragma GCC target("avx2")
18214fb8320aSDr. David Alan Gilbert#include <cpuid.h>
18224fb8320aSDr. David Alan Gilbert#include <immintrin.h>
18234fb8320aSDr. David Alan Gilbertstatic int bar(void *a) {
18245e33a872SRichard Henderson    __m256i x = *(__m256i *)a;
18255e33a872SRichard Henderson    return _mm256_testz_si256(x, x);
18264fb8320aSDr. David Alan Gilbert}
18275e33a872SRichard Hendersonint main(int argc, char *argv[]) { return bar(argv[0]); }
182899f2dbd3SLiang LiEOF
18294fb8320aSDr. David Alan Gilbertif compile_object "" ; then
183099f2dbd3SLiang Li  avx2_opt="yes"
183199f2dbd3SLiang Lifi
183299f2dbd3SLiang Li
183399f2dbd3SLiang Li#########################################
1834ac62922eSbalrog# zlib check
1835ac62922eSbalrog
18361ece9905SAlon Levyif test "$zlib" != "no" ; then
1837ac62922eSbalrog    cat > $TMPC << EOF
1838ac62922eSbalrog#include <zlib.h>
1839ac62922eSbalrogint main(void) { zlibVersion(); return 0; }
1840ac62922eSbalrogEOF
184152166aa0SJuan Quintela    if compile_prog "" "-lz" ; then
1842ac62922eSbalrog        :
1843ac62922eSbalrog    else
184476ad07a4SPeter Maydell        error_exit "zlib check failed" \
184576ad07a4SPeter Maydell            "Make sure to have the zlib libs and headers installed."
1846ac62922eSbalrog    fi
18471ece9905SAlon Levyfi
1848eb0ecd5aSWill NewtonLIBS="$LIBS -lz"
1849ac62922eSbalrog
1850ac62922eSbalrog##########################################
1851607dacd0Sqiaonuohan# lzo check
1852607dacd0Sqiaonuohan
1853607dacd0Sqiaonuohanif test "$lzo" != "no" ; then
1854607dacd0Sqiaonuohan    cat > $TMPC << EOF
1855607dacd0Sqiaonuohan#include <lzo/lzo1x.h>
1856607dacd0Sqiaonuohanint main(void) { lzo_version(); return 0; }
1857607dacd0SqiaonuohanEOF
1858607dacd0Sqiaonuohan    if compile_prog "" "-llzo2" ; then
1859607dacd0Sqiaonuohan        libs_softmmu="$libs_softmmu -llzo2"
1860b25c9dffSStefan Weil        lzo="yes"
1861b25c9dffSStefan Weil    else
1862b25c9dffSStefan Weil        if test "$lzo" = "yes"; then
1863b25c9dffSStefan Weil            feature_not_found "liblzo2" "Install liblzo2 devel"
1864b25c9dffSStefan Weil        fi
1865b25c9dffSStefan Weil        lzo="no"
1866b25c9dffSStefan Weil    fi
1867607dacd0Sqiaonuohanfi
1868607dacd0Sqiaonuohan
1869607dacd0Sqiaonuohan##########################################
1870607dacd0Sqiaonuohan# snappy check
1871607dacd0Sqiaonuohan
1872607dacd0Sqiaonuohanif test "$snappy" != "no" ; then
1873607dacd0Sqiaonuohan    cat > $TMPC << EOF
1874607dacd0Sqiaonuohan#include <snappy-c.h>
1875607dacd0Sqiaonuohanint main(void) { snappy_max_compressed_length(4096); return 0; }
1876607dacd0SqiaonuohanEOF
1877607dacd0Sqiaonuohan    if compile_prog "" "-lsnappy" ; then
1878607dacd0Sqiaonuohan        libs_softmmu="$libs_softmmu -lsnappy"
1879b25c9dffSStefan Weil        snappy="yes"
1880b25c9dffSStefan Weil    else
1881b25c9dffSStefan Weil        if test "$snappy" = "yes"; then
1882b25c9dffSStefan Weil            feature_not_found "libsnappy" "Install libsnappy devel"
1883b25c9dffSStefan Weil        fi
1884b25c9dffSStefan Weil        snappy="no"
1885b25c9dffSStefan Weil    fi
1886607dacd0Sqiaonuohanfi
1887607dacd0Sqiaonuohan
1888607dacd0Sqiaonuohan##########################################
18896b383c08SPeter Wu# bzip2 check
18906b383c08SPeter Wu
18916b383c08SPeter Wuif test "$bzip2" != "no" ; then
18926b383c08SPeter Wu    cat > $TMPC << EOF
18936b383c08SPeter Wu#include <bzlib.h>
18946b383c08SPeter Wuint main(void) { BZ2_bzlibVersion(); return 0; }
18956b383c08SPeter WuEOF
18966b383c08SPeter Wu    if compile_prog "" "-lbz2" ; then
18976b383c08SPeter Wu        bzip2="yes"
18986b383c08SPeter Wu    else
18996b383c08SPeter Wu        if test "$bzip2" = "yes"; then
19006b383c08SPeter Wu            feature_not_found "libbzip2" "Install libbzip2 devel"
19016b383c08SPeter Wu        fi
19026b383c08SPeter Wu        bzip2="no"
19036b383c08SPeter Wu    fi
19046b383c08SPeter Wufi
19056b383c08SPeter Wu
19066b383c08SPeter Wu##########################################
1907f794573eSEduardo Otubo# libseccomp check
1908f794573eSEduardo Otubo
1909f794573eSEduardo Otuboif test "$seccomp" != "no" ; then
1910693e5910SAndrew Jones    case "$cpu" in
1911693e5910SAndrew Jones    i386|x86_64)
1912ba060c53Sdann frazier        libseccomp_minver="2.1.0"
1913693e5910SAndrew Jones        ;;
19145ce43972SJames Hogan    mips)
19155ce43972SJames Hogan        libseccomp_minver="2.2.0"
19165ce43972SJames Hogan        ;;
1917693e5910SAndrew Jones    arm|aarch64)
1918693e5910SAndrew Jones        libseccomp_minver="2.2.3"
1919693e5910SAndrew Jones        ;;
19203e684455SMichael Strosaker    ppc|ppc64)
19213e684455SMichael Strosaker        libseccomp_minver="2.3.0"
19223e684455SMichael Strosaker        ;;
1923693e5910SAndrew Jones    *)
1924693e5910SAndrew Jones        libseccomp_minver=""
1925693e5910SAndrew Jones        ;;
1926693e5910SAndrew Jones    esac
1927693e5910SAndrew Jones
1928693e5910SAndrew Jones    if test "$libseccomp_minver" != "" &&
1929693e5910SAndrew Jones       $pkg_config --atleast-version=$libseccomp_minver libseccomp ; then
193089138857SStefan Weil        libs_softmmu="$libs_softmmu $($pkg_config --libs libseccomp)"
193189138857SStefan Weil        QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags libseccomp)"
1932f794573eSEduardo Otubo        seccomp="yes"
1933f794573eSEduardo Otubo    else
1934f794573eSEduardo Otubo        if test "$seccomp" = "yes" ; then
1935693e5910SAndrew Jones            if test "$libseccomp_minver" != "" ; then
1936693e5910SAndrew Jones                feature_not_found "libseccomp" \
1937693e5910SAndrew Jones                    "Install libseccomp devel >= $libseccomp_minver"
1938693e5910SAndrew Jones            else
1939693e5910SAndrew Jones                feature_not_found "libseccomp" \
1940693e5910SAndrew Jones                    "libseccomp is not supported for host cpu $cpu"
1941693e5910SAndrew Jones            fi
1942896848f0SEduardo Otubo        fi
1943e84d5956SYann E. MORIN        seccomp="no"
1944f794573eSEduardo Otubo    fi
1945f794573eSEduardo Otubofi
1946f794573eSEduardo Otubo##########################################
1947e37630caSaliguori# xen probe
1948e37630caSaliguori
1949fc321b4bSJuan Quintelaif test "$xen" != "no" ; then
1950b2266beeSJuan Quintela  xen_libs="-lxenstore -lxenctrl -lxenguest"
19515eeb39c2SIan Campbell  xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn"
1952d5b93ddfSAnthony PERARD
195350ced5b3SStefan Weil  # First we test whether Xen headers and libraries are available.
195450ced5b3SStefan Weil  # If no, we are done and there is no Xen support.
195550ced5b3SStefan Weil  # If yes, more tests are run to detect the Xen version.
195650ced5b3SStefan Weil
195750ced5b3SStefan Weil  # Xen (any)
195850ced5b3SStefan Weil  cat > $TMPC <<EOF
195950ced5b3SStefan Weil#include <xenctrl.h>
196050ced5b3SStefan Weilint main(void) {
196150ced5b3SStefan Weil  return 0;
196250ced5b3SStefan Weil}
196350ced5b3SStefan WeilEOF
196450ced5b3SStefan Weil  if ! compile_prog "" "$xen_libs" ; then
196550ced5b3SStefan Weil    # Xen not found
196650ced5b3SStefan Weil    if test "$xen" = "yes" ; then
196721684af0SStewart Smith      feature_not_found "xen" "Install xen devel"
196850ced5b3SStefan Weil    fi
196950ced5b3SStefan Weil    xen=no
197050ced5b3SStefan Weil
1971d5b93ddfSAnthony PERARD  # Xen unstable
197269deef08SPeter Maydell  elif
197369deef08SPeter Maydell      cat > $TMPC <<EOF &&
19745eeb39c2SIan Campbell/*
19755eeb39c2SIan Campbell * If we have stable libs the we don't want the libxc compat
19765eeb39c2SIan Campbell * layers, regardless of what CFLAGS we may have been given.
1977b6eb9b45SPaulina Szubarczyk *
1978b6eb9b45SPaulina Szubarczyk * Also, check if xengnttab_grant_copy_segment_t is defined and
1979b6eb9b45SPaulina Szubarczyk * grant copy operation is implemented.
1980b6eb9b45SPaulina Szubarczyk */
1981b6eb9b45SPaulina Szubarczyk#undef XC_WANT_COMPAT_EVTCHN_API
1982b6eb9b45SPaulina Szubarczyk#undef XC_WANT_COMPAT_GNTTAB_API
1983b6eb9b45SPaulina Szubarczyk#undef XC_WANT_COMPAT_MAP_FOREIGN_API
1984b6eb9b45SPaulina Szubarczyk#include <xenctrl.h>
1985b6eb9b45SPaulina Szubarczyk#include <xenstore.h>
1986b6eb9b45SPaulina Szubarczyk#include <xenevtchn.h>
1987b6eb9b45SPaulina Szubarczyk#include <xengnttab.h>
1988b6eb9b45SPaulina Szubarczyk#include <xenforeignmemory.h>
1989b6eb9b45SPaulina Szubarczyk#include <stdint.h>
1990b6eb9b45SPaulina Szubarczyk#include <xen/hvm/hvm_info_table.h>
1991b6eb9b45SPaulina Szubarczyk#if !defined(HVM_MAX_VCPUS)
1992b6eb9b45SPaulina Szubarczyk# error HVM_MAX_VCPUS not defined
1993b6eb9b45SPaulina Szubarczyk#endif
1994b6eb9b45SPaulina Szubarczykint main(void) {
1995b6eb9b45SPaulina Szubarczyk  xc_interface *xc = NULL;
1996b6eb9b45SPaulina Szubarczyk  xenforeignmemory_handle *xfmem;
1997b6eb9b45SPaulina Szubarczyk  xenevtchn_handle *xe;
1998b6eb9b45SPaulina Szubarczyk  xengnttab_handle *xg;
1999b6eb9b45SPaulina Szubarczyk  xen_domain_handle_t handle;
2000b6eb9b45SPaulina Szubarczyk  xengnttab_grant_copy_segment_t* seg = NULL;
2001b6eb9b45SPaulina Szubarczyk
2002b6eb9b45SPaulina Szubarczyk  xs_daemon_open();
2003b6eb9b45SPaulina Szubarczyk
2004b6eb9b45SPaulina Szubarczyk  xc = xc_interface_open(0, 0, 0);
2005b6eb9b45SPaulina Szubarczyk  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2006b6eb9b45SPaulina Szubarczyk  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2007b6eb9b45SPaulina Szubarczyk  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2008b6eb9b45SPaulina Szubarczyk  xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
2009b6eb9b45SPaulina Szubarczyk  xc_domain_create(xc, 0, handle, 0, NULL, NULL);
2010b6eb9b45SPaulina Szubarczyk
2011b6eb9b45SPaulina Szubarczyk  xfmem = xenforeignmemory_open(0, 0);
2012b6eb9b45SPaulina Szubarczyk  xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0);
2013b6eb9b45SPaulina Szubarczyk
2014b6eb9b45SPaulina Szubarczyk  xe = xenevtchn_open(0, 0);
2015b6eb9b45SPaulina Szubarczyk  xenevtchn_fd(xe);
2016b6eb9b45SPaulina Szubarczyk
2017b6eb9b45SPaulina Szubarczyk  xg = xengnttab_open(0, 0);
2018b6eb9b45SPaulina Szubarczyk  xengnttab_grant_copy(xg, 0, seg);
2019b6eb9b45SPaulina Szubarczyk
2020b6eb9b45SPaulina Szubarczyk  return 0;
2021b6eb9b45SPaulina Szubarczyk}
2022b6eb9b45SPaulina SzubarczykEOF
2023b6eb9b45SPaulina Szubarczyk      compile_prog "" "$xen_libs $xen_stable_libs"
2024b6eb9b45SPaulina Szubarczyk    then
2025b6eb9b45SPaulina Szubarczyk    xen_ctrl_version=480
2026b6eb9b45SPaulina Szubarczyk    xen=yes
2027b6eb9b45SPaulina Szubarczyk  elif
2028b6eb9b45SPaulina Szubarczyk      cat > $TMPC <<EOF &&
2029b6eb9b45SPaulina Szubarczyk/*
2030b6eb9b45SPaulina Szubarczyk * If we have stable libs the we don't want the libxc compat
2031b6eb9b45SPaulina Szubarczyk * layers, regardless of what CFLAGS we may have been given.
20325eeb39c2SIan Campbell */
20335eeb39c2SIan Campbell#undef XC_WANT_COMPAT_EVTCHN_API
20345eeb39c2SIan Campbell#undef XC_WANT_COMPAT_GNTTAB_API
20355eeb39c2SIan Campbell#undef XC_WANT_COMPAT_MAP_FOREIGN_API
20365eeb39c2SIan Campbell#include <xenctrl.h>
20375eeb39c2SIan Campbell#include <xenstore.h>
20385eeb39c2SIan Campbell#include <xenevtchn.h>
20395eeb39c2SIan Campbell#include <xengnttab.h>
20405eeb39c2SIan Campbell#include <xenforeignmemory.h>
20415eeb39c2SIan Campbell#include <stdint.h>
20425eeb39c2SIan Campbell#include <xen/hvm/hvm_info_table.h>
20435eeb39c2SIan Campbell#if !defined(HVM_MAX_VCPUS)
20445eeb39c2SIan Campbell# error HVM_MAX_VCPUS not defined
20455eeb39c2SIan Campbell#endif
20465eeb39c2SIan Campbellint main(void) {
20475eeb39c2SIan Campbell  xc_interface *xc = NULL;
20485eeb39c2SIan Campbell  xenforeignmemory_handle *xfmem;
20495eeb39c2SIan Campbell  xenevtchn_handle *xe;
20505eeb39c2SIan Campbell  xengnttab_handle *xg;
20515eeb39c2SIan Campbell  xen_domain_handle_t handle;
20525eeb39c2SIan Campbell
20535eeb39c2SIan Campbell  xs_daemon_open();
20545eeb39c2SIan Campbell
20555eeb39c2SIan Campbell  xc = xc_interface_open(0, 0, 0);
20565eeb39c2SIan Campbell  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
20575eeb39c2SIan Campbell  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
20585eeb39c2SIan Campbell  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
20595eeb39c2SIan Campbell  xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
20605eeb39c2SIan Campbell  xc_domain_create(xc, 0, handle, 0, NULL, NULL);
20615eeb39c2SIan Campbell
20625eeb39c2SIan Campbell  xfmem = xenforeignmemory_open(0, 0);
20635eeb39c2SIan Campbell  xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0);
20645eeb39c2SIan Campbell
20655eeb39c2SIan Campbell  xe = xenevtchn_open(0, 0);
20665eeb39c2SIan Campbell  xenevtchn_fd(xe);
20675eeb39c2SIan Campbell
20685eeb39c2SIan Campbell  xg = xengnttab_open(0, 0);
20695eeb39c2SIan Campbell  xengnttab_map_grant_ref(xg, 0, 0, 0);
20705eeb39c2SIan Campbell
20715eeb39c2SIan Campbell  return 0;
20725eeb39c2SIan Campbell}
20735eeb39c2SIan CampbellEOF
20745eeb39c2SIan Campbell      compile_prog "" "$xen_libs $xen_stable_libs"
20755eeb39c2SIan Campbell    then
20765eeb39c2SIan Campbell    xen_ctrl_version=471
20775eeb39c2SIan Campbell    xen=yes
20785eeb39c2SIan Campbell  elif
20795eeb39c2SIan Campbell      cat > $TMPC <<EOF &&
2080e37630caSaliguori#include <xenctrl.h>
2081cdadde39SRoger Pau Monne#include <stdint.h>
2082cdadde39SRoger Pau Monneint main(void) {
2083cdadde39SRoger Pau Monne  xc_interface *xc = NULL;
2084cdadde39SRoger Pau Monne  xen_domain_handle_t handle;
2085cdadde39SRoger Pau Monne  xc_domain_create(xc, 0, handle, 0, NULL, NULL);
2086cdadde39SRoger Pau Monne  return 0;
2087cdadde39SRoger Pau Monne}
2088cdadde39SRoger Pau MonneEOF
2089cdadde39SRoger Pau Monne      compile_prog "" "$xen_libs"
2090cdadde39SRoger Pau Monne    then
2091cdadde39SRoger Pau Monne    xen_ctrl_version=470
2092cdadde39SRoger Pau Monne    xen=yes
2093cdadde39SRoger Pau Monne
2094cdadde39SRoger Pau Monne  # Xen 4.6
2095cdadde39SRoger Pau Monne  elif
2096cdadde39SRoger Pau Monne      cat > $TMPC <<EOF &&
2097cdadde39SRoger Pau Monne#include <xenctrl.h>
2098e108a3c1SAnthony PERARD#include <xenstore.h>
2099d5b93ddfSAnthony PERARD#include <stdint.h>
2100d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h>
2101d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS)
2102d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined
2103d5b93ddfSAnthony PERARD#endif
2104d5b93ddfSAnthony PERARDint main(void) {
2105d5b93ddfSAnthony PERARD  xc_interface *xc;
2106d5b93ddfSAnthony PERARD  xs_daemon_open();
2107d5b93ddfSAnthony PERARD  xc = xc_interface_open(0, 0, 0);
2108d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2109d5b93ddfSAnthony PERARD  xc_gnttab_open(NULL, 0);
2110b87de24eSAnthony PERARD  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
21118688e065SStefano Stabellini  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
2112d8b441a3SJan Beulich  xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL);
211320a544c7SKonrad Rzeszutek Wilk  xc_reserved_device_memory_map(xc, 0, 0, 0, 0, NULL, 0);
2114d8b441a3SJan Beulich  return 0;
2115d8b441a3SJan Beulich}
2116d8b441a3SJan BeulichEOF
2117d8b441a3SJan Beulich      compile_prog "" "$xen_libs"
2118d8b441a3SJan Beulich    then
2119d8b441a3SJan Beulich    xen_ctrl_version=460
2120d8b441a3SJan Beulich    xen=yes
2121d8b441a3SJan Beulich
2122d8b441a3SJan Beulich  # Xen 4.5
2123d8b441a3SJan Beulich  elif
2124d8b441a3SJan Beulich      cat > $TMPC <<EOF &&
2125d8b441a3SJan Beulich#include <xenctrl.h>
2126d8b441a3SJan Beulich#include <xenstore.h>
2127d8b441a3SJan Beulich#include <stdint.h>
2128d8b441a3SJan Beulich#include <xen/hvm/hvm_info_table.h>
2129d8b441a3SJan Beulich#if !defined(HVM_MAX_VCPUS)
2130d8b441a3SJan Beulich# error HVM_MAX_VCPUS not defined
2131d8b441a3SJan Beulich#endif
2132d8b441a3SJan Beulichint main(void) {
2133d8b441a3SJan Beulich  xc_interface *xc;
2134d8b441a3SJan Beulich  xs_daemon_open();
2135d8b441a3SJan Beulich  xc = xc_interface_open(0, 0, 0);
2136d8b441a3SJan Beulich  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
2137d8b441a3SJan Beulich  xc_gnttab_open(NULL, 0);
2138d8b441a3SJan Beulich  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
2139d8b441a3SJan Beulich  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
21403996e85cSPaul Durrant  xc_hvm_create_ioreq_server(xc, 0, 0, NULL);
21413996e85cSPaul Durrant  return 0;
21423996e85cSPaul Durrant}
21433996e85cSPaul DurrantEOF
21443996e85cSPaul Durrant      compile_prog "" "$xen_libs"
21453996e85cSPaul Durrant    then
21463996e85cSPaul Durrant    xen_ctrl_version=450
21473996e85cSPaul Durrant    xen=yes
21483996e85cSPaul Durrant
21493996e85cSPaul Durrant  elif
21503996e85cSPaul Durrant      cat > $TMPC <<EOF &&
21513996e85cSPaul Durrant#include <xenctrl.h>
21523996e85cSPaul Durrant#include <xenstore.h>
21533996e85cSPaul Durrant#include <stdint.h>
21543996e85cSPaul Durrant#include <xen/hvm/hvm_info_table.h>
21553996e85cSPaul Durrant#if !defined(HVM_MAX_VCPUS)
21563996e85cSPaul Durrant# error HVM_MAX_VCPUS not defined
21573996e85cSPaul Durrant#endif
21583996e85cSPaul Durrantint main(void) {
21593996e85cSPaul Durrant  xc_interface *xc;
21603996e85cSPaul Durrant  xs_daemon_open();
21613996e85cSPaul Durrant  xc = xc_interface_open(0, 0, 0);
21623996e85cSPaul Durrant  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
21633996e85cSPaul Durrant  xc_gnttab_open(NULL, 0);
21643996e85cSPaul Durrant  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
21653996e85cSPaul Durrant  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
21668688e065SStefano Stabellini  return 0;
21678688e065SStefano Stabellini}
21688688e065SStefano StabelliniEOF
21698688e065SStefano Stabellini      compile_prog "" "$xen_libs"
217069deef08SPeter Maydell    then
21718688e065SStefano Stabellini    xen_ctrl_version=420
21728688e065SStefano Stabellini    xen=yes
21738688e065SStefano Stabellini
2174e37630caSaliguori  else
2175fc321b4bSJuan Quintela    if test "$xen" = "yes" ; then
2176edfb07edSIan Campbell      feature_not_found "xen (unsupported version)" \
2177edfb07edSIan Campbell                        "Install a supported xen (xen 4.2 or newer)"
2178fc321b4bSJuan Quintela    fi
2179fc321b4bSJuan Quintela    xen=no
2180e37630caSaliguori  fi
2181d5b93ddfSAnthony PERARD
2182d5b93ddfSAnthony PERARD  if test "$xen" = yes; then
21835eeb39c2SIan Campbell    if test $xen_ctrl_version -ge 471  ; then
21845eeb39c2SIan Campbell      libs_softmmu="$xen_stable_libs $libs_softmmu"
21855eeb39c2SIan Campbell    fi
2186d5b93ddfSAnthony PERARD    libs_softmmu="$xen_libs $libs_softmmu"
2187d5b93ddfSAnthony PERARD  fi
2188e37630caSaliguorifi
2189e37630caSaliguori
2190eb6fda0fSAnthony PERARDif test "$xen_pci_passthrough" != "no"; then
2191edfb07edSIan Campbell  if test "$xen" = "yes" && test "$linux" = "yes"; then
2192eb6fda0fSAnthony PERARD    xen_pci_passthrough=yes
2193eb6fda0fSAnthony PERARD  else
2194eb6fda0fSAnthony PERARD    if test "$xen_pci_passthrough" = "yes"; then
219576ad07a4SPeter Maydell      error_exit "User requested feature Xen PCI Passthrough" \
219676ad07a4SPeter Maydell          " but this feature requires /sys from Linux"
2197eb6fda0fSAnthony PERARD    fi
2198eb6fda0fSAnthony PERARD    xen_pci_passthrough=no
2199eb6fda0fSAnthony PERARD  fi
2200eb6fda0fSAnthony PERARDfi
2201eb6fda0fSAnthony PERARD
220264a7ad6fSIan Campbellif test "$xen_pv_domain_build" = "yes" &&
220364a7ad6fSIan Campbell   test "$xen" != "yes"; then
220464a7ad6fSIan Campbell    error_exit "User requested Xen PV domain builder support" \
220564a7ad6fSIan Campbell	       "which requires Xen support."
220664a7ad6fSIan Campbellfi
220764a7ad6fSIan Campbell
2208e37630caSaliguori##########################################
2209dfffc653SJuan Quintela# Sparse probe
2210dfffc653SJuan Quintelaif test "$sparse" != "no" ; then
22110dba6195SLoïc Minier  if has cgcc; then
2212dfffc653SJuan Quintela    sparse=yes
2213dfffc653SJuan Quintela  else
2214dfffc653SJuan Quintela    if test "$sparse" = "yes" ; then
221521684af0SStewart Smith      feature_not_found "sparse" "Install sparse binary"
2216dfffc653SJuan Quintela    fi
2217dfffc653SJuan Quintela    sparse=no
2218dfffc653SJuan Quintela  fi
2219dfffc653SJuan Quintelafi
2220dfffc653SJuan Quintela
2221dfffc653SJuan Quintela##########################################
2222f676c67eSJeremy White# X11 probe
2223f676c67eSJeremy Whitex11_cflags=
2224f676c67eSJeremy Whitex11_libs=-lX11
2225f676c67eSJeremy Whiteif $pkg_config --exists "x11"; then
222689138857SStefan Weil    x11_cflags=$($pkg_config --cflags x11)
222789138857SStefan Weil    x11_libs=$($pkg_config --libs x11)
2228f676c67eSJeremy Whitefi
2229f676c67eSJeremy White
2230f676c67eSJeremy White##########################################
2231a4ccabcfSAnthony Liguori# GTK probe
2232a4ccabcfSAnthony Liguori
22339e04c683SStefan Weilif test "$gtkabi" = ""; then
22349e04c683SStefan Weil    # The GTK ABI was not specified explicitly, so try whether 2.0 is available.
22359e04c683SStefan Weil    # Use 3.0 as a fallback if that is available.
22369e04c683SStefan Weil    if $pkg_config --exists "gtk+-2.0 >= 2.18.0"; then
22379e04c683SStefan Weil        gtkabi=2.0
22389e04c683SStefan Weil    elif $pkg_config --exists "gtk+-3.0 >= 3.0.0"; then
22399e04c683SStefan Weil        gtkabi=3.0
22409e04c683SStefan Weil    else
22419e04c683SStefan Weil        gtkabi=2.0
22429e04c683SStefan Weil    fi
22439e04c683SStefan Weilfi
22449e04c683SStefan Weil
2245a4ccabcfSAnthony Liguoriif test "$gtk" != "no"; then
2246528de90aSDaniel P. Berrange    gtkpackage="gtk+-$gtkabi"
22470a337ed0SGerd Hoffmann    gtkx11package="gtk+-x11-$gtkabi"
2248528de90aSDaniel P. Berrange    if test "$gtkabi" = "3.0" ; then
2249528de90aSDaniel P. Berrange      gtkversion="3.0.0"
2250bbbf9bfbSStefan Weil    else
2251bbbf9bfbSStefan Weil      gtkversion="2.18.0"
2252bbbf9bfbSStefan Weil    fi
2253bbbf9bfbSStefan Weil    if $pkg_config --exists "$gtkpackage >= $gtkversion"; then
225489138857SStefan Weil        gtk_cflags=$($pkg_config --cflags $gtkpackage)
225589138857SStefan Weil        gtk_libs=$($pkg_config --libs $gtkpackage)
225689138857SStefan Weil        gtk_version=$($pkg_config --modversion $gtkpackage)
22570a337ed0SGerd Hoffmann        if $pkg_config --exists "$gtkx11package >= $gtkversion"; then
2258f676c67eSJeremy White            gtk_cflags="$gtk_cflags $x11_cflags"
2259f676c67eSJeremy White            gtk_libs="$gtk_libs $x11_libs"
22600a337ed0SGerd Hoffmann        fi
2261bbbf9bfbSStefan Weil        libs_softmmu="$gtk_libs $libs_softmmu"
2262bbbf9bfbSStefan Weil        gtk="yes"
2263bbbf9bfbSStefan Weil    elif test "$gtk" = "yes"; then
22649e04c683SStefan Weil        feature_not_found "gtk" "Install gtk2 or gtk3 devel"
2265bbbf9bfbSStefan Weil    else
2266bbbf9bfbSStefan Weil        gtk="no"
2267bbbf9bfbSStefan Weil    fi
2268bbbf9bfbSStefan Weilfi
2269bbbf9bfbSStefan Weil
2270ddbb0d09SDaniel P. Berrange
2271ddbb0d09SDaniel P. Berrange##########################################
2272ddbb0d09SDaniel P. Berrange# GNUTLS probe
2273ddbb0d09SDaniel P. Berrange
227437371299SPeter Maydellgnutls_works() {
227537371299SPeter Maydell    # Unfortunately some distros have bad pkg-config information for gnutls
227637371299SPeter Maydell    # such that it claims to exist but you get a compiler error if you try
227737371299SPeter Maydell    # to use the options returned by --libs. Specifically, Ubuntu for --static
227837371299SPeter Maydell    # builds doesn't work:
227937371299SPeter Maydell    # https://bugs.launchpad.net/ubuntu/+source/gnutls26/+bug/1478035
228037371299SPeter Maydell    #
228137371299SPeter Maydell    # So sanity check the cflags/libs before assuming gnutls can be used.
228237371299SPeter Maydell    if ! $pkg_config --exists "gnutls"; then
228337371299SPeter Maydell        return 1
228437371299SPeter Maydell    fi
228537371299SPeter Maydell
228637371299SPeter Maydell    write_c_skeleton
228737371299SPeter Maydell    compile_prog "$($pkg_config --cflags gnutls)" "$($pkg_config --libs gnutls)"
228837371299SPeter Maydell}
228937371299SPeter Maydell
229062893b67SDaniel P. Berrangegnutls_gcrypt=no
2291ed754746SDaniel P. Berrangegnutls_nettle=no
2292ddbb0d09SDaniel P. Berrangeif test "$gnutls" != "no"; then
229337371299SPeter Maydell    if gnutls_works; then
229489138857SStefan Weil        gnutls_cflags=$($pkg_config --cflags gnutls)
229589138857SStefan Weil        gnutls_libs=$($pkg_config --libs gnutls)
2296ddbb0d09SDaniel P. Berrange        libs_softmmu="$gnutls_libs $libs_softmmu"
2297ddbb0d09SDaniel P. Berrange        libs_tools="$gnutls_libs $libs_tools"
2298ddbb0d09SDaniel P. Berrange	QEMU_CFLAGS="$QEMU_CFLAGS $gnutls_cflags"
2299ddbb0d09SDaniel P. Berrange        gnutls="yes"
2300ddbb0d09SDaniel P. Berrange
2301b917da4cSDaniel P. Berrange	# gnutls_rnd requires >= 2.11.0
2302b917da4cSDaniel P. Berrange	if $pkg_config --exists "gnutls >= 2.11.0"; then
2303b917da4cSDaniel P. Berrange	    gnutls_rnd="yes"
2304b917da4cSDaniel P. Berrange	else
2305b917da4cSDaniel P. Berrange	    gnutls_rnd="no"
2306b917da4cSDaniel P. Berrange	fi
2307b917da4cSDaniel P. Berrange
230862893b67SDaniel P. Berrange	if $pkg_config --exists 'gnutls >= 3.0'; then
230962893b67SDaniel P. Berrange	    gnutls_gcrypt=no
2310ed754746SDaniel P. Berrange	    gnutls_nettle=yes
231162893b67SDaniel P. Berrange	elif $pkg_config --exists 'gnutls >= 2.12'; then
231289138857SStefan Weil	    case $($pkg_config --libs --static gnutls) in
2313ed754746SDaniel P. Berrange		*gcrypt*)
2314ed754746SDaniel P. Berrange		    gnutls_gcrypt=yes
2315ed754746SDaniel P. Berrange		    gnutls_nettle=no
2316ed754746SDaniel P. Berrange		    ;;
2317ed754746SDaniel P. Berrange		*nettle*)
2318ed754746SDaniel P. Berrange		    gnutls_gcrypt=no
2319ed754746SDaniel P. Berrange		    gnutls_nettle=yes
2320ed754746SDaniel P. Berrange		    ;;
2321ed754746SDaniel P. Berrange		*)
2322ed754746SDaniel P. Berrange		    gnutls_gcrypt=yes
2323ed754746SDaniel P. Berrange		    gnutls_nettle=no
2324ed754746SDaniel P. Berrange		    ;;
232562893b67SDaniel P. Berrange	    esac
232662893b67SDaniel P. Berrange	else
232762893b67SDaniel P. Berrange	    gnutls_gcrypt=yes
2328ed754746SDaniel P. Berrange	    gnutls_nettle=no
232962893b67SDaniel P. Berrange	fi
2330ddbb0d09SDaniel P. Berrange    elif test "$gnutls" = "yes"; then
2331ddbb0d09SDaniel P. Berrange	feature_not_found "gnutls" "Install gnutls devel"
2332ddbb0d09SDaniel P. Berrange    else
2333ddbb0d09SDaniel P. Berrange        gnutls="no"
2334b917da4cSDaniel P. Berrange        gnutls_rnd="no"
2335ddbb0d09SDaniel P. Berrange    fi
2336ddbb0d09SDaniel P. Berrangeelse
2337b917da4cSDaniel P. Berrange    gnutls_rnd="no"
2338ddbb0d09SDaniel P. Berrangefi
2339ddbb0d09SDaniel P. Berrange
234091bfcdb0SDaniel P. Berrange
234191bfcdb0SDaniel P. Berrange# If user didn't give a --disable/enable-gcrypt flag,
234291bfcdb0SDaniel P. Berrange# then mark as disabled if user requested nettle
234391bfcdb0SDaniel P. Berrange# explicitly, or if gnutls links to nettle
234491bfcdb0SDaniel P. Berrangeif test -z "$gcrypt"
234591bfcdb0SDaniel P. Berrangethen
234691bfcdb0SDaniel P. Berrange    if test "$nettle" = "yes" || test "$gnutls_nettle" = "yes"
234791bfcdb0SDaniel P. Berrange    then
234891bfcdb0SDaniel P. Berrange        gcrypt="no"
234991bfcdb0SDaniel P. Berrange    fi
235091bfcdb0SDaniel P. Berrangefi
235191bfcdb0SDaniel P. Berrange
235291bfcdb0SDaniel P. Berrange# If user didn't give a --disable/enable-nettle flag,
235391bfcdb0SDaniel P. Berrange# then mark as disabled if user requested gcrypt
235491bfcdb0SDaniel P. Berrange# explicitly, or if gnutls links to gcrypt
235591bfcdb0SDaniel P. Berrangeif test -z "$nettle"
235691bfcdb0SDaniel P. Berrangethen
235791bfcdb0SDaniel P. Berrange    if test "$gcrypt" = "yes" || test "$gnutls_gcrypt" = "yes"
235891bfcdb0SDaniel P. Berrange    then
235991bfcdb0SDaniel P. Berrange        nettle="no"
236091bfcdb0SDaniel P. Berrange    fi
236191bfcdb0SDaniel P. Berrangefi
236291bfcdb0SDaniel P. Berrange
236391bfcdb0SDaniel P. Berrangehas_libgcrypt_config() {
236491bfcdb0SDaniel P. Berrange    if ! has "libgcrypt-config"
236591bfcdb0SDaniel P. Berrange    then
236691bfcdb0SDaniel P. Berrange	return 1
236791bfcdb0SDaniel P. Berrange    fi
236891bfcdb0SDaniel P. Berrange
236991bfcdb0SDaniel P. Berrange    if test -n "$cross_prefix"
237091bfcdb0SDaniel P. Berrange    then
237189138857SStefan Weil	host=$(libgcrypt-config --host)
237291bfcdb0SDaniel P. Berrange	if test "$host-" != $cross_prefix
237391bfcdb0SDaniel P. Berrange	then
237491bfcdb0SDaniel P. Berrange	    return 1
237591bfcdb0SDaniel P. Berrange	fi
237691bfcdb0SDaniel P. Berrange    fi
237791bfcdb0SDaniel P. Berrange
237891bfcdb0SDaniel P. Berrange    return 0
237991bfcdb0SDaniel P. Berrange}
238091bfcdb0SDaniel P. Berrange
238191bfcdb0SDaniel P. Berrangeif test "$gcrypt" != "no"; then
238291bfcdb0SDaniel P. Berrange    if has_libgcrypt_config; then
238389138857SStefan Weil        gcrypt_cflags=$(libgcrypt-config --cflags)
238489138857SStefan Weil        gcrypt_libs=$(libgcrypt-config --libs)
238591bfcdb0SDaniel P. Berrange        # Debian has remove -lgpg-error from libgcrypt-config
238691bfcdb0SDaniel P. Berrange        # as it "spreads unnecessary dependencies" which in
238791bfcdb0SDaniel P. Berrange        # turn breaks static builds...
238891bfcdb0SDaniel P. Berrange        if test "$static" = "yes"
238991bfcdb0SDaniel P. Berrange        then
239091bfcdb0SDaniel P. Berrange            gcrypt_libs="$gcrypt_libs -lgpg-error"
239191bfcdb0SDaniel P. Berrange        fi
239262893b67SDaniel P. Berrange        libs_softmmu="$gcrypt_libs $libs_softmmu"
239362893b67SDaniel P. Berrange        libs_tools="$gcrypt_libs $libs_tools"
239462893b67SDaniel P. Berrange        QEMU_CFLAGS="$QEMU_CFLAGS $gcrypt_cflags"
239591bfcdb0SDaniel P. Berrange        gcrypt="yes"
239691bfcdb0SDaniel P. Berrange        if test -z "$nettle"; then
239791bfcdb0SDaniel P. Berrange           nettle="no"
239891bfcdb0SDaniel P. Berrange        fi
239937788f25SDaniel P. Berrange
240037788f25SDaniel P. Berrange        cat > $TMPC << EOF
240137788f25SDaniel P. Berrange#include <gcrypt.h>
240237788f25SDaniel P. Berrangeint main(void) {
240337788f25SDaniel P. Berrange  gcry_kdf_derive(NULL, 0, GCRY_KDF_PBKDF2,
240437788f25SDaniel P. Berrange                  GCRY_MD_SHA256,
240537788f25SDaniel P. Berrange                  NULL, 0, 0, 0, NULL);
240637788f25SDaniel P. Berrange return 0;
240737788f25SDaniel P. Berrange}
240837788f25SDaniel P. BerrangeEOF
240937788f25SDaniel P. Berrange        if compile_prog "$gcrypt_cflags" "$gcrypt_libs" ; then
241037788f25SDaniel P. Berrange            gcrypt_kdf=yes
241137788f25SDaniel P. Berrange        fi
241262893b67SDaniel P. Berrange    else
241391bfcdb0SDaniel P. Berrange        if test "$gcrypt" = "yes"; then
241462893b67SDaniel P. Berrange            feature_not_found "gcrypt" "Install gcrypt devel"
241591bfcdb0SDaniel P. Berrange        else
241691bfcdb0SDaniel P. Berrange            gcrypt="no"
241791bfcdb0SDaniel P. Berrange        fi
241862893b67SDaniel P. Berrange    fi
241962893b67SDaniel P. Berrangefi
242062893b67SDaniel P. Berrange
2421ddbb0d09SDaniel P. Berrange
242291bfcdb0SDaniel P. Berrangeif test "$nettle" != "no"; then
2423ed754746SDaniel P. Berrange    if $pkg_config --exists "nettle"; then
242489138857SStefan Weil        nettle_cflags=$($pkg_config --cflags nettle)
242589138857SStefan Weil        nettle_libs=$($pkg_config --libs nettle)
242689138857SStefan Weil        nettle_version=$($pkg_config --modversion nettle)
2427ed754746SDaniel P. Berrange        libs_softmmu="$nettle_libs $libs_softmmu"
2428ed754746SDaniel P. Berrange        libs_tools="$nettle_libs $libs_tools"
2429ed754746SDaniel P. Berrange        QEMU_CFLAGS="$QEMU_CFLAGS $nettle_cflags"
243091bfcdb0SDaniel P. Berrange        nettle="yes"
2431fff2f982SDaniel P. Berrange
2432fff2f982SDaniel P. Berrange        cat > $TMPC << EOF
24339e87a691SSteven Luo#include <stddef.h>
2434fff2f982SDaniel P. Berrange#include <nettle/pbkdf2.h>
2435fff2f982SDaniel P. Berrangeint main(void) {
2436fff2f982SDaniel P. Berrange     pbkdf2_hmac_sha256(8, NULL, 1000, 8, NULL, 8, NULL);
2437fff2f982SDaniel P. Berrange     return 0;
2438fff2f982SDaniel P. Berrange}
2439fff2f982SDaniel P. BerrangeEOF
2440fff2f982SDaniel P. Berrange        if compile_prog "$nettle_cflags" "$nettle_libs" ; then
2441fff2f982SDaniel P. Berrange            nettle_kdf=yes
2442fff2f982SDaniel P. Berrange        fi
2443ed754746SDaniel P. Berrange    else
244491bfcdb0SDaniel P. Berrange        if test "$nettle" = "yes"; then
2445ed754746SDaniel P. Berrange            feature_not_found "nettle" "Install nettle devel"
244691bfcdb0SDaniel P. Berrange        else
244791bfcdb0SDaniel P. Berrange            nettle="no"
2448ed754746SDaniel P. Berrange        fi
2449ed754746SDaniel P. Berrange    fi
245091bfcdb0SDaniel P. Berrangefi
245191bfcdb0SDaniel P. Berrange
245291bfcdb0SDaniel P. Berrangeif test "$gcrypt" = "yes" && test "$nettle" = "yes"
245391bfcdb0SDaniel P. Berrangethen
245491bfcdb0SDaniel P. Berrange    error_exit "Only one of gcrypt & nettle can be enabled"
245591bfcdb0SDaniel P. Berrangefi
2456ed754746SDaniel P. Berrange
24579a2fd434SDaniel P. Berrange##########################################
24589a2fd434SDaniel P. Berrange# libtasn1 - only for the TLS creds/session test suite
24599a2fd434SDaniel P. Berrange
24609a2fd434SDaniel P. Berrangetasn1=yes
246190246037SDaniel P. Berrangetasn1_cflags=""
246290246037SDaniel P. Berrangetasn1_libs=""
24639a2fd434SDaniel P. Berrangeif $pkg_config --exists "libtasn1"; then
246489138857SStefan Weil    tasn1_cflags=$($pkg_config --cflags libtasn1)
246589138857SStefan Weil    tasn1_libs=$($pkg_config --libs libtasn1)
24669a2fd434SDaniel P. Berrangeelse
24679a2fd434SDaniel P. Berrange    tasn1=no
24689a2fd434SDaniel P. Berrangefi
24699a2fd434SDaniel P. Berrange
2470ed754746SDaniel P. Berrange
2471bbbf9bfbSStefan Weil##########################################
2472559607eaSDaniel P. Berrange# getifaddrs (for tests/test-io-channel-socket )
2473559607eaSDaniel P. Berrange
2474559607eaSDaniel P. Berrangehave_ifaddrs_h=yes
2475559607eaSDaniel P. Berrangeif ! check_include "ifaddrs.h" ; then
2476559607eaSDaniel P. Berrange  have_ifaddrs_h=no
2477559607eaSDaniel P. Berrangefi
2478559607eaSDaniel P. Berrange
2479559607eaSDaniel P. Berrange##########################################
2480bbbf9bfbSStefan Weil# VTE probe
2481bbbf9bfbSStefan Weil
2482bbbf9bfbSStefan Weilif test "$vte" != "no"; then
2483bbbf9bfbSStefan Weil    if test "$gtkabi" = "3.0"; then
2484c6feff9eSCole Robinson      vteminversion="0.32.0"
2485c6feff9eSCole Robinson      if $pkg_config --exists "vte-2.91"; then
2486c6feff9eSCole Robinson        vtepackage="vte-2.91"
2487c6feff9eSCole Robinson      else
2488528de90aSDaniel P. Berrange        vtepackage="vte-2.90"
2489c6feff9eSCole Robinson      fi
2490528de90aSDaniel P. Berrange    else
2491528de90aSDaniel P. Berrange      vtepackage="vte"
2492c6feff9eSCole Robinson      vteminversion="0.24.0"
2493528de90aSDaniel P. Berrange    fi
2494c6feff9eSCole Robinson    if $pkg_config --exists "$vtepackage >= $vteminversion"; then
249589138857SStefan Weil        vte_cflags=$($pkg_config --cflags $vtepackage)
249689138857SStefan Weil        vte_libs=$($pkg_config --libs $vtepackage)
249789138857SStefan Weil        vteversion=$($pkg_config --modversion $vtepackage)
2498bbbf9bfbSStefan Weil        libs_softmmu="$vte_libs $libs_softmmu"
2499bbbf9bfbSStefan Weil        vte="yes"
2500bbbf9bfbSStefan Weil    elif test "$vte" = "yes"; then
25019e04c683SStefan Weil        if test "$gtkabi" = "3.0"; then
2502c6feff9eSCole Robinson            feature_not_found "vte" "Install libvte-2.90/2.91 devel"
25039e04c683SStefan Weil        else
25049e04c683SStefan Weil            feature_not_found "vte" "Install libvte devel"
25059e04c683SStefan Weil        fi
2506bbbf9bfbSStefan Weil    else
2507bbbf9bfbSStefan Weil        vte="no"
2508a4ccabcfSAnthony Liguori    fi
2509a4ccabcfSAnthony Liguorifi
2510a4ccabcfSAnthony Liguori
2511a4ccabcfSAnthony Liguori##########################################
251211d9f695Sbellard# SDL probe
251311d9f695Sbellard
25143ec87ffeSPaolo Bonzini# Look for sdl configuration program (pkg-config or sdl-config).  Try
25153ec87ffeSPaolo Bonzini# sdl-config even without cross prefix, and favour pkg-config over sdl-config.
251647c03744SDave Airlie
2517ee8466d0SCole Robinsonif test "$sdlabi" = ""; then
2518ee8466d0SCole Robinson    if $pkg_config --exists "sdl"; then
2519ee8466d0SCole Robinson        sdlabi=1.2
2520ee8466d0SCole Robinson    elif $pkg_config --exists "sdl2"; then
2521ee8466d0SCole Robinson        sdlabi=2.0
2522ee8466d0SCole Robinson    else
2523ee8466d0SCole Robinson        sdlabi=1.2
2524ee8466d0SCole Robinson    fi
2525ee8466d0SCole Robinsonfi
2526ee8466d0SCole Robinson
252747c03744SDave Airlieif test $sdlabi = "2.0"; then
252847c03744SDave Airlie    sdl_config=$sdl2_config
252947c03744SDave Airlie    sdlname=sdl2
253047c03744SDave Airlie    sdlconfigname=sdl2_config
2531e07047cfSCole Robinsonelif test $sdlabi = "1.2"; then
253247c03744SDave Airlie    sdlname=sdl
253347c03744SDave Airlie    sdlconfigname=sdl_config
2534e07047cfSCole Robinsonelse
2535e07047cfSCole Robinson    error_exit "Unknown sdlabi $sdlabi, must be 1.2 or 2.0"
25363ec87ffeSPaolo Bonzinifi
25373ec87ffeSPaolo Bonzini
253889138857SStefan Weilif test "$(basename $sdl_config)" != $sdlconfigname && ! has ${sdl_config}; then
253947c03744SDave Airlie  sdl_config=$sdlconfigname
254047c03744SDave Airliefi
254147c03744SDave Airlie
254247c03744SDave Airlieif $pkg_config $sdlname --exists; then
254347c03744SDave Airlie  sdlconfig="$pkg_config $sdlname"
254489138857SStefan Weil  sdlversion=$($sdlconfig --modversion 2>/dev/null)
25453ec87ffeSPaolo Bonzinielif has ${sdl_config}; then
25463ec87ffeSPaolo Bonzini  sdlconfig="$sdl_config"
254789138857SStefan Weil  sdlversion=$($sdlconfig --version)
2548a0dfd8a4SLoïc Minierelse
2549a0dfd8a4SLoïc Minier  if test "$sdl" = "yes" ; then
255021684af0SStewart Smith    feature_not_found "sdl" "Install SDL devel"
2551a0dfd8a4SLoïc Minier  fi
2552a0dfd8a4SLoïc Minier  sdl=no
25539316f803SPaolo Bonzinifi
255429e5badaSScott Woodif test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then
25553ec87ffeSPaolo Bonzini  echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
25563ec87ffeSPaolo Bonzinifi
255711d9f695Sbellard
25589316f803SPaolo Bonzinisdl_too_old=no
2559c4198157SJuan Quintelaif test "$sdl" != "no" ; then
256011d9f695Sbellard  cat > $TMPC << EOF
256111d9f695Sbellard#include <SDL.h>
256211d9f695Sbellard#undef main /* We don't want SDL to override our main() */
256311d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
256411d9f695SbellardEOF
256589138857SStefan Weil  sdl_cflags=$($sdlconfig --cflags 2>/dev/null)
256674f42e18STeLeMan  if test "$static" = "yes" ; then
256789138857SStefan Weil    sdl_libs=$($sdlconfig --static-libs 2>/dev/null)
256874f42e18STeLeMan  else
256989138857SStefan Weil    sdl_libs=$($sdlconfig --libs 2>/dev/null)
257074f42e18STeLeMan  fi
257152166aa0SJuan Quintela  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
257289138857SStefan Weil    if test $(echo $sdlversion | sed 's/[^0-9]//g') -lt 121 ; then
257311d9f695Sbellard      sdl_too_old=yes
257411d9f695Sbellard    else
257511d9f695Sbellard      sdl=yes
257611d9f695Sbellard    fi
25777c1f25b4Sbellard
257867c274d3SPaolo Bonzini    # static link with sdl ? (note: sdl.pc's --static --libs is broken)
25791ac88f28SJuan Quintela    if test "$sdl" = "yes" -a "$static" = "yes" ; then
258067c274d3SPaolo Bonzini      if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
258189138857SStefan Weil         sdl_libs="$sdl_libs $(aalib-config --static-libs 2>/dev/null)"
258289138857SStefan Weil         sdl_cflags="$sdl_cflags $(aalib-config --cflags 2>/dev/null)"
258311d9f695Sbellard      fi
258452166aa0SJuan Quintela      if compile_prog "$sdl_cflags" "$sdl_libs" ; then
25851ac88f28SJuan Quintela	:
25861ac88f28SJuan Quintela      else
25871ac88f28SJuan Quintela        sdl=no
25887c1f25b4Sbellard      fi
25897c1f25b4Sbellard    fi # static link
2590c4198157SJuan Quintela  else # sdl not found
2591c4198157SJuan Quintela    if test "$sdl" = "yes" ; then
259221684af0SStewart Smith      feature_not_found "sdl" "Install SDL devel"
2593c4198157SJuan Quintela    fi
2594c4198157SJuan Quintela    sdl=no
25957c1f25b4Sbellard  fi # sdl compile test
2596fd677642Sthsfi
259711d9f695Sbellard
25985368a422Saliguoriif test "$sdl" = "yes" ; then
25995368a422Saliguori  cat > $TMPC <<EOF
26005368a422Saliguori#include <SDL.h>
26015368a422Saliguori#if defined(SDL_VIDEO_DRIVER_X11)
26025368a422Saliguori#include <X11/XKBlib.h>
26035368a422Saliguori#else
26045368a422Saliguori#error No x11 support
26055368a422Saliguori#endif
26065368a422Saliguoriint main(void) { return 0; }
26075368a422SaliguoriEOF
2608f676c67eSJeremy White  if compile_prog "$sdl_cflags $x11_cflags" "$sdl_libs $x11_libs" ; then
2609f676c67eSJeremy White    sdl_cflags="$sdl_cflags $x11_cflags"
2610f676c67eSJeremy White    sdl_libs="$sdl_libs $x11_libs"
26115368a422Saliguori  fi
26120705667eSJuan Quintela  libs_softmmu="$sdl_libs $libs_softmmu"
26135368a422Saliguorifi
26145368a422Saliguori
26158f28f3fbSths##########################################
26162da776dbSMichael R. Hines# RDMA needs OpenFabrics libraries
26172da776dbSMichael R. Hinesif test "$rdma" != "no" ; then
26182da776dbSMichael R. Hines  cat > $TMPC <<EOF
26192da776dbSMichael R. Hines#include <rdma/rdma_cma.h>
26202da776dbSMichael R. Hinesint main(void) { return 0; }
26212da776dbSMichael R. HinesEOF
26222da776dbSMichael R. Hines  rdma_libs="-lrdmacm -libverbs"
26232da776dbSMichael R. Hines  if compile_prog "" "$rdma_libs" ; then
26242da776dbSMichael R. Hines    rdma="yes"
26252da776dbSMichael R. Hines    libs_softmmu="$libs_softmmu $rdma_libs"
26262da776dbSMichael R. Hines  else
26272da776dbSMichael R. Hines    if test "$rdma" = "yes" ; then
26282da776dbSMichael R. Hines        error_exit \
26292da776dbSMichael R. Hines            " OpenFabrics librdmacm/libibverbs not present." \
26302da776dbSMichael R. Hines            " Your options:" \
26312da776dbSMichael R. Hines            "  (1) Fast: Install infiniband packages from your distro." \
26322da776dbSMichael R. Hines            "  (2) Cleanest: Install libraries from www.openfabrics.org" \
26332da776dbSMichael R. Hines            "  (3) Also: Install softiwarp if you don't have RDMA hardware"
26342da776dbSMichael R. Hines    fi
26352da776dbSMichael R. Hines    rdma="no"
26362da776dbSMichael R. Hines  fi
26372da776dbSMichael R. Hinesfi
26382da776dbSMichael R. Hines
263995c6bff3SBenoît Canet
264095c6bff3SBenoît Canet##########################################
26412f9606b3Saliguori# VNC SASL detection
2642821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then
26432f9606b3Saliguori  cat > $TMPC <<EOF
26442f9606b3Saliguori#include <sasl/sasl.h>
26452f9606b3Saliguori#include <stdio.h>
26462f9606b3Saliguoriint main(void) { sasl_server_init(NULL, "qemu"); return 0; }
26472f9606b3SaliguoriEOF
26482f9606b3Saliguori  # Assuming Cyrus-SASL installed in /usr prefix
26492f9606b3Saliguori  vnc_sasl_cflags=""
26502f9606b3Saliguori  vnc_sasl_libs="-lsasl2"
265152166aa0SJuan Quintela  if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
2652ea784e3bSJuan Quintela    vnc_sasl=yes
2653fa838301SJuan Quintela    libs_softmmu="$vnc_sasl_libs $libs_softmmu"
2654ca273d58SPaolo Bonzini    QEMU_CFLAGS="$QEMU_CFLAGS $vnc_sasl_cflags"
26552f9606b3Saliguori  else
2656ea784e3bSJuan Quintela    if test "$vnc_sasl" = "yes" ; then
265721684af0SStewart Smith      feature_not_found "vnc-sasl" "Install Cyrus SASL devel"
2658ea784e3bSJuan Quintela    fi
2659ea784e3bSJuan Quintela    vnc_sasl=no
26602f9606b3Saliguori  fi
26612f9606b3Saliguorifi
26622f9606b3Saliguori
26632f9606b3Saliguori##########################################
26642f6f5c7aSCorentin Chary# VNC JPEG detection
2665821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then
26662f6f5c7aSCorentin Charycat > $TMPC <<EOF
26672f6f5c7aSCorentin Chary#include <stdio.h>
26682f6f5c7aSCorentin Chary#include <jpeglib.h>
26692f6f5c7aSCorentin Charyint main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
26702f6f5c7aSCorentin CharyEOF
26712f6f5c7aSCorentin Chary    vnc_jpeg_cflags=""
26722f6f5c7aSCorentin Chary    vnc_jpeg_libs="-ljpeg"
26732f6f5c7aSCorentin Chary  if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
26742f6f5c7aSCorentin Chary    vnc_jpeg=yes
26752f6f5c7aSCorentin Chary    libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
2676ca273d58SPaolo Bonzini    QEMU_CFLAGS="$QEMU_CFLAGS $vnc_jpeg_cflags"
26772f6f5c7aSCorentin Chary  else
26782f6f5c7aSCorentin Chary    if test "$vnc_jpeg" = "yes" ; then
267921684af0SStewart Smith      feature_not_found "vnc-jpeg" "Install libjpeg-turbo devel"
26802f6f5c7aSCorentin Chary    fi
26812f6f5c7aSCorentin Chary    vnc_jpeg=no
26822f6f5c7aSCorentin Chary  fi
26832f6f5c7aSCorentin Charyfi
26842f6f5c7aSCorentin Chary
26852f6f5c7aSCorentin Chary##########################################
2686efe556adSCorentin Chary# VNC PNG detection
2687821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_png" != "no" ; then
2688efe556adSCorentin Charycat > $TMPC <<EOF
2689efe556adSCorentin Chary//#include <stdio.h>
2690efe556adSCorentin Chary#include <png.h>
2691832ce9c2SScott Wood#include <stddef.h>
2692efe556adSCorentin Charyint main(void) {
2693efe556adSCorentin Chary    png_structp png_ptr;
2694efe556adSCorentin Chary    png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
26957edc3fedSPeter Maydell    return png_ptr != 0;
2696efe556adSCorentin Chary}
2697efe556adSCorentin CharyEOF
269865d5d3f9SStefan Weil  if $pkg_config libpng --exists; then
269989138857SStefan Weil    vnc_png_cflags=$($pkg_config libpng --cflags)
270089138857SStefan Weil    vnc_png_libs=$($pkg_config libpng --libs)
27019af8025eSBrad  else
2702efe556adSCorentin Chary    vnc_png_cflags=""
2703efe556adSCorentin Chary    vnc_png_libs="-lpng"
27049af8025eSBrad  fi
2705efe556adSCorentin Chary  if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
2706efe556adSCorentin Chary    vnc_png=yes
2707efe556adSCorentin Chary    libs_softmmu="$vnc_png_libs $libs_softmmu"
27089af8025eSBrad    QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags"
2709efe556adSCorentin Chary  else
2710efe556adSCorentin Chary    if test "$vnc_png" = "yes" ; then
271121684af0SStewart Smith      feature_not_found "vnc-png" "Install libpng devel"
2712efe556adSCorentin Chary    fi
2713efe556adSCorentin Chary    vnc_png=no
2714efe556adSCorentin Chary  fi
2715efe556adSCorentin Charyfi
2716efe556adSCorentin Chary
2717efe556adSCorentin Chary##########################################
271876655d6dSaliguori# fnmatch() probe, used for ACL routines
271976655d6dSaliguorifnmatch="no"
272076655d6dSaliguoricat > $TMPC << EOF
272176655d6dSaliguori#include <fnmatch.h>
272276655d6dSaliguoriint main(void)
272376655d6dSaliguori{
272476655d6dSaliguori    fnmatch("foo", "foo", 0);
272576655d6dSaliguori    return 0;
272676655d6dSaliguori}
272776655d6dSaliguoriEOF
272852166aa0SJuan Quintelaif compile_prog "" "" ; then
272976655d6dSaliguori   fnmatch="yes"
273076655d6dSaliguorifi
273176655d6dSaliguori
273276655d6dSaliguori##########################################
2733dce512deSChristoph Hellwig# xfsctl() probe, used for raw-posix
2734dce512deSChristoph Hellwigif test "$xfs" != "no" ; then
2735dce512deSChristoph Hellwig  cat > $TMPC << EOF
2736ffc41d10SStefan Weil#include <stddef.h>  /* NULL */
2737dce512deSChristoph Hellwig#include <xfs/xfs.h>
2738dce512deSChristoph Hellwigint main(void)
2739dce512deSChristoph Hellwig{
2740dce512deSChristoph Hellwig    xfsctl(NULL, 0, 0, NULL);
2741dce512deSChristoph Hellwig    return 0;
2742dce512deSChristoph Hellwig}
2743dce512deSChristoph HellwigEOF
2744dce512deSChristoph Hellwig  if compile_prog "" "" ; then
2745dce512deSChristoph Hellwig    xfs="yes"
2746dce512deSChristoph Hellwig  else
2747dce512deSChristoph Hellwig    if test "$xfs" = "yes" ; then
274821684af0SStewart Smith      feature_not_found "xfs" "Instal xfsprogs/xfslibs devel"
2749dce512deSChristoph Hellwig    fi
2750dce512deSChristoph Hellwig    xfs=no
2751dce512deSChristoph Hellwig  fi
2752dce512deSChristoph Hellwigfi
2753dce512deSChristoph Hellwig
2754dce512deSChristoph Hellwig##########################################
27558a16d273Sths# vde libraries probe
2756dfb278bdSJuan Quintelaif test "$vde" != "no" ; then
27574baae0acSJuan Quintela  vde_libs="-lvdeplug"
27588a16d273Sths  cat > $TMPC << EOF
27598a16d273Sths#include <libvdeplug.h>
27604a7f0e06Spbrookint main(void)
27614a7f0e06Spbrook{
27624a7f0e06Spbrook    struct vde_open_args a = {0, 0, 0};
2763fea08e08SPeter Maydell    char s[] = "";
2764fea08e08SPeter Maydell    vde_open(s, s, &a);
27654a7f0e06Spbrook    return 0;
27664a7f0e06Spbrook}
27678a16d273SthsEOF
276852166aa0SJuan Quintela  if compile_prog "" "$vde_libs" ; then
27694baae0acSJuan Quintela    vde=yes
27708e02e54cSJuan Quintela    libs_softmmu="$vde_libs $libs_softmmu"
27718e02e54cSJuan Quintela    libs_tools="$vde_libs $libs_tools"
2772dfb278bdSJuan Quintela  else
2773dfb278bdSJuan Quintela    if test "$vde" = "yes" ; then
277421684af0SStewart Smith      feature_not_found "vde" "Install vde (Virtual Distributed Ethernet) devel"
2775dfb278bdSJuan Quintela    fi
2776dfb278bdSJuan Quintela    vde=no
27778a16d273Sths  fi
27788a16d273Sthsfi
27798a16d273Sths
27808a16d273Sths##########################################
27810a985b37SVincenzo Maffione# netmap support probe
27820a985b37SVincenzo Maffione# Apart from looking for netmap headers, we make sure that the host API version
27830a985b37SVincenzo Maffione# supports the netmap backend (>=11). The upper bound (15) is meant to simulate
27840a985b37SVincenzo Maffione# a minor/major version number. Minor new features will be marked with values up
27850a985b37SVincenzo Maffione# to 15, and if something happens that requires a change to the backend we will
27860a985b37SVincenzo Maffione# move above 15, submit the backend fixes and modify this two bounds.
278758952137SVincenzo Maffioneif test "$netmap" != "no" ; then
278858952137SVincenzo Maffione  cat > $TMPC << EOF
278958952137SVincenzo Maffione#include <inttypes.h>
279058952137SVincenzo Maffione#include <net/if.h>
279158952137SVincenzo Maffione#include <net/netmap.h>
279258952137SVincenzo Maffione#include <net/netmap_user.h>
27930a985b37SVincenzo Maffione#if (NETMAP_API < 11) || (NETMAP_API > 15)
27940a985b37SVincenzo Maffione#error
27950a985b37SVincenzo Maffione#endif
279658952137SVincenzo Maffioneint main(void) { return 0; }
279758952137SVincenzo MaffioneEOF
279858952137SVincenzo Maffione  if compile_prog "" "" ; then
279958952137SVincenzo Maffione    netmap=yes
280058952137SVincenzo Maffione  else
280158952137SVincenzo Maffione    if test "$netmap" = "yes" ; then
280258952137SVincenzo Maffione      feature_not_found "netmap"
280358952137SVincenzo Maffione    fi
280458952137SVincenzo Maffione    netmap=no
280558952137SVincenzo Maffione  fi
280658952137SVincenzo Maffionefi
280758952137SVincenzo Maffione
280858952137SVincenzo Maffione##########################################
280947e98658SCorey Bryant# libcap-ng library probe
281047e98658SCorey Bryantif test "$cap_ng" != "no" ; then
281147e98658SCorey Bryant  cap_libs="-lcap-ng"
281247e98658SCorey Bryant  cat > $TMPC << EOF
281347e98658SCorey Bryant#include <cap-ng.h>
281447e98658SCorey Bryantint main(void)
281547e98658SCorey Bryant{
281647e98658SCorey Bryant    capng_capability_to_name(CAPNG_EFFECTIVE);
281747e98658SCorey Bryant    return 0;
281847e98658SCorey Bryant}
281947e98658SCorey BryantEOF
282047e98658SCorey Bryant  if compile_prog "" "$cap_libs" ; then
282147e98658SCorey Bryant    cap_ng=yes
282247e98658SCorey Bryant    libs_tools="$cap_libs $libs_tools"
282347e98658SCorey Bryant  else
282447e98658SCorey Bryant    if test "$cap_ng" = "yes" ; then
282521684af0SStewart Smith      feature_not_found "cap_ng" "Install libcap-ng devel"
282647e98658SCorey Bryant    fi
282747e98658SCorey Bryant    cap_ng=no
282847e98658SCorey Bryant  fi
282947e98658SCorey Bryantfi
283047e98658SCorey Bryant
283147e98658SCorey Bryant##########################################
2832c2de5c91Smalc# Sound support libraries probe
28338f28f3fbSths
2834c2de5c91Smalcaudio_drv_probe()
2835c2de5c91Smalc{
2836c2de5c91Smalc    drv=$1
2837c2de5c91Smalc    hdr=$2
2838c2de5c91Smalc    lib=$3
2839c2de5c91Smalc    exp=$4
2840c2de5c91Smalc    cfl=$5
28418f28f3fbSths        cat > $TMPC << EOF
2842c2de5c91Smalc#include <$hdr>
2843c2de5c91Smalcint main(void) { $exp }
28448f28f3fbSthsEOF
284552166aa0SJuan Quintela    if compile_prog "$cfl" "$lib" ; then
28468f28f3fbSths        :
28478f28f3fbSths    else
284876ad07a4SPeter Maydell        error_exit "$drv check failed" \
284976ad07a4SPeter Maydell            "Make sure to have the $drv libs and headers installed."
28508f28f3fbSths    fi
2851c2de5c91Smalc}
2852c2de5c91Smalc
285389138857SStefan Weilaudio_drv_list=$(echo "$audio_drv_list" | sed -e 's/,/ /g')
2854c2de5c91Smalcfor drv in $audio_drv_list; do
2855c2de5c91Smalc    case $drv in
2856c2de5c91Smalc    alsa)
2857c2de5c91Smalc    audio_drv_probe $drv alsa/asoundlib.h -lasound \
2858e35bcb0cSStefan Weil        "return snd_pcm_close((snd_pcm_t *)0);"
2859a4bf6780SJuan Quintela    libs_softmmu="-lasound $libs_softmmu"
2860c2de5c91Smalc    ;;
2861c2de5c91Smalc
2862b8e59f18Smalc    pa)
2863e58ff62dSPeter Krempa    audio_drv_probe $drv pulse/pulseaudio.h "-lpulse" \
2864e58ff62dSPeter Krempa        "pa_context_set_source_output_volume(NULL, 0, NULL, NULL, NULL); return 0;"
2865a394aed2SMarc-André Lureau    libs_softmmu="-lpulse $libs_softmmu"
286667f86e8eSJuan Quintela    audio_pt_int="yes"
2867b8e59f18Smalc    ;;
2868b8e59f18Smalc
2869997e690aSJuan Quintela    coreaudio)
2870997e690aSJuan Quintela      libs_softmmu="-framework CoreAudio $libs_softmmu"
2871997e690aSJuan Quintela    ;;
2872997e690aSJuan Quintela
2873a4bf6780SJuan Quintela    dsound)
2874a4bf6780SJuan Quintela      libs_softmmu="-lole32 -ldxguid $libs_softmmu"
2875d5631638Smalc      audio_win_int="yes"
2876a4bf6780SJuan Quintela    ;;
2877a4bf6780SJuan Quintela
2878a4bf6780SJuan Quintela    oss)
2879a4bf6780SJuan Quintela      libs_softmmu="$oss_lib $libs_softmmu"
2880a4bf6780SJuan Quintela    ;;
2881a4bf6780SJuan Quintela
2882a4bf6780SJuan Quintela    sdl|wav)
28832f6a1ab0Sblueswir1    # XXX: Probes for CoreAudio, DirectSound, SDL(?)
28842f6a1ab0Sblueswir1    ;;
28852f6a1ab0Sblueswir1
2886e4c63a6aSmalc    *)
28871c9b2a52Smalc    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
288876ad07a4SPeter Maydell        error_exit "Unknown driver '$drv' selected" \
288976ad07a4SPeter Maydell            "Possible drivers are: $audio_possible_drivers"
2890e4c63a6aSmalc    }
2891e4c63a6aSmalc    ;;
2892c2de5c91Smalc    esac
2893c2de5c91Smalcdone
28948f28f3fbSths
28954d3b6f6eSbalrog##########################################
28962e4d9fb1Saurel32# BrlAPI probe
28972e4d9fb1Saurel32
28984ffcedb6SJuan Quintelaif test "$brlapi" != "no" ; then
2899eb82284fSJuan Quintela  brlapi_libs="-lbrlapi"
29002e4d9fb1Saurel32  cat > $TMPC << EOF
29012e4d9fb1Saurel32#include <brlapi.h>
2902832ce9c2SScott Wood#include <stddef.h>
29032e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
29042e4d9fb1Saurel32EOF
290552166aa0SJuan Quintela  if compile_prog "" "$brlapi_libs" ; then
29062e4d9fb1Saurel32    brlapi=yes
2907264606b3SJuan Quintela    libs_softmmu="$brlapi_libs $libs_softmmu"
29084ffcedb6SJuan Quintela  else
29094ffcedb6SJuan Quintela    if test "$brlapi" = "yes" ; then
291021684af0SStewart Smith      feature_not_found "brlapi" "Install brlapi devel"
29114ffcedb6SJuan Quintela    fi
29124ffcedb6SJuan Quintela    brlapi=no
2913eb82284fSJuan Quintela  fi
2914eb82284fSJuan Quintelafi
29152e4d9fb1Saurel32
29162e4d9fb1Saurel32##########################################
29174d3b6f6eSbalrog# curses probe
2918a3605bf6SMichael Tokarevif test "$curses" != "no" ; then
2919e095e2f3SStefan Weil  if test "$mingw32" = "yes" ; then
2920*8ddc5bf9SSamuel Thibault    curses_inc_list="$($pkg_config --cflags ncurses 2>/dev/null):"
2921*8ddc5bf9SSamuel Thibault    curses_lib_list="$($pkg_config --libs ncurses 2>/dev/null):-lpdcurses"
2922e095e2f3SStefan Weil  else
2923*8ddc5bf9SSamuel Thibault    curses_inc_list="$($pkg_config --cflags ncursesw 2>/dev/null):"
2924*8ddc5bf9SSamuel Thibault    curses_lib_list="$($pkg_config --libs ncursesw 2>/dev/null):-lncursesw:-lcursesw"
2925e095e2f3SStefan Weil  fi
2926c584a6d0SJuan Quintela  curses_found=no
29274d3b6f6eSbalrog  cat > $TMPC << EOF
2928*8ddc5bf9SSamuel Thibault#include <locale.h>
29294d3b6f6eSbalrog#include <curses.h>
2930*8ddc5bf9SSamuel Thibault#include <wchar.h>
2931ef9a2524SStefan Weilint main(void) {
2932ef9a2524SStefan Weil  const char *s = curses_version();
2933*8ddc5bf9SSamuel Thibault  wchar_t wch = L'w';
2934*8ddc5bf9SSamuel Thibault  setlocale(LC_ALL, "");
2935ef9a2524SStefan Weil  resize_term(0, 0);
2936*8ddc5bf9SSamuel Thibault  addwstr(L"wide chars\n");
2937*8ddc5bf9SSamuel Thibault  addnwstr(&wch, 1);
2938ef9a2524SStefan Weil  return s != 0;
2939ef9a2524SStefan Weil}
29404d3b6f6eSbalrogEOF
2941ecbe251fSVadim Evard  IFS=:
2942*8ddc5bf9SSamuel Thibault  for curses_inc in $curses_inc_list; do
2943*8ddc5bf9SSamuel Thibault    for curses_lib in $curses_lib_list; do
2944ecbe251fSVadim Evard      unset IFS
2945*8ddc5bf9SSamuel Thibault      if compile_prog "$curses_inc" "$curses_lib" ; then
2946c584a6d0SJuan Quintela        curses_found=yes
2947*8ddc5bf9SSamuel Thibault        QEMU_CFLAGS="$curses_inc $QEMU_CFLAGS"
29484f78ef9aSJuan Quintela        libs_softmmu="$curses_lib $libs_softmmu"
29494f78ef9aSJuan Quintela        break
29504d3b6f6eSbalrog      fi
29514f78ef9aSJuan Quintela    done
2952*8ddc5bf9SSamuel Thibault  done
2953ecbe251fSVadim Evard  unset IFS
2954c584a6d0SJuan Quintela  if test "$curses_found" = "yes" ; then
2955c584a6d0SJuan Quintela    curses=yes
2956c584a6d0SJuan Quintela  else
2957c584a6d0SJuan Quintela    if test "$curses" = "yes" ; then
295821684af0SStewart Smith      feature_not_found "curses" "Install ncurses devel"
2959c584a6d0SJuan Quintela    fi
2960c584a6d0SJuan Quintela    curses=no
2961c584a6d0SJuan Quintela  fi
29624f78ef9aSJuan Quintelafi
29634d3b6f6eSbalrog
2964414f0dabSblueswir1##########################################
2965769ce76dSAlexander Graf# curl probe
2966a3605bf6SMichael Tokarevif test "$curl" != "no" ; then
296765d5d3f9SStefan Weil  if $pkg_config libcurl --exists; then
2968a8bd70adSPaolo Bonzini    curlconfig="$pkg_config libcurl"
29694e2b0658SPaolo Bonzini  else
29704e2b0658SPaolo Bonzini    curlconfig=curl-config
29714e2b0658SPaolo Bonzini  fi
2972769ce76dSAlexander Graf  cat > $TMPC << EOF
2973769ce76dSAlexander Graf#include <curl/curl.h>
29740b862cedSPeter Maydellint main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; }
2975769ce76dSAlexander GrafEOF
297689138857SStefan Weil  curl_cflags=$($curlconfig --cflags 2>/dev/null)
297789138857SStefan Weil  curl_libs=$($curlconfig --libs 2>/dev/null)
2978b1d5a277SJuan Quintela  if compile_prog "$curl_cflags" "$curl_libs" ; then
2979769ce76dSAlexander Graf    curl=yes
2980788c8196SJuan Quintela  else
2981788c8196SJuan Quintela    if test "$curl" = "yes" ; then
298221684af0SStewart Smith      feature_not_found "curl" "Install libcurl devel"
2983788c8196SJuan Quintela    fi
2984788c8196SJuan Quintela    curl=no
2985769ce76dSAlexander Graf  fi
2986769ce76dSAlexander Graffi # test "$curl"
2987769ce76dSAlexander Graf
2988769ce76dSAlexander Graf##########################################
2989fb599c9aSbalrog# bluez support probe
2990a20a6f46SJuan Quintelaif test "$bluez" != "no" ; then
2991e820e3f4Sbalrog  cat > $TMPC << EOF
2992e820e3f4Sbalrog#include <bluetooth/bluetooth.h>
2993e820e3f4Sbalrogint main(void) { return bt_error(0); }
2994e820e3f4SbalrogEOF
299589138857SStefan Weil  bluez_cflags=$($pkg_config --cflags bluez 2>/dev/null)
299689138857SStefan Weil  bluez_libs=$($pkg_config --libs bluez 2>/dev/null)
299752166aa0SJuan Quintela  if compile_prog "$bluez_cflags" "$bluez_libs" ; then
2998a20a6f46SJuan Quintela    bluez=yes
2999e482d56aSJuan Quintela    libs_softmmu="$bluez_libs $libs_softmmu"
3000e820e3f4Sbalrog  else
3001a20a6f46SJuan Quintela    if test "$bluez" = "yes" ; then
300221684af0SStewart Smith      feature_not_found "bluez" "Install bluez-libs/libbluetooth devel"
3003a20a6f46SJuan Quintela    fi
3004e820e3f4Sbalrog    bluez="no"
3005e820e3f4Sbalrog  fi
3006fb599c9aSbalrogfi
3007fb599c9aSbalrog
3008fb599c9aSbalrog##########################################
3009e18df141SAnthony Liguori# glib support probe
3010a52d28afSPaolo Bonzini
3011f40685c6SJohn Snowglib_req_ver=2.22
3012aa0d1f44SPaolo Bonziniglib_modules=gthread-2.0
3013aa0d1f44SPaolo Bonziniif test "$modules" = yes; then
3014aa0d1f44SPaolo Bonzini    glib_modules="$glib_modules gmodule-2.0"
3015aa0d1f44SPaolo Bonzinifi
3016e26110cfSFam Zheng
3017aa0d1f44SPaolo Bonzinifor i in $glib_modules; do
3018e26110cfSFam Zheng    if $pkg_config --atleast-version=$glib_req_ver $i; then
301989138857SStefan Weil        glib_cflags=$($pkg_config --cflags $i)
302089138857SStefan Weil        glib_libs=$($pkg_config --libs $i)
30214a058899SMarc-André Lureau        QEMU_CFLAGS="$glib_cflags $QEMU_CFLAGS"
302214015304SAnthony Liguori        LIBS="$glib_libs $LIBS"
3023957f1f99SMichael Roth        libs_qga="$glib_libs $libs_qga"
3024e18df141SAnthony Liguori    else
3025e26110cfSFam Zheng        error_exit "glib-$glib_req_ver $i is required to compile QEMU"
3026e26110cfSFam Zheng    fi
3027e26110cfSFam Zhengdone
3028e26110cfSFam Zheng
3029977a82abSDaniel P. Berrange# Sanity check that the current size_t matches the
3030977a82abSDaniel P. Berrange# size that glib thinks it should be. This catches
3031977a82abSDaniel P. Berrange# problems on multi-arch where people try to build
3032977a82abSDaniel P. Berrange# 32-bit QEMU while pointing at 64-bit glib headers
3033977a82abSDaniel P. Berrangecat > $TMPC <<EOF
3034977a82abSDaniel P. Berrange#include <glib.h>
3035977a82abSDaniel P. Berrange#include <unistd.h>
3036977a82abSDaniel P. Berrange
3037977a82abSDaniel P. Berrange#define QEMU_BUILD_BUG_ON(x) \
3038977a82abSDaniel P. Berrange  typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused));
3039977a82abSDaniel P. Berrange
3040977a82abSDaniel P. Berrangeint main(void) {
3041977a82abSDaniel P. Berrange   QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T);
3042977a82abSDaniel P. Berrange   return 0;
3043977a82abSDaniel P. Berrange}
3044977a82abSDaniel P. BerrangeEOF
3045977a82abSDaniel P. Berrange
30465919e032SStefan Weilif ! compile_prog "$CFLAGS" "$LIBS" ; then
3047977a82abSDaniel P. Berrange    error_exit "sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T."\
3048977a82abSDaniel P. Berrange               "You probably need to set PKG_CONFIG_LIBDIR"\
3049977a82abSDaniel P. Berrange	       "to point to the right pkg-config files for your"\
3050977a82abSDaniel P. Berrange	       "build target"
3051977a82abSDaniel P. Berrangefi
3052977a82abSDaniel P. Berrange
30539d41401bSMichael S. Tsirkin# g_test_trap_subprocess added in 2.38. Used by some tests.
30549d41401bSMichael S. Tsirkinglib_subprocess=yes
30557ad9339eSEduardo Habkostif test "$mingw32" = "yes" || ! $pkg_config --atleast-version=2.38 glib-2.0; then
30569d41401bSMichael S. Tsirkin    glib_subprocess=no
30579d41401bSMichael S. Tsirkinfi
30589d41401bSMichael S. Tsirkin
3059bbbf2e04SJohn Snow# Silence clang 3.5.0 warnings about glib attribute __alloc_size__ usage
3060bbbf2e04SJohn Snowcat > $TMPC << EOF
3061bbbf2e04SJohn Snow#include <glib.h>
3062bbbf2e04SJohn Snowint main(void) { return 0; }
3063bbbf2e04SJohn SnowEOF
3064bbbf2e04SJohn Snowif ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then
3065bbbf2e04SJohn Snow    if cc_has_warning_flag "-Wno-unknown-attributes"; then
3066bbbf2e04SJohn Snow        glib_cflags="-Wno-unknown-attributes $glib_cflags"
3067bbbf2e04SJohn Snow        CFLAGS="-Wno-unknown-attributes $CFLAGS"
3068bbbf2e04SJohn Snow    fi
3069bbbf2e04SJohn Snowfi
3070bbbf2e04SJohn Snow
3071e26110cfSFam Zheng##########################################
3072e26110cfSFam Zheng# SHA command probe for modules
3073e26110cfSFam Zhengif test "$modules" = yes; then
3074e26110cfSFam Zheng    shacmd_probe="sha1sum sha1 shasum"
3075e26110cfSFam Zheng    for c in $shacmd_probe; do
30768ccefb91SFam Zheng        if has $c; then
3077e26110cfSFam Zheng            shacmd="$c"
3078e26110cfSFam Zheng            break
3079e26110cfSFam Zheng        fi
3080e26110cfSFam Zheng    done
3081e26110cfSFam Zheng    if test "$shacmd" = ""; then
3082e26110cfSFam Zheng        error_exit "one of the checksum commands is required to enable modules: $shacmd_probe"
3083e26110cfSFam Zheng    fi
3084e18df141SAnthony Liguorifi
3085e18df141SAnthony Liguori
3086e18df141SAnthony Liguori##########################################
3087e2134eb9SGerd Hoffmann# pixman support probe
3088e2134eb9SGerd Hoffmann
3089e2134eb9SGerd Hoffmannif test "$pixman" = ""; then
309074880fe2SRobert Schiele  if test "$want_tools" = "no" -a "$softmmu" = "no"; then
309174880fe2SRobert Schiele    pixman="none"
3092236f282cSHu Tao  elif $pkg_config --atleast-version=0.21.8 pixman-1 > /dev/null 2>&1; then
3093e2134eb9SGerd Hoffmann    pixman="system"
3094e2134eb9SGerd Hoffmann  else
3095e2134eb9SGerd Hoffmann    pixman="internal"
3096e2134eb9SGerd Hoffmann  fi
3097e2134eb9SGerd Hoffmannfi
309874880fe2SRobert Schieleif test "$pixman" = "none"; then
309974880fe2SRobert Schiele  if test "$want_tools" != "no" -o "$softmmu" != "no"; then
310076ad07a4SPeter Maydell    error_exit "pixman disabled but system emulation or tools build" \
310176ad07a4SPeter Maydell        "enabled.  You can turn off pixman only if you also" \
310276ad07a4SPeter Maydell        "disable all system emulation targets and the tools" \
310376ad07a4SPeter Maydell        "build with '--disable-tools --disable-system'."
310474880fe2SRobert Schiele  fi
310574880fe2SRobert Schiele  pixman_cflags=
310674880fe2SRobert Schiele  pixman_libs=
310774880fe2SRobert Schieleelif test "$pixman" = "system"; then
3108236f282cSHu Tao  # pixman version has been checked above
310989138857SStefan Weil  pixman_cflags=$($pkg_config --cflags pixman-1)
311089138857SStefan Weil  pixman_libs=$($pkg_config --libs pixman-1)
3111e2134eb9SGerd Hoffmannelse
3112e2134eb9SGerd Hoffmann  if test ! -d ${source_path}/pixman/pixman; then
3113236f282cSHu Tao    error_exit "pixman >= 0.21.8 not present. Your options:" \
311476ad07a4SPeter Maydell        "  (1) Preferred: Install the pixman devel package (any recent" \
311576ad07a4SPeter Maydell        "      distro should have packages as Xorg needs pixman too)." \
311676ad07a4SPeter Maydell        "  (2) Fetch the pixman submodule, using:" \
311776ad07a4SPeter Maydell        "      git submodule update --init pixman"
3118e2134eb9SGerd Hoffmann  fi
31195ca9388aSGerd Hoffmann  mkdir -p pixman/pixman
31205ca9388aSGerd Hoffmann  pixman_cflags="-I\$(SRC_PATH)/pixman/pixman -I\$(BUILD_DIR)/pixman/pixman"
31215ca9388aSGerd Hoffmann  pixman_libs="-L\$(BUILD_DIR)/pixman/pixman/.libs -lpixman-1"
3122e2134eb9SGerd Hoffmannfi
3123e2134eb9SGerd Hoffmann
3124e2134eb9SGerd Hoffmann##########################################
312517bff52bSM. Mohan Kumar# libcap probe
312617bff52bSM. Mohan Kumar
312717bff52bSM. Mohan Kumarif test "$cap" != "no" ; then
312817bff52bSM. Mohan Kumar  cat > $TMPC <<EOF
312917bff52bSM. Mohan Kumar#include <stdio.h>
313017bff52bSM. Mohan Kumar#include <sys/capability.h>
3131cc939743SStefan Weilint main(void) { cap_t caps; caps = cap_init(); return caps != NULL; }
313217bff52bSM. Mohan KumarEOF
313317bff52bSM. Mohan Kumar  if compile_prog "" "-lcap" ; then
313417bff52bSM. Mohan Kumar    cap=yes
313517bff52bSM. Mohan Kumar  else
313617bff52bSM. Mohan Kumar    cap=no
313717bff52bSM. Mohan Kumar  fi
313817bff52bSM. Mohan Kumarfi
313917bff52bSM. Mohan Kumar
314017bff52bSM. Mohan Kumar##########################################
3141e5d355d1Saliguori# pthread probe
31424b29ec41SBradPTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2"
31433c529d93Saliguori
3144e5d355d1Saliguoripthread=no
3145414f0dabSblueswir1cat > $TMPC << EOF
31463c529d93Saliguori#include <pthread.h>
31477a42bbe4SStefan Weilstatic void *f(void *p) { return NULL; }
31487a42bbe4SStefan Weilint main(void) {
31497a42bbe4SStefan Weil  pthread_t thread;
31507a42bbe4SStefan Weil  pthread_create(&thread, 0, f, 0);
31517a42bbe4SStefan Weil  return 0;
31527a42bbe4SStefan Weil}
3153414f0dabSblueswir1EOF
3154bd00d539SAndreas Färberif compile_prog "" "" ; then
3155bd00d539SAndreas Färber  pthread=yes
3156bd00d539SAndreas Färberelse
3157de65fe0fSSebastian Herbszt  for pthread_lib in $PTHREADLIBS_LIST; do
315852166aa0SJuan Quintela    if compile_prog "" "$pthread_lib" ; then
3159e5d355d1Saliguori      pthread=yes
3160e3c56761SPeter Portante      found=no
3161e3c56761SPeter Portante      for lib_entry in $LIBS; do
3162e3c56761SPeter Portante        if test "$lib_entry" = "$pthread_lib"; then
3163e3c56761SPeter Portante          found=yes
3164e3c56761SPeter Portante          break
3165e3c56761SPeter Portante        fi
3166e3c56761SPeter Portante      done
3167e3c56761SPeter Portante      if test "$found" = "no"; then
31685572b539SJuan Quintela        LIBS="$pthread_lib $LIBS"
3169e3c56761SPeter Portante      fi
3170409437e1SDaniel P. Berrange      PTHREAD_LIB="$pthread_lib"
3171de65fe0fSSebastian Herbszt      break
3172414f0dabSblueswir1    fi
3173de65fe0fSSebastian Herbszt  done
3174bd00d539SAndreas Färberfi
3175414f0dabSblueswir1
31764617e593SAnthony Liguoriif test "$mingw32" != yes -a "$pthread" = no; then
317776ad07a4SPeter Maydell  error_exit "pthread check failed" \
317876ad07a4SPeter Maydell      "Make sure to have the pthread libs and headers installed."
3179e5d355d1Saliguorifi
3180e5d355d1Saliguori
31815c312079SDr. David Alan Gilbert# check for pthread_setname_np
31825c312079SDr. David Alan Gilbertpthread_setname_np=no
31835c312079SDr. David Alan Gilbertcat > $TMPC << EOF
31845c312079SDr. David Alan Gilbert#include <pthread.h>
31855c312079SDr. David Alan Gilbert
31865c312079SDr. David Alan Gilbertstatic void *f(void *p) { return NULL; }
31875c312079SDr. David Alan Gilbertint main(void)
31885c312079SDr. David Alan Gilbert{
31895c312079SDr. David Alan Gilbert    pthread_t thread;
31905c312079SDr. David Alan Gilbert    pthread_create(&thread, 0, f, 0);
31915c312079SDr. David Alan Gilbert    pthread_setname_np(thread, "QEMU");
31925c312079SDr. David Alan Gilbert    return 0;
31935c312079SDr. David Alan Gilbert}
31945c312079SDr. David Alan GilbertEOF
31955c312079SDr. David Alan Gilbertif compile_prog "" "$pthread_lib" ; then
31965c312079SDr. David Alan Gilbert  pthread_setname_np=yes
31975c312079SDr. David Alan Gilbertfi
31985c312079SDr. David Alan Gilbert
3199bf9298b9Saliguori##########################################
3200f27aaf4bSChristian Brunner# rbd probe
3201f27aaf4bSChristian Brunnerif test "$rbd" != "no" ; then
3202f27aaf4bSChristian Brunner  cat > $TMPC <<EOF
3203f27aaf4bSChristian Brunner#include <stdio.h>
3204ad32e9c0SJosh Durgin#include <rbd/librbd.h>
3205f27aaf4bSChristian Brunnerint main(void) {
3206ad32e9c0SJosh Durgin    rados_t cluster;
3207ad32e9c0SJosh Durgin    rados_create(&cluster, NULL);
3208f27aaf4bSChristian Brunner    return 0;
3209f27aaf4bSChristian Brunner}
3210f27aaf4bSChristian BrunnerEOF
3211ad32e9c0SJosh Durgin  rbd_libs="-lrbd -lrados"
3212f27aaf4bSChristian Brunner  if compile_prog "" "$rbd_libs" ; then
3213f27aaf4bSChristian Brunner    rbd=yes
3214f27aaf4bSChristian Brunner  else
3215f27aaf4bSChristian Brunner    if test "$rbd" = "yes" ; then
321621684af0SStewart Smith      feature_not_found "rados block device" "Install librbd/ceph devel"
3217f27aaf4bSChristian Brunner    fi
3218f27aaf4bSChristian Brunner    rbd=no
3219f27aaf4bSChristian Brunner  fi
3220f27aaf4bSChristian Brunnerfi
3221f27aaf4bSChristian Brunner
3222f27aaf4bSChristian Brunner##########################################
32230a12ec87SRichard W.M. Jones# libssh2 probe
32244fc16838SRichard W.M. Jonesmin_libssh2_version=1.2.8
32250a12ec87SRichard W.M. Jonesif test "$libssh2" != "no" ; then
322665d5d3f9SStefan Weil  if $pkg_config --atleast-version=$min_libssh2_version libssh2; then
322789138857SStefan Weil    libssh2_cflags=$($pkg_config libssh2 --cflags)
322889138857SStefan Weil    libssh2_libs=$($pkg_config libssh2 --libs)
32290a12ec87SRichard W.M. Jones    libssh2=yes
32300a12ec87SRichard W.M. Jones  else
32310a12ec87SRichard W.M. Jones    if test "$libssh2" = "yes" ; then
32324fc16838SRichard W.M. Jones      error_exit "libssh2 >= $min_libssh2_version required for --enable-libssh2"
32330a12ec87SRichard W.M. Jones    fi
32340a12ec87SRichard W.M. Jones    libssh2=no
32350a12ec87SRichard W.M. Jones  fi
32360a12ec87SRichard W.M. Jonesfi
32370a12ec87SRichard W.M. Jones
32380a12ec87SRichard W.M. Jones##########################################
32399a2d462eSRichard W.M. Jones# libssh2_sftp_fsync probe
32409a2d462eSRichard W.M. Jones
32419a2d462eSRichard W.M. Jonesif test "$libssh2" = "yes"; then
32429a2d462eSRichard W.M. Jones  cat > $TMPC <<EOF
32439a2d462eSRichard W.M. Jones#include <stdio.h>
32449a2d462eSRichard W.M. Jones#include <libssh2.h>
32459a2d462eSRichard W.M. Jones#include <libssh2_sftp.h>
32469a2d462eSRichard W.M. Jonesint main(void) {
32479a2d462eSRichard W.M. Jones    LIBSSH2_SESSION *session;
32489a2d462eSRichard W.M. Jones    LIBSSH2_SFTP *sftp;
32499a2d462eSRichard W.M. Jones    LIBSSH2_SFTP_HANDLE *sftp_handle;
32509a2d462eSRichard W.M. Jones    session = libssh2_session_init ();
32519a2d462eSRichard W.M. Jones    sftp = libssh2_sftp_init (session);
32529a2d462eSRichard W.M. Jones    sftp_handle = libssh2_sftp_open (sftp, "/", 0, 0);
32539a2d462eSRichard W.M. Jones    libssh2_sftp_fsync (sftp_handle);
32549a2d462eSRichard W.M. Jones    return 0;
32559a2d462eSRichard W.M. Jones}
32569a2d462eSRichard W.M. JonesEOF
32579a2d462eSRichard W.M. Jones  # libssh2_cflags/libssh2_libs defined in previous test.
32589a2d462eSRichard W.M. Jones  if compile_prog "$libssh2_cflags" "$libssh2_libs" ; then
32599a2d462eSRichard W.M. Jones    QEMU_CFLAGS="-DHAS_LIBSSH2_SFTP_FSYNC $QEMU_CFLAGS"
32609a2d462eSRichard W.M. Jones  fi
32619a2d462eSRichard W.M. Jonesfi
32629a2d462eSRichard W.M. Jones
32639a2d462eSRichard W.M. Jones##########################################
32645c6c3a6cSChristoph Hellwig# linux-aio probe
32655c6c3a6cSChristoph Hellwig
32665c6c3a6cSChristoph Hellwigif test "$linux_aio" != "no" ; then
32675c6c3a6cSChristoph Hellwig  cat > $TMPC <<EOF
32685c6c3a6cSChristoph Hellwig#include <libaio.h>
32695c6c3a6cSChristoph Hellwig#include <sys/eventfd.h>
3270832ce9c2SScott Wood#include <stddef.h>
32715c6c3a6cSChristoph Hellwigint main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
32725c6c3a6cSChristoph HellwigEOF
32735c6c3a6cSChristoph Hellwig  if compile_prog "" "-laio" ; then
32745c6c3a6cSChristoph Hellwig    linux_aio=yes
32755c6c3a6cSChristoph Hellwig  else
32765c6c3a6cSChristoph Hellwig    if test "$linux_aio" = "yes" ; then
327721684af0SStewart Smith      feature_not_found "linux AIO" "Install libaio devel"
32785c6c3a6cSChristoph Hellwig    fi
32793cfcae3cSLuiz Capitulino    linux_aio=no
32805c6c3a6cSChristoph Hellwig  fi
32815c6c3a6cSChristoph Hellwigfi
32825c6c3a6cSChristoph Hellwig
32835c6c3a6cSChristoph Hellwig##########################################
32843b8acc11SPaolo Bonzini# TPM passthrough is only on x86 Linux
32853b8acc11SPaolo Bonzini
32863b8acc11SPaolo Bonziniif test "$targetos" = Linux && test "$cpu" = i386 -o "$cpu" = x86_64; then
32873b8acc11SPaolo Bonzini  tpm_passthrough=$tpm
32883b8acc11SPaolo Bonzinielse
32893b8acc11SPaolo Bonzini  tpm_passthrough=no
32903b8acc11SPaolo Bonzinifi
32913b8acc11SPaolo Bonzini
32923b8acc11SPaolo Bonzini##########################################
3293758e8e38SVenkateswararao Jujjuri (JV)# attr probe
3294758e8e38SVenkateswararao Jujjuri (JV)
3295758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" != "no" ; then
3296758e8e38SVenkateswararao Jujjuri (JV)  cat > $TMPC <<EOF
3297758e8e38SVenkateswararao Jujjuri (JV)#include <stdio.h>
3298758e8e38SVenkateswararao Jujjuri (JV)#include <sys/types.h>
3299f2338fb4SPavel Borzenkov#ifdef CONFIG_LIBATTR
3300f2338fb4SPavel Borzenkov#include <attr/xattr.h>
3301f2338fb4SPavel Borzenkov#else
33024f26f2b6SAvi Kivity#include <sys/xattr.h>
3303f2338fb4SPavel Borzenkov#endif
3304758e8e38SVenkateswararao Jujjuri (JV)int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
3305758e8e38SVenkateswararao Jujjuri (JV)EOF
33064f26f2b6SAvi Kivity  if compile_prog "" "" ; then
33074f26f2b6SAvi Kivity    attr=yes
33084f26f2b6SAvi Kivity  # Older distros have <attr/xattr.h>, and need -lattr:
3309f2338fb4SPavel Borzenkov  elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then
3310758e8e38SVenkateswararao Jujjuri (JV)    attr=yes
3311758e8e38SVenkateswararao Jujjuri (JV)    LIBS="-lattr $LIBS"
33124f26f2b6SAvi Kivity    libattr=yes
3313758e8e38SVenkateswararao Jujjuri (JV)  else
3314758e8e38SVenkateswararao Jujjuri (JV)    if test "$attr" = "yes" ; then
331521684af0SStewart Smith      feature_not_found "ATTR" "Install libc6 or libattr devel"
3316758e8e38SVenkateswararao Jujjuri (JV)    fi
3317758e8e38SVenkateswararao Jujjuri (JV)    attr=no
3318758e8e38SVenkateswararao Jujjuri (JV)  fi
3319758e8e38SVenkateswararao Jujjuri (JV)fi
3320758e8e38SVenkateswararao Jujjuri (JV)
3321758e8e38SVenkateswararao Jujjuri (JV)##########################################
3322bf9298b9Saliguori# iovec probe
3323bf9298b9Saliguoricat > $TMPC <<EOF
3324db34f0b3Sblueswir1#include <sys/types.h>
3325bf9298b9Saliguori#include <sys/uio.h>
3326db34f0b3Sblueswir1#include <unistd.h>
3327f91f9beeSStefan Weilint main(void) { return sizeof(struct iovec); }
3328bf9298b9SaliguoriEOF
3329bf9298b9Saliguoriiovec=no
333052166aa0SJuan Quintelaif compile_prog "" "" ; then
3331bf9298b9Saliguori  iovec=yes
3332bf9298b9Saliguorifi
3333bf9298b9Saliguori
3334f652e6afSaurel32##########################################
3335ceb42de8Saliguori# preadv probe
3336ceb42de8Saliguoricat > $TMPC <<EOF
3337ceb42de8Saliguori#include <sys/types.h>
3338ceb42de8Saliguori#include <sys/uio.h>
3339ceb42de8Saliguori#include <unistd.h>
3340c075a723SBlue Swirlint main(void) { return preadv(0, 0, 0, 0); }
3341ceb42de8SaliguoriEOF
3342ceb42de8Saliguoripreadv=no
334352166aa0SJuan Quintelaif compile_prog "" "" ; then
3344ceb42de8Saliguori  preadv=yes
3345ceb42de8Saliguorifi
3346ceb42de8Saliguori
3347ceb42de8Saliguori##########################################
3348f652e6afSaurel32# fdt probe
3349e169e1e1SPeter Maydell# fdt support is mandatory for at least some target architectures,
3350e169e1e1SPeter Maydell# so insist on it if we're building those system emulators.
3351e169e1e1SPeter Maydellfdt_required=no
3352e169e1e1SPeter Maydellfor target in $target_list; do
3353e169e1e1SPeter Maydell  case $target in
33546a49fa95SAlexander Graf    aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu)
3355e169e1e1SPeter Maydell      fdt_required=yes
3356e169e1e1SPeter Maydell    ;;
3357e169e1e1SPeter Maydell  esac
3358e169e1e1SPeter Maydelldone
3359e169e1e1SPeter Maydell
3360e169e1e1SPeter Maydellif test "$fdt_required" = "yes"; then
3361e169e1e1SPeter Maydell  if test "$fdt" = "no"; then
3362e169e1e1SPeter Maydell    error_exit "fdt disabled but some requested targets require it." \
3363e169e1e1SPeter Maydell      "You can turn off fdt only if you also disable all the system emulation" \
3364e169e1e1SPeter Maydell      "targets which need it (by specifying a cut down --target-list)."
3365e169e1e1SPeter Maydell  fi
3366e169e1e1SPeter Maydell  fdt=yes
3367e169e1e1SPeter Maydellfi
3368e169e1e1SPeter Maydell
33692df87df7SJuan Quintelaif test "$fdt" != "no" ; then
3370b41af4baSJuan Quintela  fdt_libs="-lfdt"
337196ce6545SPeter Crosthwaite  # explicitly check for libfdt_env.h as it is missing in some stable installs
337231ce0adbSThomas Huth  # and test for required functions to make sure we are on a version >= 1.4.0
3373f652e6afSaurel32  cat > $TMPC << EOF
337431ce0adbSThomas Huth#include <libfdt.h>
337596ce6545SPeter Crosthwaite#include <libfdt_env.h>
337631ce0adbSThomas Huthint main(void) { fdt_get_property_by_offset(0, 0, 0); return 0; }
3377f652e6afSaurel32EOF
337852166aa0SJuan Quintela  if compile_prog "" "$fdt_libs" ; then
3379a540f158SPeter Crosthwaite    # system DTC is good - use it
3380f652e6afSaurel32    fdt=yes
3381a540f158SPeter Crosthwaite  elif test -d ${source_path}/dtc/libfdt ; then
3382a540f158SPeter Crosthwaite    # have submodule DTC - use it
3383a540f158SPeter Crosthwaite    fdt=yes
3384a540f158SPeter Crosthwaite    dtc_internal="yes"
3385a540f158SPeter Crosthwaite    mkdir -p dtc
3386cab00a5aSMichael S. Tsirkin    if [ "$pwd_is_source_path" != "y" ] ; then
3387a540f158SPeter Crosthwaite       symlink "$source_path/dtc/Makefile" "dtc/Makefile"
3388a540f158SPeter Crosthwaite       symlink "$source_path/dtc/scripts" "dtc/scripts"
33892df87df7SJuan Quintela    fi
3390a540f158SPeter Crosthwaite    fdt_cflags="-I\$(SRC_PATH)/dtc/libfdt"
3391a540f158SPeter Crosthwaite    fdt_libs="-L\$(BUILD_DIR)/dtc/libfdt $fdt_libs"
3392a540f158SPeter Crosthwaite  elif test "$fdt" = "yes" ; then
3393a540f158SPeter Crosthwaite    # have neither and want - prompt for system/submodule install
339431ce0adbSThomas Huth    error_exit "DTC (libfdt) version >= 1.4.0 not present. Your options:" \
33953f281822SStewart Smith        "  (1) Preferred: Install the DTC (libfdt) devel package" \
3396a540f158SPeter Crosthwaite        "  (2) Fetch the DTC submodule, using:" \
3397a540f158SPeter Crosthwaite        "      git submodule update --init dtc"
3398a540f158SPeter Crosthwaite  else
3399a540f158SPeter Crosthwaite    # don't have and don't want
3400de3a354aSMichael Walle    fdt_libs=
34012df87df7SJuan Quintela    fdt=no
3402f652e6afSaurel32  fi
3403f652e6afSaurel32fi
3404f652e6afSaurel32
3405a540f158SPeter Crosthwaitelibs_softmmu="$libs_softmmu $fdt_libs"
3406a540f158SPeter Crosthwaite
340720ff075bSMichael Walle##########################################
3408fb719563SOGAWA Hirofumi# opengl probe (for sdl2, gtk, milkymist-tmu2)
3409b1546f32SGerd Hoffmann
3410da076ffeSGerd Hoffmannif test "$opengl" != "no" ; then
3411014cb152SGerd Hoffmann  opengl_pkgs="epoxy libdrm gbm"
3412fb719563SOGAWA Hirofumi  if $pkg_config $opengl_pkgs x11; then
3413f676c67eSJeremy White    opengl_cflags="$($pkg_config --cflags $opengl_pkgs) $x11_cflags"
3414f676c67eSJeremy White    opengl_libs="$($pkg_config --libs $opengl_pkgs) $x11_libs"
3415da076ffeSGerd Hoffmann    opengl=yes
3416925a0400SGerd Hoffmann    if test "$gtk" = "yes" && $pkg_config --exists "$gtkpackage >= 3.16"; then
3417925a0400SGerd Hoffmann        gtk_gl="yes"
3418925a0400SGerd Hoffmann    fi
341920ff075bSMichael Walle  else
3420da076ffeSGerd Hoffmann    if test "$opengl" = "yes" ; then
3421dcf30025SGerd Hoffmann      feature_not_found "opengl" "Please install opengl (mesa) devel pkgs: $opengl_pkgs"
342220ff075bSMichael Walle    fi
3423f676c67eSJeremy White    opengl_cflags=""
3424da076ffeSGerd Hoffmann    opengl_libs=""
3425da076ffeSGerd Hoffmann    opengl=no
342620ff075bSMichael Walle  fi
342720ff075bSMichael Wallefi
342820ff075bSMichael Walle
3429014cb152SGerd Hoffmannif test "$opengl" = "yes"; then
3430014cb152SGerd Hoffmann  cat > $TMPC << EOF
3431014cb152SGerd Hoffmann#include <epoxy/egl.h>
3432014cb152SGerd Hoffmann#ifndef EGL_MESA_image_dma_buf_export
3433014cb152SGerd Hoffmann# error mesa/epoxy lacks support for dmabufs (mesa 10.6+)
3434014cb152SGerd Hoffmann#endif
3435014cb152SGerd Hoffmannint main(void) { return 0; }
3436014cb152SGerd HoffmannEOF
3437014cb152SGerd Hoffmann  if compile_prog "" "" ; then
3438014cb152SGerd Hoffmann    opengl_dmabuf=yes
3439014cb152SGerd Hoffmann  fi
3440014cb152SGerd Hoffmannfi
3441c9a12e75SChrysostomos Nanakos
3442c9a12e75SChrysostomos Nanakos##########################################
3443c9a12e75SChrysostomos Nanakos# archipelago probe
3444c9a12e75SChrysostomos Nanakosif test "$archipelago" != "no" ; then
3445c9a12e75SChrysostomos Nanakos    cat > $TMPC <<EOF
3446c9a12e75SChrysostomos Nanakos#include <stdio.h>
3447c9a12e75SChrysostomos Nanakos#include <xseg/xseg.h>
3448c9a12e75SChrysostomos Nanakos#include <xseg/protocol.h>
3449c9a12e75SChrysostomos Nanakosint main(void) {
3450c9a12e75SChrysostomos Nanakos    xseg_initialize();
3451c9a12e75SChrysostomos Nanakos    return 0;
3452c9a12e75SChrysostomos Nanakos}
3453c9a12e75SChrysostomos NanakosEOF
3454c9a12e75SChrysostomos Nanakos    archipelago_libs=-lxseg
3455c9a12e75SChrysostomos Nanakos    if compile_prog "" "$archipelago_libs"; then
3456c9a12e75SChrysostomos Nanakos        archipelago="yes"
3457c9a12e75SChrysostomos Nanakos        libs_tools="$archipelago_libs $libs_tools"
3458c9a12e75SChrysostomos Nanakos        libs_softmmu="$archipelago_libs $libs_softmmu"
34596a460ed1SStefan Hajnoczi
34606a460ed1SStefan Hajnoczi	echo "WARNING: Please check the licenses of QEMU and libxseg carefully."
34616a460ed1SStefan Hajnoczi	echo "GPLv3 versions of libxseg may not be compatible with QEMU's"
34626a460ed1SStefan Hajnoczi	echo "license and therefore prevent redistribution."
34636a460ed1SStefan Hajnoczi	echo
34646a460ed1SStefan Hajnoczi	echo "To disable Archipelago, use --disable-archipelago"
3465c9a12e75SChrysostomos Nanakos    else
3466c9a12e75SChrysostomos Nanakos      if test "$archipelago" = "yes" ; then
3467c9a12e75SChrysostomos Nanakos        feature_not_found "Archipelago backend support" "Install libxseg devel"
3468c9a12e75SChrysostomos Nanakos      fi
3469c9a12e75SChrysostomos Nanakos      archipelago="no"
3470c9a12e75SChrysostomos Nanakos    fi
3471c9a12e75SChrysostomos Nanakosfi
3472c9a12e75SChrysostomos Nanakos
3473c9a12e75SChrysostomos Nanakos
3474eb100396SBharata B Rao##########################################
3475eb100396SBharata B Rao# glusterfs probe
3476eb100396SBharata B Raoif test "$glusterfs" != "no" ; then
347765d5d3f9SStefan Weil  if $pkg_config --atleast-version=3 glusterfs-api; then
3478e01bee08SBharata B Rao    glusterfs="yes"
347989138857SStefan Weil    glusterfs_cflags=$($pkg_config --cflags glusterfs-api)
348089138857SStefan Weil    glusterfs_libs=$($pkg_config --libs glusterfs-api)
3481d85fa9ebSJeff Cody    if $pkg_config --atleast-version=4 glusterfs-api; then
3482d85fa9ebSJeff Cody      glusterfs_xlator_opt="yes"
3483d85fa9ebSJeff Cody    fi
348465d5d3f9SStefan Weil    if $pkg_config --atleast-version=5 glusterfs-api; then
34850c14fb47SBharata B Rao      glusterfs_discard="yes"
34860c14fb47SBharata B Rao    fi
34877c815372SBharata B Rao    if $pkg_config --atleast-version=6 glusterfs-api; then
34887c815372SBharata B Rao      glusterfs_zerofill="yes"
34897c815372SBharata B Rao    fi
3490eb100396SBharata B Rao  else
3491eb100396SBharata B Rao    if test "$glusterfs" = "yes" ; then
34928efc9363SHu Tao      feature_not_found "GlusterFS backend support" \
34938efc9363SHu Tao          "Install glusterfs-api devel >= 3"
3494eb100396SBharata B Rao    fi
3495e01bee08SBharata B Rao    glusterfs="no"
3496eb100396SBharata B Rao  fi
3497eb100396SBharata B Raofi
3498eb100396SBharata B Rao
349939386ac7Saurel32# Check for inotify functions when we are building linux-user
35003b3f24adSaurel32# emulator.  This is done because older glibc versions don't
35013b3f24adSaurel32# have syscall stubs for these implemented.  In that case we
35023b3f24adSaurel32# don't provide them even if kernel supports them.
35033b3f24adSaurel32#
35043b3f24adSaurel32inotify=no
35053b3f24adSaurel32cat > $TMPC << EOF
35063b3f24adSaurel32#include <sys/inotify.h>
35073b3f24adSaurel32
35083b3f24adSaurel32int
35093b3f24adSaurel32main(void)
35103b3f24adSaurel32{
35113b3f24adSaurel32	/* try to start inotify */
35128690e420Saurel32	return inotify_init();
35133b3f24adSaurel32}
35143b3f24adSaurel32EOF
351552166aa0SJuan Quintelaif compile_prog "" "" ; then
35163b3f24adSaurel32  inotify=yes
35173b3f24adSaurel32fi
35183b3f24adSaurel32
3519c05c7a73SRiku Voipioinotify1=no
3520c05c7a73SRiku Voipiocat > $TMPC << EOF
3521c05c7a73SRiku Voipio#include <sys/inotify.h>
3522c05c7a73SRiku Voipio
3523c05c7a73SRiku Voipioint
3524c05c7a73SRiku Voipiomain(void)
3525c05c7a73SRiku Voipio{
3526c05c7a73SRiku Voipio    /* try to start inotify */
3527c05c7a73SRiku Voipio    return inotify_init1(0);
3528c05c7a73SRiku Voipio}
3529c05c7a73SRiku VoipioEOF
3530c05c7a73SRiku Voipioif compile_prog "" "" ; then
3531c05c7a73SRiku Voipio  inotify1=yes
3532c05c7a73SRiku Voipiofi
3533c05c7a73SRiku Voipio
3534ebc996f3SRiku Voipio# check if utimensat and futimens are supported
3535ebc996f3SRiku Voipioutimens=no
3536ebc996f3SRiku Voipiocat > $TMPC << EOF
3537ebc996f3SRiku Voipio#define _ATFILE_SOURCE
3538ebc996f3SRiku Voipio#include <stddef.h>
3539ebc996f3SRiku Voipio#include <fcntl.h>
35403014ee00SPeter Maydell#include <sys/stat.h>
3541ebc996f3SRiku Voipio
3542ebc996f3SRiku Voipioint main(void)
3543ebc996f3SRiku Voipio{
3544ebc996f3SRiku Voipio    utimensat(AT_FDCWD, "foo", NULL, 0);
3545ebc996f3SRiku Voipio    futimens(0, NULL);
3546ebc996f3SRiku Voipio    return 0;
3547ebc996f3SRiku Voipio}
3548ebc996f3SRiku VoipioEOF
354952166aa0SJuan Quintelaif compile_prog "" "" ; then
3550ebc996f3SRiku Voipio  utimens=yes
3551ebc996f3SRiku Voipiofi
3552ebc996f3SRiku Voipio
3553099d6b0fSRiku Voipio# check if pipe2 is there
3554099d6b0fSRiku Voipiopipe2=no
3555099d6b0fSRiku Voipiocat > $TMPC << EOF
3556099d6b0fSRiku Voipio#include <unistd.h>
3557099d6b0fSRiku Voipio#include <fcntl.h>
3558099d6b0fSRiku Voipio
3559099d6b0fSRiku Voipioint main(void)
3560099d6b0fSRiku Voipio{
3561099d6b0fSRiku Voipio    int pipefd[2];
35629bca8162SBruce Rogers    return pipe2(pipefd, O_CLOEXEC);
3563099d6b0fSRiku Voipio}
3564099d6b0fSRiku VoipioEOF
356552166aa0SJuan Quintelaif compile_prog "" "" ; then
3566099d6b0fSRiku Voipio  pipe2=yes
3567099d6b0fSRiku Voipiofi
3568099d6b0fSRiku Voipio
356940ff6d7eSKevin Wolf# check if accept4 is there
357040ff6d7eSKevin Wolfaccept4=no
357140ff6d7eSKevin Wolfcat > $TMPC << EOF
357240ff6d7eSKevin Wolf#include <sys/socket.h>
357340ff6d7eSKevin Wolf#include <stddef.h>
357440ff6d7eSKevin Wolf
357540ff6d7eSKevin Wolfint main(void)
357640ff6d7eSKevin Wolf{
357740ff6d7eSKevin Wolf    accept4(0, NULL, NULL, SOCK_CLOEXEC);
357840ff6d7eSKevin Wolf    return 0;
357940ff6d7eSKevin Wolf}
358040ff6d7eSKevin WolfEOF
358140ff6d7eSKevin Wolfif compile_prog "" "" ; then
358240ff6d7eSKevin Wolf  accept4=yes
358340ff6d7eSKevin Wolffi
358440ff6d7eSKevin Wolf
35853ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time.
35863ce34dfbSvibisreenivasansplice=no
35873ce34dfbSvibisreenivasancat > $TMPC << EOF
35883ce34dfbSvibisreenivasan#include <unistd.h>
35893ce34dfbSvibisreenivasan#include <fcntl.h>
35903ce34dfbSvibisreenivasan#include <limits.h>
35913ce34dfbSvibisreenivasan
35923ce34dfbSvibisreenivasanint main(void)
35933ce34dfbSvibisreenivasan{
359466ea0f22SStefan Weil    int len, fd = 0;
35953ce34dfbSvibisreenivasan    len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
35963ce34dfbSvibisreenivasan    splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
35973ce34dfbSvibisreenivasan    return 0;
35983ce34dfbSvibisreenivasan}
35993ce34dfbSvibisreenivasanEOF
360052166aa0SJuan Quintelaif compile_prog "" "" ; then
36013ce34dfbSvibisreenivasan  splice=yes
36023ce34dfbSvibisreenivasanfi
36033ce34dfbSvibisreenivasan
3604dcc38d1cSMarcelo Tosatti##########################################
3605a99d57bbSWanlong Gao# libnuma probe
3606a99d57bbSWanlong Gao
3607a99d57bbSWanlong Gaoif test "$numa" != "no" ; then
3608a99d57bbSWanlong Gao  cat > $TMPC << EOF
3609a99d57bbSWanlong Gao#include <numa.h>
3610a99d57bbSWanlong Gaoint main(void) { return numa_available(); }
3611a99d57bbSWanlong GaoEOF
3612a99d57bbSWanlong Gao
3613a99d57bbSWanlong Gao  if compile_prog "" "-lnuma" ; then
3614a99d57bbSWanlong Gao    numa=yes
3615a99d57bbSWanlong Gao    libs_softmmu="-lnuma $libs_softmmu"
3616a99d57bbSWanlong Gao  else
3617a99d57bbSWanlong Gao    if test "$numa" = "yes" ; then
3618a99d57bbSWanlong Gao      feature_not_found "numa" "install numactl devel"
3619a99d57bbSWanlong Gao    fi
3620a99d57bbSWanlong Gao    numa=no
3621a99d57bbSWanlong Gao  fi
3622a99d57bbSWanlong Gaofi
3623a99d57bbSWanlong Gao
36247b01cb97SAlexandre Derumierif test "$tcmalloc" = "yes" && test "$jemalloc" = "yes" ; then
36257b01cb97SAlexandre Derumier    echo "ERROR: tcmalloc && jemalloc can't be used at the same time"
36267b01cb97SAlexandre Derumier    exit 1
36277b01cb97SAlexandre Derumierfi
36287b01cb97SAlexandre Derumier
3629a99d57bbSWanlong Gao##########################################
36302847b469SFam Zheng# tcmalloc probe
36312847b469SFam Zheng
36322847b469SFam Zhengif test "$tcmalloc" = "yes" ; then
36332847b469SFam Zheng  cat > $TMPC << EOF
36342847b469SFam Zheng#include <stdlib.h>
36352847b469SFam Zhengint main(void) { malloc(1); return 0; }
36362847b469SFam ZhengEOF
36372847b469SFam Zheng
36382847b469SFam Zheng  if compile_prog "" "-ltcmalloc" ; then
36392847b469SFam Zheng    LIBS="-ltcmalloc $LIBS"
36402847b469SFam Zheng  else
36412847b469SFam Zheng    feature_not_found "tcmalloc" "install gperftools devel"
36422847b469SFam Zheng  fi
36432847b469SFam Zhengfi
36442847b469SFam Zheng
36452847b469SFam Zheng##########################################
36467b01cb97SAlexandre Derumier# jemalloc probe
36477b01cb97SAlexandre Derumier
36487b01cb97SAlexandre Derumierif test "$jemalloc" = "yes" ; then
36497b01cb97SAlexandre Derumier  cat > $TMPC << EOF
36507b01cb97SAlexandre Derumier#include <stdlib.h>
36517b01cb97SAlexandre Derumierint main(void) { malloc(1); return 0; }
36527b01cb97SAlexandre DerumierEOF
36537b01cb97SAlexandre Derumier
36547b01cb97SAlexandre Derumier  if compile_prog "" "-ljemalloc" ; then
36557b01cb97SAlexandre Derumier    LIBS="-ljemalloc $LIBS"
36567b01cb97SAlexandre Derumier  else
36577b01cb97SAlexandre Derumier    feature_not_found "jemalloc" "install jemalloc devel"
36587b01cb97SAlexandre Derumier  fi
36597b01cb97SAlexandre Derumierfi
36607b01cb97SAlexandre Derumier
36617b01cb97SAlexandre Derumier##########################################
3662dcc38d1cSMarcelo Tosatti# signalfd probe
3663dcc38d1cSMarcelo Tosattisignalfd="no"
3664dcc38d1cSMarcelo Tosatticat > $TMPC << EOF
3665dcc38d1cSMarcelo Tosatti#include <unistd.h>
3666dcc38d1cSMarcelo Tosatti#include <sys/syscall.h>
3667dcc38d1cSMarcelo Tosatti#include <signal.h>
3668dcc38d1cSMarcelo Tosattiint main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
3669dcc38d1cSMarcelo TosattiEOF
3670dcc38d1cSMarcelo Tosatti
3671dcc38d1cSMarcelo Tosattiif compile_prog "" "" ; then
3672dcc38d1cSMarcelo Tosatti  signalfd=yes
3673dcc38d1cSMarcelo Tosattifi
3674dcc38d1cSMarcelo Tosatti
3675c2882b96SRiku Voipio# check if eventfd is supported
3676c2882b96SRiku Voipioeventfd=no
3677c2882b96SRiku Voipiocat > $TMPC << EOF
3678c2882b96SRiku Voipio#include <sys/eventfd.h>
3679c2882b96SRiku Voipio
3680c2882b96SRiku Voipioint main(void)
3681c2882b96SRiku Voipio{
368255cc7f3eSStefan Weil    return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
3683c2882b96SRiku Voipio}
3684c2882b96SRiku VoipioEOF
3685c2882b96SRiku Voipioif compile_prog "" "" ; then
3686c2882b96SRiku Voipio  eventfd=yes
3687c2882b96SRiku Voipiofi
3688c2882b96SRiku Voipio
3689751bcc39SMarc-André Lureau# check if memfd is supported
3690751bcc39SMarc-André Lureaumemfd=no
3691751bcc39SMarc-André Lureaucat > $TMPC << EOF
3692751bcc39SMarc-André Lureau#include <sys/memfd.h>
3693751bcc39SMarc-André Lureau
3694751bcc39SMarc-André Lureauint main(void)
3695751bcc39SMarc-André Lureau{
3696751bcc39SMarc-André Lureau    return memfd_create("foo", MFD_ALLOW_SEALING);
3697751bcc39SMarc-André Lureau}
3698751bcc39SMarc-André LureauEOF
3699751bcc39SMarc-André Lureauif compile_prog "" "" ; then
3700751bcc39SMarc-André Lureau  memfd=yes
3701751bcc39SMarc-André Lureaufi
3702751bcc39SMarc-André Lureau
3703751bcc39SMarc-André Lureau
3704751bcc39SMarc-André Lureau
3705d0927938SUlrich Hecht# check for fallocate
3706d0927938SUlrich Hechtfallocate=no
3707d0927938SUlrich Hechtcat > $TMPC << EOF
3708d0927938SUlrich Hecht#include <fcntl.h>
3709d0927938SUlrich Hecht
3710d0927938SUlrich Hechtint main(void)
3711d0927938SUlrich Hecht{
3712d0927938SUlrich Hecht    fallocate(0, 0, 0, 0);
3713d0927938SUlrich Hecht    return 0;
3714d0927938SUlrich Hecht}
3715d0927938SUlrich HechtEOF
37168fb03151SPeter Maydellif compile_prog "" "" ; then
3717d0927938SUlrich Hecht  fallocate=yes
3718d0927938SUlrich Hechtfi
3719d0927938SUlrich Hecht
37203d4fa43eSKusanagi Kouichi# check for fallocate hole punching
37213d4fa43eSKusanagi Kouichifallocate_punch_hole=no
37223d4fa43eSKusanagi Kouichicat > $TMPC << EOF
37233d4fa43eSKusanagi Kouichi#include <fcntl.h>
37243d4fa43eSKusanagi Kouichi#include <linux/falloc.h>
37253d4fa43eSKusanagi Kouichi
37263d4fa43eSKusanagi Kouichiint main(void)
37273d4fa43eSKusanagi Kouichi{
37283d4fa43eSKusanagi Kouichi    fallocate(0, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, 0, 0);
37293d4fa43eSKusanagi Kouichi    return 0;
37303d4fa43eSKusanagi Kouichi}
37313d4fa43eSKusanagi KouichiEOF
37323d4fa43eSKusanagi Kouichiif compile_prog "" "" ; then
37333d4fa43eSKusanagi Kouichi  fallocate_punch_hole=yes
37343d4fa43eSKusanagi Kouichifi
37353d4fa43eSKusanagi Kouichi
3736b953f075SDenis V. Lunev# check that fallocate supports range zeroing inside the file
3737b953f075SDenis V. Lunevfallocate_zero_range=no
3738b953f075SDenis V. Lunevcat > $TMPC << EOF
3739b953f075SDenis V. Lunev#include <fcntl.h>
3740b953f075SDenis V. Lunev#include <linux/falloc.h>
3741b953f075SDenis V. Lunev
3742b953f075SDenis V. Lunevint main(void)
3743b953f075SDenis V. Lunev{
3744b953f075SDenis V. Lunev    fallocate(0, FALLOC_FL_ZERO_RANGE, 0, 0);
3745b953f075SDenis V. Lunev    return 0;
3746b953f075SDenis V. Lunev}
3747b953f075SDenis V. LunevEOF
3748b953f075SDenis V. Lunevif compile_prog "" "" ; then
3749b953f075SDenis V. Lunev  fallocate_zero_range=yes
3750b953f075SDenis V. Lunevfi
3751b953f075SDenis V. Lunev
3752ed911435SKevin Wolf# check for posix_fallocate
3753ed911435SKevin Wolfposix_fallocate=no
3754ed911435SKevin Wolfcat > $TMPC << EOF
3755ed911435SKevin Wolf#include <fcntl.h>
3756ed911435SKevin Wolf
3757ed911435SKevin Wolfint main(void)
3758ed911435SKevin Wolf{
3759ed911435SKevin Wolf    posix_fallocate(0, 0, 0);
3760ed911435SKevin Wolf    return 0;
3761ed911435SKevin Wolf}
3762ed911435SKevin WolfEOF
3763ed911435SKevin Wolfif compile_prog "" "" ; then
3764ed911435SKevin Wolf    posix_fallocate=yes
3765ed911435SKevin Wolffi
3766ed911435SKevin Wolf
3767c727f47dSPeter Maydell# check for sync_file_range
3768c727f47dSPeter Maydellsync_file_range=no
3769c727f47dSPeter Maydellcat > $TMPC << EOF
3770c727f47dSPeter Maydell#include <fcntl.h>
3771c727f47dSPeter Maydell
3772c727f47dSPeter Maydellint main(void)
3773c727f47dSPeter Maydell{
3774c727f47dSPeter Maydell    sync_file_range(0, 0, 0, 0);
3775c727f47dSPeter Maydell    return 0;
3776c727f47dSPeter Maydell}
3777c727f47dSPeter MaydellEOF
37788fb03151SPeter Maydellif compile_prog "" "" ; then
3779c727f47dSPeter Maydell  sync_file_range=yes
3780c727f47dSPeter Maydellfi
3781c727f47dSPeter Maydell
3782dace20dcSPeter Maydell# check for linux/fiemap.h and FS_IOC_FIEMAP
3783dace20dcSPeter Maydellfiemap=no
3784dace20dcSPeter Maydellcat > $TMPC << EOF
3785dace20dcSPeter Maydell#include <sys/ioctl.h>
3786dace20dcSPeter Maydell#include <linux/fs.h>
3787dace20dcSPeter Maydell#include <linux/fiemap.h>
3788dace20dcSPeter Maydell
3789dace20dcSPeter Maydellint main(void)
3790dace20dcSPeter Maydell{
3791dace20dcSPeter Maydell    ioctl(0, FS_IOC_FIEMAP, 0);
3792dace20dcSPeter Maydell    return 0;
3793dace20dcSPeter Maydell}
3794dace20dcSPeter MaydellEOF
37958fb03151SPeter Maydellif compile_prog "" "" ; then
3796dace20dcSPeter Maydell  fiemap=yes
3797dace20dcSPeter Maydellfi
3798dace20dcSPeter Maydell
3799d0927938SUlrich Hecht# check for dup3
3800d0927938SUlrich Hechtdup3=no
3801d0927938SUlrich Hechtcat > $TMPC << EOF
3802d0927938SUlrich Hecht#include <unistd.h>
3803d0927938SUlrich Hecht
3804d0927938SUlrich Hechtint main(void)
3805d0927938SUlrich Hecht{
3806d0927938SUlrich Hecht    dup3(0, 0, 0);
3807d0927938SUlrich Hecht    return 0;
3808d0927938SUlrich Hecht}
3809d0927938SUlrich HechtEOF
381078f5d726SJan Kiszkaif compile_prog "" "" ; then
3811d0927938SUlrich Hecht  dup3=yes
3812d0927938SUlrich Hechtfi
3813d0927938SUlrich Hecht
38144e0c6529SAlex Bligh# check for ppoll support
38154e0c6529SAlex Blighppoll=no
38164e0c6529SAlex Blighcat > $TMPC << EOF
38174e0c6529SAlex Bligh#include <poll.h>
38184e0c6529SAlex Bligh
38194e0c6529SAlex Blighint main(void)
38204e0c6529SAlex Bligh{
38214e0c6529SAlex Bligh    struct pollfd pfd = { .fd = 0, .events = 0, .revents = 0 };
38224e0c6529SAlex Bligh    ppoll(&pfd, 1, 0, 0);
38234e0c6529SAlex Bligh    return 0;
38244e0c6529SAlex Bligh}
38254e0c6529SAlex BlighEOF
38264e0c6529SAlex Blighif compile_prog "" "" ; then
38274e0c6529SAlex Bligh  ppoll=yes
38284e0c6529SAlex Blighfi
38294e0c6529SAlex Bligh
3830cd758dd0SAlex Bligh# check for prctl(PR_SET_TIMERSLACK , ... ) support
3831cd758dd0SAlex Blighprctl_pr_set_timerslack=no
3832cd758dd0SAlex Blighcat > $TMPC << EOF
3833cd758dd0SAlex Bligh#include <sys/prctl.h>
3834cd758dd0SAlex Bligh
3835cd758dd0SAlex Blighint main(void)
3836cd758dd0SAlex Bligh{
3837cd758dd0SAlex Bligh    prctl(PR_SET_TIMERSLACK, 1, 0, 0, 0);
3838cd758dd0SAlex Bligh    return 0;
3839cd758dd0SAlex Bligh}
3840cd758dd0SAlex BlighEOF
3841cd758dd0SAlex Blighif compile_prog "" "" ; then
3842cd758dd0SAlex Bligh  prctl_pr_set_timerslack=yes
3843cd758dd0SAlex Blighfi
3844cd758dd0SAlex Bligh
38453b6edd16SPeter Maydell# check for epoll support
38463b6edd16SPeter Maydellepoll=no
38473b6edd16SPeter Maydellcat > $TMPC << EOF
38483b6edd16SPeter Maydell#include <sys/epoll.h>
38493b6edd16SPeter Maydell
38503b6edd16SPeter Maydellint main(void)
38513b6edd16SPeter Maydell{
38523b6edd16SPeter Maydell    epoll_create(0);
38533b6edd16SPeter Maydell    return 0;
38543b6edd16SPeter Maydell}
38553b6edd16SPeter MaydellEOF
38568fb03151SPeter Maydellif compile_prog "" "" ; then
38573b6edd16SPeter Maydell  epoll=yes
38583b6edd16SPeter Maydellfi
38593b6edd16SPeter Maydell
3860227f0214SPeter Maydell# epoll_create1 is a later addition
3861227f0214SPeter Maydell# so we must check separately for its presence
38623b6edd16SPeter Maydellepoll_create1=no
38633b6edd16SPeter Maydellcat > $TMPC << EOF
38643b6edd16SPeter Maydell#include <sys/epoll.h>
38653b6edd16SPeter Maydell
38663b6edd16SPeter Maydellint main(void)
38673b6edd16SPeter Maydell{
386819e83f6bSPeter Maydell    /* Note that we use epoll_create1 as a value, not as
386919e83f6bSPeter Maydell     * a function being called. This is necessary so that on
387019e83f6bSPeter Maydell     * old SPARC glibc versions where the function was present in
387119e83f6bSPeter Maydell     * the library but not declared in the header file we will
387219e83f6bSPeter Maydell     * fail the configure check. (Otherwise we will get a compiler
387319e83f6bSPeter Maydell     * warning but not an error, and will proceed to fail the
387419e83f6bSPeter Maydell     * qemu compile where we compile with -Werror.)
387519e83f6bSPeter Maydell     */
3876c075a723SBlue Swirl    return (int)(uintptr_t)&epoll_create1;
38773b6edd16SPeter Maydell}
38783b6edd16SPeter MaydellEOF
38798fb03151SPeter Maydellif compile_prog "" "" ; then
38803b6edd16SPeter Maydell  epoll_create1=yes
38813b6edd16SPeter Maydellfi
38823b6edd16SPeter Maydell
3883a8fd1abaSPeter Maydell# check for sendfile support
3884a8fd1abaSPeter Maydellsendfile=no
3885a8fd1abaSPeter Maydellcat > $TMPC << EOF
3886a8fd1abaSPeter Maydell#include <sys/sendfile.h>
3887a8fd1abaSPeter Maydell
3888a8fd1abaSPeter Maydellint main(void)
3889a8fd1abaSPeter Maydell{
3890a8fd1abaSPeter Maydell    return sendfile(0, 0, 0, 0);
3891a8fd1abaSPeter Maydell}
3892a8fd1abaSPeter MaydellEOF
3893a8fd1abaSPeter Maydellif compile_prog "" "" ; then
3894a8fd1abaSPeter Maydell  sendfile=yes
3895a8fd1abaSPeter Maydellfi
3896a8fd1abaSPeter Maydell
389751834341SRiku Voipio# check for timerfd support (glibc 2.8 and newer)
389851834341SRiku Voipiotimerfd=no
389951834341SRiku Voipiocat > $TMPC << EOF
390051834341SRiku Voipio#include <sys/timerfd.h>
390151834341SRiku Voipio
390251834341SRiku Voipioint main(void)
390351834341SRiku Voipio{
390451834341SRiku Voipio    return(timerfd_create(CLOCK_REALTIME, 0));
390551834341SRiku Voipio}
390651834341SRiku VoipioEOF
390751834341SRiku Voipioif compile_prog "" "" ; then
390851834341SRiku Voipio  timerfd=yes
390951834341SRiku Voipiofi
391051834341SRiku Voipio
39119af5c906SRiku Voipio# check for setns and unshare support
39129af5c906SRiku Voipiosetns=no
39139af5c906SRiku Voipiocat > $TMPC << EOF
39149af5c906SRiku Voipio#include <sched.h>
39159af5c906SRiku Voipio
39169af5c906SRiku Voipioint main(void)
39179af5c906SRiku Voipio{
39189af5c906SRiku Voipio    int ret;
39199af5c906SRiku Voipio    ret = setns(0, 0);
39209af5c906SRiku Voipio    ret = unshare(0);
39219af5c906SRiku Voipio    return ret;
39229af5c906SRiku Voipio}
39239af5c906SRiku VoipioEOF
39249af5c906SRiku Voipioif compile_prog "" "" ; then
39259af5c906SRiku Voipio  setns=yes
39269af5c906SRiku Voipiofi
39279af5c906SRiku Voipio
392838860a03SAleksandar Markovic# clock_adjtime probe
392938860a03SAleksandar Markovicclock_adjtime=no
393038860a03SAleksandar Markoviccat > $TMPC <<EOF
393138860a03SAleksandar Markovic#include <time.h>
393238860a03SAleksandar Markovic
393338860a03SAleksandar Markovicint main(void)
393438860a03SAleksandar Markovic{
393538860a03SAleksandar Markovic    return clock_adjtime(0, 0);
393638860a03SAleksandar Markovic}
393738860a03SAleksandar MarkovicEOF
393838860a03SAleksandar Markovicclock_adjtime=no
393938860a03SAleksandar Markovicif compile_prog "" "" ; then
394038860a03SAleksandar Markovic  clock_adjtime=yes
394138860a03SAleksandar Markovicfi
394238860a03SAleksandar Markovic
39435a03cd00SAleksandar Markovic# syncfs probe
39445a03cd00SAleksandar Markovicsyncfs=no
39455a03cd00SAleksandar Markoviccat > $TMPC <<EOF
39465a03cd00SAleksandar Markovic#include <unistd.h>
39475a03cd00SAleksandar Markovic
39485a03cd00SAleksandar Markovicint main(void)
39495a03cd00SAleksandar Markovic{
39505a03cd00SAleksandar Markovic    return syncfs(0);
39515a03cd00SAleksandar Markovic}
39525a03cd00SAleksandar MarkovicEOF
39535a03cd00SAleksandar Markovicsyncfs=no
39545a03cd00SAleksandar Markovicif compile_prog "" "" ; then
39555a03cd00SAleksandar Markovic  syncfs=yes
39565a03cd00SAleksandar Markovicfi
39575a03cd00SAleksandar Markovic
3958cc8ae6deSpbrook# Check if tools are available to build documentation.
3959a25dba17SJuan Quintelaif test "$docs" != "no" ; then
396001668d98SStefan Weil  if has makeinfo && has pod2man; then
3961a25dba17SJuan Quintela    docs=yes
396283a3ab8bSJuan Quintela  else
3963a25dba17SJuan Quintela    if test "$docs" = "yes" ; then
396421684af0SStewart Smith      feature_not_found "docs" "Install texinfo and Perl/perl-podlators"
396583a3ab8bSJuan Quintela    fi
3966a25dba17SJuan Quintela    docs=no
396783a3ab8bSJuan Quintela  fi
3968cc8ae6deSpbrookfi
3969cc8ae6deSpbrook
3970f514f41cSStefan Weil# Search for bswap_32 function
39716ae9a1f4SJuan Quintelabyteswap_h=no
39726ae9a1f4SJuan Quintelacat > $TMPC << EOF
39736ae9a1f4SJuan Quintela#include <byteswap.h>
39746ae9a1f4SJuan Quintelaint main(void) { return bswap_32(0); }
39756ae9a1f4SJuan QuintelaEOF
397652166aa0SJuan Quintelaif compile_prog "" "" ; then
39776ae9a1f4SJuan Quintela  byteswap_h=yes
39786ae9a1f4SJuan Quintelafi
39796ae9a1f4SJuan Quintela
398075f13596SStefan Weil# Search for bswap32 function
39816ae9a1f4SJuan Quintelabswap_h=no
39826ae9a1f4SJuan Quintelacat > $TMPC << EOF
39836ae9a1f4SJuan Quintela#include <sys/endian.h>
39846ae9a1f4SJuan Quintela#include <sys/types.h>
39856ae9a1f4SJuan Quintela#include <machine/bswap.h>
39866ae9a1f4SJuan Quintelaint main(void) { return bswap32(0); }
39876ae9a1f4SJuan QuintelaEOF
398852166aa0SJuan Quintelaif compile_prog "" "" ; then
39896ae9a1f4SJuan Quintela  bswap_h=yes
39906ae9a1f4SJuan Quintelafi
39916ae9a1f4SJuan Quintela
3992da93a1fdSaliguori##########################################
3993e49ab19fSPeter Lieven# Do we have libiscsi >= 1.9.0
3994c589b249SRonnie Sahlbergif test "$libiscsi" != "no" ; then
3995e49ab19fSPeter Lieven  if $pkg_config --atleast-version=1.9.0 libiscsi; then
39963c33ea96SPaolo Bonzini    libiscsi="yes"
3997ca871ec8SStefan Weil    libiscsi_cflags=$($pkg_config --cflags libiscsi)
3998ca871ec8SStefan Weil    libiscsi_libs=$($pkg_config --libs libiscsi)
3999c589b249SRonnie Sahlberg  else
4000c589b249SRonnie Sahlberg    if test "$libiscsi" = "yes" ; then
4001e49ab19fSPeter Lieven      feature_not_found "libiscsi" "Install libiscsi >= 1.9.0"
4002c589b249SRonnie Sahlberg    fi
4003c589b249SRonnie Sahlberg    libiscsi="no"
4004c589b249SRonnie Sahlberg  fi
4005c589b249SRonnie Sahlbergfi
4006c589b249SRonnie Sahlberg
4007c589b249SRonnie Sahlberg##########################################
40088bacde8dSNatanael Copa# Do we need libm
40098bacde8dSNatanael Copacat > $TMPC << EOF
40108bacde8dSNatanael Copa#include <math.h>
4011f80ea986SAlexey Kardashevskiyint main(int argc, char **argv) { return isnan(sin((double)argc)); }
40128bacde8dSNatanael CopaEOF
40138bacde8dSNatanael Copaif compile_prog "" "" ; then
40148bacde8dSNatanael Copa  :
40158bacde8dSNatanael Copaelif compile_prog "" "-lm" ; then
40168bacde8dSNatanael Copa  LIBS="-lm $LIBS"
40178bacde8dSNatanael Copa  libs_qga="-lm $libs_qga"
40188bacde8dSNatanael Copaelse
401976ad07a4SPeter Maydell  error_exit "libm check failed"
40208bacde8dSNatanael Copafi
40218bacde8dSNatanael Copa
40228bacde8dSNatanael Copa##########################################
4023da93a1fdSaliguori# Do we need librt
40248bacde8dSNatanael Copa# uClibc provides 2 versions of clock_gettime(), one with realtime
40258bacde8dSNatanael Copa# support and one without. This means that the clock_gettime() don't
40268bacde8dSNatanael Copa# need -lrt. We still need it for timer_create() so we check for this
40278bacde8dSNatanael Copa# function in addition.
4028da93a1fdSaliguoricat > $TMPC <<EOF
4029da93a1fdSaliguori#include <signal.h>
4030da93a1fdSaliguori#include <time.h>
40318bacde8dSNatanael Copaint main(void) {
40328bacde8dSNatanael Copa  timer_create(CLOCK_REALTIME, NULL, NULL);
40338bacde8dSNatanael Copa  return clock_gettime(CLOCK_REALTIME, NULL);
40348bacde8dSNatanael Copa}
4035da93a1fdSaliguoriEOF
4036da93a1fdSaliguori
403752166aa0SJuan Quintelaif compile_prog "" "" ; then
403807ffa4bdSJuan Quintela  :
40398bacde8dSNatanael Copa# we need pthread for static linking. use previous pthread test result
404018e588b1SRick Liuelif compile_prog "" "$pthread_lib -lrt" ; then
404118e588b1SRick Liu  LIBS="$LIBS -lrt"
404218e588b1SRick Liu  libs_qga="$libs_qga -lrt"
4043da93a1fdSaliguorifi
4044da93a1fdSaliguori
404531ff504dSBlue Swirlif test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
4046179cf400SAndreas Färber        "$aix" != "yes" -a "$haiku" != "yes" ; then
40476362a53fSJuan Quintela    libs_softmmu="-lutil $libs_softmmu"
40486362a53fSJuan Quintelafi
40496362a53fSJuan Quintela
4050de5071c5SBlue Swirl##########################################
4051cd4ec0b4SGerd Hoffmann# spice probe
4052cd4ec0b4SGerd Hoffmannif test "$spice" != "no" ; then
4053cd4ec0b4SGerd Hoffmann  cat > $TMPC << EOF
4054cd4ec0b4SGerd Hoffmann#include <spice.h>
4055cd4ec0b4SGerd Hoffmannint main(void) { spice_server_new(); return 0; }
4056cd4ec0b4SGerd HoffmannEOF
4057710fc4f5SJiri Denemark  spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
4058710fc4f5SJiri Denemark  spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
405965d5d3f9SStefan Weil  if $pkg_config --atleast-version=0.12.0 spice-server && \
406065d5d3f9SStefan Weil     $pkg_config --atleast-version=0.12.3 spice-protocol && \
4061cd4ec0b4SGerd Hoffmann     compile_prog "$spice_cflags" "$spice_libs" ; then
4062cd4ec0b4SGerd Hoffmann    spice="yes"
4063cd4ec0b4SGerd Hoffmann    libs_softmmu="$libs_softmmu $spice_libs"
4064cd4ec0b4SGerd Hoffmann    QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags"
40652e0e3c39SAlon Levy    spice_protocol_version=$($pkg_config --modversion spice-protocol)
40662e0e3c39SAlon Levy    spice_server_version=$($pkg_config --modversion spice-server)
4067cd4ec0b4SGerd Hoffmann  else
4068cd4ec0b4SGerd Hoffmann    if test "$spice" = "yes" ; then
40698efc9363SHu Tao      feature_not_found "spice" \
40708efc9363SHu Tao          "Install spice-server(>=0.12.0) and spice-protocol(>=0.12.3) devel"
4071cd4ec0b4SGerd Hoffmann    fi
4072cd4ec0b4SGerd Hoffmann    spice="no"
4073cd4ec0b4SGerd Hoffmann  fi
4074cd4ec0b4SGerd Hoffmannfi
4075cd4ec0b4SGerd Hoffmann
40767b02f544SMarc-André Lureau# check for smartcard support
4077111a38b0SRobert Relyeasmartcard_cflags=""
40787b02f544SMarc-André Lureauif test "$smartcard" != "no"; then
40797b02f544SMarc-André Lureau    if $pkg_config libcacard; then
40807b02f544SMarc-André Lureau        libcacard_cflags=$($pkg_config --cflags libcacard)
40817b02f544SMarc-André Lureau        libcacard_libs=$($pkg_config --libs libcacard)
40827b02f544SMarc-André Lureau        QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags"
40837b02f544SMarc-André Lureau        libs_softmmu="$libs_softmmu $libcacard_libs"
40847b02f544SMarc-André Lureau        smartcard="yes"
4085111a38b0SRobert Relyea    else
40867b02f544SMarc-André Lureau        if test "$smartcard" = "yes"; then
40877b02f544SMarc-André Lureau            feature_not_found "smartcard" "Install libcacard devel"
4088111a38b0SRobert Relyea        fi
40897b02f544SMarc-André Lureau        smartcard="no"
4090111a38b0SRobert Relyea    fi
4091111a38b0SRobert Relyeafi
4092111a38b0SRobert Relyea
40932b2325ffSGerd Hoffmann# check for libusb
40942b2325ffSGerd Hoffmannif test "$libusb" != "no" ; then
409565d5d3f9SStefan Weil    if $pkg_config --atleast-version=1.0.13 libusb-1.0; then
40962b2325ffSGerd Hoffmann        libusb="yes"
4097ca871ec8SStefan Weil        libusb_cflags=$($pkg_config --cflags libusb-1.0)
4098ca871ec8SStefan Weil        libusb_libs=$($pkg_config --libs libusb-1.0)
40992b2325ffSGerd Hoffmann        QEMU_CFLAGS="$QEMU_CFLAGS $libusb_cflags"
41002b2325ffSGerd Hoffmann        libs_softmmu="$libs_softmmu $libusb_libs"
41012b2325ffSGerd Hoffmann    else
41022b2325ffSGerd Hoffmann        if test "$libusb" = "yes"; then
41038efc9363SHu Tao            feature_not_found "libusb" "Install libusb devel >= 1.0.13"
41042b2325ffSGerd Hoffmann        fi
41052b2325ffSGerd Hoffmann        libusb="no"
41062b2325ffSGerd Hoffmann    fi
41072b2325ffSGerd Hoffmannfi
41082b2325ffSGerd Hoffmann
410969354a83SHans de Goede# check for usbredirparser for usb network redirection support
411069354a83SHans de Goedeif test "$usb_redir" != "no" ; then
411165d5d3f9SStefan Weil    if $pkg_config --atleast-version=0.6 libusbredirparser-0.5; then
411269354a83SHans de Goede        usb_redir="yes"
4113ca871ec8SStefan Weil        usb_redir_cflags=$($pkg_config --cflags libusbredirparser-0.5)
4114ca871ec8SStefan Weil        usb_redir_libs=$($pkg_config --libs libusbredirparser-0.5)
411569354a83SHans de Goede        QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags"
411656ab2ad1SAurelien Jarno        libs_softmmu="$libs_softmmu $usb_redir_libs"
411769354a83SHans de Goede    else
411869354a83SHans de Goede        if test "$usb_redir" = "yes"; then
411921684af0SStewart Smith            feature_not_found "usb-redir" "Install usbredir devel"
412069354a83SHans de Goede        fi
412169354a83SHans de Goede        usb_redir="no"
412269354a83SHans de Goede    fi
412369354a83SHans de Goedefi
412469354a83SHans de Goede
4125cd4ec0b4SGerd Hoffmann##########################################
4126d9840e25STomoki Sekiyama# check if we have VSS SDK headers for win
4127d9840e25STomoki Sekiyama
4128d9840e25STomoki Sekiyamaif test "$mingw32" = "yes" -a "$guest_agent" != "no" -a "$vss_win32_sdk" != "no" ; then
4129d9840e25STomoki Sekiyama  case "$vss_win32_sdk" in
4130690604f6SMichael Roth    "")   vss_win32_include="-isystem $source_path" ;;
4131d9840e25STomoki Sekiyama    *\ *) # The SDK is installed in "Program Files" by default, but we cannot
4132d9840e25STomoki Sekiyama          # handle path with spaces. So we symlink the headers into ".sdk/vss".
4133690604f6SMichael Roth          vss_win32_include="-isystem $source_path/.sdk/vss"
4134d9840e25STomoki Sekiyama	  symlink "$vss_win32_sdk/inc" "$source_path/.sdk/vss/inc"
4135d9840e25STomoki Sekiyama	  ;;
4136690604f6SMichael Roth    *)    vss_win32_include="-isystem $vss_win32_sdk"
4137d9840e25STomoki Sekiyama  esac
4138d9840e25STomoki Sekiyama  cat > $TMPC << EOF
4139d9840e25STomoki Sekiyama#define __MIDL_user_allocate_free_DEFINED__
4140d9840e25STomoki Sekiyama#include <inc/win2003/vss.h>
4141d9840e25STomoki Sekiyamaint main(void) { return VSS_CTX_BACKUP; }
4142d9840e25STomoki SekiyamaEOF
4143d9840e25STomoki Sekiyama  if compile_prog "$vss_win32_include" "" ; then
4144d9840e25STomoki Sekiyama    guest_agent_with_vss="yes"
4145d9840e25STomoki Sekiyama    QEMU_CFLAGS="$QEMU_CFLAGS $vss_win32_include"
4146315d3184SFam Zheng    libs_qga="-lole32 -loleaut32 -lshlwapi -lstdc++ -Wl,--enable-stdcall-fixup $libs_qga"
4147f33ca81fSMichael Roth    qga_vss_provider="qga/vss-win32/qga-vss.dll qga/vss-win32/qga-vss.tlb"
4148d9840e25STomoki Sekiyama  else
4149d9840e25STomoki Sekiyama    if test "$vss_win32_sdk" != "" ; then
4150d9840e25STomoki Sekiyama      echo "ERROR: Please download and install Microsoft VSS SDK:"
4151d9840e25STomoki Sekiyama      echo "ERROR:   http://www.microsoft.com/en-us/download/details.aspx?id=23490"
4152d9840e25STomoki Sekiyama      echo "ERROR: On POSIX-systems, you can extract the SDK headers by:"
4153d9840e25STomoki Sekiyama      echo "ERROR:   scripts/extract-vsssdk-headers setup.exe"
4154d9840e25STomoki Sekiyama      echo "ERROR: The headers are extracted in the directory \`inc'."
4155d9840e25STomoki Sekiyama      feature_not_found "VSS support"
4156d9840e25STomoki Sekiyama    fi
4157d9840e25STomoki Sekiyama    guest_agent_with_vss="no"
4158d9840e25STomoki Sekiyama  fi
4159d9840e25STomoki Sekiyamafi
4160d9840e25STomoki Sekiyama
4161d9840e25STomoki Sekiyama##########################################
4162d9840e25STomoki Sekiyama# lookup Windows platform SDK (if not specified)
4163d9840e25STomoki Sekiyama# The SDK is needed only to build .tlb (type library) file of guest agent
4164d9840e25STomoki Sekiyama# VSS provider from the source. It is usually unnecessary because the
4165d9840e25STomoki Sekiyama# pre-compiled .tlb file is included.
4166d9840e25STomoki Sekiyama
4167d9840e25STomoki Sekiyamaif test "$mingw32" = "yes" -a "$guest_agent" != "no" -a "$guest_agent_with_vss" = "yes" ; then
4168d9840e25STomoki Sekiyama  if test -z "$win_sdk"; then
4169d9840e25STomoki Sekiyama    programfiles="$PROGRAMFILES"
4170d9840e25STomoki Sekiyama    test -n "$PROGRAMW6432" && programfiles="$PROGRAMW6432"
4171d9840e25STomoki Sekiyama    if test -n "$programfiles"; then
4172d9840e25STomoki Sekiyama      win_sdk=$(ls -d "$programfiles/Microsoft SDKs/Windows/v"* | tail -1) 2>/dev/null
4173d9840e25STomoki Sekiyama    else
4174d9840e25STomoki Sekiyama      feature_not_found "Windows SDK"
4175d9840e25STomoki Sekiyama    fi
4176d9840e25STomoki Sekiyama  elif test "$win_sdk" = "no"; then
4177d9840e25STomoki Sekiyama    win_sdk=""
4178d9840e25STomoki Sekiyama  fi
4179d9840e25STomoki Sekiyamafi
4180d9840e25STomoki Sekiyama
4181d9840e25STomoki Sekiyama##########################################
418250cbebb9SMichael Roth# check if mingw environment provides a recent ntddscsi.h
418350cbebb9SMichael Rothif test "$mingw32" = "yes" -a "$guest_agent" != "no"; then
418450cbebb9SMichael Roth  cat > $TMPC << EOF
418550cbebb9SMichael Roth#include <windows.h>
418650cbebb9SMichael Roth#include <ntddscsi.h>
418750cbebb9SMichael Rothint main(void) {
418850cbebb9SMichael Roth#if !defined(IOCTL_SCSI_GET_ADDRESS)
418950cbebb9SMichael Roth#error Missing required ioctl definitions
419050cbebb9SMichael Roth#endif
419150cbebb9SMichael Roth  SCSI_ADDRESS addr = { .Lun = 0, .TargetId = 0, .PathId = 0 };
419250cbebb9SMichael Roth  return addr.Lun;
419350cbebb9SMichael Roth}
419450cbebb9SMichael RothEOF
419550cbebb9SMichael Roth  if compile_prog "" "" ; then
419650cbebb9SMichael Roth    guest_agent_ntddscsi=yes
4197c54e1eb4SMichael Roth    libs_qga="-lsetupapi $libs_qga"
419850cbebb9SMichael Roth  fi
419950cbebb9SMichael Rothfi
420050cbebb9SMichael Roth
420150cbebb9SMichael Roth##########################################
42029d9e1521SGerd Hoffmann# virgl renderer probe
42039d9e1521SGerd Hoffmann
42049d9e1521SGerd Hoffmannif test "$virglrenderer" != "no" ; then
42059d9e1521SGerd Hoffmann  cat > $TMPC << EOF
42069d9e1521SGerd Hoffmann#include <virglrenderer.h>
42079d9e1521SGerd Hoffmannint main(void) { virgl_renderer_poll(); return 0; }
42089d9e1521SGerd HoffmannEOF
42099d9e1521SGerd Hoffmann  virgl_cflags=$($pkg_config --cflags virglrenderer 2>/dev/null)
42109d9e1521SGerd Hoffmann  virgl_libs=$($pkg_config --libs virglrenderer 2>/dev/null)
42119d9e1521SGerd Hoffmann  if $pkg_config virglrenderer >/dev/null 2>&1 && \
42129d9e1521SGerd Hoffmann     compile_prog "$virgl_cflags" "$virgl_libs" ; then
42139d9e1521SGerd Hoffmann    virglrenderer="yes"
42149d9e1521SGerd Hoffmann  else
42159d9e1521SGerd Hoffmann    if test "$virglrenderer" = "yes" ; then
42169d9e1521SGerd Hoffmann      feature_not_found "virglrenderer"
42179d9e1521SGerd Hoffmann    fi
42189d9e1521SGerd Hoffmann    virglrenderer="no"
42199d9e1521SGerd Hoffmann  fi
42209d9e1521SGerd Hoffmannfi
42219d9e1521SGerd Hoffmann
42229d9e1521SGerd Hoffmann##########################################
42235f6b9e8fSBlue Swirl# check if we have fdatasync
42245f6b9e8fSBlue Swirl
42255f6b9e8fSBlue Swirlfdatasync=no
42265f6b9e8fSBlue Swirlcat > $TMPC << EOF
42275f6b9e8fSBlue Swirl#include <unistd.h>
4228d1722a27SAlexandre Raymondint main(void) {
4229d1722a27SAlexandre Raymond#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
4230d1722a27SAlexandre Raymondreturn fdatasync(0);
4231d1722a27SAlexandre Raymond#else
4232e172fe11SStefan Weil#error Not supported
4233d1722a27SAlexandre Raymond#endif
4234d1722a27SAlexandre Raymond}
42355f6b9e8fSBlue SwirlEOF
42365f6b9e8fSBlue Swirlif compile_prog "" "" ; then
42375f6b9e8fSBlue Swirl    fdatasync=yes
42385f6b9e8fSBlue Swirlfi
42395f6b9e8fSBlue Swirl
424094a420b1SStefan Hajnoczi##########################################
4241e78815a5SAndreas Färber# check if we have madvise
4242e78815a5SAndreas Färber
4243e78815a5SAndreas Färbermadvise=no
4244e78815a5SAndreas Färbercat > $TMPC << EOF
4245e78815a5SAndreas Färber#include <sys/types.h>
4246e78815a5SAndreas Färber#include <sys/mman.h>
4247832ce9c2SScott Wood#include <stddef.h>
4248e78815a5SAndreas Färberint main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
4249e78815a5SAndreas FärberEOF
4250e78815a5SAndreas Färberif compile_prog "" "" ; then
4251e78815a5SAndreas Färber    madvise=yes
4252e78815a5SAndreas Färberfi
4253e78815a5SAndreas Färber
4254e78815a5SAndreas Färber##########################################
4255e78815a5SAndreas Färber# check if we have posix_madvise
4256e78815a5SAndreas Färber
4257e78815a5SAndreas Färberposix_madvise=no
4258e78815a5SAndreas Färbercat > $TMPC << EOF
4259e78815a5SAndreas Färber#include <sys/mman.h>
4260832ce9c2SScott Wood#include <stddef.h>
4261e78815a5SAndreas Färberint main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
4262e78815a5SAndreas FärberEOF
4263e78815a5SAndreas Färberif compile_prog "" "" ; then
4264e78815a5SAndreas Färber    posix_madvise=yes
4265e78815a5SAndreas Färberfi
4266e78815a5SAndreas Färber
4267e78815a5SAndreas Färber##########################################
42680a852417SPaul Durrant# check if we have posix_syslog
42690a852417SPaul Durrant
42700a852417SPaul Durrantposix_syslog=no
42710a852417SPaul Durrantcat > $TMPC << EOF
42720a852417SPaul Durrant#include <syslog.h>
42730a852417SPaul Durrantint main(void) { openlog("qemu", LOG_PID, LOG_DAEMON); syslog(LOG_INFO, "configure"); return 0; }
42740a852417SPaul DurrantEOF
42750a852417SPaul Durrantif compile_prog "" "" ; then
42760a852417SPaul Durrant    posix_syslog=yes
42770a852417SPaul Durrantfi
42780a852417SPaul Durrant
42790a852417SPaul Durrant##########################################
428094a420b1SStefan Hajnoczi# check if trace backend exists
428194a420b1SStefan Hajnoczi
42825b808275SLluís Vilanova$python "$source_path/scripts/tracetool.py" "--backends=$trace_backends" --check-backends  > /dev/null 2> /dev/null
428394a420b1SStefan Hajnocziif test "$?" -ne 0 ; then
42845b808275SLluís Vilanova  error_exit "invalid trace backends" \
42855b808275SLluís Vilanova      "Please choose supported trace backends."
428694a420b1SStefan Hajnoczifi
428794a420b1SStefan Hajnoczi
42887e24e92aSStefan Hajnoczi##########################################
42897e24e92aSStefan Hajnoczi# For 'ust' backend, test if ust headers are present
42905b808275SLluís Vilanovaif have_backend "ust"; then
42917e24e92aSStefan Hajnoczi  cat > $TMPC << EOF
4292bf15f63cSMohamad Gebai#include <lttng/tracepoint.h>
42937e24e92aSStefan Hajnocziint main(void) { return 0; }
42947e24e92aSStefan HajnocziEOF
42957e24e92aSStefan Hajnoczi  if compile_prog "" "" ; then
4296bf15f63cSMohamad Gebai    if $pkg_config lttng-ust --exists; then
429789138857SStefan Weil      lttng_ust_libs=$($pkg_config --libs lttng-ust)
42987e24e92aSStefan Hajnoczi    else
4299bf15f63cSMohamad Gebai      lttng_ust_libs="-llttng-ust"
4300bf15f63cSMohamad Gebai    fi
4301bf15f63cSMohamad Gebai    if $pkg_config liburcu-bp --exists; then
430289138857SStefan Weil      urcu_bp_libs=$($pkg_config --libs liburcu-bp)
4303bf15f63cSMohamad Gebai    else
4304bf15f63cSMohamad Gebai      urcu_bp_libs="-lurcu-bp"
4305bf15f63cSMohamad Gebai    fi
4306bf15f63cSMohamad Gebai
4307bf15f63cSMohamad Gebai    LIBS="$lttng_ust_libs $urcu_bp_libs $LIBS"
4308bf15f63cSMohamad Gebai    libs_qga="$lttng_ust_libs $urcu_bp_libs $libs_qga"
4309bf15f63cSMohamad Gebai  else
4310bf15f63cSMohamad Gebai    error_exit "Trace backend 'ust' missing lttng-ust header files"
43117e24e92aSStefan Hajnoczi  fi
43127e24e92aSStefan Hajnoczifi
4313b3d08c02SDaniel P. Berrange
4314b3d08c02SDaniel P. Berrange##########################################
4315b3d08c02SDaniel P. Berrange# For 'dtrace' backend, test if 'dtrace' command is present
43165b808275SLluís Vilanovaif have_backend "dtrace"; then
4317b3d08c02SDaniel P. Berrange  if ! has 'dtrace' ; then
431876ad07a4SPeter Maydell    error_exit "dtrace command is not found in PATH $PATH"
4319b3d08c02SDaniel P. Berrange  fi
4320c276b17dSDaniel P. Berrange  trace_backend_stap="no"
4321c276b17dSDaniel P. Berrange  if has 'stap' ; then
4322c276b17dSDaniel P. Berrange    trace_backend_stap="yes"
4323c276b17dSDaniel P. Berrange  fi
4324b3d08c02SDaniel P. Berrangefi
4325b3d08c02SDaniel P. Berrange
43267e24e92aSStefan Hajnoczi##########################################
4327519175a2SAlex Barcelo# check and set a backend for coroutine
4328d0e2fce5SAneesh Kumar K.V
43297c2acc70SPeter Maydell# We prefer ucontext, but it's not always possible. The fallback
43307c2acc70SPeter Maydell# is sigcontext. gthread is not selectable except explicitly, because
43317c2acc70SPeter Maydell# it is not functional enough to run QEMU proper. (It is occasionally
43327c2acc70SPeter Maydell# useful for debugging purposes.)  On Windows the only valid backend
43337c2acc70SPeter Maydell# is the Windows-specific one.
43347c2acc70SPeter Maydell
43357c2acc70SPeter Maydellucontext_works=no
4336d0e2fce5SAneesh Kumar K.Vif test "$darwin" != "yes"; then
4337d0e2fce5SAneesh Kumar K.V  cat > $TMPC << EOF
4338d0e2fce5SAneesh Kumar K.V#include <ucontext.h>
4339cdf84806SPeter Maydell#ifdef __stub_makecontext
4340cdf84806SPeter Maydell#error Ignoring glibc stub makecontext which will always fail
4341cdf84806SPeter Maydell#endif
434275cafad7SStefan Weilint main(void) { makecontext(0, 0, 0); return 0; }
4343d0e2fce5SAneesh Kumar K.VEOF
4344d0e2fce5SAneesh Kumar K.V  if compile_prog "" "" ; then
43457c2acc70SPeter Maydell    ucontext_works=yes
4346d0e2fce5SAneesh Kumar K.V  fi
4347519175a2SAlex Barcelofi
43487c2acc70SPeter Maydell
43497c2acc70SPeter Maydellif test "$coroutine" = ""; then
43507c2acc70SPeter Maydell  if test "$mingw32" = "yes"; then
43517c2acc70SPeter Maydell    coroutine=win32
43527c2acc70SPeter Maydell  elif test "$ucontext_works" = "yes"; then
43537c2acc70SPeter Maydell    coroutine=ucontext
4354519175a2SAlex Barcelo  else
43557c2acc70SPeter Maydell    coroutine=sigaltstack
43567c2acc70SPeter Maydell  fi
43577c2acc70SPeter Maydellelse
43587c2acc70SPeter Maydell  case $coroutine in
43597c2acc70SPeter Maydell  windows)
43607c2acc70SPeter Maydell    if test "$mingw32" != "yes"; then
43617c2acc70SPeter Maydell      error_exit "'windows' coroutine backend only valid for Windows"
43627c2acc70SPeter Maydell    fi
43637c2acc70SPeter Maydell    # Unfortunately the user visible backend name doesn't match the
43647c2acc70SPeter Maydell    # coroutine-*.c filename for this case, so we have to adjust it here.
43657c2acc70SPeter Maydell    coroutine=win32
43667c2acc70SPeter Maydell    ;;
43677c2acc70SPeter Maydell  ucontext)
43687c2acc70SPeter Maydell    if test "$ucontext_works" != "yes"; then
43697c2acc70SPeter Maydell      feature_not_found "ucontext"
43707c2acc70SPeter Maydell    fi
43717c2acc70SPeter Maydell    ;;
43727c2acc70SPeter Maydell  gthread|sigaltstack)
43737c2acc70SPeter Maydell    if test "$mingw32" = "yes"; then
43747c2acc70SPeter Maydell      error_exit "only the 'windows' coroutine backend is valid for Windows"
43757c2acc70SPeter Maydell    fi
43767c2acc70SPeter Maydell    ;;
43777c2acc70SPeter Maydell  *)
437876ad07a4SPeter Maydell    error_exit "unknown coroutine backend $coroutine"
43797c2acc70SPeter Maydell    ;;
43807c2acc70SPeter Maydell  esac
4381d0e2fce5SAneesh Kumar K.Vfi
4382d0e2fce5SAneesh Kumar K.V
438370c60c08SStefan Hajnocziif test "$coroutine_pool" = ""; then
438470c60c08SStefan Hajnoczi  if test "$coroutine" = "gthread"; then
438570c60c08SStefan Hajnoczi    coroutine_pool=no
438670c60c08SStefan Hajnoczi  else
438770c60c08SStefan Hajnoczi    coroutine_pool=yes
438870c60c08SStefan Hajnoczi  fi
438970c60c08SStefan Hajnoczifi
439070c60c08SStefan Hajnocziif test "$coroutine" = "gthread" -a "$coroutine_pool" = "yes"; then
439170c60c08SStefan Hajnoczi  error_exit "'gthread' coroutine backend does not support pool (use --disable-coroutine-pool)"
439270c60c08SStefan Hajnoczifi
439370c60c08SStefan Hajnoczi
43947d992e4dSPeter Lievenif test "$debug_stack_usage" = "yes"; then
43957d992e4dSPeter Lieven  if test "$cpu" = "ia64" -o "$cpu" = "hppa"; then
43967d992e4dSPeter Lieven    error_exit "stack usage debugging is not supported for $cpu"
43977d992e4dSPeter Lieven  fi
43987d992e4dSPeter Lieven  if test "$coroutine_pool" = "yes"; then
43997d992e4dSPeter Lieven    echo "WARN: disabling coroutine pool for stack usage debugging"
44007d992e4dSPeter Lieven    coroutine_pool=no
44017d992e4dSPeter Lieven  fi
44027d992e4dSPeter Lievenfi
44037d992e4dSPeter Lieven
44047d992e4dSPeter Lieven
4405d0e2fce5SAneesh Kumar K.V##########################################
4406d2042378SAneesh Kumar K.V# check if we have open_by_handle_at
4407d2042378SAneesh Kumar K.V
44084e1797f9SStefan Weilopen_by_handle_at=no
4409d2042378SAneesh Kumar K.Vcat > $TMPC << EOF
4410d2042378SAneesh Kumar K.V#include <fcntl.h>
4411acc55ba8SStefan Weil#if !defined(AT_EMPTY_PATH)
4412acc55ba8SStefan Weil# error missing definition
4413acc55ba8SStefan Weil#else
441475cafad7SStefan Weilint main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); }
4415acc55ba8SStefan Weil#endif
4416d2042378SAneesh Kumar K.VEOF
4417d2042378SAneesh Kumar K.Vif compile_prog "" "" ; then
4418d2042378SAneesh Kumar K.V    open_by_handle_at=yes
4419d2042378SAneesh Kumar K.Vfi
4420d2042378SAneesh Kumar K.V
4421e06a765eSHarsh Prateek Bora########################################
4422e06a765eSHarsh Prateek Bora# check if we have linux/magic.h
4423e06a765eSHarsh Prateek Bora
4424e06a765eSHarsh Prateek Boralinux_magic_h=no
4425e06a765eSHarsh Prateek Boracat > $TMPC << EOF
4426e06a765eSHarsh Prateek Bora#include <linux/magic.h>
4427e06a765eSHarsh Prateek Boraint main(void) {
442875cafad7SStefan Weil  return 0;
4429e06a765eSHarsh Prateek Bora}
4430e06a765eSHarsh Prateek BoraEOF
4431e06a765eSHarsh Prateek Boraif compile_prog "" "" ; then
4432e06a765eSHarsh Prateek Bora    linux_magic_h=yes
4433e06a765eSHarsh Prateek Borafi
4434e06a765eSHarsh Prateek Bora
44358ab1bf12SLuiz Capitulino########################################
4436c95e3080SKevin Wolf# check whether we can disable warning option with a pragma (this is needed
4437c95e3080SKevin Wolf# to silence warnings in the headers of some versions of external libraries).
4438c95e3080SKevin Wolf# This test has to be compiled with -Werror as otherwise an unknown pragma is
4439c95e3080SKevin Wolf# only a warning.
4440c95e3080SKevin Wolf#
4441c95e3080SKevin Wolf# If we can't selectively disable warning in the code, disable -Werror so that
4442c95e3080SKevin Wolf# the build doesn't fail anyway.
4443c95e3080SKevin Wolf
444406d71fa1SPeter Maydellpragma_disable_unused_but_set=no
444506d71fa1SPeter Maydellcat > $TMPC << EOF
4446e6f53fd5SMarkus Armbruster#pragma GCC diagnostic push
444706d71fa1SPeter Maydell#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
4448c95e3080SKevin Wolf#pragma GCC diagnostic ignored "-Wstrict-prototypes"
4449e6f53fd5SMarkus Armbruster#pragma GCC diagnostic pop
4450c95e3080SKevin Wolf
445106d71fa1SPeter Maydellint main(void) {
445206d71fa1SPeter Maydell    return 0;
445306d71fa1SPeter Maydell}
445406d71fa1SPeter MaydellEOF
445506d71fa1SPeter Maydellif compile_prog "-Werror" "" ; then
4456cc6e3ca9SGerd Hoffmann    pragma_diagnostic_available=yes
4457c95e3080SKevin Wolfelse
4458c95e3080SKevin Wolf    werror=no
445906d71fa1SPeter Maydellfi
446006d71fa1SPeter Maydell
446106d71fa1SPeter Maydell########################################
4462541be927SChristian Borntraeger# check if we have valgrind/valgrind.h
44633f4349dcSKevin Wolf
44643f4349dcSKevin Wolfvalgrind_h=no
44653f4349dcSKevin Wolfcat > $TMPC << EOF
44663f4349dcSKevin Wolf#include <valgrind/valgrind.h>
44673f4349dcSKevin Wolfint main(void) {
44683f4349dcSKevin Wolf  return 0;
44693f4349dcSKevin Wolf}
44703f4349dcSKevin WolfEOF
44713f4349dcSKevin Wolfif compile_prog "" "" ; then
44723f4349dcSKevin Wolf    valgrind_h=yes
44733f4349dcSKevin Wolffi
44743f4349dcSKevin Wolf
44753f4349dcSKevin Wolf########################################
44768ab1bf12SLuiz Capitulino# check if environ is declared
44778ab1bf12SLuiz Capitulino
44788ab1bf12SLuiz Capitulinohas_environ=no
44798ab1bf12SLuiz Capitulinocat > $TMPC << EOF
44808ab1bf12SLuiz Capitulino#include <unistd.h>
44818ab1bf12SLuiz Capitulinoint main(void) {
4482c075a723SBlue Swirl    environ = 0;
44838ab1bf12SLuiz Capitulino    return 0;
44848ab1bf12SLuiz Capitulino}
44858ab1bf12SLuiz CapitulinoEOF
44868ab1bf12SLuiz Capitulinoif compile_prog "" "" ; then
44878ab1bf12SLuiz Capitulino    has_environ=yes
44888ab1bf12SLuiz Capitulinofi
44898ab1bf12SLuiz Capitulino
449076a347e1SRichard Henderson########################################
449176a347e1SRichard Henderson# check if cpuid.h is usable.
449276a347e1SRichard Henderson
449376a347e1SRichard Hendersoncpuid_h=no
449476a347e1SRichard Hendersoncat > $TMPC << EOF
449576a347e1SRichard Henderson#include <cpuid.h>
449676a347e1SRichard Hendersonint main(void) {
4497774d566cSPeter Maydell    unsigned a, b, c, d;
4498774d566cSPeter Maydell    int max = __get_cpuid_max(0, 0);
4499774d566cSPeter Maydell
4500774d566cSPeter Maydell    if (max >= 1) {
4501774d566cSPeter Maydell        __cpuid(1, a, b, c, d);
4502774d566cSPeter Maydell    }
4503774d566cSPeter Maydell
4504774d566cSPeter Maydell    if (max >= 7) {
4505774d566cSPeter Maydell        __cpuid_count(7, 0, a, b, c, d);
4506774d566cSPeter Maydell    }
4507774d566cSPeter Maydell
450876a347e1SRichard Henderson    return 0;
450976a347e1SRichard Henderson}
451076a347e1SRichard HendersonEOF
451176a347e1SRichard Hendersonif compile_prog "" "" ; then
451276a347e1SRichard Henderson    cpuid_h=yes
451376a347e1SRichard Hendersonfi
451476a347e1SRichard Henderson
4515f540166bSRichard Henderson########################################
4516f540166bSRichard Henderson# check if __[u]int128_t is usable.
4517f540166bSRichard Henderson
4518f540166bSRichard Hendersonint128=no
4519f540166bSRichard Hendersoncat > $TMPC << EOF
4520a00f66abSStefan Weil#if defined(__clang_major__) && defined(__clang_minor__)
4521a00f66abSStefan Weil# if ((__clang_major__ < 3) || (__clang_major__ == 3) && (__clang_minor__ < 2))
4522a00f66abSStefan Weil#  error __int128_t does not work in CLANG before 3.2
4523a00f66abSStefan Weil# endif
4524a00f66abSStefan Weil#endif
4525f540166bSRichard Henderson__int128_t a;
4526f540166bSRichard Henderson__uint128_t b;
4527f540166bSRichard Hendersonint main (void) {
4528f540166bSRichard Henderson  a = a + b;
4529f540166bSRichard Henderson  b = a * b;
4530464e3671SPeter Maydell  a = a * a;
4531f540166bSRichard Henderson  return 0;
4532f540166bSRichard Henderson}
4533f540166bSRichard HendersonEOF
4534f540166bSRichard Hendersonif compile_prog "" "" ; then
4535f540166bSRichard Henderson    int128=yes
4536f540166bSRichard Hendersonfi
453776a347e1SRichard Henderson
45387ebee43eSRichard Henderson#########################################
45397ebee43eSRichard Henderson# See if 128-bit atomic operations are supported.
45407ebee43eSRichard Henderson
45417ebee43eSRichard Hendersonatomic128=no
45427ebee43eSRichard Hendersonif test "$int128" = "yes"; then
45437ebee43eSRichard Henderson  cat > $TMPC << EOF
45447ebee43eSRichard Hendersonint main(void)
45457ebee43eSRichard Henderson{
45467ebee43eSRichard Henderson  unsigned __int128 x = 0, y = 0;
45477ebee43eSRichard Henderson  y = __atomic_load_16(&x, 0);
45487ebee43eSRichard Henderson  __atomic_store_16(&x, y, 0);
45497ebee43eSRichard Henderson  __atomic_compare_exchange_16(&x, &y, x, 0, 0, 0);
45507ebee43eSRichard Henderson  return 0;
45517ebee43eSRichard Henderson}
45527ebee43eSRichard HendersonEOF
45537ebee43eSRichard Henderson  if compile_prog "" "" ; then
45547ebee43eSRichard Henderson    atomic128=yes
45557ebee43eSRichard Henderson  fi
45567ebee43eSRichard Hendersonfi
45577ebee43eSRichard Henderson
4558df79b996SRichard Henderson#########################################
4559df79b996SRichard Henderson# See if 64-bit atomic operations are supported.
4560df79b996SRichard Henderson# Note that without __atomic builtins, we can only
4561df79b996SRichard Henderson# assume atomic loads/stores max at pointer size.
4562df79b996SRichard Henderson
4563df79b996SRichard Hendersoncat > $TMPC << EOF
4564df79b996SRichard Henderson#include <stdint.h>
4565df79b996SRichard Hendersonint main(void)
4566df79b996SRichard Henderson{
4567df79b996SRichard Henderson  uint64_t x = 0, y = 0;
4568df79b996SRichard Henderson#ifdef __ATOMIC_RELAXED
4569df79b996SRichard Henderson  y = __atomic_load_8(&x, 0);
4570df79b996SRichard Henderson  __atomic_store_8(&x, y, 0);
4571df79b996SRichard Henderson  __atomic_compare_exchange_8(&x, &y, x, 0, 0, 0);
4572df79b996SRichard Henderson  __atomic_exchange_8(&x, y, 0);
4573df79b996SRichard Henderson  __atomic_fetch_add_8(&x, y, 0);
4574df79b996SRichard Henderson#else
4575df79b996SRichard Henderson  typedef char is_host64[sizeof(void *) >= sizeof(uint64_t) ? 1 : -1];
4576df79b996SRichard Henderson  __sync_lock_test_and_set(&x, y);
4577df79b996SRichard Henderson  __sync_val_compare_and_swap(&x, y, 0);
4578df79b996SRichard Henderson  __sync_fetch_and_add(&x, y);
4579df79b996SRichard Henderson#endif
4580df79b996SRichard Henderson  return 0;
4581df79b996SRichard Henderson}
4582df79b996SRichard HendersonEOF
4583df79b996SRichard Hendersonif compile_prog "" "" ; then
4584df79b996SRichard Henderson  atomic64=yes
4585df79b996SRichard Hendersonfi
4586df79b996SRichard Henderson
45871e6e9acaSRichard Henderson########################################
45881e6e9acaSRichard Henderson# check if getauxval is available.
45891e6e9acaSRichard Henderson
45901e6e9acaSRichard Hendersongetauxval=no
45911e6e9acaSRichard Hendersoncat > $TMPC << EOF
45921e6e9acaSRichard Henderson#include <sys/auxv.h>
45931e6e9acaSRichard Hendersonint main(void) {
45941e6e9acaSRichard Henderson  return getauxval(AT_HWCAP) == 0;
45951e6e9acaSRichard Henderson}
45961e6e9acaSRichard HendersonEOF
45971e6e9acaSRichard Hendersonif compile_prog "" "" ; then
45981e6e9acaSRichard Henderson    getauxval=yes
45991e6e9acaSRichard Hendersonfi
46001e6e9acaSRichard Henderson
4601fd0e6053SJohn Snow########################################
4602fd0e6053SJohn Snow# check if ccache is interfering with
4603fd0e6053SJohn Snow# semantic analysis of macros
4604fd0e6053SJohn Snow
46055e4dfd3dSJohn Snowunset CCACHE_CPP2
4606fd0e6053SJohn Snowccache_cpp2=no
4607fd0e6053SJohn Snowcat > $TMPC << EOF
4608fd0e6053SJohn Snowstatic const int Z = 1;
4609fd0e6053SJohn Snow#define fn() ({ Z; })
4610fd0e6053SJohn Snow#define TAUT(X) ((X) == Z)
4611fd0e6053SJohn Snow#define PAREN(X, Y) (X == Y)
4612fd0e6053SJohn Snow#define ID(X) (X)
4613fd0e6053SJohn Snowint main(int argc, char *argv[])
4614fd0e6053SJohn Snow{
4615fd0e6053SJohn Snow    int x = 0, y = 0;
4616fd0e6053SJohn Snow    x = ID(x);
4617fd0e6053SJohn Snow    x = fn();
4618fd0e6053SJohn Snow    fn();
4619fd0e6053SJohn Snow    if (PAREN(x, y)) return 0;
4620fd0e6053SJohn Snow    if (TAUT(Z)) return 0;
4621fd0e6053SJohn Snow    return 0;
4622fd0e6053SJohn Snow}
4623fd0e6053SJohn SnowEOF
4624fd0e6053SJohn Snow
4625fd0e6053SJohn Snowif ! compile_object "-Werror"; then
4626fd0e6053SJohn Snow    ccache_cpp2=yes
4627fd0e6053SJohn Snowfi
4628fd0e6053SJohn Snow
4629b553a042SJohn Snow#################################################
4630b553a042SJohn Snow# clang does not support glibc + FORTIFY_SOURCE.
4631b553a042SJohn Snow
4632b553a042SJohn Snowif test "$fortify_source" != "no"; then
4633b553a042SJohn Snow  if echo | $cc -dM -E - | grep __clang__ > /dev/null 2>&1 ; then
4634b553a042SJohn Snow    fortify_source="no";
4635cfcc7c14SJohn Snow  elif test -n "$cxx" &&
4636cfcc7c14SJohn Snow       echo | $cxx -dM -E - | grep __clang__ >/dev/null 2>&1 ; then
4637b553a042SJohn Snow    fortify_source="no";
4638b553a042SJohn Snow  else
4639b553a042SJohn Snow    fortify_source="yes"
4640b553a042SJohn Snow  fi
4641b553a042SJohn Snowfi
4642b553a042SJohn Snow
4643d2042378SAneesh Kumar K.V##########################################
4644277abf15SJan Vesely# check if struct fsxattr is available via linux/fs.h
4645277abf15SJan Vesely
4646277abf15SJan Veselyhave_fsxattr=no
4647277abf15SJan Veselycat > $TMPC << EOF
4648277abf15SJan Vesely#include <linux/fs.h>
4649277abf15SJan Veselystruct fsxattr foo;
4650277abf15SJan Veselyint main(void) {
4651277abf15SJan Vesely  return 0;
4652277abf15SJan Vesely}
4653277abf15SJan VeselyEOF
4654277abf15SJan Veselyif compile_prog "" "" ; then
4655277abf15SJan Vesely    have_fsxattr=yes
4656277abf15SJan Veselyfi
4657277abf15SJan Vesely
4658b66e10e4SPeter Maydell##########################################
4659b66e10e4SPeter Maydell# check if rtnetlink.h exists and is useful
4660575b22b1SLaurent Vivierhave_rtnetlink=no
4661575b22b1SLaurent Viviercat > $TMPC << EOF
4662575b22b1SLaurent Vivier#include <linux/rtnetlink.h>
4663575b22b1SLaurent Vivierint main(void) {
4664575b22b1SLaurent Vivier  return IFLA_PROTO_DOWN;
4665575b22b1SLaurent Vivier}
4666575b22b1SLaurent VivierEOF
4667575b22b1SLaurent Vivierif compile_prog "" "" ; then
4668575b22b1SLaurent Vivier    have_rtnetlink=yes
4669575b22b1SLaurent Vivierfi
4670575b22b1SLaurent Vivier
46716969ec6cSJames Clarke#################################################
46726969ec6cSJames Clarke# Sparc implicitly links with --relax, which is
46736969ec6cSJames Clarke# incompatible with -r, so --no-relax should be
46746969ec6cSJames Clarke# given. It does no harm to give it on other
46756969ec6cSJames Clarke# platforms too.
46766969ec6cSJames Clarke
46776969ec6cSJames Clarke# Note: the prototype is needed since QEMU_CFLAGS
46786969ec6cSJames Clarke#       contains -Wmissing-prototypes
46796969ec6cSJames Clarkecat > $TMPC << EOF
46806969ec6cSJames Clarkeextern int foo(void);
46816969ec6cSJames Clarkeint foo(void) { return 0; }
46826969ec6cSJames ClarkeEOF
46836969ec6cSJames Clarkeif ! compile_object ""; then
46846969ec6cSJames Clarke  error_exit "Failed to compile object file for LD_REL_FLAGS test"
46856969ec6cSJames Clarkefi
46866969ec6cSJames Clarkeif do_cc -nostdlib -Wl,-r -Wl,--no-relax -o $TMPMO $TMPO; then
46876969ec6cSJames Clarke  LD_REL_FLAGS="-Wl,--no-relax"
46886969ec6cSJames Clarkefi
46896969ec6cSJames Clarke
4690277abf15SJan Vesely##########################################
4691e86ecd4bSJuan Quintela# End of CC checks
4692e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs
4693e86ecd4bSJuan Quintela
46941d728c39SBlue Swirlif test "$gcov" = "yes" ; then
46951d728c39SBlue Swirl  CFLAGS="-fprofile-arcs -ftest-coverage -g $CFLAGS"
46961d728c39SBlue Swirl  LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS"
4697b553a042SJohn Snowelif test "$fortify_source" = "yes" ; then
4698e600cdf3SMichal Privoznik  CFLAGS="-O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $CFLAGS"
4699ce278618SPeter Maydellelif test "$debug" = "no"; then
4700ce278618SPeter Maydell  CFLAGS="-O2 $CFLAGS"
4701e86ecd4bSJuan Quintelafi
4702a316e378SJuan Quintela
47036542aa9cSPeter Lieven##########################################
47046542aa9cSPeter Lieven# Do we have libnfs
47056542aa9cSPeter Lievenif test "$libnfs" != "no" ; then
4706b7d769c9SPeter Lieven  if $pkg_config --atleast-version=1.9.3 libnfs; then
47076542aa9cSPeter Lieven    libnfs="yes"
47086542aa9cSPeter Lieven    libnfs_libs=$($pkg_config --libs libnfs)
47096542aa9cSPeter Lieven  else
47106542aa9cSPeter Lieven    if test "$libnfs" = "yes" ; then
47118efc9363SHu Tao      feature_not_found "libnfs" "Install libnfs devel >= 1.9.3"
47126542aa9cSPeter Lieven    fi
47136542aa9cSPeter Lieven    libnfs="no"
47146542aa9cSPeter Lieven  fi
47156542aa9cSPeter Lievenfi
47161d728c39SBlue Swirl
47176ca026cbSPeter Maydell# Now we've finished running tests it's OK to add -Werror to the compiler flags
47186ca026cbSPeter Maydellif test "$werror" = "yes"; then
47196ca026cbSPeter Maydell    QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
47206ca026cbSPeter Maydellfi
47216ca026cbSPeter Maydell
4722e86ecd4bSJuan Quintelaif test "$solaris" = "no" ; then
4723e86ecd4bSJuan Quintela    if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
47241156c669SJuan Quintela        LDFLAGS="-Wl,--warn-common $LDFLAGS"
4725e86ecd4bSJuan Quintela    fi
4726e86ecd4bSJuan Quintelafi
4727e86ecd4bSJuan Quintela
472894dd53c5SGerd Hoffmann# test if pod2man has --utf8 option
472994dd53c5SGerd Hoffmannif pod2man --help | grep -q utf8; then
473094dd53c5SGerd Hoffmann    POD2MAN="pod2man --utf8"
473194dd53c5SGerd Hoffmannelse
473294dd53c5SGerd Hoffmann    POD2MAN="pod2man"
473394dd53c5SGerd Hoffmannfi
473494dd53c5SGerd Hoffmann
4735952afb71SBlue Swirl# Use ASLR, no-SEH and DEP if available
4736952afb71SBlue Swirlif test "$mingw32" = "yes" ; then
4737952afb71SBlue Swirl    for flag in --dynamicbase --no-seh --nxcompat; do
4738952afb71SBlue Swirl        if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
4739952afb71SBlue Swirl            LDFLAGS="-Wl,$flag $LDFLAGS"
4740952afb71SBlue Swirl        fi
4741952afb71SBlue Swirl    done
4742952afb71SBlue Swirlfi
4743952afb71SBlue Swirl
474410ea68b3SEduardo Habkostqemu_confdir=$sysconfdir$confsuffix
4745e26110cfSFam Zhengqemu_moddir=$libdir$confsuffix
4746528ae5b8SEduardo Habkostqemu_datadir=$datadir$confsuffix
4747834574eaSAnthony Liguoriqemu_localedir="$datadir/locale"
47485a67135aSbellard
47494b1c11fdSDaniel P. Berrangetools=""
47504b1c11fdSDaniel P. Berrangeif test "$want_tools" = "yes" ; then
4751ca35f780SPaolo Bonzini  tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
47524b1c11fdSDaniel P. Berrange  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
47534b1c11fdSDaniel P. Berrange    tools="qemu-nbd\$(EXESUF) $tools"
4754a75eb03bSDavid Marchand    tools="ivshmem-client\$(EXESUF) ivshmem-server\$(EXESUF) $tools"
47554b1c11fdSDaniel P. Berrange  fi
47564b1c11fdSDaniel P. Berrangefi
47574b1c11fdSDaniel P. Berrangeif test "$softmmu" = yes ; then
4758983eef5aSMeador Inge  if test "$virtfs" != no ; then
4759be5ea8edSAnthony Liguori    if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then
4760983eef5aSMeador Inge      virtfs=yes
476117bff52bSM. Mohan Kumar      tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
4762983eef5aSMeador Inge    else
4763983eef5aSMeador Inge      if test "$virtfs" = yes; then
47643f3b5388SStefan Weil        error_exit "VirtFS is supported only on Linux and requires libcap devel and libattr devel"
4765983eef5aSMeador Inge      fi
476617500370SAndreas Färber      virtfs=no
4767983eef5aSMeador Inge    fi
476817bff52bSM. Mohan Kumar  fi
4769d138cee9SMichael Rothfi
47709d6bc27bSMichael Roth
47719d6bc27bSMichael Roth# Probe for guest agent support/options
47729d6bc27bSMichael Roth
4773e8ef31a3SMichael Tokarevif [ "$guest_agent" != "no" ]; then
4774b39297aeSTomoki Sekiyama  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" -o "$mingw32" = "yes" ] ; then
4775fafcaf1dSMichael Roth      tools="qemu-ga $tools"
4776e8ef31a3SMichael Tokarev      guest_agent=yes
4777e8ef31a3SMichael Tokarev  elif [ "$guest_agent" != yes ]; then
4778e8ef31a3SMichael Tokarev      guest_agent=no
4779e8ef31a3SMichael Tokarev  else
4780e8ef31a3SMichael Tokarev      error_exit "Guest agent is not supported on this platform"
4781ca35f780SPaolo Bonzini  fi
47824b1c11fdSDaniel P. Berrangefi
4783ca35f780SPaolo Bonzini
47849d6bc27bSMichael Roth# Guest agent Window MSI  package
47859d6bc27bSMichael Roth
47869d6bc27bSMichael Rothif test "$guest_agent" != yes; then
47879d6bc27bSMichael Roth  if test "$guest_agent_msi" = yes; then
47889d6bc27bSMichael Roth    error_exit "MSI guest agent package requires guest agent enabled"
47899d6bc27bSMichael Roth  fi
47909d6bc27bSMichael Roth  guest_agent_msi=no
47919d6bc27bSMichael Rothelif test "$mingw32" != "yes"; then
47929d6bc27bSMichael Roth  if test "$guest_agent_msi" = "yes"; then
47939d6bc27bSMichael Roth    error_exit "MSI guest agent package is available only for MinGW Windows cross-compilation"
47949d6bc27bSMichael Roth  fi
47959d6bc27bSMichael Roth  guest_agent_msi=no
47969d6bc27bSMichael Rothelif ! has wixl; then
47979d6bc27bSMichael Roth  if test "$guest_agent_msi" = "yes"; then
47989d6bc27bSMichael Roth    error_exit "MSI guest agent package requires wixl tool installed ( usually from msitools package )"
47999d6bc27bSMichael Roth  fi
48009d6bc27bSMichael Roth  guest_agent_msi=no
48011a34904eSMichael Rothelse
48021a34904eSMichael Roth  # we support qemu-ga, mingw32, and wixl: default to MSI enabled if it wasn't
48031a34904eSMichael Roth  # disabled explicitly
48041a34904eSMichael Roth  if test "$guest_agent_msi" != "no"; then
48051a34904eSMichael Roth    guest_agent_msi=yes
48061a34904eSMichael Roth  fi
48079d6bc27bSMichael Rothfi
48089d6bc27bSMichael Roth
48091a34904eSMichael Rothif test "$guest_agent_msi" = "yes"; then
48109d6bc27bSMichael Roth  if test "$guest_agent_with_vss" = "yes"; then
48119d6bc27bSMichael Roth    QEMU_GA_MSI_WITH_VSS="-D InstallVss"
48129d6bc27bSMichael Roth  fi
48139d6bc27bSMichael Roth
48149d6bc27bSMichael Roth  if test "$QEMU_GA_MANUFACTURER" = ""; then
48159d6bc27bSMichael Roth    QEMU_GA_MANUFACTURER=QEMU
48169d6bc27bSMichael Roth  fi
48179d6bc27bSMichael Roth
48189d6bc27bSMichael Roth  if test "$QEMU_GA_DISTRO" = ""; then
48199d6bc27bSMichael Roth    QEMU_GA_DISTRO=Linux
48209d6bc27bSMichael Roth  fi
48219d6bc27bSMichael Roth
48229d6bc27bSMichael Roth  if test "$QEMU_GA_VERSION" = ""; then
482389138857SStefan Weil      QEMU_GA_VERSION=$(cat $source_path/VERSION)
48249d6bc27bSMichael Roth  fi
48259d6bc27bSMichael Roth
482689138857SStefan Weil  QEMU_GA_MSI_MINGW_DLL_PATH="-D Mingw_dlls=$($pkg_config --variable=prefix glib-2.0)/bin"
48279d6bc27bSMichael Roth
48289d6bc27bSMichael Roth  case "$cpu" in
48299d6bc27bSMichael Roth  x86_64)
48309d6bc27bSMichael Roth    QEMU_GA_MSI_ARCH="-a x64 -D Arch=64"
48319d6bc27bSMichael Roth    ;;
48329d6bc27bSMichael Roth  i386)
48339d6bc27bSMichael Roth    QEMU_GA_MSI_ARCH="-D Arch=32"
48349d6bc27bSMichael Roth    ;;
48359d6bc27bSMichael Roth  *)
48369d6bc27bSMichael Roth    error_exit "CPU $cpu not supported for building installation package"
48379d6bc27bSMichael Roth    ;;
48389d6bc27bSMichael Roth  esac
48399d6bc27bSMichael Rothfi
48409d6bc27bSMichael Roth
4841ca35f780SPaolo Bonzini# Mac OS X ships with a broken assembler
4842ca35f780SPaolo Bonziniroms=
4843ca35f780SPaolo Bonziniif test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
4844ca35f780SPaolo Bonzini        "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
4845ca35f780SPaolo Bonzini        "$softmmu" = yes ; then
4846e57218b6SPeter Maydell    # Different host OS linkers have different ideas about the name of the ELF
4847e57218b6SPeter Maydell    # emulation. Linux and OpenBSD use 'elf_i386'; FreeBSD uses the _fbsd
4848e57218b6SPeter Maydell    # variant; and Windows uses i386pe.
4849e57218b6SPeter Maydell    for emu in elf_i386 elf_i386_fbsd i386pe; do
4850e57218b6SPeter Maydell        if "$ld" -verbose 2>&1 | grep -q "^[[:space:]]*$emu[[:space:]]*$"; then
4851e57218b6SPeter Maydell            ld_i386_emulation="$emu"
4852ca35f780SPaolo Bonzini            roms="optionrom"
4853e57218b6SPeter Maydell            break
4854e57218b6SPeter Maydell        fi
4855e57218b6SPeter Maydell    done
4856ca35f780SPaolo Bonzinifi
4857d0384d1dSAndreas Färberif test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then
485839ac8455SDavid Gibson  roms="$roms spapr-rtas"
485939ac8455SDavid Gibsonfi
4860ca35f780SPaolo Bonzini
48619933c305SChristian Borntraegerif test "$cpu" = "s390x" ; then
48629933c305SChristian Borntraeger  roms="$roms s390-ccw"
48639933c305SChristian Borntraegerfi
48649933c305SChristian Borntraeger
4865964c6fa1SRichard Henderson# Probe for the need for relocating the user-only binary.
486692fe2ba8SPeter Maydellif ( [ "$linux_user" = yes ] || [ "$bsd_user" = yes ] ) && [ "$pie" = no ]; then
4867964c6fa1SRichard Henderson  textseg_addr=
4868964c6fa1SRichard Henderson  case "$cpu" in
4869479eb121SRichard Henderson    arm | i386 | ppc* | s390* | sparc* | x86_64 | x32)
4870479eb121SRichard Henderson      # ??? Rationale for choosing this address
4871964c6fa1SRichard Henderson      textseg_addr=0x60000000
4872964c6fa1SRichard Henderson      ;;
4873964c6fa1SRichard Henderson    mips)
4874479eb121SRichard Henderson      # A 256M aligned address, high in the address space, with enough
4875479eb121SRichard Henderson      # room for the code_gen_buffer above it before the stack.
4876479eb121SRichard Henderson      textseg_addr=0x60000000
4877964c6fa1SRichard Henderson      ;;
4878964c6fa1SRichard Henderson  esac
4879964c6fa1SRichard Henderson  if [ -n "$textseg_addr" ]; then
4880964c6fa1SRichard Henderson    cat > $TMPC <<EOF
4881964c6fa1SRichard Henderson    int main(void) { return 0; }
4882964c6fa1SRichard HendersonEOF
4883964c6fa1SRichard Henderson    textseg_ldflags="-Wl,-Ttext-segment=$textseg_addr"
4884964c6fa1SRichard Henderson    if ! compile_prog "" "$textseg_ldflags"; then
4885964c6fa1SRichard Henderson      # In case ld does not support -Ttext-segment, edit the default linker
4886964c6fa1SRichard Henderson      # script via sed to set the .text start addr.  This is needed on FreeBSD
4887964c6fa1SRichard Henderson      # at least.
488892fe2ba8SPeter Maydell      if ! $ld --verbose >/dev/null 2>&1; then
488992fe2ba8SPeter Maydell        error_exit \
489092fe2ba8SPeter Maydell            "We need to link the QEMU user mode binaries at a" \
489192fe2ba8SPeter Maydell            "specific text address. Unfortunately your linker" \
489292fe2ba8SPeter Maydell            "doesn't support either the -Ttext-segment option or" \
489392fe2ba8SPeter Maydell            "printing the default linker script with --verbose." \
489492fe2ba8SPeter Maydell            "If you don't want the user mode binaries, pass the" \
489592fe2ba8SPeter Maydell            "--disable-user option to configure."
489692fe2ba8SPeter Maydell      fi
489792fe2ba8SPeter Maydell
4898964c6fa1SRichard Henderson      $ld --verbose | sed \
4899964c6fa1SRichard Henderson        -e '1,/==================================================/d' \
4900964c6fa1SRichard Henderson        -e '/==================================================/,$d' \
4901964c6fa1SRichard Henderson        -e "s/[.] = [0-9a-fx]* [+] SIZEOF_HEADERS/. = $textseg_addr + SIZEOF_HEADERS/" \
4902964c6fa1SRichard Henderson        -e "s/__executable_start = [0-9a-fx]*/__executable_start = $textseg_addr/" > config-host.ld
4903964c6fa1SRichard Henderson      textseg_ldflags="-Wl,-T../config-host.ld"
4904964c6fa1SRichard Henderson    fi
4905964c6fa1SRichard Henderson  fi
4906964c6fa1SRichard Hendersonfi
4907964c6fa1SRichard Henderson
490802d34f62SCole Robinsonecho_version() {
490902d34f62SCole Robinson    if test "$1" = "yes" ; then
491002d34f62SCole Robinson        echo "($2)"
491102d34f62SCole Robinson    fi
491202d34f62SCole Robinson}
491302d34f62SCole Robinson
491450e12060SJan Kiszka# prepend pixman and ftd flags after all config tests are done
491550e12060SJan KiszkaQEMU_CFLAGS="$pixman_cflags $fdt_cflags $QEMU_CFLAGS"
491650e12060SJan Kiszkalibs_softmmu="$pixman_libs $libs_softmmu"
49175ca9388aSGerd Hoffmann
49187d13299dSbellardecho "Install prefix    $prefix"
491989138857SStefan Weilecho "BIOS directory    $(eval echo $qemu_datadir)"
492089138857SStefan Weilecho "binary directory  $(eval echo $bindir)"
492189138857SStefan Weilecho "library directory $(eval echo $libdir)"
492289138857SStefan Weilecho "module directory  $(eval echo $qemu_moddir)"
492389138857SStefan Weilecho "libexec directory $(eval echo $libexecdir)"
492489138857SStefan Weilecho "include directory $(eval echo $includedir)"
492589138857SStefan Weilecho "config directory  $(eval echo $sysconfdir)"
492611d9f695Sbellardif test "$mingw32" = "no" ; then
492789138857SStefan Weilecho "local state directory   $(eval echo $local_statedir)"
492889138857SStefan Weilecho "Manual directory  $(eval echo $mandir)"
492943ce4dfeSbellardecho "ELF interp prefix $interp_prefix"
49305a699bbbSLaszlo Ersekelse
49315a699bbbSLaszlo Ersekecho "local state directory   queried at runtime"
4932d9840e25STomoki Sekiyamaecho "Windows SDK       $win_sdk"
493311d9f695Sbellardfi
49345a67135aSbellardecho "Source path       $source_path"
49357d13299dSbellardecho "C compiler        $cc"
493683469015Sbellardecho "Host C compiler   $host_cc"
493783f73fceSTomoki Sekiyamaecho "C++ compiler      $cxx"
49383c4a4d0dSPeter Maydellecho "Objective-C compiler $objcc"
493945d285abSPeter Maydellecho "ARFLAGS           $ARFLAGS"
49400c439cbfSJuan Quintelaecho "CFLAGS            $CFLAGS"
4941a558ee17SJuan Quintelaecho "QEMU_CFLAGS       $QEMU_CFLAGS"
49420c439cbfSJuan Quintelaecho "LDFLAGS           $LDFLAGS"
49437d13299dSbellardecho "make              $make"
49446a882643Spbrookecho "install           $install"
4945c886edfbSBlue Swirlecho "python            $python"
4946e2d8830eSBradif test "$slirp" = "yes" ; then
4947e2d8830eSBrad    echo "smbd              $smbd"
4948e2d8830eSBradfi
494917969268SFam Zhengecho "module support    $modules"
4950a98fd896Sbellardecho "host CPU          $cpu"
4951de83cd02Sbellardecho "host big endian   $bigendian"
495297a847bcSbellardecho "target list       $target_list"
4953ade25b0dSaurel32echo "tcg debug enabled $debug_tcg"
49547d13299dSbellardecho "gprof enabled     $gprof"
495503b4fe7dSaliguoriecho "sparse enabled    $sparse"
49561625af87Saliguoriecho "strip binaries    $strip_opt"
495705c2a3e7Sbellardecho "profiler          $profiler"
495843ce4dfeSbellardecho "static build      $static"
49595b0753e0Sbellardif test "$darwin" = "yes" ; then
49605b0753e0Sbellard    echo "Cocoa support     $cocoa"
49615b0753e0Sbellardfi
4962e2134eb9SGerd Hoffmannecho "pixman            $pixman"
496389138857SStefan Weilecho "SDL support       $sdl $(echo_version $sdl $sdlversion)"
496489138857SStefan Weilecho "GTK support       $gtk $(echo_version $gtk $gtk_version)"
4965925a0400SGerd Hoffmannecho "GTK GL support    $gtk_gl"
496689138857SStefan Weilecho "VTE support       $vte $(echo_version $vte $vteversion)"
4967a1c5e949SDaniel P. Berrangeecho "TLS priority      $tls_priority"
4968ddbb0d09SDaniel P. Berrangeecho "GNUTLS support    $gnutls"
4969b917da4cSDaniel P. Berrangeecho "GNUTLS rnd        $gnutls_rnd"
497091bfcdb0SDaniel P. Berrangeecho "libgcrypt         $gcrypt"
497137788f25SDaniel P. Berrangeecho "libgcrypt kdf     $gcrypt_kdf"
497289138857SStefan Weilecho "nettle            $nettle $(echo_version $nettle $nettle_version)"
4973fff2f982SDaniel P. Berrangeecho "nettle kdf        $nettle_kdf"
49749a2fd434SDaniel P. Berrangeecho "libtasn1          $tasn1"
49754d3b6f6eSbalrogecho "curses support    $curses"
49769d9e1521SGerd Hoffmannecho "virgl support     $virglrenderer"
4977769ce76dSAlexander Grafecho "curl support      $curl"
497867b915a5Sbellardecho "mingw32 support   $mingw32"
49790c58ac1cSmalcecho "Audio drivers     $audio_drv_list"
4980b64ec4e4SFam Zhengecho "Block whitelist (rw) $block_drv_rw_whitelist"
4981b64ec4e4SFam Zhengecho "Block whitelist (ro) $block_drv_ro_whitelist"
4982983eef5aSMeador Ingeecho "VirtFS support    $virtfs"
4983821601eaSJes Sorensenecho "VNC support       $vnc"
4984821601eaSJes Sorensenif test "$vnc" = "yes" ; then
49852f9606b3Saliguori    echo "VNC SASL support  $vnc_sasl"
49862f6f5c7aSCorentin Chary    echo "VNC JPEG support  $vnc_jpeg"
4987efe556adSCorentin Chary    echo "VNC PNG support   $vnc_png"
4988821601eaSJes Sorensenfi
49893142255cSblueswir1if test -n "$sparc_cpu"; then
49903142255cSblueswir1    echo "Target Sparc Arch $sparc_cpu"
49913142255cSblueswir1fi
4992e37630caSaliguoriecho "xen support       $xen"
49933996e85cSPaul Durrantif test "$xen" = "yes" ; then
49943996e85cSPaul Durrant  echo "xen ctrl version  $xen_ctrl_version"
499564a7ad6fSIan Campbell  echo "pv dom build      $xen_pv_domain_build"
49963996e85cSPaul Durrantfi
49972e4d9fb1Saurel32echo "brlapi support    $brlapi"
4998a20a6f46SJuan Quintelaecho "bluez  support    $bluez"
4999a25dba17SJuan Quintelaecho "Documentation     $docs"
500040d6444eSAvi Kivityecho "PIE               $pie"
50018a16d273Sthsecho "vde support       $vde"
500258952137SVincenzo Maffioneecho "netmap support    $netmap"
50035c6c3a6cSChristoph Hellwigecho "Linux AIO support $linux_aio"
5004758e8e38SVenkateswararao Jujjuri (JV)echo "ATTR/XATTR support $attr"
500577755340Sthsecho "Install blobs     $blobs"
5006b31a0277SJuan Quintelaecho "KVM support       $kvm"
50072da776dbSMichael R. Hinesecho "RDMA support      $rdma"
50089195b2c2SStefan Weilecho "TCG interpreter   $tcg_interpreter"
5009f652e6afSaurel32echo "fdt support       $fdt"
5010ceb42de8Saliguoriecho "preadv support    $preadv"
50115f6b9e8fSBlue Swirlecho "fdatasync         $fdatasync"
5012e78815a5SAndreas Färberecho "madvise           $madvise"
5013e78815a5SAndreas Färberecho "posix_madvise     $posix_madvise"
501447e98658SCorey Bryantecho "libcap-ng support $cap_ng"
5015d5970055SMichael S. Tsirkinecho "vhost-net support $vhost_net"
50165e9be92dSNicholas Bellingerecho "vhost-scsi support $vhost_scsi"
5017fc0b9b0eSStefan Hajnocziecho "vhost-vsock support $vhost_vsock"
50185b808275SLluís Vilanovaecho "Trace backends    $trace_backends"
5019713572a7SMarc-André Lureauif have_backend "simple"; then
50209410b56cSPrerna Saxenaecho "Trace output file $trace_file-<pid>"
5021e00e36fbSStefan Weilfi
502289138857SStefan Weilecho "spice support     $spice $(echo_version $spice $spice_protocol_version/$spice_server_version)"
5023f27aaf4bSChristian Brunnerecho "rbd support       $rbd"
5024dce512deSChristoph Hellwigecho "xfsctl support    $xfs"
50257b02f544SMarc-André Lureauecho "smartcard support $smartcard"
50262b2325ffSGerd Hoffmannecho "libusb            $libusb"
502769354a83SHans de Goedeecho "usb net redir     $usb_redir"
5028da076ffeSGerd Hoffmannecho "OpenGL support    $opengl"
5029014cb152SGerd Hoffmannecho "OpenGL dmabufs    $opengl_dmabuf"
5030c589b249SRonnie Sahlbergecho "libiscsi support  $libiscsi"
50316542aa9cSPeter Lievenecho "libnfs support    $libnfs"
5032d138cee9SMichael Rothecho "build guest agent $guest_agent"
5033d9840e25STomoki Sekiyamaecho "QGA VSS support   $guest_agent_with_vss"
503450cbebb9SMichael Rothecho "QGA w32 disk info $guest_agent_ntddscsi"
50354c875d89SMichael Rothecho "QGA MSI support   $guest_agent_msi"
5036f794573eSEduardo Otuboecho "seccomp support   $seccomp"
50377c2acc70SPeter Maydellecho "coroutine backend $coroutine"
503870c60c08SStefan Hajnocziecho "coroutine pool    $coroutine_pool"
50397d992e4dSPeter Lievenecho "debug stack usage $debug_stack_usage"
5040eb100396SBharata B Raoecho "GlusterFS support $glusterfs"
5041c9a12e75SChrysostomos Nanakosecho "Archipelago support $archipelago"
50421d728c39SBlue Swirlecho "gcov              $gcov_tool"
50431d728c39SBlue Swirlecho "gcov enabled      $gcov"
5044ab214c29SStefan Bergerecho "TPM support       $tpm"
50450a12ec87SRichard W.M. Jonesecho "libssh2 support   $libssh2"
50463b8acc11SPaolo Bonziniecho "TPM passthrough   $tpm_passthrough"
50473556c233SPaolo Bonziniecho "QOM debugging     $qom_cast_debug"
5048607dacd0Sqiaonuohanecho "lzo support       $lzo"
5049607dacd0Sqiaonuohanecho "snappy support    $snappy"
50506b383c08SPeter Wuecho "bzip2 support     $bzip2"
5051a99d57bbSWanlong Gaoecho "NUMA host support $numa"
50522847b469SFam Zhengecho "tcmalloc support  $tcmalloc"
50537b01cb97SAlexandre Derumierecho "jemalloc support  $jemalloc"
505499f2dbd3SLiang Liecho "avx2 optimization $avx2_opt"
5055a6b1d4c0SChanglong Xieecho "replication support $replication"
505667b915a5Sbellard
50571ba16968SStefan Weilif test "$sdl_too_old" = "yes"; then
505824b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support"
5059e8cd23deSbellardfi
506097a847bcSbellard
506198ec69acSJuan Quintelaconfig_host_mak="config-host.mak"
506297a847bcSbellard
5063dbd99ae3SStefan Weilecho "# Automatically generated by configure - do not modify" >config-all-disas.mak
5064dbd99ae3SStefan Weil
506598ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak
506698ec69acSJuan Quintelaecho >> $config_host_mak
506798ec69acSJuan Quintela
5068e6c3b0f7SPaolo Bonziniecho all: >> $config_host_mak
506999d7cc75SPaolo Bonziniecho "prefix=$prefix" >> $config_host_mak
507099d7cc75SPaolo Bonziniecho "bindir=$bindir" >> $config_host_mak
50713aa5d2beSAlon Levyecho "libdir=$libdir" >> $config_host_mak
50728bf188aaSMichael Tokarevecho "libexecdir=$libexecdir" >> $config_host_mak
50730f94d6daSAlon Levyecho "includedir=$includedir" >> $config_host_mak
507499d7cc75SPaolo Bonziniecho "mandir=$mandir" >> $config_host_mak
507599d7cc75SPaolo Bonziniecho "sysconfdir=$sysconfdir" >> $config_host_mak
507622d07038SEduardo Habkostecho "qemu_confdir=$qemu_confdir" >> $config_host_mak
50779afa52ceSEduardo Habkostecho "qemu_datadir=$qemu_datadir" >> $config_host_mak
50789afa52ceSEduardo Habkostecho "qemu_docdir=$qemu_docdir" >> $config_host_mak
5079e26110cfSFam Zhengecho "qemu_moddir=$qemu_moddir" >> $config_host_mak
50805a699bbbSLaszlo Ersekif test "$mingw32" = "no" ; then
5081785c23aeSLuiz Capitulino  echo "qemu_localstatedir=$local_statedir" >> $config_host_mak
50825a699bbbSLaszlo Ersekfi
5083f354b1a1SMichael Tokarevecho "qemu_helperdir=$libexecdir" >> $config_host_mak
5084f9943cd5SGerd Hoffmannecho "extra_cflags=$EXTRA_CFLAGS" >> $config_host_mak
5085f9943cd5SGerd Hoffmannecho "extra_ldflags=$EXTRA_LDFLAGS" >> $config_host_mak
5086834574eaSAnthony Liguoriecho "qemu_localedir=$qemu_localedir" >> $config_host_mak
5087f544a488SPaolo Bonziniecho "libs_softmmu=$libs_softmmu" >> $config_host_mak
5088804edf29SJuan Quintela
508998ec69acSJuan Quintelaecho "ARCH=$ARCH" >> $config_host_mak
5090727e5283SPaolo Bonzini
5091f8393946Saurel32if test "$debug_tcg" = "yes" ; then
50922358a494SJuan Quintela  echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
5093f8393946Saurel32fi
50941625af87Saliguoriif test "$strip_opt" = "yes" ; then
509552ba784dSHollis Blanchard  echo "STRIP=${strip}" >> $config_host_mak
50961625af87Saliguorifi
50977d13299dSbellardif test "$bigendian" = "yes" ; then
5098e2542fe2SJuan Quintela  echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
509997a847bcSbellardfi
510067b915a5Sbellardif test "$mingw32" = "yes" ; then
510198ec69acSJuan Quintela  echo "CONFIG_WIN32=y" >> $config_host_mak
510289138857SStefan Weil  rc_version=$(cat $source_path/VERSION)
51039fe6de94SBlue Swirl  version_major=${rc_version%%.*}
51049fe6de94SBlue Swirl  rc_version=${rc_version#*.}
51059fe6de94SBlue Swirl  version_minor=${rc_version%%.*}
51069fe6de94SBlue Swirl  rc_version=${rc_version#*.}
51079fe6de94SBlue Swirl  version_subminor=${rc_version%%.*}
51089fe6de94SBlue Swirl  version_micro=0
51099fe6de94SBlue Swirl  echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
51109fe6de94SBlue Swirl  echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
5111d9840e25STomoki Sekiyama  if test "$guest_agent_with_vss" = "yes" ; then
5112d9840e25STomoki Sekiyama    echo "CONFIG_QGA_VSS=y" >> $config_host_mak
5113f33ca81fSMichael Roth    echo "QGA_VSS_PROVIDER=$qga_vss_provider" >> $config_host_mak
5114d9840e25STomoki Sekiyama    echo "WIN_SDK=\"$win_sdk\"" >> $config_host_mak
5115d9840e25STomoki Sekiyama  fi
511650cbebb9SMichael Roth  if test "$guest_agent_ntddscsi" = "yes" ; then
511750cbebb9SMichael Roth    echo "CONFIG_QGA_NTDDDISK=y" >> $config_host_mak
511850cbebb9SMichael Roth  fi
51191a34904eSMichael Roth  if test "$guest_agent_msi" = "yes"; then
51209dacf32dSYossi Hindin    echo "QEMU_GA_MSI_ENABLED=yes" >> $config_host_mak
51219dacf32dSYossi Hindin    echo "QEMU_GA_MSI_MINGW_DLL_PATH=${QEMU_GA_MSI_MINGW_DLL_PATH}" >> $config_host_mak
51229dacf32dSYossi Hindin    echo "QEMU_GA_MSI_WITH_VSS=${QEMU_GA_MSI_WITH_VSS}" >> $config_host_mak
51239dacf32dSYossi Hindin    echo "QEMU_GA_MSI_ARCH=${QEMU_GA_MSI_ARCH}" >> $config_host_mak
51249dacf32dSYossi Hindin    echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER}" >> $config_host_mak
51259dacf32dSYossi Hindin    echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO}" >> $config_host_mak
51269dacf32dSYossi Hindin    echo "QEMU_GA_VERSION=${QEMU_GA_VERSION}" >> $config_host_mak
51279dacf32dSYossi Hindin  fi
5128210fa556Spbrookelse
512935f4df27SJuan Quintela  echo "CONFIG_POSIX=y" >> $config_host_mak
5130210fa556Spbrookfi
5131128ab2ffSblueswir1
5132dffcb71cSMark McLoughlinif test "$linux" = "yes" ; then
5133dffcb71cSMark McLoughlin  echo "CONFIG_LINUX=y" >> $config_host_mak
5134dffcb71cSMark McLoughlinfi
5135dffcb71cSMark McLoughlin
513683fb7adfSbellardif test "$darwin" = "yes" ; then
513798ec69acSJuan Quintela  echo "CONFIG_DARWIN=y" >> $config_host_mak
513883fb7adfSbellardfi
5139b29fe3edSmalc
5140b29fe3edSmalcif test "$aix" = "yes" ; then
514198ec69acSJuan Quintela  echo "CONFIG_AIX=y" >> $config_host_mak
5142b29fe3edSmalcfi
5143b29fe3edSmalc
5144ec530c81Sbellardif test "$solaris" = "yes" ; then
514598ec69acSJuan Quintela  echo "CONFIG_SOLARIS=y" >> $config_host_mak
51462358a494SJuan Quintela  echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
51470475a5caSths  if test "$needs_libsunmath" = "yes" ; then
514875b5a697SJuan Quintela    echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
51490475a5caSths  fi
5150ec530c81Sbellardfi
5151179cf400SAndreas Färberif test "$haiku" = "yes" ; then
5152179cf400SAndreas Färber  echo "CONFIG_HAIKU=y" >> $config_host_mak
5153179cf400SAndreas Färberfi
515497a847bcSbellardif test "$static" = "yes" ; then
515598ec69acSJuan Quintela  echo "CONFIG_STATIC=y" >> $config_host_mak
515697a847bcSbellardfi
51571ba16968SStefan Weilif test "$profiler" = "yes" ; then
51582358a494SJuan Quintela  echo "CONFIG_PROFILER=y" >> $config_host_mak
515905c2a3e7Sbellardfi
5160c20709aaSbellardif test "$slirp" = "yes" ; then
516198ec69acSJuan Quintela  echo "CONFIG_SLIRP=y" >> $config_host_mak
5162e2d8830eSBrad  echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak
5163c20709aaSbellardfi
51648a16d273Sthsif test "$vde" = "yes" ; then
516598ec69acSJuan Quintela  echo "CONFIG_VDE=y" >> $config_host_mak
51668a16d273Sthsfi
516758952137SVincenzo Maffioneif test "$netmap" = "yes" ; then
516858952137SVincenzo Maffione  echo "CONFIG_NETMAP=y" >> $config_host_mak
516958952137SVincenzo Maffionefi
5170015a33bdSGongleiif test "$l2tpv3" = "yes" ; then
5171015a33bdSGonglei  echo "CONFIG_L2TPV3=y" >> $config_host_mak
5172015a33bdSGongleifi
517347e98658SCorey Bryantif test "$cap_ng" = "yes" ; then
517447e98658SCorey Bryant  echo "CONFIG_LIBCAP=y" >> $config_host_mak
517547e98658SCorey Bryantfi
51762358a494SJuan Quintelaecho "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
51770c58ac1cSmalcfor drv in $audio_drv_list; do
517889138857SStefan Weil    def=CONFIG_$(echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]')
517998ec69acSJuan Quintela    echo "$def=y" >> $config_host_mak
51800c58ac1cSmalcdone
518167f86e8eSJuan Quintelaif test "$audio_pt_int" = "yes" ; then
518267f86e8eSJuan Quintela  echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
518367f86e8eSJuan Quintelafi
5184d5631638Smalcif test "$audio_win_int" = "yes" ; then
5185d5631638Smalc  echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
5186d5631638Smalcfi
5187b64ec4e4SFam Zhengecho "CONFIG_BDRV_RW_WHITELIST=$block_drv_rw_whitelist" >> $config_host_mak
5188b64ec4e4SFam Zhengecho "CONFIG_BDRV_RO_WHITELIST=$block_drv_ro_whitelist" >> $config_host_mak
5189821601eaSJes Sorensenif test "$vnc" = "yes" ; then
5190821601eaSJes Sorensen  echo "CONFIG_VNC=y" >> $config_host_mak
5191821601eaSJes Sorensenfi
51922f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then
519398ec69acSJuan Quintela  echo "CONFIG_VNC_SASL=y" >> $config_host_mak
51942f9606b3Saliguorifi
5195821601eaSJes Sorensenif test "$vnc_jpeg" = "yes" ; then
51962f6f5c7aSCorentin Chary  echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
51972f6f5c7aSCorentin Charyfi
5198821601eaSJes Sorensenif test "$vnc_png" = "yes" ; then
5199efe556adSCorentin Chary  echo "CONFIG_VNC_PNG=y" >> $config_host_mak
5200efe556adSCorentin Charyfi
520176655d6dSaliguoriif test "$fnmatch" = "yes" ; then
52022358a494SJuan Quintela  echo "CONFIG_FNMATCH=y" >> $config_host_mak
520376655d6dSaliguorifi
5204dce512deSChristoph Hellwigif test "$xfs" = "yes" ; then
5205dce512deSChristoph Hellwig  echo "CONFIG_XFS=y" >> $config_host_mak
5206dce512deSChristoph Hellwigfi
520789138857SStefan Weilqemu_version=$(head $source_path/VERSION)
520898ec69acSJuan Quintelaecho "VERSION=$qemu_version" >>$config_host_mak
52092358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak
521098ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak
521198ec69acSJuan Quintelaecho "TARGET_DIRS=$target_list" >> $config_host_mak
5212a25dba17SJuan Quintelaif [ "$docs" = "yes" ] ; then
521398ec69acSJuan Quintela  echo "BUILD_DOCS=yes" >> $config_host_mak
5214cc8ae6deSpbrookfi
521517969268SFam Zhengif test "$modules" = "yes"; then
5216e26110cfSFam Zheng  # $shacmd can generate a hash started with digit, which the compiler doesn't
5217e26110cfSFam Zheng  # like as an symbol. So prefix it with an underscore
521889138857SStefan Weil  echo "CONFIG_STAMP=_$( (echo $qemu_version; echo $pkgversion; cat $0) | $shacmd - | cut -f1 -d\ )" >> $config_host_mak
521917969268SFam Zheng  echo "CONFIG_MODULES=y" >> $config_host_mak
522017969268SFam Zhengfi
52211ac88f28SJuan Quintelaif test "$sdl" = "yes" ; then
522298ec69acSJuan Quintela  echo "CONFIG_SDL=y" >> $config_host_mak
5223a3f4d63dSCole Robinson  echo "CONFIG_SDLABI=$sdlabi" >> $config_host_mak
52248ad3a7ddSJuan Quintela  echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
522549ecc3faSbellardfi
522649ecc3faSbellardif test "$cocoa" = "yes" ; then
522798ec69acSJuan Quintela  echo "CONFIG_COCOA=y" >> $config_host_mak
522849ecc3faSbellardfi
52294d3b6f6eSbalrogif test "$curses" = "yes" ; then
523098ec69acSJuan Quintela  echo "CONFIG_CURSES=y" >> $config_host_mak
5231ab4e5602SJan Kiszkafi
5232ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then
52332358a494SJuan Quintela  echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
5234ebc996f3SRiku Voipiofi
5235099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then
52362358a494SJuan Quintela  echo "CONFIG_PIPE2=y" >> $config_host_mak
5237099d6b0fSRiku Voipiofi
523840ff6d7eSKevin Wolfif test "$accept4" = "yes" ; then
523940ff6d7eSKevin Wolf  echo "CONFIG_ACCEPT4=y" >> $config_host_mak
524040ff6d7eSKevin Wolffi
52413ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then
52422358a494SJuan Quintela  echo "CONFIG_SPLICE=y" >> $config_host_mak
52433ce34dfbSvibisreenivasanfi
5244c2882b96SRiku Voipioif test "$eventfd" = "yes" ; then
5245c2882b96SRiku Voipio  echo "CONFIG_EVENTFD=y" >> $config_host_mak
5246c2882b96SRiku Voipiofi
5247751bcc39SMarc-André Lureauif test "$memfd" = "yes" ; then
5248751bcc39SMarc-André Lureau  echo "CONFIG_MEMFD=y" >> $config_host_mak
5249751bcc39SMarc-André Lureaufi
5250d0927938SUlrich Hechtif test "$fallocate" = "yes" ; then
5251d0927938SUlrich Hecht  echo "CONFIG_FALLOCATE=y" >> $config_host_mak
5252d0927938SUlrich Hechtfi
52533d4fa43eSKusanagi Kouichiif test "$fallocate_punch_hole" = "yes" ; then
52543d4fa43eSKusanagi Kouichi  echo "CONFIG_FALLOCATE_PUNCH_HOLE=y" >> $config_host_mak
52553d4fa43eSKusanagi Kouichifi
5256b953f075SDenis V. Lunevif test "$fallocate_zero_range" = "yes" ; then
5257b953f075SDenis V. Lunev  echo "CONFIG_FALLOCATE_ZERO_RANGE=y" >> $config_host_mak
5258b953f075SDenis V. Lunevfi
5259ed911435SKevin Wolfif test "$posix_fallocate" = "yes" ; then
5260ed911435SKevin Wolf  echo "CONFIG_POSIX_FALLOCATE=y" >> $config_host_mak
5261ed911435SKevin Wolffi
5262c727f47dSPeter Maydellif test "$sync_file_range" = "yes" ; then
5263c727f47dSPeter Maydell  echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak
5264c727f47dSPeter Maydellfi
5265dace20dcSPeter Maydellif test "$fiemap" = "yes" ; then
5266dace20dcSPeter Maydell  echo "CONFIG_FIEMAP=y" >> $config_host_mak
5267dace20dcSPeter Maydellfi
5268d0927938SUlrich Hechtif test "$dup3" = "yes" ; then
5269d0927938SUlrich Hecht  echo "CONFIG_DUP3=y" >> $config_host_mak
5270d0927938SUlrich Hechtfi
52714e0c6529SAlex Blighif test "$ppoll" = "yes" ; then
52724e0c6529SAlex Bligh  echo "CONFIG_PPOLL=y" >> $config_host_mak
52734e0c6529SAlex Blighfi
5274cd758dd0SAlex Blighif test "$prctl_pr_set_timerslack" = "yes" ; then
5275cd758dd0SAlex Bligh  echo "CONFIG_PRCTL_PR_SET_TIMERSLACK=y" >> $config_host_mak
5276cd758dd0SAlex Blighfi
52773b6edd16SPeter Maydellif test "$epoll" = "yes" ; then
52783b6edd16SPeter Maydell  echo "CONFIG_EPOLL=y" >> $config_host_mak
52793b6edd16SPeter Maydellfi
52803b6edd16SPeter Maydellif test "$epoll_create1" = "yes" ; then
52813b6edd16SPeter Maydell  echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak
52823b6edd16SPeter Maydellfi
5283a8fd1abaSPeter Maydellif test "$sendfile" = "yes" ; then
5284a8fd1abaSPeter Maydell  echo "CONFIG_SENDFILE=y" >> $config_host_mak
5285a8fd1abaSPeter Maydellfi
528651834341SRiku Voipioif test "$timerfd" = "yes" ; then
528751834341SRiku Voipio  echo "CONFIG_TIMERFD=y" >> $config_host_mak
528851834341SRiku Voipiofi
52899af5c906SRiku Voipioif test "$setns" = "yes" ; then
52909af5c906SRiku Voipio  echo "CONFIG_SETNS=y" >> $config_host_mak
52919af5c906SRiku Voipiofi
529238860a03SAleksandar Markovicif test "$clock_adjtime" = "yes" ; then
529338860a03SAleksandar Markovic  echo "CONFIG_CLOCK_ADJTIME=y" >> $config_host_mak
529438860a03SAleksandar Markovicfi
52955a03cd00SAleksandar Markovicif test "$syncfs" = "yes" ; then
52965a03cd00SAleksandar Markovic  echo "CONFIG_SYNCFS=y" >> $config_host_mak
52975a03cd00SAleksandar Markovicfi
52983b3f24adSaurel32if test "$inotify" = "yes" ; then
52992358a494SJuan Quintela  echo "CONFIG_INOTIFY=y" >> $config_host_mak
53003b3f24adSaurel32fi
5301c05c7a73SRiku Voipioif test "$inotify1" = "yes" ; then
5302c05c7a73SRiku Voipio  echo "CONFIG_INOTIFY1=y" >> $config_host_mak
5303c05c7a73SRiku Voipiofi
53046ae9a1f4SJuan Quintelaif test "$byteswap_h" = "yes" ; then
53056ae9a1f4SJuan Quintela  echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
53066ae9a1f4SJuan Quintelafi
53076ae9a1f4SJuan Quintelaif test "$bswap_h" = "yes" ; then
53086ae9a1f4SJuan Quintela  echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
53096ae9a1f4SJuan Quintelafi
5310769ce76dSAlexander Grafif test "$curl" = "yes" ; then
5311d3399d7cSFam Zheng  echo "CONFIG_CURL=m" >> $config_host_mak
5312b1d5a277SJuan Quintela  echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
53136ebc91e5SFam Zheng  echo "CURL_LIBS=$curl_libs" >> $config_host_mak
5314769ce76dSAlexander Graffi
53152e4d9fb1Saurel32if test "$brlapi" = "yes" ; then
531698ec69acSJuan Quintela  echo "CONFIG_BRLAPI=y" >> $config_host_mak
53172e4d9fb1Saurel32fi
5318fb599c9aSbalrogif test "$bluez" = "yes" ; then
531998ec69acSJuan Quintela  echo "CONFIG_BLUEZ=y" >> $config_host_mak
5320ef7635ecSJuan Quintela  echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
5321fb599c9aSbalrogfi
5322d46f7c9eSDr. David Alan Gilbertif test "$glib_subprocess" = "yes" ; then
53239d41401bSMichael S. Tsirkin  echo "CONFIG_HAS_GLIB_SUBPROCESS_TESTS=y" >> $config_host_mak
53249d41401bSMichael S. Tsirkinfi
5325a4ccabcfSAnthony Liguoriif test "$gtk" = "yes" ; then
5326a4ccabcfSAnthony Liguori  echo "CONFIG_GTK=y" >> $config_host_mak
5327a3f4d63dSCole Robinson  echo "CONFIG_GTKABI=$gtkabi" >> $config_host_mak
5328a4ccabcfSAnthony Liguori  echo "GTK_CFLAGS=$gtk_cflags" >> $config_host_mak
5329014cb152SGerd Hoffmann  echo "GTK_LIBS=$gtk_libs" >> $config_host_mak
5330925a0400SGerd Hoffmann  if test "$gtk_gl" = "yes" ; then
5331925a0400SGerd Hoffmann    echo "CONFIG_GTK_GL=y" >> $config_host_mak
5332925a0400SGerd Hoffmann  fi
5333bbbf9bfbSStefan Weilfi
5334a1c5e949SDaniel P. Berrangeecho "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak
5335ddbb0d09SDaniel P. Berrangeif test "$gnutls" = "yes" ; then
5336ddbb0d09SDaniel P. Berrange  echo "CONFIG_GNUTLS=y" >> $config_host_mak
5337ddbb0d09SDaniel P. Berrangefi
5338b917da4cSDaniel P. Berrangeif test "$gnutls_rnd" = "yes" ; then
5339b917da4cSDaniel P. Berrange  echo "CONFIG_GNUTLS_RND=y" >> $config_host_mak
5340b917da4cSDaniel P. Berrangefi
534191bfcdb0SDaniel P. Berrangeif test "$gcrypt" = "yes" ; then
534291bfcdb0SDaniel P. Berrange  echo "CONFIG_GCRYPT=y" >> $config_host_mak
534337788f25SDaniel P. Berrange  if test "$gcrypt_kdf" = "yes" ; then
534437788f25SDaniel P. Berrange    echo "CONFIG_GCRYPT_KDF=y" >> $config_host_mak
534537788f25SDaniel P. Berrange  fi
534662893b67SDaniel P. Berrangefi
534791bfcdb0SDaniel P. Berrangeif test "$nettle" = "yes" ; then
534891bfcdb0SDaniel P. Berrange  echo "CONFIG_NETTLE=y" >> $config_host_mak
5349becaeb72SRadim Krčmář  echo "CONFIG_NETTLE_VERSION_MAJOR=${nettle_version%%.*}" >> $config_host_mak
5350fff2f982SDaniel P. Berrange  if test "$nettle_kdf" = "yes" ; then
5351fff2f982SDaniel P. Berrange    echo "CONFIG_NETTLE_KDF=y" >> $config_host_mak
5352fff2f982SDaniel P. Berrange  fi
5353ed754746SDaniel P. Berrangefi
53549a2fd434SDaniel P. Berrangeif test "$tasn1" = "yes" ; then
53559a2fd434SDaniel P. Berrange  echo "CONFIG_TASN1=y" >> $config_host_mak
53569a2fd434SDaniel P. Berrangefi
5357559607eaSDaniel P. Berrangeif test "$have_ifaddrs_h" = "yes" ; then
5358559607eaSDaniel P. Berrange    echo "HAVE_IFADDRS_H=y" >> $config_host_mak
5359559607eaSDaniel P. Berrangefi
53606b39b063SEric Blakeif test "$have_broken_size_max" = "yes" ; then
53616b39b063SEric Blake    echo "HAVE_BROKEN_SIZE_MAX=y" >> $config_host_mak
53626b39b063SEric Blakefi
5363277abf15SJan Vesely
5364277abf15SJan Vesely# Work around a system header bug with some kernel/XFS header
5365277abf15SJan Vesely# versions where they both try to define 'struct fsxattr':
5366277abf15SJan Vesely# xfs headers will not try to redefine structs from linux headers
5367277abf15SJan Vesely# if this macro is set.
5368277abf15SJan Veselyif test "$have_fsxattr" = "yes" ; then
5369277abf15SJan Vesely    echo "HAVE_FSXATTR=y" >> $config_host_mak
5370277abf15SJan Veselyfi
5371bbbf9bfbSStefan Weilif test "$vte" = "yes" ; then
5372bbbf9bfbSStefan Weil  echo "CONFIG_VTE=y" >> $config_host_mak
5373a4ccabcfSAnthony Liguori  echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak
5374a4ccabcfSAnthony Liguorifi
53759d9e1521SGerd Hoffmannif test "$virglrenderer" = "yes" ; then
53769d9e1521SGerd Hoffmann  echo "CONFIG_VIRGL=y" >> $config_host_mak
53779d9e1521SGerd Hoffmann  echo "VIRGL_CFLAGS=$virgl_cflags" >> $config_host_mak
53789d9e1521SGerd Hoffmann  echo "VIRGL_LIBS=$virgl_libs" >> $config_host_mak
53799d9e1521SGerd Hoffmannfi
5380e37630caSaliguoriif test "$xen" = "yes" ; then
53816dbd588aSJan Kiszka  echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak
5382d5b93ddfSAnthony PERARD  echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
538364a7ad6fSIan Campbell  if test "$xen_pv_domain_build" = "yes" ; then
538464a7ad6fSIan Campbell    echo "CONFIG_XEN_PV_DOMAIN_BUILD=y" >> $config_host_mak
538564a7ad6fSIan Campbell  fi
5386e37630caSaliguorifi
53875c6c3a6cSChristoph Hellwigif test "$linux_aio" = "yes" ; then
53885c6c3a6cSChristoph Hellwig  echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
53895c6c3a6cSChristoph Hellwigfi
5390758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" = "yes" ; then
5391758e8e38SVenkateswararao Jujjuri (JV)  echo "CONFIG_ATTR=y" >> $config_host_mak
5392758e8e38SVenkateswararao Jujjuri (JV)fi
53934f26f2b6SAvi Kivityif test "$libattr" = "yes" ; then
53944f26f2b6SAvi Kivity  echo "CONFIG_LIBATTR=y" >> $config_host_mak
53954f26f2b6SAvi Kivityfi
5396983eef5aSMeador Ingeif test "$virtfs" = "yes" ; then
5397758e8e38SVenkateswararao Jujjuri (JV)  echo "CONFIG_VIRTFS=y" >> $config_host_mak
5398758e8e38SVenkateswararao Jujjuri (JV)fi
53995e9be92dSNicholas Bellingerif test "$vhost_scsi" = "yes" ; then
54005e9be92dSNicholas Bellinger  echo "CONFIG_VHOST_SCSI=y" >> $config_host_mak
54015e9be92dSNicholas Bellingerfi
540203ce5744SNikolay Nikolaevif test "$vhost_net" = "yes" ; then
540303ce5744SNikolay Nikolaev  echo "CONFIG_VHOST_NET_USED=y" >> $config_host_mak
540403ce5744SNikolay Nikolaevfi
5405fc0b9b0eSStefan Hajnocziif test "$vhost_vsock" = "yes" ; then
5406fc0b9b0eSStefan Hajnoczi  echo "CONFIG_VHOST_VSOCK=y" >> $config_host_mak
5407fc0b9b0eSStefan Hajnoczifi
540877755340Sthsif test "$blobs" = "yes" ; then
540998ec69acSJuan Quintela  echo "INSTALL_BLOBS=yes" >> $config_host_mak
541077755340Sthsfi
5411bf9298b9Saliguoriif test "$iovec" = "yes" ; then
54122358a494SJuan Quintela  echo "CONFIG_IOVEC=y" >> $config_host_mak
5413bf9298b9Saliguorifi
5414ceb42de8Saliguoriif test "$preadv" = "yes" ; then
54152358a494SJuan Quintela  echo "CONFIG_PREADV=y" >> $config_host_mak
5416ceb42de8Saliguorifi
5417f652e6afSaurel32if test "$fdt" = "yes" ; then
54183f0855b1SJuan Quintela  echo "CONFIG_FDT=y" >> $config_host_mak
5419f652e6afSaurel32fi
5420dcc38d1cSMarcelo Tosattiif test "$signalfd" = "yes" ; then
5421dcc38d1cSMarcelo Tosatti  echo "CONFIG_SIGNALFD=y" >> $config_host_mak
5422dcc38d1cSMarcelo Tosattifi
54239195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then
54249195b2c2SStefan Weil  echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak
54259195b2c2SStefan Weilfi
54265f6b9e8fSBlue Swirlif test "$fdatasync" = "yes" ; then
54275f6b9e8fSBlue Swirl  echo "CONFIG_FDATASYNC=y" >> $config_host_mak
54285f6b9e8fSBlue Swirlfi
5429e78815a5SAndreas Färberif test "$madvise" = "yes" ; then
5430e78815a5SAndreas Färber  echo "CONFIG_MADVISE=y" >> $config_host_mak
5431e78815a5SAndreas Färberfi
5432e78815a5SAndreas Färberif test "$posix_madvise" = "yes" ; then
5433e78815a5SAndreas Färber  echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
5434e78815a5SAndreas Färberfi
543597a847bcSbellard
5436cd4ec0b4SGerd Hoffmannif test "$spice" = "yes" ; then
5437cd4ec0b4SGerd Hoffmann  echo "CONFIG_SPICE=y" >> $config_host_mak
5438cd4ec0b4SGerd Hoffmannfi
5439cd4ec0b4SGerd Hoffmann
54407b02f544SMarc-André Lureauif test "$smartcard" = "yes" ; then
54417b02f544SMarc-André Lureau  echo "CONFIG_SMARTCARD=y" >> $config_host_mak
5442111a38b0SRobert Relyeafi
5443111a38b0SRobert Relyea
54442b2325ffSGerd Hoffmannif test "$libusb" = "yes" ; then
54452b2325ffSGerd Hoffmann  echo "CONFIG_USB_LIBUSB=y" >> $config_host_mak
54462b2325ffSGerd Hoffmannfi
54472b2325ffSGerd Hoffmann
544869354a83SHans de Goedeif test "$usb_redir" = "yes" ; then
544969354a83SHans de Goede  echo "CONFIG_USB_REDIR=y" >> $config_host_mak
545069354a83SHans de Goedefi
545169354a83SHans de Goede
5452da076ffeSGerd Hoffmannif test "$opengl" = "yes" ; then
5453da076ffeSGerd Hoffmann  echo "CONFIG_OPENGL=y" >> $config_host_mak
5454f676c67eSJeremy White  echo "OPENGL_CFLAGS=$opengl_cflags" >> $config_host_mak
5455da076ffeSGerd Hoffmann  echo "OPENGL_LIBS=$opengl_libs" >> $config_host_mak
5456014cb152SGerd Hoffmann  if test "$opengl_dmabuf" = "yes" ; then
5457014cb152SGerd Hoffmann    echo "CONFIG_OPENGL_DMABUF=y" >> $config_host_mak
5458014cb152SGerd Hoffmann  fi
545920ff075bSMichael Wallefi
546020ff075bSMichael Walle
546199f2dbd3SLiang Liif test "$avx2_opt" = "yes" ; then
546299f2dbd3SLiang Li  echo "CONFIG_AVX2_OPT=y" >> $config_host_mak
546399f2dbd3SLiang Lifi
546499f2dbd3SLiang Li
5465607dacd0Sqiaonuohanif test "$lzo" = "yes" ; then
5466607dacd0Sqiaonuohan  echo "CONFIG_LZO=y" >> $config_host_mak
5467607dacd0Sqiaonuohanfi
5468607dacd0Sqiaonuohan
5469607dacd0Sqiaonuohanif test "$snappy" = "yes" ; then
5470607dacd0Sqiaonuohan  echo "CONFIG_SNAPPY=y" >> $config_host_mak
5471607dacd0Sqiaonuohanfi
5472607dacd0Sqiaonuohan
54736b383c08SPeter Wuif test "$bzip2" = "yes" ; then
54746b383c08SPeter Wu  echo "CONFIG_BZIP2=y" >> $config_host_mak
54756b383c08SPeter Wu  echo "BZIP2_LIBS=-lbz2" >> $config_host_mak
54766b383c08SPeter Wufi
54776b383c08SPeter Wu
5478c589b249SRonnie Sahlbergif test "$libiscsi" = "yes" ; then
5479d3399d7cSFam Zheng  echo "CONFIG_LIBISCSI=m" >> $config_host_mak
54806ebc91e5SFam Zheng  echo "LIBISCSI_CFLAGS=$libiscsi_cflags" >> $config_host_mak
54816ebc91e5SFam Zheng  echo "LIBISCSI_LIBS=$libiscsi_libs" >> $config_host_mak
5482c589b249SRonnie Sahlbergfi
5483c589b249SRonnie Sahlberg
54846542aa9cSPeter Lievenif test "$libnfs" = "yes" ; then
54854be4879fSColin Lord  echo "CONFIG_LIBNFS=m" >> $config_host_mak
54864be4879fSColin Lord  echo "LIBNFS_LIBS=$libnfs_libs" >> $config_host_mak
54876542aa9cSPeter Lievenfi
54886542aa9cSPeter Lieven
5489f794573eSEduardo Otuboif test "$seccomp" = "yes"; then
5490f794573eSEduardo Otubo  echo "CONFIG_SECCOMP=y" >> $config_host_mak
5491f794573eSEduardo Otubofi
5492f794573eSEduardo Otubo
549383fb7adfSbellard# XXX: suppress that
54947d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
54952358a494SJuan Quintela  echo "CONFIG_BSD=y" >> $config_host_mak
54967d3505c5Sbellardfi
54977d3505c5Sbellard
54984d9310f4SDaniel P. Berrangeif test "$localtime_r" = "yes" ; then
54994d9310f4SDaniel P. Berrange  echo "CONFIG_LOCALTIME_R=y" >> $config_host_mak
55004d9310f4SDaniel P. Berrangefi
55013556c233SPaolo Bonziniif test "$qom_cast_debug" = "yes" ; then
55023556c233SPaolo Bonzini  echo "CONFIG_QOM_CAST_DEBUG=y" >> $config_host_mak
55033556c233SPaolo Bonzinifi
5504f27aaf4bSChristian Brunnerif test "$rbd" = "yes" ; then
5505d3399d7cSFam Zheng  echo "CONFIG_RBD=m" >> $config_host_mak
55066ebc91e5SFam Zheng  echo "RBD_CFLAGS=$rbd_cflags" >> $config_host_mak
55076ebc91e5SFam Zheng  echo "RBD_LIBS=$rbd_libs" >> $config_host_mak
5508f27aaf4bSChristian Brunnerfi
550920ff6c80SAnthony Liguori
55107c2acc70SPeter Maydellecho "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak
551170c60c08SStefan Hajnocziif test "$coroutine_pool" = "yes" ; then
551270c60c08SStefan Hajnoczi  echo "CONFIG_COROUTINE_POOL=1" >> $config_host_mak
551370c60c08SStefan Hajnoczielse
551470c60c08SStefan Hajnoczi  echo "CONFIG_COROUTINE_POOL=0" >> $config_host_mak
551570c60c08SStefan Hajnoczifi
5516d0e2fce5SAneesh Kumar K.V
55177d992e4dSPeter Lievenif test "$debug_stack_usage" = "yes" ; then
55187d992e4dSPeter Lieven  echo "CONFIG_DEBUG_STACK_USAGE=y" >> $config_host_mak
55197d992e4dSPeter Lievenfi
55207d992e4dSPeter Lieven
5521d2042378SAneesh Kumar K.Vif test "$open_by_handle_at" = "yes" ; then
5522d2042378SAneesh Kumar K.V  echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak
5523d2042378SAneesh Kumar K.Vfi
5524d2042378SAneesh Kumar K.V
5525e06a765eSHarsh Prateek Boraif test "$linux_magic_h" = "yes" ; then
5526e06a765eSHarsh Prateek Bora  echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak
5527e06a765eSHarsh Prateek Borafi
5528e06a765eSHarsh Prateek Bora
5529cc6e3ca9SGerd Hoffmannif test "$pragma_diagnostic_available" = "yes" ; then
5530cc6e3ca9SGerd Hoffmann  echo "CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE=y" >> $config_host_mak
553106d71fa1SPeter Maydellfi
553206d71fa1SPeter Maydell
55333f4349dcSKevin Wolfif test "$valgrind_h" = "yes" ; then
55343f4349dcSKevin Wolf  echo "CONFIG_VALGRIND_H=y" >> $config_host_mak
55353f4349dcSKevin Wolffi
55363f4349dcSKevin Wolf
55378ab1bf12SLuiz Capitulinoif test "$has_environ" = "yes" ; then
55388ab1bf12SLuiz Capitulino  echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak
55398ab1bf12SLuiz Capitulinofi
55408ab1bf12SLuiz Capitulino
554176a347e1SRichard Hendersonif test "$cpuid_h" = "yes" ; then
554276a347e1SRichard Henderson  echo "CONFIG_CPUID_H=y" >> $config_host_mak
554376a347e1SRichard Hendersonfi
554476a347e1SRichard Henderson
5545f540166bSRichard Hendersonif test "$int128" = "yes" ; then
5546f540166bSRichard Henderson  echo "CONFIG_INT128=y" >> $config_host_mak
5547f540166bSRichard Hendersonfi
5548f540166bSRichard Henderson
55497ebee43eSRichard Hendersonif test "$atomic128" = "yes" ; then
55507ebee43eSRichard Henderson  echo "CONFIG_ATOMIC128=y" >> $config_host_mak
55517ebee43eSRichard Hendersonfi
55527ebee43eSRichard Henderson
5553df79b996SRichard Hendersonif test "$atomic64" = "yes" ; then
5554df79b996SRichard Henderson  echo "CONFIG_ATOMIC64=y" >> $config_host_mak
5555df79b996SRichard Hendersonfi
5556df79b996SRichard Henderson
55571e6e9acaSRichard Hendersonif test "$getauxval" = "yes" ; then
55581e6e9acaSRichard Henderson  echo "CONFIG_GETAUXVAL=y" >> $config_host_mak
55591e6e9acaSRichard Hendersonfi
55601e6e9acaSRichard Henderson
5561eb100396SBharata B Raoif test "$glusterfs" = "yes" ; then
5562d3399d7cSFam Zheng  echo "CONFIG_GLUSTERFS=m" >> $config_host_mak
55636ebc91e5SFam Zheng  echo "GLUSTERFS_CFLAGS=$glusterfs_cflags" >> $config_host_mak
55646ebc91e5SFam Zheng  echo "GLUSTERFS_LIBS=$glusterfs_libs" >> $config_host_mak
5565eb100396SBharata B Raofi
5566eb100396SBharata B Rao
5567d85fa9ebSJeff Codyif test "$glusterfs_xlator_opt" = "yes" ; then
5568d85fa9ebSJeff Cody  echo "CONFIG_GLUSTERFS_XLATOR_OPT=y" >> $config_host_mak
5569d85fa9ebSJeff Codyfi
5570d85fa9ebSJeff Cody
55710c14fb47SBharata B Raoif test "$glusterfs_discard" = "yes" ; then
55720c14fb47SBharata B Rao  echo "CONFIG_GLUSTERFS_DISCARD=y" >> $config_host_mak
55730c14fb47SBharata B Raofi
55740c14fb47SBharata B Rao
55757c815372SBharata B Raoif test "$glusterfs_zerofill" = "yes" ; then
55767c815372SBharata B Rao  echo "CONFIG_GLUSTERFS_ZEROFILL=y" >> $config_host_mak
55777c815372SBharata B Raofi
55787c815372SBharata B Rao
5579c9a12e75SChrysostomos Nanakosif test "$archipelago" = "yes" ; then
5580c9a12e75SChrysostomos Nanakos  echo "CONFIG_ARCHIPELAGO=m" >> $config_host_mak
5581c9a12e75SChrysostomos Nanakos  echo "ARCHIPELAGO_LIBS=$archipelago_libs" >> $config_host_mak
5582c9a12e75SChrysostomos Nanakosfi
5583c9a12e75SChrysostomos Nanakos
55840a12ec87SRichard W.M. Jonesif test "$libssh2" = "yes" ; then
5585d3399d7cSFam Zheng  echo "CONFIG_LIBSSH2=m" >> $config_host_mak
55866ebc91e5SFam Zheng  echo "LIBSSH2_CFLAGS=$libssh2_cflags" >> $config_host_mak
55876ebc91e5SFam Zheng  echo "LIBSSH2_LIBS=$libssh2_libs" >> $config_host_mak
55880a12ec87SRichard W.M. Jonesfi
55890a12ec87SRichard W.M. Jones
559068063649Sblueswir1# USB host support
5591b5613fdcSGerd Hoffmannif test "$libusb" = "yes"; then
55922b2325ffSGerd Hoffmann  echo "HOST_USB=libusb legacy" >> $config_host_mak
5593b5613fdcSGerd Hoffmannelse
559498ec69acSJuan Quintela  echo "HOST_USB=stub" >> $config_host_mak
5595b5613fdcSGerd Hoffmannfi
559668063649Sblueswir1
55973b8acc11SPaolo Bonzini# TPM passthrough support?
55983b8acc11SPaolo Bonziniif test "$tpm" = "yes"; then
55993b8acc11SPaolo Bonzini  echo 'CONFIG_TPM=$(CONFIG_SOFTMMU)' >> $config_host_mak
56003b8acc11SPaolo Bonzini  if test "$tpm_passthrough" = "yes"; then
56013b8acc11SPaolo Bonzini    echo "CONFIG_TPM_PASSTHROUGH=y" >> $config_host_mak
56023b8acc11SPaolo Bonzini  fi
56033b8acc11SPaolo Bonzinifi
56043b8acc11SPaolo Bonzini
56055b808275SLluís Vilanovaecho "TRACE_BACKENDS=$trace_backends" >> $config_host_mak
56065b808275SLluís Vilanovaif have_backend "nop"; then
56076d8a764eSLluís  echo "CONFIG_TRACE_NOP=y" >> $config_host_mak
560822890ab5SPrerna Saxenafi
56095b808275SLluís Vilanovaif have_backend "simple"; then
56106d8a764eSLluís  echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak
56116d8a764eSLluís  # Set the appropriate trace file.
5612953ffe0fSAndreas Färber  trace_file="\"$trace_file-\" FMT_pid"
56139410b56cSPrerna Saxenafi
5614ed7f5f1dSPaolo Bonziniif have_backend "log"; then
5615ed7f5f1dSPaolo Bonzini  echo "CONFIG_TRACE_LOG=y" >> $config_host_mak
56166d8a764eSLluísfi
56175b808275SLluís Vilanovaif have_backend "ust"; then
56186d8a764eSLluís  echo "CONFIG_TRACE_UST=y" >> $config_host_mak
56196d8a764eSLluísfi
56205b808275SLluís Vilanovaif have_backend "dtrace"; then
56216d8a764eSLluís  echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak
56226d8a764eSLluís  if test "$trace_backend_stap" = "yes" ; then
56236d8a764eSLluís    echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak
56246d8a764eSLluís  fi
5625c276b17dSDaniel P. Berrangefi
56265b808275SLluís Vilanovaif have_backend "ftrace"; then
5627781e9545SEiichi Tsukata  if test "$linux" = "yes" ; then
5628781e9545SEiichi Tsukata    echo "CONFIG_TRACE_FTRACE=y" >> $config_host_mak
5629781e9545SEiichi Tsukata  else
563021684af0SStewart Smith    feature_not_found "ftrace(trace backend)" "ftrace requires Linux"
5631781e9545SEiichi Tsukata  fi
5632781e9545SEiichi Tsukatafi
56330a852417SPaul Durrantif have_backend "syslog"; then
56340a852417SPaul Durrant  if test "$posix_syslog" = "yes" ; then
56350a852417SPaul Durrant    echo "CONFIG_TRACE_SYSLOG=y" >> $config_host_mak
56360a852417SPaul Durrant  else
56370a852417SPaul Durrant    feature_not_found "syslog(trace backend)" "syslog not available"
56380a852417SPaul Durrant  fi
56390a852417SPaul Durrantfi
56409410b56cSPrerna Saxenaecho "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
56419410b56cSPrerna Saxena
56422da776dbSMichael R. Hinesif test "$rdma" = "yes" ; then
56432da776dbSMichael R. Hines  echo "CONFIG_RDMA=y" >> $config_host_mak
56442da776dbSMichael R. Hinesfi
56452da776dbSMichael R. Hines
5646575b22b1SLaurent Vivierif test "$have_rtnetlink" = "yes" ; then
5647575b22b1SLaurent Vivier  echo "CONFIG_RTNETLINK=y" >> $config_host_mak
5648575b22b1SLaurent Vivierfi
5649575b22b1SLaurent Vivier
5650a6b1d4c0SChanglong Xieif test "$replication" = "yes" ; then
5651a6b1d4c0SChanglong Xie  echo "CONFIG_REPLICATION=y" >> $config_host_mak
5652a6b1d4c0SChanglong Xiefi
5653a6b1d4c0SChanglong Xie
56545c312079SDr. David Alan Gilbert# Hold two types of flag:
56555c312079SDr. David Alan Gilbert#   CONFIG_THREAD_SETNAME_BYTHREAD  - we've got a way of setting the name on
56565c312079SDr. David Alan Gilbert#                                     a thread we have a handle to
56575c312079SDr. David Alan Gilbert#   CONFIG_PTHREAD_SETNAME_NP       - A way of doing it on a particular
56585c312079SDr. David Alan Gilbert#                                     platform
56595c312079SDr. David Alan Gilbertif test "$pthread_setname_np" = "yes" ; then
56605c312079SDr. David Alan Gilbert  echo "CONFIG_THREAD_SETNAME_BYTHREAD=y" >> $config_host_mak
56615c312079SDr. David Alan Gilbert  echo "CONFIG_PTHREAD_SETNAME_NP=y" >> $config_host_mak
56625c312079SDr. David Alan Gilbertfi
56635c312079SDr. David Alan Gilbert
56645b5e3037SPaolo Bonziniif test "$tcg_interpreter" = "yes"; then
56655b5e3037SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/tci $QEMU_INCLUDES"
56665b5e3037SPaolo Bonzinielif test "$ARCH" = "sparc64" ; then
56675b5e3037SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/sparc $QEMU_INCLUDES"
56685b5e3037SPaolo Bonzinielif test "$ARCH" = "s390x" ; then
56695b5e3037SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/s390 $QEMU_INCLUDES"
5670c72b26ecSRichard Hendersonelif test "$ARCH" = "x86_64" -o "$ARCH" = "x32" ; then
56715b5e3037SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/i386 $QEMU_INCLUDES"
567240d964b5SRichard Hendersonelif test "$ARCH" = "ppc64" ; then
567340d964b5SRichard Henderson  QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/ppc $QEMU_INCLUDES"
56745b5e3037SPaolo Bonzinielse
56755b5e3037SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/\$(ARCH) $QEMU_INCLUDES"
56765b5e3037SPaolo Bonzinifi
56775b5e3037SPaolo BonziniQEMU_INCLUDES="-I\$(SRC_PATH)/tcg $QEMU_INCLUDES"
56785b5e3037SPaolo Bonzini
567998ec69acSJuan Quintelaecho "TOOLS=$tools" >> $config_host_mak
568098ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak
5681804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak
5682804edf29SJuan Quintelaecho "INSTALL=$install" >> $config_host_mak
56831901cb14SBradecho "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak
56841901cb14SBradecho "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak
56851901cb14SBradecho "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak
568621655882SPaolo Bonziniecho "INSTALL_LIB=$install -c -m 0644" >> $config_host_mak
5687c886edfbSBlue Swirlecho "PYTHON=$python" >> $config_host_mak
5688804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak
5689a31a8642SMichael S. Tsirkinif $iasl -h > /dev/null 2>&1; then
5690a31a8642SMichael S. Tsirkin  echo "IASL=$iasl" >> $config_host_mak
5691a31a8642SMichael S. Tsirkinfi
56922b2e59e6SPaolo Bonziniecho "CC_I386=$cc_i386" >> $config_host_mak
5693804edf29SJuan Quintelaecho "HOST_CC=$host_cc" >> $config_host_mak
569483f73fceSTomoki Sekiyamaecho "CXX=$cxx" >> $config_host_mak
56953c4a4d0dSPeter Maydellecho "OBJCC=$objcc" >> $config_host_mak
5696804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak
569745d285abSPeter Maydellecho "ARFLAGS=$ARFLAGS" >> $config_host_mak
5698cdbd727cSRichard Hendersonecho "AS=$as" >> $config_host_mak
56995f6f0e27SRichard Hendersonecho "CCAS=$ccas" >> $config_host_mak
57003dd46c78SBlue Swirlecho "CPP=$cpp" >> $config_host_mak
5701804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak
5702804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak
57034852ee95SStefan Weilecho "NM=$nm" >> $config_host_mak
57049fe6de94SBlue Swirlecho "WINDRES=$windres" >> $config_host_mak
5705e2a2ed06SJuan Quintelaecho "CFLAGS=$CFLAGS" >> $config_host_mak
570646eef33bSBradecho "CFLAGS_NOPIE=$CFLAGS_NOPIE" >> $config_host_mak
5707a558ee17SJuan Quintelaecho "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
5708f9728943SPaolo Bonziniecho "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak
5709e39f0062SPaolo Bonziniif test "$sparse" = "yes" ; then
5710e39f0062SPaolo Bonzini  echo "CC           := REAL_CC=\"\$(CC)\" cgcc"       >> $config_host_mak
571180fd48dfSChristian Borntraeger  echo "CPP          := REAL_CC=\"\$(CPP)\" cgcc"      >> $config_host_mak
57122944d742SGerd Hoffmann  echo "CXX          := REAL_CC=\"\$(CXX)\" cgcc"      >> $config_host_mak
5713e39f0062SPaolo Bonzini  echo "HOST_CC      := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_host_mak
5714e39f0062SPaolo Bonzini  echo "QEMU_CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
5715e39f0062SPaolo Bonzinifi
571642da6041SGerd Hoffmannif test "$cross_prefix" != ""; then
571742da6041SGerd Hoffmann  echo "AUTOCONF_HOST := --host=${cross_prefix%-}"     >> $config_host_mak
571842da6041SGerd Hoffmannelse
571942da6041SGerd Hoffmann  echo "AUTOCONF_HOST := "                             >> $config_host_mak
572042da6041SGerd Hoffmannfi
5721e2a2ed06SJuan Quintelaecho "LDFLAGS=$LDFLAGS" >> $config_host_mak
572246eef33bSBradecho "LDFLAGS_NOPIE=$LDFLAGS_NOPIE" >> $config_host_mak
57236969ec6cSJames Clarkeecho "LD_REL_FLAGS=$LD_REL_FLAGS" >> $config_host_mak
5724e57218b6SPeter Maydellecho "LD_I386_EMULATION=$ld_i386_emulation" >> $config_host_mak
572573da375eSJuan Quintelaecho "LIBS+=$LIBS" >> $config_host_mak
57263e2e0e6bSJuan Quintelaecho "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
5727409437e1SDaniel P. Berrangeecho "PTHREAD_LIB=$PTHREAD_LIB" >> $config_host_mak
5728804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak
572917969268SFam Zhengecho "DSOSUF=$DSOSUF" >> $config_host_mak
573017969268SFam Zhengecho "LDFLAGS_SHARED=$LDFLAGS_SHARED" >> $config_host_mak
5731957f1f99SMichael Rothecho "LIBS_QGA+=$libs_qga" >> $config_host_mak
573290246037SDaniel P. Berrangeecho "TASN1_LIBS=$tasn1_libs" >> $config_host_mak
573390246037SDaniel P. Berrangeecho "TASN1_CFLAGS=$tasn1_cflags" >> $config_host_mak
573494dd53c5SGerd Hoffmannecho "POD2MAN=$POD2MAN" >> $config_host_mak
5735cbdd1999SPaolo Bonziniecho "TRANSLATE_OPT_CFLAGS=$TRANSLATE_OPT_CFLAGS" >> $config_host_mak
57361d728c39SBlue Swirlif test "$gcov" = "yes" ; then
57371d728c39SBlue Swirl  echo "CONFIG_GCOV=y" >> $config_host_mak
57381d728c39SBlue Swirl  echo "GCOV=$gcov_tool" >> $config_host_mak
57391d728c39SBlue Swirlfi
5740804edf29SJuan Quintela
57416efd7517SPeter Maydell# use included Linux headers
57426efd7517SPeter Maydellif test "$linux" = "yes" ; then
5743a307beb6SAndreas Färber  mkdir -p linux-headers
57446efd7517SPeter Maydell  case "$cpu" in
5745c72b26ecSRichard Henderson  i386|x86_64|x32)
574608312a63SPeter Maydell    linux_arch=x86
57476efd7517SPeter Maydell    ;;
57486efd7517SPeter Maydell  ppcemb|ppc|ppc64)
574908312a63SPeter Maydell    linux_arch=powerpc
57506efd7517SPeter Maydell    ;;
57516efd7517SPeter Maydell  s390x)
575208312a63SPeter Maydell    linux_arch=s390
575308312a63SPeter Maydell    ;;
57541f080313SClaudio Fontana  aarch64)
57551f080313SClaudio Fontana    linux_arch=arm64
57561f080313SClaudio Fontana    ;;
5757222e7d11SSanjay Lal  mips64)
5758222e7d11SSanjay Lal    linux_arch=mips
5759222e7d11SSanjay Lal    ;;
576008312a63SPeter Maydell  *)
576108312a63SPeter Maydell    # For most CPUs the kernel architecture name and QEMU CPU name match.
576208312a63SPeter Maydell    linux_arch="$cpu"
57636efd7517SPeter Maydell    ;;
57646efd7517SPeter Maydell  esac
576508312a63SPeter Maydell    # For non-KVM architectures we will not have asm headers
576608312a63SPeter Maydell    if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then
576708312a63SPeter Maydell      symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm
576808312a63SPeter Maydell    fi
57696efd7517SPeter Maydellfi
57706efd7517SPeter Maydell
577197a847bcSbellardfor target in $target_list; do
577297a847bcSbellardtarget_dir="$target"
577325be210fSJuan Quintelaconfig_target_mak=$target_dir/config-target.mak
577489138857SStefan Weiltarget_name=$(echo $target | cut -d '-' -f 1)
577597a847bcSbellardtarget_bigendian="no"
57761f3d3c8fSJuan Quintela
5777c1799a84SPaolo Bonzinicase "$target_name" in
5778d15a9c23SAnthony Green  armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|moxie|or32|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb)
5779ea2d6a39SJuan Quintela  target_bigendian=yes
5780ea2d6a39SJuan Quintela  ;;
5781ea2d6a39SJuan Quintelaesac
578297a847bcSbellardtarget_softmmu="no"
5783997344f3Sbellardtarget_user_only="no"
5784831b7825Sthstarget_linux_user="no"
578584778508Sblueswir1target_bsd_user="no"
57869e407a85Spbrookcase "$target" in
5787c1799a84SPaolo Bonzini  ${target_name}-softmmu)
57889e407a85Spbrook    target_softmmu="yes"
57899e407a85Spbrook    ;;
5790c1799a84SPaolo Bonzini  ${target_name}-linux-user)
57919c7a4202SBlue Swirl    if test "$linux" != "yes" ; then
579276ad07a4SPeter Maydell      error_exit "Target '$target' is only available on a Linux host"
57939c7a4202SBlue Swirl    fi
57949e407a85Spbrook    target_user_only="yes"
57959e407a85Spbrook    target_linux_user="yes"
57969e407a85Spbrook    ;;
5797c1799a84SPaolo Bonzini  ${target_name}-bsd-user)
57989cf55765SBlue Swirl    if test "$bsd" != "yes" ; then
579976ad07a4SPeter Maydell      error_exit "Target '$target' is only available on a BSD host"
58009c7a4202SBlue Swirl    fi
580184778508Sblueswir1    target_user_only="yes"
580284778508Sblueswir1    target_bsd_user="yes"
580384778508Sblueswir1    ;;
58049e407a85Spbrook  *)
580576ad07a4SPeter Maydell    error_exit "Target '$target' not recognised"
58069e407a85Spbrook    exit 1
58079e407a85Spbrook    ;;
58089e407a85Spbrookesac
5809831b7825Sths
581097a847bcSbellardmkdir -p $target_dir
581125be210fSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_target_mak
581297a847bcSbellard
5813e5fe0c52Spbrookbflt="no"
581489138857SStefan Weilinterp_prefix1=$(echo "$interp_prefix" | sed "s/%M/$target_name/g")
581556aebc89Spbrookgdb_xml_files=""
58167ba1e619Saliguori
5817c1799a84SPaolo BonziniTARGET_ARCH="$target_name"
58186acff7daSJuan QuintelaTARGET_BASE_ARCH=""
5819e6e91b9cSJuan QuintelaTARGET_ABI_DIR=""
5820e73aae67SJuan Quintela
5821c1799a84SPaolo Bonzinicase "$target_name" in
58222408a527Saurel32  i386)
58232408a527Saurel32  ;;
58242408a527Saurel32  x86_64)
58256acff7daSJuan Quintela    TARGET_BASE_ARCH=i386
58262408a527Saurel32  ;;
58272408a527Saurel32  alpha)
58282408a527Saurel32  ;;
58292408a527Saurel32  arm|armeb)
5830b498c8a0SJuan Quintela    TARGET_ARCH=arm
5831e5fe0c52Spbrook    bflt="yes"
583256aebc89Spbrook    gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
58332408a527Saurel32  ;;
58346a49fa95SAlexander Graf  aarch64)
58356a49fa95SAlexander Graf    TARGET_BASE_ARCH=arm
58366a49fa95SAlexander Graf    bflt="yes"
58378f95ce2eSPeter Maydell    gdb_xml_files="aarch64-core.xml aarch64-fpu.xml arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
58386a49fa95SAlexander Graf  ;;
58392408a527Saurel32  cris)
58402408a527Saurel32  ;;
5841613a22c9SMichael Walle  lm32)
5842613a22c9SMichael Walle  ;;
58432408a527Saurel32  m68k)
58440938cda5Saurel32    bflt="yes"
584556aebc89Spbrook    gdb_xml_files="cf-core.xml cf-fp.xml"
58462408a527Saurel32  ;;
5847877fdc12SEdgar E. Iglesias  microblaze|microblazeel)
5848877fdc12SEdgar E. Iglesias    TARGET_ARCH=microblaze
584972b675caSEdgar E. Iglesias    bflt="yes"
585072b675caSEdgar E. Iglesias  ;;
58512408a527Saurel32  mips|mipsel)
5852b498c8a0SJuan Quintela    TARGET_ARCH=mips
585325be210fSJuan Quintela    echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
58542408a527Saurel32  ;;
58552408a527Saurel32  mipsn32|mipsn32el)
5856597e2cecSRichard Henderson    TARGET_ARCH=mips64
58576acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
585825be210fSJuan Quintela    echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
5859597e2cecSRichard Henderson    echo "TARGET_ABI32=y" >> $config_target_mak
58602408a527Saurel32  ;;
58612408a527Saurel32  mips64|mips64el)
5862b498c8a0SJuan Quintela    TARGET_ARCH=mips64
58636acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
586425be210fSJuan Quintela    echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
58652408a527Saurel32  ;;
5866d15a9c23SAnthony Green  moxie)
5867d15a9c23SAnthony Green  ;;
5868e67db06eSJia Liu  or32)
5869e67db06eSJia Liu    TARGET_ARCH=openrisc
5870e67db06eSJia Liu    TARGET_BASE_ARCH=openrisc
5871e67db06eSJia Liu  ;;
58722408a527Saurel32  ppc)
5873c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
58742408a527Saurel32  ;;
58752408a527Saurel32  ppcemb)
58766acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
5877e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
5878c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
58792408a527Saurel32  ;;
58802408a527Saurel32  ppc64)
58816acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
5882e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
58831438eff3SAnton Blanchard    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
58842408a527Saurel32  ;;
58859c35126cSDoug Kwan  ppc64le)
58869c35126cSDoug Kwan    TARGET_ARCH=ppc64
58879c35126cSDoug Kwan    TARGET_BASE_ARCH=ppc
58889c35126cSDoug Kwan    TARGET_ABI_DIR=ppc
58891438eff3SAnton Blanchard    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
58909c35126cSDoug Kwan  ;;
58912408a527Saurel32  ppc64abi32)
5892b498c8a0SJuan Quintela    TARGET_ARCH=ppc64
58936acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
5894e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
589525be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
58961438eff3SAnton Blanchard    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
58972408a527Saurel32  ;;
58982408a527Saurel32  sh4|sh4eb)
5899b498c8a0SJuan Quintela    TARGET_ARCH=sh4
59004dbed897Spbrook    bflt="yes"
59012408a527Saurel32  ;;
59022408a527Saurel32  sparc)
59032408a527Saurel32  ;;
59042408a527Saurel32  sparc64)
59056acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
59062408a527Saurel32  ;;
59072408a527Saurel32  sparc32plus)
5908b498c8a0SJuan Quintela    TARGET_ARCH=sparc64
59096acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
5910e6e91b9cSJuan Quintela    TARGET_ABI_DIR=sparc
591125be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
59122408a527Saurel32  ;;
591324e804ecSAlexander Graf  s390x)
59148a641ff6SDavid Hildenbrand    gdb_xml_files="s390x-core64.xml s390-acr.xml s390-fpr.xml s390-vx.xml s390-cr.xml s390-virt.xml"
591524e804ecSAlexander Graf  ;;
5916444e06b1SChen Gang  tilegx)
5917444e06b1SChen Gang  ;;
59185ecaa4edSPeter Crosthwaite  tricore)
59195ecaa4edSPeter Crosthwaite  ;;
5920d2fbca94SGuan Xuetao  unicore32)
5921d2fbca94SGuan Xuetao  ;;
5922cfa550c6SMax Filippov  xtensa|xtensaeb)
5923cfa550c6SMax Filippov    TARGET_ARCH=xtensa
5924cfa550c6SMax Filippov  ;;
59252408a527Saurel32  *)
592676ad07a4SPeter Maydell    error_exit "Unsupported target CPU"
59272408a527Saurel32  ;;
59282408a527Saurel32esac
59295e8861a0SPaolo Bonzini# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
59305e8861a0SPaolo Bonziniif [ "$TARGET_BASE_ARCH" = "" ]; then
59315e8861a0SPaolo Bonzini  TARGET_BASE_ARCH=$TARGET_ARCH
59325e8861a0SPaolo Bonzinifi
59335e8861a0SPaolo Bonzini
59345e8861a0SPaolo Bonzinisymlink "$source_path/Makefile.target" "$target_dir/Makefile"
59355e8861a0SPaolo Bonzini
593699afc91dSDaniel P. Berrangeupper() {
593799afc91dSDaniel P. Berrange    echo "$@"| LC_ALL=C tr '[a-z]' '[A-Z]'
593899afc91dSDaniel P. Berrange}
593999afc91dSDaniel P. Berrange
594089138857SStefan Weiltarget_arch_name="$(upper $TARGET_ARCH)"
594125be210fSJuan Quintelaecho "TARGET_$target_arch_name=y" >> $config_target_mak
5942c1799a84SPaolo Bonziniecho "TARGET_NAME=$target_name" >> $config_target_mak
594325be210fSJuan Quintelaecho "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
5944e6e91b9cSJuan Quintelaif [ "$TARGET_ABI_DIR" = "" ]; then
5945e6e91b9cSJuan Quintela  TARGET_ABI_DIR=$TARGET_ARCH
5946e6e91b9cSJuan Quintelafi
594725be210fSJuan Quintelaecho "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
5948adfc3e91SStacey Sonif [ "$HOST_VARIANT_DIR" != "" ]; then
5949adfc3e91SStacey Son    echo "HOST_VARIANT_DIR=$HOST_VARIANT_DIR" >> $config_target_mak
5950adfc3e91SStacey Sonfi
5951c1799a84SPaolo Bonzinicase "$target_name" in
59521b0c87fcSJuan Quintela  i386|x86_64)
59531b0c87fcSJuan Quintela    if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
595425be210fSJuan Quintela      echo "CONFIG_XEN=y" >> $config_target_mak
5955eb6fda0fSAnthony PERARD      if test "$xen_pci_passthrough" = yes; then
5956eb6fda0fSAnthony PERARD        echo "CONFIG_XEN_PCI_PASSTHROUGH=y" >> "$config_target_mak"
5957eb6fda0fSAnthony PERARD      fi
5958432d268cSJun Nakajima    fi
595959d21e53SAlexander Graf    ;;
596059d21e53SAlexander Graf  *)
59611b0c87fcSJuan Quintelaesac
5962c1799a84SPaolo Bonzinicase "$target_name" in
5963222e7d11SSanjay Lal  aarch64|arm|i386|x86_64|ppcemb|ppc|ppc64|s390x|mipsel|mips)
5964c59249f9SJuan Quintela    # Make sure the target and host cpus are compatible
5965c59249f9SJuan Quintela    if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
5966c1799a84SPaolo Bonzini      \( "$target_name" = "$cpu" -o \
5967c1799a84SPaolo Bonzini      \( "$target_name" = "ppcemb" -a "$cpu" = "ppc" \) -o \
5968c1799a84SPaolo Bonzini      \( "$target_name" = "ppc64"  -a "$cpu" = "ppc" \) -o \
5969c1799a84SPaolo Bonzini      \( "$target_name" = "ppc"    -a "$cpu" = "ppc64" \) -o \
5970c1799a84SPaolo Bonzini      \( "$target_name" = "ppcemb" -a "$cpu" = "ppc64" \) -o \
5971222e7d11SSanjay Lal      \( "$target_name" = "mipsel" -a "$cpu" = "mips" \) -o \
5972c1799a84SPaolo Bonzini      \( "$target_name" = "x86_64" -a "$cpu" = "i386"   \) -o \
597318b8263eSMichael Tokarev      \( "$target_name" = "i386"   -a "$cpu" = "x86_64" \) -o \
597418b8263eSMichael Tokarev      \( "$target_name" = "x86_64" -a "$cpu" = "x32"   \) -o \
597518b8263eSMichael Tokarev      \( "$target_name" = "i386"   -a "$cpu" = "x32" \) \) ; then
597625be210fSJuan Quintela      echo "CONFIG_KVM=y" >> $config_target_mak
59771ba16968SStefan Weil      if test "$vhost_net" = "yes" ; then
5978d5970055SMichael S. Tsirkin        echo "CONFIG_VHOST_NET=y" >> $config_target_mak
5979421f4448SMarc-André Lureau        echo "CONFIG_VHOST_NET_TEST_$target_name=y" >> $config_host_mak
5980d5970055SMichael S. Tsirkin      fi
5981c59249f9SJuan Quintela    fi
5982c59249f9SJuan Quintelaesac
5983de83cd02Sbellardif test "$target_bigendian" = "yes" ; then
598425be210fSJuan Quintela  echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
598597a847bcSbellardfi
598697a847bcSbellardif test "$target_softmmu" = "yes" ; then
598725be210fSJuan Quintela  echo "CONFIG_SOFTMMU=y" >> $config_target_mak
5988de83cd02Sbellardfi
5989997344f3Sbellardif test "$target_user_only" = "yes" ; then
599025be210fSJuan Quintela  echo "CONFIG_USER_ONLY=y" >> $config_target_mak
5991a2c80be9SStefan Weil  echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
5992997344f3Sbellardfi
5993831b7825Sthsif test "$target_linux_user" = "yes" ; then
599425be210fSJuan Quintela  echo "CONFIG_LINUX_USER=y" >> $config_target_mak
5995831b7825Sthsfi
599656aebc89Spbrooklist=""
599756aebc89Spbrookif test ! -z "$gdb_xml_files" ; then
599856aebc89Spbrook  for x in $gdb_xml_files; do
599956aebc89Spbrook    list="$list $source_path/gdb-xml/$x"
600056aebc89Spbrook  done
600125be210fSJuan Quintela  echo "TARGET_XML_FILES=$list" >> $config_target_mak
60023d0f1517SJuan Quintelafi
6003de83cd02Sbellard
6004e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
600525be210fSJuan Quintela  echo "TARGET_HAS_BFLT=y" >> $config_target_mak
6006e5fe0c52Spbrookfi
600784778508Sblueswir1if test "$target_bsd_user" = "yes" ; then
600825be210fSJuan Quintela  echo "CONFIG_BSD_USER=y" >> $config_target_mak
600984778508Sblueswir1fi
60105b0753e0Sbellard
60114afddb55SJuan Quintela# generate QEMU_CFLAGS/LDFLAGS for targets
6012fa282484SJuan Quintela
60134afddb55SJuan Quintelacflags=""
6014fa282484SJuan Quintelaldflags=""
60159b8e111fSJuan Quintela
6016c765fcacSPeter Crosthwaitedisas_config() {
6017c765fcacSPeter Crosthwaite  echo "CONFIG_${1}_DIS=y" >> $config_target_mak
6018c765fcacSPeter Crosthwaite  echo "CONFIG_${1}_DIS=y" >> config-all-disas.mak
6019c765fcacSPeter Crosthwaite}
6020c765fcacSPeter Crosthwaite
602164656024SJuan Quintelafor i in $ARCH $TARGET_BASE_ARCH ; do
602264656024SJuan Quintela  case "$i" in
602364656024SJuan Quintela  alpha)
6024c765fcacSPeter Crosthwaite    disas_config "ALPHA"
602564656024SJuan Quintela  ;;
602682295d8aSRichard Henderson  aarch64)
602782295d8aSRichard Henderson    if test -n "${cxx}"; then
6028c765fcacSPeter Crosthwaite      disas_config "ARM_A64"
602982295d8aSRichard Henderson    fi
603082295d8aSRichard Henderson  ;;
603164656024SJuan Quintela  arm)
6032c765fcacSPeter Crosthwaite    disas_config "ARM"
6033999b53ecSClaudio Fontana    if test -n "${cxx}"; then
6034c765fcacSPeter Crosthwaite      disas_config "ARM_A64"
6035999b53ecSClaudio Fontana    fi
603664656024SJuan Quintela  ;;
603764656024SJuan Quintela  cris)
6038c765fcacSPeter Crosthwaite    disas_config "CRIS"
603964656024SJuan Quintela  ;;
6040c72b26ecSRichard Henderson  i386|x86_64|x32)
6041c765fcacSPeter Crosthwaite    disas_config "I386"
604264656024SJuan Quintela  ;;
6043903ec55cSAurelien Jarno  ia64*)
6044c765fcacSPeter Crosthwaite    disas_config "IA64"
6045903ec55cSAurelien Jarno  ;;
604679368f49SMichael Walle  lm32)
6047c765fcacSPeter Crosthwaite    disas_config "LM32"
604879368f49SMichael Walle  ;;
604964656024SJuan Quintela  m68k)
6050c765fcacSPeter Crosthwaite    disas_config "M68K"
605164656024SJuan Quintela  ;;
6052877fdc12SEdgar E. Iglesias  microblaze*)
6053c765fcacSPeter Crosthwaite    disas_config "MICROBLAZE"
605464656024SJuan Quintela  ;;
605564656024SJuan Quintela  mips*)
6056c765fcacSPeter Crosthwaite    disas_config "MIPS"
605764656024SJuan Quintela  ;;
6058d15a9c23SAnthony Green  moxie*)
6059c765fcacSPeter Crosthwaite    disas_config "MOXIE"
6060d15a9c23SAnthony Green  ;;
6061e67db06eSJia Liu  or32)
6062c765fcacSPeter Crosthwaite    disas_config "OPENRISC"
6063e67db06eSJia Liu  ;;
606464656024SJuan Quintela  ppc*)
6065c765fcacSPeter Crosthwaite    disas_config "PPC"
606664656024SJuan Quintela  ;;
606724e804ecSAlexander Graf  s390*)
6068c765fcacSPeter Crosthwaite    disas_config "S390"
606964656024SJuan Quintela  ;;
607064656024SJuan Quintela  sh4)
6071c765fcacSPeter Crosthwaite    disas_config "SH4"
607264656024SJuan Quintela  ;;
607364656024SJuan Quintela  sparc*)
6074c765fcacSPeter Crosthwaite    disas_config "SPARC"
607564656024SJuan Quintela  ;;
6076cfa550c6SMax Filippov  xtensa*)
6077c765fcacSPeter Crosthwaite    disas_config "XTENSA"
6078cfa550c6SMax Filippov  ;;
607964656024SJuan Quintela  esac
608064656024SJuan Quinteladone
60819195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then
6082c765fcacSPeter Crosthwaite  disas_config "TCI"
60839195b2c2SStefan Weilfi
608464656024SJuan Quintela
60856ee7126fSJuan Quintelacase "$ARCH" in
60866ee7126fSJuan Quintelaalpha)
60876ee7126fSJuan Quintela  # Ensure there's only a single GP
60886ee7126fSJuan Quintela  cflags="-msmall-data $cflags"
60896ee7126fSJuan Quintela;;
60906ee7126fSJuan Quintelaesac
60916ee7126fSJuan Quintela
6092d02c1db3SJuan Quintelaif test "$gprof" = "yes" ; then
609325be210fSJuan Quintela  echo "TARGET_GPROF=yes" >> $config_target_mak
6094d02c1db3SJuan Quintela  if test "$target_linux_user" = "yes" ; then
6095d02c1db3SJuan Quintela    cflags="-p $cflags"
6096d02c1db3SJuan Quintela    ldflags="-p $ldflags"
6097d02c1db3SJuan Quintela  fi
6098d02c1db3SJuan Quintela  if test "$target_softmmu" = "yes" ; then
6099d02c1db3SJuan Quintela    ldflags="-p $ldflags"
610025be210fSJuan Quintela    echo "GPROF_CFLAGS=-p" >> $config_target_mak
6101d02c1db3SJuan Quintela  fi
6102d02c1db3SJuan Quintelafi
6103d02c1db3SJuan Quintela
61049b8e111fSJuan Quintelaif test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
6105964c6fa1SRichard Henderson  ldflags="$ldflags $textseg_ldflags"
6106fa282484SJuan Quintelafi
6107fa282484SJuan Quintela
610825be210fSJuan Quintelaecho "LDFLAGS+=$ldflags" >> $config_target_mak
610925be210fSJuan Quintelaecho "QEMU_CFLAGS+=$cflags" >> $config_target_mak
6110fa282484SJuan Quintela
611197a847bcSbellarddone # for target in $targets
61127d13299dSbellard
6113b776eca1SGerd Hoffmannif [ "$pixman" = "internal" ]; then
6114b776eca1SGerd Hoffmann  echo "config-host.h: subdir-pixman" >> $config_host_mak
6115b776eca1SGerd Hoffmannfi
6116b776eca1SGerd Hoffmann
6117a540f158SPeter Crosthwaiteif [ "$dtc_internal" = "yes" ]; then
6118a540f158SPeter Crosthwaite  echo "config-host.h: subdir-dtc" >> $config_host_mak
6119a540f158SPeter Crosthwaitefi
6120a540f158SPeter Crosthwaite
6121a99d57bbSWanlong Gaoif test "$numa" = "yes"; then
6122a99d57bbSWanlong Gao  echo "CONFIG_NUMA=y" >> $config_host_mak
6123a99d57bbSWanlong Gaofi
6124a99d57bbSWanlong Gao
6125fd0e6053SJohn Snowif test "$ccache_cpp2" = "yes"; then
6126fd0e6053SJohn Snow  echo "export CCACHE_CPP2=y" >> $config_host_mak
6127fd0e6053SJohn Snowfi
6128fd0e6053SJohn Snow
6129d1807a4fSPaolo Bonzini# build tree in object directory in case the source is not in the current directory
6130f93296eaSWenchao XiaDIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32 tests/libqos tests/qapi-schema tests/tcg/xtensa tests/qemu-iotests"
61312b170effSMichael TokarevDIRS="$DIRS fsdev"
61329933c305SChristian BorntraegerDIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas pc-bios/s390-ccw"
61332d9f27d2SAnthony LiguoriDIRS="$DIRS roms/seabios roms/vgabios"
61342dee8d54SPaolo BonziniDIRS="$DIRS qapi-generated"
6135c09015ddSAnthony LiguoriFILES="Makefile tests/tcg/Makefile qdict-test-data.txt"
6136c09015ddSAnthony LiguoriFILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit"
6137aaa2ebc5SAndreas FärberFILES="$FILES tests/tcg/lm32/Makefile tests/tcg/xtensa/Makefile po/Makefile"
6138ae0bfb79SBlue SwirlFILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps"
6139446b9165SAndreas FärberFILES="$FILES pc-bios/spapr-rtas/Makefile"
61409933c305SChristian BorntraegerFILES="$FILES pc-bios/s390-ccw/Makefile"
61412d9f27d2SAnthony LiguoriFILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
61424652b792SJan KiszkaFILES="$FILES pc-bios/qemu-icon.bmp"
6143753d11f2SRichard Hendersonfor bios_file in \
6144753d11f2SRichard Henderson    $source_path/pc-bios/*.bin \
61455acc2ec0SGerd Hoffmann    $source_path/pc-bios/*.aml \
6146753d11f2SRichard Henderson    $source_path/pc-bios/*.rom \
6147753d11f2SRichard Henderson    $source_path/pc-bios/*.dtb \
6148e89e33e1SDominik Dingel    $source_path/pc-bios/*.img \
6149753d11f2SRichard Henderson    $source_path/pc-bios/openbios-* \
61504e73c781SAlexander Graf    $source_path/pc-bios/u-boot.* \
6151753d11f2SRichard Henderson    $source_path/pc-bios/palcode-*
6152753d11f2SRichard Hendersondo
615389138857SStefan Weil    FILES="$FILES pc-bios/$(basename $bios_file)"
61547ea78b74SJan Kiszkadone
615589138857SStefan Weilfor test_file in $(find $source_path/tests/acpi-test-data -type f)
6156c2304b52SMarcel Apfelbaumdo
615789138857SStefan Weil    FILES="$FILES tests/acpi-test-data$(echo $test_file | sed -e 's/.*acpi-test-data//')"
6158c2304b52SMarcel Apfelbaumdone
6159d1807a4fSPaolo Bonzinimkdir -p $DIRS
61607d13299dSbellardfor f in $FILES ; do
6161cab00a5aSMichael S. Tsirkin    if [ -e "$source_path/$f" ] && [ "$pwd_is_source_path" != "y" ]; then
6162f9245e10SPeter Maydell        symlink "$source_path/$f" "$f"
6163f9245e10SPeter Maydell    fi
61647d13299dSbellarddone
61651ad2134fSPaul Brook
6166c34ebfdcSAnthony Liguori# temporary config to build submodules
61672d9f27d2SAnthony Liguorifor rom in seabios vgabios ; do
6168c34ebfdcSAnthony Liguori    config_mak=roms/$rom/config.mak
616937116c89SStefan Weil    echo "# Automatically generated by configure - do not modify" > $config_mak
6170c34ebfdcSAnthony Liguori    echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
6171cdbd727cSRichard Henderson    echo "AS=$as" >> $config_mak
61725f6f0e27SRichard Henderson    echo "CCAS=$ccas" >> $config_mak
6173c34ebfdcSAnthony Liguori    echo "CC=$cc" >> $config_mak
6174c34ebfdcSAnthony Liguori    echo "BCC=bcc" >> $config_mak
61753dd46c78SBlue Swirl    echo "CPP=$cpp" >> $config_mak
6176c34ebfdcSAnthony Liguori    echo "OBJCOPY=objcopy" >> $config_mak
6177a31a8642SMichael S. Tsirkin    echo "IASL=$iasl" >> $config_mak
6178c34ebfdcSAnthony Liguori    echo "LD=$ld" >> $config_mak
6179c34ebfdcSAnthony Liguoridone
6180c34ebfdcSAnthony Liguori
6181fe31017fSMarc-André Lureau# set up tests data directory
6182fe31017fSMarc-André Lureauif [ ! -e tests/data ]; then
6183fe31017fSMarc-André Lureau    symlink "$source_path/tests/data" tests/data
6184fe31017fSMarc-André Lureaufi
6185fe31017fSMarc-André Lureau
618676c7560aSMax Reitz# set up qemu-iotests in this build directory
618776c7560aSMax Reitziotests_common_env="tests/qemu-iotests/common.env"
618876c7560aSMax Reitziotests_check="tests/qemu-iotests/check"
618976c7560aSMax Reitz
619076c7560aSMax Reitzecho "# Automatically generated by configure - do not modify" > "$iotests_common_env"
619176c7560aSMax Reitzecho >> "$iotests_common_env"
619276c7560aSMax Reitzecho "export PYTHON='$python'" >> "$iotests_common_env"
619376c7560aSMax Reitz
619476c7560aSMax Reitzif [ ! -e "$iotests_check" ]; then
619576c7560aSMax Reitz    symlink "$source_path/$iotests_check" "$iotests_check"
619676c7560aSMax Reitzfi
619776c7560aSMax Reitz
6198dc655404SMichael S. Tsirkin# Save the configure command line for later reuse.
6199dc655404SMichael S. Tsirkincat <<EOD >config.status
6200dc655404SMichael S. Tsirkin#!/bin/sh
6201dc655404SMichael S. Tsirkin# Generated by configure.
6202dc655404SMichael S. Tsirkin# Run this file to recreate the current configuration.
6203dc655404SMichael S. Tsirkin# Compiler output produced by configure, useful for debugging
6204dc655404SMichael S. Tsirkin# configure, is in config.log if it exists.
6205dc655404SMichael S. TsirkinEOD
6206dc655404SMichael S. Tsirkinprintf "exec" >>config.status
6207dc655404SMichael S. Tsirkinprintf " '%s'" "$0" "$@" >>config.status
6208cf7cc929SDr. David Alan Gilbertecho ' "$@"' >>config.status
6209dc655404SMichael S. Tsirkinchmod +x config.status
6210dc655404SMichael S. Tsirkin
62118cd05ab6SPeter Maydellrm -r "$TMPDIR1"
6212