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 24232df87df7SJuan Quintela else 24242df87df7SJuan Quintela if test "$fdt" = "yes" ; then 24252df87df7SJuan Quintela feature_not_found "fdt" 24262df87df7SJuan Quintela fi 2427de3a354aSMichael Walle fdt_libs= 24282df87df7SJuan Quintela fdt=no 2429f652e6afSaurel32 fi 2430f652e6afSaurel32fi 2431f652e6afSaurel32 243220ff075bSMichael Walle########################################## 243320ff075bSMichael Walle# opengl probe, used by milkymist-tmu2 243420ff075bSMichael Walleif test "$opengl" != "no" ; then 243584208085SRichard Henderson opengl_libs="-lGL -lX11" 243620ff075bSMichael Walle cat > $TMPC << EOF 243720ff075bSMichael Walle#include <X11/Xlib.h> 243820ff075bSMichael Walle#include <GL/gl.h> 243920ff075bSMichael Walle#include <GL/glx.h> 244084972cbbSStefan Weilint main(void) { return GL_VERSION != 0; } 244120ff075bSMichael WalleEOF 244220ff075bSMichael Walle if compile_prog "" "-lGL" ; then 244320ff075bSMichael Walle opengl=yes 244420ff075bSMichael Walle else 244520ff075bSMichael Walle if test "$opengl" = "yes" ; then 244620ff075bSMichael Walle feature_not_found "opengl" 244720ff075bSMichael Walle fi 2448de3a354aSMichael Walle opengl_libs= 244920ff075bSMichael Walle opengl=no 245020ff075bSMichael Walle fi 245120ff075bSMichael Wallefi 245220ff075bSMichael Walle 2453eb100396SBharata B Rao########################################## 2454eb100396SBharata B Rao# glusterfs probe 2455eb100396SBharata B Raoif test "$glusterfs" != "no" ; then 2456eb100396SBharata B Rao cat > $TMPC <<EOF 2457eb100396SBharata B Rao#include <glusterfs/api/glfs.h> 2458eb100396SBharata B Raoint main(void) { 2459eb100396SBharata B Rao (void) glfs_new("volume"); 2460eb100396SBharata B Rao return 0; 2461eb100396SBharata B Rao} 2462eb100396SBharata B RaoEOF 2463eb100396SBharata B Rao glusterfs_libs="-lgfapi -lgfrpc -lgfxdr" 2464eb100396SBharata B Rao if compile_prog "" "$glusterfs_libs" ; then 2465eb100396SBharata B Rao glusterfs=yes 2466eb100396SBharata B Rao libs_tools="$glusterfs_libs $libs_tools" 2467eb100396SBharata B Rao libs_softmmu="$glusterfs_libs $libs_softmmu" 2468eb100396SBharata B Rao else 2469eb100396SBharata B Rao if test "$glusterfs" = "yes" ; then 2470eb100396SBharata B Rao feature_not_found "GlusterFS backend support" 2471eb100396SBharata B Rao fi 2472eb100396SBharata B Rao glusterfs=no 2473eb100396SBharata B Rao fi 2474eb100396SBharata B Raofi 2475eb100396SBharata B Rao 24763b3f24adSaurel32# 24773b3f24adSaurel32# Check for xxxat() functions when we are building linux-user 24783b3f24adSaurel32# emulator. This is done because older glibc versions don't 24793b3f24adSaurel32# have syscall stubs for these implemented. 24803b3f24adSaurel32# 24813b3f24adSaurel32atfile=no 24823b3f24adSaurel32cat > $TMPC << EOF 24833b3f24adSaurel32#define _ATFILE_SOURCE 24843b3f24adSaurel32#include <sys/types.h> 24853b3f24adSaurel32#include <fcntl.h> 24863b3f24adSaurel32#include <unistd.h> 24873b3f24adSaurel32 24883b3f24adSaurel32int 24893b3f24adSaurel32main(void) 24903b3f24adSaurel32{ 24913b3f24adSaurel32 /* try to unlink nonexisting file */ 24923b3f24adSaurel32 return (unlinkat(AT_FDCWD, "nonexistent_file", 0)); 24933b3f24adSaurel32} 24943b3f24adSaurel32EOF 249552166aa0SJuan Quintelaif compile_prog "" "" ; then 24963b3f24adSaurel32 atfile=yes 24973b3f24adSaurel32fi 24983b3f24adSaurel32 249939386ac7Saurel32# Check for inotify functions when we are building linux-user 25003b3f24adSaurel32# emulator. This is done because older glibc versions don't 25013b3f24adSaurel32# have syscall stubs for these implemented. In that case we 25023b3f24adSaurel32# don't provide them even if kernel supports them. 25033b3f24adSaurel32# 25043b3f24adSaurel32inotify=no 25053b3f24adSaurel32cat > $TMPC << EOF 25063b3f24adSaurel32#include <sys/inotify.h> 25073b3f24adSaurel32 25083b3f24adSaurel32int 25093b3f24adSaurel32main(void) 25103b3f24adSaurel32{ 25113b3f24adSaurel32 /* try to start inotify */ 25128690e420Saurel32 return inotify_init(); 25133b3f24adSaurel32} 25143b3f24adSaurel32EOF 251552166aa0SJuan Quintelaif compile_prog "" "" ; then 25163b3f24adSaurel32 inotify=yes 25173b3f24adSaurel32fi 25183b3f24adSaurel32 2519c05c7a73SRiku Voipioinotify1=no 2520c05c7a73SRiku Voipiocat > $TMPC << EOF 2521c05c7a73SRiku Voipio#include <sys/inotify.h> 2522c05c7a73SRiku Voipio 2523c05c7a73SRiku Voipioint 2524c05c7a73SRiku Voipiomain(void) 2525c05c7a73SRiku Voipio{ 2526c05c7a73SRiku Voipio /* try to start inotify */ 2527c05c7a73SRiku Voipio return inotify_init1(0); 2528c05c7a73SRiku Voipio} 2529c05c7a73SRiku VoipioEOF 2530c05c7a73SRiku Voipioif compile_prog "" "" ; then 2531c05c7a73SRiku Voipio inotify1=yes 2532c05c7a73SRiku Voipiofi 2533c05c7a73SRiku Voipio 2534ebc996f3SRiku Voipio# check if utimensat and futimens are supported 2535ebc996f3SRiku Voipioutimens=no 2536ebc996f3SRiku Voipiocat > $TMPC << EOF 2537ebc996f3SRiku Voipio#define _ATFILE_SOURCE 2538ebc996f3SRiku Voipio#include <stddef.h> 2539ebc996f3SRiku Voipio#include <fcntl.h> 25403014ee00SPeter Maydell#include <sys/stat.h> 2541ebc996f3SRiku Voipio 2542ebc996f3SRiku Voipioint main(void) 2543ebc996f3SRiku Voipio{ 2544ebc996f3SRiku Voipio utimensat(AT_FDCWD, "foo", NULL, 0); 2545ebc996f3SRiku Voipio futimens(0, NULL); 2546ebc996f3SRiku Voipio return 0; 2547ebc996f3SRiku Voipio} 2548ebc996f3SRiku VoipioEOF 254952166aa0SJuan Quintelaif compile_prog "" "" ; then 2550ebc996f3SRiku Voipio utimens=yes 2551ebc996f3SRiku Voipiofi 2552ebc996f3SRiku Voipio 2553099d6b0fSRiku Voipio# check if pipe2 is there 2554099d6b0fSRiku Voipiopipe2=no 2555099d6b0fSRiku Voipiocat > $TMPC << EOF 2556099d6b0fSRiku Voipio#include <unistd.h> 2557099d6b0fSRiku Voipio#include <fcntl.h> 2558099d6b0fSRiku Voipio 2559099d6b0fSRiku Voipioint main(void) 2560099d6b0fSRiku Voipio{ 2561099d6b0fSRiku Voipio int pipefd[2]; 25629bca8162SBruce Rogers return pipe2(pipefd, O_CLOEXEC); 2563099d6b0fSRiku Voipio} 2564099d6b0fSRiku VoipioEOF 256552166aa0SJuan Quintelaif compile_prog "" "" ; then 2566099d6b0fSRiku Voipio pipe2=yes 2567099d6b0fSRiku Voipiofi 2568099d6b0fSRiku Voipio 256940ff6d7eSKevin Wolf# check if accept4 is there 257040ff6d7eSKevin Wolfaccept4=no 257140ff6d7eSKevin Wolfcat > $TMPC << EOF 257240ff6d7eSKevin Wolf#include <sys/socket.h> 257340ff6d7eSKevin Wolf#include <stddef.h> 257440ff6d7eSKevin Wolf 257540ff6d7eSKevin Wolfint main(void) 257640ff6d7eSKevin Wolf{ 257740ff6d7eSKevin Wolf accept4(0, NULL, NULL, SOCK_CLOEXEC); 257840ff6d7eSKevin Wolf return 0; 257940ff6d7eSKevin Wolf} 258040ff6d7eSKevin WolfEOF 258140ff6d7eSKevin Wolfif compile_prog "" "" ; then 258240ff6d7eSKevin Wolf accept4=yes 258340ff6d7eSKevin Wolffi 258440ff6d7eSKevin Wolf 25853ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time. 25863ce34dfbSvibisreenivasansplice=no 25873ce34dfbSvibisreenivasancat > $TMPC << EOF 25883ce34dfbSvibisreenivasan#include <unistd.h> 25893ce34dfbSvibisreenivasan#include <fcntl.h> 25903ce34dfbSvibisreenivasan#include <limits.h> 25913ce34dfbSvibisreenivasan 25923ce34dfbSvibisreenivasanint main(void) 25933ce34dfbSvibisreenivasan{ 259466ea0f22SStefan Weil int len, fd = 0; 25953ce34dfbSvibisreenivasan len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK); 25963ce34dfbSvibisreenivasan splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE); 25973ce34dfbSvibisreenivasan return 0; 25983ce34dfbSvibisreenivasan} 25993ce34dfbSvibisreenivasanEOF 260052166aa0SJuan Quintelaif compile_prog "" "" ; then 26013ce34dfbSvibisreenivasan splice=yes 26023ce34dfbSvibisreenivasanfi 26033ce34dfbSvibisreenivasan 2604dcc38d1cSMarcelo Tosatti########################################## 2605dcc38d1cSMarcelo Tosatti# signalfd probe 2606dcc38d1cSMarcelo Tosattisignalfd="no" 2607dcc38d1cSMarcelo Tosatticat > $TMPC << EOF 2608dcc38d1cSMarcelo Tosatti#include <unistd.h> 2609dcc38d1cSMarcelo Tosatti#include <sys/syscall.h> 2610dcc38d1cSMarcelo Tosatti#include <signal.h> 2611dcc38d1cSMarcelo Tosattiint main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); } 2612dcc38d1cSMarcelo TosattiEOF 2613dcc38d1cSMarcelo Tosatti 2614dcc38d1cSMarcelo Tosattiif compile_prog "" "" ; then 2615dcc38d1cSMarcelo Tosatti signalfd=yes 2616dcc38d1cSMarcelo Tosattifi 2617dcc38d1cSMarcelo Tosatti 2618c2882b96SRiku Voipio# check if eventfd is supported 2619c2882b96SRiku Voipioeventfd=no 2620c2882b96SRiku Voipiocat > $TMPC << EOF 2621c2882b96SRiku Voipio#include <sys/eventfd.h> 2622c2882b96SRiku Voipio 2623c2882b96SRiku Voipioint main(void) 2624c2882b96SRiku Voipio{ 262555cc7f3eSStefan Weil return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); 2626c2882b96SRiku Voipio} 2627c2882b96SRiku VoipioEOF 2628c2882b96SRiku Voipioif compile_prog "" "" ; then 2629c2882b96SRiku Voipio eventfd=yes 2630c2882b96SRiku Voipiofi 2631c2882b96SRiku Voipio 2632d0927938SUlrich Hecht# check for fallocate 2633d0927938SUlrich Hechtfallocate=no 2634d0927938SUlrich Hechtcat > $TMPC << EOF 2635d0927938SUlrich Hecht#include <fcntl.h> 2636d0927938SUlrich Hecht 2637d0927938SUlrich Hechtint main(void) 2638d0927938SUlrich Hecht{ 2639d0927938SUlrich Hecht fallocate(0, 0, 0, 0); 2640d0927938SUlrich Hecht return 0; 2641d0927938SUlrich Hecht} 2642d0927938SUlrich HechtEOF 26438fb03151SPeter Maydellif compile_prog "" "" ; then 2644d0927938SUlrich Hecht fallocate=yes 2645d0927938SUlrich Hechtfi 2646d0927938SUlrich Hecht 26473d4fa43eSKusanagi Kouichi# check for fallocate hole punching 26483d4fa43eSKusanagi Kouichifallocate_punch_hole=no 26493d4fa43eSKusanagi Kouichicat > $TMPC << EOF 26503d4fa43eSKusanagi Kouichi#include <fcntl.h> 26513d4fa43eSKusanagi Kouichi#include <linux/falloc.h> 26523d4fa43eSKusanagi Kouichi 26533d4fa43eSKusanagi Kouichiint main(void) 26543d4fa43eSKusanagi Kouichi{ 26553d4fa43eSKusanagi Kouichi fallocate(0, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, 0, 0); 26563d4fa43eSKusanagi Kouichi return 0; 26573d4fa43eSKusanagi Kouichi} 26583d4fa43eSKusanagi KouichiEOF 26593d4fa43eSKusanagi Kouichiif compile_prog "" "" ; then 26603d4fa43eSKusanagi Kouichi fallocate_punch_hole=yes 26613d4fa43eSKusanagi Kouichifi 26623d4fa43eSKusanagi Kouichi 2663c727f47dSPeter Maydell# check for sync_file_range 2664c727f47dSPeter Maydellsync_file_range=no 2665c727f47dSPeter Maydellcat > $TMPC << EOF 2666c727f47dSPeter Maydell#include <fcntl.h> 2667c727f47dSPeter Maydell 2668c727f47dSPeter Maydellint main(void) 2669c727f47dSPeter Maydell{ 2670c727f47dSPeter Maydell sync_file_range(0, 0, 0, 0); 2671c727f47dSPeter Maydell return 0; 2672c727f47dSPeter Maydell} 2673c727f47dSPeter MaydellEOF 26748fb03151SPeter Maydellif compile_prog "" "" ; then 2675c727f47dSPeter Maydell sync_file_range=yes 2676c727f47dSPeter Maydellfi 2677c727f47dSPeter Maydell 2678dace20dcSPeter Maydell# check for linux/fiemap.h and FS_IOC_FIEMAP 2679dace20dcSPeter Maydellfiemap=no 2680dace20dcSPeter Maydellcat > $TMPC << EOF 2681dace20dcSPeter Maydell#include <sys/ioctl.h> 2682dace20dcSPeter Maydell#include <linux/fs.h> 2683dace20dcSPeter Maydell#include <linux/fiemap.h> 2684dace20dcSPeter Maydell 2685dace20dcSPeter Maydellint main(void) 2686dace20dcSPeter Maydell{ 2687dace20dcSPeter Maydell ioctl(0, FS_IOC_FIEMAP, 0); 2688dace20dcSPeter Maydell return 0; 2689dace20dcSPeter Maydell} 2690dace20dcSPeter MaydellEOF 26918fb03151SPeter Maydellif compile_prog "" "" ; then 2692dace20dcSPeter Maydell fiemap=yes 2693dace20dcSPeter Maydellfi 2694dace20dcSPeter Maydell 2695d0927938SUlrich Hecht# check for dup3 2696d0927938SUlrich Hechtdup3=no 2697d0927938SUlrich Hechtcat > $TMPC << EOF 2698d0927938SUlrich Hecht#include <unistd.h> 2699d0927938SUlrich Hecht 2700d0927938SUlrich Hechtint main(void) 2701d0927938SUlrich Hecht{ 2702d0927938SUlrich Hecht dup3(0, 0, 0); 2703d0927938SUlrich Hecht return 0; 2704d0927938SUlrich Hecht} 2705d0927938SUlrich HechtEOF 270678f5d726SJan Kiszkaif compile_prog "" "" ; then 2707d0927938SUlrich Hecht dup3=yes 2708d0927938SUlrich Hechtfi 2709d0927938SUlrich Hecht 27103b6edd16SPeter Maydell# check for epoll support 27113b6edd16SPeter Maydellepoll=no 27123b6edd16SPeter Maydellcat > $TMPC << EOF 27133b6edd16SPeter Maydell#include <sys/epoll.h> 27143b6edd16SPeter Maydell 27153b6edd16SPeter Maydellint main(void) 27163b6edd16SPeter Maydell{ 27173b6edd16SPeter Maydell epoll_create(0); 27183b6edd16SPeter Maydell return 0; 27193b6edd16SPeter Maydell} 27203b6edd16SPeter MaydellEOF 27218fb03151SPeter Maydellif compile_prog "" "" ; then 27223b6edd16SPeter Maydell epoll=yes 27233b6edd16SPeter Maydellfi 27243b6edd16SPeter Maydell 27253b6edd16SPeter Maydell# epoll_create1 and epoll_pwait are later additions 27263b6edd16SPeter Maydell# so we must check separately for their presence 27273b6edd16SPeter Maydellepoll_create1=no 27283b6edd16SPeter Maydellcat > $TMPC << EOF 27293b6edd16SPeter Maydell#include <sys/epoll.h> 27303b6edd16SPeter Maydell 27313b6edd16SPeter Maydellint main(void) 27323b6edd16SPeter Maydell{ 273319e83f6bSPeter Maydell /* Note that we use epoll_create1 as a value, not as 273419e83f6bSPeter Maydell * a function being called. This is necessary so that on 273519e83f6bSPeter Maydell * old SPARC glibc versions where the function was present in 273619e83f6bSPeter Maydell * the library but not declared in the header file we will 273719e83f6bSPeter Maydell * fail the configure check. (Otherwise we will get a compiler 273819e83f6bSPeter Maydell * warning but not an error, and will proceed to fail the 273919e83f6bSPeter Maydell * qemu compile where we compile with -Werror.) 274019e83f6bSPeter Maydell */ 2741c075a723SBlue Swirl return (int)(uintptr_t)&epoll_create1; 27423b6edd16SPeter Maydell} 27433b6edd16SPeter MaydellEOF 27448fb03151SPeter Maydellif compile_prog "" "" ; then 27453b6edd16SPeter Maydell epoll_create1=yes 27463b6edd16SPeter Maydellfi 27473b6edd16SPeter Maydell 27483b6edd16SPeter Maydellepoll_pwait=no 27493b6edd16SPeter Maydellcat > $TMPC << EOF 27503b6edd16SPeter Maydell#include <sys/epoll.h> 27513b6edd16SPeter Maydell 27523b6edd16SPeter Maydellint main(void) 27533b6edd16SPeter Maydell{ 27543b6edd16SPeter Maydell epoll_pwait(0, 0, 0, 0, 0); 27553b6edd16SPeter Maydell return 0; 27563b6edd16SPeter Maydell} 27573b6edd16SPeter MaydellEOF 27588fb03151SPeter Maydellif compile_prog "" "" ; then 27593b6edd16SPeter Maydell epoll_pwait=yes 27603b6edd16SPeter Maydellfi 27613b6edd16SPeter Maydell 2762cc8ae6deSpbrook# Check if tools are available to build documentation. 2763a25dba17SJuan Quintelaif test "$docs" != "no" ; then 276401668d98SStefan Weil if has makeinfo && has pod2man; then 2765a25dba17SJuan Quintela docs=yes 276683a3ab8bSJuan Quintela else 2767a25dba17SJuan Quintela if test "$docs" = "yes" ; then 2768a25dba17SJuan Quintela feature_not_found "docs" 276983a3ab8bSJuan Quintela fi 2770a25dba17SJuan Quintela docs=no 277183a3ab8bSJuan Quintela fi 2772cc8ae6deSpbrookfi 2773cc8ae6deSpbrook 2774f514f41cSStefan Weil# Search for bswap_32 function 27756ae9a1f4SJuan Quintelabyteswap_h=no 27766ae9a1f4SJuan Quintelacat > $TMPC << EOF 27776ae9a1f4SJuan Quintela#include <byteswap.h> 27786ae9a1f4SJuan Quintelaint main(void) { return bswap_32(0); } 27796ae9a1f4SJuan QuintelaEOF 278052166aa0SJuan Quintelaif compile_prog "" "" ; then 27816ae9a1f4SJuan Quintela byteswap_h=yes 27826ae9a1f4SJuan Quintelafi 27836ae9a1f4SJuan Quintela 278475f13596SStefan Weil# Search for bswap32 function 27856ae9a1f4SJuan Quintelabswap_h=no 27866ae9a1f4SJuan Quintelacat > $TMPC << EOF 27876ae9a1f4SJuan Quintela#include <sys/endian.h> 27886ae9a1f4SJuan Quintela#include <sys/types.h> 27896ae9a1f4SJuan Quintela#include <machine/bswap.h> 27906ae9a1f4SJuan Quintelaint main(void) { return bswap32(0); } 27916ae9a1f4SJuan QuintelaEOF 279252166aa0SJuan Quintelaif compile_prog "" "" ; then 27936ae9a1f4SJuan Quintela bswap_h=yes 27946ae9a1f4SJuan Quintelafi 27956ae9a1f4SJuan Quintela 2796da93a1fdSaliguori########################################## 2797c589b249SRonnie Sahlberg# Do we have libiscsi 2798fa6acb0cSRonnie Sahlberg# We check for iscsi_unmap_sync() to make sure we have a 2799fa6acb0cSRonnie Sahlberg# recent enough version of libiscsi. 2800c589b249SRonnie Sahlbergif test "$libiscsi" != "no" ; then 2801c589b249SRonnie Sahlberg cat > $TMPC << EOF 2802fa6acb0cSRonnie Sahlberg#include <stdio.h> 2803c589b249SRonnie Sahlberg#include <iscsi/iscsi.h> 2804fa6acb0cSRonnie Sahlbergint main(void) { iscsi_unmap_sync(NULL,0,0,0,NULL,0); return 0; } 2805c589b249SRonnie SahlbergEOF 2806*3c33ea96SPaolo Bonzini if $pkg_config --atleast-version=1.7.0 libiscsi --modversion >/dev/null 2>&1; then 2807*3c33ea96SPaolo Bonzini libiscsi="yes" 2808*3c33ea96SPaolo Bonzini libiscsi_cflags=$($pkg_config --cflags libiscsi 2>/dev/null) 2809*3c33ea96SPaolo Bonzini libiscsi_libs=$($pkg_config --libs libiscsi 2>/dev/null) 2810*3c33ea96SPaolo Bonzini CFLAGS="$CFLAGS $libiscsi_cflags" 2811*3c33ea96SPaolo Bonzini LIBS="$LIBS $libiscsi_libs" 2812*3c33ea96SPaolo Bonzini elif compile_prog "" "-liscsi" ; then 2813c589b249SRonnie Sahlberg libiscsi="yes" 2814c589b249SRonnie Sahlberg LIBS="$LIBS -liscsi" 2815c589b249SRonnie Sahlberg else 2816c589b249SRonnie Sahlberg if test "$libiscsi" = "yes" ; then 2817c589b249SRonnie Sahlberg feature_not_found "libiscsi" 2818c589b249SRonnie Sahlberg fi 2819c589b249SRonnie Sahlberg libiscsi="no" 2820c589b249SRonnie Sahlberg fi 2821c589b249SRonnie Sahlbergfi 2822c589b249SRonnie Sahlberg 2823c589b249SRonnie Sahlberg 2824c589b249SRonnie Sahlberg########################################## 28258bacde8dSNatanael Copa# Do we need libm 28268bacde8dSNatanael Copacat > $TMPC << EOF 28278bacde8dSNatanael Copa#include <math.h> 28288bacde8dSNatanael Copaint main(void) { return isnan(sin(0.0)); } 28298bacde8dSNatanael CopaEOF 28308bacde8dSNatanael Copaif compile_prog "" "" ; then 28318bacde8dSNatanael Copa : 28328bacde8dSNatanael Copaelif compile_prog "" "-lm" ; then 28338bacde8dSNatanael Copa LIBS="-lm $LIBS" 28348bacde8dSNatanael Copa libs_qga="-lm $libs_qga" 28358bacde8dSNatanael Copaelse 28368bacde8dSNatanael Copa echo 28378bacde8dSNatanael Copa echo "Error: libm check failed" 28388bacde8dSNatanael Copa echo 28398bacde8dSNatanael Copa exit 1 28408bacde8dSNatanael Copafi 28418bacde8dSNatanael Copa 28428bacde8dSNatanael Copa########################################## 2843da93a1fdSaliguori# Do we need librt 28448bacde8dSNatanael Copa# uClibc provides 2 versions of clock_gettime(), one with realtime 28458bacde8dSNatanael Copa# support and one without. This means that the clock_gettime() don't 28468bacde8dSNatanael Copa# need -lrt. We still need it for timer_create() so we check for this 28478bacde8dSNatanael Copa# function in addition. 2848da93a1fdSaliguoricat > $TMPC <<EOF 2849da93a1fdSaliguori#include <signal.h> 2850da93a1fdSaliguori#include <time.h> 28518bacde8dSNatanael Copaint main(void) { 28528bacde8dSNatanael Copa timer_create(CLOCK_REALTIME, NULL, NULL); 28538bacde8dSNatanael Copa return clock_gettime(CLOCK_REALTIME, NULL); 28548bacde8dSNatanael Copa} 2855da93a1fdSaliguoriEOF 2856da93a1fdSaliguori 285752166aa0SJuan Quintelaif compile_prog "" "" ; then 285807ffa4bdSJuan Quintela : 28598bacde8dSNatanael Copa# we need pthread for static linking. use previous pthread test result 28608bacde8dSNatanael Copaelif compile_prog "" "-lrt $pthread_lib" ; then 286107ffa4bdSJuan Quintela LIBS="-lrt $LIBS" 28628bacde8dSNatanael Copa libs_qga="-lrt $libs_qga" 2863da93a1fdSaliguorifi 2864da93a1fdSaliguori 286531ff504dSBlue Swirlif test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \ 2866179cf400SAndreas Färber "$aix" != "yes" -a "$haiku" != "yes" ; then 28676362a53fSJuan Quintela libs_softmmu="-lutil $libs_softmmu" 28686362a53fSJuan Quintelafi 28696362a53fSJuan Quintela 2870de5071c5SBlue Swirl########################################## 2871cd4ec0b4SGerd Hoffmann# spice probe 2872cd4ec0b4SGerd Hoffmannif test "$spice" != "no" ; then 2873cd4ec0b4SGerd Hoffmann cat > $TMPC << EOF 2874cd4ec0b4SGerd Hoffmann#include <spice.h> 2875cd4ec0b4SGerd Hoffmannint main(void) { spice_server_new(); return 0; } 2876cd4ec0b4SGerd HoffmannEOF 2877710fc4f5SJiri Denemark spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null) 2878710fc4f5SJiri Denemark spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null) 287967be6726SGerd Hoffmann if $pkg_config --atleast-version=0.12.0 spice-server >/dev/null 2>&1 && \ 288067be6726SGerd Hoffmann $pkg_config --atleast-version=0.12.2 spice-protocol > /dev/null 2>&1 && \ 2881cd4ec0b4SGerd Hoffmann compile_prog "$spice_cflags" "$spice_libs" ; then 2882cd4ec0b4SGerd Hoffmann spice="yes" 2883cd4ec0b4SGerd Hoffmann libs_softmmu="$libs_softmmu $spice_libs" 2884cd4ec0b4SGerd Hoffmann QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags" 28852e0e3c39SAlon Levy spice_protocol_version=$($pkg_config --modversion spice-protocol) 28862e0e3c39SAlon Levy spice_server_version=$($pkg_config --modversion spice-server) 2887cd4ec0b4SGerd Hoffmann else 2888cd4ec0b4SGerd Hoffmann if test "$spice" = "yes" ; then 2889cd4ec0b4SGerd Hoffmann feature_not_found "spice" 2890cd4ec0b4SGerd Hoffmann fi 2891cd4ec0b4SGerd Hoffmann spice="no" 2892cd4ec0b4SGerd Hoffmann fi 2893cd4ec0b4SGerd Hoffmannfi 2894cd4ec0b4SGerd Hoffmann 2895111a38b0SRobert Relyea# check for libcacard for smartcard support 2896111a38b0SRobert Relyeasmartcard_cflags="" 2897111a38b0SRobert Relyea# TODO - what's the minimal nss version we support? 2898111a38b0SRobert Relyeaif test "$smartcard_nss" != "no"; then 28995f01e06fSSergei Trofimovich cat > $TMPC << EOF 29005f01e06fSSergei Trofimovich#include <pk11pub.h> 29015f01e06fSSergei Trofimovichint main(void) { PK11_FreeSlot(0); return 0; } 29025f01e06fSSergei TrofimovichEOF 29030b22ef0fSPeter Maydell smartcard_includes="-I\$(SRC_PATH)/libcacard" 29048c741c22SAlon Levy libcacard_libs="$($pkg_config --libs nss 2>/dev/null) $glib_libs" 29058c741c22SAlon Levy libcacard_cflags="$($pkg_config --cflags nss 2>/dev/null) $glib_cflags" 29066ca026cbSPeter Maydell test_cflags="$libcacard_cflags" 29076ca026cbSPeter Maydell # The header files in nss < 3.13.3 have a bug which causes them to 29086ca026cbSPeter Maydell # emit a warning. If we're going to compile QEMU with -Werror, then 29096ca026cbSPeter Maydell # test that the headers don't have this bug. Otherwise we would pass 29106ca026cbSPeter Maydell # the configure test but fail to compile QEMU later. 29116ca026cbSPeter Maydell if test "$werror" = "yes"; then 29126ca026cbSPeter Maydell test_cflags="-Werror $test_cflags" 29136ca026cbSPeter Maydell fi 2914b6fc675bSPaolo Bonzini if test -n "$libtool" && 2915b6fc675bSPaolo Bonzini $pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 && \ 29166ca026cbSPeter Maydell compile_prog "$test_cflags" "$libcacard_libs"; then 29175f01e06fSSergei Trofimovich smartcard_nss="yes" 29180b22ef0fSPeter Maydell QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags" 29190b22ef0fSPeter Maydell QEMU_INCLUDES="$QEMU_INCLUDES $smartcard_includes" 2920ad4cf3f6SPaul Brook libs_softmmu="$libcacard_libs $libs_softmmu" 2921111a38b0SRobert Relyea else 2922111a38b0SRobert Relyea if test "$smartcard_nss" = "yes"; then 2923111a38b0SRobert Relyea feature_not_found "nss" 2924111a38b0SRobert Relyea fi 2925111a38b0SRobert Relyea smartcard_nss="no" 2926111a38b0SRobert Relyea fi 2927111a38b0SRobert Relyeafi 2928111a38b0SRobert Relyea 292969354a83SHans de Goede# check for usbredirparser for usb network redirection support 293069354a83SHans de Goedeif test "$usb_redir" != "no" ; then 2931b2d1fe67SHans de Goede if $pkg_config --atleast-version=0.6 libusbredirparser-0.5 >/dev/null 2>&1 ; then 293269354a83SHans de Goede usb_redir="yes" 29338b626aa7SHans de Goede usb_redir_cflags=$($pkg_config --cflags libusbredirparser-0.5 2>/dev/null) 29348b626aa7SHans de Goede usb_redir_libs=$($pkg_config --libs libusbredirparser-0.5 2>/dev/null) 293569354a83SHans de Goede QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags" 293656ab2ad1SAurelien Jarno libs_softmmu="$libs_softmmu $usb_redir_libs" 293769354a83SHans de Goede else 293869354a83SHans de Goede if test "$usb_redir" = "yes"; then 293969354a83SHans de Goede feature_not_found "usb-redir" 294069354a83SHans de Goede fi 294169354a83SHans de Goede usb_redir="no" 294269354a83SHans de Goede fi 294369354a83SHans de Goedefi 294469354a83SHans de Goede 2945cd4ec0b4SGerd Hoffmann########################################## 2946cd4ec0b4SGerd Hoffmann 2947747bbdf7SBlue Swirl########################################## 29485f6b9e8fSBlue Swirl# check if we have fdatasync 29495f6b9e8fSBlue Swirl 29505f6b9e8fSBlue Swirlfdatasync=no 29515f6b9e8fSBlue Swirlcat > $TMPC << EOF 29525f6b9e8fSBlue Swirl#include <unistd.h> 2953d1722a27SAlexandre Raymondint main(void) { 2954d1722a27SAlexandre Raymond#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0 2955d1722a27SAlexandre Raymondreturn fdatasync(0); 2956d1722a27SAlexandre Raymond#else 2957e172fe11SStefan Weil#error Not supported 2958d1722a27SAlexandre Raymond#endif 2959d1722a27SAlexandre Raymond} 29605f6b9e8fSBlue SwirlEOF 29615f6b9e8fSBlue Swirlif compile_prog "" "" ; then 29625f6b9e8fSBlue Swirl fdatasync=yes 29635f6b9e8fSBlue Swirlfi 29645f6b9e8fSBlue Swirl 296594a420b1SStefan Hajnoczi########################################## 2966e78815a5SAndreas Färber# check if we have madvise 2967e78815a5SAndreas Färber 2968e78815a5SAndreas Färbermadvise=no 2969e78815a5SAndreas Färbercat > $TMPC << EOF 2970e78815a5SAndreas Färber#include <sys/types.h> 2971e78815a5SAndreas Färber#include <sys/mman.h> 2972832ce9c2SScott Wood#include <stddef.h> 2973e78815a5SAndreas Färberint main(void) { return madvise(NULL, 0, MADV_DONTNEED); } 2974e78815a5SAndreas FärberEOF 2975e78815a5SAndreas Färberif compile_prog "" "" ; then 2976e78815a5SAndreas Färber madvise=yes 2977e78815a5SAndreas Färberfi 2978e78815a5SAndreas Färber 2979e78815a5SAndreas Färber########################################## 2980e78815a5SAndreas Färber# check if we have posix_madvise 2981e78815a5SAndreas Färber 2982e78815a5SAndreas Färberposix_madvise=no 2983e78815a5SAndreas Färbercat > $TMPC << EOF 2984e78815a5SAndreas Färber#include <sys/mman.h> 2985832ce9c2SScott Wood#include <stddef.h> 2986e78815a5SAndreas Färberint main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); } 2987e78815a5SAndreas FärberEOF 2988e78815a5SAndreas Färberif compile_prog "" "" ; then 2989e78815a5SAndreas Färber posix_madvise=yes 2990e78815a5SAndreas Färberfi 2991e78815a5SAndreas Färber 2992e78815a5SAndreas Färber########################################## 29931e9737daSRichard Henderson# check if we have usable SIGEV_THREAD_ID 29941e9737daSRichard Henderson 29951e9737daSRichard Hendersonsigev_thread_id=no 29961e9737daSRichard Hendersoncat > $TMPC << EOF 29971e9737daSRichard Henderson#include <signal.h> 29981e9737daSRichard Hendersonint main(void) { 29991e9737daSRichard Henderson struct sigevent ev; 30001e9737daSRichard Henderson ev.sigev_notify = SIGEV_THREAD_ID; 30011e9737daSRichard Henderson ev._sigev_un._tid = 0; 30021e9737daSRichard Henderson asm volatile("" : : "g"(&ev)); 30031e9737daSRichard Henderson return 0; 30041e9737daSRichard Henderson} 30051e9737daSRichard HendersonEOF 30061e9737daSRichard Hendersonif compile_prog "" "" ; then 30071e9737daSRichard Henderson sigev_thread_id=yes 30081e9737daSRichard Hendersonfi 30091e9737daSRichard Henderson 30101e9737daSRichard Henderson########################################## 301194a420b1SStefan Hajnoczi# check if trace backend exists 301294a420b1SStefan Hajnoczi 3013650ab98dSLluís Vilanova$python "$source_path/scripts/tracetool.py" "--backend=$trace_backend" --check-backend > /dev/null 2> /dev/null 301494a420b1SStefan Hajnocziif test "$?" -ne 0 ; then 301594a420b1SStefan Hajnoczi echo 301694a420b1SStefan Hajnoczi echo "Error: invalid trace backend" 301794a420b1SStefan Hajnoczi echo "Please choose a supported trace backend." 301894a420b1SStefan Hajnoczi echo 301994a420b1SStefan Hajnoczi exit 1 302094a420b1SStefan Hajnoczifi 302194a420b1SStefan Hajnoczi 30227e24e92aSStefan Hajnoczi########################################## 30237e24e92aSStefan Hajnoczi# For 'ust' backend, test if ust headers are present 30247e24e92aSStefan Hajnocziif test "$trace_backend" = "ust"; then 30257e24e92aSStefan Hajnoczi cat > $TMPC << EOF 30267e24e92aSStefan Hajnoczi#include <ust/tracepoint.h> 30277e24e92aSStefan Hajnoczi#include <ust/marker.h> 30287e24e92aSStefan Hajnocziint main(void) { return 0; } 30297e24e92aSStefan HajnocziEOF 30307e24e92aSStefan Hajnoczi if compile_prog "" "" ; then 303194b4fefaSLluís Vilanova LIBS="-lust -lurcu-bp $LIBS" 3032c9a2e37cSLluís Vilanova libs_qga="-lust -lurcu-bp $libs_qga" 30337e24e92aSStefan Hajnoczi else 30347e24e92aSStefan Hajnoczi echo 30357e24e92aSStefan Hajnoczi echo "Error: Trace backend 'ust' missing libust header files" 30367e24e92aSStefan Hajnoczi echo 30377e24e92aSStefan Hajnoczi exit 1 30387e24e92aSStefan Hajnoczi fi 30397e24e92aSStefan Hajnoczifi 3040b3d08c02SDaniel P. Berrange 3041b3d08c02SDaniel P. Berrange########################################## 3042b3d08c02SDaniel P. Berrange# For 'dtrace' backend, test if 'dtrace' command is present 3043b3d08c02SDaniel P. Berrangeif test "$trace_backend" = "dtrace"; then 3044b3d08c02SDaniel P. Berrange if ! has 'dtrace' ; then 3045b3d08c02SDaniel P. Berrange echo 3046b3d08c02SDaniel P. Berrange echo "Error: dtrace command is not found in PATH $PATH" 3047b3d08c02SDaniel P. Berrange echo 3048b3d08c02SDaniel P. Berrange exit 1 3049b3d08c02SDaniel P. Berrange fi 3050c276b17dSDaniel P. Berrange trace_backend_stap="no" 3051c276b17dSDaniel P. Berrange if has 'stap' ; then 3052c276b17dSDaniel P. Berrange trace_backend_stap="yes" 3053c276b17dSDaniel P. Berrange fi 3054b3d08c02SDaniel P. Berrangefi 3055b3d08c02SDaniel P. Berrange 30567e24e92aSStefan Hajnoczi########################################## 3057023367e6SWolfgang Mauerer# __sync_fetch_and_and requires at least -march=i486. Many toolchains 3058023367e6SWolfgang Mauerer# use i686 as default anyway, but for those that don't, an explicit 3059023367e6SWolfgang Mauerer# specification is necessary 30601ba16968SStefan Weilif test "$vhost_net" = "yes" && test "$cpu" = "i386"; then 3061023367e6SWolfgang Mauerer cat > $TMPC << EOF 30627ace252aSStefan Weilstatic int sfaa(int *ptr) 3063023367e6SWolfgang Mauerer{ 3064023367e6SWolfgang Mauerer return __sync_fetch_and_and(ptr, 0); 3065023367e6SWolfgang Mauerer} 3066023367e6SWolfgang Mauerer 3067abab1a0fSStefan Weilint main(void) 3068023367e6SWolfgang Mauerer{ 3069023367e6SWolfgang Mauerer int val = 42; 3070023367e6SWolfgang Mauerer sfaa(&val); 3071023367e6SWolfgang Mauerer return val; 3072023367e6SWolfgang Mauerer} 3073023367e6SWolfgang MauererEOF 3074023367e6SWolfgang Mauerer if ! compile_prog "" "" ; then 3075caa50971SPeter Maydell QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS" 3076023367e6SWolfgang Mauerer fi 3077023367e6SWolfgang Mauererfi 3078023367e6SWolfgang Mauerer 3079023367e6SWolfgang Mauerer########################################## 3080519175a2SAlex Barcelo# check and set a backend for coroutine 3081d0e2fce5SAneesh Kumar K.V 3082519175a2SAlex Barcelo# default is ucontext, but always fallback to gthread 3083519175a2SAlex Barcelo# windows autodetected by make 3084519175a2SAlex Barceloif test "$coroutine" = "" -o "$coroutine" = "ucontext"; then 3085d0e2fce5SAneesh Kumar K.V if test "$darwin" != "yes"; then 3086d0e2fce5SAneesh Kumar K.V cat > $TMPC << EOF 3087d0e2fce5SAneesh Kumar K.V#include <ucontext.h> 3088cdf84806SPeter Maydell#ifdef __stub_makecontext 3089cdf84806SPeter Maydell#error Ignoring glibc stub makecontext which will always fail 3090cdf84806SPeter Maydell#endif 309175cafad7SStefan Weilint main(void) { makecontext(0, 0, 0); return 0; } 3092d0e2fce5SAneesh Kumar K.VEOF 3093d0e2fce5SAneesh Kumar K.V if compile_prog "" "" ; then 3094519175a2SAlex Barcelo coroutine_backend=ucontext 3095519175a2SAlex Barcelo else 3096519175a2SAlex Barcelo coroutine_backend=gthread 3097d0e2fce5SAneesh Kumar K.V fi 3098519175a2SAlex Barcelo fi 3099519175a2SAlex Barceloelif test "$coroutine" = "gthread" ; then 3100519175a2SAlex Barcelo coroutine_backend=gthread 3101519175a2SAlex Barceloelif test "$coroutine" = "windows" ; then 3102519175a2SAlex Barcelo coroutine_backend=windows 3103fe91bfa8SAlex Barceloelif test "$coroutine" = "sigaltstack" ; then 3104fe91bfa8SAlex Barcelo coroutine_backend=sigaltstack 3105519175a2SAlex Barceloelse 3106519175a2SAlex Barcelo echo 3107519175a2SAlex Barcelo echo "Error: unknown coroutine backend $coroutine" 3108519175a2SAlex Barcelo echo 3109519175a2SAlex Barcelo exit 1 3110d0e2fce5SAneesh Kumar K.Vfi 3111d0e2fce5SAneesh Kumar K.V 3112d0e2fce5SAneesh Kumar K.V########################################## 3113d2042378SAneesh Kumar K.V# check if we have open_by_handle_at 3114d2042378SAneesh Kumar K.V 31154e1797f9SStefan Weilopen_by_handle_at=no 3116d2042378SAneesh Kumar K.Vcat > $TMPC << EOF 3117d2042378SAneesh Kumar K.V#include <fcntl.h> 3118acc55ba8SStefan Weil#if !defined(AT_EMPTY_PATH) 3119acc55ba8SStefan Weil# error missing definition 3120acc55ba8SStefan Weil#else 312175cafad7SStefan Weilint main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); } 3122acc55ba8SStefan Weil#endif 3123d2042378SAneesh Kumar K.VEOF 3124d2042378SAneesh Kumar K.Vif compile_prog "" "" ; then 3125d2042378SAneesh Kumar K.V open_by_handle_at=yes 3126d2042378SAneesh Kumar K.Vfi 3127d2042378SAneesh Kumar K.V 3128e06a765eSHarsh Prateek Bora######################################## 3129e06a765eSHarsh Prateek Bora# check if we have linux/magic.h 3130e06a765eSHarsh Prateek Bora 3131e06a765eSHarsh Prateek Boralinux_magic_h=no 3132e06a765eSHarsh Prateek Boracat > $TMPC << EOF 3133e06a765eSHarsh Prateek Bora#include <linux/magic.h> 3134e06a765eSHarsh Prateek Boraint main(void) { 313575cafad7SStefan Weil return 0; 3136e06a765eSHarsh Prateek Bora} 3137e06a765eSHarsh Prateek BoraEOF 3138e06a765eSHarsh Prateek Boraif compile_prog "" "" ; then 3139e06a765eSHarsh Prateek Bora linux_magic_h=yes 3140e06a765eSHarsh Prateek Borafi 3141e06a765eSHarsh Prateek Bora 31428ab1bf12SLuiz Capitulino######################################## 3143c95e3080SKevin Wolf# check whether we can disable warning option with a pragma (this is needed 3144c95e3080SKevin Wolf# to silence warnings in the headers of some versions of external libraries). 3145c95e3080SKevin Wolf# This test has to be compiled with -Werror as otherwise an unknown pragma is 3146c95e3080SKevin Wolf# only a warning. 3147c95e3080SKevin Wolf# 3148c95e3080SKevin Wolf# If we can't selectively disable warning in the code, disable -Werror so that 3149c95e3080SKevin Wolf# the build doesn't fail anyway. 3150c95e3080SKevin Wolf 315106d71fa1SPeter Maydellpragma_disable_unused_but_set=no 315206d71fa1SPeter Maydellcat > $TMPC << EOF 315306d71fa1SPeter Maydell#pragma GCC diagnostic ignored "-Wunused-but-set-variable" 3154c95e3080SKevin Wolf#pragma GCC diagnostic ignored "-Wstrict-prototypes" 3155c95e3080SKevin Wolf 315606d71fa1SPeter Maydellint main(void) { 315706d71fa1SPeter Maydell return 0; 315806d71fa1SPeter Maydell} 315906d71fa1SPeter MaydellEOF 316006d71fa1SPeter Maydellif compile_prog "-Werror" "" ; then 3161cc6e3ca9SGerd Hoffmann pragma_diagnostic_available=yes 3162c95e3080SKevin Wolfelse 3163c95e3080SKevin Wolf werror=no 316406d71fa1SPeter Maydellfi 316506d71fa1SPeter Maydell 316606d71fa1SPeter Maydell######################################## 316762fe8331SChristian Borntraeger# check if we have valgrind/valgrind.h and valgrind/memcheck.h 31683f4349dcSKevin Wolf 31693f4349dcSKevin Wolfvalgrind_h=no 31703f4349dcSKevin Wolfcat > $TMPC << EOF 31713f4349dcSKevin Wolf#include <valgrind/valgrind.h> 317262fe8331SChristian Borntraeger#include <valgrind/memcheck.h> 31733f4349dcSKevin Wolfint main(void) { 31743f4349dcSKevin Wolf return 0; 31753f4349dcSKevin Wolf} 31763f4349dcSKevin WolfEOF 31773f4349dcSKevin Wolfif compile_prog "" "" ; then 31783f4349dcSKevin Wolf valgrind_h=yes 31793f4349dcSKevin Wolffi 31803f4349dcSKevin Wolf 31813f4349dcSKevin Wolf######################################## 31828ab1bf12SLuiz Capitulino# check if environ is declared 31838ab1bf12SLuiz Capitulino 31848ab1bf12SLuiz Capitulinohas_environ=no 31858ab1bf12SLuiz Capitulinocat > $TMPC << EOF 31868ab1bf12SLuiz Capitulino#include <unistd.h> 31878ab1bf12SLuiz Capitulinoint main(void) { 3188c075a723SBlue Swirl environ = 0; 31898ab1bf12SLuiz Capitulino return 0; 31908ab1bf12SLuiz Capitulino} 31918ab1bf12SLuiz CapitulinoEOF 31928ab1bf12SLuiz Capitulinoif compile_prog "" "" ; then 31938ab1bf12SLuiz Capitulino has_environ=yes 31948ab1bf12SLuiz Capitulinofi 31958ab1bf12SLuiz Capitulino 319676a347e1SRichard Henderson######################################## 319776a347e1SRichard Henderson# check if cpuid.h is usable. 319876a347e1SRichard Henderson 319976a347e1SRichard Hendersoncpuid_h=no 320076a347e1SRichard Hendersoncat > $TMPC << EOF 320176a347e1SRichard Henderson#include <cpuid.h> 320276a347e1SRichard Hendersonint main(void) { 320376a347e1SRichard Henderson return 0; 320476a347e1SRichard Henderson} 320576a347e1SRichard HendersonEOF 320676a347e1SRichard Hendersonif compile_prog "" "" ; then 320776a347e1SRichard Henderson cpuid_h=yes 320876a347e1SRichard Hendersonfi 320976a347e1SRichard Henderson 3210f540166bSRichard Henderson######################################## 3211f540166bSRichard Henderson# check if __[u]int128_t is usable. 3212f540166bSRichard Henderson 3213f540166bSRichard Hendersonint128=no 3214f540166bSRichard Hendersoncat > $TMPC << EOF 3215f540166bSRichard Henderson__int128_t a; 3216f540166bSRichard Henderson__uint128_t b; 3217f540166bSRichard Hendersonint main (void) { 3218f540166bSRichard Henderson a = a + b; 3219f540166bSRichard Henderson b = a * b; 3220f540166bSRichard Henderson return 0; 3221f540166bSRichard Henderson} 3222f540166bSRichard HendersonEOF 3223f540166bSRichard Hendersonif compile_prog "" "" ; then 3224f540166bSRichard Henderson int128=yes 3225f540166bSRichard Hendersonfi 322676a347e1SRichard Henderson 3227d2042378SAneesh Kumar K.V########################################## 3228e86ecd4bSJuan Quintela# End of CC checks 3229e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs 3230e86ecd4bSJuan Quintela 32311d728c39SBlue Swirlif test "$gcov" = "yes" ; then 32321d728c39SBlue Swirl CFLAGS="-fprofile-arcs -ftest-coverage -g $CFLAGS" 32331d728c39SBlue Swirl LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS" 32341d728c39SBlue Swirlelif test "$debug" = "no" ; then 32358be74dc0SAvi Kivity CFLAGS="-O2 -D_FORTIFY_SOURCE=2 $CFLAGS" 3236e86ecd4bSJuan Quintelafi 3237a316e378SJuan Quintela 32381d728c39SBlue Swirl 323920ff6c80SAnthony Liguori# Disable zero malloc errors for official releases unless explicitly told to 324020ff6c80SAnthony Liguori# enable/disable 324120ff6c80SAnthony Liguoriif test -z "$zero_malloc" ; then 324220ff6c80SAnthony Liguori if test "$z_version" = "50" ; then 324320ff6c80SAnthony Liguori zero_malloc="no" 324420ff6c80SAnthony Liguori else 324520ff6c80SAnthony Liguori zero_malloc="yes" 324620ff6c80SAnthony Liguori fi 324720ff6c80SAnthony Liguorifi 324820ff6c80SAnthony Liguori 32496ca026cbSPeter Maydell# Now we've finished running tests it's OK to add -Werror to the compiler flags 32506ca026cbSPeter Maydellif test "$werror" = "yes"; then 32516ca026cbSPeter Maydell QEMU_CFLAGS="-Werror $QEMU_CFLAGS" 32526ca026cbSPeter Maydellfi 32536ca026cbSPeter Maydell 3254e86ecd4bSJuan Quintelaif test "$solaris" = "no" ; then 3255e86ecd4bSJuan Quintela if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then 32561156c669SJuan Quintela LDFLAGS="-Wl,--warn-common $LDFLAGS" 3257e86ecd4bSJuan Quintela fi 3258e86ecd4bSJuan Quintelafi 3259e86ecd4bSJuan Quintela 326094dd53c5SGerd Hoffmann# test if pod2man has --utf8 option 326194dd53c5SGerd Hoffmannif pod2man --help | grep -q utf8; then 326294dd53c5SGerd Hoffmann POD2MAN="pod2man --utf8" 326394dd53c5SGerd Hoffmannelse 326494dd53c5SGerd Hoffmann POD2MAN="pod2man" 326594dd53c5SGerd Hoffmannfi 326694dd53c5SGerd Hoffmann 3267952afb71SBlue Swirl# Use ASLR, no-SEH and DEP if available 3268952afb71SBlue Swirlif test "$mingw32" = "yes" ; then 3269952afb71SBlue Swirl for flag in --dynamicbase --no-seh --nxcompat; do 3270952afb71SBlue Swirl if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then 3271952afb71SBlue Swirl LDFLAGS="-Wl,$flag $LDFLAGS" 3272952afb71SBlue Swirl fi 3273952afb71SBlue Swirl done 3274952afb71SBlue Swirlfi 3275952afb71SBlue Swirl 327610ea68b3SEduardo Habkostqemu_confdir=$sysconfdir$confsuffix 3277528ae5b8SEduardo Habkostqemu_datadir=$datadir$confsuffix 3278834574eaSAnthony Liguoriqemu_localedir="$datadir/locale" 32795a67135aSbellard 32804b1c11fdSDaniel P. Berrangetools="" 32814b1c11fdSDaniel P. Berrangeif test "$want_tools" = "yes" ; then 3282ca35f780SPaolo Bonzini tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools" 32834b1c11fdSDaniel P. Berrange if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then 32844b1c11fdSDaniel P. Berrange tools="qemu-nbd\$(EXESUF) $tools" 32854b1c11fdSDaniel P. Berrange fi 32864b1c11fdSDaniel P. Berrangefi 32874b1c11fdSDaniel P. Berrangeif test "$softmmu" = yes ; then 3288983eef5aSMeador Inge if test "$virtfs" != no ; then 3289be5ea8edSAnthony Liguori if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then 3290983eef5aSMeador Inge virtfs=yes 329117bff52bSM. Mohan Kumar tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)" 3292983eef5aSMeador Inge else 3293983eef5aSMeador Inge if test "$virtfs" = yes; then 3294263ddcc8SHarsh Prateek Bora echo "VirtFS is supported only on Linux and requires libcap-devel and libattr-devel" 3295263ddcc8SHarsh Prateek Bora exit 1 3296983eef5aSMeador Inge fi 329717500370SAndreas Färber virtfs=no 3298983eef5aSMeador Inge fi 329917bff52bSM. Mohan Kumar fi 3300ca35f780SPaolo Bonzini if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then 3301d138cee9SMichael Roth if [ "$guest_agent" = "yes" ]; then 330248ff7a62SMichael Roth tools="qemu-ga\$(EXESUF) $tools" 3303d138cee9SMichael Roth fi 3304ca35f780SPaolo Bonzini fi 33054b1c11fdSDaniel P. Berrangefi 3306ca35f780SPaolo Bonzini 3307ca35f780SPaolo Bonzini# Mac OS X ships with a broken assembler 3308ca35f780SPaolo Bonziniroms= 3309ca35f780SPaolo Bonziniif test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ 3310ca35f780SPaolo Bonzini "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \ 3311ca35f780SPaolo Bonzini "$softmmu" = yes ; then 3312ca35f780SPaolo Bonzini roms="optionrom" 3313ca35f780SPaolo Bonzinifi 3314d0384d1dSAndreas Färberif test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then 331539ac8455SDavid Gibson roms="$roms spapr-rtas" 331639ac8455SDavid Gibsonfi 3317ca35f780SPaolo Bonzini 33185ca9388aSGerd Hoffmann# add pixman flags after all config tests are done 33195ca9388aSGerd HoffmannQEMU_CFLAGS="$QEMU_CFLAGS $pixman_cflags" 33205ca9388aSGerd Hoffmannlibs_softmmu="$libs_softmmu $pixman_libs" 33215ca9388aSGerd Hoffmann 33227d13299dSbellardecho "Install prefix $prefix" 3323c00b2808SEduardo Habkostecho "BIOS directory `eval echo $qemu_datadir`" 3324f2b9e1e3SPaolo Bonziniecho "binary directory `eval echo $bindir`" 33253aa5d2beSAlon Levyecho "library directory `eval echo $libdir`" 33268bf188aaSMichael Tokarevecho "libexec directory `eval echo $libexecdir`" 33270f94d6daSAlon Levyecho "include directory `eval echo $includedir`" 33281c0fd160SAurelien Jarnoecho "config directory `eval echo $sysconfdir`" 3329785c23aeSLuiz Capitulinoecho "local state directory `eval echo $local_statedir`" 333011d9f695Sbellardif test "$mingw32" = "no" ; then 3331f2b9e1e3SPaolo Bonziniecho "Manual directory `eval echo $mandir`" 333243ce4dfeSbellardecho "ELF interp prefix $interp_prefix" 333311d9f695Sbellardfi 33345a67135aSbellardecho "Source path $source_path" 33357d13299dSbellardecho "C compiler $cc" 333683469015Sbellardecho "Host C compiler $host_cc" 33373c4a4d0dSPeter Maydellecho "Objective-C compiler $objcc" 33380c439cbfSJuan Quintelaecho "CFLAGS $CFLAGS" 3339a558ee17SJuan Quintelaecho "QEMU_CFLAGS $QEMU_CFLAGS" 33400c439cbfSJuan Quintelaecho "LDFLAGS $LDFLAGS" 33417d13299dSbellardecho "make $make" 33426a882643Spbrookecho "install $install" 3343c886edfbSBlue Swirlecho "python $python" 3344e2d8830eSBradif test "$slirp" = "yes" ; then 3345e2d8830eSBrad echo "smbd $smbd" 3346e2d8830eSBradfi 3347a98fd896Sbellardecho "host CPU $cpu" 3348de83cd02Sbellardecho "host big endian $bigendian" 334997a847bcSbellardecho "target list $target_list" 3350ade25b0dSaurel32echo "tcg debug enabled $debug_tcg" 33517d13299dSbellardecho "gprof enabled $gprof" 335203b4fe7dSaliguoriecho "sparse enabled $sparse" 33531625af87Saliguoriecho "strip binaries $strip_opt" 335405c2a3e7Sbellardecho "profiler $profiler" 335543ce4dfeSbellardecho "static build $static" 335685aa5189Sbellardecho "-Werror enabled $werror" 33575b0753e0Sbellardif test "$darwin" = "yes" ; then 33585b0753e0Sbellard echo "Cocoa support $cocoa" 33595b0753e0Sbellardfi 3360e2134eb9SGerd Hoffmannecho "pixman $pixman" 336197a847bcSbellardecho "SDL support $sdl" 3362a4ccabcfSAnthony Liguoriecho "GTK support $gtk" 33634d3b6f6eSbalrogecho "curses support $curses" 3364769ce76dSAlexander Grafecho "curl support $curl" 336567b915a5Sbellardecho "mingw32 support $mingw32" 33660c58ac1cSmalcecho "Audio drivers $audio_drv_list" 33670c58ac1cSmalcecho "Extra audio cards $audio_card_list" 3368eb852011SMarkus Armbrusterecho "Block whitelist $block_drv_whitelist" 33698ff9cbf7Smalcecho "Mixer emulation $mixemu" 3370983eef5aSMeador Ingeecho "VirtFS support $virtfs" 3371821601eaSJes Sorensenecho "VNC support $vnc" 3372821601eaSJes Sorensenif test "$vnc" = "yes" ; then 33738d5d2d4cSths echo "VNC TLS support $vnc_tls" 33742f9606b3Saliguori echo "VNC SASL support $vnc_sasl" 33752f6f5c7aSCorentin Chary echo "VNC JPEG support $vnc_jpeg" 3376efe556adSCorentin Chary echo "VNC PNG support $vnc_png" 33777536ee4bSTim Hardeck echo "VNC WS support $vnc_ws" 3378821601eaSJes Sorensenfi 33793142255cSblueswir1if test -n "$sparc_cpu"; then 33803142255cSblueswir1 echo "Target Sparc Arch $sparc_cpu" 33813142255cSblueswir1fi 3382e37630caSaliguoriecho "xen support $xen" 33832e4d9fb1Saurel32echo "brlapi support $brlapi" 3384a20a6f46SJuan Quintelaecho "bluez support $bluez" 3385a25dba17SJuan Quintelaecho "Documentation $docs" 3386c5937220Spbrook[ ! -z "$uname_release" ] && \ 3387c5937220Spbrookecho "uname -r $uname_release" 3388bd0c5661Spbrookecho "NPTL support $nptl" 3389379f6698SPaul Brookecho "GUEST_BASE $guest_base" 339040d6444eSAvi Kivityecho "PIE $pie" 33918a16d273Sthsecho "vde support $vde" 33925c6c3a6cSChristoph Hellwigecho "Linux AIO support $linux_aio" 3393758e8e38SVenkateswararao Jujjuri (JV)echo "ATTR/XATTR support $attr" 339477755340Sthsecho "Install blobs $blobs" 3395b31a0277SJuan Quintelaecho "KVM support $kvm" 33969195b2c2SStefan Weilecho "TCG interpreter $tcg_interpreter" 3397f652e6afSaurel32echo "fdt support $fdt" 3398ceb42de8Saliguoriecho "preadv support $preadv" 33995f6b9e8fSBlue Swirlecho "fdatasync $fdatasync" 3400e78815a5SAndreas Färberecho "madvise $madvise" 3401e78815a5SAndreas Färberecho "posix_madvise $posix_madvise" 34021e9737daSRichard Hendersonecho "sigev_thread_id $sigev_thread_id" 3403ee682d27SStefan Weilecho "uuid support $uuid" 340447e98658SCorey Bryantecho "libcap-ng support $cap_ng" 3405d5970055SMichael S. Tsirkinecho "vhost-net support $vhost_net" 340694a420b1SStefan Hajnocziecho "Trace backend $trace_backend" 34079410b56cSPrerna Saxenaecho "Trace output file $trace_file-<pid>" 34082e0e3c39SAlon Levyecho "spice support $spice ($spice_protocol_version/$spice_server_version)" 3409f27aaf4bSChristian Brunnerecho "rbd support $rbd" 3410dce512deSChristoph Hellwigecho "xfsctl support $xfs" 3411111a38b0SRobert Relyeaecho "nss used $smartcard_nss" 341269354a83SHans de Goedeecho "usb net redir $usb_redir" 341320ff075bSMichael Walleecho "OpenGL support $opengl" 3414c589b249SRonnie Sahlbergecho "libiscsi support $libiscsi" 3415d138cee9SMichael Rothecho "build guest agent $guest_agent" 3416f794573eSEduardo Otuboecho "seccomp support $seccomp" 3417519175a2SAlex Barceloecho "coroutine backend $coroutine_backend" 3418eb100396SBharata B Raoecho "GlusterFS support $glusterfs" 3419583f6e7bSStefan Hajnocziecho "virtio-blk-data-plane $virtio_blk_data_plane" 34201d728c39SBlue Swirlecho "gcov $gcov_tool" 34211d728c39SBlue Swirlecho "gcov enabled $gcov" 342267b915a5Sbellard 34231ba16968SStefan Weilif test "$sdl_too_old" = "yes"; then 342424b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support" 3425e8cd23deSbellardfi 342697a847bcSbellard 342798ec69acSJuan Quintelaconfig_host_mak="config-host.mak" 34284bf6b55bSJuan Quintelaconfig_host_ld="config-host.ld" 342997a847bcSbellard 3430dbd99ae3SStefan Weilecho "# Automatically generated by configure - do not modify" >config-all-disas.mak 3431dbd99ae3SStefan Weil 343298ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak 343398ec69acSJuan Quintelaprintf "# Configured with:" >> $config_host_mak 343498ec69acSJuan Quintelaprintf " '%s'" "$0" "$@" >> $config_host_mak 343598ec69acSJuan Quintelaecho >> $config_host_mak 343698ec69acSJuan Quintela 3437e6c3b0f7SPaolo Bonziniecho all: >> $config_host_mak 343899d7cc75SPaolo Bonziniecho "prefix=$prefix" >> $config_host_mak 343999d7cc75SPaolo Bonziniecho "bindir=$bindir" >> $config_host_mak 34403aa5d2beSAlon Levyecho "libdir=$libdir" >> $config_host_mak 34418bf188aaSMichael Tokarevecho "libexecdir=$libexecdir" >> $config_host_mak 34420f94d6daSAlon Levyecho "includedir=$includedir" >> $config_host_mak 344399d7cc75SPaolo Bonziniecho "mandir=$mandir" >> $config_host_mak 344499d7cc75SPaolo Bonziniecho "sysconfdir=$sysconfdir" >> $config_host_mak 344522d07038SEduardo Habkostecho "qemu_confdir=$qemu_confdir" >> $config_host_mak 34469afa52ceSEduardo Habkostecho "qemu_datadir=$qemu_datadir" >> $config_host_mak 34479afa52ceSEduardo Habkostecho "qemu_docdir=$qemu_docdir" >> $config_host_mak 3448785c23aeSLuiz Capitulinoecho "qemu_localstatedir=$local_statedir" >> $config_host_mak 3449f354b1a1SMichael Tokarevecho "qemu_helperdir=$libexecdir" >> $config_host_mak 3450f9943cd5SGerd Hoffmannecho "extra_cflags=$EXTRA_CFLAGS" >> $config_host_mak 3451f9943cd5SGerd Hoffmannecho "extra_ldflags=$EXTRA_LDFLAGS" >> $config_host_mak 3452834574eaSAnthony Liguoriecho "qemu_localedir=$qemu_localedir" >> $config_host_mak 3453804edf29SJuan Quintela 345498ec69acSJuan Quintelaecho "ARCH=$ARCH" >> $config_host_mak 3455f8393946Saurel32if test "$debug_tcg" = "yes" ; then 34562358a494SJuan Quintela echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak 3457f8393946Saurel32fi 3458f3d08ee6SPaul Brookif test "$debug" = "yes" ; then 34592358a494SJuan Quintela echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak 3460f3d08ee6SPaul Brookfi 34611625af87Saliguoriif test "$strip_opt" = "yes" ; then 346252ba784dSHollis Blanchard echo "STRIP=${strip}" >> $config_host_mak 34631625af87Saliguorifi 34647d13299dSbellardif test "$bigendian" = "yes" ; then 3465e2542fe2SJuan Quintela echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak 346697a847bcSbellardfi 346767b915a5Sbellardif test "$mingw32" = "yes" ; then 346898ec69acSJuan Quintela echo "CONFIG_WIN32=y" >> $config_host_mak 34699fe6de94SBlue Swirl rc_version=`cat $source_path/VERSION` 34709fe6de94SBlue Swirl version_major=${rc_version%%.*} 34719fe6de94SBlue Swirl rc_version=${rc_version#*.} 34729fe6de94SBlue Swirl version_minor=${rc_version%%.*} 34739fe6de94SBlue Swirl rc_version=${rc_version#*.} 34749fe6de94SBlue Swirl version_subminor=${rc_version%%.*} 34759fe6de94SBlue Swirl version_micro=0 34769fe6de94SBlue Swirl echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak 34779fe6de94SBlue Swirl echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak 3478210fa556Spbrookelse 347935f4df27SJuan Quintela echo "CONFIG_POSIX=y" >> $config_host_mak 3480210fa556Spbrookfi 3481128ab2ffSblueswir1 3482dffcb71cSMark McLoughlinif test "$linux" = "yes" ; then 3483dffcb71cSMark McLoughlin echo "CONFIG_LINUX=y" >> $config_host_mak 3484dffcb71cSMark McLoughlinfi 3485dffcb71cSMark McLoughlin 348683fb7adfSbellardif test "$darwin" = "yes" ; then 348798ec69acSJuan Quintela echo "CONFIG_DARWIN=y" >> $config_host_mak 348883fb7adfSbellardfi 3489b29fe3edSmalc 3490b29fe3edSmalcif test "$aix" = "yes" ; then 349198ec69acSJuan Quintela echo "CONFIG_AIX=y" >> $config_host_mak 3492b29fe3edSmalcfi 3493b29fe3edSmalc 3494ec530c81Sbellardif test "$solaris" = "yes" ; then 349598ec69acSJuan Quintela echo "CONFIG_SOLARIS=y" >> $config_host_mak 34962358a494SJuan Quintela echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak 34970475a5caSths if test "$needs_libsunmath" = "yes" ; then 349875b5a697SJuan Quintela echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak 34990475a5caSths fi 3500ec530c81Sbellardfi 3501179cf400SAndreas Färberif test "$haiku" = "yes" ; then 3502179cf400SAndreas Färber echo "CONFIG_HAIKU=y" >> $config_host_mak 3503179cf400SAndreas Färberfi 350497a847bcSbellardif test "$static" = "yes" ; then 350598ec69acSJuan Quintela echo "CONFIG_STATIC=y" >> $config_host_mak 350697a847bcSbellardfi 35071ba16968SStefan Weilif test "$profiler" = "yes" ; then 35082358a494SJuan Quintela echo "CONFIG_PROFILER=y" >> $config_host_mak 350905c2a3e7Sbellardfi 3510c20709aaSbellardif test "$slirp" = "yes" ; then 351198ec69acSJuan Quintela echo "CONFIG_SLIRP=y" >> $config_host_mak 3512e2d8830eSBrad echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak 3513c20709aaSbellardfi 35148a16d273Sthsif test "$vde" = "yes" ; then 351598ec69acSJuan Quintela echo "CONFIG_VDE=y" >> $config_host_mak 35168a16d273Sthsfi 351747e98658SCorey Bryantif test "$cap_ng" = "yes" ; then 351847e98658SCorey Bryant echo "CONFIG_LIBCAP=y" >> $config_host_mak 351947e98658SCorey Bryantfi 35200c58ac1cSmalcfor card in $audio_card_list; do 3521bb55b712SStefan Weil def=CONFIG_`echo $card | LC_ALL=C tr '[a-z]' '[A-Z]'` 352298ec69acSJuan Quintela echo "$def=y" >> $config_host_mak 35230c58ac1cSmalcdone 35242358a494SJuan Quintelaecho "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak 35250c58ac1cSmalcfor drv in $audio_drv_list; do 3526bb55b712SStefan Weil def=CONFIG_`echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]'` 352798ec69acSJuan Quintela echo "$def=y" >> $config_host_mak 3528923e4521Smalc if test "$drv" = "fmod"; then 35297aac6cb1SJuan Quintela echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak 3530fb065187Sbellard fi 35310c58ac1cSmalcdone 353267f86e8eSJuan Quintelaif test "$audio_pt_int" = "yes" ; then 353367f86e8eSJuan Quintela echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak 353467f86e8eSJuan Quintelafi 3535d5631638Smalcif test "$audio_win_int" = "yes" ; then 3536d5631638Smalc echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak 3537d5631638Smalcfi 3538eb852011SMarkus Armbrusterecho "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak 35398ff9cbf7Smalcif test "$mixemu" = "yes" ; then 354098ec69acSJuan Quintela echo "CONFIG_MIXEMU=y" >> $config_host_mak 35418ff9cbf7Smalcfi 3542821601eaSJes Sorensenif test "$vnc" = "yes" ; then 3543821601eaSJes Sorensen echo "CONFIG_VNC=y" >> $config_host_mak 3544821601eaSJes Sorensenfi 35458d5d2d4cSthsif test "$vnc_tls" = "yes" ; then 354698ec69acSJuan Quintela echo "CONFIG_VNC_TLS=y" >> $config_host_mak 35478d5d2d4cSthsfi 35482f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then 354998ec69acSJuan Quintela echo "CONFIG_VNC_SASL=y" >> $config_host_mak 35502f9606b3Saliguorifi 3551821601eaSJes Sorensenif test "$vnc_jpeg" = "yes" ; then 35522f6f5c7aSCorentin Chary echo "CONFIG_VNC_JPEG=y" >> $config_host_mak 35532f6f5c7aSCorentin Charyfi 3554821601eaSJes Sorensenif test "$vnc_png" = "yes" ; then 3555efe556adSCorentin Chary echo "CONFIG_VNC_PNG=y" >> $config_host_mak 3556efe556adSCorentin Charyfi 35577536ee4bSTim Hardeckif test "$vnc_ws" = "yes" ; then 35587536ee4bSTim Hardeck echo "CONFIG_VNC_WS=y" >> $config_host_mak 35597536ee4bSTim Hardeck echo "VNC_WS_CFLAGS=$vnc_ws_cflags" >> $config_host_mak 35607536ee4bSTim Hardeckfi 356176655d6dSaliguoriif test "$fnmatch" = "yes" ; then 35622358a494SJuan Quintela echo "CONFIG_FNMATCH=y" >> $config_host_mak 356376655d6dSaliguorifi 3564ee682d27SStefan Weilif test "$uuid" = "yes" ; then 3565ee682d27SStefan Weil echo "CONFIG_UUID=y" >> $config_host_mak 3566ee682d27SStefan Weilfi 3567dce512deSChristoph Hellwigif test "$xfs" = "yes" ; then 3568dce512deSChristoph Hellwig echo "CONFIG_XFS=y" >> $config_host_mak 3569dce512deSChristoph Hellwigfi 3570b1a550a0Spbrookqemu_version=`head $source_path/VERSION` 357198ec69acSJuan Quintelaecho "VERSION=$qemu_version" >>$config_host_mak 35722358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak 357398ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak 357498ec69acSJuan Quintelaecho "TARGET_DIRS=$target_list" >> $config_host_mak 3575a25dba17SJuan Quintelaif [ "$docs" = "yes" ] ; then 357698ec69acSJuan Quintela echo "BUILD_DOCS=yes" >> $config_host_mak 3577cc8ae6deSpbrookfi 35781ac88f28SJuan Quintelaif test "$sdl" = "yes" ; then 357998ec69acSJuan Quintela echo "CONFIG_SDL=y" >> $config_host_mak 35808ad3a7ddSJuan Quintela echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak 358149ecc3faSbellardfi 358249ecc3faSbellardif test "$cocoa" = "yes" ; then 358398ec69acSJuan Quintela echo "CONFIG_COCOA=y" >> $config_host_mak 358449ecc3faSbellardfi 35854d3b6f6eSbalrogif test "$curses" = "yes" ; then 358698ec69acSJuan Quintela echo "CONFIG_CURSES=y" >> $config_host_mak 3587ab4e5602SJan Kiszkafi 35883b3f24adSaurel32if test "$atfile" = "yes" ; then 35892358a494SJuan Quintela echo "CONFIG_ATFILE=y" >> $config_host_mak 35903b3f24adSaurel32fi 3591ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then 35922358a494SJuan Quintela echo "CONFIG_UTIMENSAT=y" >> $config_host_mak 3593ebc996f3SRiku Voipiofi 3594099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then 35952358a494SJuan Quintela echo "CONFIG_PIPE2=y" >> $config_host_mak 3596099d6b0fSRiku Voipiofi 359740ff6d7eSKevin Wolfif test "$accept4" = "yes" ; then 359840ff6d7eSKevin Wolf echo "CONFIG_ACCEPT4=y" >> $config_host_mak 359940ff6d7eSKevin Wolffi 36003ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then 36012358a494SJuan Quintela echo "CONFIG_SPLICE=y" >> $config_host_mak 36023ce34dfbSvibisreenivasanfi 3603c2882b96SRiku Voipioif test "$eventfd" = "yes" ; then 3604c2882b96SRiku Voipio echo "CONFIG_EVENTFD=y" >> $config_host_mak 3605c2882b96SRiku Voipiofi 3606d0927938SUlrich Hechtif test "$fallocate" = "yes" ; then 3607d0927938SUlrich Hecht echo "CONFIG_FALLOCATE=y" >> $config_host_mak 3608d0927938SUlrich Hechtfi 36093d4fa43eSKusanagi Kouichiif test "$fallocate_punch_hole" = "yes" ; then 36103d4fa43eSKusanagi Kouichi echo "CONFIG_FALLOCATE_PUNCH_HOLE=y" >> $config_host_mak 36113d4fa43eSKusanagi Kouichifi 3612c727f47dSPeter Maydellif test "$sync_file_range" = "yes" ; then 3613c727f47dSPeter Maydell echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak 3614c727f47dSPeter Maydellfi 3615dace20dcSPeter Maydellif test "$fiemap" = "yes" ; then 3616dace20dcSPeter Maydell echo "CONFIG_FIEMAP=y" >> $config_host_mak 3617dace20dcSPeter Maydellfi 3618d0927938SUlrich Hechtif test "$dup3" = "yes" ; then 3619d0927938SUlrich Hecht echo "CONFIG_DUP3=y" >> $config_host_mak 3620d0927938SUlrich Hechtfi 36213b6edd16SPeter Maydellif test "$epoll" = "yes" ; then 36223b6edd16SPeter Maydell echo "CONFIG_EPOLL=y" >> $config_host_mak 36233b6edd16SPeter Maydellfi 36243b6edd16SPeter Maydellif test "$epoll_create1" = "yes" ; then 36253b6edd16SPeter Maydell echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak 36263b6edd16SPeter Maydellfi 36273b6edd16SPeter Maydellif test "$epoll_pwait" = "yes" ; then 36283b6edd16SPeter Maydell echo "CONFIG_EPOLL_PWAIT=y" >> $config_host_mak 36293b6edd16SPeter Maydellfi 36303b3f24adSaurel32if test "$inotify" = "yes" ; then 36312358a494SJuan Quintela echo "CONFIG_INOTIFY=y" >> $config_host_mak 36323b3f24adSaurel32fi 3633c05c7a73SRiku Voipioif test "$inotify1" = "yes" ; then 3634c05c7a73SRiku Voipio echo "CONFIG_INOTIFY1=y" >> $config_host_mak 3635c05c7a73SRiku Voipiofi 36366ae9a1f4SJuan Quintelaif test "$byteswap_h" = "yes" ; then 36376ae9a1f4SJuan Quintela echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak 36386ae9a1f4SJuan Quintelafi 36396ae9a1f4SJuan Quintelaif test "$bswap_h" = "yes" ; then 36406ae9a1f4SJuan Quintela echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak 36416ae9a1f4SJuan Quintelafi 3642769ce76dSAlexander Grafif test "$curl" = "yes" ; then 364398ec69acSJuan Quintela echo "CONFIG_CURL=y" >> $config_host_mak 3644b1d5a277SJuan Quintela echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak 3645769ce76dSAlexander Graffi 36462e4d9fb1Saurel32if test "$brlapi" = "yes" ; then 364798ec69acSJuan Quintela echo "CONFIG_BRLAPI=y" >> $config_host_mak 36482e4d9fb1Saurel32fi 3649fb599c9aSbalrogif test "$bluez" = "yes" ; then 365098ec69acSJuan Quintela echo "CONFIG_BLUEZ=y" >> $config_host_mak 3651ef7635ecSJuan Quintela echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak 3652fb599c9aSbalrogfi 3653e18df141SAnthony Liguoriecho "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak 3654a4ccabcfSAnthony Liguoriif test "$gtk" = "yes" ; then 3655a4ccabcfSAnthony Liguori echo "CONFIG_GTK=y" >> $config_host_mak 3656a4ccabcfSAnthony Liguori echo "GTK_CFLAGS=$gtk_cflags" >> $config_host_mak 3657a4ccabcfSAnthony Liguori echo "VTE_CFLAGS=$vte_cflags" >> $config_host_mak 3658a4ccabcfSAnthony Liguorifi 3659e37630caSaliguoriif test "$xen" = "yes" ; then 36606dbd588aSJan Kiszka echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak 3661d5b93ddfSAnthony PERARD echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak 3662e37630caSaliguorifi 36635c6c3a6cSChristoph Hellwigif test "$linux_aio" = "yes" ; then 36645c6c3a6cSChristoph Hellwig echo "CONFIG_LINUX_AIO=y" >> $config_host_mak 36655c6c3a6cSChristoph Hellwigfi 3666758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" = "yes" ; then 3667758e8e38SVenkateswararao Jujjuri (JV) echo "CONFIG_ATTR=y" >> $config_host_mak 3668758e8e38SVenkateswararao Jujjuri (JV)fi 36694f26f2b6SAvi Kivityif test "$libattr" = "yes" ; then 36704f26f2b6SAvi Kivity echo "CONFIG_LIBATTR=y" >> $config_host_mak 36714f26f2b6SAvi Kivityfi 3672983eef5aSMeador Ingeif test "$virtfs" = "yes" ; then 3673758e8e38SVenkateswararao Jujjuri (JV) echo "CONFIG_VIRTFS=y" >> $config_host_mak 3674758e8e38SVenkateswararao Jujjuri (JV)fi 367577755340Sthsif test "$blobs" = "yes" ; then 367698ec69acSJuan Quintela echo "INSTALL_BLOBS=yes" >> $config_host_mak 367777755340Sthsfi 3678bf9298b9Saliguoriif test "$iovec" = "yes" ; then 36792358a494SJuan Quintela echo "CONFIG_IOVEC=y" >> $config_host_mak 3680bf9298b9Saliguorifi 3681ceb42de8Saliguoriif test "$preadv" = "yes" ; then 36822358a494SJuan Quintela echo "CONFIG_PREADV=y" >> $config_host_mak 3683ceb42de8Saliguorifi 3684f652e6afSaurel32if test "$fdt" = "yes" ; then 36853f0855b1SJuan Quintela echo "CONFIG_FDT=y" >> $config_host_mak 3686f652e6afSaurel32fi 3687dcc38d1cSMarcelo Tosattiif test "$signalfd" = "yes" ; then 3688dcc38d1cSMarcelo Tosatti echo "CONFIG_SIGNALFD=y" >> $config_host_mak 3689dcc38d1cSMarcelo Tosattifi 36909195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then 36919195b2c2SStefan Weil echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak 36929195b2c2SStefan Weilfi 36935f6b9e8fSBlue Swirlif test "$fdatasync" = "yes" ; then 36945f6b9e8fSBlue Swirl echo "CONFIG_FDATASYNC=y" >> $config_host_mak 36955f6b9e8fSBlue Swirlfi 3696e78815a5SAndreas Färberif test "$madvise" = "yes" ; then 3697e78815a5SAndreas Färber echo "CONFIG_MADVISE=y" >> $config_host_mak 3698e78815a5SAndreas Färberfi 3699e78815a5SAndreas Färberif test "$posix_madvise" = "yes" ; then 3700e78815a5SAndreas Färber echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak 3701e78815a5SAndreas Färberfi 37021e9737daSRichard Hendersonif test "$sigev_thread_id" = "yes" ; then 37031e9737daSRichard Henderson echo "CONFIG_SIGEV_THREAD_ID=y" >> $config_host_mak 37041e9737daSRichard Hendersonfi 370597a847bcSbellard 3706cd4ec0b4SGerd Hoffmannif test "$spice" = "yes" ; then 3707cd4ec0b4SGerd Hoffmann echo "CONFIG_SPICE=y" >> $config_host_mak 3708cd4ec0b4SGerd Hoffmannfi 3709cd4ec0b4SGerd Hoffmann 3710111a38b0SRobert Relyeaif test "$smartcard_nss" = "yes" ; then 3711111a38b0SRobert Relyea echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak 3712ad4cf3f6SPaul Brook echo "libcacard_libs=$libcacard_libs" >> $config_host_mak 3713ad4cf3f6SPaul Brook echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak 3714111a38b0SRobert Relyeafi 3715111a38b0SRobert Relyea 371669354a83SHans de Goedeif test "$usb_redir" = "yes" ; then 371769354a83SHans de Goede echo "CONFIG_USB_REDIR=y" >> $config_host_mak 371869354a83SHans de Goedefi 371969354a83SHans de Goede 372020ff075bSMichael Walleif test "$opengl" = "yes" ; then 372120ff075bSMichael Walle echo "CONFIG_OPENGL=y" >> $config_host_mak 372220ff075bSMichael Wallefi 372320ff075bSMichael Walle 3724c589b249SRonnie Sahlbergif test "$libiscsi" = "yes" ; then 3725c589b249SRonnie Sahlberg echo "CONFIG_LIBISCSI=y" >> $config_host_mak 3726c589b249SRonnie Sahlbergfi 3727c589b249SRonnie Sahlberg 3728f794573eSEduardo Otuboif test "$seccomp" = "yes"; then 3729f794573eSEduardo Otubo echo "CONFIG_SECCOMP=y" >> $config_host_mak 3730f794573eSEduardo Otubofi 3731f794573eSEduardo Otubo 373283fb7adfSbellard# XXX: suppress that 37337d3505c5Sbellardif [ "$bsd" = "yes" ] ; then 37342358a494SJuan Quintela echo "CONFIG_BSD=y" >> $config_host_mak 37357d3505c5Sbellardfi 37367d3505c5Sbellard 37372358a494SJuan Quintelaecho "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak 3738c5937220Spbrook 373920ff6c80SAnthony Liguoriif test "$zero_malloc" = "yes" ; then 374020ff6c80SAnthony Liguori echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak 374120ff6c80SAnthony Liguorifi 3742f27aaf4bSChristian Brunnerif test "$rbd" = "yes" ; then 3743f27aaf4bSChristian Brunner echo "CONFIG_RBD=y" >> $config_host_mak 3744f27aaf4bSChristian Brunnerfi 374520ff6c80SAnthony Liguori 3746519175a2SAlex Barceloif test "$coroutine_backend" = "ucontext" ; then 3747d0e2fce5SAneesh Kumar K.V echo "CONFIG_UCONTEXT_COROUTINE=y" >> $config_host_mak 3748fe91bfa8SAlex Barceloelif test "$coroutine_backend" = "sigaltstack" ; then 3749fe91bfa8SAlex Barcelo echo "CONFIG_SIGALTSTACK_COROUTINE=y" >> $config_host_mak 3750d0e2fce5SAneesh Kumar K.Vfi 3751d0e2fce5SAneesh Kumar K.V 3752d2042378SAneesh Kumar K.Vif test "$open_by_handle_at" = "yes" ; then 3753d2042378SAneesh Kumar K.V echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak 3754d2042378SAneesh Kumar K.Vfi 3755d2042378SAneesh Kumar K.V 3756e06a765eSHarsh Prateek Boraif test "$linux_magic_h" = "yes" ; then 3757e06a765eSHarsh Prateek Bora echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak 3758e06a765eSHarsh Prateek Borafi 3759e06a765eSHarsh Prateek Bora 3760cc6e3ca9SGerd Hoffmannif test "$pragma_diagnostic_available" = "yes" ; then 3761cc6e3ca9SGerd Hoffmann echo "CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE=y" >> $config_host_mak 376206d71fa1SPeter Maydellfi 376306d71fa1SPeter Maydell 37643f4349dcSKevin Wolfif test "$valgrind_h" = "yes" ; then 37653f4349dcSKevin Wolf echo "CONFIG_VALGRIND_H=y" >> $config_host_mak 37663f4349dcSKevin Wolffi 37673f4349dcSKevin Wolf 37688ab1bf12SLuiz Capitulinoif test "$has_environ" = "yes" ; then 37698ab1bf12SLuiz Capitulino echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak 37708ab1bf12SLuiz Capitulinofi 37718ab1bf12SLuiz Capitulino 377276a347e1SRichard Hendersonif test "$cpuid_h" = "yes" ; then 377376a347e1SRichard Henderson echo "CONFIG_CPUID_H=y" >> $config_host_mak 377476a347e1SRichard Hendersonfi 377576a347e1SRichard Henderson 3776f540166bSRichard Hendersonif test "$int128" = "yes" ; then 3777f540166bSRichard Henderson echo "CONFIG_INT128=y" >> $config_host_mak 3778f540166bSRichard Hendersonfi 3779f540166bSRichard Henderson 3780eb100396SBharata B Raoif test "$glusterfs" = "yes" ; then 3781eb100396SBharata B Rao echo "CONFIG_GLUSTERFS=y" >> $config_host_mak 3782eb100396SBharata B Raofi 3783eb100396SBharata B Rao 3784583f6e7bSStefan Hajnocziif test "$virtio_blk_data_plane" = "yes" ; then 3785583f6e7bSStefan Hajnoczi echo "CONFIG_VIRTIO_BLK_DATA_PLANE=y" >> $config_host_mak 3786583f6e7bSStefan Hajnoczifi 3787583f6e7bSStefan Hajnoczi 378868063649Sblueswir1# USB host support 378968063649Sblueswir1case "$usb" in 379068063649Sblueswir1linux) 37914075975dSGerd Hoffmann echo "HOST_USB=linux legacy" >> $config_host_mak 379268063649Sblueswir1;; 379368063649Sblueswir1bsd) 379498ec69acSJuan Quintela echo "HOST_USB=bsd" >> $config_host_mak 379568063649Sblueswir1;; 379668063649Sblueswir1*) 379798ec69acSJuan Quintela echo "HOST_USB=stub" >> $config_host_mak 379868063649Sblueswir1;; 379968063649Sblueswir1esac 380068063649Sblueswir1 3801e4858974SLluís# use default implementation for tracing backend-specific routines 3802e4858974SLluístrace_default=yes 380394a420b1SStefan Hajnocziecho "TRACE_BACKEND=$trace_backend" >> $config_host_mak 38046d8a764eSLluísif test "$trace_backend" = "nop"; then 38056d8a764eSLluís echo "CONFIG_TRACE_NOP=y" >> $config_host_mak 380622890ab5SPrerna Saxenafi 38079410b56cSPrerna Saxenaif test "$trace_backend" = "simple"; then 38086d8a764eSLluís echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak 3809e4858974SLluís trace_default=no 38106d8a764eSLluís # Set the appropriate trace file. 3811953ffe0fSAndreas Färber trace_file="\"$trace_file-\" FMT_pid" 38129410b56cSPrerna Saxenafi 38136d8a764eSLluísif test "$trace_backend" = "stderr"; then 38146d8a764eSLluís echo "CONFIG_TRACE_STDERR=y" >> $config_host_mak 38159a82b6a5SLluís trace_default=no 38166d8a764eSLluísfi 38176d8a764eSLluísif test "$trace_backend" = "ust"; then 38186d8a764eSLluís echo "CONFIG_TRACE_UST=y" >> $config_host_mak 38196d8a764eSLluísfi 38206d8a764eSLluísif test "$trace_backend" = "dtrace"; then 38216d8a764eSLluís echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak 38226d8a764eSLluís if test "$trace_backend_stap" = "yes" ; then 38236d8a764eSLluís echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak 38246d8a764eSLluís fi 3825c276b17dSDaniel P. Berrangefi 38269410b56cSPrerna Saxenaecho "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak 3827e4858974SLluísif test "$trace_default" = "yes"; then 3828e4858974SLluís echo "CONFIG_TRACE_DEFAULT=y" >> $config_host_mak 3829e4858974SLluísfi 38309410b56cSPrerna Saxena 383198ec69acSJuan Quintelaecho "TOOLS=$tools" >> $config_host_mak 383298ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak 3833804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak 3834804edf29SJuan Quintelaecho "INSTALL=$install" >> $config_host_mak 38351901cb14SBradecho "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak 38361901cb14SBradecho "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak 383721655882SPaolo Bonziniif test -n "$libtool"; then 383821655882SPaolo Bonzini echo "INSTALL_PROG=\$(LIBTOOL) --mode=install $install -c -m 0755" >> $config_host_mak 383921655882SPaolo Bonzini echo "INSTALL_LIB=\$(LIBTOOL) --mode=install $install -c -m 0644" >> $config_host_mak 384021655882SPaolo Bonzinielse 38411901cb14SBrad echo "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak 384221655882SPaolo Bonzini echo "INSTALL_LIB=$install -c -m 0644" >> $config_host_mak 384321655882SPaolo Bonzinifi 3844c886edfbSBlue Swirlecho "PYTHON=$python" >> $config_host_mak 3845804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak 38462b2e59e6SPaolo Bonziniecho "CC_I386=$cc_i386" >> $config_host_mak 3847804edf29SJuan Quintelaecho "HOST_CC=$host_cc" >> $config_host_mak 38483c4a4d0dSPeter Maydellecho "OBJCC=$objcc" >> $config_host_mak 3849804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak 38503dd46c78SBlue Swirlecho "AS=$as" >> $config_host_mak 38513dd46c78SBlue Swirlecho "CPP=$cpp" >> $config_host_mak 3852804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak 3853804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak 38549fe6de94SBlue Swirlecho "WINDRES=$windres" >> $config_host_mak 385544dc0ca3SAlon Levyecho "LIBTOOL=$libtool" >> $config_host_mak 3856e2a2ed06SJuan Quintelaecho "CFLAGS=$CFLAGS" >> $config_host_mak 3857a558ee17SJuan Quintelaecho "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak 3858f9728943SPaolo Bonziniecho "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak 3859e39f0062SPaolo Bonziniif test "$sparse" = "yes" ; then 3860e39f0062SPaolo Bonzini echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak 3861e39f0062SPaolo Bonzini echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak 3862e39f0062SPaolo Bonzini echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak 3863e39f0062SPaolo Bonzinifi 386442da6041SGerd Hoffmannif test "$cross_prefix" != ""; then 386542da6041SGerd Hoffmann echo "AUTOCONF_HOST := --host=${cross_prefix%-}" >> $config_host_mak 386642da6041SGerd Hoffmannelse 386742da6041SGerd Hoffmann echo "AUTOCONF_HOST := " >> $config_host_mak 386842da6041SGerd Hoffmannfi 3869e2a2ed06SJuan Quintelaecho "LDFLAGS=$LDFLAGS" >> $config_host_mak 3870a36abbbbSJuan Quintelaecho "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak 3871a36abbbbSJuan Quintelaecho "ARLIBS_END=$arlibs_end" >> $config_host_mak 387273da375eSJuan Quintelaecho "LIBS+=$LIBS" >> $config_host_mak 38733e2e0e6bSJuan Quintelaecho "LIBS_TOOLS+=$libs_tools" >> $config_host_mak 3874804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak 3875957f1f99SMichael Rothecho "LIBS_QGA+=$libs_qga" >> $config_host_mak 387694dd53c5SGerd Hoffmannecho "POD2MAN=$POD2MAN" >> $config_host_mak 3877cbdd1999SPaolo Bonziniecho "TRANSLATE_OPT_CFLAGS=$TRANSLATE_OPT_CFLAGS" >> $config_host_mak 38781d728c39SBlue Swirlif test "$gcov" = "yes" ; then 38791d728c39SBlue Swirl echo "CONFIG_GCOV=y" >> $config_host_mak 38801d728c39SBlue Swirl echo "GCOV=$gcov_tool" >> $config_host_mak 38811d728c39SBlue Swirlfi 3882804edf29SJuan Quintela 38834bf6b55bSJuan Quintela# generate list of library paths for linker script 38844bf6b55bSJuan Quintela 38854bf6b55bSJuan Quintela$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld} 38864bf6b55bSJuan Quintela 38874bf6b55bSJuan Quintelaif test -f ${config_host_ld}~ ; then 38884bf6b55bSJuan Quintela if cmp -s $config_host_ld ${config_host_ld}~ ; then 38894bf6b55bSJuan Quintela mv ${config_host_ld}~ $config_host_ld 38904bf6b55bSJuan Quintela else 38914bf6b55bSJuan Quintela rm ${config_host_ld}~ 38924bf6b55bSJuan Quintela fi 38934bf6b55bSJuan Quintelafi 38944bf6b55bSJuan Quintela 38956efd7517SPeter Maydell# use included Linux headers 38966efd7517SPeter Maydellif test "$linux" = "yes" ; then 3897a307beb6SAndreas Färber mkdir -p linux-headers 38986efd7517SPeter Maydell case "$cpu" in 38996efd7517SPeter Maydell i386|x86_64) 390008312a63SPeter Maydell linux_arch=x86 39016efd7517SPeter Maydell ;; 39026efd7517SPeter Maydell ppcemb|ppc|ppc64) 390308312a63SPeter Maydell linux_arch=powerpc 39046efd7517SPeter Maydell ;; 39056efd7517SPeter Maydell s390x) 390608312a63SPeter Maydell linux_arch=s390 390708312a63SPeter Maydell ;; 390808312a63SPeter Maydell *) 390908312a63SPeter Maydell # For most CPUs the kernel architecture name and QEMU CPU name match. 391008312a63SPeter Maydell linux_arch="$cpu" 39116efd7517SPeter Maydell ;; 39126efd7517SPeter Maydell esac 391308312a63SPeter Maydell # For non-KVM architectures we will not have asm headers 391408312a63SPeter Maydell if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then 391508312a63SPeter Maydell symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm 391608312a63SPeter Maydell fi 39176efd7517SPeter Maydellfi 39186efd7517SPeter Maydell 391997a847bcSbellardfor target in $target_list; do 392097a847bcSbellardtarget_dir="$target" 392125be210fSJuan Quintelaconfig_target_mak=$target_dir/config-target.mak 3922600309b6SBlue Swirltarget_arch2=`echo $target | cut -d '-' -f 1` 392397a847bcSbellardtarget_bigendian="no" 39241f3d3c8fSJuan Quintela 3925ea2d6a39SJuan Quintelacase "$target_arch2" in 3926e67db06eSJia Liu armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|or32|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb) 3927ea2d6a39SJuan Quintela target_bigendian=yes 3928ea2d6a39SJuan Quintela ;; 3929ea2d6a39SJuan Quintelaesac 393097a847bcSbellardtarget_softmmu="no" 3931997344f3Sbellardtarget_user_only="no" 3932831b7825Sthstarget_linux_user="no" 393384778508Sblueswir1target_bsd_user="no" 39349e407a85Spbrookcase "$target" in 3935600309b6SBlue Swirl ${target_arch2}-softmmu) 39369e407a85Spbrook target_softmmu="yes" 39379e407a85Spbrook ;; 3938600309b6SBlue Swirl ${target_arch2}-linux-user) 39399c7a4202SBlue Swirl if test "$linux" != "yes" ; then 39409c7a4202SBlue Swirl echo "ERROR: Target '$target' is only available on a Linux host" 39419c7a4202SBlue Swirl exit 1 39429c7a4202SBlue Swirl fi 39439e407a85Spbrook target_user_only="yes" 39449e407a85Spbrook target_linux_user="yes" 39459e407a85Spbrook ;; 3946600309b6SBlue Swirl ${target_arch2}-bsd-user) 39479cf55765SBlue Swirl if test "$bsd" != "yes" ; then 39489c7a4202SBlue Swirl echo "ERROR: Target '$target' is only available on a BSD host" 39499c7a4202SBlue Swirl exit 1 39509c7a4202SBlue Swirl fi 395184778508Sblueswir1 target_user_only="yes" 395284778508Sblueswir1 target_bsd_user="yes" 395384778508Sblueswir1 ;; 39549e407a85Spbrook *) 39559e407a85Spbrook echo "ERROR: Target '$target' not recognised" 39569e407a85Spbrook exit 1 39579e407a85Spbrook ;; 39589e407a85Spbrookesac 3959831b7825Sths 396097a847bcSbellardmkdir -p $target_dir 396125be210fSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_target_mak 396297a847bcSbellard 3963e5fe0c52Spbrookbflt="no" 3964bd0c5661Spbrooktarget_nptl="no" 3965600309b6SBlue Swirlinterp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"` 396656aebc89Spbrookgdb_xml_files="" 3967c2e3dee6SLaurent Viviertarget_short_alignment=2 3968c2e3dee6SLaurent Viviertarget_int_alignment=4 3969c2e3dee6SLaurent Viviertarget_long_alignment=4 3970c2e3dee6SLaurent Viviertarget_llong_alignment=8 3971de3a354aSMichael Walletarget_libs_softmmu= 39727ba1e619Saliguori 3973938b1eddSJuan QuintelaTARGET_ARCH="$target_arch2" 39746acff7daSJuan QuintelaTARGET_BASE_ARCH="" 3975e6e91b9cSJuan QuintelaTARGET_ABI_DIR="" 3976e73aae67SJuan Quintela 3977600309b6SBlue Swirlcase "$target_arch2" in 39782408a527Saurel32 i386) 39792408a527Saurel32 ;; 39802408a527Saurel32 x86_64) 39816acff7daSJuan Quintela TARGET_BASE_ARCH=i386 3982c2e3dee6SLaurent Vivier target_long_alignment=8 39832408a527Saurel32 ;; 39842408a527Saurel32 alpha) 3985c2e3dee6SLaurent Vivier target_long_alignment=8 3986a4b388ffSRichard Henderson target_nptl="yes" 39872408a527Saurel32 ;; 39882408a527Saurel32 arm|armeb) 3989b498c8a0SJuan Quintela TARGET_ARCH=arm 3990e5fe0c52Spbrook bflt="yes" 3991bd0c5661Spbrook target_nptl="yes" 399256aebc89Spbrook gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" 3993c2e3dee6SLaurent Vivier target_llong_alignment=4 3994412beee6SGrant Likely target_libs_softmmu="$fdt_libs" 39952408a527Saurel32 ;; 39962408a527Saurel32 cris) 3997253bd7f8Sedgar_igl target_nptl="yes" 39982408a527Saurel32 ;; 3999613a22c9SMichael Walle lm32) 4000de3a354aSMichael Walle target_libs_softmmu="$opengl_libs" 4001613a22c9SMichael Walle ;; 40022408a527Saurel32 m68k) 40030938cda5Saurel32 bflt="yes" 400456aebc89Spbrook gdb_xml_files="cf-core.xml cf-fp.xml" 4005c2e3dee6SLaurent Vivier target_int_alignment=2 4006c2e3dee6SLaurent Vivier target_long_alignment=2 4007c2e3dee6SLaurent Vivier target_llong_alignment=2 40082408a527Saurel32 ;; 4009877fdc12SEdgar E. Iglesias microblaze|microblazeel) 4010877fdc12SEdgar E. Iglesias TARGET_ARCH=microblaze 401172b675caSEdgar E. Iglesias bflt="yes" 401272b675caSEdgar E. Iglesias target_nptl="yes" 4013de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 401472b675caSEdgar E. Iglesias ;; 40152408a527Saurel32 mips|mipsel) 4016b498c8a0SJuan Quintela TARGET_ARCH=mips 401725be210fSJuan Quintela echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak 4018f04dc72fSPaul Brook target_nptl="yes" 40192408a527Saurel32 ;; 40202408a527Saurel32 mipsn32|mipsn32el) 4021597e2cecSRichard Henderson TARGET_ARCH=mips64 40226acff7daSJuan Quintela TARGET_BASE_ARCH=mips 402325be210fSJuan Quintela echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak 4024597e2cecSRichard Henderson echo "TARGET_ABI32=y" >> $config_target_mak 40252408a527Saurel32 ;; 40262408a527Saurel32 mips64|mips64el) 4027b498c8a0SJuan Quintela TARGET_ARCH=mips64 40286acff7daSJuan Quintela TARGET_BASE_ARCH=mips 402925be210fSJuan Quintela echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak 4030c2e3dee6SLaurent Vivier target_long_alignment=8 40312408a527Saurel32 ;; 4032e67db06eSJia Liu or32) 4033e67db06eSJia Liu TARGET_ARCH=openrisc 4034e67db06eSJia Liu TARGET_BASE_ARCH=openrisc 4035e67db06eSJia Liu ;; 40362408a527Saurel32 ppc) 4037c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 4038d6630708SNathan Froyd target_nptl="yes" 4039de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 40402408a527Saurel32 ;; 40412408a527Saurel32 ppcemb) 40426acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 4043e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 4044c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 4045d6630708SNathan Froyd target_nptl="yes" 4046de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 40472408a527Saurel32 ;; 40482408a527Saurel32 ppc64) 40496acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 4050e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 4051c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 4052c2e3dee6SLaurent Vivier target_long_alignment=8 4053de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 40542408a527Saurel32 ;; 40552408a527Saurel32 ppc64abi32) 4056b498c8a0SJuan Quintela TARGET_ARCH=ppc64 40576acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 4058e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 405925be210fSJuan Quintela echo "TARGET_ABI32=y" >> $config_target_mak 4060c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 4061de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 40622408a527Saurel32 ;; 40632408a527Saurel32 sh4|sh4eb) 4064b498c8a0SJuan Quintela TARGET_ARCH=sh4 40654dbed897Spbrook bflt="yes" 40660b6d3ae0Saurel32 target_nptl="yes" 40672408a527Saurel32 ;; 40682408a527Saurel32 sparc) 40692408a527Saurel32 ;; 40702408a527Saurel32 sparc64) 40716acff7daSJuan Quintela TARGET_BASE_ARCH=sparc 4072c2e3dee6SLaurent Vivier target_long_alignment=8 40732408a527Saurel32 ;; 40742408a527Saurel32 sparc32plus) 4075b498c8a0SJuan Quintela TARGET_ARCH=sparc64 40766acff7daSJuan Quintela TARGET_BASE_ARCH=sparc 4077e6e91b9cSJuan Quintela TARGET_ABI_DIR=sparc 407825be210fSJuan Quintela echo "TARGET_ABI32=y" >> $config_target_mak 40792408a527Saurel32 ;; 408024e804ecSAlexander Graf s390x) 4081bc434676SUlrich Hecht target_nptl="yes" 40827b3da903SAlexander Graf target_long_alignment=8 408324e804ecSAlexander Graf ;; 4084d2fbca94SGuan Xuetao unicore32) 4085d2fbca94SGuan Xuetao ;; 4086cfa550c6SMax Filippov xtensa|xtensaeb) 4087cfa550c6SMax Filippov TARGET_ARCH=xtensa 4088cfa550c6SMax Filippov ;; 40892408a527Saurel32 *) 4090de83cd02Sbellard echo "Unsupported target CPU" 4091de83cd02Sbellard exit 1 40922408a527Saurel32 ;; 40932408a527Saurel32esac 40945e8861a0SPaolo Bonzini# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH 40955e8861a0SPaolo Bonziniif [ "$TARGET_BASE_ARCH" = "" ]; then 40965e8861a0SPaolo Bonzini TARGET_BASE_ARCH=$TARGET_ARCH 40975e8861a0SPaolo Bonzinifi 40985e8861a0SPaolo Bonzini 40995e8861a0SPaolo Bonzinisymlink "$source_path/Makefile.target" "$target_dir/Makefile" 41005e8861a0SPaolo Bonzini 410199afc91dSDaniel P. Berrangeupper() { 410299afc91dSDaniel P. Berrange echo "$@"| LC_ALL=C tr '[a-z]' '[A-Z]' 410399afc91dSDaniel P. Berrange} 410499afc91dSDaniel P. Berrange 410532761257SYeongkyoon Leecase "$cpu" in 4106ed224a56Smalc i386|x86_64|ppc) 410713586813SStefan Weil # The TCG interpreter currently does not support ld/st optimization. 410813586813SStefan Weil if test "$tcg_interpreter" = "no" ; then 410932761257SYeongkyoon Lee echo "CONFIG_QEMU_LDST_OPTIMIZATION=y" >> $config_target_mak 411013586813SStefan Weil fi 411132761257SYeongkyoon Lee ;; 411232761257SYeongkyoon Leeesac 411332761257SYeongkyoon Lee 4114c2e3dee6SLaurent Vivierecho "TARGET_SHORT_ALIGNMENT=$target_short_alignment" >> $config_target_mak 4115c2e3dee6SLaurent Vivierecho "TARGET_INT_ALIGNMENT=$target_int_alignment" >> $config_target_mak 4116c2e3dee6SLaurent Vivierecho "TARGET_LONG_ALIGNMENT=$target_long_alignment" >> $config_target_mak 4117c2e3dee6SLaurent Vivierecho "TARGET_LLONG_ALIGNMENT=$target_llong_alignment" >> $config_target_mak 411825be210fSJuan Quintelaecho "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak 411999afc91dSDaniel P. Berrangetarget_arch_name="`upper $TARGET_ARCH`" 412025be210fSJuan Quintelaecho "TARGET_$target_arch_name=y" >> $config_target_mak 412125be210fSJuan Quintelaecho "TARGET_ARCH2=$target_arch2" >> $config_target_mak 412299afc91dSDaniel P. Berrangeecho "TARGET_TYPE=TARGET_TYPE_`upper $target_arch2`" >> $config_target_mak 412325be210fSJuan Quintelaecho "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak 4124e6e91b9cSJuan Quintelaif [ "$TARGET_ABI_DIR" = "" ]; then 4125e6e91b9cSJuan Quintela TARGET_ABI_DIR=$TARGET_ARCH 4126e6e91b9cSJuan Quintelafi 412725be210fSJuan Quintelaecho "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak 41281b0c87fcSJuan Quintelacase "$target_arch2" in 41291b0c87fcSJuan Quintela i386|x86_64) 41301b0c87fcSJuan Quintela if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then 413125be210fSJuan Quintela echo "CONFIG_XEN=y" >> $config_target_mak 4132eb6fda0fSAnthony PERARD if test "$xen_pci_passthrough" = yes; then 4133eb6fda0fSAnthony PERARD echo "CONFIG_XEN_PCI_PASSTHROUGH=y" >> "$config_target_mak" 4134eb6fda0fSAnthony PERARD fi 413559d21e53SAlexander Graf else 413659d21e53SAlexander Graf echo "CONFIG_NO_XEN=y" >> $config_target_mak 4137432d268cSJun Nakajima fi 413859d21e53SAlexander Graf ;; 413959d21e53SAlexander Graf *) 414059d21e53SAlexander Graf echo "CONFIG_NO_XEN=y" >> $config_target_mak 41411b0c87fcSJuan Quintelaesac 4142c59249f9SJuan Quintelacase "$target_arch2" in 414368b05c42SPeter Maydell arm|i386|x86_64|ppcemb|ppc|ppc64|s390x) 4144c59249f9SJuan Quintela # Make sure the target and host cpus are compatible 4145c59249f9SJuan Quintela if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \ 4146c59249f9SJuan Quintela \( "$target_arch2" = "$cpu" -o \ 4147c59249f9SJuan Quintela \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \ 41485f114bc6SAlexander Graf \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \ 4149adf82011SRené Rebe \( "$target_arch2" = "ppc" -a "$cpu" = "ppc64" \) -o \ 4150adf82011SRené Rebe \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc64" \) -o \ 4151c59249f9SJuan Quintela \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \ 4152c59249f9SJuan Quintela \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then 415325be210fSJuan Quintela echo "CONFIG_KVM=y" >> $config_target_mak 41541ba16968SStefan Weil if test "$vhost_net" = "yes" ; then 4155d5970055SMichael S. Tsirkin echo "CONFIG_VHOST_NET=y" >> $config_target_mak 4156d5970055SMichael S. Tsirkin fi 4157c59249f9SJuan Quintela fi 4158c59249f9SJuan Quintelaesac 4159fae001f5SWen Congyangcase "$target_arch2" in 4160fae001f5SWen Congyang i386|x86_64) 4161fae001f5SWen Congyang echo "CONFIG_HAVE_GET_MEMORY_MAPPING=y" >> $config_target_mak 4162fae001f5SWen Congyangesac 41637f762366SBlue Swirlif test "$target_arch2" = "ppc64" -a "$fdt" = "yes"; then 41640a6b8ddeSAlexander Graf echo "CONFIG_PSERIES=y" >> $config_target_mak 41650a6b8ddeSAlexander Graffi 4166de83cd02Sbellardif test "$target_bigendian" = "yes" ; then 416725be210fSJuan Quintela echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak 416897a847bcSbellardfi 416997a847bcSbellardif test "$target_softmmu" = "yes" ; then 417025be210fSJuan Quintela echo "CONFIG_SOFTMMU=y" >> $config_target_mak 4171de3a354aSMichael Walle echo "LIBS+=$libs_softmmu $target_libs_softmmu" >> $config_target_mak 41729fecbed0SWen Congyang case "$target_arch2" in 41739fecbed0SWen Congyang i386|x86_64) 41749fecbed0SWen Congyang echo "CONFIG_HAVE_CORE_DUMP=y" >> $config_target_mak 41759fecbed0SWen Congyang esac 4176de83cd02Sbellardfi 4177997344f3Sbellardif test "$target_user_only" = "yes" ; then 417825be210fSJuan Quintela echo "CONFIG_USER_ONLY=y" >> $config_target_mak 4179a2c80be9SStefan Weil echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak 4180997344f3Sbellardfi 4181831b7825Sthsif test "$target_linux_user" = "yes" ; then 418225be210fSJuan Quintela echo "CONFIG_LINUX_USER=y" >> $config_target_mak 4183831b7825Sthsfi 418456aebc89Spbrooklist="" 418556aebc89Spbrookif test ! -z "$gdb_xml_files" ; then 418656aebc89Spbrook for x in $gdb_xml_files; do 418756aebc89Spbrook list="$list $source_path/gdb-xml/$x" 418856aebc89Spbrook done 418925be210fSJuan Quintela echo "TARGET_XML_FILES=$list" >> $config_target_mak 41903d0f1517SJuan Quintelafi 4191de83cd02Sbellard 4192e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then 419325be210fSJuan Quintela echo "TARGET_HAS_BFLT=y" >> $config_target_mak 4194e5fe0c52Spbrookfi 4195bd0c5661Spbrookif test "$target_user_only" = "yes" \ 4196bd0c5661Spbrook -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then 419725be210fSJuan Quintela echo "CONFIG_USE_NPTL=y" >> $config_target_mak 4198bd0c5661Spbrookfi 4199379f6698SPaul Brookif test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then 420025be210fSJuan Quintela echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak 4201379f6698SPaul Brookfi 420284778508Sblueswir1if test "$target_bsd_user" = "yes" ; then 420325be210fSJuan Quintela echo "CONFIG_BSD_USER=y" >> $config_target_mak 420484778508Sblueswir1fi 42055b0753e0Sbellard 42065a4d701aSJan Kiszka# the static way of configuring available audio cards requires this workaround 42075a4d701aSJan Kiszkaif test "$target_user_only" != "yes" && grep -q CONFIG_PCSPK $source_path/default-configs/$target.mak; then 42085a4d701aSJan Kiszka echo "CONFIG_PCSPK=y" >> $config_target_mak 42095a4d701aSJan Kiszkafi 42105a4d701aSJan Kiszka 42114afddb55SJuan Quintela# generate QEMU_CFLAGS/LDFLAGS for targets 4212fa282484SJuan Quintela 42134afddb55SJuan Quintelacflags="" 4214f9728943SPaolo Bonziniincludes="" 4215fa282484SJuan Quintelaldflags="" 42169b8e111fSJuan Quintela 42179195b2c2SStefan Weilif test "$tcg_interpreter" = "yes"; then 42189195b2c2SStefan Weil includes="-I\$(SRC_PATH)/tcg/tci $includes" 42199195b2c2SStefan Weilelif test "$ARCH" = "sparc64" ; then 4220f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/sparc $includes" 422124e804ecSAlexander Grafelif test "$ARCH" = "s390x" ; then 4222f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/s390 $includes" 42235d8a4f8fSRichard Hendersonelif test "$ARCH" = "x86_64" ; then 4224f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/i386 $includes" 422557ddfbf7SJuan Quintelaelse 4226f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/\$(ARCH) $includes" 422757ddfbf7SJuan Quintelafi 4228f9728943SPaolo Bonziniincludes="-I\$(SRC_PATH)/tcg $includes" 422957ddfbf7SJuan Quintela 42306efd7517SPeter Maydellif test "$linux" = "yes" ; then 42316efd7517SPeter Maydell includes="-I\$(SRC_PATH)/linux-headers $includes" 42326efd7517SPeter Maydellfi 42336efd7517SPeter Maydell 423464656024SJuan Quintelafor i in $ARCH $TARGET_BASE_ARCH ; do 423564656024SJuan Quintela case "$i" in 423664656024SJuan Quintela alpha) 423725be210fSJuan Quintela echo "CONFIG_ALPHA_DIS=y" >> $config_target_mak 423876cad711SPaolo Bonzini echo "CONFIG_ALPHA_DIS=y" >> config-all-disas.mak 423964656024SJuan Quintela ;; 424064656024SJuan Quintela arm) 424125be210fSJuan Quintela echo "CONFIG_ARM_DIS=y" >> $config_target_mak 424276cad711SPaolo Bonzini echo "CONFIG_ARM_DIS=y" >> config-all-disas.mak 424364656024SJuan Quintela ;; 424464656024SJuan Quintela cris) 424525be210fSJuan Quintela echo "CONFIG_CRIS_DIS=y" >> $config_target_mak 424676cad711SPaolo Bonzini echo "CONFIG_CRIS_DIS=y" >> config-all-disas.mak 424764656024SJuan Quintela ;; 424864656024SJuan Quintela hppa) 424925be210fSJuan Quintela echo "CONFIG_HPPA_DIS=y" >> $config_target_mak 425076cad711SPaolo Bonzini echo "CONFIG_HPPA_DIS=y" >> config-all-disas.mak 425164656024SJuan Quintela ;; 425264656024SJuan Quintela i386|x86_64) 425325be210fSJuan Quintela echo "CONFIG_I386_DIS=y" >> $config_target_mak 425476cad711SPaolo Bonzini echo "CONFIG_I386_DIS=y" >> config-all-disas.mak 425564656024SJuan Quintela ;; 4256903ec55cSAurelien Jarno ia64*) 4257903ec55cSAurelien Jarno echo "CONFIG_IA64_DIS=y" >> $config_target_mak 425876cad711SPaolo Bonzini echo "CONFIG_IA64_DIS=y" >> config-all-disas.mak 4259903ec55cSAurelien Jarno ;; 426079368f49SMichael Walle lm32) 426179368f49SMichael Walle echo "CONFIG_LM32_DIS=y" >> $config_target_mak 426276cad711SPaolo Bonzini echo "CONFIG_LM32_DIS=y" >> config-all-disas.mak 426379368f49SMichael Walle ;; 426464656024SJuan Quintela m68k) 426525be210fSJuan Quintela echo "CONFIG_M68K_DIS=y" >> $config_target_mak 426676cad711SPaolo Bonzini echo "CONFIG_M68K_DIS=y" >> config-all-disas.mak 426764656024SJuan Quintela ;; 4268877fdc12SEdgar E. Iglesias microblaze*) 426925be210fSJuan Quintela echo "CONFIG_MICROBLAZE_DIS=y" >> $config_target_mak 427076cad711SPaolo Bonzini echo "CONFIG_MICROBLAZE_DIS=y" >> config-all-disas.mak 427164656024SJuan Quintela ;; 427264656024SJuan Quintela mips*) 427325be210fSJuan Quintela echo "CONFIG_MIPS_DIS=y" >> $config_target_mak 427476cad711SPaolo Bonzini echo "CONFIG_MIPS_DIS=y" >> config-all-disas.mak 427564656024SJuan Quintela ;; 4276e67db06eSJia Liu or32) 4277e67db06eSJia Liu echo "CONFIG_OPENRISC_DIS=y" >> $config_target_mak 427876cad711SPaolo Bonzini echo "CONFIG_OPENRISC_DIS=y" >> config-all-disas.mak 4279e67db06eSJia Liu ;; 428064656024SJuan Quintela ppc*) 428125be210fSJuan Quintela echo "CONFIG_PPC_DIS=y" >> $config_target_mak 428276cad711SPaolo Bonzini echo "CONFIG_PPC_DIS=y" >> config-all-disas.mak 428364656024SJuan Quintela ;; 428424e804ecSAlexander Graf s390*) 428525be210fSJuan Quintela echo "CONFIG_S390_DIS=y" >> $config_target_mak 428676cad711SPaolo Bonzini echo "CONFIG_S390_DIS=y" >> config-all-disas.mak 428764656024SJuan Quintela ;; 428864656024SJuan Quintela sh4) 428925be210fSJuan Quintela echo "CONFIG_SH4_DIS=y" >> $config_target_mak 429076cad711SPaolo Bonzini echo "CONFIG_SH4_DIS=y" >> config-all-disas.mak 429164656024SJuan Quintela ;; 429264656024SJuan Quintela sparc*) 429325be210fSJuan Quintela echo "CONFIG_SPARC_DIS=y" >> $config_target_mak 429476cad711SPaolo Bonzini echo "CONFIG_SPARC_DIS=y" >> config-all-disas.mak 429564656024SJuan Quintela ;; 4296cfa550c6SMax Filippov xtensa*) 4297cfa550c6SMax Filippov echo "CONFIG_XTENSA_DIS=y" >> $config_target_mak 429876cad711SPaolo Bonzini echo "CONFIG_XTENSA_DIS=y" >> config-all-disas.mak 4299cfa550c6SMax Filippov ;; 430064656024SJuan Quintela esac 430164656024SJuan Quinteladone 43029195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then 43039195b2c2SStefan Weil echo "CONFIG_TCI_DIS=y" >> $config_target_mak 430476cad711SPaolo Bonzini echo "CONFIG_TCI_DIS=y" >> config-all-disas.mak 43059195b2c2SStefan Weilfi 430664656024SJuan Quintela 43076ee7126fSJuan Quintelacase "$ARCH" in 43086ee7126fSJuan Quintelaalpha) 43096ee7126fSJuan Quintela # Ensure there's only a single GP 43106ee7126fSJuan Quintela cflags="-msmall-data $cflags" 43116ee7126fSJuan Quintela;; 43126ee7126fSJuan Quintelaesac 43136ee7126fSJuan Quintela 431455d9c04bSJuan Quintelaif test "$target_softmmu" = "yes" ; then 431555d9c04bSJuan Quintela case "$TARGET_BASE_ARCH" in 431655d9c04bSJuan Quintela arm) 431755d9c04bSJuan Quintela cflags="-DHAS_AUDIO $cflags" 431855d9c04bSJuan Quintela ;; 431925a8bb96SMichael Walle lm32) 432025a8bb96SMichael Walle cflags="-DHAS_AUDIO $cflags" 432125a8bb96SMichael Walle ;; 432255d9c04bSJuan Quintela i386|mips|ppc) 432355d9c04bSJuan Quintela cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags" 432455d9c04bSJuan Quintela ;; 432555d9c04bSJuan Quintela esac 432655d9c04bSJuan Quintelafi 432755d9c04bSJuan Quintela 4328d02c1db3SJuan Quintelaif test "$gprof" = "yes" ; then 432925be210fSJuan Quintela echo "TARGET_GPROF=yes" >> $config_target_mak 4330d02c1db3SJuan Quintela if test "$target_linux_user" = "yes" ; then 4331d02c1db3SJuan Quintela cflags="-p $cflags" 4332d02c1db3SJuan Quintela ldflags="-p $ldflags" 4333d02c1db3SJuan Quintela fi 4334d02c1db3SJuan Quintela if test "$target_softmmu" = "yes" ; then 4335d02c1db3SJuan Quintela ldflags="-p $ldflags" 433625be210fSJuan Quintela echo "GPROF_CFLAGS=-p" >> $config_target_mak 4337d02c1db3SJuan Quintela fi 4338d02c1db3SJuan Quintelafi 4339d02c1db3SJuan Quintela 43409195b2c2SStefan Weilif test "$ARCH" = "tci"; then 43419195b2c2SStefan Weil linker_script="" 43429195b2c2SStefan Weilelse 4343c1c93672SPaolo Bonzini linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/ldscripts/\$(ARCH).ld" 43449195b2c2SStefan Weilfi 43459195b2c2SStefan Weil 43469b8e111fSJuan Quintelaif test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then 4347fa282484SJuan Quintela case "$ARCH" in 43484d58be06SRichard Henderson alpha | s390x) 43494d58be06SRichard Henderson # The default placement of the application is fine. 43504d58be06SRichard Henderson ;; 4351fd76e73aSRichard Henderson *) 4352322e5878SJuan Quintela ldflags="$linker_script $ldflags" 4353fa282484SJuan Quintela ;; 4354fa282484SJuan Quintela esac 4355fa282484SJuan Quintelafi 4356fa282484SJuan Quintela 435725be210fSJuan Quintelaecho "LDFLAGS+=$ldflags" >> $config_target_mak 435825be210fSJuan Quintelaecho "QEMU_CFLAGS+=$cflags" >> $config_target_mak 4359f9728943SPaolo Bonziniecho "QEMU_INCLUDES+=$includes" >> $config_target_mak 4360fa282484SJuan Quintela 436197a847bcSbellarddone # for target in $targets 43627d13299dSbellard 4363b776eca1SGerd Hoffmannif [ "$pixman" = "internal" ]; then 4364b776eca1SGerd Hoffmann echo "config-host.h: subdir-pixman" >> $config_host_mak 4365b776eca1SGerd Hoffmannfi 4366b776eca1SGerd Hoffmann 4367d1807a4fSPaolo Bonzini# build tree in object directory in case the source is not in the current directory 4368927b241dSMichael WalleDIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32" 43692dee8d54SPaolo BonziniDIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas" 43702d9f27d2SAnthony LiguoriDIRS="$DIRS roms/seabios roms/vgabios" 43712dee8d54SPaolo BonziniDIRS="$DIRS qapi-generated" 4372c09015ddSAnthony LiguoriFILES="Makefile tests/tcg/Makefile qdict-test-data.txt" 4373c09015ddSAnthony LiguoriFILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit" 4374834574eaSAnthony LiguoriFILES="$FILES tests/tcg/lm32/Makefile po/Makefile" 4375ae0bfb79SBlue SwirlFILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps" 4376446b9165SAndreas FärberFILES="$FILES pc-bios/spapr-rtas/Makefile" 43772d9f27d2SAnthony LiguoriFILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile" 4378753d11f2SRichard Hendersonfor bios_file in \ 4379753d11f2SRichard Henderson $source_path/pc-bios/*.bin \ 43805acc2ec0SGerd Hoffmann $source_path/pc-bios/*.aml \ 4381753d11f2SRichard Henderson $source_path/pc-bios/*.rom \ 4382753d11f2SRichard Henderson $source_path/pc-bios/*.dtb \ 4383753d11f2SRichard Henderson $source_path/pc-bios/openbios-* \ 4384753d11f2SRichard Henderson $source_path/pc-bios/palcode-* 4385753d11f2SRichard Hendersondo 43867ea78b74SJan Kiszka FILES="$FILES pc-bios/`basename $bios_file`" 43877ea78b74SJan Kiszkadone 4388d1807a4fSPaolo Bonzinimkdir -p $DIRS 43897d13299dSbellardfor f in $FILES ; do 439072b8b5a1SStefan Weil if [ -e "$source_path/$f" ] && [ "$source_path" != `pwd` ]; then 4391f9245e10SPeter Maydell symlink "$source_path/$f" "$f" 4392f9245e10SPeter Maydell fi 43937d13299dSbellarddone 43941ad2134fSPaul Brook 4395c34ebfdcSAnthony Liguori# temporary config to build submodules 43962d9f27d2SAnthony Liguorifor rom in seabios vgabios ; do 4397c34ebfdcSAnthony Liguori config_mak=roms/$rom/config.mak 439837116c89SStefan Weil echo "# Automatically generated by configure - do not modify" > $config_mak 4399c34ebfdcSAnthony Liguori echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak 44003dd46c78SBlue Swirl echo "AS=$as" >> $config_mak 4401c34ebfdcSAnthony Liguori echo "CC=$cc" >> $config_mak 4402c34ebfdcSAnthony Liguori echo "BCC=bcc" >> $config_mak 44033dd46c78SBlue Swirl echo "CPP=$cpp" >> $config_mak 4404c34ebfdcSAnthony Liguori echo "OBJCOPY=objcopy" >> $config_mak 4405c34ebfdcSAnthony Liguori echo "IASL=iasl" >> $config_mak 4406c34ebfdcSAnthony Liguori echo "LD=$ld" >> $config_mak 4407c34ebfdcSAnthony Liguoridone 4408c34ebfdcSAnthony Liguori 4409b40292e7SJan Kiszkaif test "$docs" = "yes" ; then 4410b40292e7SJan Kiszka mkdir -p QMP 4411b40292e7SJan Kiszkafi 4412