17d13299dSbellard#!/bin/sh 27d13299dSbellard# 33ef693a0Sbellard# qemu configure script (c) 2003 Fabrice Bellard 47d13299dSbellard# 57d13299dSbellard# set temporary file name 67d13299dSbellardif test ! -z "$TMPDIR" ; then 77d13299dSbellard TMPDIR1="${TMPDIR}" 87d13299dSbellardelif test ! -z "$TEMPDIR" ; then 97d13299dSbellard TMPDIR1="${TEMPDIR}" 107d13299dSbellardelse 117d13299dSbellard TMPDIR1="/tmp" 127d13299dSbellardfi 137d13299dSbellard 143ef693a0SbellardTMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c" 153ef693a0SbellardTMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o" 16a91b857cSmalcTMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.exe" 177d13299dSbellard 180ba8681eSLoïc Minier# NB: do not call "exit" in the trap handler; this is buggy with some shells; 190ba8681eSLoïc Minier# see <1285349658-3122-1-git-send-email-loic.minier@linaro.org> 200ba8681eSLoïc Miniertrap "rm -f $TMPC $TMPO $TMPE" EXIT INT QUIT TERM 21da1d85e3SGerd Hoffmannrm -f config.log 229ac81bbbSmalc 23b48e3611SPeter Maydell# Print a helpful header at the top of config.log 24b48e3611SPeter Maydellecho "# QEMU configure log $(date)" >> config.log 25979ae168SPeter Maydellprintf "# Configured with:" >> config.log 26979ae168SPeter Maydellprintf " '%s'" "$0" "$@" >> config.log 27979ae168SPeter Maydellecho >> config.log 28b48e3611SPeter Maydellecho "#" >> config.log 29b48e3611SPeter Maydell 308dc38a78SPeter Maydelldo_cc() { 318dc38a78SPeter Maydell # Run the compiler, capturing its output to the log. 328dc38a78SPeter Maydell echo $cc "$@" >> config.log 338dc38a78SPeter Maydell $cc "$@" >> config.log 2>&1 || return $? 348dc38a78SPeter Maydell # Test passed. If this is an --enable-werror build, rerun 358dc38a78SPeter Maydell # the test with -Werror and bail out if it fails. This 368dc38a78SPeter Maydell # makes warning-generating-errors in configure test code 378dc38a78SPeter Maydell # obvious to developers. 388dc38a78SPeter Maydell if test "$werror" != "yes"; then 398dc38a78SPeter Maydell return 0 408dc38a78SPeter Maydell fi 418dc38a78SPeter Maydell # Don't bother rerunning the compile if we were already using -Werror 428dc38a78SPeter Maydell case "$*" in 438dc38a78SPeter Maydell *-Werror*) 448dc38a78SPeter Maydell return 0 458dc38a78SPeter Maydell ;; 468dc38a78SPeter Maydell esac 478dc38a78SPeter Maydell echo $cc -Werror "$@" >> config.log 488dc38a78SPeter Maydell $cc -Werror "$@" >> config.log 2>&1 && return $? 498dc38a78SPeter Maydell echo "ERROR: configure test passed without -Werror but failed with -Werror." 508dc38a78SPeter Maydell echo "This is probably a bug in the configure script. The failing command" 518dc38a78SPeter Maydell echo "will be at the bottom of config.log." 528dc38a78SPeter Maydell echo "You can run configure with --disable-werror to bypass this check." 538dc38a78SPeter Maydell exit 1 548dc38a78SPeter Maydell} 558dc38a78SPeter Maydell 5652166aa0SJuan Quintelacompile_object() { 578dc38a78SPeter Maydell do_cc $QEMU_CFLAGS -c -o $TMPO $TMPC 5852166aa0SJuan Quintela} 5952166aa0SJuan Quintela 6052166aa0SJuan Quintelacompile_prog() { 6152166aa0SJuan Quintela local_cflags="$1" 6252166aa0SJuan Quintela local_ldflags="$2" 638dc38a78SPeter Maydell do_cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags 6452166aa0SJuan Quintela} 6552166aa0SJuan Quintela 6611568d6dSPaolo Bonzini# symbolically link $1 to $2. Portable version of "ln -sf". 6711568d6dSPaolo Bonzinisymlink() { 6872b8b5a1SStefan Weil rm -rf "$2" 69ec5b06d7SAnthony Liguori mkdir -p "$(dirname "$2")" 7072b8b5a1SStefan Weil ln -s "$1" "$2" 7111568d6dSPaolo Bonzini} 7211568d6dSPaolo Bonzini 730dba6195SLoïc Minier# check whether a command is available to this shell (may be either an 740dba6195SLoïc Minier# executable or a builtin) 750dba6195SLoïc Minierhas() { 760dba6195SLoïc Minier type "$1" >/dev/null 2>&1 770dba6195SLoïc Minier} 780dba6195SLoïc Minier 790dba6195SLoïc Minier# search for an executable in PATH 800dba6195SLoïc Minierpath_of() { 810dba6195SLoïc Minier local_command="$1" 820dba6195SLoïc Minier local_ifs="$IFS" 830dba6195SLoïc Minier local_dir="" 840dba6195SLoïc Minier 850dba6195SLoïc Minier # pathname has a dir component? 860dba6195SLoïc Minier if [ "${local_command#*/}" != "$local_command" ]; then 870dba6195SLoïc Minier if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then 880dba6195SLoïc Minier echo "$local_command" 890dba6195SLoïc Minier return 0 900dba6195SLoïc Minier fi 910dba6195SLoïc Minier fi 920dba6195SLoïc Minier if [ -z "$local_command" ]; then 930dba6195SLoïc Minier return 1 940dba6195SLoïc Minier fi 950dba6195SLoïc Minier 960dba6195SLoïc Minier IFS=: 970dba6195SLoïc Minier for local_dir in $PATH; do 980dba6195SLoïc Minier if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then 990dba6195SLoïc Minier echo "$local_dir/$local_command" 1000dba6195SLoïc Minier IFS="${local_ifs:-$(printf ' \t\n')}" 1010dba6195SLoïc Minier return 0 1020dba6195SLoïc Minier fi 1030dba6195SLoïc Minier done 1040dba6195SLoïc Minier # not found 1050dba6195SLoïc Minier IFS="${local_ifs:-$(printf ' \t\n')}" 1060dba6195SLoïc Minier return 1 1070dba6195SLoïc Minier} 1080dba6195SLoïc Minier 1097d13299dSbellard# default parameters 110ca4deeb1SPaolo Bonzinisource_path=`dirname "$0"` 1112ff6b91eSJuan Quintelacpu="" 1121e43adfcSbellardinterp_prefix="/usr/gnemul/qemu-%M" 11343ce4dfeSbellardstatic="no" 1147d13299dSbellardcross_prefix="" 1150c58ac1cSmalcaudio_drv_list="" 11661dc008fSAnthony Liguoriaudio_card_list="ac97 es1370 sb16 hda" 11761dc008fSAnthony Liguoriaudio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus hda" 118eb852011SMarkus Armbrusterblock_drv_whitelist="" 119e49d021eSPeter Maydellhost_cc="cc" 12073da375eSJuan Quintelalibs_softmmu="" 1213e2e0e6bSJuan Quintelalibs_tools="" 12267f86e8eSJuan Quintelaaudio_pt_int="" 123d5631638Smalcaudio_win_int="" 1242b2e59e6SPaolo Bonzinicc_i386=i386-pc-linux-gnu-gcc 125957f1f99SMichael Rothlibs_qga="" 1265bc62e01SGerd Hoffmanndebug_info="yes" 127ac0df51dSaliguori 128afb63ebdSStefan Weil# Don't accept a target_list environment variable. 129afb63ebdSStefan Weilunset target_list 130377529c0SPaolo Bonzini 131377529c0SPaolo Bonzini# Default value for a variable defining feature "foo". 132377529c0SPaolo Bonzini# * foo="no" feature will only be used if --enable-foo arg is given 133377529c0SPaolo Bonzini# * foo="" feature will be searched for, and if found, will be used 134377529c0SPaolo Bonzini# unless --disable-foo is given 135377529c0SPaolo Bonzini# * foo="yes" this value will only be set by --enable-foo flag. 136377529c0SPaolo Bonzini# feature will searched for, 137377529c0SPaolo Bonzini# if not found, configure exits with error 138377529c0SPaolo Bonzini# 139377529c0SPaolo Bonzini# Always add --enable-foo and --disable-foo command line args. 140377529c0SPaolo Bonzini# Distributions want to ensure that several features are compiled in, and it 141377529c0SPaolo Bonzini# is impossible without a --enable-foo that exits if a feature is not found. 142377529c0SPaolo Bonzini 143377529c0SPaolo Bonzinibluez="" 144377529c0SPaolo Bonzinibrlapi="" 145377529c0SPaolo Bonzinicurl="" 146377529c0SPaolo Bonzinicurses="" 147377529c0SPaolo Bonzinidocs="" 148377529c0SPaolo Bonzinifdt="" 149377529c0SPaolo Bonzininptl="" 150e2134eb9SGerd Hoffmannpixman="" 151377529c0SPaolo Bonzinisdl="" 152983eef5aSMeador Ingevirtfs="" 153821601eaSJes Sorensenvnc="yes" 154377529c0SPaolo Bonzinisparse="no" 155377529c0SPaolo Bonziniuuid="" 156377529c0SPaolo Bonzinivde="" 157377529c0SPaolo Bonzinivnc_tls="" 158377529c0SPaolo Bonzinivnc_sasl="" 159377529c0SPaolo Bonzinivnc_jpeg="" 160377529c0SPaolo Bonzinivnc_png="" 1617536ee4bSTim Hardeckvnc_ws="" 162377529c0SPaolo Bonzinixen="" 163d5b93ddfSAnthony PERARDxen_ctrl_version="" 164eb6fda0fSAnthony PERARDxen_pci_passthrough="" 165377529c0SPaolo Bonzinilinux_aio="" 16647e98658SCorey Bryantcap_ng="" 167377529c0SPaolo Bonziniattr="" 1684f26f2b6SAvi Kivitylibattr="" 169377529c0SPaolo Bonzinixfs="" 170377529c0SPaolo Bonzini 171d41a75a2SBradvhost_net="no" 172d41a75a2SBradkvm="no" 173377529c0SPaolo Bonzinigprof="no" 174377529c0SPaolo Bonzinidebug_tcg="no" 175377529c0SPaolo Bonzinidebug="no" 176377529c0SPaolo Bonzinistrip_opt="yes" 1779195b2c2SStefan Weiltcg_interpreter="no" 178377529c0SPaolo Bonzinibigendian="no" 179377529c0SPaolo Bonzinimingw32="no" 1801d728c39SBlue Swirlgcov="no" 1811d728c39SBlue Swirlgcov_tool="gcov" 182377529c0SPaolo BonziniEXESUF="" 183377529c0SPaolo Bonziniprefix="/usr/local" 184377529c0SPaolo Bonzinimandir="\${prefix}/share/man" 185528ae5b8SEduardo Habkostdatadir="\${prefix}/share" 186850da188SEduardo Habkostqemu_docdir="\${prefix}/share/doc/qemu" 187377529c0SPaolo Bonzinibindir="\${prefix}/bin" 1883aa5d2beSAlon Levylibdir="\${prefix}/lib" 1898bf188aaSMichael Tokarevlibexecdir="\${prefix}/libexec" 1900f94d6daSAlon Levyincludedir="\${prefix}/include" 191377529c0SPaolo Bonzinisysconfdir="\${prefix}/etc" 192785c23aeSLuiz Capitulinolocal_statedir="\${prefix}/var" 193377529c0SPaolo Bonziniconfsuffix="/qemu" 194377529c0SPaolo Bonzinislirp="yes" 195377529c0SPaolo Bonzinifmod_lib="" 196377529c0SPaolo Bonzinifmod_inc="" 197377529c0SPaolo Bonzinioss_lib="" 198377529c0SPaolo Bonzinibsd="no" 199377529c0SPaolo Bonzinilinux="no" 200377529c0SPaolo Bonzinisolaris="no" 201377529c0SPaolo Bonziniprofiler="no" 202377529c0SPaolo Bonzinicocoa="no" 203377529c0SPaolo Bonzinisoftmmu="yes" 204377529c0SPaolo Bonzinilinux_user="no" 205377529c0SPaolo Bonzinibsd_user="no" 20630163d89SPeter Maydellguest_base="yes" 207377529c0SPaolo Bonziniuname_release="" 208377529c0SPaolo Bonzinimixemu="no" 209377529c0SPaolo Bonziniaix="no" 210377529c0SPaolo Bonziniblobs="yes" 211377529c0SPaolo Bonzinipkgversion="" 21240d6444eSAvi Kivitypie="" 213377529c0SPaolo Bonzinizero_malloc="" 214377529c0SPaolo Bonzinitrace_backend="nop" 215377529c0SPaolo Bonzinitrace_file="trace" 216377529c0SPaolo Bonzinispice="" 217377529c0SPaolo Bonzinirbd="" 218111a38b0SRobert Relyeasmartcard_nss="" 21969354a83SHans de Goedeusb_redir="" 220430a3c18SMichael Walleopengl="" 2211ece9905SAlon Levyzlib="yes" 222d138cee9SMichael Rothguest_agent="yes" 2234b1c11fdSDaniel P. Berrangewant_tools="yes" 224c589b249SRonnie Sahlberglibiscsi="" 225519175a2SAlex Barcelocoroutine="" 226f794573eSEduardo Otuboseccomp="" 227eb100396SBharata B Raoglusterfs="" 228583f6e7bSStefan Hajnoczivirtio_blk_data_plane="" 229a4ccabcfSAnthony Liguorigtk="" 230528de90aSDaniel P. Berrangegtkabi="2.0" 231377529c0SPaolo Bonzini 232ac0df51dSaliguori# parse CC options first 233ac0df51dSaliguorifor opt do 234ac0df51dSaliguori optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` 235ac0df51dSaliguori case "$opt" in 236ac0df51dSaliguori --cross-prefix=*) cross_prefix="$optarg" 237ac0df51dSaliguori ;; 2383d8df640SPaolo Bonzini --cc=*) CC="$optarg" 239ac0df51dSaliguori ;; 240ca4deeb1SPaolo Bonzini --source-path=*) source_path="$optarg" 241ca4deeb1SPaolo Bonzini ;; 2422ff6b91eSJuan Quintela --cpu=*) cpu="$optarg" 2432ff6b91eSJuan Quintela ;; 244a558ee17SJuan Quintela --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS" 245f9943cd5SGerd Hoffmann EXTRA_CFLAGS="$optarg" 246e2a2ed06SJuan Quintela ;; 247e2a2ed06SJuan Quintela --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS" 248f9943cd5SGerd Hoffmann EXTRA_LDFLAGS="$optarg" 249e2a2ed06SJuan Quintela ;; 2505bc62e01SGerd Hoffmann --enable-debug-info) debug_info="yes" 2515bc62e01SGerd Hoffmann ;; 2525bc62e01SGerd Hoffmann --disable-debug-info) debug_info="no" 2535bc62e01SGerd Hoffmann ;; 254ac0df51dSaliguori esac 255ac0df51dSaliguoridone 256ac0df51dSaliguori# OS specific 257ac0df51dSaliguori# Using uname is really, really broken. Once we have the right set of checks 25893148aa5SStefan Weil# we can eliminate its usage altogether. 259ac0df51dSaliguori 260e49d021eSPeter Maydell# Preferred compiler: 261e49d021eSPeter Maydell# ${CC} (if set) 262e49d021eSPeter Maydell# ${cross_prefix}gcc (if cross-prefix specified) 263e49d021eSPeter Maydell# system compiler 264e49d021eSPeter Maydellif test -z "${CC}${cross_prefix}"; then 265e49d021eSPeter Maydell cc="$host_cc" 266e49d021eSPeter Maydellelse 267b3198cc2SStuart Yoder cc="${CC-${cross_prefix}gcc}" 268e49d021eSPeter Maydellfi 269e49d021eSPeter Maydell 270b3198cc2SStuart Yoderar="${AR-${cross_prefix}ar}" 2713dd46c78SBlue Swirlas="${AS-${cross_prefix}as}" 2723dd46c78SBlue Swirlcpp="${CPP-$cc -E}" 273b3198cc2SStuart Yoderobjcopy="${OBJCOPY-${cross_prefix}objcopy}" 274b3198cc2SStuart Yoderld="${LD-${cross_prefix}ld}" 2753f534581SBradlibtool="${LIBTOOL-${cross_prefix}libtool}" 276b3198cc2SStuart Yoderstrip="${STRIP-${cross_prefix}strip}" 277b3198cc2SStuart Yoderwindres="${WINDRES-${cross_prefix}windres}" 27817884d7bSSergei Trofimovichpkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}" 27917884d7bSSergei Trofimovichquery_pkg_config() { 28017884d7bSSergei Trofimovich "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@" 28117884d7bSSergei Trofimovich} 28217884d7bSSergei Trofimovichpkg_config=query_pkg_config 283b3198cc2SStuart Yodersdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}" 284ac0df51dSaliguori 285be17dc90SMichael S. Tsirkin# default flags for all hosts 286be17dc90SMichael S. TsirkinQEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS" 287f9188227SMike FrysingerQEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS" 288c95e3080SKevin WolfQEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS" 289be17dc90SMichael S. TsirkinQEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS" 2906b4c305cSPaolo BonziniQEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/include" 2915bc62e01SGerd Hoffmannif test "$debug_info" = "yes"; then 2925bc62e01SGerd Hoffmann CFLAGS="-g $CFLAGS" 293be17dc90SMichael S. Tsirkin LDFLAGS="-g $LDFLAGS" 2945bc62e01SGerd Hoffmannfi 295be17dc90SMichael S. Tsirkin 296ca4deeb1SPaolo Bonzini# make source path absolute 297ca4deeb1SPaolo Bonzinisource_path=`cd "$source_path"; pwd` 298ca4deeb1SPaolo Bonzini 299ac0df51dSaliguoricheck_define() { 300ac0df51dSaliguoricat > $TMPC <<EOF 301ac0df51dSaliguori#if !defined($1) 302fd786e1aSPeter Maydell#error $1 not defined 303ac0df51dSaliguori#endif 304ac0df51dSaliguoriint main(void) { return 0; } 305ac0df51dSaliguoriEOF 30652166aa0SJuan Quintela compile_object 307ac0df51dSaliguori} 308ac0df51dSaliguori 309bbea4050SPeter Maydellif check_define __linux__ ; then 310bbea4050SPeter Maydell targetos="Linux" 311bbea4050SPeter Maydellelif check_define _WIN32 ; then 312bbea4050SPeter Maydell targetos='MINGW32' 313bbea4050SPeter Maydellelif check_define __OpenBSD__ ; then 314bbea4050SPeter Maydell targetos='OpenBSD' 315bbea4050SPeter Maydellelif check_define __sun__ ; then 316bbea4050SPeter Maydell targetos='SunOS' 317bbea4050SPeter Maydellelif check_define __HAIKU__ ; then 318bbea4050SPeter Maydell targetos='Haiku' 319bbea4050SPeter Maydellelse 320bbea4050SPeter Maydell targetos=`uname -s` 321bbea4050SPeter Maydellfi 322bbea4050SPeter Maydell 323bbea4050SPeter Maydell# Some host OSes need non-standard checks for which CPU to use. 324bbea4050SPeter Maydell# Note that these checks are broken for cross-compilation: if you're 325bbea4050SPeter Maydell# cross-compiling to one of these OSes then you'll need to specify 326bbea4050SPeter Maydell# the correct CPU with the --cpu option. 327bbea4050SPeter Maydellcase $targetos in 328bbea4050SPeter MaydellDarwin) 329bbea4050SPeter Maydell # on Leopard most of the system is 32-bit, so we have to ask the kernel if we can 330bbea4050SPeter Maydell # run 64-bit userspace code. 331bbea4050SPeter Maydell # If the user didn't specify a CPU explicitly and the kernel says this is 332bbea4050SPeter Maydell # 64 bit hw, then assume x86_64. Otherwise fall through to the usual detection code. 333bbea4050SPeter Maydell if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then 334bbea4050SPeter Maydell cpu="x86_64" 335bbea4050SPeter Maydell fi 336bbea4050SPeter Maydell ;; 337bbea4050SPeter MaydellSunOS) 338bbea4050SPeter Maydell # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo 339bbea4050SPeter Maydell if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then 340bbea4050SPeter Maydell cpu="x86_64" 341bbea4050SPeter Maydell fi 342bbea4050SPeter Maydellesac 343bbea4050SPeter Maydell 3442ff6b91eSJuan Quintelaif test ! -z "$cpu" ; then 3452ff6b91eSJuan Quintela # command line argument 3462ff6b91eSJuan Quintela : 3472ff6b91eSJuan Quintelaelif check_define __i386__ ; then 348ac0df51dSaliguori cpu="i386" 349ac0df51dSaliguorielif check_define __x86_64__ ; then 350ac0df51dSaliguori cpu="x86_64" 3513aa9bd6cSblueswir1elif check_define __sparc__ ; then 3523aa9bd6cSblueswir1 if check_define __arch64__ ; then 3533aa9bd6cSblueswir1 cpu="sparc64" 3543aa9bd6cSblueswir1 else 3553aa9bd6cSblueswir1 cpu="sparc" 3563aa9bd6cSblueswir1 fi 357fdf7ed96Smalcelif check_define _ARCH_PPC ; then 358fdf7ed96Smalc if check_define _ARCH_PPC64 ; then 359fdf7ed96Smalc cpu="ppc64" 360ac0df51dSaliguori else 361fdf7ed96Smalc cpu="ppc" 362fdf7ed96Smalc fi 363afa05235SAurelien Jarnoelif check_define __mips__ ; then 364afa05235SAurelien Jarno cpu="mips" 365477ba620SAurelien Jarnoelif check_define __ia64__ ; then 366477ba620SAurelien Jarno cpu="ia64" 367d66ed0eaSAurelien Jarnoelif check_define __s390__ ; then 368d66ed0eaSAurelien Jarno if check_define __s390x__ ; then 369d66ed0eaSAurelien Jarno cpu="s390x" 370d66ed0eaSAurelien Jarno else 371d66ed0eaSAurelien Jarno cpu="s390" 372d66ed0eaSAurelien Jarno fi 37321d89f84SPeter Maydellelif check_define __arm__ ; then 37421d89f84SPeter Maydell cpu="arm" 375f28ffed5SBradelif check_define __hppa__ ; then 376f28ffed5SBrad cpu="hppa" 377fdf7ed96Smalcelse 378fdf7ed96Smalc cpu=`uname -m` 379ac0df51dSaliguorifi 380ac0df51dSaliguori 381359bc95dSPeter MaydellARCH= 382359bc95dSPeter Maydell# Normalise host CPU name and set ARCH. 383359bc95dSPeter Maydell# Note that this case should only have supported host CPUs, not guests. 3847d13299dSbellardcase "$cpu" in 385359bc95dSPeter Maydell ia64|ppc|ppc64|s390|s390x|sparc64) 386ea8f20f8SJuan Quintela cpu="$cpu" 387ea8f20f8SJuan Quintela ;; 3887d13299dSbellard i386|i486|i586|i686|i86pc|BePC) 38997a847bcSbellard cpu="i386" 3907d13299dSbellard ;; 391aaa5fa14Saurel32 x86_64|amd64) 392aaa5fa14Saurel32 cpu="x86_64" 393aaa5fa14Saurel32 ;; 39421d89f84SPeter Maydell armv*b|armv*l|arm) 39521d89f84SPeter Maydell cpu="arm" 3967d13299dSbellard ;; 397f28ffed5SBrad hppa|parisc|parisc64) 398f54b3f92Saurel32 cpu="hppa" 399f54b3f92Saurel32 ;; 400afa05235SAurelien Jarno mips*) 401afa05235SAurelien Jarno cpu="mips" 402afa05235SAurelien Jarno ;; 4033142255cSblueswir1 sparc|sun4[cdmuv]) 404ae228531Sbellard cpu="sparc" 405ae228531Sbellard ;; 4067d13299dSbellard *) 407359bc95dSPeter Maydell # This will result in either an error or falling back to TCI later 408359bc95dSPeter Maydell ARCH=unknown 4097d13299dSbellard ;; 4107d13299dSbellardesac 411359bc95dSPeter Maydellif test -z "$ARCH"; then 412359bc95dSPeter Maydell ARCH="$cpu" 413359bc95dSPeter Maydellfi 414e2d52ad3SJuan Quintela 4157d13299dSbellard# OS specific 4160dbfc675SJuan Quintela 4177d13299dSbellardcase $targetos in 418c326e0afSbellardCYGWIN*) 419c326e0afSbellard mingw32="yes" 420a558ee17SJuan Quintela QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS" 421d5631638Smalc audio_possible_drivers="winwave sdl" 422d5631638Smalc audio_drv_list="winwave" 423c326e0afSbellard;; 42467b915a5SbellardMINGW32*) 42567b915a5Sbellard mingw32="yes" 426d5631638Smalc audio_possible_drivers="winwave dsound sdl fmod" 427d5631638Smalc audio_drv_list="winwave" 42867b915a5Sbellard;; 4295c40d2bdSthsGNU/kFreeBSD) 430a167ba50SAurelien Jarno bsd="yes" 4310c58ac1cSmalc audio_drv_list="oss" 432f34af52cSaurel32 audio_possible_drivers="oss sdl esd pa" 4335c40d2bdSths;; 4347d3505c5SbellardFreeBSD) 4357d3505c5Sbellard bsd="yes" 4360db4a067SPaolo Bonzini make="${MAKE-gmake}" 4370c58ac1cSmalc audio_drv_list="oss" 438f34af52cSaurel32 audio_possible_drivers="oss sdl esd pa" 439f01576f1SJuergen Lock # needed for kinfo_getvmmap(3) in libutil.h 440f01576f1SJuergen Lock LIBS="-lutil $LIBS" 4417d3505c5Sbellard;; 442c5e97233Sblueswir1DragonFly) 443c5e97233Sblueswir1 bsd="yes" 4440db4a067SPaolo Bonzini make="${MAKE-gmake}" 445c5e97233Sblueswir1 audio_drv_list="oss" 446c5e97233Sblueswir1 audio_possible_drivers="oss sdl esd pa" 447c5e97233Sblueswir1;; 4487d3505c5SbellardNetBSD) 4497d3505c5Sbellard bsd="yes" 4500db4a067SPaolo Bonzini make="${MAKE-gmake}" 4510c58ac1cSmalc audio_drv_list="oss" 452c2de5c91Smalc audio_possible_drivers="oss sdl esd" 4538ef92a88Sblueswir1 oss_lib="-lossaudio" 4547d3505c5Sbellard;; 4557d3505c5SbellardOpenBSD) 4567d3505c5Sbellard bsd="yes" 4570db4a067SPaolo Bonzini make="${MAKE-gmake}" 4580c58ac1cSmalc audio_drv_list="oss" 459c2de5c91Smalc audio_possible_drivers="oss sdl esd" 4602f6a1ab0Sblueswir1 oss_lib="-lossaudio" 4617d3505c5Sbellard;; 46283fb7adfSbellardDarwin) 46383fb7adfSbellard bsd="yes" 46483fb7adfSbellard darwin="yes" 4651b0f9cc2Saliguori if [ "$cpu" = "x86_64" ] ; then 466a558ee17SJuan Quintela QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS" 4670c439cbfSJuan Quintela LDFLAGS="-arch x86_64 $LDFLAGS" 4681b0f9cc2Saliguori else 469a558ee17SJuan Quintela QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS" 4701b0f9cc2Saliguori fi 471fd677642Sths cocoa="yes" 4720c58ac1cSmalc audio_drv_list="coreaudio" 473c2de5c91Smalc audio_possible_drivers="coreaudio sdl fmod" 4740c439cbfSJuan Quintela LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS" 4757973f21cSJuan Quintela libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu" 476a0b7cf6bSPeter Maydell # Disable attempts to use ObjectiveC features in os/object.h since they 477a0b7cf6bSPeter Maydell # won't work when we're compiling with gcc as a C compiler. 478a0b7cf6bSPeter Maydell QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS" 47983fb7adfSbellard;; 480ec530c81SbellardSunOS) 481ec530c81Sbellard solaris="yes" 4820db4a067SPaolo Bonzini make="${MAKE-gmake}" 4830db4a067SPaolo Bonzini install="${INSTALL-ginstall}" 484fa58948dSBlue Swirl ld="gld" 485e2d8830eSBrad smbd="${SMBD-/usr/sfw/sbin/smbd}" 4860475a5caSths needs_libsunmath="no" 487c2b84fabSths solarisrev=`uname -r | cut -f2 -d.` 488c2b84fabSths if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 4890475a5caSths if test "$solarisrev" -le 9 ; then 4900475a5caSths if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then 4910475a5caSths needs_libsunmath="yes" 492f14bfdf9SJuan Quintela QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS" 493f14bfdf9SJuan Quintela LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS" 494f14bfdf9SJuan Quintela LIBS="-lsunmath $LIBS" 4950475a5caSths else 4960475a5caSths echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without" 4970475a5caSths echo "libsunmath from the Sun Studio compilers tools, due to a lack of" 4980475a5caSths echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86" 4990475a5caSths echo "Studio 11 can be downloaded from www.sun.com." 5000475a5caSths exit 1 5010475a5caSths fi 5020475a5caSths fi 50386b2bd93Sths fi 5046b4d2ba1Sths if test -f /usr/include/sys/soundcard.h ; then 5050c58ac1cSmalc audio_drv_list="oss" 5066b4d2ba1Sths fi 507c2de5c91Smalc audio_possible_drivers="oss sdl" 508d741429aSBlue Swirl# needed for CMSG_ macros in sys/socket.h 509d741429aSBlue Swirl QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS" 510d741429aSBlue Swirl# needed for TIOCWIN* defines in termios.h 511d741429aSBlue Swirl QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS" 512a558ee17SJuan Quintela QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS" 513560d375fSAndreas Färber solarisnetlibs="-lsocket -lnsl -lresolv" 514560d375fSAndreas Färber LIBS="$solarisnetlibs $LIBS" 515560d375fSAndreas Färber libs_qga="$solarisnetlibs $libs_qga" 516ec530c81Sbellard;; 517b29fe3edSmalcAIX) 518b29fe3edSmalc aix="yes" 5190db4a067SPaolo Bonzini make="${MAKE-gmake}" 520b29fe3edSmalc;; 521179cf400SAndreas FärberHaiku) 522179cf400SAndreas Färber haiku="yes" 523179cf400SAndreas Färber QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS" 524179cf400SAndreas Färber LIBS="-lposix_error_mapper -lnetwork $LIBS" 525179cf400SAndreas Färber;; 526fb065187Sbellard*) 5270c58ac1cSmalc audio_drv_list="oss" 528b8e59f18Smalc audio_possible_drivers="oss alsa sdl esd pa" 5295327cf48Sbellard linux="yes" 530831b7825Sths linux_user="yes" 53168063649Sblueswir1 usb="linux" 532af2be207SJan Kiszka kvm="yes" 533af2be207SJan Kiszka vhost_net="yes" 53407f4ddbfSbellard if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 535c2de5c91Smalc audio_possible_drivers="$audio_possible_drivers fmod" 536c9ec1fe4Sbellard fi 537fb065187Sbellard;; 5387d13299dSbellardesac 5397d13299dSbellard 5407d3505c5Sbellardif [ "$bsd" = "yes" ] ; then 541b1a550a0Spbrook if [ "$darwin" != "yes" ] ; then 54268063649Sblueswir1 usb="bsd" 54384778508Sblueswir1 bsd_user="yes" 5447d3505c5Sbellard fi 54508de3949SAndreas Färberfi 5467d3505c5Sbellard 5470db4a067SPaolo Bonzini: ${make=${MAKE-make}} 5480db4a067SPaolo Bonzini: ${install=${INSTALL-install}} 549c886edfbSBlue Swirl: ${python=${PYTHON-python}} 550e2d8830eSBrad: ${smbd=${SMBD-/usr/sbin/smbd}} 5510db4a067SPaolo Bonzini 5523c4a4d0dSPeter Maydell# Default objcc to clang if available, otherwise use CC 5533c4a4d0dSPeter Maydellif has clang; then 5543c4a4d0dSPeter Maydell objcc=clang 5553c4a4d0dSPeter Maydellelse 5563c4a4d0dSPeter Maydell objcc="$cc" 5573c4a4d0dSPeter Maydellfi 5583c4a4d0dSPeter Maydell 5593457a3f8SJuan Quintelaif test "$mingw32" = "yes" ; then 5603457a3f8SJuan Quintela EXESUF=".exe" 561a558ee17SJuan Quintela QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS" 562e94a7936SStefan Weil # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later) 563e94a7936SStefan Weil QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS" 564f7cf5d5bSStefan Weil LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS" 565f7cf5d5bSStefan Weilcat > $TMPC << EOF 566f7cf5d5bSStefan Weilint main(void) { return 0; } 567f7cf5d5bSStefan WeilEOF 568f7cf5d5bSStefan Weil if compile_prog "" "-liberty" ; then 569f7cf5d5bSStefan Weil LIBS="-liberty $LIBS" 570f7cf5d5bSStefan Weil fi 571c5ec15eaSStefan Weil prefix="c:/Program Files/QEMU" 572683035deSPaolo Bonzini mandir="\${prefix}" 573528ae5b8SEduardo Habkost datadir="\${prefix}" 574850da188SEduardo Habkost qemu_docdir="\${prefix}" 575683035deSPaolo Bonzini bindir="\${prefix}" 576683035deSPaolo Bonzini sysconfdir="\${prefix}" 577785c23aeSLuiz Capitulino local_statedir="\${prefix}" 578683035deSPaolo Bonzini confsuffix="" 579368542b8SStefan Hajnoczi libs_qga="-lws2_32 -lwinmm -lpowrprof $libs_qga" 5803457a3f8SJuan Quintelafi 5813457a3f8SJuan Quintela 582487fefdbSAnthony Liguoriwerror="" 58385aa5189Sbellard 5847d13299dSbellardfor opt do 585a46e4035Spbrook optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` 5867d13299dSbellard case "$opt" in 5872efc3265Sbellard --help|-h) show_help=yes 5882efc3265Sbellard ;; 58999123e13SMike Frysinger --version|-V) exec cat $source_path/VERSION 59099123e13SMike Frysinger ;; 591b1a550a0Spbrook --prefix=*) prefix="$optarg" 5927d13299dSbellard ;; 593b1a550a0Spbrook --interp-prefix=*) interp_prefix="$optarg" 59432ce6337Sbellard ;; 595ca4deeb1SPaolo Bonzini --source-path=*) 5967d13299dSbellard ;; 597ac0df51dSaliguori --cross-prefix=*) 5987d13299dSbellard ;; 599ac0df51dSaliguori --cc=*) 6007d13299dSbellard ;; 601b1a550a0Spbrook --host-cc=*) host_cc="$optarg" 60283469015Sbellard ;; 6033c4a4d0dSPeter Maydell --objcc=*) objcc="$optarg" 6043c4a4d0dSPeter Maydell ;; 605b1a550a0Spbrook --make=*) make="$optarg" 6067d13299dSbellard ;; 6076a882643Spbrook --install=*) install="$optarg" 6086a882643Spbrook ;; 609c886edfbSBlue Swirl --python=*) python="$optarg" 610c886edfbSBlue Swirl ;; 6111d728c39SBlue Swirl --gcov=*) gcov_tool="$optarg" 6121d728c39SBlue Swirl ;; 613e2d8830eSBrad --smbd=*) smbd="$optarg" 614e2d8830eSBrad ;; 615e2a2ed06SJuan Quintela --extra-cflags=*) 6167d13299dSbellard ;; 617e2a2ed06SJuan Quintela --extra-ldflags=*) 6187d13299dSbellard ;; 6195bc62e01SGerd Hoffmann --enable-debug-info) 6205bc62e01SGerd Hoffmann ;; 6215bc62e01SGerd Hoffmann --disable-debug-info) 6225bc62e01SGerd Hoffmann ;; 6232ff6b91eSJuan Quintela --cpu=*) 6247d13299dSbellard ;; 625b1a550a0Spbrook --target-list=*) target_list="$optarg" 626de83cd02Sbellard ;; 62774242e0fSPaolo Bonzini --enable-trace-backend=*) trace_backend="$optarg" 62894a420b1SStefan Hajnoczi ;; 62974242e0fSPaolo Bonzini --with-trace-file=*) trace_file="$optarg" 6309410b56cSPrerna Saxena ;; 6317d13299dSbellard --enable-gprof) gprof="yes" 6327d13299dSbellard ;; 6331d728c39SBlue Swirl --enable-gcov) gcov="yes" 6341d728c39SBlue Swirl ;; 63579427693SLoïc Minier --static) 63679427693SLoïc Minier static="yes" 63779427693SLoïc Minier LDFLAGS="-static $LDFLAGS" 63817884d7bSSergei Trofimovich QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS" 63943ce4dfeSbellard ;; 6400b24e75fSPaolo Bonzini --mandir=*) mandir="$optarg" 6410b24e75fSPaolo Bonzini ;; 6420b24e75fSPaolo Bonzini --bindir=*) bindir="$optarg" 6430b24e75fSPaolo Bonzini ;; 6443aa5d2beSAlon Levy --libdir=*) libdir="$optarg" 6453aa5d2beSAlon Levy ;; 6468bf188aaSMichael Tokarev --libexecdir=*) libexecdir="$optarg" 6478bf188aaSMichael Tokarev ;; 6480f94d6daSAlon Levy --includedir=*) includedir="$optarg" 6490f94d6daSAlon Levy ;; 650528ae5b8SEduardo Habkost --datadir=*) datadir="$optarg" 6510b24e75fSPaolo Bonzini ;; 652023d3d67SEduardo Habkost --with-confsuffix=*) confsuffix="$optarg" 653023d3d67SEduardo Habkost ;; 654850da188SEduardo Habkost --docdir=*) qemu_docdir="$optarg" 6550b24e75fSPaolo Bonzini ;; 656ca2fb938SAndre Przywara --sysconfdir=*) sysconfdir="$optarg" 65707381cc1SAnthony Liguori ;; 658785c23aeSLuiz Capitulino --localstatedir=*) local_statedir="$optarg" 659785c23aeSLuiz Capitulino ;; 660785c23aeSLuiz Capitulino --sbindir=*|--sharedstatedir=*|\ 661023ddd74SMax Filippov --oldincludedir=*|--datarootdir=*|--infodir=*|--localedir=*|\ 662023ddd74SMax Filippov --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*) 663023ddd74SMax Filippov # These switches are silently ignored, for compatibility with 664023ddd74SMax Filippov # autoconf-generated configure scripts. This allows QEMU's 665023ddd74SMax Filippov # configure to be used by RPM and similar macros that set 666023ddd74SMax Filippov # lots of directory switches by default. 667023ddd74SMax Filippov ;; 668e2134eb9SGerd Hoffmann --with-system-pixman) pixman="system" 669e2134eb9SGerd Hoffmann ;; 670e2134eb9SGerd Hoffmann --without-system-pixman) pixman="internal" 671e2134eb9SGerd Hoffmann ;; 67274880fe2SRobert Schiele --without-pixman) pixman="none" 67374880fe2SRobert Schiele ;; 67497a847bcSbellard --disable-sdl) sdl="no" 67597a847bcSbellard ;; 676c4198157SJuan Quintela --enable-sdl) sdl="yes" 677c4198157SJuan Quintela ;; 678983eef5aSMeador Inge --disable-virtfs) virtfs="no" 679983eef5aSMeador Inge ;; 680983eef5aSMeador Inge --enable-virtfs) virtfs="yes" 681983eef5aSMeador Inge ;; 682821601eaSJes Sorensen --disable-vnc) vnc="no" 683821601eaSJes Sorensen ;; 684821601eaSJes Sorensen --enable-vnc) vnc="yes" 685821601eaSJes Sorensen ;; 686b1a550a0Spbrook --fmod-lib=*) fmod_lib="$optarg" 687102a52e4Sbellard ;; 688c2de5c91Smalc --fmod-inc=*) fmod_inc="$optarg" 689c2de5c91Smalc ;; 6902f6a1ab0Sblueswir1 --oss-lib=*) oss_lib="$optarg" 6912f6a1ab0Sblueswir1 ;; 6922fa7d3bfSmalc --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` 6930c58ac1cSmalc ;; 6940c58ac1cSmalc --audio-drv-list=*) audio_drv_list="$optarg" 6950c58ac1cSmalc ;; 696eb852011SMarkus Armbruster --block-drv-whitelist=*) block_drv_whitelist=`echo "$optarg" | sed -e 's/,/ /g'` 697eb852011SMarkus Armbruster ;; 698f8393946Saurel32 --enable-debug-tcg) debug_tcg="yes" 699f8393946Saurel32 ;; 700f8393946Saurel32 --disable-debug-tcg) debug_tcg="no" 701f8393946Saurel32 ;; 702f3d08ee6SPaul Brook --enable-debug) 703f3d08ee6SPaul Brook # Enable debugging options that aren't excessively noisy 704f3d08ee6SPaul Brook debug_tcg="yes" 705f3d08ee6SPaul Brook debug="yes" 706f3d08ee6SPaul Brook strip_opt="no" 707f3d08ee6SPaul Brook ;; 70803b4fe7dSaliguori --enable-sparse) sparse="yes" 70903b4fe7dSaliguori ;; 71003b4fe7dSaliguori --disable-sparse) sparse="no" 71103b4fe7dSaliguori ;; 7121625af87Saliguori --disable-strip) strip_opt="no" 7131625af87Saliguori ;; 7148d5d2d4cSths --disable-vnc-tls) vnc_tls="no" 7158d5d2d4cSths ;; 7161be10ad2SJuan Quintela --enable-vnc-tls) vnc_tls="yes" 7171be10ad2SJuan Quintela ;; 7182f9606b3Saliguori --disable-vnc-sasl) vnc_sasl="no" 7192f9606b3Saliguori ;; 720ea784e3bSJuan Quintela --enable-vnc-sasl) vnc_sasl="yes" 721ea784e3bSJuan Quintela ;; 7222f6f5c7aSCorentin Chary --disable-vnc-jpeg) vnc_jpeg="no" 7232f6f5c7aSCorentin Chary ;; 7242f6f5c7aSCorentin Chary --enable-vnc-jpeg) vnc_jpeg="yes" 7252f6f5c7aSCorentin Chary ;; 726efe556adSCorentin Chary --disable-vnc-png) vnc_png="no" 727efe556adSCorentin Chary ;; 728efe556adSCorentin Chary --enable-vnc-png) vnc_png="yes" 729efe556adSCorentin Chary ;; 7307536ee4bSTim Hardeck --disable-vnc-ws) vnc_ws="no" 7317536ee4bSTim Hardeck ;; 7327536ee4bSTim Hardeck --enable-vnc-ws) vnc_ws="yes" 7337536ee4bSTim Hardeck ;; 734443f1376Sbellard --disable-slirp) slirp="no" 735c20709aaSbellard ;; 736ee682d27SStefan Weil --disable-uuid) uuid="no" 737ee682d27SStefan Weil ;; 738ee682d27SStefan Weil --enable-uuid) uuid="yes" 739ee682d27SStefan Weil ;; 740e0e6c8c0Saliguori --disable-vde) vde="no" 7418a16d273Sths ;; 742dfb278bdSJuan Quintela --enable-vde) vde="yes" 743dfb278bdSJuan Quintela ;; 744e37630caSaliguori --disable-xen) xen="no" 745e37630caSaliguori ;; 746fc321b4bSJuan Quintela --enable-xen) xen="yes" 747fc321b4bSJuan Quintela ;; 748eb6fda0fSAnthony PERARD --disable-xen-pci-passthrough) xen_pci_passthrough="no" 749eb6fda0fSAnthony PERARD ;; 750eb6fda0fSAnthony PERARD --enable-xen-pci-passthrough) xen_pci_passthrough="yes" 751eb6fda0fSAnthony PERARD ;; 7522e4d9fb1Saurel32 --disable-brlapi) brlapi="no" 7532e4d9fb1Saurel32 ;; 7544ffcedb6SJuan Quintela --enable-brlapi) brlapi="yes" 7554ffcedb6SJuan Quintela ;; 756fb599c9aSbalrog --disable-bluez) bluez="no" 757fb599c9aSbalrog ;; 758a20a6f46SJuan Quintela --enable-bluez) bluez="yes" 759a20a6f46SJuan Quintela ;; 7607ba1e619Saliguori --disable-kvm) kvm="no" 7617ba1e619Saliguori ;; 762b31a0277SJuan Quintela --enable-kvm) kvm="yes" 763b31a0277SJuan Quintela ;; 7649195b2c2SStefan Weil --disable-tcg-interpreter) tcg_interpreter="no" 7659195b2c2SStefan Weil ;; 7669195b2c2SStefan Weil --enable-tcg-interpreter) tcg_interpreter="yes" 7679195b2c2SStefan Weil ;; 76847e98658SCorey Bryant --disable-cap-ng) cap_ng="no" 76947e98658SCorey Bryant ;; 77047e98658SCorey Bryant --enable-cap-ng) cap_ng="yes" 77147e98658SCorey Bryant ;; 772cd4ec0b4SGerd Hoffmann --disable-spice) spice="no" 773cd4ec0b4SGerd Hoffmann ;; 774cd4ec0b4SGerd Hoffmann --enable-spice) spice="yes" 775cd4ec0b4SGerd Hoffmann ;; 776c589b249SRonnie Sahlberg --disable-libiscsi) libiscsi="no" 777c589b249SRonnie Sahlberg ;; 778c589b249SRonnie Sahlberg --enable-libiscsi) libiscsi="yes" 779c589b249SRonnie Sahlberg ;; 78005c2a3e7Sbellard --enable-profiler) profiler="yes" 78105c2a3e7Sbellard ;; 78214821030SPavel Borzenkov --disable-cocoa) cocoa="no" 78314821030SPavel Borzenkov ;; 784c2de5c91Smalc --enable-cocoa) 785c2de5c91Smalc cocoa="yes" ; 786c2de5c91Smalc sdl="no" ; 787c2de5c91Smalc audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`" 7885b0753e0Sbellard ;; 789cad25d69Spbrook --disable-system) softmmu="no" 7900a8e90f4Spbrook ;; 791cad25d69Spbrook --enable-system) softmmu="yes" 7920a8e90f4Spbrook ;; 7930953a80fSZachary Amsden --disable-user) 7940953a80fSZachary Amsden linux_user="no" ; 7950953a80fSZachary Amsden bsd_user="no" ; 7960953a80fSZachary Amsden ;; 7970953a80fSZachary Amsden --enable-user) ;; 798831b7825Sths --disable-linux-user) linux_user="no" 7990a8e90f4Spbrook ;; 800831b7825Sths --enable-linux-user) linux_user="yes" 801831b7825Sths ;; 80284778508Sblueswir1 --disable-bsd-user) bsd_user="no" 80384778508Sblueswir1 ;; 80484778508Sblueswir1 --enable-bsd-user) bsd_user="yes" 80584778508Sblueswir1 ;; 806379f6698SPaul Brook --enable-guest-base) guest_base="yes" 807379f6698SPaul Brook ;; 808379f6698SPaul Brook --disable-guest-base) guest_base="no" 809379f6698SPaul Brook ;; 81040d6444eSAvi Kivity --enable-pie) pie="yes" 81134005a00SKirill A. Shutemov ;; 81240d6444eSAvi Kivity --disable-pie) pie="no" 81334005a00SKirill A. Shutemov ;; 814c5937220Spbrook --enable-uname-release=*) uname_release="$optarg" 815c5937220Spbrook ;; 81685aa5189Sbellard --enable-werror) werror="yes" 81785aa5189Sbellard ;; 81885aa5189Sbellard --disable-werror) werror="no" 81985aa5189Sbellard ;; 8204d3b6f6eSbalrog --disable-curses) curses="no" 8214d3b6f6eSbalrog ;; 822c584a6d0SJuan Quintela --enable-curses) curses="yes" 823c584a6d0SJuan Quintela ;; 824769ce76dSAlexander Graf --disable-curl) curl="no" 825769ce76dSAlexander Graf ;; 826788c8196SJuan Quintela --enable-curl) curl="yes" 827788c8196SJuan Quintela ;; 8282df87df7SJuan Quintela --disable-fdt) fdt="no" 8292df87df7SJuan Quintela ;; 8302df87df7SJuan Quintela --enable-fdt) fdt="yes" 8312df87df7SJuan Quintela ;; 832bd0c5661Spbrook --disable-nptl) nptl="no" 833bd0c5661Spbrook ;; 834b0a47e79SJuan Quintela --enable-nptl) nptl="yes" 835b0a47e79SJuan Quintela ;; 8368ff9cbf7Smalc --enable-mixemu) mixemu="yes" 8378ff9cbf7Smalc ;; 8385c6c3a6cSChristoph Hellwig --disable-linux-aio) linux_aio="no" 8395c6c3a6cSChristoph Hellwig ;; 8405c6c3a6cSChristoph Hellwig --enable-linux-aio) linux_aio="yes" 8415c6c3a6cSChristoph Hellwig ;; 842758e8e38SVenkateswararao Jujjuri (JV) --disable-attr) attr="no" 843758e8e38SVenkateswararao Jujjuri (JV) ;; 844758e8e38SVenkateswararao Jujjuri (JV) --enable-attr) attr="yes" 845758e8e38SVenkateswararao Jujjuri (JV) ;; 84677755340Sths --disable-blobs) blobs="no" 84777755340Sths ;; 8484a19f1ecSpbrook --with-pkgversion=*) pkgversion=" ($optarg)" 8494a19f1ecSpbrook ;; 850519175a2SAlex Barcelo --with-coroutine=*) coroutine="$optarg" 851519175a2SAlex Barcelo ;; 852a25dba17SJuan Quintela --disable-docs) docs="no" 85370ec5dc0SAnthony Liguori ;; 854a25dba17SJuan Quintela --enable-docs) docs="yes" 85583a3ab8bSJuan Quintela ;; 856d5970055SMichael S. Tsirkin --disable-vhost-net) vhost_net="no" 857d5970055SMichael S. Tsirkin ;; 858d5970055SMichael S. Tsirkin --enable-vhost-net) vhost_net="yes" 859d5970055SMichael S. Tsirkin ;; 86020ff075bSMichael Walle --disable-opengl) opengl="no" 86120ff075bSMichael Walle ;; 86220ff075bSMichael Walle --enable-opengl) opengl="yes" 86320ff075bSMichael Walle ;; 864f27aaf4bSChristian Brunner --disable-rbd) rbd="no" 865f27aaf4bSChristian Brunner ;; 866f27aaf4bSChristian Brunner --enable-rbd) rbd="yes" 867f27aaf4bSChristian Brunner ;; 8688c84cf11SSergei Trofimovich --disable-xfsctl) xfs="no" 8698c84cf11SSergei Trofimovich ;; 8708c84cf11SSergei Trofimovich --enable-xfsctl) xfs="yes" 8718c84cf11SSergei Trofimovich ;; 872111a38b0SRobert Relyea --disable-smartcard-nss) smartcard_nss="no" 873111a38b0SRobert Relyea ;; 874111a38b0SRobert Relyea --enable-smartcard-nss) smartcard_nss="yes" 875111a38b0SRobert Relyea ;; 87669354a83SHans de Goede --disable-usb-redir) usb_redir="no" 87769354a83SHans de Goede ;; 87869354a83SHans de Goede --enable-usb-redir) usb_redir="yes" 87969354a83SHans de Goede ;; 8801ece9905SAlon Levy --disable-zlib-test) zlib="no" 8811ece9905SAlon Levy ;; 882d138cee9SMichael Roth --enable-guest-agent) guest_agent="yes" 883d138cee9SMichael Roth ;; 884d138cee9SMichael Roth --disable-guest-agent) guest_agent="no" 885d138cee9SMichael Roth ;; 8864b1c11fdSDaniel P. Berrange --enable-tools) want_tools="yes" 8874b1c11fdSDaniel P. Berrange ;; 8884b1c11fdSDaniel P. Berrange --disable-tools) want_tools="no" 8894b1c11fdSDaniel P. Berrange ;; 890f794573eSEduardo Otubo --enable-seccomp) seccomp="yes" 891f794573eSEduardo Otubo ;; 892f794573eSEduardo Otubo --disable-seccomp) seccomp="no" 893f794573eSEduardo Otubo ;; 894eb100396SBharata B Rao --disable-glusterfs) glusterfs="no" 895eb100396SBharata B Rao ;; 896eb100396SBharata B Rao --enable-glusterfs) glusterfs="yes" 897eb100396SBharata B Rao ;; 898583f6e7bSStefan Hajnoczi --disable-virtio-blk-data-plane) virtio_blk_data_plane="no" 899583f6e7bSStefan Hajnoczi ;; 900583f6e7bSStefan Hajnoczi --enable-virtio-blk-data-plane) virtio_blk_data_plane="yes" 901583f6e7bSStefan Hajnoczi ;; 902a4ccabcfSAnthony Liguori --disable-gtk) gtk="no" 903a4ccabcfSAnthony Liguori ;; 904a4ccabcfSAnthony Liguori --enable-gtk) gtk="yes" 905a4ccabcfSAnthony Liguori ;; 906528de90aSDaniel P. Berrange --with-gtkabi=*) gtkabi="$optarg" 907528de90aSDaniel P. Berrange ;; 9087f1559c6Sbalrog *) echo "ERROR: unknown option $opt"; show_help="yes" 9097f1559c6Sbalrog ;; 9107d13299dSbellard esac 9117d13299dSbellarddone 9127d13299dSbellard 91340293e58Sbellardcase "$cpu" in 9149b9c37c3SRichard Henderson sparc) 9150c439cbfSJuan Quintela LDFLAGS="-m32 $LDFLAGS" 9169b9c37c3SRichard Henderson QEMU_CFLAGS="-m32 -mcpu=ultrasparc $QEMU_CFLAGS" 9173142255cSblueswir1 ;; 918ed968ff1SJuan Quintela sparc64) 9190c439cbfSJuan Quintela LDFLAGS="-m64 $LDFLAGS" 9209b9c37c3SRichard Henderson QEMU_CFLAGS="-m64 -mcpu=ultrasparc $QEMU_CFLAGS" 9213142255cSblueswir1 ;; 92276d83bdeSths s390) 92328d7cc49SRichard Henderson QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS" 92428d7cc49SRichard Henderson LDFLAGS="-m31 $LDFLAGS" 92528d7cc49SRichard Henderson ;; 92628d7cc49SRichard Henderson s390x) 92728d7cc49SRichard Henderson QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS" 92828d7cc49SRichard Henderson LDFLAGS="-m64 $LDFLAGS" 92976d83bdeSths ;; 93040293e58Sbellard i386) 931a558ee17SJuan Quintela QEMU_CFLAGS="-m32 $QEMU_CFLAGS" 9320c439cbfSJuan Quintela LDFLAGS="-m32 $LDFLAGS" 9332b2e59e6SPaolo Bonzini cc_i386='$(CC) -m32' 93440293e58Sbellard ;; 93540293e58Sbellard x86_64) 936a558ee17SJuan Quintela QEMU_CFLAGS="-m64 $QEMU_CFLAGS" 9370c439cbfSJuan Quintela LDFLAGS="-m64 $LDFLAGS" 9382b2e59e6SPaolo Bonzini cc_i386='$(CC) -m32' 939379f6698SPaul Brook ;; 94030163d89SPeter Maydell # No special flags required for other host CPUs 9413142255cSblueswir1esac 9423142255cSblueswir1 94360e0df25SPeter Maydelldefault_target_list="" 94460e0df25SPeter Maydell 94560e0df25SPeter Maydell# these targets are portable 94660e0df25SPeter Maydellif [ "$softmmu" = "yes" ] ; then 94760e0df25SPeter Maydell default_target_list="\ 94860e0df25SPeter Maydelli386-softmmu \ 94960e0df25SPeter Maydellx86_64-softmmu \ 95027cdad67SRichard Hendersonalpha-softmmu \ 95160e0df25SPeter Maydellarm-softmmu \ 95260e0df25SPeter Maydellcris-softmmu \ 95360e0df25SPeter Maydelllm32-softmmu \ 95460e0df25SPeter Maydellm68k-softmmu \ 95560e0df25SPeter Maydellmicroblaze-softmmu \ 95660e0df25SPeter Maydellmicroblazeel-softmmu \ 95760e0df25SPeter Maydellmips-softmmu \ 95860e0df25SPeter Maydellmipsel-softmmu \ 95960e0df25SPeter Maydellmips64-softmmu \ 96060e0df25SPeter Maydellmips64el-softmmu \ 961e67db06eSJia Liuor32-softmmu \ 96260e0df25SPeter Maydellppc-softmmu \ 96360e0df25SPeter Maydellppcemb-softmmu \ 96460e0df25SPeter Maydellppc64-softmmu \ 96560e0df25SPeter Maydellsh4-softmmu \ 96660e0df25SPeter Maydellsh4eb-softmmu \ 96760e0df25SPeter Maydellsparc-softmmu \ 96860e0df25SPeter Maydellsparc64-softmmu \ 9690f3301d4SAlexander Grafs390x-softmmu \ 970cfa550c6SMax Filippovxtensa-softmmu \ 971cfa550c6SMax Filippovxtensaeb-softmmu \ 9724f23a1e6SGuan Xuetaounicore32-softmmu \ 97360e0df25SPeter Maydell" 97460e0df25SPeter Maydellfi 97560e0df25SPeter Maydell# the following are Linux specific 97660e0df25SPeter Maydellif [ "$linux_user" = "yes" ] ; then 97760e0df25SPeter Maydell default_target_list="${default_target_list}\ 97860e0df25SPeter Maydelli386-linux-user \ 97960e0df25SPeter Maydellx86_64-linux-user \ 98060e0df25SPeter Maydellalpha-linux-user \ 98160e0df25SPeter Maydellarm-linux-user \ 98260e0df25SPeter Maydellarmeb-linux-user \ 98360e0df25SPeter Maydellcris-linux-user \ 98460e0df25SPeter Maydellm68k-linux-user \ 98560e0df25SPeter Maydellmicroblaze-linux-user \ 98660e0df25SPeter Maydellmicroblazeel-linux-user \ 98760e0df25SPeter Maydellmips-linux-user \ 98860e0df25SPeter Maydellmipsel-linux-user \ 98951cd14d3SRichard Hendersonmips64-linux-user \ 99051cd14d3SRichard Hendersonmips64el-linux-user \ 99151cd14d3SRichard Hendersonmipsn32-linux-user \ 99251cd14d3SRichard Hendersonmipsn32el-linux-user \ 993d962783eSJia Liuor32-linux-user \ 99460e0df25SPeter Maydellppc-linux-user \ 99560e0df25SPeter Maydellppc64-linux-user \ 99660e0df25SPeter Maydellppc64abi32-linux-user \ 99760e0df25SPeter Maydellsh4-linux-user \ 99860e0df25SPeter Maydellsh4eb-linux-user \ 99960e0df25SPeter Maydellsparc-linux-user \ 100060e0df25SPeter Maydellsparc64-linux-user \ 100160e0df25SPeter Maydellsparc32plus-linux-user \ 100260e0df25SPeter Maydellunicore32-linux-user \ 10030f3301d4SAlexander Grafs390x-linux-user \ 100460e0df25SPeter Maydell" 100560e0df25SPeter Maydellfi 100660e0df25SPeter Maydell# the following are BSD specific 100760e0df25SPeter Maydellif [ "$bsd_user" = "yes" ] ; then 100860e0df25SPeter Maydell default_target_list="${default_target_list}\ 100960e0df25SPeter Maydelli386-bsd-user \ 101060e0df25SPeter Maydellx86_64-bsd-user \ 101160e0df25SPeter Maydellsparc-bsd-user \ 101260e0df25SPeter Maydellsparc64-bsd-user \ 101360e0df25SPeter Maydell" 101460e0df25SPeter Maydellfi 101560e0df25SPeter Maydell 1016af5db58eSpbrookif test x"$show_help" = x"yes" ; then 1017af5db58eSpbrookcat << EOF 1018af5db58eSpbrook 1019af5db58eSpbrookUsage: configure [options] 1020af5db58eSpbrookOptions: [defaults in brackets after descriptions] 1021af5db58eSpbrook 1022af5db58eSpbrookEOF 1023af5db58eSpbrookecho "Standard options:" 1024af5db58eSpbrookecho " --help print this message" 1025af5db58eSpbrookecho " --prefix=PREFIX install in PREFIX [$prefix]" 1026af5db58eSpbrookecho " --interp-prefix=PREFIX where to find shared libraries, etc." 1027af5db58eSpbrookecho " use %M for cpu name [$interp_prefix]" 102860e0df25SPeter Maydellecho " --target-list=LIST set target list (default: build everything)" 102960e0df25SPeter Maydellecho "Available targets: $default_target_list" | \ 103060e0df25SPeter Maydell fold -s -w 53 | sed -e 's/^/ /' 1031af5db58eSpbrookecho "" 1032af5db58eSpbrookecho "Advanced options (experts only):" 1033af5db58eSpbrookecho " --source-path=PATH path of source code [$source_path]" 1034af5db58eSpbrookecho " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" 1035af5db58eSpbrookecho " --cc=CC use C compiler CC [$cc]" 10360bfe8cc0SPaolo Bonziniecho " --host-cc=CC use C compiler CC [$host_cc] for code run at" 10370bfe8cc0SPaolo Bonziniecho " build time" 10383c4a4d0dSPeter Maydellecho " --objcc=OBJCC use Objective-C compiler OBJCC [$objcc]" 1039a558ee17SJuan Quintelaecho " --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS" 1040e3fc14c3SJan Kiszkaecho " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS" 1041af5db58eSpbrookecho " --make=MAKE use specified make [$make]" 10426a882643Spbrookecho " --install=INSTALL use specified install [$install]" 1043c886edfbSBlue Swirlecho " --python=PYTHON use specified python [$python]" 1044e2d8830eSBradecho " --smbd=SMBD use specified smbd [$smbd]" 1045af5db58eSpbrookecho " --static enable static build [$static]" 10460b24e75fSPaolo Bonziniecho " --mandir=PATH install man pages in PATH" 1047023d3d67SEduardo Habkostecho " --datadir=PATH install firmware in PATH$confsuffix" 1048023d3d67SEduardo Habkostecho " --docdir=PATH install documentation in PATH$confsuffix" 10490b24e75fSPaolo Bonziniecho " --bindir=PATH install binaries in PATH" 1050023d3d67SEduardo Habkostecho " --sysconfdir=PATH install config in PATH$confsuffix" 1051785c23aeSLuiz Capitulinoecho " --localstatedir=PATH install local state in PATH" 10522ae4748fSStefan Weilecho " --with-confsuffix=SUFFIX suffix for QEMU data inside datadir and sysconfdir [$confsuffix]" 1053f8393946Saurel32echo " --enable-debug-tcg enable TCG debugging" 1054f8393946Saurel32echo " --disable-debug-tcg disable TCG debugging (default)" 105509695a4aSStefan Weilecho " --enable-debug enable common debug build options" 1056890b1658Saliguoriecho " --enable-sparse enable sparse checker" 1057890b1658Saliguoriecho " --disable-sparse disable sparse checker (default)" 10581625af87Saliguoriecho " --disable-strip disable stripping binaries" 105985aa5189Sbellardecho " --disable-werror disable compilation abort on warning" 1060fe8f78e4Sbalrogecho " --disable-sdl disable SDL" 1061c4198157SJuan Quintelaecho " --enable-sdl enable SDL" 1062ab400449SHu Taoecho " --disable-gtk disable gtk UI" 1063ab400449SHu Taoecho " --enable-gtk enable gtk UI" 1064983eef5aSMeador Ingeecho " --disable-virtfs disable VirtFS" 1065983eef5aSMeador Ingeecho " --enable-virtfs enable VirtFS" 1066821601eaSJes Sorensenecho " --disable-vnc disable VNC" 1067821601eaSJes Sorensenecho " --enable-vnc enable VNC" 106814821030SPavel Borzenkovecho " --disable-cocoa disable Cocoa (Mac OS X only)" 106914821030SPavel Borzenkovecho " --enable-cocoa enable Cocoa (default on Mac OS X)" 1070c2de5c91Smalcecho " --audio-drv-list=LIST set audio drivers list:" 1071c2de5c91Smalcecho " Available drivers: $audio_possible_drivers" 10724c9b53e3Smalcecho " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]" 10734c9b53e3Smalcecho " Available cards: $audio_possible_cards" 1074eb852011SMarkus Armbrusterecho " --block-drv-whitelist=L set block driver whitelist" 1075eb852011SMarkus Armbrusterecho " (affects only QEMU, not qemu-img)" 10768ff9cbf7Smalcecho " --enable-mixemu enable mixer emulation" 1077e37630caSaliguoriecho " --disable-xen disable xen backend driver support" 1078fc321b4bSJuan Quintelaecho " --enable-xen enable xen backend driver support" 1079eb6fda0fSAnthony PERARDecho " --disable-xen-pci-passthrough" 1080eb6fda0fSAnthony PERARDecho " --enable-xen-pci-passthrough" 10812e4d9fb1Saurel32echo " --disable-brlapi disable BrlAPI" 10824ffcedb6SJuan Quintelaecho " --enable-brlapi enable BrlAPI" 10838d5d2d4cSthsecho " --disable-vnc-tls disable TLS encryption for VNC server" 10841be10ad2SJuan Quintelaecho " --enable-vnc-tls enable TLS encryption for VNC server" 10852f9606b3Saliguoriecho " --disable-vnc-sasl disable SASL encryption for VNC server" 1086ea784e3bSJuan Quintelaecho " --enable-vnc-sasl enable SASL encryption for VNC server" 10872f6f5c7aSCorentin Charyecho " --disable-vnc-jpeg disable JPEG lossy compression for VNC server" 10882f6f5c7aSCorentin Charyecho " --enable-vnc-jpeg enable JPEG lossy compression for VNC server" 108996763cf9SCorentin Charyecho " --disable-vnc-png disable PNG compression for VNC server (default)" 1090efe556adSCorentin Charyecho " --enable-vnc-png enable PNG compression for VNC server" 10917536ee4bSTim Hardeckecho " --disable-vnc-ws disable Websockets support for VNC server" 10927536ee4bSTim Hardeckecho " --enable-vnc-ws enable Websockets support for VNC server" 1093af896aaaSpbrookecho " --disable-curses disable curses output" 1094c584a6d0SJuan Quintelaecho " --enable-curses enable curses output" 1095769ce76dSAlexander Grafecho " --disable-curl disable curl connectivity" 1096788c8196SJuan Quintelaecho " --enable-curl enable curl connectivity" 10972df87df7SJuan Quintelaecho " --disable-fdt disable fdt device tree" 10982df87df7SJuan Quintelaecho " --enable-fdt enable fdt device tree" 1099fb599c9aSbalrogecho " --disable-bluez disable bluez stack connectivity" 1100a20a6f46SJuan Quintelaecho " --enable-bluez enable bluez stack connectivity" 11016093d3d4SPeter Maydellecho " --disable-slirp disable SLIRP userspace network connectivity" 11027ba1e619Saliguoriecho " --disable-kvm disable KVM acceleration support" 1103b31a0277SJuan Quintelaecho " --enable-kvm enable KVM acceleration support" 11049195b2c2SStefan Weilecho " --enable-tcg-interpreter enable TCG with bytecode interpreter (TCI)" 1105bd0c5661Spbrookecho " --disable-nptl disable usermode NPTL support" 1106e5934d33SAndre Przywaraecho " --enable-nptl enable usermode NPTL support" 1107af5db58eSpbrookecho " --enable-system enable all system emulation targets" 1108af5db58eSpbrookecho " --disable-system disable all system emulation targets" 11090953a80fSZachary Amsdenecho " --enable-user enable supported user emulation targets" 11100953a80fSZachary Amsdenecho " --disable-user disable all user emulation targets" 1111831b7825Sthsecho " --enable-linux-user enable all linux usermode emulation targets" 1112831b7825Sthsecho " --disable-linux-user disable all linux usermode emulation targets" 111384778508Sblueswir1echo " --enable-bsd-user enable all BSD usermode emulation targets" 111484778508Sblueswir1echo " --disable-bsd-user disable all BSD usermode emulation targets" 1115379f6698SPaul Brookecho " --enable-guest-base enable GUEST_BASE support for usermode" 1116379f6698SPaul Brookecho " emulation targets" 1117379f6698SPaul Brookecho " --disable-guest-base disable GUEST_BASE support" 111840d6444eSAvi Kivityecho " --enable-pie build Position Independent Executables" 111940d6444eSAvi Kivityecho " --disable-pie do not build Position Independent Executables" 1120af5db58eSpbrookecho " --fmod-lib path to FMOD library" 1121af5db58eSpbrookecho " --fmod-inc path to FMOD includes" 11222f6a1ab0Sblueswir1echo " --oss-lib path to OSS library" 1123c5937220Spbrookecho " --enable-uname-release=R Return R for uname -r in usermode emulation" 1124235e510cS陳韋任echo " --cpu=CPU Build for host CPU [$cpu]" 1125ee682d27SStefan Weilecho " --disable-uuid disable uuid support" 1126ee682d27SStefan Weilecho " --enable-uuid enable uuid support" 1127e0e6c8c0Saliguoriecho " --disable-vde disable support for vde network" 1128dfb278bdSJuan Quintelaecho " --enable-vde enable support for vde network" 11295c6c3a6cSChristoph Hellwigecho " --disable-linux-aio disable Linux AIO support" 11305c6c3a6cSChristoph Hellwigecho " --enable-linux-aio enable Linux AIO support" 113147e98658SCorey Bryantecho " --disable-cap-ng disable libcap-ng support" 113247e98658SCorey Bryantecho " --enable-cap-ng enable libcap-ng support" 1133758e8e38SVenkateswararao Jujjuri (JV)echo " --disable-attr disables attr and xattr support" 1134758e8e38SVenkateswararao Jujjuri (JV)echo " --enable-attr enable attr and xattr support" 113577755340Sthsecho " --disable-blobs disable installing provided firmware blobs" 1136d2807bc9SDirk Ullrichecho " --enable-docs enable documentation build" 1137d2807bc9SDirk Ullrichecho " --disable-docs disable documentation build" 1138d5970055SMichael S. Tsirkinecho " --disable-vhost-net disable vhost-net acceleration support" 1139d5970055SMichael S. Tsirkinecho " --enable-vhost-net enable vhost-net acceleration support" 1140320fba2aSFabien Chouteauecho " --enable-trace-backend=B Set trace backend" 1141650ab98dSLluís Vilanovaecho " Available backends:" $($python "$source_path"/scripts/tracetool.py --list-backends) 114274242e0fSPaolo Bonziniecho " --with-trace-file=NAME Full PATH,NAME of file to store traces" 11439410b56cSPrerna Saxenaecho " Default:trace-<pid>" 1144cd4ec0b4SGerd Hoffmannecho " --disable-spice disable spice" 1145cd4ec0b4SGerd Hoffmannecho " --enable-spice enable spice" 1146f27aaf4bSChristian Brunnerecho " --enable-rbd enable building the rados block device (rbd)" 1147c589b249SRonnie Sahlbergecho " --disable-libiscsi disable iscsi support" 1148c589b249SRonnie Sahlbergecho " --enable-libiscsi enable iscsi support" 1149111a38b0SRobert Relyeaecho " --disable-smartcard-nss disable smartcard nss support" 1150111a38b0SRobert Relyeaecho " --enable-smartcard-nss enable smartcard nss support" 115169354a83SHans de Goedeecho " --disable-usb-redir disable usb network redirection support" 115269354a83SHans de Goedeecho " --enable-usb-redir enable usb network redirection support" 1153d138cee9SMichael Rothecho " --disable-guest-agent disable building of the QEMU Guest Agent" 1154d138cee9SMichael Rothecho " --enable-guest-agent enable building of the QEMU Guest Agent" 1155f794573eSEduardo Otuboecho " --disable-seccomp disable seccomp support" 1156f794573eSEduardo Otuboecho " --enable-seccomp enables seccomp support" 1157519175a2SAlex Barceloecho " --with-coroutine=BACKEND coroutine backend. Supported options:" 1158fe91bfa8SAlex Barceloecho " gthread, ucontext, sigaltstack, windows" 1159eb100396SBharata B Raoecho " --enable-glusterfs enable GlusterFS backend" 1160eb100396SBharata B Raoecho " --disable-glusterfs disable GlusterFS backend" 11611d728c39SBlue Swirlecho " --enable-gcov enable test coverage analysis with gcov" 11621d728c39SBlue Swirlecho " --gcov=GCOV use specified gcov [$gcov_tool]" 1163af5db58eSpbrookecho "" 11645bf08934Sthsecho "NOTE: The object files are built at the place where configure is launched" 1165af5db58eSpbrookexit 1 1166af5db58eSpbrookfi 1167af5db58eSpbrook 1168359bc95dSPeter Maydell# Now we have handled --enable-tcg-interpreter and know we're not just 1169359bc95dSPeter Maydell# printing the help message, bail out if the host CPU isn't supported. 1170359bc95dSPeter Maydellif test "$ARCH" = "unknown"; then 1171359bc95dSPeter Maydell if test "$tcg_interpreter" = "yes" ; then 1172359bc95dSPeter Maydell echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)" 1173359bc95dSPeter Maydell ARCH=tci 1174359bc95dSPeter Maydell else 1175359bc95dSPeter Maydell echo "Unsupported CPU = $cpu, try --enable-tcg-interpreter" 1176359bc95dSPeter Maydell exit 1 1177359bc95dSPeter Maydell fi 1178359bc95dSPeter Maydellfi 1179359bc95dSPeter Maydell 11808d05095cSPaolo Bonzini# check that the C compiler works. 11818d05095cSPaolo Bonzinicat > $TMPC <<EOF 118275cafad7SStefan Weilint main(void) { return 0; } 11838d05095cSPaolo BonziniEOF 11848d05095cSPaolo Bonzini 11858d05095cSPaolo Bonziniif compile_object ; then 11868d05095cSPaolo Bonzini : C compiler works ok 11878d05095cSPaolo Bonzinielse 11888d05095cSPaolo Bonzini echo "ERROR: \"$cc\" either does not exist or does not work" 11898d05095cSPaolo Bonzini exit 1 11908d05095cSPaolo Bonzinifi 11918d05095cSPaolo Bonzini 1192417c9d72SAlexander Graf# Consult white-list to determine whether to enable werror 1193417c9d72SAlexander Graf# by default. Only enable by default for git builds 1194417c9d72SAlexander Grafz_version=`cut -f3 -d. $source_path/VERSION` 1195417c9d72SAlexander Graf 1196417c9d72SAlexander Grafif test -z "$werror" ; then 11976c8fec83SAndreas Färber if test -d "$source_path/.git" -a \ 1198417c9d72SAlexander Graf "$linux" = "yes" ; then 1199417c9d72SAlexander Graf werror="yes" 1200417c9d72SAlexander Graf else 1201417c9d72SAlexander Graf werror="no" 1202417c9d72SAlexander Graf fi 1203417c9d72SAlexander Graffi 1204417c9d72SAlexander Graf 12058d05095cSPaolo Bonzinigcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits" 12068d05095cSPaolo Bonzinigcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags" 12078d05095cSPaolo Bonzinigcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags" 1208f9188227SMike Frysingergcc_flags="-fstack-protector-all -Wendif-labels $gcc_flags" 1209c1556a81SPeter Maydellgcc_flags="-Wno-initializer-overrides $gcc_flags" 12106ca026cbSPeter Maydell# Note that we do not add -Werror to gcc_flags here, because that would 12116ca026cbSPeter Maydell# enable it for all configure tests. If a configure test failed due 12126ca026cbSPeter Maydell# to -Werror this would just silently disable some features, 12136ca026cbSPeter Maydell# so it's too error prone. 12148d05095cSPaolo Bonzinicat > $TMPC << EOF 12158d05095cSPaolo Bonziniint main(void) { return 0; } 12168d05095cSPaolo BonziniEOF 12178d05095cSPaolo Bonzinifor flag in $gcc_flags; do 1218a1d29d6cSPeter Maydell # Use the positive sense of the flag when testing for -Wno-wombat 1219a1d29d6cSPeter Maydell # support (gcc will happily accept the -Wno- form of unknown 1220a1d29d6cSPeter Maydell # warning options). 1221a1d29d6cSPeter Maydell optflag="$(echo $flag | sed -e 's/^-Wno-/-W/')" 1222a1d29d6cSPeter Maydell if compile_prog "-Werror $optflag" "" ; then 12238d05095cSPaolo Bonzini QEMU_CFLAGS="$QEMU_CFLAGS $flag" 12248d05095cSPaolo Bonzini fi 12258d05095cSPaolo Bonzinidone 12268d05095cSPaolo Bonzini 1227cbdd1999SPaolo Bonzini# Workaround for http://gcc.gnu.org/PR55489. Happens with -fPIE/-fPIC and 1228cbdd1999SPaolo Bonzini# large functions that use global variables. The bug is in all releases of 1229cbdd1999SPaolo Bonzini# GCC, but it became particularly acute in 4.6.x and 4.7.x. It is fixed in 1230cbdd1999SPaolo Bonzini# 4.7.3 and 4.8.0. We should be able to delete this at the end of 2013. 1231cbdd1999SPaolo Bonzinicat > $TMPC << EOF 1232cbdd1999SPaolo Bonzini#if __GNUC__ == 4 && (__GNUC_MINOR__ == 6 || (__GNUC_MINOR__ == 7 && __GNUC_PATCHLEVEL__ <= 2)) 1233cbdd1999SPaolo Bonziniint main(void) { return 0; } 1234cbdd1999SPaolo Bonzini#else 1235cbdd1999SPaolo Bonzini#error No bug in this compiler. 1236cbdd1999SPaolo Bonzini#endif 1237cbdd1999SPaolo BonziniEOF 1238cbdd1999SPaolo Bonziniif compile_prog "-Werror -fno-gcse" "" ; then 1239cbdd1999SPaolo Bonzini TRANSLATE_OPT_CFLAGS=-fno-gcse 1240cbdd1999SPaolo Bonzinifi 1241cbdd1999SPaolo Bonzini 124240d6444eSAvi Kivityif test "$static" = "yes" ; then 124340d6444eSAvi Kivity if test "$pie" = "yes" ; then 124440d6444eSAvi Kivity echo "static and pie are mutually incompatible" 124540d6444eSAvi Kivity exit 1 124640d6444eSAvi Kivity else 124740d6444eSAvi Kivity pie="no" 124840d6444eSAvi Kivity fi 124940d6444eSAvi Kivityfi 125040d6444eSAvi Kivity 125140d6444eSAvi Kivityif test "$pie" = ""; then 125240d6444eSAvi Kivity case "$cpu-$targetos" in 1253f9db31a2SBrad i386-Linux|x86_64-Linux|i386-OpenBSD|x86_64-OpenBSD) 125440d6444eSAvi Kivity ;; 125540d6444eSAvi Kivity *) 125640d6444eSAvi Kivity pie="no" 125740d6444eSAvi Kivity ;; 125840d6444eSAvi Kivity esac 125940d6444eSAvi Kivityfi 126040d6444eSAvi Kivity 126140d6444eSAvi Kivityif test "$pie" != "no" ; then 126240d6444eSAvi Kivity cat > $TMPC << EOF 126321d4a791SAvi Kivity 126421d4a791SAvi Kivity#ifdef __linux__ 126521d4a791SAvi Kivity# define THREAD __thread 126621d4a791SAvi Kivity#else 126721d4a791SAvi Kivity# define THREAD 126821d4a791SAvi Kivity#endif 126921d4a791SAvi Kivity 127021d4a791SAvi Kivitystatic THREAD int tls_var; 127121d4a791SAvi Kivity 127221d4a791SAvi Kivityint main(void) { return tls_var; } 127321d4a791SAvi Kivity 127440d6444eSAvi KivityEOF 127540d6444eSAvi Kivity if compile_prog "-fPIE -DPIE" "-pie"; then 127640d6444eSAvi Kivity QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS" 127740d6444eSAvi Kivity LDFLAGS="-pie $LDFLAGS" 127840d6444eSAvi Kivity pie="yes" 127940d6444eSAvi Kivity if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then 128040d6444eSAvi Kivity LDFLAGS="-Wl,-z,relro -Wl,-z,now $LDFLAGS" 128140d6444eSAvi Kivity fi 128240d6444eSAvi Kivity else 128340d6444eSAvi Kivity if test "$pie" = "yes"; then 128440d6444eSAvi Kivity echo "PIE not available due to missing toolchain support" 128540d6444eSAvi Kivity exit 1 128640d6444eSAvi Kivity else 128740d6444eSAvi Kivity echo "Disabling PIE due to missing toolchain support" 128840d6444eSAvi Kivity pie="no" 128940d6444eSAvi Kivity fi 129040d6444eSAvi Kivity fi 129140d6444eSAvi Kivityfi 129240d6444eSAvi Kivity 1293ec530c81Sbellard# 1294ec530c81Sbellard# Solaris specific configure tool chain decisions 1295ec530c81Sbellard# 1296ec530c81Sbellardif test "$solaris" = "yes" ; then 12976792aa11SLoïc Minier if has $install; then 12986792aa11SLoïc Minier : 12996792aa11SLoïc Minier else 1300ec530c81Sbellard echo "Solaris install program not found. Use --install=/usr/ucb/install or" 1301ec530c81Sbellard echo "install fileutils from www.blastwave.org using pkg-get -i fileutils" 1302ec530c81Sbellard echo "to get ginstall which is used by default (which lives in /opt/csw/bin)" 1303ec530c81Sbellard exit 1 1304ec530c81Sbellard fi 13056792aa11SLoïc Minier if test "`path_of $install`" = "/usr/sbin/install" ; then 1306ec530c81Sbellard echo "Error: Solaris /usr/sbin/install is not an appropriate install program." 1307ec530c81Sbellard echo "try ginstall from the GNU fileutils available from www.blastwave.org" 1308ec530c81Sbellard echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install" 1309ec530c81Sbellard exit 1 1310ec530c81Sbellard fi 13116792aa11SLoïc Minier if has ar; then 13126792aa11SLoïc Minier : 13136792aa11SLoïc Minier else 1314ec530c81Sbellard echo "Error: No path includes ar" 1315ec530c81Sbellard if test -f /usr/ccs/bin/ar ; then 1316ec530c81Sbellard echo "Add /usr/ccs/bin to your path and rerun configure" 1317ec530c81Sbellard fi 1318ec530c81Sbellard exit 1 1319ec530c81Sbellard fi 1320ec530c81Sbellardfi 1321ec530c81Sbellard 13227a3fc891SSebastian Herbsztif ! has $python; then 1323c886edfbSBlue Swirl echo "Python not found. Use --python=/path/to/python" 1324c886edfbSBlue Swirl exit 1 1325c886edfbSBlue Swirlfi 1326c886edfbSBlue Swirl 13276ccea1e4SPeter Maydell# Note that if the Python conditional here evaluates True we will exit 13286ccea1e4SPeter Maydell# with status 1 which is a shell 'false' value. 1329e120d449SStefan Hajnocziif ! "$python" -c 'import sys; sys.exit(sys.version_info < (2,4) or sys.version_info >= (3,))'; then 1330e120d449SStefan Hajnoczi echo "Cannot use '$python', Python 2.4 or later is required." 1331e120d449SStefan Hajnoczi echo "Note that Python 3 or later is not yet supported." 1332e120d449SStefan Hajnoczi echo "Use --python=/path/to/python to specify a supported Python." 13336ccea1e4SPeter Maydell exit 1 13346ccea1e4SPeter Maydellfi 13356ccea1e4SPeter Maydell 1336afb63ebdSStefan Weilif test -z "${target_list+xxx}" ; then 1337121afa9eSAnthony Liguori target_list="$default_target_list" 1338121afa9eSAnthony Liguorielse 1339121afa9eSAnthony Liguori target_list=`echo "$target_list" | sed -e 's/,/ /g'` 13405327cf48Sbellardfi 1341f55fe278SPaolo Bonzini# see if system emulation was really requested 1342f55fe278SPaolo Bonzinicase " $target_list " in 1343f55fe278SPaolo Bonzini *"-softmmu "*) softmmu=yes 1344f55fe278SPaolo Bonzini ;; 1345f55fe278SPaolo Bonzini *) softmmu=no 1346f55fe278SPaolo Bonzini ;; 1347f55fe278SPaolo Bonziniesac 13485327cf48Sbellard 1349249247c9SJuan Quintelafeature_not_found() { 1350249247c9SJuan Quintela feature=$1 1351249247c9SJuan Quintela 1352249247c9SJuan Quintela echo "ERROR" 1353249247c9SJuan Quintela echo "ERROR: User requested feature $feature" 13549332f6a2SSebastian Herbszt echo "ERROR: configure was not able to find it" 1355249247c9SJuan Quintela echo "ERROR" 1356249247c9SJuan Quintela exit 1; 1357249247c9SJuan Quintela} 1358249247c9SJuan Quintela 13597d13299dSbellardif test -z "$cross_prefix" ; then 13607d13299dSbellard 13617d13299dSbellard# --- 13627d13299dSbellard# big/little endian test 13637d13299dSbellardcat > $TMPC << EOF 13647d13299dSbellard#include <inttypes.h> 1365abab1a0fSStefan Weilint main(void) { 13667d13299dSbellard volatile uint32_t i=0x01234567; 13677d13299dSbellard return (*((uint8_t*)(&i))) == 0x67; 13687d13299dSbellard} 13697d13299dSbellardEOF 13707d13299dSbellard 137152166aa0SJuan Quintelaif compile_prog "" "" ; then 13727d13299dSbellard$TMPE && bigendian="yes" 13737d13299dSbellardelse 13747d13299dSbellardecho big/little test failed 13757d13299dSbellardfi 13767d13299dSbellard 13777d13299dSbellardelse 13787d13299dSbellard 13797d13299dSbellard# if cross compiling, cannot launch a program, so make a static guess 1380ea8f20f8SJuan Quintelacase "$cpu" in 138121d89f84SPeter Maydell arm) 138221d89f84SPeter Maydell # ARM can be either way; ask the compiler which one we are 138321d89f84SPeter Maydell if check_define __ARMEB__; then 138421d89f84SPeter Maydell bigendian=yes 138521d89f84SPeter Maydell fi 138621d89f84SPeter Maydell ;; 138721d89f84SPeter Maydell hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64) 1388ea8f20f8SJuan Quintela bigendian=yes 1389ea8f20f8SJuan Quintela ;; 1390ea8f20f8SJuan Quintelaesac 13917d13299dSbellard 13927d13299dSbellardfi 13937d13299dSbellard 1394b0a47e79SJuan Quintela########################################## 1395779ab5e3SStefan Weil# pkg-config probe 1396779ab5e3SStefan Weil 1397779ab5e3SStefan Weilif ! has "$pkg_config_exe"; then 1398779ab5e3SStefan Weil echo "Error: pkg-config binary '$pkg_config_exe' not found" 1399779ab5e3SStefan Weil exit 1 1400779ab5e3SStefan Weilfi 1401779ab5e3SStefan Weil 1402779ab5e3SStefan Weil########################################## 1403b0a47e79SJuan Quintela# NPTL probe 1404b0a47e79SJuan Quintela 1405b0a47e79SJuan Quintelaif test "$nptl" != "no" ; then 1406bd0c5661Spbrook cat > $TMPC <<EOF 1407bd0c5661Spbrook#include <sched.h> 140830813ceaSpbrook#include <linux/futex.h> 1409182eacc0SStefan Weilint main(void) { 1410bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) 1411bd0c5661Spbrook#error bork 1412bd0c5661Spbrook#endif 1413182eacc0SStefan Weil return 0; 1414bd0c5661Spbrook} 1415bd0c5661SpbrookEOF 1416bd0c5661Spbrook 141752166aa0SJuan Quintela if compile_object ; then 1418b0a47e79SJuan Quintela nptl=yes 1419bd0c5661Spbrook else 1420b0a47e79SJuan Quintela if test "$nptl" = "yes" ; then 1421b0a47e79SJuan Quintela feature_not_found "nptl" 1422b0a47e79SJuan Quintela fi 1423b0a47e79SJuan Quintela nptl=no 1424b0a47e79SJuan Quintela fi 1425bd0c5661Spbrookfi 1426bd0c5661Spbrook 142711d9f695Sbellard########################################## 1428ac62922eSbalrog# zlib check 1429ac62922eSbalrog 14301ece9905SAlon Levyif test "$zlib" != "no" ; then 1431ac62922eSbalrog cat > $TMPC << EOF 1432ac62922eSbalrog#include <zlib.h> 1433ac62922eSbalrogint main(void) { zlibVersion(); return 0; } 1434ac62922eSbalrogEOF 143552166aa0SJuan Quintela if compile_prog "" "-lz" ; then 1436ac62922eSbalrog : 1437ac62922eSbalrog else 1438ac62922eSbalrog echo 1439ac62922eSbalrog echo "Error: zlib check failed" 1440ac62922eSbalrog echo "Make sure to have the zlib libs and headers installed." 1441ac62922eSbalrog echo 1442ac62922eSbalrog exit 1 1443ac62922eSbalrog fi 14441ece9905SAlon Levyfi 1445ac62922eSbalrog 1446ac62922eSbalrog########################################## 1447f794573eSEduardo Otubo# libseccomp check 1448f794573eSEduardo Otubo 1449f794573eSEduardo Otuboif test "$seccomp" != "no" ; then 14502c5c4451SBlue Swirl if $pkg_config --atleast-version=1.0.0 libseccomp --modversion >/dev/null 2>&1; then 1451b4451996SMichael Tokarev libs_softmmu="$libs_softmmu `$pkg_config --libs libseccomp`" 1452f794573eSEduardo Otubo seccomp="yes" 1453f794573eSEduardo Otubo else 1454f794573eSEduardo Otubo if test "$seccomp" = "yes"; then 1455f794573eSEduardo Otubo feature_not_found "libseccomp" 1456f794573eSEduardo Otubo fi 1457e84d5956SYann E. MORIN seccomp="no" 1458f794573eSEduardo Otubo fi 1459f794573eSEduardo Otubofi 1460f794573eSEduardo Otubo########################################## 1461e37630caSaliguori# xen probe 1462e37630caSaliguori 1463fc321b4bSJuan Quintelaif test "$xen" != "no" ; then 1464b2266beeSJuan Quintela xen_libs="-lxenstore -lxenctrl -lxenguest" 1465d5b93ddfSAnthony PERARD 146650ced5b3SStefan Weil # First we test whether Xen headers and libraries are available. 146750ced5b3SStefan Weil # If no, we are done and there is no Xen support. 146850ced5b3SStefan Weil # If yes, more tests are run to detect the Xen version. 146950ced5b3SStefan Weil 147050ced5b3SStefan Weil # Xen (any) 147150ced5b3SStefan Weil cat > $TMPC <<EOF 147250ced5b3SStefan Weil#include <xenctrl.h> 147350ced5b3SStefan Weilint main(void) { 147450ced5b3SStefan Weil return 0; 147550ced5b3SStefan Weil} 147650ced5b3SStefan WeilEOF 147750ced5b3SStefan Weil if ! compile_prog "" "$xen_libs" ; then 147850ced5b3SStefan Weil # Xen not found 147950ced5b3SStefan Weil if test "$xen" = "yes" ; then 148050ced5b3SStefan Weil feature_not_found "xen" 148150ced5b3SStefan Weil fi 148250ced5b3SStefan Weil xen=no 148350ced5b3SStefan Weil 1484d5b93ddfSAnthony PERARD # Xen unstable 148569deef08SPeter Maydell elif 148669deef08SPeter Maydell cat > $TMPC <<EOF && 1487e37630caSaliguori#include <xenctrl.h> 1488e108a3c1SAnthony PERARD#include <xenstore.h> 1489d5b93ddfSAnthony PERARD#include <stdint.h> 1490d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h> 1491d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS) 1492d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined 1493d5b93ddfSAnthony PERARD#endif 1494d5b93ddfSAnthony PERARDint main(void) { 1495d5b93ddfSAnthony PERARD xc_interface *xc; 1496d5b93ddfSAnthony PERARD xs_daemon_open(); 1497d5b93ddfSAnthony PERARD xc = xc_interface_open(0, 0, 0); 1498d5b93ddfSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1499d5b93ddfSAnthony PERARD xc_gnttab_open(NULL, 0); 1500b87de24eSAnthony PERARD xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); 15018688e065SStefano Stabellini xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); 15028688e065SStefano Stabellini return 0; 15038688e065SStefano Stabellini} 15048688e065SStefano StabelliniEOF 15058688e065SStefano Stabellini compile_prog "" "$xen_libs" 150669deef08SPeter Maydell then 15078688e065SStefano Stabellini xen_ctrl_version=420 15088688e065SStefano Stabellini xen=yes 15098688e065SStefano Stabellini 151069deef08SPeter Maydell elif 151169deef08SPeter Maydell cat > $TMPC <<EOF && 15128688e065SStefano Stabellini#include <xenctrl.h> 15138688e065SStefano Stabellini#include <xs.h> 15148688e065SStefano Stabellini#include <stdint.h> 15158688e065SStefano Stabellini#include <xen/hvm/hvm_info_table.h> 15168688e065SStefano Stabellini#if !defined(HVM_MAX_VCPUS) 15178688e065SStefano Stabellini# error HVM_MAX_VCPUS not defined 15188688e065SStefano Stabellini#endif 15198688e065SStefano Stabelliniint main(void) { 15208688e065SStefano Stabellini xs_daemon_open(); 15219b4c0b56SPeter Maydell xc_interface_open(0, 0, 0); 15228688e065SStefano Stabellini xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 15238688e065SStefano Stabellini xc_gnttab_open(NULL, 0); 15248688e065SStefano Stabellini xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); 1525d5b93ddfSAnthony PERARD return 0; 1526d5b93ddfSAnthony PERARD} 1527e37630caSaliguoriEOF 152850ced5b3SStefan Weil compile_prog "" "$xen_libs" 152969deef08SPeter Maydell then 1530d5b93ddfSAnthony PERARD xen_ctrl_version=410 1531fc321b4bSJuan Quintela xen=yes 1532d5b93ddfSAnthony PERARD 1533d5b93ddfSAnthony PERARD # Xen 4.0.0 153469deef08SPeter Maydell elif 153569deef08SPeter Maydell cat > $TMPC <<EOF && 1536d5b93ddfSAnthony PERARD#include <xenctrl.h> 1537d5b93ddfSAnthony PERARD#include <xs.h> 1538d5b93ddfSAnthony PERARD#include <stdint.h> 1539d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h> 1540d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS) 1541d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined 1542d5b93ddfSAnthony PERARD#endif 1543d5b93ddfSAnthony PERARDint main(void) { 1544b87de24eSAnthony PERARD struct xen_add_to_physmap xatp = { 1545b87de24eSAnthony PERARD .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0, 1546b87de24eSAnthony PERARD }; 1547d5b93ddfSAnthony PERARD xs_daemon_open(); 1548d5b93ddfSAnthony PERARD xc_interface_open(); 1549d5b93ddfSAnthony PERARD xc_gnttab_open(); 1550d5b93ddfSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1551b87de24eSAnthony PERARD xc_memory_op(0, XENMEM_add_to_physmap, &xatp); 1552d5b93ddfSAnthony PERARD return 0; 1553d5b93ddfSAnthony PERARD} 1554d5b93ddfSAnthony PERARDEOF 1555d5b93ddfSAnthony PERARD compile_prog "" "$xen_libs" 155669deef08SPeter Maydell then 1557d5b93ddfSAnthony PERARD xen_ctrl_version=400 1558d5b93ddfSAnthony PERARD xen=yes 1559d5b93ddfSAnthony PERARD 1560b87de24eSAnthony PERARD # Xen 3.4.0 156169deef08SPeter Maydell elif 156269deef08SPeter Maydell cat > $TMPC <<EOF && 1563b87de24eSAnthony PERARD#include <xenctrl.h> 1564b87de24eSAnthony PERARD#include <xs.h> 1565b87de24eSAnthony PERARDint main(void) { 1566b87de24eSAnthony PERARD struct xen_add_to_physmap xatp = { 1567b87de24eSAnthony PERARD .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0, 1568b87de24eSAnthony PERARD }; 1569b87de24eSAnthony PERARD xs_daemon_open(); 1570b87de24eSAnthony PERARD xc_interface_open(); 1571b87de24eSAnthony PERARD xc_gnttab_open(); 1572b87de24eSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1573b87de24eSAnthony PERARD xc_memory_op(0, XENMEM_add_to_physmap, &xatp); 1574b87de24eSAnthony PERARD return 0; 1575b87de24eSAnthony PERARD} 1576b87de24eSAnthony PERARDEOF 1577b87de24eSAnthony PERARD compile_prog "" "$xen_libs" 157869deef08SPeter Maydell then 1579b87de24eSAnthony PERARD xen_ctrl_version=340 1580b87de24eSAnthony PERARD xen=yes 1581b87de24eSAnthony PERARD 1582b87de24eSAnthony PERARD # Xen 3.3.0 158369deef08SPeter Maydell elif 158469deef08SPeter Maydell cat > $TMPC <<EOF && 1585d5b93ddfSAnthony PERARD#include <xenctrl.h> 1586d5b93ddfSAnthony PERARD#include <xs.h> 1587d5b93ddfSAnthony PERARDint main(void) { 1588d5b93ddfSAnthony PERARD xs_daemon_open(); 1589d5b93ddfSAnthony PERARD xc_interface_open(); 1590d5b93ddfSAnthony PERARD xc_gnttab_open(); 1591d5b93ddfSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1592d5b93ddfSAnthony PERARD return 0; 1593d5b93ddfSAnthony PERARD} 1594d5b93ddfSAnthony PERARDEOF 1595d5b93ddfSAnthony PERARD compile_prog "" "$xen_libs" 159669deef08SPeter Maydell then 1597d5b93ddfSAnthony PERARD xen_ctrl_version=330 1598d5b93ddfSAnthony PERARD xen=yes 1599d5b93ddfSAnthony PERARD 160050ced5b3SStefan Weil # Xen version unsupported 1601e37630caSaliguori else 1602fc321b4bSJuan Quintela if test "$xen" = "yes" ; then 160350ced5b3SStefan Weil feature_not_found "xen (unsupported version)" 1604fc321b4bSJuan Quintela fi 1605fc321b4bSJuan Quintela xen=no 1606e37630caSaliguori fi 1607d5b93ddfSAnthony PERARD 1608d5b93ddfSAnthony PERARD if test "$xen" = yes; then 1609d5b93ddfSAnthony PERARD libs_softmmu="$xen_libs $libs_softmmu" 1610d5b93ddfSAnthony PERARD fi 1611e37630caSaliguorifi 1612e37630caSaliguori 1613eb6fda0fSAnthony PERARDif test "$xen_pci_passthrough" != "no"; then 1614eb6fda0fSAnthony PERARD if test "$xen" = "yes" && test "$linux" = "yes" && 1615eb6fda0fSAnthony PERARD test "$xen_ctrl_version" -ge 340; then 1616eb6fda0fSAnthony PERARD xen_pci_passthrough=yes 1617eb6fda0fSAnthony PERARD else 1618eb6fda0fSAnthony PERARD if test "$xen_pci_passthrough" = "yes"; then 1619eb6fda0fSAnthony PERARD echo "ERROR" 1620eb6fda0fSAnthony PERARD echo "ERROR: User requested feature Xen PCI Passthrough" 1621eb6fda0fSAnthony PERARD echo "ERROR: but this feature require /sys from Linux" 1622eb6fda0fSAnthony PERARD if test "$xen_ctrl_version" -lt 340; then 1623eb6fda0fSAnthony PERARD echo "ERROR: This feature does not work with Xen 3.3" 1624eb6fda0fSAnthony PERARD fi 1625eb6fda0fSAnthony PERARD echo "ERROR" 1626eb6fda0fSAnthony PERARD exit 1; 1627eb6fda0fSAnthony PERARD fi 1628eb6fda0fSAnthony PERARD xen_pci_passthrough=no 1629eb6fda0fSAnthony PERARD fi 1630eb6fda0fSAnthony PERARDfi 1631eb6fda0fSAnthony PERARD 1632e37630caSaliguori########################################## 163344dc0ca3SAlon Levy# libtool probe 163444dc0ca3SAlon Levy 16353f534581SBradif ! has $libtool; then 163644dc0ca3SAlon Levy libtool= 163744dc0ca3SAlon Levyfi 163844dc0ca3SAlon Levy 163944dc0ca3SAlon Levy########################################## 1640dfffc653SJuan Quintela# Sparse probe 1641dfffc653SJuan Quintelaif test "$sparse" != "no" ; then 16420dba6195SLoïc Minier if has cgcc; then 1643dfffc653SJuan Quintela sparse=yes 1644dfffc653SJuan Quintela else 1645dfffc653SJuan Quintela if test "$sparse" = "yes" ; then 1646dfffc653SJuan Quintela feature_not_found "sparse" 1647dfffc653SJuan Quintela fi 1648dfffc653SJuan Quintela sparse=no 1649dfffc653SJuan Quintela fi 1650dfffc653SJuan Quintelafi 1651dfffc653SJuan Quintela 1652dfffc653SJuan Quintela########################################## 1653a4ccabcfSAnthony Liguori# GTK probe 1654a4ccabcfSAnthony Liguori 1655a4ccabcfSAnthony Liguoriif test "$gtk" != "no"; then 1656528de90aSDaniel P. Berrange gtkpackage="gtk+-$gtkabi" 1657528de90aSDaniel P. Berrange if test "$gtkabi" = "3.0" ; then 1658528de90aSDaniel P. Berrange gtkversion="3.0.0" 1659528de90aSDaniel P. Berrange vtepackage="vte-2.90" 1660528de90aSDaniel P. Berrange vteversion="0.32.0" 1661528de90aSDaniel P. Berrange else 1662528de90aSDaniel P. Berrange gtkversion="2.18.0" 1663528de90aSDaniel P. Berrange vtepackage="vte" 1664528de90aSDaniel P. Berrange vteversion="0.24.0" 1665528de90aSDaniel P. Berrange fi 1666528de90aSDaniel P. Berrange if $pkg_config --exists "$gtkpackage >= $gtkversion" && \ 1667528de90aSDaniel P. Berrange $pkg_config --exists "$vtepackage >= $vteversion"; then 1668528de90aSDaniel P. Berrange gtk_cflags=`$pkg_config --cflags $gtkpackage 2>/dev/null` 1669528de90aSDaniel P. Berrange gtk_libs=`$pkg_config --libs $gtkpackage 2>/dev/null` 1670528de90aSDaniel P. Berrange vte_cflags=`$pkg_config --cflags $vtepackage 2>/dev/null` 1671528de90aSDaniel P. Berrange vte_libs=`$pkg_config --libs $vtepackage 2>/dev/null` 1672a4ccabcfSAnthony Liguori libs_softmmu="$gtk_libs $vte_libs $libs_softmmu" 1673a4ccabcfSAnthony Liguori gtk="yes" 1674a4ccabcfSAnthony Liguori else 1675a4ccabcfSAnthony Liguori if test "$gtk" = "yes" ; then 1676a4ccabcfSAnthony Liguori feature_not_found "gtk" 1677a4ccabcfSAnthony Liguori fi 1678a4ccabcfSAnthony Liguori gtk="no" 1679a4ccabcfSAnthony Liguori fi 1680a4ccabcfSAnthony Liguorifi 1681a4ccabcfSAnthony Liguori 1682a4ccabcfSAnthony Liguori########################################## 168311d9f695Sbellard# SDL probe 168411d9f695Sbellard 16853ec87ffeSPaolo Bonzini# Look for sdl configuration program (pkg-config or sdl-config). Try 16863ec87ffeSPaolo Bonzini# sdl-config even without cross prefix, and favour pkg-config over sdl-config. 16873ec87ffeSPaolo Bonziniif test "`basename $sdl_config`" != sdl-config && ! has ${sdl_config}; then 16883ec87ffeSPaolo Bonzini sdl_config=sdl-config 16893ec87ffeSPaolo Bonzinifi 16903ec87ffeSPaolo Bonzini 16913ec87ffeSPaolo Bonziniif $pkg_config sdl --modversion >/dev/null 2>&1; then 1692a8bd70adSPaolo Bonzini sdlconfig="$pkg_config sdl" 1693fec0e3e8SStefan Weil _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'` 16943ec87ffeSPaolo Bonzinielif has ${sdl_config}; then 16953ec87ffeSPaolo Bonzini sdlconfig="$sdl_config" 16969316f803SPaolo Bonzini _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'` 1697a0dfd8a4SLoïc Minierelse 1698a0dfd8a4SLoïc Minier if test "$sdl" = "yes" ; then 1699a0dfd8a4SLoïc Minier feature_not_found "sdl" 1700a0dfd8a4SLoïc Minier fi 1701a0dfd8a4SLoïc Minier sdl=no 17029316f803SPaolo Bonzinifi 170329e5badaSScott Woodif test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then 17043ec87ffeSPaolo Bonzini echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2 17053ec87ffeSPaolo Bonzinifi 170611d9f695Sbellard 17079316f803SPaolo Bonzinisdl_too_old=no 1708c4198157SJuan Quintelaif test "$sdl" != "no" ; then 170911d9f695Sbellard cat > $TMPC << EOF 171011d9f695Sbellard#include <SDL.h> 171111d9f695Sbellard#undef main /* We don't want SDL to override our main() */ 171211d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); } 171311d9f695SbellardEOF 17149316f803SPaolo Bonzini sdl_cflags=`$sdlconfig --cflags 2> /dev/null` 171574f42e18STeLeMan if test "$static" = "yes" ; then 171674f42e18STeLeMan sdl_libs=`$sdlconfig --static-libs 2>/dev/null` 171774f42e18STeLeMan else 17189316f803SPaolo Bonzini sdl_libs=`$sdlconfig --libs 2> /dev/null` 171974f42e18STeLeMan fi 172052166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 172111d9f695Sbellard if test "$_sdlversion" -lt 121 ; then 172211d9f695Sbellard sdl_too_old=yes 172311d9f695Sbellard else 1724fd677642Sths if test "$cocoa" = "no" ; then 172511d9f695Sbellard sdl=yes 172611d9f695Sbellard fi 1727fd677642Sths fi 17287c1f25b4Sbellard 172967c274d3SPaolo Bonzini # static link with sdl ? (note: sdl.pc's --static --libs is broken) 17301ac88f28SJuan Quintela if test "$sdl" = "yes" -a "$static" = "yes" ; then 173167c274d3SPaolo Bonzini if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then 1732f8aa6c7bSStefan Weil sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`" 1733f8aa6c7bSStefan Weil sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`" 173411d9f695Sbellard fi 173552166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 17361ac88f28SJuan Quintela : 17371ac88f28SJuan Quintela else 17381ac88f28SJuan Quintela sdl=no 17397c1f25b4Sbellard fi 17407c1f25b4Sbellard fi # static link 1741c4198157SJuan Quintela else # sdl not found 1742c4198157SJuan Quintela if test "$sdl" = "yes" ; then 1743c4198157SJuan Quintela feature_not_found "sdl" 1744c4198157SJuan Quintela fi 1745c4198157SJuan Quintela sdl=no 17467c1f25b4Sbellard fi # sdl compile test 1747fd677642Sthsfi 174811d9f695Sbellard 17495368a422Saliguoriif test "$sdl" = "yes" ; then 17505368a422Saliguori cat > $TMPC <<EOF 17515368a422Saliguori#include <SDL.h> 17525368a422Saliguori#if defined(SDL_VIDEO_DRIVER_X11) 17535368a422Saliguori#include <X11/XKBlib.h> 17545368a422Saliguori#else 17555368a422Saliguori#error No x11 support 17565368a422Saliguori#endif 17575368a422Saliguoriint main(void) { return 0; } 17585368a422SaliguoriEOF 175952166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 1760681306dfSJuan Quintela sdl_libs="$sdl_libs -lX11" 17615368a422Saliguori fi 17620705667eSJuan Quintela libs_softmmu="$sdl_libs $libs_softmmu" 17635368a422Saliguorifi 17645368a422Saliguori 17658f28f3fbSths########################################## 17667536ee4bSTim Hardeck# VNC TLS/WS detection 17677536ee4bSTim Hardeckif test "$vnc" = "yes" -a \( "$vnc_tls" != "no" -o "$vnc_ws" != "no" \) ; then 1768ae6b5e5aSaliguori cat > $TMPC <<EOF 1769ae6b5e5aSaliguori#include <gnutls/gnutls.h> 1770ae6b5e5aSaliguoriint main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; } 1771ae6b5e5aSaliguoriEOF 1772a8bd70adSPaolo Bonzini vnc_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null` 1773a8bd70adSPaolo Bonzini vnc_tls_libs=`$pkg_config --libs gnutls 2> /dev/null` 177452166aa0SJuan Quintela if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then 17757536ee4bSTim Hardeck if test "$vnc_tls" != "no" ; then 17761be10ad2SJuan Quintela vnc_tls=yes 17777536ee4bSTim Hardeck fi 17787536ee4bSTim Hardeck if test "$vnc_ws" != "no" ; then 17797536ee4bSTim Hardeck vnc_ws=yes 17807536ee4bSTim Hardeck fi 1781a5e32cc9SJuan Quintela libs_softmmu="$vnc_tls_libs $libs_softmmu" 1782ca273d58SPaolo Bonzini QEMU_CFLAGS="$QEMU_CFLAGS $vnc_tls_cflags" 1783ae6b5e5aSaliguori else 17841be10ad2SJuan Quintela if test "$vnc_tls" = "yes" ; then 17851be10ad2SJuan Quintela feature_not_found "vnc-tls" 17861be10ad2SJuan Quintela fi 17877536ee4bSTim Hardeck if test "$vnc_ws" = "yes" ; then 17887536ee4bSTim Hardeck feature_not_found "vnc-ws" 17897536ee4bSTim Hardeck fi 17901be10ad2SJuan Quintela vnc_tls=no 17917536ee4bSTim Hardeck vnc_ws=no 17928d5d2d4cSths fi 17938d5d2d4cSthsfi 17948d5d2d4cSths 17958d5d2d4cSths########################################## 17962f9606b3Saliguori# VNC SASL detection 1797821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then 17982f9606b3Saliguori cat > $TMPC <<EOF 17992f9606b3Saliguori#include <sasl/sasl.h> 18002f9606b3Saliguori#include <stdio.h> 18012f9606b3Saliguoriint main(void) { sasl_server_init(NULL, "qemu"); return 0; } 18022f9606b3SaliguoriEOF 18032f9606b3Saliguori # Assuming Cyrus-SASL installed in /usr prefix 18042f9606b3Saliguori vnc_sasl_cflags="" 18052f9606b3Saliguori vnc_sasl_libs="-lsasl2" 180652166aa0SJuan Quintela if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then 1807ea784e3bSJuan Quintela vnc_sasl=yes 1808fa838301SJuan Quintela libs_softmmu="$vnc_sasl_libs $libs_softmmu" 1809ca273d58SPaolo Bonzini QEMU_CFLAGS="$QEMU_CFLAGS $vnc_sasl_cflags" 18102f9606b3Saliguori else 1811ea784e3bSJuan Quintela if test "$vnc_sasl" = "yes" ; then 1812ea784e3bSJuan Quintela feature_not_found "vnc-sasl" 1813ea784e3bSJuan Quintela fi 1814ea784e3bSJuan Quintela vnc_sasl=no 18152f9606b3Saliguori fi 18162f9606b3Saliguorifi 18172f9606b3Saliguori 18182f9606b3Saliguori########################################## 18192f6f5c7aSCorentin Chary# VNC JPEG detection 1820821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then 18212f6f5c7aSCorentin Charycat > $TMPC <<EOF 18222f6f5c7aSCorentin Chary#include <stdio.h> 18232f6f5c7aSCorentin Chary#include <jpeglib.h> 18242f6f5c7aSCorentin Charyint main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; } 18252f6f5c7aSCorentin CharyEOF 18262f6f5c7aSCorentin Chary vnc_jpeg_cflags="" 18272f6f5c7aSCorentin Chary vnc_jpeg_libs="-ljpeg" 18282f6f5c7aSCorentin Chary if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then 18292f6f5c7aSCorentin Chary vnc_jpeg=yes 18302f6f5c7aSCorentin Chary libs_softmmu="$vnc_jpeg_libs $libs_softmmu" 1831ca273d58SPaolo Bonzini QEMU_CFLAGS="$QEMU_CFLAGS $vnc_jpeg_cflags" 18322f6f5c7aSCorentin Chary else 18332f6f5c7aSCorentin Chary if test "$vnc_jpeg" = "yes" ; then 18342f6f5c7aSCorentin Chary feature_not_found "vnc-jpeg" 18352f6f5c7aSCorentin Chary fi 18362f6f5c7aSCorentin Chary vnc_jpeg=no 18372f6f5c7aSCorentin Chary fi 18382f6f5c7aSCorentin Charyfi 18392f6f5c7aSCorentin Chary 18402f6f5c7aSCorentin Chary########################################## 1841efe556adSCorentin Chary# VNC PNG detection 1842821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_png" != "no" ; then 1843efe556adSCorentin Charycat > $TMPC <<EOF 1844efe556adSCorentin Chary//#include <stdio.h> 1845efe556adSCorentin Chary#include <png.h> 1846832ce9c2SScott Wood#include <stddef.h> 1847efe556adSCorentin Charyint main(void) { 1848efe556adSCorentin Chary png_structp png_ptr; 1849efe556adSCorentin Chary png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); 18507edc3fedSPeter Maydell return png_ptr != 0; 1851efe556adSCorentin Chary} 1852efe556adSCorentin CharyEOF 18539af8025eSBrad if $pkg_config libpng --modversion >/dev/null 2>&1; then 18549af8025eSBrad vnc_png_cflags=`$pkg_config libpng --cflags 2> /dev/null` 18559af8025eSBrad vnc_png_libs=`$pkg_config libpng --libs 2> /dev/null` 18569af8025eSBrad else 1857efe556adSCorentin Chary vnc_png_cflags="" 1858efe556adSCorentin Chary vnc_png_libs="-lpng" 18599af8025eSBrad fi 1860efe556adSCorentin Chary if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then 1861efe556adSCorentin Chary vnc_png=yes 1862efe556adSCorentin Chary libs_softmmu="$vnc_png_libs $libs_softmmu" 18639af8025eSBrad QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags" 1864efe556adSCorentin Chary else 1865efe556adSCorentin Chary if test "$vnc_png" = "yes" ; then 1866efe556adSCorentin Chary feature_not_found "vnc-png" 1867efe556adSCorentin Chary fi 1868efe556adSCorentin Chary vnc_png=no 1869efe556adSCorentin Chary fi 1870efe556adSCorentin Charyfi 1871efe556adSCorentin Chary 1872efe556adSCorentin Chary########################################## 187376655d6dSaliguori# fnmatch() probe, used for ACL routines 187476655d6dSaliguorifnmatch="no" 187576655d6dSaliguoricat > $TMPC << EOF 187676655d6dSaliguori#include <fnmatch.h> 187776655d6dSaliguoriint main(void) 187876655d6dSaliguori{ 187976655d6dSaliguori fnmatch("foo", "foo", 0); 188076655d6dSaliguori return 0; 188176655d6dSaliguori} 188276655d6dSaliguoriEOF 188352166aa0SJuan Quintelaif compile_prog "" "" ; then 188476655d6dSaliguori fnmatch="yes" 188576655d6dSaliguorifi 188676655d6dSaliguori 188776655d6dSaliguori########################################## 1888ee682d27SStefan Weil# uuid_generate() probe, used for vdi block driver 1889ee682d27SStefan Weilif test "$uuid" != "no" ; then 1890ee682d27SStefan Weil uuid_libs="-luuid" 1891ee682d27SStefan Weil cat > $TMPC << EOF 1892ee682d27SStefan Weil#include <uuid/uuid.h> 1893ee682d27SStefan Weilint main(void) 1894ee682d27SStefan Weil{ 1895ee682d27SStefan Weil uuid_t my_uuid; 1896ee682d27SStefan Weil uuid_generate(my_uuid); 1897ee682d27SStefan Weil return 0; 1898ee682d27SStefan Weil} 1899ee682d27SStefan WeilEOF 1900ee682d27SStefan Weil if compile_prog "" "$uuid_libs" ; then 1901ee682d27SStefan Weil uuid="yes" 1902ee682d27SStefan Weil libs_softmmu="$uuid_libs $libs_softmmu" 1903ee682d27SStefan Weil libs_tools="$uuid_libs $libs_tools" 1904ee682d27SStefan Weil else 1905ee682d27SStefan Weil if test "$uuid" = "yes" ; then 1906ee682d27SStefan Weil feature_not_found "uuid" 1907ee682d27SStefan Weil fi 1908ee682d27SStefan Weil uuid=no 1909ee682d27SStefan Weil fi 1910ee682d27SStefan Weilfi 1911ee682d27SStefan Weil 1912ee682d27SStefan Weil########################################## 1913dce512deSChristoph Hellwig# xfsctl() probe, used for raw-posix 1914dce512deSChristoph Hellwigif test "$xfs" != "no" ; then 1915dce512deSChristoph Hellwig cat > $TMPC << EOF 1916ffc41d10SStefan Weil#include <stddef.h> /* NULL */ 1917dce512deSChristoph Hellwig#include <xfs/xfs.h> 1918dce512deSChristoph Hellwigint main(void) 1919dce512deSChristoph Hellwig{ 1920dce512deSChristoph Hellwig xfsctl(NULL, 0, 0, NULL); 1921dce512deSChristoph Hellwig return 0; 1922dce512deSChristoph Hellwig} 1923dce512deSChristoph HellwigEOF 1924dce512deSChristoph Hellwig if compile_prog "" "" ; then 1925dce512deSChristoph Hellwig xfs="yes" 1926dce512deSChristoph Hellwig else 1927dce512deSChristoph Hellwig if test "$xfs" = "yes" ; then 1928dce512deSChristoph Hellwig feature_not_found "xfs" 1929dce512deSChristoph Hellwig fi 1930dce512deSChristoph Hellwig xfs=no 1931dce512deSChristoph Hellwig fi 1932dce512deSChristoph Hellwigfi 1933dce512deSChristoph Hellwig 1934dce512deSChristoph Hellwig########################################## 19358a16d273Sths# vde libraries probe 1936dfb278bdSJuan Quintelaif test "$vde" != "no" ; then 19374baae0acSJuan Quintela vde_libs="-lvdeplug" 19388a16d273Sths cat > $TMPC << EOF 19398a16d273Sths#include <libvdeplug.h> 19404a7f0e06Spbrookint main(void) 19414a7f0e06Spbrook{ 19424a7f0e06Spbrook struct vde_open_args a = {0, 0, 0}; 1943fea08e08SPeter Maydell char s[] = ""; 1944fea08e08SPeter Maydell vde_open(s, s, &a); 19454a7f0e06Spbrook return 0; 19464a7f0e06Spbrook} 19478a16d273SthsEOF 194852166aa0SJuan Quintela if compile_prog "" "$vde_libs" ; then 19494baae0acSJuan Quintela vde=yes 19508e02e54cSJuan Quintela libs_softmmu="$vde_libs $libs_softmmu" 19518e02e54cSJuan Quintela libs_tools="$vde_libs $libs_tools" 1952dfb278bdSJuan Quintela else 1953dfb278bdSJuan Quintela if test "$vde" = "yes" ; then 1954dfb278bdSJuan Quintela feature_not_found "vde" 1955dfb278bdSJuan Quintela fi 1956dfb278bdSJuan Quintela vde=no 19578a16d273Sths fi 19588a16d273Sthsfi 19598a16d273Sths 19608a16d273Sths########################################## 196147e98658SCorey Bryant# libcap-ng library probe 196247e98658SCorey Bryantif test "$cap_ng" != "no" ; then 196347e98658SCorey Bryant cap_libs="-lcap-ng" 196447e98658SCorey Bryant cat > $TMPC << EOF 196547e98658SCorey Bryant#include <cap-ng.h> 196647e98658SCorey Bryantint main(void) 196747e98658SCorey Bryant{ 196847e98658SCorey Bryant capng_capability_to_name(CAPNG_EFFECTIVE); 196947e98658SCorey Bryant return 0; 197047e98658SCorey Bryant} 197147e98658SCorey BryantEOF 197247e98658SCorey Bryant if compile_prog "" "$cap_libs" ; then 197347e98658SCorey Bryant cap_ng=yes 197447e98658SCorey Bryant libs_tools="$cap_libs $libs_tools" 197547e98658SCorey Bryant else 197647e98658SCorey Bryant if test "$cap_ng" = "yes" ; then 197747e98658SCorey Bryant feature_not_found "cap_ng" 197847e98658SCorey Bryant fi 197947e98658SCorey Bryant cap_ng=no 198047e98658SCorey Bryant fi 198147e98658SCorey Bryantfi 198247e98658SCorey Bryant 198347e98658SCorey Bryant########################################## 1984c2de5c91Smalc# Sound support libraries probe 19858f28f3fbSths 1986c2de5c91Smalcaudio_drv_probe() 1987c2de5c91Smalc{ 1988c2de5c91Smalc drv=$1 1989c2de5c91Smalc hdr=$2 1990c2de5c91Smalc lib=$3 1991c2de5c91Smalc exp=$4 1992c2de5c91Smalc cfl=$5 19938f28f3fbSths cat > $TMPC << EOF 1994c2de5c91Smalc#include <$hdr> 1995c2de5c91Smalcint main(void) { $exp } 19968f28f3fbSthsEOF 199752166aa0SJuan Quintela if compile_prog "$cfl" "$lib" ; then 19988f28f3fbSths : 19998f28f3fbSths else 20008f28f3fbSths echo 2001c2de5c91Smalc echo "Error: $drv check failed" 2002c2de5c91Smalc echo "Make sure to have the $drv libs and headers installed." 20038f28f3fbSths echo 20048f28f3fbSths exit 1 20058f28f3fbSths fi 2006c2de5c91Smalc} 2007c2de5c91Smalc 20082fa7d3bfSmalcaudio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` 2009c2de5c91Smalcfor drv in $audio_drv_list; do 2010c2de5c91Smalc case $drv in 2011c2de5c91Smalc alsa) 2012c2de5c91Smalc audio_drv_probe $drv alsa/asoundlib.h -lasound \ 2013e35bcb0cSStefan Weil "return snd_pcm_close((snd_pcm_t *)0);" 2014a4bf6780SJuan Quintela libs_softmmu="-lasound $libs_softmmu" 2015c2de5c91Smalc ;; 2016c2de5c91Smalc 2017c2de5c91Smalc fmod) 2018c2de5c91Smalc if test -z $fmod_lib || test -z $fmod_inc; then 2019c2de5c91Smalc echo 2020c2de5c91Smalc echo "Error: You must specify path to FMOD library and headers" 2021c2de5c91Smalc echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so" 2022c2de5c91Smalc echo 2023c2de5c91Smalc exit 1 20248f28f3fbSths fi 2025c2de5c91Smalc audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc" 2026a4bf6780SJuan Quintela libs_softmmu="$fmod_lib $libs_softmmu" 2027c2de5c91Smalc ;; 2028c2de5c91Smalc 2029c2de5c91Smalc esd) 2030c2de5c91Smalc audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);' 2031a4bf6780SJuan Quintela libs_softmmu="-lesd $libs_softmmu" 203267f86e8eSJuan Quintela audio_pt_int="yes" 2033c2de5c91Smalc ;; 2034b8e59f18Smalc 2035b8e59f18Smalc pa) 2036a394aed2SMarc-André Lureau audio_drv_probe $drv pulse/mainloop.h "-lpulse" \ 2037a394aed2SMarc-André Lureau "pa_mainloop *m = 0; pa_mainloop_free (m); return 0;" 2038a394aed2SMarc-André Lureau libs_softmmu="-lpulse $libs_softmmu" 203967f86e8eSJuan Quintela audio_pt_int="yes" 2040b8e59f18Smalc ;; 2041b8e59f18Smalc 2042997e690aSJuan Quintela coreaudio) 2043997e690aSJuan Quintela libs_softmmu="-framework CoreAudio $libs_softmmu" 2044997e690aSJuan Quintela ;; 2045997e690aSJuan Quintela 2046a4bf6780SJuan Quintela dsound) 2047a4bf6780SJuan Quintela libs_softmmu="-lole32 -ldxguid $libs_softmmu" 2048d5631638Smalc audio_win_int="yes" 2049a4bf6780SJuan Quintela ;; 2050a4bf6780SJuan Quintela 2051a4bf6780SJuan Quintela oss) 2052a4bf6780SJuan Quintela libs_softmmu="$oss_lib $libs_softmmu" 2053a4bf6780SJuan Quintela ;; 2054a4bf6780SJuan Quintela 2055a4bf6780SJuan Quintela sdl|wav) 20562f6a1ab0Sblueswir1 # XXX: Probes for CoreAudio, DirectSound, SDL(?) 20572f6a1ab0Sblueswir1 ;; 20582f6a1ab0Sblueswir1 2059d5631638Smalc winwave) 2060d5631638Smalc libs_softmmu="-lwinmm $libs_softmmu" 2061d5631638Smalc audio_win_int="yes" 2062d5631638Smalc ;; 2063d5631638Smalc 2064e4c63a6aSmalc *) 20651c9b2a52Smalc echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { 2066e4c63a6aSmalc echo 2067e4c63a6aSmalc echo "Error: Unknown driver '$drv' selected" 2068e4c63a6aSmalc echo "Possible drivers are: $audio_possible_drivers" 2069e4c63a6aSmalc echo 2070e4c63a6aSmalc exit 1 2071e4c63a6aSmalc } 2072e4c63a6aSmalc ;; 2073c2de5c91Smalc esac 2074c2de5c91Smalcdone 20758f28f3fbSths 20764d3b6f6eSbalrog########################################## 20772e4d9fb1Saurel32# BrlAPI probe 20782e4d9fb1Saurel32 20794ffcedb6SJuan Quintelaif test "$brlapi" != "no" ; then 2080eb82284fSJuan Quintela brlapi_libs="-lbrlapi" 20812e4d9fb1Saurel32 cat > $TMPC << EOF 20822e4d9fb1Saurel32#include <brlapi.h> 2083832ce9c2SScott Wood#include <stddef.h> 20842e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } 20852e4d9fb1Saurel32EOF 208652166aa0SJuan Quintela if compile_prog "" "$brlapi_libs" ; then 20872e4d9fb1Saurel32 brlapi=yes 2088264606b3SJuan Quintela libs_softmmu="$brlapi_libs $libs_softmmu" 20894ffcedb6SJuan Quintela else 20904ffcedb6SJuan Quintela if test "$brlapi" = "yes" ; then 20914ffcedb6SJuan Quintela feature_not_found "brlapi" 20924ffcedb6SJuan Quintela fi 20934ffcedb6SJuan Quintela brlapi=no 2094eb82284fSJuan Quintela fi 2095eb82284fSJuan Quintelafi 20962e4d9fb1Saurel32 20972e4d9fb1Saurel32########################################## 20984d3b6f6eSbalrog# curses probe 2099e095e2f3SStefan Weilif test "$mingw32" = "yes" ; then 2100e095e2f3SStefan Weil curses_list="-lpdcurses" 2101e095e2f3SStefan Weilelse 2102acf15c89SVadim Evard curses_list="-lncurses:-lcurses:$($pkg_config --libs ncurses 2>/dev/null)" 2103e095e2f3SStefan Weilfi 21044d3b6f6eSbalrog 2105c584a6d0SJuan Quintelaif test "$curses" != "no" ; then 2106c584a6d0SJuan Quintela curses_found=no 21074d3b6f6eSbalrog cat > $TMPC << EOF 21084d3b6f6eSbalrog#include <curses.h> 2109ef9a2524SStefan Weilint main(void) { 2110ef9a2524SStefan Weil const char *s = curses_version(); 2111ef9a2524SStefan Weil resize_term(0, 0); 2112ef9a2524SStefan Weil return s != 0; 2113ef9a2524SStefan Weil} 21144d3b6f6eSbalrogEOF 2115ecbe251fSVadim Evard IFS=: 21164f78ef9aSJuan Quintela for curses_lib in $curses_list; do 2117ecbe251fSVadim Evard unset IFS 21184f78ef9aSJuan Quintela if compile_prog "" "$curses_lib" ; then 2119c584a6d0SJuan Quintela curses_found=yes 21204f78ef9aSJuan Quintela libs_softmmu="$curses_lib $libs_softmmu" 21214f78ef9aSJuan Quintela break 21224d3b6f6eSbalrog fi 21234f78ef9aSJuan Quintela done 2124ecbe251fSVadim Evard unset IFS 2125c584a6d0SJuan Quintela if test "$curses_found" = "yes" ; then 2126c584a6d0SJuan Quintela curses=yes 2127c584a6d0SJuan Quintela else 2128c584a6d0SJuan Quintela if test "$curses" = "yes" ; then 2129c584a6d0SJuan Quintela feature_not_found "curses" 2130c584a6d0SJuan Quintela fi 2131c584a6d0SJuan Quintela curses=no 2132c584a6d0SJuan Quintela fi 21334f78ef9aSJuan Quintelafi 21344d3b6f6eSbalrog 2135414f0dabSblueswir1########################################## 2136769ce76dSAlexander Graf# curl probe 2137769ce76dSAlexander Graf 2138a8bd70adSPaolo Bonziniif $pkg_config libcurl --modversion >/dev/null 2>&1; then 2139a8bd70adSPaolo Bonzini curlconfig="$pkg_config libcurl" 21404e2b0658SPaolo Bonzinielse 21414e2b0658SPaolo Bonzini curlconfig=curl-config 21424e2b0658SPaolo Bonzinifi 21434e2b0658SPaolo Bonzini 2144788c8196SJuan Quintelaif test "$curl" != "no" ; then 2145769ce76dSAlexander Graf cat > $TMPC << EOF 2146769ce76dSAlexander Graf#include <curl/curl.h> 21470b862cedSPeter Maydellint main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; } 2148769ce76dSAlexander GrafEOF 21494e2b0658SPaolo Bonzini curl_cflags=`$curlconfig --cflags 2>/dev/null` 21504e2b0658SPaolo Bonzini curl_libs=`$curlconfig --libs 2>/dev/null` 2151b1d5a277SJuan Quintela if compile_prog "$curl_cflags" "$curl_libs" ; then 2152769ce76dSAlexander Graf curl=yes 2153f0302935SJuan Quintela libs_tools="$curl_libs $libs_tools" 2154f0302935SJuan Quintela libs_softmmu="$curl_libs $libs_softmmu" 2155788c8196SJuan Quintela else 2156788c8196SJuan Quintela if test "$curl" = "yes" ; then 2157788c8196SJuan Quintela feature_not_found "curl" 2158788c8196SJuan Quintela fi 2159788c8196SJuan Quintela curl=no 2160769ce76dSAlexander Graf fi 2161769ce76dSAlexander Graffi # test "$curl" 2162769ce76dSAlexander Graf 2163769ce76dSAlexander Graf########################################## 2164fb599c9aSbalrog# bluez support probe 2165a20a6f46SJuan Quintelaif test "$bluez" != "no" ; then 2166e820e3f4Sbalrog cat > $TMPC << EOF 2167e820e3f4Sbalrog#include <bluetooth/bluetooth.h> 2168e820e3f4Sbalrogint main(void) { return bt_error(0); } 2169e820e3f4SbalrogEOF 2170a8bd70adSPaolo Bonzini bluez_cflags=`$pkg_config --cflags bluez 2> /dev/null` 2171a8bd70adSPaolo Bonzini bluez_libs=`$pkg_config --libs bluez 2> /dev/null` 217252166aa0SJuan Quintela if compile_prog "$bluez_cflags" "$bluez_libs" ; then 2173a20a6f46SJuan Quintela bluez=yes 2174e482d56aSJuan Quintela libs_softmmu="$bluez_libs $libs_softmmu" 2175e820e3f4Sbalrog else 2176a20a6f46SJuan Quintela if test "$bluez" = "yes" ; then 2177a20a6f46SJuan Quintela feature_not_found "bluez" 2178a20a6f46SJuan Quintela fi 2179e820e3f4Sbalrog bluez="no" 2180e820e3f4Sbalrog fi 2181fb599c9aSbalrogfi 2182fb599c9aSbalrog 2183fb599c9aSbalrog########################################## 2184e18df141SAnthony Liguori# glib support probe 2185a52d28afSPaolo Bonzini 2186a52d28afSPaolo Bonziniif test "$mingw32" = yes; then 2187a52d28afSPaolo Bonzini # g_poll is required in order to integrate with the glib main loop. 2188a52d28afSPaolo Bonzini glib_req_ver=2.20 2189a52d28afSPaolo Bonzinielse 2190a52d28afSPaolo Bonzini glib_req_ver=2.12 2191a52d28afSPaolo Bonzinifi 2192a52d28afSPaolo Bonziniif $pkg_config --atleast-version=$glib_req_ver gthread-2.0 > /dev/null 2>&1 2193a52d28afSPaolo Bonzinithen 21944b76a481SStefan Hajnoczi glib_cflags=`$pkg_config --cflags gthread-2.0 2>/dev/null` 21954b76a481SStefan Hajnoczi glib_libs=`$pkg_config --libs gthread-2.0 2>/dev/null` 219614015304SAnthony Liguori LIBS="$glib_libs $LIBS" 2197957f1f99SMichael Roth libs_qga="$glib_libs $libs_qga" 2198e18df141SAnthony Liguorielse 2199a52d28afSPaolo Bonzini echo "glib-$glib_req_ver required to compile QEMU" 2200e18df141SAnthony Liguori exit 1 2201e18df141SAnthony Liguorifi 2202e18df141SAnthony Liguori 2203e18df141SAnthony Liguori########################################## 2204e2134eb9SGerd Hoffmann# pixman support probe 2205e2134eb9SGerd Hoffmann 2206e2134eb9SGerd Hoffmannif test "$pixman" = ""; then 220774880fe2SRobert Schiele if test "$want_tools" = "no" -a "$softmmu" = "no"; then 220874880fe2SRobert Schiele pixman="none" 220974880fe2SRobert Schiele elif $pkg_config pixman-1 > /dev/null 2>&1; then 2210e2134eb9SGerd Hoffmann pixman="system" 2211e2134eb9SGerd Hoffmann else 2212e2134eb9SGerd Hoffmann pixman="internal" 2213e2134eb9SGerd Hoffmann fi 2214e2134eb9SGerd Hoffmannfi 221574880fe2SRobert Schieleif test "$pixman" = "none"; then 221674880fe2SRobert Schiele if test "$want_tools" != "no" -o "$softmmu" != "no"; then 221774880fe2SRobert Schiele echo "ERROR: pixman disabled but system emulation or tools build" 221874880fe2SRobert Schiele echo " enabled. You can turn off pixman only if you also" 221974880fe2SRobert Schiele echo " disable all system emulation targets and the tools" 222074880fe2SRobert Schiele echo " build with '--disable-tools --disable-system'." 222174880fe2SRobert Schiele exit 1 222274880fe2SRobert Schiele fi 222374880fe2SRobert Schiele pixman_cflags= 222474880fe2SRobert Schiele pixman_libs= 222574880fe2SRobert Schieleelif test "$pixman" = "system"; then 2226e2134eb9SGerd Hoffmann pixman_cflags=`$pkg_config --cflags pixman-1 2>/dev/null` 2227e2134eb9SGerd Hoffmann pixman_libs=`$pkg_config --libs pixman-1 2>/dev/null` 2228e2134eb9SGerd Hoffmannelse 2229e2134eb9SGerd Hoffmann if test ! -d ${source_path}/pixman/pixman; then 2230cb1d40d7SGerd Hoffmann echo "ERROR: pixman not present. Your options:" 2231eac29d87SStefan Weil echo " (1) Preferred: Install the pixman devel package (any recent" 2232e2134eb9SGerd Hoffmann echo " distro should have packages as Xorg needs pixman too)." 2233e2134eb9SGerd Hoffmann echo " (2) Fetch the pixman submodule, using:" 2234e2134eb9SGerd Hoffmann echo " git submodule update --init pixman" 2235e2134eb9SGerd Hoffmann exit 1 2236e2134eb9SGerd Hoffmann fi 22375ca9388aSGerd Hoffmann mkdir -p pixman/pixman 22385ca9388aSGerd Hoffmann pixman_cflags="-I\$(SRC_PATH)/pixman/pixman -I\$(BUILD_DIR)/pixman/pixman" 22395ca9388aSGerd Hoffmann pixman_libs="-L\$(BUILD_DIR)/pixman/pixman/.libs -lpixman-1" 2240e2134eb9SGerd Hoffmannfi 2241e2134eb9SGerd Hoffmann 2242e2134eb9SGerd Hoffmann########################################## 224317bff52bSM. Mohan Kumar# libcap probe 224417bff52bSM. Mohan Kumar 224517bff52bSM. Mohan Kumarif test "$cap" != "no" ; then 224617bff52bSM. Mohan Kumar cat > $TMPC <<EOF 224717bff52bSM. Mohan Kumar#include <stdio.h> 224817bff52bSM. Mohan Kumar#include <sys/capability.h> 2249cc939743SStefan Weilint main(void) { cap_t caps; caps = cap_init(); return caps != NULL; } 225017bff52bSM. Mohan KumarEOF 225117bff52bSM. Mohan Kumar if compile_prog "" "-lcap" ; then 225217bff52bSM. Mohan Kumar cap=yes 225317bff52bSM. Mohan Kumar else 225417bff52bSM. Mohan Kumar cap=no 225517bff52bSM. Mohan Kumar fi 225617bff52bSM. Mohan Kumarfi 225717bff52bSM. Mohan Kumar 225817bff52bSM. Mohan Kumar########################################## 2259e5d355d1Saliguori# pthread probe 22604b29ec41SBradPTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2" 22613c529d93Saliguori 2262e5d355d1Saliguoripthread=no 2263414f0dabSblueswir1cat > $TMPC << EOF 22643c529d93Saliguori#include <pthread.h> 22657a42bbe4SStefan Weilstatic void *f(void *p) { return NULL; } 22667a42bbe4SStefan Weilint main(void) { 22677a42bbe4SStefan Weil pthread_t thread; 22687a42bbe4SStefan Weil pthread_create(&thread, 0, f, 0); 22697a42bbe4SStefan Weil return 0; 22707a42bbe4SStefan Weil} 2271414f0dabSblueswir1EOF 2272bd00d539SAndreas Färberif compile_prog "" "" ; then 2273bd00d539SAndreas Färber pthread=yes 2274bd00d539SAndreas Färberelse 2275de65fe0fSSebastian Herbszt for pthread_lib in $PTHREADLIBS_LIST; do 227652166aa0SJuan Quintela if compile_prog "" "$pthread_lib" ; then 2277e5d355d1Saliguori pthread=yes 2278e3c56761SPeter Portante found=no 2279e3c56761SPeter Portante for lib_entry in $LIBS; do 2280e3c56761SPeter Portante if test "$lib_entry" = "$pthread_lib"; then 2281e3c56761SPeter Portante found=yes 2282e3c56761SPeter Portante break 2283e3c56761SPeter Portante fi 2284e3c56761SPeter Portante done 2285e3c56761SPeter Portante if test "$found" = "no"; then 22865572b539SJuan Quintela LIBS="$pthread_lib $LIBS" 2287e3c56761SPeter Portante fi 2288de65fe0fSSebastian Herbszt break 2289414f0dabSblueswir1 fi 2290de65fe0fSSebastian Herbszt done 2291bd00d539SAndreas Färberfi 2292414f0dabSblueswir1 22934617e593SAnthony Liguoriif test "$mingw32" != yes -a "$pthread" = no; then 22944dd75c70SChristoph Hellwig echo 22954dd75c70SChristoph Hellwig echo "Error: pthread check failed" 22964dd75c70SChristoph Hellwig echo "Make sure to have the pthread libs and headers installed." 22974dd75c70SChristoph Hellwig echo 22984dd75c70SChristoph Hellwig exit 1 2299e5d355d1Saliguorifi 2300e5d355d1Saliguori 2301bf9298b9Saliguori########################################## 2302f27aaf4bSChristian Brunner# rbd probe 2303f27aaf4bSChristian Brunnerif test "$rbd" != "no" ; then 2304f27aaf4bSChristian Brunner cat > $TMPC <<EOF 2305f27aaf4bSChristian Brunner#include <stdio.h> 2306ad32e9c0SJosh Durgin#include <rbd/librbd.h> 2307f27aaf4bSChristian Brunnerint main(void) { 2308ad32e9c0SJosh Durgin rados_t cluster; 2309ad32e9c0SJosh Durgin rados_create(&cluster, NULL); 2310f27aaf4bSChristian Brunner return 0; 2311f27aaf4bSChristian Brunner} 2312f27aaf4bSChristian BrunnerEOF 2313ad32e9c0SJosh Durgin rbd_libs="-lrbd -lrados" 2314f27aaf4bSChristian Brunner if compile_prog "" "$rbd_libs" ; then 2315f27aaf4bSChristian Brunner rbd=yes 2316f27aaf4bSChristian Brunner libs_tools="$rbd_libs $libs_tools" 2317f27aaf4bSChristian Brunner libs_softmmu="$rbd_libs $libs_softmmu" 2318f27aaf4bSChristian Brunner else 2319f27aaf4bSChristian Brunner if test "$rbd" = "yes" ; then 2320f27aaf4bSChristian Brunner feature_not_found "rados block device" 2321f27aaf4bSChristian Brunner fi 2322f27aaf4bSChristian Brunner rbd=no 2323f27aaf4bSChristian Brunner fi 2324f27aaf4bSChristian Brunnerfi 2325f27aaf4bSChristian Brunner 2326f27aaf4bSChristian Brunner########################################## 23275c6c3a6cSChristoph Hellwig# linux-aio probe 23285c6c3a6cSChristoph Hellwig 23295c6c3a6cSChristoph Hellwigif test "$linux_aio" != "no" ; then 23305c6c3a6cSChristoph Hellwig cat > $TMPC <<EOF 23315c6c3a6cSChristoph Hellwig#include <libaio.h> 23325c6c3a6cSChristoph Hellwig#include <sys/eventfd.h> 2333832ce9c2SScott Wood#include <stddef.h> 23345c6c3a6cSChristoph Hellwigint main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; } 23355c6c3a6cSChristoph HellwigEOF 23365c6c3a6cSChristoph Hellwig if compile_prog "" "-laio" ; then 23375c6c3a6cSChristoph Hellwig linux_aio=yes 2338048d179fSPaul Brook libs_softmmu="$libs_softmmu -laio" 2339048d179fSPaul Brook libs_tools="$libs_tools -laio" 23405c6c3a6cSChristoph Hellwig else 23415c6c3a6cSChristoph Hellwig if test "$linux_aio" = "yes" ; then 23425c6c3a6cSChristoph Hellwig feature_not_found "linux AIO" 23435c6c3a6cSChristoph Hellwig fi 23443cfcae3cSLuiz Capitulino linux_aio=no 23455c6c3a6cSChristoph Hellwig fi 23465c6c3a6cSChristoph Hellwigfi 23475c6c3a6cSChristoph Hellwig 23485c6c3a6cSChristoph Hellwig########################################## 2349583f6e7bSStefan Hajnoczi# adjust virtio-blk-data-plane based on linux-aio 2350583f6e7bSStefan Hajnoczi 2351583f6e7bSStefan Hajnocziif test "$virtio_blk_data_plane" = "yes" -a \ 2352583f6e7bSStefan Hajnoczi "$linux_aio" != "yes" ; then 2353583f6e7bSStefan Hajnoczi echo "Error: virtio-blk-data-plane requires Linux AIO, please try --enable-linux-aio" 2354583f6e7bSStefan Hajnoczi exit 1 2355583f6e7bSStefan Hajnoczielif test -z "$virtio_blk_data_plane" ; then 2356583f6e7bSStefan Hajnoczi virtio_blk_data_plane=$linux_aio 2357583f6e7bSStefan Hajnoczifi 2358583f6e7bSStefan Hajnoczi 2359583f6e7bSStefan Hajnoczi########################################## 2360758e8e38SVenkateswararao Jujjuri (JV)# attr probe 2361758e8e38SVenkateswararao Jujjuri (JV) 2362758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" != "no" ; then 2363758e8e38SVenkateswararao Jujjuri (JV) cat > $TMPC <<EOF 2364758e8e38SVenkateswararao Jujjuri (JV)#include <stdio.h> 2365758e8e38SVenkateswararao Jujjuri (JV)#include <sys/types.h> 2366f2338fb4SPavel Borzenkov#ifdef CONFIG_LIBATTR 2367f2338fb4SPavel Borzenkov#include <attr/xattr.h> 2368f2338fb4SPavel Borzenkov#else 23694f26f2b6SAvi Kivity#include <sys/xattr.h> 2370f2338fb4SPavel Borzenkov#endif 2371758e8e38SVenkateswararao Jujjuri (JV)int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; } 2372758e8e38SVenkateswararao Jujjuri (JV)EOF 23734f26f2b6SAvi Kivity if compile_prog "" "" ; then 23744f26f2b6SAvi Kivity attr=yes 23754f26f2b6SAvi Kivity # Older distros have <attr/xattr.h>, and need -lattr: 2376f2338fb4SPavel Borzenkov elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then 2377758e8e38SVenkateswararao Jujjuri (JV) attr=yes 2378758e8e38SVenkateswararao Jujjuri (JV) LIBS="-lattr $LIBS" 23794f26f2b6SAvi Kivity libattr=yes 2380758e8e38SVenkateswararao Jujjuri (JV) else 2381758e8e38SVenkateswararao Jujjuri (JV) if test "$attr" = "yes" ; then 2382758e8e38SVenkateswararao Jujjuri (JV) feature_not_found "ATTR" 2383758e8e38SVenkateswararao Jujjuri (JV) fi 2384758e8e38SVenkateswararao Jujjuri (JV) attr=no 2385758e8e38SVenkateswararao Jujjuri (JV) fi 2386758e8e38SVenkateswararao Jujjuri (JV)fi 2387758e8e38SVenkateswararao Jujjuri (JV) 2388758e8e38SVenkateswararao Jujjuri (JV)########################################## 2389bf9298b9Saliguori# iovec probe 2390bf9298b9Saliguoricat > $TMPC <<EOF 2391db34f0b3Sblueswir1#include <sys/types.h> 2392bf9298b9Saliguori#include <sys/uio.h> 2393db34f0b3Sblueswir1#include <unistd.h> 2394f91f9beeSStefan Weilint main(void) { return sizeof(struct iovec); } 2395bf9298b9SaliguoriEOF 2396bf9298b9Saliguoriiovec=no 239752166aa0SJuan Quintelaif compile_prog "" "" ; then 2398bf9298b9Saliguori iovec=yes 2399bf9298b9Saliguorifi 2400bf9298b9Saliguori 2401f652e6afSaurel32########################################## 2402ceb42de8Saliguori# preadv probe 2403ceb42de8Saliguoricat > $TMPC <<EOF 2404ceb42de8Saliguori#include <sys/types.h> 2405ceb42de8Saliguori#include <sys/uio.h> 2406ceb42de8Saliguori#include <unistd.h> 2407c075a723SBlue Swirlint main(void) { return preadv(0, 0, 0, 0); } 2408ceb42de8SaliguoriEOF 2409ceb42de8Saliguoripreadv=no 241052166aa0SJuan Quintelaif compile_prog "" "" ; then 2411ceb42de8Saliguori preadv=yes 2412ceb42de8Saliguorifi 2413ceb42de8Saliguori 2414ceb42de8Saliguori########################################## 2415f652e6afSaurel32# fdt probe 24162df87df7SJuan Quintelaif test "$fdt" != "no" ; then 2417b41af4baSJuan Quintela fdt_libs="-lfdt" 2418f652e6afSaurel32 cat > $TMPC << EOF 2419f652e6afSaurel32int main(void) { return 0; } 2420f652e6afSaurel32EOF 242152166aa0SJuan Quintela if compile_prog "" "$fdt_libs" ; then 2422f652e6afSaurel32 fdt=yes 2423320ba5feSPaolo Bonzini libs_softmmu="$libs_softmmu $fdt_libs" 24242df87df7SJuan Quintela else 24252df87df7SJuan Quintela if test "$fdt" = "yes" ; then 24262df87df7SJuan Quintela feature_not_found "fdt" 24272df87df7SJuan Quintela fi 2428de3a354aSMichael Walle fdt_libs= 24292df87df7SJuan Quintela fdt=no 2430f652e6afSaurel32 fi 2431f652e6afSaurel32fi 2432f652e6afSaurel32 243320ff075bSMichael Walle########################################## 243420ff075bSMichael Walle# opengl probe, used by milkymist-tmu2 243520ff075bSMichael Walleif test "$opengl" != "no" ; then 243684208085SRichard Henderson opengl_libs="-lGL -lX11" 243720ff075bSMichael Walle cat > $TMPC << EOF 243820ff075bSMichael Walle#include <X11/Xlib.h> 243920ff075bSMichael Walle#include <GL/gl.h> 244020ff075bSMichael Walle#include <GL/glx.h> 244184972cbbSStefan Weilint main(void) { return GL_VERSION != 0; } 244220ff075bSMichael WalleEOF 244320ff075bSMichael Walle if compile_prog "" "-lGL" ; then 244420ff075bSMichael Walle opengl=yes 244520ff075bSMichael Walle else 244620ff075bSMichael Walle if test "$opengl" = "yes" ; then 244720ff075bSMichael Walle feature_not_found "opengl" 244820ff075bSMichael Walle fi 2449de3a354aSMichael Walle opengl_libs= 245020ff075bSMichael Walle opengl=no 245120ff075bSMichael Walle fi 245220ff075bSMichael Wallefi 245320ff075bSMichael Walle 2454eb100396SBharata B Rao########################################## 2455eb100396SBharata B Rao# glusterfs probe 2456eb100396SBharata B Raoif test "$glusterfs" != "no" ; then 2457eb100396SBharata B Rao cat > $TMPC <<EOF 2458eb100396SBharata B Rao#include <glusterfs/api/glfs.h> 2459eb100396SBharata B Raoint main(void) { 2460eb100396SBharata B Rao (void) glfs_new("volume"); 2461eb100396SBharata B Rao return 0; 2462eb100396SBharata B Rao} 2463eb100396SBharata B RaoEOF 2464eb100396SBharata B Rao glusterfs_libs="-lgfapi -lgfrpc -lgfxdr" 2465eb100396SBharata B Rao if compile_prog "" "$glusterfs_libs" ; then 2466eb100396SBharata B Rao glusterfs=yes 2467eb100396SBharata B Rao libs_tools="$glusterfs_libs $libs_tools" 2468eb100396SBharata B Rao libs_softmmu="$glusterfs_libs $libs_softmmu" 2469eb100396SBharata B Rao else 2470eb100396SBharata B Rao if test "$glusterfs" = "yes" ; then 2471eb100396SBharata B Rao feature_not_found "GlusterFS backend support" 2472eb100396SBharata B Rao fi 2473eb100396SBharata B Rao glusterfs=no 2474eb100396SBharata B Rao fi 2475eb100396SBharata B Raofi 2476eb100396SBharata B Rao 24773b3f24adSaurel32# 24783b3f24adSaurel32# Check for xxxat() functions when we are building linux-user 24793b3f24adSaurel32# emulator. This is done because older glibc versions don't 24803b3f24adSaurel32# have syscall stubs for these implemented. 24813b3f24adSaurel32# 24823b3f24adSaurel32atfile=no 24833b3f24adSaurel32cat > $TMPC << EOF 24843b3f24adSaurel32#define _ATFILE_SOURCE 24853b3f24adSaurel32#include <sys/types.h> 24863b3f24adSaurel32#include <fcntl.h> 24873b3f24adSaurel32#include <unistd.h> 24883b3f24adSaurel32 24893b3f24adSaurel32int 24903b3f24adSaurel32main(void) 24913b3f24adSaurel32{ 24923b3f24adSaurel32 /* try to unlink nonexisting file */ 24933b3f24adSaurel32 return (unlinkat(AT_FDCWD, "nonexistent_file", 0)); 24943b3f24adSaurel32} 24953b3f24adSaurel32EOF 249652166aa0SJuan Quintelaif compile_prog "" "" ; then 24973b3f24adSaurel32 atfile=yes 24983b3f24adSaurel32fi 24993b3f24adSaurel32 250039386ac7Saurel32# Check for inotify functions when we are building linux-user 25013b3f24adSaurel32# emulator. This is done because older glibc versions don't 25023b3f24adSaurel32# have syscall stubs for these implemented. In that case we 25033b3f24adSaurel32# don't provide them even if kernel supports them. 25043b3f24adSaurel32# 25053b3f24adSaurel32inotify=no 25063b3f24adSaurel32cat > $TMPC << EOF 25073b3f24adSaurel32#include <sys/inotify.h> 25083b3f24adSaurel32 25093b3f24adSaurel32int 25103b3f24adSaurel32main(void) 25113b3f24adSaurel32{ 25123b3f24adSaurel32 /* try to start inotify */ 25138690e420Saurel32 return inotify_init(); 25143b3f24adSaurel32} 25153b3f24adSaurel32EOF 251652166aa0SJuan Quintelaif compile_prog "" "" ; then 25173b3f24adSaurel32 inotify=yes 25183b3f24adSaurel32fi 25193b3f24adSaurel32 2520c05c7a73SRiku Voipioinotify1=no 2521c05c7a73SRiku Voipiocat > $TMPC << EOF 2522c05c7a73SRiku Voipio#include <sys/inotify.h> 2523c05c7a73SRiku Voipio 2524c05c7a73SRiku Voipioint 2525c05c7a73SRiku Voipiomain(void) 2526c05c7a73SRiku Voipio{ 2527c05c7a73SRiku Voipio /* try to start inotify */ 2528c05c7a73SRiku Voipio return inotify_init1(0); 2529c05c7a73SRiku Voipio} 2530c05c7a73SRiku VoipioEOF 2531c05c7a73SRiku Voipioif compile_prog "" "" ; then 2532c05c7a73SRiku Voipio inotify1=yes 2533c05c7a73SRiku Voipiofi 2534c05c7a73SRiku Voipio 2535ebc996f3SRiku Voipio# check if utimensat and futimens are supported 2536ebc996f3SRiku Voipioutimens=no 2537ebc996f3SRiku Voipiocat > $TMPC << EOF 2538ebc996f3SRiku Voipio#define _ATFILE_SOURCE 2539ebc996f3SRiku Voipio#include <stddef.h> 2540ebc996f3SRiku Voipio#include <fcntl.h> 25413014ee00SPeter Maydell#include <sys/stat.h> 2542ebc996f3SRiku Voipio 2543ebc996f3SRiku Voipioint main(void) 2544ebc996f3SRiku Voipio{ 2545ebc996f3SRiku Voipio utimensat(AT_FDCWD, "foo", NULL, 0); 2546ebc996f3SRiku Voipio futimens(0, NULL); 2547ebc996f3SRiku Voipio return 0; 2548ebc996f3SRiku Voipio} 2549ebc996f3SRiku VoipioEOF 255052166aa0SJuan Quintelaif compile_prog "" "" ; then 2551ebc996f3SRiku Voipio utimens=yes 2552ebc996f3SRiku Voipiofi 2553ebc996f3SRiku Voipio 2554099d6b0fSRiku Voipio# check if pipe2 is there 2555099d6b0fSRiku Voipiopipe2=no 2556099d6b0fSRiku Voipiocat > $TMPC << EOF 2557099d6b0fSRiku Voipio#include <unistd.h> 2558099d6b0fSRiku Voipio#include <fcntl.h> 2559099d6b0fSRiku Voipio 2560099d6b0fSRiku Voipioint main(void) 2561099d6b0fSRiku Voipio{ 2562099d6b0fSRiku Voipio int pipefd[2]; 25639bca8162SBruce Rogers return pipe2(pipefd, O_CLOEXEC); 2564099d6b0fSRiku Voipio} 2565099d6b0fSRiku VoipioEOF 256652166aa0SJuan Quintelaif compile_prog "" "" ; then 2567099d6b0fSRiku Voipio pipe2=yes 2568099d6b0fSRiku Voipiofi 2569099d6b0fSRiku Voipio 257040ff6d7eSKevin Wolf# check if accept4 is there 257140ff6d7eSKevin Wolfaccept4=no 257240ff6d7eSKevin Wolfcat > $TMPC << EOF 257340ff6d7eSKevin Wolf#include <sys/socket.h> 257440ff6d7eSKevin Wolf#include <stddef.h> 257540ff6d7eSKevin Wolf 257640ff6d7eSKevin Wolfint main(void) 257740ff6d7eSKevin Wolf{ 257840ff6d7eSKevin Wolf accept4(0, NULL, NULL, SOCK_CLOEXEC); 257940ff6d7eSKevin Wolf return 0; 258040ff6d7eSKevin Wolf} 258140ff6d7eSKevin WolfEOF 258240ff6d7eSKevin Wolfif compile_prog "" "" ; then 258340ff6d7eSKevin Wolf accept4=yes 258440ff6d7eSKevin Wolffi 258540ff6d7eSKevin Wolf 25863ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time. 25873ce34dfbSvibisreenivasansplice=no 25883ce34dfbSvibisreenivasancat > $TMPC << EOF 25893ce34dfbSvibisreenivasan#include <unistd.h> 25903ce34dfbSvibisreenivasan#include <fcntl.h> 25913ce34dfbSvibisreenivasan#include <limits.h> 25923ce34dfbSvibisreenivasan 25933ce34dfbSvibisreenivasanint main(void) 25943ce34dfbSvibisreenivasan{ 259566ea0f22SStefan Weil int len, fd = 0; 25963ce34dfbSvibisreenivasan len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK); 25973ce34dfbSvibisreenivasan splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE); 25983ce34dfbSvibisreenivasan return 0; 25993ce34dfbSvibisreenivasan} 26003ce34dfbSvibisreenivasanEOF 260152166aa0SJuan Quintelaif compile_prog "" "" ; then 26023ce34dfbSvibisreenivasan splice=yes 26033ce34dfbSvibisreenivasanfi 26043ce34dfbSvibisreenivasan 2605dcc38d1cSMarcelo Tosatti########################################## 2606dcc38d1cSMarcelo Tosatti# signalfd probe 2607dcc38d1cSMarcelo Tosattisignalfd="no" 2608dcc38d1cSMarcelo Tosatticat > $TMPC << EOF 2609dcc38d1cSMarcelo Tosatti#include <unistd.h> 2610dcc38d1cSMarcelo Tosatti#include <sys/syscall.h> 2611dcc38d1cSMarcelo Tosatti#include <signal.h> 2612dcc38d1cSMarcelo Tosattiint main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); } 2613dcc38d1cSMarcelo TosattiEOF 2614dcc38d1cSMarcelo Tosatti 2615dcc38d1cSMarcelo Tosattiif compile_prog "" "" ; then 2616dcc38d1cSMarcelo Tosatti signalfd=yes 2617dcc38d1cSMarcelo Tosattifi 2618dcc38d1cSMarcelo Tosatti 2619c2882b96SRiku Voipio# check if eventfd is supported 2620c2882b96SRiku Voipioeventfd=no 2621c2882b96SRiku Voipiocat > $TMPC << EOF 2622c2882b96SRiku Voipio#include <sys/eventfd.h> 2623c2882b96SRiku Voipio 2624c2882b96SRiku Voipioint main(void) 2625c2882b96SRiku Voipio{ 262655cc7f3eSStefan Weil return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); 2627c2882b96SRiku Voipio} 2628c2882b96SRiku VoipioEOF 2629c2882b96SRiku Voipioif compile_prog "" "" ; then 2630c2882b96SRiku Voipio eventfd=yes 2631c2882b96SRiku Voipiofi 2632c2882b96SRiku Voipio 2633d0927938SUlrich Hecht# check for fallocate 2634d0927938SUlrich Hechtfallocate=no 2635d0927938SUlrich Hechtcat > $TMPC << EOF 2636d0927938SUlrich Hecht#include <fcntl.h> 2637d0927938SUlrich Hecht 2638d0927938SUlrich Hechtint main(void) 2639d0927938SUlrich Hecht{ 2640d0927938SUlrich Hecht fallocate(0, 0, 0, 0); 2641d0927938SUlrich Hecht return 0; 2642d0927938SUlrich Hecht} 2643d0927938SUlrich HechtEOF 26448fb03151SPeter Maydellif compile_prog "" "" ; then 2645d0927938SUlrich Hecht fallocate=yes 2646d0927938SUlrich Hechtfi 2647d0927938SUlrich Hecht 26483d4fa43eSKusanagi Kouichi# check for fallocate hole punching 26493d4fa43eSKusanagi Kouichifallocate_punch_hole=no 26503d4fa43eSKusanagi Kouichicat > $TMPC << EOF 26513d4fa43eSKusanagi Kouichi#include <fcntl.h> 26523d4fa43eSKusanagi Kouichi#include <linux/falloc.h> 26533d4fa43eSKusanagi Kouichi 26543d4fa43eSKusanagi Kouichiint main(void) 26553d4fa43eSKusanagi Kouichi{ 26563d4fa43eSKusanagi Kouichi fallocate(0, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, 0, 0); 26573d4fa43eSKusanagi Kouichi return 0; 26583d4fa43eSKusanagi Kouichi} 26593d4fa43eSKusanagi KouichiEOF 26603d4fa43eSKusanagi Kouichiif compile_prog "" "" ; then 26613d4fa43eSKusanagi Kouichi fallocate_punch_hole=yes 26623d4fa43eSKusanagi Kouichifi 26633d4fa43eSKusanagi Kouichi 2664c727f47dSPeter Maydell# check for sync_file_range 2665c727f47dSPeter Maydellsync_file_range=no 2666c727f47dSPeter Maydellcat > $TMPC << EOF 2667c727f47dSPeter Maydell#include <fcntl.h> 2668c727f47dSPeter Maydell 2669c727f47dSPeter Maydellint main(void) 2670c727f47dSPeter Maydell{ 2671c727f47dSPeter Maydell sync_file_range(0, 0, 0, 0); 2672c727f47dSPeter Maydell return 0; 2673c727f47dSPeter Maydell} 2674c727f47dSPeter MaydellEOF 26758fb03151SPeter Maydellif compile_prog "" "" ; then 2676c727f47dSPeter Maydell sync_file_range=yes 2677c727f47dSPeter Maydellfi 2678c727f47dSPeter Maydell 2679dace20dcSPeter Maydell# check for linux/fiemap.h and FS_IOC_FIEMAP 2680dace20dcSPeter Maydellfiemap=no 2681dace20dcSPeter Maydellcat > $TMPC << EOF 2682dace20dcSPeter Maydell#include <sys/ioctl.h> 2683dace20dcSPeter Maydell#include <linux/fs.h> 2684dace20dcSPeter Maydell#include <linux/fiemap.h> 2685dace20dcSPeter Maydell 2686dace20dcSPeter Maydellint main(void) 2687dace20dcSPeter Maydell{ 2688dace20dcSPeter Maydell ioctl(0, FS_IOC_FIEMAP, 0); 2689dace20dcSPeter Maydell return 0; 2690dace20dcSPeter Maydell} 2691dace20dcSPeter MaydellEOF 26928fb03151SPeter Maydellif compile_prog "" "" ; then 2693dace20dcSPeter Maydell fiemap=yes 2694dace20dcSPeter Maydellfi 2695dace20dcSPeter Maydell 2696d0927938SUlrich Hecht# check for dup3 2697d0927938SUlrich Hechtdup3=no 2698d0927938SUlrich Hechtcat > $TMPC << EOF 2699d0927938SUlrich Hecht#include <unistd.h> 2700d0927938SUlrich Hecht 2701d0927938SUlrich Hechtint main(void) 2702d0927938SUlrich Hecht{ 2703d0927938SUlrich Hecht dup3(0, 0, 0); 2704d0927938SUlrich Hecht return 0; 2705d0927938SUlrich Hecht} 2706d0927938SUlrich HechtEOF 270778f5d726SJan Kiszkaif compile_prog "" "" ; then 2708d0927938SUlrich Hecht dup3=yes 2709d0927938SUlrich Hechtfi 2710d0927938SUlrich Hecht 27113b6edd16SPeter Maydell# check for epoll support 27123b6edd16SPeter Maydellepoll=no 27133b6edd16SPeter Maydellcat > $TMPC << EOF 27143b6edd16SPeter Maydell#include <sys/epoll.h> 27153b6edd16SPeter Maydell 27163b6edd16SPeter Maydellint main(void) 27173b6edd16SPeter Maydell{ 27183b6edd16SPeter Maydell epoll_create(0); 27193b6edd16SPeter Maydell return 0; 27203b6edd16SPeter Maydell} 27213b6edd16SPeter MaydellEOF 27228fb03151SPeter Maydellif compile_prog "" "" ; then 27233b6edd16SPeter Maydell epoll=yes 27243b6edd16SPeter Maydellfi 27253b6edd16SPeter Maydell 27263b6edd16SPeter Maydell# epoll_create1 and epoll_pwait are later additions 27273b6edd16SPeter Maydell# so we must check separately for their presence 27283b6edd16SPeter Maydellepoll_create1=no 27293b6edd16SPeter Maydellcat > $TMPC << EOF 27303b6edd16SPeter Maydell#include <sys/epoll.h> 27313b6edd16SPeter Maydell 27323b6edd16SPeter Maydellint main(void) 27333b6edd16SPeter Maydell{ 273419e83f6bSPeter Maydell /* Note that we use epoll_create1 as a value, not as 273519e83f6bSPeter Maydell * a function being called. This is necessary so that on 273619e83f6bSPeter Maydell * old SPARC glibc versions where the function was present in 273719e83f6bSPeter Maydell * the library but not declared in the header file we will 273819e83f6bSPeter Maydell * fail the configure check. (Otherwise we will get a compiler 273919e83f6bSPeter Maydell * warning but not an error, and will proceed to fail the 274019e83f6bSPeter Maydell * qemu compile where we compile with -Werror.) 274119e83f6bSPeter Maydell */ 2742c075a723SBlue Swirl return (int)(uintptr_t)&epoll_create1; 27433b6edd16SPeter Maydell} 27443b6edd16SPeter MaydellEOF 27458fb03151SPeter Maydellif compile_prog "" "" ; then 27463b6edd16SPeter Maydell epoll_create1=yes 27473b6edd16SPeter Maydellfi 27483b6edd16SPeter Maydell 27493b6edd16SPeter Maydellepoll_pwait=no 27503b6edd16SPeter Maydellcat > $TMPC << EOF 27513b6edd16SPeter Maydell#include <sys/epoll.h> 27523b6edd16SPeter Maydell 27533b6edd16SPeter Maydellint main(void) 27543b6edd16SPeter Maydell{ 27553b6edd16SPeter Maydell epoll_pwait(0, 0, 0, 0, 0); 27563b6edd16SPeter Maydell return 0; 27573b6edd16SPeter Maydell} 27583b6edd16SPeter MaydellEOF 27598fb03151SPeter Maydellif compile_prog "" "" ; then 27603b6edd16SPeter Maydell epoll_pwait=yes 27613b6edd16SPeter Maydellfi 27623b6edd16SPeter Maydell 2763*a8fd1abaSPeter Maydell# check for sendfile support 2764*a8fd1abaSPeter Maydellsendfile=no 2765*a8fd1abaSPeter Maydellcat > $TMPC << EOF 2766*a8fd1abaSPeter Maydell#include <sys/sendfile.h> 2767*a8fd1abaSPeter Maydell 2768*a8fd1abaSPeter Maydellint main(void) 2769*a8fd1abaSPeter Maydell{ 2770*a8fd1abaSPeter Maydell return sendfile(0, 0, 0, 0); 2771*a8fd1abaSPeter Maydell} 2772*a8fd1abaSPeter MaydellEOF 2773*a8fd1abaSPeter Maydellif compile_prog "" "" ; then 2774*a8fd1abaSPeter Maydell sendfile=yes 2775*a8fd1abaSPeter Maydellfi 2776*a8fd1abaSPeter Maydell 2777cc8ae6deSpbrook# Check if tools are available to build documentation. 2778a25dba17SJuan Quintelaif test "$docs" != "no" ; then 277901668d98SStefan Weil if has makeinfo && has pod2man; then 2780a25dba17SJuan Quintela docs=yes 278183a3ab8bSJuan Quintela else 2782a25dba17SJuan Quintela if test "$docs" = "yes" ; then 2783a25dba17SJuan Quintela feature_not_found "docs" 278483a3ab8bSJuan Quintela fi 2785a25dba17SJuan Quintela docs=no 278683a3ab8bSJuan Quintela fi 2787cc8ae6deSpbrookfi 2788cc8ae6deSpbrook 2789f514f41cSStefan Weil# Search for bswap_32 function 27906ae9a1f4SJuan Quintelabyteswap_h=no 27916ae9a1f4SJuan Quintelacat > $TMPC << EOF 27926ae9a1f4SJuan Quintela#include <byteswap.h> 27936ae9a1f4SJuan Quintelaint main(void) { return bswap_32(0); } 27946ae9a1f4SJuan QuintelaEOF 279552166aa0SJuan Quintelaif compile_prog "" "" ; then 27966ae9a1f4SJuan Quintela byteswap_h=yes 27976ae9a1f4SJuan Quintelafi 27986ae9a1f4SJuan Quintela 279975f13596SStefan Weil# Search for bswap32 function 28006ae9a1f4SJuan Quintelabswap_h=no 28016ae9a1f4SJuan Quintelacat > $TMPC << EOF 28026ae9a1f4SJuan Quintela#include <sys/endian.h> 28036ae9a1f4SJuan Quintela#include <sys/types.h> 28046ae9a1f4SJuan Quintela#include <machine/bswap.h> 28056ae9a1f4SJuan Quintelaint main(void) { return bswap32(0); } 28066ae9a1f4SJuan QuintelaEOF 280752166aa0SJuan Quintelaif compile_prog "" "" ; then 28086ae9a1f4SJuan Quintela bswap_h=yes 28096ae9a1f4SJuan Quintelafi 28106ae9a1f4SJuan Quintela 2811da93a1fdSaliguori########################################## 2812c589b249SRonnie Sahlberg# Do we have libiscsi 2813fa6acb0cSRonnie Sahlberg# We check for iscsi_unmap_sync() to make sure we have a 2814fa6acb0cSRonnie Sahlberg# recent enough version of libiscsi. 2815c589b249SRonnie Sahlbergif test "$libiscsi" != "no" ; then 2816c589b249SRonnie Sahlberg cat > $TMPC << EOF 2817fa6acb0cSRonnie Sahlberg#include <stdio.h> 2818c589b249SRonnie Sahlberg#include <iscsi/iscsi.h> 2819fa6acb0cSRonnie Sahlbergint main(void) { iscsi_unmap_sync(NULL,0,0,0,NULL,0); return 0; } 2820c589b249SRonnie SahlbergEOF 28213c33ea96SPaolo Bonzini if $pkg_config --atleast-version=1.7.0 libiscsi --modversion >/dev/null 2>&1; then 28223c33ea96SPaolo Bonzini libiscsi="yes" 28233c33ea96SPaolo Bonzini libiscsi_cflags=$($pkg_config --cflags libiscsi 2>/dev/null) 28243c33ea96SPaolo Bonzini libiscsi_libs=$($pkg_config --libs libiscsi 2>/dev/null) 28253c33ea96SPaolo Bonzini CFLAGS="$CFLAGS $libiscsi_cflags" 28263c33ea96SPaolo Bonzini LIBS="$LIBS $libiscsi_libs" 28273c33ea96SPaolo Bonzini elif compile_prog "" "-liscsi" ; then 2828c589b249SRonnie Sahlberg libiscsi="yes" 2829c589b249SRonnie Sahlberg LIBS="$LIBS -liscsi" 2830c589b249SRonnie Sahlberg else 2831c589b249SRonnie Sahlberg if test "$libiscsi" = "yes" ; then 2832c589b249SRonnie Sahlberg feature_not_found "libiscsi" 2833c589b249SRonnie Sahlberg fi 2834c589b249SRonnie Sahlberg libiscsi="no" 2835c589b249SRonnie Sahlberg fi 2836c589b249SRonnie Sahlbergfi 2837c589b249SRonnie Sahlberg 2838c589b249SRonnie Sahlberg 2839c589b249SRonnie Sahlberg########################################## 28408bacde8dSNatanael Copa# Do we need libm 28418bacde8dSNatanael Copacat > $TMPC << EOF 28428bacde8dSNatanael Copa#include <math.h> 28438bacde8dSNatanael Copaint main(void) { return isnan(sin(0.0)); } 28448bacde8dSNatanael CopaEOF 28458bacde8dSNatanael Copaif compile_prog "" "" ; then 28468bacde8dSNatanael Copa : 28478bacde8dSNatanael Copaelif compile_prog "" "-lm" ; then 28488bacde8dSNatanael Copa LIBS="-lm $LIBS" 28498bacde8dSNatanael Copa libs_qga="-lm $libs_qga" 28508bacde8dSNatanael Copaelse 28518bacde8dSNatanael Copa echo 28528bacde8dSNatanael Copa echo "Error: libm check failed" 28538bacde8dSNatanael Copa echo 28548bacde8dSNatanael Copa exit 1 28558bacde8dSNatanael Copafi 28568bacde8dSNatanael Copa 28578bacde8dSNatanael Copa########################################## 2858da93a1fdSaliguori# Do we need librt 28598bacde8dSNatanael Copa# uClibc provides 2 versions of clock_gettime(), one with realtime 28608bacde8dSNatanael Copa# support and one without. This means that the clock_gettime() don't 28618bacde8dSNatanael Copa# need -lrt. We still need it for timer_create() so we check for this 28628bacde8dSNatanael Copa# function in addition. 2863da93a1fdSaliguoricat > $TMPC <<EOF 2864da93a1fdSaliguori#include <signal.h> 2865da93a1fdSaliguori#include <time.h> 28668bacde8dSNatanael Copaint main(void) { 28678bacde8dSNatanael Copa timer_create(CLOCK_REALTIME, NULL, NULL); 28688bacde8dSNatanael Copa return clock_gettime(CLOCK_REALTIME, NULL); 28698bacde8dSNatanael Copa} 2870da93a1fdSaliguoriEOF 2871da93a1fdSaliguori 287252166aa0SJuan Quintelaif compile_prog "" "" ; then 287307ffa4bdSJuan Quintela : 28748bacde8dSNatanael Copa# we need pthread for static linking. use previous pthread test result 28758bacde8dSNatanael Copaelif compile_prog "" "-lrt $pthread_lib" ; then 287607ffa4bdSJuan Quintela LIBS="-lrt $LIBS" 28778bacde8dSNatanael Copa libs_qga="-lrt $libs_qga" 2878da93a1fdSaliguorifi 2879da93a1fdSaliguori 288031ff504dSBlue Swirlif test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \ 2881179cf400SAndreas Färber "$aix" != "yes" -a "$haiku" != "yes" ; then 28826362a53fSJuan Quintela libs_softmmu="-lutil $libs_softmmu" 28836362a53fSJuan Quintelafi 28846362a53fSJuan Quintela 2885de5071c5SBlue Swirl########################################## 2886cd4ec0b4SGerd Hoffmann# spice probe 2887cd4ec0b4SGerd Hoffmannif test "$spice" != "no" ; then 2888cd4ec0b4SGerd Hoffmann cat > $TMPC << EOF 2889cd4ec0b4SGerd Hoffmann#include <spice.h> 2890cd4ec0b4SGerd Hoffmannint main(void) { spice_server_new(); return 0; } 2891cd4ec0b4SGerd HoffmannEOF 2892710fc4f5SJiri Denemark spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null) 2893710fc4f5SJiri Denemark spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null) 289467be6726SGerd Hoffmann if $pkg_config --atleast-version=0.12.0 spice-server >/dev/null 2>&1 && \ 2895358689feSMichal Privoznik $pkg_config --atleast-version=0.12.3 spice-protocol > /dev/null 2>&1 && \ 2896cd4ec0b4SGerd Hoffmann compile_prog "$spice_cflags" "$spice_libs" ; then 2897cd4ec0b4SGerd Hoffmann spice="yes" 2898cd4ec0b4SGerd Hoffmann libs_softmmu="$libs_softmmu $spice_libs" 2899cd4ec0b4SGerd Hoffmann QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags" 29002e0e3c39SAlon Levy spice_protocol_version=$($pkg_config --modversion spice-protocol) 29012e0e3c39SAlon Levy spice_server_version=$($pkg_config --modversion spice-server) 2902cd4ec0b4SGerd Hoffmann else 2903cd4ec0b4SGerd Hoffmann if test "$spice" = "yes" ; then 2904cd4ec0b4SGerd Hoffmann feature_not_found "spice" 2905cd4ec0b4SGerd Hoffmann fi 2906cd4ec0b4SGerd Hoffmann spice="no" 2907cd4ec0b4SGerd Hoffmann fi 2908cd4ec0b4SGerd Hoffmannfi 2909cd4ec0b4SGerd Hoffmann 2910111a38b0SRobert Relyea# check for libcacard for smartcard support 2911111a38b0SRobert Relyeasmartcard_cflags="" 2912111a38b0SRobert Relyea# TODO - what's the minimal nss version we support? 2913111a38b0SRobert Relyeaif test "$smartcard_nss" != "no"; then 29145f01e06fSSergei Trofimovich cat > $TMPC << EOF 29155f01e06fSSergei Trofimovich#include <pk11pub.h> 29165f01e06fSSergei Trofimovichint main(void) { PK11_FreeSlot(0); return 0; } 29175f01e06fSSergei TrofimovichEOF 29180b22ef0fSPeter Maydell smartcard_includes="-I\$(SRC_PATH)/libcacard" 29198c741c22SAlon Levy libcacard_libs="$($pkg_config --libs nss 2>/dev/null) $glib_libs" 29208c741c22SAlon Levy libcacard_cflags="$($pkg_config --cflags nss 2>/dev/null) $glib_cflags" 29216ca026cbSPeter Maydell test_cflags="$libcacard_cflags" 29226ca026cbSPeter Maydell # The header files in nss < 3.13.3 have a bug which causes them to 29236ca026cbSPeter Maydell # emit a warning. If we're going to compile QEMU with -Werror, then 29246ca026cbSPeter Maydell # test that the headers don't have this bug. Otherwise we would pass 29256ca026cbSPeter Maydell # the configure test but fail to compile QEMU later. 29266ca026cbSPeter Maydell if test "$werror" = "yes"; then 29276ca026cbSPeter Maydell test_cflags="-Werror $test_cflags" 29286ca026cbSPeter Maydell fi 2929b6fc675bSPaolo Bonzini if test -n "$libtool" && 2930b6fc675bSPaolo Bonzini $pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 && \ 29316ca026cbSPeter Maydell compile_prog "$test_cflags" "$libcacard_libs"; then 29325f01e06fSSergei Trofimovich smartcard_nss="yes" 29330b22ef0fSPeter Maydell QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags" 29340b22ef0fSPeter Maydell QEMU_INCLUDES="$QEMU_INCLUDES $smartcard_includes" 2935ad4cf3f6SPaul Brook libs_softmmu="$libcacard_libs $libs_softmmu" 2936111a38b0SRobert Relyea else 2937111a38b0SRobert Relyea if test "$smartcard_nss" = "yes"; then 2938111a38b0SRobert Relyea feature_not_found "nss" 2939111a38b0SRobert Relyea fi 2940111a38b0SRobert Relyea smartcard_nss="no" 2941111a38b0SRobert Relyea fi 2942111a38b0SRobert Relyeafi 2943111a38b0SRobert Relyea 294469354a83SHans de Goede# check for usbredirparser for usb network redirection support 294569354a83SHans de Goedeif test "$usb_redir" != "no" ; then 2946b2d1fe67SHans de Goede if $pkg_config --atleast-version=0.6 libusbredirparser-0.5 >/dev/null 2>&1 ; then 294769354a83SHans de Goede usb_redir="yes" 29488b626aa7SHans de Goede usb_redir_cflags=$($pkg_config --cflags libusbredirparser-0.5 2>/dev/null) 29498b626aa7SHans de Goede usb_redir_libs=$($pkg_config --libs libusbredirparser-0.5 2>/dev/null) 295069354a83SHans de Goede QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags" 295156ab2ad1SAurelien Jarno libs_softmmu="$libs_softmmu $usb_redir_libs" 295269354a83SHans de Goede else 295369354a83SHans de Goede if test "$usb_redir" = "yes"; then 295469354a83SHans de Goede feature_not_found "usb-redir" 295569354a83SHans de Goede fi 295669354a83SHans de Goede usb_redir="no" 295769354a83SHans de Goede fi 295869354a83SHans de Goedefi 295969354a83SHans de Goede 2960cd4ec0b4SGerd Hoffmann########################################## 2961cd4ec0b4SGerd Hoffmann 2962747bbdf7SBlue Swirl########################################## 29635f6b9e8fSBlue Swirl# check if we have fdatasync 29645f6b9e8fSBlue Swirl 29655f6b9e8fSBlue Swirlfdatasync=no 29665f6b9e8fSBlue Swirlcat > $TMPC << EOF 29675f6b9e8fSBlue Swirl#include <unistd.h> 2968d1722a27SAlexandre Raymondint main(void) { 2969d1722a27SAlexandre Raymond#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0 2970d1722a27SAlexandre Raymondreturn fdatasync(0); 2971d1722a27SAlexandre Raymond#else 2972e172fe11SStefan Weil#error Not supported 2973d1722a27SAlexandre Raymond#endif 2974d1722a27SAlexandre Raymond} 29755f6b9e8fSBlue SwirlEOF 29765f6b9e8fSBlue Swirlif compile_prog "" "" ; then 29775f6b9e8fSBlue Swirl fdatasync=yes 29785f6b9e8fSBlue Swirlfi 29795f6b9e8fSBlue Swirl 298094a420b1SStefan Hajnoczi########################################## 2981e78815a5SAndreas Färber# check if we have madvise 2982e78815a5SAndreas Färber 2983e78815a5SAndreas Färbermadvise=no 2984e78815a5SAndreas Färbercat > $TMPC << EOF 2985e78815a5SAndreas Färber#include <sys/types.h> 2986e78815a5SAndreas Färber#include <sys/mman.h> 2987832ce9c2SScott Wood#include <stddef.h> 2988e78815a5SAndreas Färberint main(void) { return madvise(NULL, 0, MADV_DONTNEED); } 2989e78815a5SAndreas FärberEOF 2990e78815a5SAndreas Färberif compile_prog "" "" ; then 2991e78815a5SAndreas Färber madvise=yes 2992e78815a5SAndreas Färberfi 2993e78815a5SAndreas Färber 2994e78815a5SAndreas Färber########################################## 2995e78815a5SAndreas Färber# check if we have posix_madvise 2996e78815a5SAndreas Färber 2997e78815a5SAndreas Färberposix_madvise=no 2998e78815a5SAndreas Färbercat > $TMPC << EOF 2999e78815a5SAndreas Färber#include <sys/mman.h> 3000832ce9c2SScott Wood#include <stddef.h> 3001e78815a5SAndreas Färberint main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); } 3002e78815a5SAndreas FärberEOF 3003e78815a5SAndreas Färberif compile_prog "" "" ; then 3004e78815a5SAndreas Färber posix_madvise=yes 3005e78815a5SAndreas Färberfi 3006e78815a5SAndreas Färber 3007e78815a5SAndreas Färber########################################## 30081e9737daSRichard Henderson# check if we have usable SIGEV_THREAD_ID 30091e9737daSRichard Henderson 30101e9737daSRichard Hendersonsigev_thread_id=no 30111e9737daSRichard Hendersoncat > $TMPC << EOF 30121e9737daSRichard Henderson#include <signal.h> 30131e9737daSRichard Hendersonint main(void) { 30141e9737daSRichard Henderson struct sigevent ev; 30151e9737daSRichard Henderson ev.sigev_notify = SIGEV_THREAD_ID; 30161e9737daSRichard Henderson ev._sigev_un._tid = 0; 30171e9737daSRichard Henderson asm volatile("" : : "g"(&ev)); 30181e9737daSRichard Henderson return 0; 30191e9737daSRichard Henderson} 30201e9737daSRichard HendersonEOF 30211e9737daSRichard Hendersonif compile_prog "" "" ; then 30221e9737daSRichard Henderson sigev_thread_id=yes 30231e9737daSRichard Hendersonfi 30241e9737daSRichard Henderson 30251e9737daSRichard Henderson########################################## 302694a420b1SStefan Hajnoczi# check if trace backend exists 302794a420b1SStefan Hajnoczi 3028650ab98dSLluís Vilanova$python "$source_path/scripts/tracetool.py" "--backend=$trace_backend" --check-backend > /dev/null 2> /dev/null 302994a420b1SStefan Hajnocziif test "$?" -ne 0 ; then 303094a420b1SStefan Hajnoczi echo 303194a420b1SStefan Hajnoczi echo "Error: invalid trace backend" 303294a420b1SStefan Hajnoczi echo "Please choose a supported trace backend." 303394a420b1SStefan Hajnoczi echo 303494a420b1SStefan Hajnoczi exit 1 303594a420b1SStefan Hajnoczifi 303694a420b1SStefan Hajnoczi 30377e24e92aSStefan Hajnoczi########################################## 30387e24e92aSStefan Hajnoczi# For 'ust' backend, test if ust headers are present 30397e24e92aSStefan Hajnocziif test "$trace_backend" = "ust"; then 30407e24e92aSStefan Hajnoczi cat > $TMPC << EOF 30417e24e92aSStefan Hajnoczi#include <ust/tracepoint.h> 30427e24e92aSStefan Hajnoczi#include <ust/marker.h> 30437e24e92aSStefan Hajnocziint main(void) { return 0; } 30447e24e92aSStefan HajnocziEOF 30457e24e92aSStefan Hajnoczi if compile_prog "" "" ; then 304694b4fefaSLluís Vilanova LIBS="-lust -lurcu-bp $LIBS" 3047c9a2e37cSLluís Vilanova libs_qga="-lust -lurcu-bp $libs_qga" 30487e24e92aSStefan Hajnoczi else 30497e24e92aSStefan Hajnoczi echo 30507e24e92aSStefan Hajnoczi echo "Error: Trace backend 'ust' missing libust header files" 30517e24e92aSStefan Hajnoczi echo 30527e24e92aSStefan Hajnoczi exit 1 30537e24e92aSStefan Hajnoczi fi 30547e24e92aSStefan Hajnoczifi 3055b3d08c02SDaniel P. Berrange 3056b3d08c02SDaniel P. Berrange########################################## 3057b3d08c02SDaniel P. Berrange# For 'dtrace' backend, test if 'dtrace' command is present 3058b3d08c02SDaniel P. Berrangeif test "$trace_backend" = "dtrace"; then 3059b3d08c02SDaniel P. Berrange if ! has 'dtrace' ; then 3060b3d08c02SDaniel P. Berrange echo 3061b3d08c02SDaniel P. Berrange echo "Error: dtrace command is not found in PATH $PATH" 3062b3d08c02SDaniel P. Berrange echo 3063b3d08c02SDaniel P. Berrange exit 1 3064b3d08c02SDaniel P. Berrange fi 3065c276b17dSDaniel P. Berrange trace_backend_stap="no" 3066c276b17dSDaniel P. Berrange if has 'stap' ; then 3067c276b17dSDaniel P. Berrange trace_backend_stap="yes" 3068c276b17dSDaniel P. Berrange fi 3069b3d08c02SDaniel P. Berrangefi 3070b3d08c02SDaniel P. Berrange 30717e24e92aSStefan Hajnoczi########################################## 3072023367e6SWolfgang Mauerer# __sync_fetch_and_and requires at least -march=i486. Many toolchains 3073023367e6SWolfgang Mauerer# use i686 as default anyway, but for those that don't, an explicit 3074023367e6SWolfgang Mauerer# specification is necessary 30751ba16968SStefan Weilif test "$vhost_net" = "yes" && test "$cpu" = "i386"; then 3076023367e6SWolfgang Mauerer cat > $TMPC << EOF 30777ace252aSStefan Weilstatic int sfaa(int *ptr) 3078023367e6SWolfgang Mauerer{ 3079023367e6SWolfgang Mauerer return __sync_fetch_and_and(ptr, 0); 3080023367e6SWolfgang Mauerer} 3081023367e6SWolfgang Mauerer 3082abab1a0fSStefan Weilint main(void) 3083023367e6SWolfgang Mauerer{ 3084023367e6SWolfgang Mauerer int val = 42; 3085023367e6SWolfgang Mauerer sfaa(&val); 3086023367e6SWolfgang Mauerer return val; 3087023367e6SWolfgang Mauerer} 3088023367e6SWolfgang MauererEOF 3089023367e6SWolfgang Mauerer if ! compile_prog "" "" ; then 3090caa50971SPeter Maydell QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS" 3091023367e6SWolfgang Mauerer fi 3092023367e6SWolfgang Mauererfi 3093023367e6SWolfgang Mauerer 3094023367e6SWolfgang Mauerer########################################## 3095519175a2SAlex Barcelo# check and set a backend for coroutine 3096d0e2fce5SAneesh Kumar K.V 3097519175a2SAlex Barcelo# default is ucontext, but always fallback to gthread 3098519175a2SAlex Barcelo# windows autodetected by make 3099519175a2SAlex Barceloif test "$coroutine" = "" -o "$coroutine" = "ucontext"; then 3100d0e2fce5SAneesh Kumar K.V if test "$darwin" != "yes"; then 3101d0e2fce5SAneesh Kumar K.V cat > $TMPC << EOF 3102d0e2fce5SAneesh Kumar K.V#include <ucontext.h> 3103cdf84806SPeter Maydell#ifdef __stub_makecontext 3104cdf84806SPeter Maydell#error Ignoring glibc stub makecontext which will always fail 3105cdf84806SPeter Maydell#endif 310675cafad7SStefan Weilint main(void) { makecontext(0, 0, 0); return 0; } 3107d0e2fce5SAneesh Kumar K.VEOF 3108d0e2fce5SAneesh Kumar K.V if compile_prog "" "" ; then 3109519175a2SAlex Barcelo coroutine_backend=ucontext 3110519175a2SAlex Barcelo else 3111519175a2SAlex Barcelo coroutine_backend=gthread 3112d0e2fce5SAneesh Kumar K.V fi 3113519175a2SAlex Barcelo fi 3114519175a2SAlex Barceloelif test "$coroutine" = "gthread" ; then 3115519175a2SAlex Barcelo coroutine_backend=gthread 3116519175a2SAlex Barceloelif test "$coroutine" = "windows" ; then 3117519175a2SAlex Barcelo coroutine_backend=windows 3118fe91bfa8SAlex Barceloelif test "$coroutine" = "sigaltstack" ; then 3119fe91bfa8SAlex Barcelo coroutine_backend=sigaltstack 3120519175a2SAlex Barceloelse 3121519175a2SAlex Barcelo echo 3122519175a2SAlex Barcelo echo "Error: unknown coroutine backend $coroutine" 3123519175a2SAlex Barcelo echo 3124519175a2SAlex Barcelo exit 1 3125d0e2fce5SAneesh Kumar K.Vfi 3126d0e2fce5SAneesh Kumar K.V 3127d0e2fce5SAneesh Kumar K.V########################################## 3128d2042378SAneesh Kumar K.V# check if we have open_by_handle_at 3129d2042378SAneesh Kumar K.V 31304e1797f9SStefan Weilopen_by_handle_at=no 3131d2042378SAneesh Kumar K.Vcat > $TMPC << EOF 3132d2042378SAneesh Kumar K.V#include <fcntl.h> 3133acc55ba8SStefan Weil#if !defined(AT_EMPTY_PATH) 3134acc55ba8SStefan Weil# error missing definition 3135acc55ba8SStefan Weil#else 313675cafad7SStefan Weilint main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); } 3137acc55ba8SStefan Weil#endif 3138d2042378SAneesh Kumar K.VEOF 3139d2042378SAneesh Kumar K.Vif compile_prog "" "" ; then 3140d2042378SAneesh Kumar K.V open_by_handle_at=yes 3141d2042378SAneesh Kumar K.Vfi 3142d2042378SAneesh Kumar K.V 3143e06a765eSHarsh Prateek Bora######################################## 3144e06a765eSHarsh Prateek Bora# check if we have linux/magic.h 3145e06a765eSHarsh Prateek Bora 3146e06a765eSHarsh Prateek Boralinux_magic_h=no 3147e06a765eSHarsh Prateek Boracat > $TMPC << EOF 3148e06a765eSHarsh Prateek Bora#include <linux/magic.h> 3149e06a765eSHarsh Prateek Boraint main(void) { 315075cafad7SStefan Weil return 0; 3151e06a765eSHarsh Prateek Bora} 3152e06a765eSHarsh Prateek BoraEOF 3153e06a765eSHarsh Prateek Boraif compile_prog "" "" ; then 3154e06a765eSHarsh Prateek Bora linux_magic_h=yes 3155e06a765eSHarsh Prateek Borafi 3156e06a765eSHarsh Prateek Bora 31578ab1bf12SLuiz Capitulino######################################## 3158c95e3080SKevin Wolf# check whether we can disable warning option with a pragma (this is needed 3159c95e3080SKevin Wolf# to silence warnings in the headers of some versions of external libraries). 3160c95e3080SKevin Wolf# This test has to be compiled with -Werror as otherwise an unknown pragma is 3161c95e3080SKevin Wolf# only a warning. 3162c95e3080SKevin Wolf# 3163c95e3080SKevin Wolf# If we can't selectively disable warning in the code, disable -Werror so that 3164c95e3080SKevin Wolf# the build doesn't fail anyway. 3165c95e3080SKevin Wolf 316606d71fa1SPeter Maydellpragma_disable_unused_but_set=no 316706d71fa1SPeter Maydellcat > $TMPC << EOF 316806d71fa1SPeter Maydell#pragma GCC diagnostic ignored "-Wunused-but-set-variable" 3169c95e3080SKevin Wolf#pragma GCC diagnostic ignored "-Wstrict-prototypes" 3170c95e3080SKevin Wolf 317106d71fa1SPeter Maydellint main(void) { 317206d71fa1SPeter Maydell return 0; 317306d71fa1SPeter Maydell} 317406d71fa1SPeter MaydellEOF 317506d71fa1SPeter Maydellif compile_prog "-Werror" "" ; then 3176cc6e3ca9SGerd Hoffmann pragma_diagnostic_available=yes 3177c95e3080SKevin Wolfelse 3178c95e3080SKevin Wolf werror=no 317906d71fa1SPeter Maydellfi 318006d71fa1SPeter Maydell 318106d71fa1SPeter Maydell######################################## 318262fe8331SChristian Borntraeger# check if we have valgrind/valgrind.h and valgrind/memcheck.h 31833f4349dcSKevin Wolf 31843f4349dcSKevin Wolfvalgrind_h=no 31853f4349dcSKevin Wolfcat > $TMPC << EOF 31863f4349dcSKevin Wolf#include <valgrind/valgrind.h> 318762fe8331SChristian Borntraeger#include <valgrind/memcheck.h> 31883f4349dcSKevin Wolfint main(void) { 31893f4349dcSKevin Wolf return 0; 31903f4349dcSKevin Wolf} 31913f4349dcSKevin WolfEOF 31923f4349dcSKevin Wolfif compile_prog "" "" ; then 31933f4349dcSKevin Wolf valgrind_h=yes 31943f4349dcSKevin Wolffi 31953f4349dcSKevin Wolf 31963f4349dcSKevin Wolf######################################## 31978ab1bf12SLuiz Capitulino# check if environ is declared 31988ab1bf12SLuiz Capitulino 31998ab1bf12SLuiz Capitulinohas_environ=no 32008ab1bf12SLuiz Capitulinocat > $TMPC << EOF 32018ab1bf12SLuiz Capitulino#include <unistd.h> 32028ab1bf12SLuiz Capitulinoint main(void) { 3203c075a723SBlue Swirl environ = 0; 32048ab1bf12SLuiz Capitulino return 0; 32058ab1bf12SLuiz Capitulino} 32068ab1bf12SLuiz CapitulinoEOF 32078ab1bf12SLuiz Capitulinoif compile_prog "" "" ; then 32088ab1bf12SLuiz Capitulino has_environ=yes 32098ab1bf12SLuiz Capitulinofi 32108ab1bf12SLuiz Capitulino 321176a347e1SRichard Henderson######################################## 321276a347e1SRichard Henderson# check if cpuid.h is usable. 321376a347e1SRichard Henderson 321476a347e1SRichard Hendersoncpuid_h=no 321576a347e1SRichard Hendersoncat > $TMPC << EOF 321676a347e1SRichard Henderson#include <cpuid.h> 321776a347e1SRichard Hendersonint main(void) { 321876a347e1SRichard Henderson return 0; 321976a347e1SRichard Henderson} 322076a347e1SRichard HendersonEOF 322176a347e1SRichard Hendersonif compile_prog "" "" ; then 322276a347e1SRichard Henderson cpuid_h=yes 322376a347e1SRichard Hendersonfi 322476a347e1SRichard Henderson 3225f540166bSRichard Henderson######################################## 3226f540166bSRichard Henderson# check if __[u]int128_t is usable. 3227f540166bSRichard Henderson 3228f540166bSRichard Hendersonint128=no 3229f540166bSRichard Hendersoncat > $TMPC << EOF 3230f540166bSRichard Henderson__int128_t a; 3231f540166bSRichard Henderson__uint128_t b; 3232f540166bSRichard Hendersonint main (void) { 3233f540166bSRichard Henderson a = a + b; 3234f540166bSRichard Henderson b = a * b; 3235f540166bSRichard Henderson return 0; 3236f540166bSRichard Henderson} 3237f540166bSRichard HendersonEOF 3238f540166bSRichard Hendersonif compile_prog "" "" ; then 3239f540166bSRichard Henderson int128=yes 3240f540166bSRichard Hendersonfi 324176a347e1SRichard Henderson 3242d2042378SAneesh Kumar K.V########################################## 3243e86ecd4bSJuan Quintela# End of CC checks 3244e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs 3245e86ecd4bSJuan Quintela 32461d728c39SBlue Swirlif test "$gcov" = "yes" ; then 32471d728c39SBlue Swirl CFLAGS="-fprofile-arcs -ftest-coverage -g $CFLAGS" 32481d728c39SBlue Swirl LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS" 32491d728c39SBlue Swirlelif test "$debug" = "no" ; then 32508be74dc0SAvi Kivity CFLAGS="-O2 -D_FORTIFY_SOURCE=2 $CFLAGS" 3251e86ecd4bSJuan Quintelafi 3252a316e378SJuan Quintela 32531d728c39SBlue Swirl 325420ff6c80SAnthony Liguori# Disable zero malloc errors for official releases unless explicitly told to 325520ff6c80SAnthony Liguori# enable/disable 325620ff6c80SAnthony Liguoriif test -z "$zero_malloc" ; then 325720ff6c80SAnthony Liguori if test "$z_version" = "50" ; then 325820ff6c80SAnthony Liguori zero_malloc="no" 325920ff6c80SAnthony Liguori else 326020ff6c80SAnthony Liguori zero_malloc="yes" 326120ff6c80SAnthony Liguori fi 326220ff6c80SAnthony Liguorifi 326320ff6c80SAnthony Liguori 32646ca026cbSPeter Maydell# Now we've finished running tests it's OK to add -Werror to the compiler flags 32656ca026cbSPeter Maydellif test "$werror" = "yes"; then 32666ca026cbSPeter Maydell QEMU_CFLAGS="-Werror $QEMU_CFLAGS" 32676ca026cbSPeter Maydellfi 32686ca026cbSPeter Maydell 3269e86ecd4bSJuan Quintelaif test "$solaris" = "no" ; then 3270e86ecd4bSJuan Quintela if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then 32711156c669SJuan Quintela LDFLAGS="-Wl,--warn-common $LDFLAGS" 3272e86ecd4bSJuan Quintela fi 3273e86ecd4bSJuan Quintelafi 3274e86ecd4bSJuan Quintela 327594dd53c5SGerd Hoffmann# test if pod2man has --utf8 option 327694dd53c5SGerd Hoffmannif pod2man --help | grep -q utf8; then 327794dd53c5SGerd Hoffmann POD2MAN="pod2man --utf8" 327894dd53c5SGerd Hoffmannelse 327994dd53c5SGerd Hoffmann POD2MAN="pod2man" 328094dd53c5SGerd Hoffmannfi 328194dd53c5SGerd Hoffmann 3282952afb71SBlue Swirl# Use ASLR, no-SEH and DEP if available 3283952afb71SBlue Swirlif test "$mingw32" = "yes" ; then 3284952afb71SBlue Swirl for flag in --dynamicbase --no-seh --nxcompat; do 3285952afb71SBlue Swirl if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then 3286952afb71SBlue Swirl LDFLAGS="-Wl,$flag $LDFLAGS" 3287952afb71SBlue Swirl fi 3288952afb71SBlue Swirl done 3289952afb71SBlue Swirlfi 3290952afb71SBlue Swirl 329110ea68b3SEduardo Habkostqemu_confdir=$sysconfdir$confsuffix 3292528ae5b8SEduardo Habkostqemu_datadir=$datadir$confsuffix 3293834574eaSAnthony Liguoriqemu_localedir="$datadir/locale" 32945a67135aSbellard 32954b1c11fdSDaniel P. Berrangetools="" 32964b1c11fdSDaniel P. Berrangeif test "$want_tools" = "yes" ; then 3297ca35f780SPaolo Bonzini tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools" 32984b1c11fdSDaniel P. Berrange if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then 32994b1c11fdSDaniel P. Berrange tools="qemu-nbd\$(EXESUF) $tools" 33004b1c11fdSDaniel P. Berrange fi 33014b1c11fdSDaniel P. Berrangefi 33024b1c11fdSDaniel P. Berrangeif test "$softmmu" = yes ; then 3303983eef5aSMeador Inge if test "$virtfs" != no ; then 3304be5ea8edSAnthony Liguori if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then 3305983eef5aSMeador Inge virtfs=yes 330617bff52bSM. Mohan Kumar tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)" 3307983eef5aSMeador Inge else 3308983eef5aSMeador Inge if test "$virtfs" = yes; then 3309263ddcc8SHarsh Prateek Bora echo "VirtFS is supported only on Linux and requires libcap-devel and libattr-devel" 3310263ddcc8SHarsh Prateek Bora exit 1 3311983eef5aSMeador Inge fi 331217500370SAndreas Färber virtfs=no 3313983eef5aSMeador Inge fi 331417bff52bSM. Mohan Kumar fi 3315ca35f780SPaolo Bonzini if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then 3316d138cee9SMichael Roth if [ "$guest_agent" = "yes" ]; then 331748ff7a62SMichael Roth tools="qemu-ga\$(EXESUF) $tools" 3318d138cee9SMichael Roth fi 3319ca35f780SPaolo Bonzini fi 33204b1c11fdSDaniel P. Berrangefi 3321ca35f780SPaolo Bonzini 3322ca35f780SPaolo Bonzini# Mac OS X ships with a broken assembler 3323ca35f780SPaolo Bonziniroms= 3324ca35f780SPaolo Bonziniif test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ 3325ca35f780SPaolo Bonzini "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \ 3326ca35f780SPaolo Bonzini "$softmmu" = yes ; then 3327ca35f780SPaolo Bonzini roms="optionrom" 3328ca35f780SPaolo Bonzinifi 3329d0384d1dSAndreas Färberif test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then 333039ac8455SDavid Gibson roms="$roms spapr-rtas" 333139ac8455SDavid Gibsonfi 3332ca35f780SPaolo Bonzini 33335ca9388aSGerd Hoffmann# add pixman flags after all config tests are done 33345ca9388aSGerd HoffmannQEMU_CFLAGS="$QEMU_CFLAGS $pixman_cflags" 33355ca9388aSGerd Hoffmannlibs_softmmu="$libs_softmmu $pixman_libs" 33365ca9388aSGerd Hoffmann 33377d13299dSbellardecho "Install prefix $prefix" 3338c00b2808SEduardo Habkostecho "BIOS directory `eval echo $qemu_datadir`" 3339f2b9e1e3SPaolo Bonziniecho "binary directory `eval echo $bindir`" 33403aa5d2beSAlon Levyecho "library directory `eval echo $libdir`" 33418bf188aaSMichael Tokarevecho "libexec directory `eval echo $libexecdir`" 33420f94d6daSAlon Levyecho "include directory `eval echo $includedir`" 33431c0fd160SAurelien Jarnoecho "config directory `eval echo $sysconfdir`" 3344785c23aeSLuiz Capitulinoecho "local state directory `eval echo $local_statedir`" 334511d9f695Sbellardif test "$mingw32" = "no" ; then 3346f2b9e1e3SPaolo Bonziniecho "Manual directory `eval echo $mandir`" 334743ce4dfeSbellardecho "ELF interp prefix $interp_prefix" 334811d9f695Sbellardfi 33495a67135aSbellardecho "Source path $source_path" 33507d13299dSbellardecho "C compiler $cc" 335183469015Sbellardecho "Host C compiler $host_cc" 33523c4a4d0dSPeter Maydellecho "Objective-C compiler $objcc" 33530c439cbfSJuan Quintelaecho "CFLAGS $CFLAGS" 3354a558ee17SJuan Quintelaecho "QEMU_CFLAGS $QEMU_CFLAGS" 33550c439cbfSJuan Quintelaecho "LDFLAGS $LDFLAGS" 33567d13299dSbellardecho "make $make" 33576a882643Spbrookecho "install $install" 3358c886edfbSBlue Swirlecho "python $python" 3359e2d8830eSBradif test "$slirp" = "yes" ; then 3360e2d8830eSBrad echo "smbd $smbd" 3361e2d8830eSBradfi 3362a98fd896Sbellardecho "host CPU $cpu" 3363de83cd02Sbellardecho "host big endian $bigendian" 336497a847bcSbellardecho "target list $target_list" 3365ade25b0dSaurel32echo "tcg debug enabled $debug_tcg" 33667d13299dSbellardecho "gprof enabled $gprof" 336703b4fe7dSaliguoriecho "sparse enabled $sparse" 33681625af87Saliguoriecho "strip binaries $strip_opt" 336905c2a3e7Sbellardecho "profiler $profiler" 337043ce4dfeSbellardecho "static build $static" 337185aa5189Sbellardecho "-Werror enabled $werror" 33725b0753e0Sbellardif test "$darwin" = "yes" ; then 33735b0753e0Sbellard echo "Cocoa support $cocoa" 33745b0753e0Sbellardfi 3375e2134eb9SGerd Hoffmannecho "pixman $pixman" 337697a847bcSbellardecho "SDL support $sdl" 3377a4ccabcfSAnthony Liguoriecho "GTK support $gtk" 33784d3b6f6eSbalrogecho "curses support $curses" 3379769ce76dSAlexander Grafecho "curl support $curl" 338067b915a5Sbellardecho "mingw32 support $mingw32" 33810c58ac1cSmalcecho "Audio drivers $audio_drv_list" 33820c58ac1cSmalcecho "Extra audio cards $audio_card_list" 3383eb852011SMarkus Armbrusterecho "Block whitelist $block_drv_whitelist" 33848ff9cbf7Smalcecho "Mixer emulation $mixemu" 3385983eef5aSMeador Ingeecho "VirtFS support $virtfs" 3386821601eaSJes Sorensenecho "VNC support $vnc" 3387821601eaSJes Sorensenif test "$vnc" = "yes" ; then 33888d5d2d4cSths echo "VNC TLS support $vnc_tls" 33892f9606b3Saliguori echo "VNC SASL support $vnc_sasl" 33902f6f5c7aSCorentin Chary echo "VNC JPEG support $vnc_jpeg" 3391efe556adSCorentin Chary echo "VNC PNG support $vnc_png" 33927536ee4bSTim Hardeck echo "VNC WS support $vnc_ws" 3393821601eaSJes Sorensenfi 33943142255cSblueswir1if test -n "$sparc_cpu"; then 33953142255cSblueswir1 echo "Target Sparc Arch $sparc_cpu" 33963142255cSblueswir1fi 3397e37630caSaliguoriecho "xen support $xen" 33982e4d9fb1Saurel32echo "brlapi support $brlapi" 3399a20a6f46SJuan Quintelaecho "bluez support $bluez" 3400a25dba17SJuan Quintelaecho "Documentation $docs" 3401c5937220Spbrook[ ! -z "$uname_release" ] && \ 3402c5937220Spbrookecho "uname -r $uname_release" 3403bd0c5661Spbrookecho "NPTL support $nptl" 3404379f6698SPaul Brookecho "GUEST_BASE $guest_base" 340540d6444eSAvi Kivityecho "PIE $pie" 34068a16d273Sthsecho "vde support $vde" 34075c6c3a6cSChristoph Hellwigecho "Linux AIO support $linux_aio" 3408758e8e38SVenkateswararao Jujjuri (JV)echo "ATTR/XATTR support $attr" 340977755340Sthsecho "Install blobs $blobs" 3410b31a0277SJuan Quintelaecho "KVM support $kvm" 34119195b2c2SStefan Weilecho "TCG interpreter $tcg_interpreter" 3412f652e6afSaurel32echo "fdt support $fdt" 3413ceb42de8Saliguoriecho "preadv support $preadv" 34145f6b9e8fSBlue Swirlecho "fdatasync $fdatasync" 3415e78815a5SAndreas Färberecho "madvise $madvise" 3416e78815a5SAndreas Färberecho "posix_madvise $posix_madvise" 34171e9737daSRichard Hendersonecho "sigev_thread_id $sigev_thread_id" 3418ee682d27SStefan Weilecho "uuid support $uuid" 341947e98658SCorey Bryantecho "libcap-ng support $cap_ng" 3420d5970055SMichael S. Tsirkinecho "vhost-net support $vhost_net" 342194a420b1SStefan Hajnocziecho "Trace backend $trace_backend" 34229410b56cSPrerna Saxenaecho "Trace output file $trace_file-<pid>" 34232e0e3c39SAlon Levyecho "spice support $spice ($spice_protocol_version/$spice_server_version)" 3424f27aaf4bSChristian Brunnerecho "rbd support $rbd" 3425dce512deSChristoph Hellwigecho "xfsctl support $xfs" 3426111a38b0SRobert Relyeaecho "nss used $smartcard_nss" 342769354a83SHans de Goedeecho "usb net redir $usb_redir" 342820ff075bSMichael Walleecho "OpenGL support $opengl" 3429c589b249SRonnie Sahlbergecho "libiscsi support $libiscsi" 3430d138cee9SMichael Rothecho "build guest agent $guest_agent" 3431f794573eSEduardo Otuboecho "seccomp support $seccomp" 3432519175a2SAlex Barceloecho "coroutine backend $coroutine_backend" 3433eb100396SBharata B Raoecho "GlusterFS support $glusterfs" 3434583f6e7bSStefan Hajnocziecho "virtio-blk-data-plane $virtio_blk_data_plane" 34351d728c39SBlue Swirlecho "gcov $gcov_tool" 34361d728c39SBlue Swirlecho "gcov enabled $gcov" 343767b915a5Sbellard 34381ba16968SStefan Weilif test "$sdl_too_old" = "yes"; then 343924b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support" 3440e8cd23deSbellardfi 344197a847bcSbellard 344298ec69acSJuan Quintelaconfig_host_mak="config-host.mak" 34434bf6b55bSJuan Quintelaconfig_host_ld="config-host.ld" 344497a847bcSbellard 3445dbd99ae3SStefan Weilecho "# Automatically generated by configure - do not modify" >config-all-disas.mak 3446dbd99ae3SStefan Weil 344798ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak 344898ec69acSJuan Quintelaprintf "# Configured with:" >> $config_host_mak 344998ec69acSJuan Quintelaprintf " '%s'" "$0" "$@" >> $config_host_mak 345098ec69acSJuan Quintelaecho >> $config_host_mak 345198ec69acSJuan Quintela 3452e6c3b0f7SPaolo Bonziniecho all: >> $config_host_mak 345399d7cc75SPaolo Bonziniecho "prefix=$prefix" >> $config_host_mak 345499d7cc75SPaolo Bonziniecho "bindir=$bindir" >> $config_host_mak 34553aa5d2beSAlon Levyecho "libdir=$libdir" >> $config_host_mak 34568bf188aaSMichael Tokarevecho "libexecdir=$libexecdir" >> $config_host_mak 34570f94d6daSAlon Levyecho "includedir=$includedir" >> $config_host_mak 345899d7cc75SPaolo Bonziniecho "mandir=$mandir" >> $config_host_mak 345999d7cc75SPaolo Bonziniecho "sysconfdir=$sysconfdir" >> $config_host_mak 346022d07038SEduardo Habkostecho "qemu_confdir=$qemu_confdir" >> $config_host_mak 34619afa52ceSEduardo Habkostecho "qemu_datadir=$qemu_datadir" >> $config_host_mak 34629afa52ceSEduardo Habkostecho "qemu_docdir=$qemu_docdir" >> $config_host_mak 3463785c23aeSLuiz Capitulinoecho "qemu_localstatedir=$local_statedir" >> $config_host_mak 3464f354b1a1SMichael Tokarevecho "qemu_helperdir=$libexecdir" >> $config_host_mak 3465f9943cd5SGerd Hoffmannecho "extra_cflags=$EXTRA_CFLAGS" >> $config_host_mak 3466f9943cd5SGerd Hoffmannecho "extra_ldflags=$EXTRA_LDFLAGS" >> $config_host_mak 3467834574eaSAnthony Liguoriecho "qemu_localedir=$qemu_localedir" >> $config_host_mak 3468804edf29SJuan Quintela 346998ec69acSJuan Quintelaecho "ARCH=$ARCH" >> $config_host_mak 3470f8393946Saurel32if test "$debug_tcg" = "yes" ; then 34712358a494SJuan Quintela echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak 3472f8393946Saurel32fi 3473f3d08ee6SPaul Brookif test "$debug" = "yes" ; then 34742358a494SJuan Quintela echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak 3475f3d08ee6SPaul Brookfi 34761625af87Saliguoriif test "$strip_opt" = "yes" ; then 347752ba784dSHollis Blanchard echo "STRIP=${strip}" >> $config_host_mak 34781625af87Saliguorifi 34797d13299dSbellardif test "$bigendian" = "yes" ; then 3480e2542fe2SJuan Quintela echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak 348197a847bcSbellardfi 348267b915a5Sbellardif test "$mingw32" = "yes" ; then 348398ec69acSJuan Quintela echo "CONFIG_WIN32=y" >> $config_host_mak 34849fe6de94SBlue Swirl rc_version=`cat $source_path/VERSION` 34859fe6de94SBlue Swirl version_major=${rc_version%%.*} 34869fe6de94SBlue Swirl rc_version=${rc_version#*.} 34879fe6de94SBlue Swirl version_minor=${rc_version%%.*} 34889fe6de94SBlue Swirl rc_version=${rc_version#*.} 34899fe6de94SBlue Swirl version_subminor=${rc_version%%.*} 34909fe6de94SBlue Swirl version_micro=0 34919fe6de94SBlue Swirl echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak 34929fe6de94SBlue Swirl echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak 3493210fa556Spbrookelse 349435f4df27SJuan Quintela echo "CONFIG_POSIX=y" >> $config_host_mak 3495210fa556Spbrookfi 3496128ab2ffSblueswir1 3497dffcb71cSMark McLoughlinif test "$linux" = "yes" ; then 3498dffcb71cSMark McLoughlin echo "CONFIG_LINUX=y" >> $config_host_mak 3499dffcb71cSMark McLoughlinfi 3500dffcb71cSMark McLoughlin 350183fb7adfSbellardif test "$darwin" = "yes" ; then 350298ec69acSJuan Quintela echo "CONFIG_DARWIN=y" >> $config_host_mak 350383fb7adfSbellardfi 3504b29fe3edSmalc 3505b29fe3edSmalcif test "$aix" = "yes" ; then 350698ec69acSJuan Quintela echo "CONFIG_AIX=y" >> $config_host_mak 3507b29fe3edSmalcfi 3508b29fe3edSmalc 3509ec530c81Sbellardif test "$solaris" = "yes" ; then 351098ec69acSJuan Quintela echo "CONFIG_SOLARIS=y" >> $config_host_mak 35112358a494SJuan Quintela echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak 35120475a5caSths if test "$needs_libsunmath" = "yes" ; then 351375b5a697SJuan Quintela echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak 35140475a5caSths fi 3515ec530c81Sbellardfi 3516179cf400SAndreas Färberif test "$haiku" = "yes" ; then 3517179cf400SAndreas Färber echo "CONFIG_HAIKU=y" >> $config_host_mak 3518179cf400SAndreas Färberfi 351997a847bcSbellardif test "$static" = "yes" ; then 352098ec69acSJuan Quintela echo "CONFIG_STATIC=y" >> $config_host_mak 352197a847bcSbellardfi 35221ba16968SStefan Weilif test "$profiler" = "yes" ; then 35232358a494SJuan Quintela echo "CONFIG_PROFILER=y" >> $config_host_mak 352405c2a3e7Sbellardfi 3525c20709aaSbellardif test "$slirp" = "yes" ; then 352698ec69acSJuan Quintela echo "CONFIG_SLIRP=y" >> $config_host_mak 3527e2d8830eSBrad echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak 3528c20709aaSbellardfi 35298a16d273Sthsif test "$vde" = "yes" ; then 353098ec69acSJuan Quintela echo "CONFIG_VDE=y" >> $config_host_mak 35318a16d273Sthsfi 353247e98658SCorey Bryantif test "$cap_ng" = "yes" ; then 353347e98658SCorey Bryant echo "CONFIG_LIBCAP=y" >> $config_host_mak 353447e98658SCorey Bryantfi 35350c58ac1cSmalcfor card in $audio_card_list; do 3536bb55b712SStefan Weil def=CONFIG_`echo $card | LC_ALL=C tr '[a-z]' '[A-Z]'` 353798ec69acSJuan Quintela echo "$def=y" >> $config_host_mak 35380c58ac1cSmalcdone 35392358a494SJuan Quintelaecho "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak 35400c58ac1cSmalcfor drv in $audio_drv_list; do 3541bb55b712SStefan Weil def=CONFIG_`echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]'` 354298ec69acSJuan Quintela echo "$def=y" >> $config_host_mak 3543923e4521Smalc if test "$drv" = "fmod"; then 35447aac6cb1SJuan Quintela echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak 3545fb065187Sbellard fi 35460c58ac1cSmalcdone 354767f86e8eSJuan Quintelaif test "$audio_pt_int" = "yes" ; then 354867f86e8eSJuan Quintela echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak 354967f86e8eSJuan Quintelafi 3550d5631638Smalcif test "$audio_win_int" = "yes" ; then 3551d5631638Smalc echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak 3552d5631638Smalcfi 3553eb852011SMarkus Armbrusterecho "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak 35548ff9cbf7Smalcif test "$mixemu" = "yes" ; then 355598ec69acSJuan Quintela echo "CONFIG_MIXEMU=y" >> $config_host_mak 35568ff9cbf7Smalcfi 3557821601eaSJes Sorensenif test "$vnc" = "yes" ; then 3558821601eaSJes Sorensen echo "CONFIG_VNC=y" >> $config_host_mak 3559821601eaSJes Sorensenfi 35608d5d2d4cSthsif test "$vnc_tls" = "yes" ; then 356198ec69acSJuan Quintela echo "CONFIG_VNC_TLS=y" >> $config_host_mak 35628d5d2d4cSthsfi 35632f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then 356498ec69acSJuan Quintela echo "CONFIG_VNC_SASL=y" >> $config_host_mak 35652f9606b3Saliguorifi 3566821601eaSJes Sorensenif test "$vnc_jpeg" = "yes" ; then 35672f6f5c7aSCorentin Chary echo "CONFIG_VNC_JPEG=y" >> $config_host_mak 35682f6f5c7aSCorentin Charyfi 3569821601eaSJes Sorensenif test "$vnc_png" = "yes" ; then 3570efe556adSCorentin Chary echo "CONFIG_VNC_PNG=y" >> $config_host_mak 3571efe556adSCorentin Charyfi 35727536ee4bSTim Hardeckif test "$vnc_ws" = "yes" ; then 35737536ee4bSTim Hardeck echo "CONFIG_VNC_WS=y" >> $config_host_mak 35747536ee4bSTim Hardeck echo "VNC_WS_CFLAGS=$vnc_ws_cflags" >> $config_host_mak 35757536ee4bSTim Hardeckfi 357676655d6dSaliguoriif test "$fnmatch" = "yes" ; then 35772358a494SJuan Quintela echo "CONFIG_FNMATCH=y" >> $config_host_mak 357876655d6dSaliguorifi 3579ee682d27SStefan Weilif test "$uuid" = "yes" ; then 3580ee682d27SStefan Weil echo "CONFIG_UUID=y" >> $config_host_mak 3581ee682d27SStefan Weilfi 3582dce512deSChristoph Hellwigif test "$xfs" = "yes" ; then 3583dce512deSChristoph Hellwig echo "CONFIG_XFS=y" >> $config_host_mak 3584dce512deSChristoph Hellwigfi 3585b1a550a0Spbrookqemu_version=`head $source_path/VERSION` 358698ec69acSJuan Quintelaecho "VERSION=$qemu_version" >>$config_host_mak 35872358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak 358898ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak 358998ec69acSJuan Quintelaecho "TARGET_DIRS=$target_list" >> $config_host_mak 3590a25dba17SJuan Quintelaif [ "$docs" = "yes" ] ; then 359198ec69acSJuan Quintela echo "BUILD_DOCS=yes" >> $config_host_mak 3592cc8ae6deSpbrookfi 35931ac88f28SJuan Quintelaif test "$sdl" = "yes" ; then 359498ec69acSJuan Quintela echo "CONFIG_SDL=y" >> $config_host_mak 35958ad3a7ddSJuan Quintela echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak 359649ecc3faSbellardfi 359749ecc3faSbellardif test "$cocoa" = "yes" ; then 359898ec69acSJuan Quintela echo "CONFIG_COCOA=y" >> $config_host_mak 359949ecc3faSbellardfi 36004d3b6f6eSbalrogif test "$curses" = "yes" ; then 360198ec69acSJuan Quintela echo "CONFIG_CURSES=y" >> $config_host_mak 3602ab4e5602SJan Kiszkafi 36033b3f24adSaurel32if test "$atfile" = "yes" ; then 36042358a494SJuan Quintela echo "CONFIG_ATFILE=y" >> $config_host_mak 36053b3f24adSaurel32fi 3606ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then 36072358a494SJuan Quintela echo "CONFIG_UTIMENSAT=y" >> $config_host_mak 3608ebc996f3SRiku Voipiofi 3609099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then 36102358a494SJuan Quintela echo "CONFIG_PIPE2=y" >> $config_host_mak 3611099d6b0fSRiku Voipiofi 361240ff6d7eSKevin Wolfif test "$accept4" = "yes" ; then 361340ff6d7eSKevin Wolf echo "CONFIG_ACCEPT4=y" >> $config_host_mak 361440ff6d7eSKevin Wolffi 36153ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then 36162358a494SJuan Quintela echo "CONFIG_SPLICE=y" >> $config_host_mak 36173ce34dfbSvibisreenivasanfi 3618c2882b96SRiku Voipioif test "$eventfd" = "yes" ; then 3619c2882b96SRiku Voipio echo "CONFIG_EVENTFD=y" >> $config_host_mak 3620c2882b96SRiku Voipiofi 3621d0927938SUlrich Hechtif test "$fallocate" = "yes" ; then 3622d0927938SUlrich Hecht echo "CONFIG_FALLOCATE=y" >> $config_host_mak 3623d0927938SUlrich Hechtfi 36243d4fa43eSKusanagi Kouichiif test "$fallocate_punch_hole" = "yes" ; then 36253d4fa43eSKusanagi Kouichi echo "CONFIG_FALLOCATE_PUNCH_HOLE=y" >> $config_host_mak 36263d4fa43eSKusanagi Kouichifi 3627c727f47dSPeter Maydellif test "$sync_file_range" = "yes" ; then 3628c727f47dSPeter Maydell echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak 3629c727f47dSPeter Maydellfi 3630dace20dcSPeter Maydellif test "$fiemap" = "yes" ; then 3631dace20dcSPeter Maydell echo "CONFIG_FIEMAP=y" >> $config_host_mak 3632dace20dcSPeter Maydellfi 3633d0927938SUlrich Hechtif test "$dup3" = "yes" ; then 3634d0927938SUlrich Hecht echo "CONFIG_DUP3=y" >> $config_host_mak 3635d0927938SUlrich Hechtfi 36363b6edd16SPeter Maydellif test "$epoll" = "yes" ; then 36373b6edd16SPeter Maydell echo "CONFIG_EPOLL=y" >> $config_host_mak 36383b6edd16SPeter Maydellfi 36393b6edd16SPeter Maydellif test "$epoll_create1" = "yes" ; then 36403b6edd16SPeter Maydell echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak 36413b6edd16SPeter Maydellfi 36423b6edd16SPeter Maydellif test "$epoll_pwait" = "yes" ; then 36433b6edd16SPeter Maydell echo "CONFIG_EPOLL_PWAIT=y" >> $config_host_mak 36443b6edd16SPeter Maydellfi 3645*a8fd1abaSPeter Maydellif test "$sendfile" = "yes" ; then 3646*a8fd1abaSPeter Maydell echo "CONFIG_SENDFILE=y" >> $config_host_mak 3647*a8fd1abaSPeter Maydellfi 36483b3f24adSaurel32if test "$inotify" = "yes" ; then 36492358a494SJuan Quintela echo "CONFIG_INOTIFY=y" >> $config_host_mak 36503b3f24adSaurel32fi 3651c05c7a73SRiku Voipioif test "$inotify1" = "yes" ; then 3652c05c7a73SRiku Voipio echo "CONFIG_INOTIFY1=y" >> $config_host_mak 3653c05c7a73SRiku Voipiofi 36546ae9a1f4SJuan Quintelaif test "$byteswap_h" = "yes" ; then 36556ae9a1f4SJuan Quintela echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak 36566ae9a1f4SJuan Quintelafi 36576ae9a1f4SJuan Quintelaif test "$bswap_h" = "yes" ; then 36586ae9a1f4SJuan Quintela echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak 36596ae9a1f4SJuan Quintelafi 3660769ce76dSAlexander Grafif test "$curl" = "yes" ; then 366198ec69acSJuan Quintela echo "CONFIG_CURL=y" >> $config_host_mak 3662b1d5a277SJuan Quintela echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak 3663769ce76dSAlexander Graffi 36642e4d9fb1Saurel32if test "$brlapi" = "yes" ; then 366598ec69acSJuan Quintela echo "CONFIG_BRLAPI=y" >> $config_host_mak 36662e4d9fb1Saurel32fi 3667fb599c9aSbalrogif test "$bluez" = "yes" ; then 366898ec69acSJuan Quintela echo "CONFIG_BLUEZ=y" >> $config_host_mak 3669ef7635ecSJuan Quintela echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak 3670fb599c9aSbalrogfi 3671e18df141SAnthony Liguoriecho "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak 3672a4ccabcfSAnthony Liguoriif test "$gtk" = "yes" ; then 3673a4ccabcfSAnthony Liguori echo "CONFIG_GTK=y" >> $config_host_mak 3674a4ccabcfSAnthony Liguori echo "GTK_CFLAGS=$gtk_cflags" >> $config_host_mak 3675a4ccabcfSAnthony Liguori echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak 3676a4ccabcfSAnthony Liguorifi 3677e37630caSaliguoriif test "$xen" = "yes" ; then 36786dbd588aSJan Kiszka echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak 3679d5b93ddfSAnthony PERARD echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak 3680e37630caSaliguorifi 36815c6c3a6cSChristoph Hellwigif test "$linux_aio" = "yes" ; then 36825c6c3a6cSChristoph Hellwig echo "CONFIG_LINUX_AIO=y" >> $config_host_mak 36835c6c3a6cSChristoph Hellwigfi 3684758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" = "yes" ; then 3685758e8e38SVenkateswararao Jujjuri (JV) echo "CONFIG_ATTR=y" >> $config_host_mak 3686758e8e38SVenkateswararao Jujjuri (JV)fi 36874f26f2b6SAvi Kivityif test "$libattr" = "yes" ; then 36884f26f2b6SAvi Kivity echo "CONFIG_LIBATTR=y" >> $config_host_mak 36894f26f2b6SAvi Kivityfi 3690983eef5aSMeador Ingeif test "$virtfs" = "yes" ; then 3691758e8e38SVenkateswararao Jujjuri (JV) echo "CONFIG_VIRTFS=y" >> $config_host_mak 3692758e8e38SVenkateswararao Jujjuri (JV)fi 369377755340Sthsif test "$blobs" = "yes" ; then 369498ec69acSJuan Quintela echo "INSTALL_BLOBS=yes" >> $config_host_mak 369577755340Sthsfi 3696bf9298b9Saliguoriif test "$iovec" = "yes" ; then 36972358a494SJuan Quintela echo "CONFIG_IOVEC=y" >> $config_host_mak 3698bf9298b9Saliguorifi 3699ceb42de8Saliguoriif test "$preadv" = "yes" ; then 37002358a494SJuan Quintela echo "CONFIG_PREADV=y" >> $config_host_mak 3701ceb42de8Saliguorifi 3702f652e6afSaurel32if test "$fdt" = "yes" ; then 37033f0855b1SJuan Quintela echo "CONFIG_FDT=y" >> $config_host_mak 3704f652e6afSaurel32fi 3705dcc38d1cSMarcelo Tosattiif test "$signalfd" = "yes" ; then 3706dcc38d1cSMarcelo Tosatti echo "CONFIG_SIGNALFD=y" >> $config_host_mak 3707dcc38d1cSMarcelo Tosattifi 37089195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then 37099195b2c2SStefan Weil echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak 37109195b2c2SStefan Weilfi 37115f6b9e8fSBlue Swirlif test "$fdatasync" = "yes" ; then 37125f6b9e8fSBlue Swirl echo "CONFIG_FDATASYNC=y" >> $config_host_mak 37135f6b9e8fSBlue Swirlfi 3714e78815a5SAndreas Färberif test "$madvise" = "yes" ; then 3715e78815a5SAndreas Färber echo "CONFIG_MADVISE=y" >> $config_host_mak 3716e78815a5SAndreas Färberfi 3717e78815a5SAndreas Färberif test "$posix_madvise" = "yes" ; then 3718e78815a5SAndreas Färber echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak 3719e78815a5SAndreas Färberfi 37201e9737daSRichard Hendersonif test "$sigev_thread_id" = "yes" ; then 37211e9737daSRichard Henderson echo "CONFIG_SIGEV_THREAD_ID=y" >> $config_host_mak 37221e9737daSRichard Hendersonfi 372397a847bcSbellard 3724cd4ec0b4SGerd Hoffmannif test "$spice" = "yes" ; then 3725cd4ec0b4SGerd Hoffmann echo "CONFIG_SPICE=y" >> $config_host_mak 3726cd4ec0b4SGerd Hoffmannfi 3727cd4ec0b4SGerd Hoffmann 3728111a38b0SRobert Relyeaif test "$smartcard_nss" = "yes" ; then 3729111a38b0SRobert Relyea echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak 3730ad4cf3f6SPaul Brook echo "libcacard_libs=$libcacard_libs" >> $config_host_mak 3731ad4cf3f6SPaul Brook echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak 3732111a38b0SRobert Relyeafi 3733111a38b0SRobert Relyea 373469354a83SHans de Goedeif test "$usb_redir" = "yes" ; then 373569354a83SHans de Goede echo "CONFIG_USB_REDIR=y" >> $config_host_mak 373669354a83SHans de Goedefi 373769354a83SHans de Goede 373820ff075bSMichael Walleif test "$opengl" = "yes" ; then 373920ff075bSMichael Walle echo "CONFIG_OPENGL=y" >> $config_host_mak 374020ff075bSMichael Wallefi 374120ff075bSMichael Walle 3742c589b249SRonnie Sahlbergif test "$libiscsi" = "yes" ; then 3743c589b249SRonnie Sahlberg echo "CONFIG_LIBISCSI=y" >> $config_host_mak 3744c589b249SRonnie Sahlbergfi 3745c589b249SRonnie Sahlberg 3746f794573eSEduardo Otuboif test "$seccomp" = "yes"; then 3747f794573eSEduardo Otubo echo "CONFIG_SECCOMP=y" >> $config_host_mak 3748f794573eSEduardo Otubofi 3749f794573eSEduardo Otubo 375083fb7adfSbellard# XXX: suppress that 37517d3505c5Sbellardif [ "$bsd" = "yes" ] ; then 37522358a494SJuan Quintela echo "CONFIG_BSD=y" >> $config_host_mak 37537d3505c5Sbellardfi 37547d3505c5Sbellard 37552358a494SJuan Quintelaecho "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak 3756c5937220Spbrook 375720ff6c80SAnthony Liguoriif test "$zero_malloc" = "yes" ; then 375820ff6c80SAnthony Liguori echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak 375920ff6c80SAnthony Liguorifi 3760f27aaf4bSChristian Brunnerif test "$rbd" = "yes" ; then 3761f27aaf4bSChristian Brunner echo "CONFIG_RBD=y" >> $config_host_mak 3762f27aaf4bSChristian Brunnerfi 376320ff6c80SAnthony Liguori 3764519175a2SAlex Barceloif test "$coroutine_backend" = "ucontext" ; then 3765d0e2fce5SAneesh Kumar K.V echo "CONFIG_UCONTEXT_COROUTINE=y" >> $config_host_mak 3766fe91bfa8SAlex Barceloelif test "$coroutine_backend" = "sigaltstack" ; then 3767fe91bfa8SAlex Barcelo echo "CONFIG_SIGALTSTACK_COROUTINE=y" >> $config_host_mak 3768d0e2fce5SAneesh Kumar K.Vfi 3769d0e2fce5SAneesh Kumar K.V 3770d2042378SAneesh Kumar K.Vif test "$open_by_handle_at" = "yes" ; then 3771d2042378SAneesh Kumar K.V echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak 3772d2042378SAneesh Kumar K.Vfi 3773d2042378SAneesh Kumar K.V 3774e06a765eSHarsh Prateek Boraif test "$linux_magic_h" = "yes" ; then 3775e06a765eSHarsh Prateek Bora echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak 3776e06a765eSHarsh Prateek Borafi 3777e06a765eSHarsh Prateek Bora 3778cc6e3ca9SGerd Hoffmannif test "$pragma_diagnostic_available" = "yes" ; then 3779cc6e3ca9SGerd Hoffmann echo "CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE=y" >> $config_host_mak 378006d71fa1SPeter Maydellfi 378106d71fa1SPeter Maydell 37823f4349dcSKevin Wolfif test "$valgrind_h" = "yes" ; then 37833f4349dcSKevin Wolf echo "CONFIG_VALGRIND_H=y" >> $config_host_mak 37843f4349dcSKevin Wolffi 37853f4349dcSKevin Wolf 37868ab1bf12SLuiz Capitulinoif test "$has_environ" = "yes" ; then 37878ab1bf12SLuiz Capitulino echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak 37888ab1bf12SLuiz Capitulinofi 37898ab1bf12SLuiz Capitulino 379076a347e1SRichard Hendersonif test "$cpuid_h" = "yes" ; then 379176a347e1SRichard Henderson echo "CONFIG_CPUID_H=y" >> $config_host_mak 379276a347e1SRichard Hendersonfi 379376a347e1SRichard Henderson 3794f540166bSRichard Hendersonif test "$int128" = "yes" ; then 3795f540166bSRichard Henderson echo "CONFIG_INT128=y" >> $config_host_mak 3796f540166bSRichard Hendersonfi 3797f540166bSRichard Henderson 3798eb100396SBharata B Raoif test "$glusterfs" = "yes" ; then 3799eb100396SBharata B Rao echo "CONFIG_GLUSTERFS=y" >> $config_host_mak 3800eb100396SBharata B Raofi 3801eb100396SBharata B Rao 3802583f6e7bSStefan Hajnocziif test "$virtio_blk_data_plane" = "yes" ; then 3803583f6e7bSStefan Hajnoczi echo "CONFIG_VIRTIO_BLK_DATA_PLANE=y" >> $config_host_mak 3804583f6e7bSStefan Hajnoczifi 3805583f6e7bSStefan Hajnoczi 380668063649Sblueswir1# USB host support 380768063649Sblueswir1case "$usb" in 380868063649Sblueswir1linux) 38094075975dSGerd Hoffmann echo "HOST_USB=linux legacy" >> $config_host_mak 381068063649Sblueswir1;; 381168063649Sblueswir1bsd) 381298ec69acSJuan Quintela echo "HOST_USB=bsd" >> $config_host_mak 381368063649Sblueswir1;; 381468063649Sblueswir1*) 381598ec69acSJuan Quintela echo "HOST_USB=stub" >> $config_host_mak 381668063649Sblueswir1;; 381768063649Sblueswir1esac 381868063649Sblueswir1 3819e4858974SLluís# use default implementation for tracing backend-specific routines 3820e4858974SLluístrace_default=yes 382194a420b1SStefan Hajnocziecho "TRACE_BACKEND=$trace_backend" >> $config_host_mak 38226d8a764eSLluísif test "$trace_backend" = "nop"; then 38236d8a764eSLluís echo "CONFIG_TRACE_NOP=y" >> $config_host_mak 382422890ab5SPrerna Saxenafi 38259410b56cSPrerna Saxenaif test "$trace_backend" = "simple"; then 38266d8a764eSLluís echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak 3827e4858974SLluís trace_default=no 38286d8a764eSLluís # Set the appropriate trace file. 3829953ffe0fSAndreas Färber trace_file="\"$trace_file-\" FMT_pid" 38309410b56cSPrerna Saxenafi 38316d8a764eSLluísif test "$trace_backend" = "stderr"; then 38326d8a764eSLluís echo "CONFIG_TRACE_STDERR=y" >> $config_host_mak 38339a82b6a5SLluís trace_default=no 38346d8a764eSLluísfi 38356d8a764eSLluísif test "$trace_backend" = "ust"; then 38366d8a764eSLluís echo "CONFIG_TRACE_UST=y" >> $config_host_mak 38376d8a764eSLluísfi 38386d8a764eSLluísif test "$trace_backend" = "dtrace"; then 38396d8a764eSLluís echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak 38406d8a764eSLluís if test "$trace_backend_stap" = "yes" ; then 38416d8a764eSLluís echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak 38426d8a764eSLluís fi 3843c276b17dSDaniel P. Berrangefi 38449410b56cSPrerna Saxenaecho "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak 3845e4858974SLluísif test "$trace_default" = "yes"; then 3846e4858974SLluís echo "CONFIG_TRACE_DEFAULT=y" >> $config_host_mak 3847e4858974SLluísfi 38489410b56cSPrerna Saxena 384998ec69acSJuan Quintelaecho "TOOLS=$tools" >> $config_host_mak 385098ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak 3851804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak 3852804edf29SJuan Quintelaecho "INSTALL=$install" >> $config_host_mak 38531901cb14SBradecho "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak 38541901cb14SBradecho "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak 385521655882SPaolo Bonziniif test -n "$libtool"; then 385621655882SPaolo Bonzini echo "INSTALL_PROG=\$(LIBTOOL) --mode=install $install -c -m 0755" >> $config_host_mak 385721655882SPaolo Bonzini echo "INSTALL_LIB=\$(LIBTOOL) --mode=install $install -c -m 0644" >> $config_host_mak 385821655882SPaolo Bonzinielse 38591901cb14SBrad echo "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak 386021655882SPaolo Bonzini echo "INSTALL_LIB=$install -c -m 0644" >> $config_host_mak 386121655882SPaolo Bonzinifi 3862c886edfbSBlue Swirlecho "PYTHON=$python" >> $config_host_mak 3863804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak 38642b2e59e6SPaolo Bonziniecho "CC_I386=$cc_i386" >> $config_host_mak 3865804edf29SJuan Quintelaecho "HOST_CC=$host_cc" >> $config_host_mak 38663c4a4d0dSPeter Maydellecho "OBJCC=$objcc" >> $config_host_mak 3867804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak 38683dd46c78SBlue Swirlecho "AS=$as" >> $config_host_mak 38693dd46c78SBlue Swirlecho "CPP=$cpp" >> $config_host_mak 3870804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak 3871804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak 38729fe6de94SBlue Swirlecho "WINDRES=$windres" >> $config_host_mak 387344dc0ca3SAlon Levyecho "LIBTOOL=$libtool" >> $config_host_mak 3874e2a2ed06SJuan Quintelaecho "CFLAGS=$CFLAGS" >> $config_host_mak 3875a558ee17SJuan Quintelaecho "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak 3876f9728943SPaolo Bonziniecho "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak 3877e39f0062SPaolo Bonziniif test "$sparse" = "yes" ; then 3878e39f0062SPaolo Bonzini echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak 3879e39f0062SPaolo Bonzini echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak 3880e39f0062SPaolo Bonzini echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak 3881e39f0062SPaolo Bonzinifi 388242da6041SGerd Hoffmannif test "$cross_prefix" != ""; then 388342da6041SGerd Hoffmann echo "AUTOCONF_HOST := --host=${cross_prefix%-}" >> $config_host_mak 388442da6041SGerd Hoffmannelse 388542da6041SGerd Hoffmann echo "AUTOCONF_HOST := " >> $config_host_mak 388642da6041SGerd Hoffmannfi 3887e2a2ed06SJuan Quintelaecho "LDFLAGS=$LDFLAGS" >> $config_host_mak 3888a36abbbbSJuan Quintelaecho "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak 3889a36abbbbSJuan Quintelaecho "ARLIBS_END=$arlibs_end" >> $config_host_mak 389073da375eSJuan Quintelaecho "LIBS+=$LIBS" >> $config_host_mak 38913e2e0e6bSJuan Quintelaecho "LIBS_TOOLS+=$libs_tools" >> $config_host_mak 3892804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak 3893957f1f99SMichael Rothecho "LIBS_QGA+=$libs_qga" >> $config_host_mak 389494dd53c5SGerd Hoffmannecho "POD2MAN=$POD2MAN" >> $config_host_mak 3895cbdd1999SPaolo Bonziniecho "TRANSLATE_OPT_CFLAGS=$TRANSLATE_OPT_CFLAGS" >> $config_host_mak 38961d728c39SBlue Swirlif test "$gcov" = "yes" ; then 38971d728c39SBlue Swirl echo "CONFIG_GCOV=y" >> $config_host_mak 38981d728c39SBlue Swirl echo "GCOV=$gcov_tool" >> $config_host_mak 38991d728c39SBlue Swirlfi 3900804edf29SJuan Quintela 39014bf6b55bSJuan Quintela# generate list of library paths for linker script 39024bf6b55bSJuan Quintela 39034bf6b55bSJuan Quintela$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld} 39044bf6b55bSJuan Quintela 39054bf6b55bSJuan Quintelaif test -f ${config_host_ld}~ ; then 39064bf6b55bSJuan Quintela if cmp -s $config_host_ld ${config_host_ld}~ ; then 39074bf6b55bSJuan Quintela mv ${config_host_ld}~ $config_host_ld 39084bf6b55bSJuan Quintela else 39094bf6b55bSJuan Quintela rm ${config_host_ld}~ 39104bf6b55bSJuan Quintela fi 39114bf6b55bSJuan Quintelafi 39124bf6b55bSJuan Quintela 39136efd7517SPeter Maydell# use included Linux headers 39146efd7517SPeter Maydellif test "$linux" = "yes" ; then 3915a307beb6SAndreas Färber mkdir -p linux-headers 39166efd7517SPeter Maydell case "$cpu" in 39176efd7517SPeter Maydell i386|x86_64) 391808312a63SPeter Maydell linux_arch=x86 39196efd7517SPeter Maydell ;; 39206efd7517SPeter Maydell ppcemb|ppc|ppc64) 392108312a63SPeter Maydell linux_arch=powerpc 39226efd7517SPeter Maydell ;; 39236efd7517SPeter Maydell s390x) 392408312a63SPeter Maydell linux_arch=s390 392508312a63SPeter Maydell ;; 392608312a63SPeter Maydell *) 392708312a63SPeter Maydell # For most CPUs the kernel architecture name and QEMU CPU name match. 392808312a63SPeter Maydell linux_arch="$cpu" 39296efd7517SPeter Maydell ;; 39306efd7517SPeter Maydell esac 393108312a63SPeter Maydell # For non-KVM architectures we will not have asm headers 393208312a63SPeter Maydell if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then 393308312a63SPeter Maydell symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm 393408312a63SPeter Maydell fi 39356efd7517SPeter Maydellfi 39366efd7517SPeter Maydell 393797a847bcSbellardfor target in $target_list; do 393897a847bcSbellardtarget_dir="$target" 393925be210fSJuan Quintelaconfig_target_mak=$target_dir/config-target.mak 3940600309b6SBlue Swirltarget_arch2=`echo $target | cut -d '-' -f 1` 394197a847bcSbellardtarget_bigendian="no" 39421f3d3c8fSJuan Quintela 3943ea2d6a39SJuan Quintelacase "$target_arch2" in 3944e67db06eSJia Liu armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|or32|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb) 3945ea2d6a39SJuan Quintela target_bigendian=yes 3946ea2d6a39SJuan Quintela ;; 3947ea2d6a39SJuan Quintelaesac 394897a847bcSbellardtarget_softmmu="no" 3949997344f3Sbellardtarget_user_only="no" 3950831b7825Sthstarget_linux_user="no" 395184778508Sblueswir1target_bsd_user="no" 39529e407a85Spbrookcase "$target" in 3953600309b6SBlue Swirl ${target_arch2}-softmmu) 39549e407a85Spbrook target_softmmu="yes" 39559e407a85Spbrook ;; 3956600309b6SBlue Swirl ${target_arch2}-linux-user) 39579c7a4202SBlue Swirl if test "$linux" != "yes" ; then 39589c7a4202SBlue Swirl echo "ERROR: Target '$target' is only available on a Linux host" 39599c7a4202SBlue Swirl exit 1 39609c7a4202SBlue Swirl fi 39619e407a85Spbrook target_user_only="yes" 39629e407a85Spbrook target_linux_user="yes" 39639e407a85Spbrook ;; 3964600309b6SBlue Swirl ${target_arch2}-bsd-user) 39659cf55765SBlue Swirl if test "$bsd" != "yes" ; then 39669c7a4202SBlue Swirl echo "ERROR: Target '$target' is only available on a BSD host" 39679c7a4202SBlue Swirl exit 1 39689c7a4202SBlue Swirl fi 396984778508Sblueswir1 target_user_only="yes" 397084778508Sblueswir1 target_bsd_user="yes" 397184778508Sblueswir1 ;; 39729e407a85Spbrook *) 39739e407a85Spbrook echo "ERROR: Target '$target' not recognised" 39749e407a85Spbrook exit 1 39759e407a85Spbrook ;; 39769e407a85Spbrookesac 3977831b7825Sths 397897a847bcSbellardmkdir -p $target_dir 397925be210fSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_target_mak 398097a847bcSbellard 3981e5fe0c52Spbrookbflt="no" 3982bd0c5661Spbrooktarget_nptl="no" 3983600309b6SBlue Swirlinterp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"` 398456aebc89Spbrookgdb_xml_files="" 3985c2e3dee6SLaurent Viviertarget_short_alignment=2 3986c2e3dee6SLaurent Viviertarget_int_alignment=4 3987c2e3dee6SLaurent Viviertarget_long_alignment=4 3988c2e3dee6SLaurent Viviertarget_llong_alignment=8 3989de3a354aSMichael Walletarget_libs_softmmu= 39907ba1e619Saliguori 3991938b1eddSJuan QuintelaTARGET_ARCH="$target_arch2" 39926acff7daSJuan QuintelaTARGET_BASE_ARCH="" 3993e6e91b9cSJuan QuintelaTARGET_ABI_DIR="" 3994e73aae67SJuan Quintela 3995600309b6SBlue Swirlcase "$target_arch2" in 39962408a527Saurel32 i386) 39972408a527Saurel32 ;; 39982408a527Saurel32 x86_64) 39996acff7daSJuan Quintela TARGET_BASE_ARCH=i386 4000c2e3dee6SLaurent Vivier target_long_alignment=8 40012408a527Saurel32 ;; 40022408a527Saurel32 alpha) 4003c2e3dee6SLaurent Vivier target_long_alignment=8 4004a4b388ffSRichard Henderson target_nptl="yes" 40052408a527Saurel32 ;; 40062408a527Saurel32 arm|armeb) 4007b498c8a0SJuan Quintela TARGET_ARCH=arm 4008e5fe0c52Spbrook bflt="yes" 4009bd0c5661Spbrook target_nptl="yes" 401056aebc89Spbrook gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" 4011c2e3dee6SLaurent Vivier target_llong_alignment=4 40122408a527Saurel32 ;; 40132408a527Saurel32 cris) 4014253bd7f8Sedgar_igl target_nptl="yes" 40152408a527Saurel32 ;; 4016613a22c9SMichael Walle lm32) 4017de3a354aSMichael Walle target_libs_softmmu="$opengl_libs" 4018613a22c9SMichael Walle ;; 40192408a527Saurel32 m68k) 40200938cda5Saurel32 bflt="yes" 402156aebc89Spbrook gdb_xml_files="cf-core.xml cf-fp.xml" 4022c2e3dee6SLaurent Vivier target_int_alignment=2 4023c2e3dee6SLaurent Vivier target_long_alignment=2 4024c2e3dee6SLaurent Vivier target_llong_alignment=2 40252408a527Saurel32 ;; 4026877fdc12SEdgar E. Iglesias microblaze|microblazeel) 4027877fdc12SEdgar E. Iglesias TARGET_ARCH=microblaze 402872b675caSEdgar E. Iglesias bflt="yes" 402972b675caSEdgar E. Iglesias target_nptl="yes" 403072b675caSEdgar E. Iglesias ;; 40312408a527Saurel32 mips|mipsel) 4032b498c8a0SJuan Quintela TARGET_ARCH=mips 403325be210fSJuan Quintela echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak 4034f04dc72fSPaul Brook target_nptl="yes" 40352408a527Saurel32 ;; 40362408a527Saurel32 mipsn32|mipsn32el) 4037597e2cecSRichard Henderson TARGET_ARCH=mips64 40386acff7daSJuan Quintela TARGET_BASE_ARCH=mips 403925be210fSJuan Quintela echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak 4040597e2cecSRichard Henderson echo "TARGET_ABI32=y" >> $config_target_mak 40412408a527Saurel32 ;; 40422408a527Saurel32 mips64|mips64el) 4043b498c8a0SJuan Quintela TARGET_ARCH=mips64 40446acff7daSJuan Quintela TARGET_BASE_ARCH=mips 404525be210fSJuan Quintela echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak 4046c2e3dee6SLaurent Vivier target_long_alignment=8 40472408a527Saurel32 ;; 4048e67db06eSJia Liu or32) 4049e67db06eSJia Liu TARGET_ARCH=openrisc 4050e67db06eSJia Liu TARGET_BASE_ARCH=openrisc 4051e67db06eSJia Liu ;; 40522408a527Saurel32 ppc) 4053c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 4054d6630708SNathan Froyd target_nptl="yes" 40552408a527Saurel32 ;; 40562408a527Saurel32 ppcemb) 40576acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 4058e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 4059c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 4060d6630708SNathan Froyd target_nptl="yes" 40612408a527Saurel32 ;; 40622408a527Saurel32 ppc64) 40636acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 4064e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 4065c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 4066c2e3dee6SLaurent Vivier target_long_alignment=8 40672408a527Saurel32 ;; 40682408a527Saurel32 ppc64abi32) 4069b498c8a0SJuan Quintela TARGET_ARCH=ppc64 40706acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 4071e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 407225be210fSJuan Quintela echo "TARGET_ABI32=y" >> $config_target_mak 4073c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 40742408a527Saurel32 ;; 40752408a527Saurel32 sh4|sh4eb) 4076b498c8a0SJuan Quintela TARGET_ARCH=sh4 40774dbed897Spbrook bflt="yes" 40780b6d3ae0Saurel32 target_nptl="yes" 40792408a527Saurel32 ;; 40802408a527Saurel32 sparc) 40812408a527Saurel32 ;; 40822408a527Saurel32 sparc64) 40836acff7daSJuan Quintela TARGET_BASE_ARCH=sparc 4084c2e3dee6SLaurent Vivier target_long_alignment=8 40852408a527Saurel32 ;; 40862408a527Saurel32 sparc32plus) 4087b498c8a0SJuan Quintela TARGET_ARCH=sparc64 40886acff7daSJuan Quintela TARGET_BASE_ARCH=sparc 4089e6e91b9cSJuan Quintela TARGET_ABI_DIR=sparc 409025be210fSJuan Quintela echo "TARGET_ABI32=y" >> $config_target_mak 40912408a527Saurel32 ;; 409224e804ecSAlexander Graf s390x) 4093bc434676SUlrich Hecht target_nptl="yes" 40947b3da903SAlexander Graf target_long_alignment=8 409524e804ecSAlexander Graf ;; 4096d2fbca94SGuan Xuetao unicore32) 4097d2fbca94SGuan Xuetao ;; 4098cfa550c6SMax Filippov xtensa|xtensaeb) 4099cfa550c6SMax Filippov TARGET_ARCH=xtensa 4100cfa550c6SMax Filippov ;; 41012408a527Saurel32 *) 4102de83cd02Sbellard echo "Unsupported target CPU" 4103de83cd02Sbellard exit 1 41042408a527Saurel32 ;; 41052408a527Saurel32esac 41065e8861a0SPaolo Bonzini# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH 41075e8861a0SPaolo Bonziniif [ "$TARGET_BASE_ARCH" = "" ]; then 41085e8861a0SPaolo Bonzini TARGET_BASE_ARCH=$TARGET_ARCH 41095e8861a0SPaolo Bonzinifi 41105e8861a0SPaolo Bonzini 41115e8861a0SPaolo Bonzinisymlink "$source_path/Makefile.target" "$target_dir/Makefile" 41125e8861a0SPaolo Bonzini 411399afc91dSDaniel P. Berrangeupper() { 411499afc91dSDaniel P. Berrange echo "$@"| LC_ALL=C tr '[a-z]' '[A-Z]' 411599afc91dSDaniel P. Berrange} 411699afc91dSDaniel P. Berrange 411732761257SYeongkyoon Leecase "$cpu" in 4118ed224a56Smalc i386|x86_64|ppc) 411913586813SStefan Weil # The TCG interpreter currently does not support ld/st optimization. 412013586813SStefan Weil if test "$tcg_interpreter" = "no" ; then 412132761257SYeongkyoon Lee echo "CONFIG_QEMU_LDST_OPTIMIZATION=y" >> $config_target_mak 412213586813SStefan Weil fi 412332761257SYeongkyoon Lee ;; 412432761257SYeongkyoon Leeesac 412532761257SYeongkyoon Lee 4126c2e3dee6SLaurent Vivierecho "TARGET_SHORT_ALIGNMENT=$target_short_alignment" >> $config_target_mak 4127c2e3dee6SLaurent Vivierecho "TARGET_INT_ALIGNMENT=$target_int_alignment" >> $config_target_mak 4128c2e3dee6SLaurent Vivierecho "TARGET_LONG_ALIGNMENT=$target_long_alignment" >> $config_target_mak 4129c2e3dee6SLaurent Vivierecho "TARGET_LLONG_ALIGNMENT=$target_llong_alignment" >> $config_target_mak 413025be210fSJuan Quintelaecho "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak 413199afc91dSDaniel P. Berrangetarget_arch_name="`upper $TARGET_ARCH`" 413225be210fSJuan Quintelaecho "TARGET_$target_arch_name=y" >> $config_target_mak 413325be210fSJuan Quintelaecho "TARGET_ARCH2=$target_arch2" >> $config_target_mak 413499afc91dSDaniel P. Berrangeecho "TARGET_TYPE=TARGET_TYPE_`upper $target_arch2`" >> $config_target_mak 413525be210fSJuan Quintelaecho "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak 4136e6e91b9cSJuan Quintelaif [ "$TARGET_ABI_DIR" = "" ]; then 4137e6e91b9cSJuan Quintela TARGET_ABI_DIR=$TARGET_ARCH 4138e6e91b9cSJuan Quintelafi 413925be210fSJuan Quintelaecho "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak 41401b0c87fcSJuan Quintelacase "$target_arch2" in 41411b0c87fcSJuan Quintela i386|x86_64) 41421b0c87fcSJuan Quintela if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then 414325be210fSJuan Quintela echo "CONFIG_XEN=y" >> $config_target_mak 4144eb6fda0fSAnthony PERARD if test "$xen_pci_passthrough" = yes; then 4145eb6fda0fSAnthony PERARD echo "CONFIG_XEN_PCI_PASSTHROUGH=y" >> "$config_target_mak" 4146eb6fda0fSAnthony PERARD fi 414759d21e53SAlexander Graf else 414859d21e53SAlexander Graf echo "CONFIG_NO_XEN=y" >> $config_target_mak 4149432d268cSJun Nakajima fi 415059d21e53SAlexander Graf ;; 415159d21e53SAlexander Graf *) 415259d21e53SAlexander Graf echo "CONFIG_NO_XEN=y" >> $config_target_mak 41531b0c87fcSJuan Quintelaesac 4154c59249f9SJuan Quintelacase "$target_arch2" in 415568b05c42SPeter Maydell arm|i386|x86_64|ppcemb|ppc|ppc64|s390x) 4156c59249f9SJuan Quintela # Make sure the target and host cpus are compatible 4157c59249f9SJuan Quintela if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \ 4158c59249f9SJuan Quintela \( "$target_arch2" = "$cpu" -o \ 4159c59249f9SJuan Quintela \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \ 41605f114bc6SAlexander Graf \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \ 4161adf82011SRené Rebe \( "$target_arch2" = "ppc" -a "$cpu" = "ppc64" \) -o \ 4162adf82011SRené Rebe \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc64" \) -o \ 4163c59249f9SJuan Quintela \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \ 4164c59249f9SJuan Quintela \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then 416525be210fSJuan Quintela echo "CONFIG_KVM=y" >> $config_target_mak 41661ba16968SStefan Weil if test "$vhost_net" = "yes" ; then 4167d5970055SMichael S. Tsirkin echo "CONFIG_VHOST_NET=y" >> $config_target_mak 4168d5970055SMichael S. Tsirkin fi 4169c59249f9SJuan Quintela fi 4170c59249f9SJuan Quintelaesac 4171fae001f5SWen Congyangcase "$target_arch2" in 4172fae001f5SWen Congyang i386|x86_64) 4173fae001f5SWen Congyang echo "CONFIG_HAVE_GET_MEMORY_MAPPING=y" >> $config_target_mak 4174fae001f5SWen Congyangesac 4175de83cd02Sbellardif test "$target_bigendian" = "yes" ; then 417625be210fSJuan Quintela echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak 417797a847bcSbellardfi 417897a847bcSbellardif test "$target_softmmu" = "yes" ; then 417925be210fSJuan Quintela echo "CONFIG_SOFTMMU=y" >> $config_target_mak 4180de3a354aSMichael Walle echo "LIBS+=$libs_softmmu $target_libs_softmmu" >> $config_target_mak 41819fecbed0SWen Congyang case "$target_arch2" in 41829fecbed0SWen Congyang i386|x86_64) 41839fecbed0SWen Congyang echo "CONFIG_HAVE_CORE_DUMP=y" >> $config_target_mak 41849fecbed0SWen Congyang esac 4185de83cd02Sbellardfi 4186997344f3Sbellardif test "$target_user_only" = "yes" ; then 418725be210fSJuan Quintela echo "CONFIG_USER_ONLY=y" >> $config_target_mak 4188a2c80be9SStefan Weil echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak 4189997344f3Sbellardfi 4190831b7825Sthsif test "$target_linux_user" = "yes" ; then 419125be210fSJuan Quintela echo "CONFIG_LINUX_USER=y" >> $config_target_mak 4192831b7825Sthsfi 419356aebc89Spbrooklist="" 419456aebc89Spbrookif test ! -z "$gdb_xml_files" ; then 419556aebc89Spbrook for x in $gdb_xml_files; do 419656aebc89Spbrook list="$list $source_path/gdb-xml/$x" 419756aebc89Spbrook done 419825be210fSJuan Quintela echo "TARGET_XML_FILES=$list" >> $config_target_mak 41993d0f1517SJuan Quintelafi 4200de83cd02Sbellard 4201e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then 420225be210fSJuan Quintela echo "TARGET_HAS_BFLT=y" >> $config_target_mak 4203e5fe0c52Spbrookfi 4204bd0c5661Spbrookif test "$target_user_only" = "yes" \ 4205bd0c5661Spbrook -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then 420625be210fSJuan Quintela echo "CONFIG_USE_NPTL=y" >> $config_target_mak 4207bd0c5661Spbrookfi 4208379f6698SPaul Brookif test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then 420925be210fSJuan Quintela echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak 4210379f6698SPaul Brookfi 421184778508Sblueswir1if test "$target_bsd_user" = "yes" ; then 421225be210fSJuan Quintela echo "CONFIG_BSD_USER=y" >> $config_target_mak 421384778508Sblueswir1fi 42145b0753e0Sbellard 42155a4d701aSJan Kiszka# the static way of configuring available audio cards requires this workaround 42165a4d701aSJan Kiszkaif test "$target_user_only" != "yes" && grep -q CONFIG_PCSPK $source_path/default-configs/$target.mak; then 42175a4d701aSJan Kiszka echo "CONFIG_PCSPK=y" >> $config_target_mak 42185a4d701aSJan Kiszkafi 42195a4d701aSJan Kiszka 42204afddb55SJuan Quintela# generate QEMU_CFLAGS/LDFLAGS for targets 4221fa282484SJuan Quintela 42224afddb55SJuan Quintelacflags="" 4223f9728943SPaolo Bonziniincludes="" 4224fa282484SJuan Quintelaldflags="" 42259b8e111fSJuan Quintela 42269195b2c2SStefan Weilif test "$tcg_interpreter" = "yes"; then 42279195b2c2SStefan Weil includes="-I\$(SRC_PATH)/tcg/tci $includes" 42289195b2c2SStefan Weilelif test "$ARCH" = "sparc64" ; then 4229f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/sparc $includes" 423024e804ecSAlexander Grafelif test "$ARCH" = "s390x" ; then 4231f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/s390 $includes" 42325d8a4f8fSRichard Hendersonelif test "$ARCH" = "x86_64" ; then 4233f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/i386 $includes" 423457ddfbf7SJuan Quintelaelse 4235f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/\$(ARCH) $includes" 423657ddfbf7SJuan Quintelafi 4237f9728943SPaolo Bonziniincludes="-I\$(SRC_PATH)/tcg $includes" 423857ddfbf7SJuan Quintela 42396efd7517SPeter Maydellif test "$linux" = "yes" ; then 42406efd7517SPeter Maydell includes="-I\$(SRC_PATH)/linux-headers $includes" 42416efd7517SPeter Maydellfi 42426efd7517SPeter Maydell 424364656024SJuan Quintelafor i in $ARCH $TARGET_BASE_ARCH ; do 424464656024SJuan Quintela case "$i" in 424564656024SJuan Quintela alpha) 424625be210fSJuan Quintela echo "CONFIG_ALPHA_DIS=y" >> $config_target_mak 424776cad711SPaolo Bonzini echo "CONFIG_ALPHA_DIS=y" >> config-all-disas.mak 424864656024SJuan Quintela ;; 424964656024SJuan Quintela arm) 425025be210fSJuan Quintela echo "CONFIG_ARM_DIS=y" >> $config_target_mak 425176cad711SPaolo Bonzini echo "CONFIG_ARM_DIS=y" >> config-all-disas.mak 425264656024SJuan Quintela ;; 425364656024SJuan Quintela cris) 425425be210fSJuan Quintela echo "CONFIG_CRIS_DIS=y" >> $config_target_mak 425576cad711SPaolo Bonzini echo "CONFIG_CRIS_DIS=y" >> config-all-disas.mak 425664656024SJuan Quintela ;; 425764656024SJuan Quintela hppa) 425825be210fSJuan Quintela echo "CONFIG_HPPA_DIS=y" >> $config_target_mak 425976cad711SPaolo Bonzini echo "CONFIG_HPPA_DIS=y" >> config-all-disas.mak 426064656024SJuan Quintela ;; 426164656024SJuan Quintela i386|x86_64) 426225be210fSJuan Quintela echo "CONFIG_I386_DIS=y" >> $config_target_mak 426376cad711SPaolo Bonzini echo "CONFIG_I386_DIS=y" >> config-all-disas.mak 426464656024SJuan Quintela ;; 4265903ec55cSAurelien Jarno ia64*) 4266903ec55cSAurelien Jarno echo "CONFIG_IA64_DIS=y" >> $config_target_mak 426776cad711SPaolo Bonzini echo "CONFIG_IA64_DIS=y" >> config-all-disas.mak 4268903ec55cSAurelien Jarno ;; 426979368f49SMichael Walle lm32) 427079368f49SMichael Walle echo "CONFIG_LM32_DIS=y" >> $config_target_mak 427176cad711SPaolo Bonzini echo "CONFIG_LM32_DIS=y" >> config-all-disas.mak 427279368f49SMichael Walle ;; 427364656024SJuan Quintela m68k) 427425be210fSJuan Quintela echo "CONFIG_M68K_DIS=y" >> $config_target_mak 427576cad711SPaolo Bonzini echo "CONFIG_M68K_DIS=y" >> config-all-disas.mak 427664656024SJuan Quintela ;; 4277877fdc12SEdgar E. Iglesias microblaze*) 427825be210fSJuan Quintela echo "CONFIG_MICROBLAZE_DIS=y" >> $config_target_mak 427976cad711SPaolo Bonzini echo "CONFIG_MICROBLAZE_DIS=y" >> config-all-disas.mak 428064656024SJuan Quintela ;; 428164656024SJuan Quintela mips*) 428225be210fSJuan Quintela echo "CONFIG_MIPS_DIS=y" >> $config_target_mak 428376cad711SPaolo Bonzini echo "CONFIG_MIPS_DIS=y" >> config-all-disas.mak 428464656024SJuan Quintela ;; 4285e67db06eSJia Liu or32) 4286e67db06eSJia Liu echo "CONFIG_OPENRISC_DIS=y" >> $config_target_mak 428776cad711SPaolo Bonzini echo "CONFIG_OPENRISC_DIS=y" >> config-all-disas.mak 4288e67db06eSJia Liu ;; 428964656024SJuan Quintela ppc*) 429025be210fSJuan Quintela echo "CONFIG_PPC_DIS=y" >> $config_target_mak 429176cad711SPaolo Bonzini echo "CONFIG_PPC_DIS=y" >> config-all-disas.mak 429264656024SJuan Quintela ;; 429324e804ecSAlexander Graf s390*) 429425be210fSJuan Quintela echo "CONFIG_S390_DIS=y" >> $config_target_mak 429576cad711SPaolo Bonzini echo "CONFIG_S390_DIS=y" >> config-all-disas.mak 429664656024SJuan Quintela ;; 429764656024SJuan Quintela sh4) 429825be210fSJuan Quintela echo "CONFIG_SH4_DIS=y" >> $config_target_mak 429976cad711SPaolo Bonzini echo "CONFIG_SH4_DIS=y" >> config-all-disas.mak 430064656024SJuan Quintela ;; 430164656024SJuan Quintela sparc*) 430225be210fSJuan Quintela echo "CONFIG_SPARC_DIS=y" >> $config_target_mak 430376cad711SPaolo Bonzini echo "CONFIG_SPARC_DIS=y" >> config-all-disas.mak 430464656024SJuan Quintela ;; 4305cfa550c6SMax Filippov xtensa*) 4306cfa550c6SMax Filippov echo "CONFIG_XTENSA_DIS=y" >> $config_target_mak 430776cad711SPaolo Bonzini echo "CONFIG_XTENSA_DIS=y" >> config-all-disas.mak 4308cfa550c6SMax Filippov ;; 430964656024SJuan Quintela esac 431064656024SJuan Quinteladone 43119195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then 43129195b2c2SStefan Weil echo "CONFIG_TCI_DIS=y" >> $config_target_mak 431376cad711SPaolo Bonzini echo "CONFIG_TCI_DIS=y" >> config-all-disas.mak 43149195b2c2SStefan Weilfi 431564656024SJuan Quintela 43166ee7126fSJuan Quintelacase "$ARCH" in 43176ee7126fSJuan Quintelaalpha) 43186ee7126fSJuan Quintela # Ensure there's only a single GP 43196ee7126fSJuan Quintela cflags="-msmall-data $cflags" 43206ee7126fSJuan Quintela;; 43216ee7126fSJuan Quintelaesac 43226ee7126fSJuan Quintela 432355d9c04bSJuan Quintelaif test "$target_softmmu" = "yes" ; then 432455d9c04bSJuan Quintela case "$TARGET_BASE_ARCH" in 432555d9c04bSJuan Quintela arm) 432655d9c04bSJuan Quintela cflags="-DHAS_AUDIO $cflags" 432755d9c04bSJuan Quintela ;; 432825a8bb96SMichael Walle lm32) 432925a8bb96SMichael Walle cflags="-DHAS_AUDIO $cflags" 433025a8bb96SMichael Walle ;; 433155d9c04bSJuan Quintela i386|mips|ppc) 433255d9c04bSJuan Quintela cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags" 433355d9c04bSJuan Quintela ;; 433455d9c04bSJuan Quintela esac 433555d9c04bSJuan Quintelafi 433655d9c04bSJuan Quintela 4337d02c1db3SJuan Quintelaif test "$gprof" = "yes" ; then 433825be210fSJuan Quintela echo "TARGET_GPROF=yes" >> $config_target_mak 4339d02c1db3SJuan Quintela if test "$target_linux_user" = "yes" ; then 4340d02c1db3SJuan Quintela cflags="-p $cflags" 4341d02c1db3SJuan Quintela ldflags="-p $ldflags" 4342d02c1db3SJuan Quintela fi 4343d02c1db3SJuan Quintela if test "$target_softmmu" = "yes" ; then 4344d02c1db3SJuan Quintela ldflags="-p $ldflags" 434525be210fSJuan Quintela echo "GPROF_CFLAGS=-p" >> $config_target_mak 4346d02c1db3SJuan Quintela fi 4347d02c1db3SJuan Quintelafi 4348d02c1db3SJuan Quintela 43499195b2c2SStefan Weilif test "$ARCH" = "tci"; then 43509195b2c2SStefan Weil linker_script="" 43519195b2c2SStefan Weilelse 4352c1c93672SPaolo Bonzini linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/ldscripts/\$(ARCH).ld" 43539195b2c2SStefan Weilfi 43549195b2c2SStefan Weil 43559b8e111fSJuan Quintelaif test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then 4356fa282484SJuan Quintela case "$ARCH" in 43574d58be06SRichard Henderson alpha | s390x) 43584d58be06SRichard Henderson # The default placement of the application is fine. 43594d58be06SRichard Henderson ;; 4360fd76e73aSRichard Henderson *) 4361322e5878SJuan Quintela ldflags="$linker_script $ldflags" 4362fa282484SJuan Quintela ;; 4363fa282484SJuan Quintela esac 4364fa282484SJuan Quintelafi 4365fa282484SJuan Quintela 436625be210fSJuan Quintelaecho "LDFLAGS+=$ldflags" >> $config_target_mak 436725be210fSJuan Quintelaecho "QEMU_CFLAGS+=$cflags" >> $config_target_mak 4368f9728943SPaolo Bonziniecho "QEMU_INCLUDES+=$includes" >> $config_target_mak 4369fa282484SJuan Quintela 437097a847bcSbellarddone # for target in $targets 43717d13299dSbellard 4372b776eca1SGerd Hoffmannif [ "$pixman" = "internal" ]; then 4373b776eca1SGerd Hoffmann echo "config-host.h: subdir-pixman" >> $config_host_mak 4374b776eca1SGerd Hoffmannfi 4375b776eca1SGerd Hoffmann 4376d1807a4fSPaolo Bonzini# build tree in object directory in case the source is not in the current directory 4377927b241dSMichael WalleDIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32" 43782dee8d54SPaolo BonziniDIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas" 43792d9f27d2SAnthony LiguoriDIRS="$DIRS roms/seabios roms/vgabios" 43802dee8d54SPaolo BonziniDIRS="$DIRS qapi-generated" 4381c09015ddSAnthony LiguoriFILES="Makefile tests/tcg/Makefile qdict-test-data.txt" 4382c09015ddSAnthony LiguoriFILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit" 4383834574eaSAnthony LiguoriFILES="$FILES tests/tcg/lm32/Makefile po/Makefile" 4384ae0bfb79SBlue SwirlFILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps" 4385446b9165SAndreas FärberFILES="$FILES pc-bios/spapr-rtas/Makefile" 43862d9f27d2SAnthony LiguoriFILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile" 43874652b792SJan KiszkaFILES="$FILES pc-bios/qemu-icon.bmp" 4388753d11f2SRichard Hendersonfor bios_file in \ 4389753d11f2SRichard Henderson $source_path/pc-bios/*.bin \ 43905acc2ec0SGerd Hoffmann $source_path/pc-bios/*.aml \ 4391753d11f2SRichard Henderson $source_path/pc-bios/*.rom \ 4392753d11f2SRichard Henderson $source_path/pc-bios/*.dtb \ 4393753d11f2SRichard Henderson $source_path/pc-bios/openbios-* \ 4394753d11f2SRichard Henderson $source_path/pc-bios/palcode-* 4395753d11f2SRichard Hendersondo 43967ea78b74SJan Kiszka FILES="$FILES pc-bios/`basename $bios_file`" 43977ea78b74SJan Kiszkadone 4398d1807a4fSPaolo Bonzinimkdir -p $DIRS 43997d13299dSbellardfor f in $FILES ; do 440072b8b5a1SStefan Weil if [ -e "$source_path/$f" ] && [ "$source_path" != `pwd` ]; then 4401f9245e10SPeter Maydell symlink "$source_path/$f" "$f" 4402f9245e10SPeter Maydell fi 44037d13299dSbellarddone 44041ad2134fSPaul Brook 4405c34ebfdcSAnthony Liguori# temporary config to build submodules 44062d9f27d2SAnthony Liguorifor rom in seabios vgabios ; do 4407c34ebfdcSAnthony Liguori config_mak=roms/$rom/config.mak 440837116c89SStefan Weil echo "# Automatically generated by configure - do not modify" > $config_mak 4409c34ebfdcSAnthony Liguori echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak 44103dd46c78SBlue Swirl echo "AS=$as" >> $config_mak 4411c34ebfdcSAnthony Liguori echo "CC=$cc" >> $config_mak 4412c34ebfdcSAnthony Liguori echo "BCC=bcc" >> $config_mak 44133dd46c78SBlue Swirl echo "CPP=$cpp" >> $config_mak 4414c34ebfdcSAnthony Liguori echo "OBJCOPY=objcopy" >> $config_mak 4415c34ebfdcSAnthony Liguori echo "IASL=iasl" >> $config_mak 4416c34ebfdcSAnthony Liguori echo "LD=$ld" >> $config_mak 4417c34ebfdcSAnthony Liguoridone 4418c34ebfdcSAnthony Liguori 4419b40292e7SJan Kiszkaif test "$docs" = "yes" ; then 4420b40292e7SJan Kiszka mkdir -p QMP 4421b40292e7SJan Kiszkafi 4422