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="" 1197d13299dSbellardhost_cc="gcc" 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 128121afa9eSAnthony Liguoritarget_list="" 129377529c0SPaolo Bonzini 130377529c0SPaolo Bonzini# Default value for a variable defining feature "foo". 131377529c0SPaolo Bonzini# * foo="no" feature will only be used if --enable-foo arg is given 132377529c0SPaolo Bonzini# * foo="" feature will be searched for, and if found, will be used 133377529c0SPaolo Bonzini# unless --disable-foo is given 134377529c0SPaolo Bonzini# * foo="yes" this value will only be set by --enable-foo flag. 135377529c0SPaolo Bonzini# feature will searched for, 136377529c0SPaolo Bonzini# if not found, configure exits with error 137377529c0SPaolo Bonzini# 138377529c0SPaolo Bonzini# Always add --enable-foo and --disable-foo command line args. 139377529c0SPaolo Bonzini# Distributions want to ensure that several features are compiled in, and it 140377529c0SPaolo Bonzini# is impossible without a --enable-foo that exits if a feature is not found. 141377529c0SPaolo Bonzini 142377529c0SPaolo Bonzinibluez="" 143377529c0SPaolo Bonzinibrlapi="" 144377529c0SPaolo Bonzinicurl="" 145377529c0SPaolo Bonzinicurses="" 146377529c0SPaolo Bonzinidocs="" 147377529c0SPaolo Bonzinifdt="" 148377529c0SPaolo Bonzininptl="" 149377529c0SPaolo Bonzinisdl="" 150983eef5aSMeador Ingevirtfs="" 151821601eaSJes Sorensenvnc="yes" 152377529c0SPaolo Bonzinisparse="no" 153377529c0SPaolo Bonziniuuid="" 154377529c0SPaolo Bonzinivde="" 155377529c0SPaolo Bonzinivnc_tls="" 156377529c0SPaolo Bonzinivnc_sasl="" 157377529c0SPaolo Bonzinivnc_jpeg="" 158377529c0SPaolo Bonzinivnc_png="" 159377529c0SPaolo Bonzinixen="" 160d5b93ddfSAnthony PERARDxen_ctrl_version="" 161eb6fda0fSAnthony PERARDxen_pci_passthrough="" 162377529c0SPaolo Bonzinilinux_aio="" 16347e98658SCorey Bryantcap_ng="" 164377529c0SPaolo Bonziniattr="" 1654f26f2b6SAvi Kivitylibattr="" 166377529c0SPaolo Bonzinixfs="" 167377529c0SPaolo Bonzini 168d41a75a2SBradvhost_net="no" 169d41a75a2SBradkvm="no" 170377529c0SPaolo Bonzinigprof="no" 171377529c0SPaolo Bonzinidebug_tcg="no" 172377529c0SPaolo Bonzinidebug="no" 173377529c0SPaolo Bonzinistrip_opt="yes" 1749195b2c2SStefan Weiltcg_interpreter="no" 175377529c0SPaolo Bonzinibigendian="no" 176377529c0SPaolo Bonzinimingw32="no" 177377529c0SPaolo BonziniEXESUF="" 178377529c0SPaolo Bonziniprefix="/usr/local" 179377529c0SPaolo Bonzinimandir="\${prefix}/share/man" 180528ae5b8SEduardo Habkostdatadir="\${prefix}/share" 181850da188SEduardo Habkostqemu_docdir="\${prefix}/share/doc/qemu" 182377529c0SPaolo Bonzinibindir="\${prefix}/bin" 1833aa5d2beSAlon Levylibdir="\${prefix}/lib" 1848bf188aaSMichael Tokarevlibexecdir="\${prefix}/libexec" 1850f94d6daSAlon Levyincludedir="\${prefix}/include" 186377529c0SPaolo Bonzinisysconfdir="\${prefix}/etc" 187377529c0SPaolo Bonziniconfsuffix="/qemu" 188377529c0SPaolo Bonzinislirp="yes" 189377529c0SPaolo Bonzinifmod_lib="" 190377529c0SPaolo Bonzinifmod_inc="" 191377529c0SPaolo Bonzinioss_lib="" 192377529c0SPaolo Bonzinibsd="no" 193377529c0SPaolo Bonzinilinux="no" 194377529c0SPaolo Bonzinisolaris="no" 195377529c0SPaolo Bonziniprofiler="no" 196377529c0SPaolo Bonzinicocoa="no" 197377529c0SPaolo Bonzinisoftmmu="yes" 198377529c0SPaolo Bonzinilinux_user="no" 199377529c0SPaolo Bonzinibsd_user="no" 200377529c0SPaolo Bonziniguest_base="" 201377529c0SPaolo Bonziniuname_release="" 202377529c0SPaolo Bonzinimixemu="no" 203377529c0SPaolo Bonziniaix="no" 204377529c0SPaolo Bonziniblobs="yes" 205377529c0SPaolo Bonzinipkgversion="" 20640d6444eSAvi Kivitypie="" 207377529c0SPaolo Bonzinizero_malloc="" 208377529c0SPaolo Bonzinitrace_backend="nop" 209377529c0SPaolo Bonzinitrace_file="trace" 210377529c0SPaolo Bonzinispice="" 211377529c0SPaolo Bonzinirbd="" 21236707144SAlon Levysmartcard="" 213111a38b0SRobert Relyeasmartcard_nss="" 21469354a83SHans de Goedeusb_redir="" 215430a3c18SMichael Walleopengl="" 2161ece9905SAlon Levyzlib="yes" 217d138cee9SMichael Rothguest_agent="yes" 2184b1c11fdSDaniel P. Berrangewant_tools="yes" 219c589b249SRonnie Sahlberglibiscsi="" 220519175a2SAlex Barcelocoroutine="" 221f794573eSEduardo Otuboseccomp="" 222377529c0SPaolo Bonzini 223ac0df51dSaliguori# parse CC options first 224ac0df51dSaliguorifor opt do 225ac0df51dSaliguori optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` 226ac0df51dSaliguori case "$opt" in 227ac0df51dSaliguori --cross-prefix=*) cross_prefix="$optarg" 228ac0df51dSaliguori ;; 2293d8df640SPaolo Bonzini --cc=*) CC="$optarg" 230ac0df51dSaliguori ;; 231ca4deeb1SPaolo Bonzini --source-path=*) source_path="$optarg" 232ca4deeb1SPaolo Bonzini ;; 2332ff6b91eSJuan Quintela --cpu=*) cpu="$optarg" 2342ff6b91eSJuan Quintela ;; 235a558ee17SJuan Quintela --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS" 236e2a2ed06SJuan Quintela ;; 237e2a2ed06SJuan Quintela --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS" 238e2a2ed06SJuan Quintela ;; 2395bc62e01SGerd Hoffmann --enable-debug-info) debug_info="yes" 2405bc62e01SGerd Hoffmann ;; 2415bc62e01SGerd Hoffmann --disable-debug-info) debug_info="no" 2425bc62e01SGerd Hoffmann ;; 243ac0df51dSaliguori esac 244ac0df51dSaliguoridone 245ac0df51dSaliguori# OS specific 246ac0df51dSaliguori# Using uname is really, really broken. Once we have the right set of checks 24793148aa5SStefan Weil# we can eliminate its usage altogether. 248ac0df51dSaliguori 249b3198cc2SStuart Yodercc="${CC-${cross_prefix}gcc}" 250b3198cc2SStuart Yoderar="${AR-${cross_prefix}ar}" 251b3198cc2SStuart Yoderobjcopy="${OBJCOPY-${cross_prefix}objcopy}" 252b3198cc2SStuart Yoderld="${LD-${cross_prefix}ld}" 2533f534581SBradlibtool="${LIBTOOL-${cross_prefix}libtool}" 254b3198cc2SStuart Yoderstrip="${STRIP-${cross_prefix}strip}" 255b3198cc2SStuart Yoderwindres="${WINDRES-${cross_prefix}windres}" 25617884d7bSSergei Trofimovichpkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}" 25717884d7bSSergei Trofimovichquery_pkg_config() { 25817884d7bSSergei Trofimovich "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@" 25917884d7bSSergei Trofimovich} 26017884d7bSSergei Trofimovichpkg_config=query_pkg_config 261b3198cc2SStuart Yodersdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}" 262ac0df51dSaliguori 263be17dc90SMichael S. Tsirkin# default flags for all hosts 264be17dc90SMichael S. TsirkinQEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS" 265f9188227SMike FrysingerQEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS" 266be17dc90SMichael S. TsirkinQEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS" 267be17dc90SMichael S. TsirkinQEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS" 268cbbab922SPaolo BonziniQEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/fpu" 2695bc62e01SGerd Hoffmannif test "$debug_info" = "yes"; then 2705bc62e01SGerd Hoffmann CFLAGS="-g $CFLAGS" 271be17dc90SMichael S. Tsirkin LDFLAGS="-g $LDFLAGS" 2725bc62e01SGerd Hoffmannfi 273be17dc90SMichael S. Tsirkin 274ca4deeb1SPaolo Bonzini# make source path absolute 275ca4deeb1SPaolo Bonzinisource_path=`cd "$source_path"; pwd` 276ca4deeb1SPaolo Bonzini 277ac0df51dSaliguoricheck_define() { 278ac0df51dSaliguoricat > $TMPC <<EOF 279ac0df51dSaliguori#if !defined($1) 280fd786e1aSPeter Maydell#error $1 not defined 281ac0df51dSaliguori#endif 282ac0df51dSaliguoriint main(void) { return 0; } 283ac0df51dSaliguoriEOF 28452166aa0SJuan Quintela compile_object 285ac0df51dSaliguori} 286ac0df51dSaliguori 287bbea4050SPeter Maydellif check_define __linux__ ; then 288bbea4050SPeter Maydell targetos="Linux" 289bbea4050SPeter Maydellelif check_define _WIN32 ; then 290bbea4050SPeter Maydell targetos='MINGW32' 291bbea4050SPeter Maydellelif check_define __OpenBSD__ ; then 292bbea4050SPeter Maydell targetos='OpenBSD' 293bbea4050SPeter Maydellelif check_define __sun__ ; then 294bbea4050SPeter Maydell targetos='SunOS' 295bbea4050SPeter Maydellelif check_define __HAIKU__ ; then 296bbea4050SPeter Maydell targetos='Haiku' 297bbea4050SPeter Maydellelse 298bbea4050SPeter Maydell targetos=`uname -s` 299bbea4050SPeter Maydellfi 300bbea4050SPeter Maydell 301bbea4050SPeter Maydell# Some host OSes need non-standard checks for which CPU to use. 302bbea4050SPeter Maydell# Note that these checks are broken for cross-compilation: if you're 303bbea4050SPeter Maydell# cross-compiling to one of these OSes then you'll need to specify 304bbea4050SPeter Maydell# the correct CPU with the --cpu option. 305bbea4050SPeter Maydellcase $targetos in 306bbea4050SPeter MaydellDarwin) 307bbea4050SPeter Maydell # on Leopard most of the system is 32-bit, so we have to ask the kernel if we can 308bbea4050SPeter Maydell # run 64-bit userspace code. 309bbea4050SPeter Maydell # If the user didn't specify a CPU explicitly and the kernel says this is 310bbea4050SPeter Maydell # 64 bit hw, then assume x86_64. Otherwise fall through to the usual detection code. 311bbea4050SPeter Maydell if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then 312bbea4050SPeter Maydell cpu="x86_64" 313bbea4050SPeter Maydell fi 314bbea4050SPeter Maydell ;; 315bbea4050SPeter MaydellSunOS) 316bbea4050SPeter Maydell # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo 317bbea4050SPeter Maydell if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then 318bbea4050SPeter Maydell cpu="x86_64" 319bbea4050SPeter Maydell fi 320bbea4050SPeter Maydellesac 321bbea4050SPeter Maydell 3222ff6b91eSJuan Quintelaif test ! -z "$cpu" ; then 3232ff6b91eSJuan Quintela # command line argument 3242ff6b91eSJuan Quintela : 3252ff6b91eSJuan Quintelaelif check_define __i386__ ; then 326ac0df51dSaliguori cpu="i386" 327ac0df51dSaliguorielif check_define __x86_64__ ; then 328ac0df51dSaliguori cpu="x86_64" 3293aa9bd6cSblueswir1elif check_define __sparc__ ; then 3303aa9bd6cSblueswir1 if check_define __arch64__ ; then 3313aa9bd6cSblueswir1 cpu="sparc64" 3323aa9bd6cSblueswir1 else 3333aa9bd6cSblueswir1 cpu="sparc" 3343aa9bd6cSblueswir1 fi 335fdf7ed96Smalcelif check_define _ARCH_PPC ; then 336fdf7ed96Smalc if check_define _ARCH_PPC64 ; then 337fdf7ed96Smalc cpu="ppc64" 338ac0df51dSaliguori else 339fdf7ed96Smalc cpu="ppc" 340fdf7ed96Smalc fi 341afa05235SAurelien Jarnoelif check_define __mips__ ; then 342afa05235SAurelien Jarno cpu="mips" 343477ba620SAurelien Jarnoelif check_define __ia64__ ; then 344477ba620SAurelien Jarno cpu="ia64" 345d66ed0eaSAurelien Jarnoelif check_define __s390__ ; then 346d66ed0eaSAurelien Jarno if check_define __s390x__ ; then 347d66ed0eaSAurelien Jarno cpu="s390x" 348d66ed0eaSAurelien Jarno else 349d66ed0eaSAurelien Jarno cpu="s390" 350d66ed0eaSAurelien Jarno fi 35121d89f84SPeter Maydellelif check_define __arm__ ; then 35221d89f84SPeter Maydell cpu="arm" 353f28ffed5SBradelif check_define __hppa__ ; then 354f28ffed5SBrad cpu="hppa" 355fdf7ed96Smalcelse 356fdf7ed96Smalc cpu=`uname -m` 357ac0df51dSaliguorifi 358ac0df51dSaliguori 359359bc95dSPeter MaydellARCH= 360359bc95dSPeter Maydell# Normalise host CPU name and set ARCH. 361359bc95dSPeter Maydell# Note that this case should only have supported host CPUs, not guests. 3627d13299dSbellardcase "$cpu" in 363359bc95dSPeter Maydell ia64|ppc|ppc64|s390|s390x|sparc64) 364ea8f20f8SJuan Quintela cpu="$cpu" 365ea8f20f8SJuan Quintela ;; 3667d13299dSbellard i386|i486|i586|i686|i86pc|BePC) 36797a847bcSbellard cpu="i386" 3687d13299dSbellard ;; 369aaa5fa14Saurel32 x86_64|amd64) 370aaa5fa14Saurel32 cpu="x86_64" 371aaa5fa14Saurel32 ;; 37221d89f84SPeter Maydell armv*b|armv*l|arm) 37321d89f84SPeter Maydell cpu="arm" 3747d13299dSbellard ;; 375f28ffed5SBrad hppa|parisc|parisc64) 376f54b3f92Saurel32 cpu="hppa" 377f54b3f92Saurel32 ;; 378afa05235SAurelien Jarno mips*) 379afa05235SAurelien Jarno cpu="mips" 380afa05235SAurelien Jarno ;; 3813142255cSblueswir1 sparc|sun4[cdmuv]) 382ae228531Sbellard cpu="sparc" 383ae228531Sbellard ;; 3847d13299dSbellard *) 385359bc95dSPeter Maydell # This will result in either an error or falling back to TCI later 386359bc95dSPeter Maydell ARCH=unknown 3877d13299dSbellard ;; 3887d13299dSbellardesac 389359bc95dSPeter Maydellif test -z "$ARCH"; then 390359bc95dSPeter Maydell ARCH="$cpu" 391359bc95dSPeter Maydellfi 392e2d52ad3SJuan Quintela 3937d13299dSbellard# OS specific 3940dbfc675SJuan Quintela 3957d13299dSbellardcase $targetos in 396c326e0afSbellardCYGWIN*) 397c326e0afSbellard mingw32="yes" 398a558ee17SJuan Quintela QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS" 399d5631638Smalc audio_possible_drivers="winwave sdl" 400d5631638Smalc audio_drv_list="winwave" 401c326e0afSbellard;; 40267b915a5SbellardMINGW32*) 40367b915a5Sbellard mingw32="yes" 404d5631638Smalc audio_possible_drivers="winwave dsound sdl fmod" 405d5631638Smalc audio_drv_list="winwave" 40667b915a5Sbellard;; 4075c40d2bdSthsGNU/kFreeBSD) 408a167ba50SAurelien Jarno bsd="yes" 4090c58ac1cSmalc audio_drv_list="oss" 410f34af52cSaurel32 audio_possible_drivers="oss sdl esd pa" 4115c40d2bdSths;; 4127d3505c5SbellardFreeBSD) 4137d3505c5Sbellard bsd="yes" 4140db4a067SPaolo Bonzini make="${MAKE-gmake}" 4150c58ac1cSmalc audio_drv_list="oss" 416f34af52cSaurel32 audio_possible_drivers="oss sdl esd pa" 417f01576f1SJuergen Lock # needed for kinfo_getvmmap(3) in libutil.h 418f01576f1SJuergen Lock LIBS="-lutil $LIBS" 4197d3505c5Sbellard;; 420c5e97233Sblueswir1DragonFly) 421c5e97233Sblueswir1 bsd="yes" 4220db4a067SPaolo Bonzini make="${MAKE-gmake}" 423c5e97233Sblueswir1 audio_drv_list="oss" 424c5e97233Sblueswir1 audio_possible_drivers="oss sdl esd pa" 425c5e97233Sblueswir1;; 4267d3505c5SbellardNetBSD) 4277d3505c5Sbellard bsd="yes" 4280db4a067SPaolo Bonzini make="${MAKE-gmake}" 4290c58ac1cSmalc audio_drv_list="oss" 430c2de5c91Smalc audio_possible_drivers="oss sdl esd" 4318ef92a88Sblueswir1 oss_lib="-lossaudio" 4327d3505c5Sbellard;; 4337d3505c5SbellardOpenBSD) 4347d3505c5Sbellard bsd="yes" 4350db4a067SPaolo Bonzini make="${MAKE-gmake}" 4360c58ac1cSmalc audio_drv_list="oss" 437c2de5c91Smalc audio_possible_drivers="oss sdl esd" 4382f6a1ab0Sblueswir1 oss_lib="-lossaudio" 4397d3505c5Sbellard;; 44083fb7adfSbellardDarwin) 44183fb7adfSbellard bsd="yes" 44283fb7adfSbellard darwin="yes" 4431b0f9cc2Saliguori if [ "$cpu" = "x86_64" ] ; then 444a558ee17SJuan Quintela QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS" 4450c439cbfSJuan Quintela LDFLAGS="-arch x86_64 $LDFLAGS" 4461b0f9cc2Saliguori else 447a558ee17SJuan Quintela QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS" 4481b0f9cc2Saliguori fi 449fd677642Sths cocoa="yes" 4500c58ac1cSmalc audio_drv_list="coreaudio" 451c2de5c91Smalc audio_possible_drivers="coreaudio sdl fmod" 4520c439cbfSJuan Quintela LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS" 4537973f21cSJuan Quintela libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu" 454a0b7cf6bSPeter Maydell # Disable attempts to use ObjectiveC features in os/object.h since they 455a0b7cf6bSPeter Maydell # won't work when we're compiling with gcc as a C compiler. 456a0b7cf6bSPeter Maydell QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS" 45783fb7adfSbellard;; 458ec530c81SbellardSunOS) 459ec530c81Sbellard solaris="yes" 4600db4a067SPaolo Bonzini make="${MAKE-gmake}" 4610db4a067SPaolo Bonzini install="${INSTALL-ginstall}" 462fa58948dSBlue Swirl ld="gld" 463e2d8830eSBrad smbd="${SMBD-/usr/sfw/sbin/smbd}" 4640475a5caSths needs_libsunmath="no" 465c2b84fabSths solarisrev=`uname -r | cut -f2 -d.` 466c2b84fabSths if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 4670475a5caSths if test "$solarisrev" -le 9 ; then 4680475a5caSths if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then 4690475a5caSths needs_libsunmath="yes" 470f14bfdf9SJuan Quintela QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS" 471f14bfdf9SJuan Quintela LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS" 472f14bfdf9SJuan Quintela LIBS="-lsunmath $LIBS" 4730475a5caSths else 4740475a5caSths echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without" 4750475a5caSths echo "libsunmath from the Sun Studio compilers tools, due to a lack of" 4760475a5caSths echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86" 4770475a5caSths echo "Studio 11 can be downloaded from www.sun.com." 4780475a5caSths exit 1 4790475a5caSths fi 4800475a5caSths fi 48186b2bd93Sths fi 4826b4d2ba1Sths if test -f /usr/include/sys/soundcard.h ; then 4830c58ac1cSmalc audio_drv_list="oss" 4846b4d2ba1Sths fi 485c2de5c91Smalc audio_possible_drivers="oss sdl" 486d741429aSBlue Swirl# needed for CMSG_ macros in sys/socket.h 487d741429aSBlue Swirl QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS" 488d741429aSBlue Swirl# needed for TIOCWIN* defines in termios.h 489d741429aSBlue Swirl QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS" 490a558ee17SJuan Quintela QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS" 491560d375fSAndreas Färber solarisnetlibs="-lsocket -lnsl -lresolv" 492560d375fSAndreas Färber LIBS="$solarisnetlibs $LIBS" 493560d375fSAndreas Färber libs_qga="$solarisnetlibs $libs_qga" 494ec530c81Sbellard;; 495b29fe3edSmalcAIX) 496b29fe3edSmalc aix="yes" 4970db4a067SPaolo Bonzini make="${MAKE-gmake}" 498b29fe3edSmalc;; 499179cf400SAndreas FärberHaiku) 500179cf400SAndreas Färber haiku="yes" 501179cf400SAndreas Färber QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS" 502179cf400SAndreas Färber LIBS="-lposix_error_mapper -lnetwork $LIBS" 503179cf400SAndreas Färber;; 504fb065187Sbellard*) 5050c58ac1cSmalc audio_drv_list="oss" 506b8e59f18Smalc audio_possible_drivers="oss alsa sdl esd pa" 5075327cf48Sbellard linux="yes" 508831b7825Sths linux_user="yes" 50968063649Sblueswir1 usb="linux" 510af2be207SJan Kiszka kvm="yes" 511af2be207SJan Kiszka vhost_net="yes" 51207f4ddbfSbellard if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 513c2de5c91Smalc audio_possible_drivers="$audio_possible_drivers fmod" 514c9ec1fe4Sbellard fi 515fb065187Sbellard;; 5167d13299dSbellardesac 5177d13299dSbellard 5187d3505c5Sbellardif [ "$bsd" = "yes" ] ; then 519b1a550a0Spbrook if [ "$darwin" != "yes" ] ; then 52068063649Sblueswir1 usb="bsd" 52184778508Sblueswir1 bsd_user="yes" 5227d3505c5Sbellard fi 52308de3949SAndreas Färberfi 5247d3505c5Sbellard 5250db4a067SPaolo Bonzini: ${make=${MAKE-make}} 5260db4a067SPaolo Bonzini: ${install=${INSTALL-install}} 527c886edfbSBlue Swirl: ${python=${PYTHON-python}} 528e2d8830eSBrad: ${smbd=${SMBD-/usr/sbin/smbd}} 5290db4a067SPaolo Bonzini 5303c4a4d0dSPeter Maydell# Default objcc to clang if available, otherwise use CC 5313c4a4d0dSPeter Maydellif has clang; then 5323c4a4d0dSPeter Maydell objcc=clang 5333c4a4d0dSPeter Maydellelse 5343c4a4d0dSPeter Maydell objcc="$cc" 5353c4a4d0dSPeter Maydellfi 5363c4a4d0dSPeter Maydell 5373457a3f8SJuan Quintelaif test "$mingw32" = "yes" ; then 5383457a3f8SJuan Quintela EXESUF=".exe" 539a558ee17SJuan Quintela QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS" 540e94a7936SStefan Weil # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later) 541e94a7936SStefan Weil QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS" 542f7cf5d5bSStefan Weil LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS" 543f7cf5d5bSStefan Weilcat > $TMPC << EOF 544f7cf5d5bSStefan Weilint main(void) { return 0; } 545f7cf5d5bSStefan WeilEOF 546f7cf5d5bSStefan Weil if compile_prog "" "-liberty" ; then 547f7cf5d5bSStefan Weil LIBS="-liberty $LIBS" 548f7cf5d5bSStefan Weil fi 549c5ec15eaSStefan Weil prefix="c:/Program Files/QEMU" 550683035deSPaolo Bonzini mandir="\${prefix}" 551528ae5b8SEduardo Habkost datadir="\${prefix}" 552850da188SEduardo Habkost qemu_docdir="\${prefix}" 553683035deSPaolo Bonzini bindir="\${prefix}" 554683035deSPaolo Bonzini sysconfdir="\${prefix}" 555683035deSPaolo Bonzini confsuffix="" 556368542b8SStefan Hajnoczi libs_qga="-lws2_32 -lwinmm -lpowrprof $libs_qga" 5573457a3f8SJuan Quintelafi 5583457a3f8SJuan Quintela 559487fefdbSAnthony Liguoriwerror="" 56085aa5189Sbellard 5617d13299dSbellardfor opt do 562a46e4035Spbrook optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` 5637d13299dSbellard case "$opt" in 5642efc3265Sbellard --help|-h) show_help=yes 5652efc3265Sbellard ;; 56699123e13SMike Frysinger --version|-V) exec cat $source_path/VERSION 56799123e13SMike Frysinger ;; 568b1a550a0Spbrook --prefix=*) prefix="$optarg" 5697d13299dSbellard ;; 570b1a550a0Spbrook --interp-prefix=*) interp_prefix="$optarg" 57132ce6337Sbellard ;; 572ca4deeb1SPaolo Bonzini --source-path=*) 5737d13299dSbellard ;; 574ac0df51dSaliguori --cross-prefix=*) 5757d13299dSbellard ;; 576ac0df51dSaliguori --cc=*) 5777d13299dSbellard ;; 578b1a550a0Spbrook --host-cc=*) host_cc="$optarg" 57983469015Sbellard ;; 5803c4a4d0dSPeter Maydell --objcc=*) objcc="$optarg" 5813c4a4d0dSPeter Maydell ;; 582b1a550a0Spbrook --make=*) make="$optarg" 5837d13299dSbellard ;; 5846a882643Spbrook --install=*) install="$optarg" 5856a882643Spbrook ;; 586c886edfbSBlue Swirl --python=*) python="$optarg" 587c886edfbSBlue Swirl ;; 588e2d8830eSBrad --smbd=*) smbd="$optarg" 589e2d8830eSBrad ;; 590e2a2ed06SJuan Quintela --extra-cflags=*) 5917d13299dSbellard ;; 592e2a2ed06SJuan Quintela --extra-ldflags=*) 5937d13299dSbellard ;; 5945bc62e01SGerd Hoffmann --enable-debug-info) 5955bc62e01SGerd Hoffmann ;; 5965bc62e01SGerd Hoffmann --disable-debug-info) 5975bc62e01SGerd Hoffmann ;; 5982ff6b91eSJuan Quintela --cpu=*) 5997d13299dSbellard ;; 600b1a550a0Spbrook --target-list=*) target_list="$optarg" 601de83cd02Sbellard ;; 60274242e0fSPaolo Bonzini --enable-trace-backend=*) trace_backend="$optarg" 60394a420b1SStefan Hajnoczi ;; 60474242e0fSPaolo Bonzini --with-trace-file=*) trace_file="$optarg" 6059410b56cSPrerna Saxena ;; 6067d13299dSbellard --enable-gprof) gprof="yes" 6077d13299dSbellard ;; 60879427693SLoïc Minier --static) 60979427693SLoïc Minier static="yes" 61079427693SLoïc Minier LDFLAGS="-static $LDFLAGS" 61117884d7bSSergei Trofimovich QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS" 61243ce4dfeSbellard ;; 6130b24e75fSPaolo Bonzini --mandir=*) mandir="$optarg" 6140b24e75fSPaolo Bonzini ;; 6150b24e75fSPaolo Bonzini --bindir=*) bindir="$optarg" 6160b24e75fSPaolo Bonzini ;; 6173aa5d2beSAlon Levy --libdir=*) libdir="$optarg" 6183aa5d2beSAlon Levy ;; 6198bf188aaSMichael Tokarev --libexecdir=*) libexecdir="$optarg" 6208bf188aaSMichael Tokarev ;; 6210f94d6daSAlon Levy --includedir=*) includedir="$optarg" 6220f94d6daSAlon Levy ;; 623528ae5b8SEduardo Habkost --datadir=*) datadir="$optarg" 6240b24e75fSPaolo Bonzini ;; 625023d3d67SEduardo Habkost --with-confsuffix=*) confsuffix="$optarg" 626023d3d67SEduardo Habkost ;; 627850da188SEduardo Habkost --docdir=*) qemu_docdir="$optarg" 6280b24e75fSPaolo Bonzini ;; 629ca2fb938SAndre Przywara --sysconfdir=*) sysconfdir="$optarg" 63007381cc1SAnthony Liguori ;; 6318bf188aaSMichael Tokarev --sbindir=*|--sharedstatedir=*|--localstatedir=*|\ 632023ddd74SMax Filippov --oldincludedir=*|--datarootdir=*|--infodir=*|--localedir=*|\ 633023ddd74SMax Filippov --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*) 634023ddd74SMax Filippov # These switches are silently ignored, for compatibility with 635023ddd74SMax Filippov # autoconf-generated configure scripts. This allows QEMU's 636023ddd74SMax Filippov # configure to be used by RPM and similar macros that set 637023ddd74SMax Filippov # lots of directory switches by default. 638023ddd74SMax Filippov ;; 63997a847bcSbellard --disable-sdl) sdl="no" 64097a847bcSbellard ;; 641c4198157SJuan Quintela --enable-sdl) sdl="yes" 642c4198157SJuan Quintela ;; 643983eef5aSMeador Inge --disable-virtfs) virtfs="no" 644983eef5aSMeador Inge ;; 645983eef5aSMeador Inge --enable-virtfs) virtfs="yes" 646983eef5aSMeador Inge ;; 647821601eaSJes Sorensen --disable-vnc) vnc="no" 648821601eaSJes Sorensen ;; 649821601eaSJes Sorensen --enable-vnc) vnc="yes" 650821601eaSJes Sorensen ;; 651b1a550a0Spbrook --fmod-lib=*) fmod_lib="$optarg" 652102a52e4Sbellard ;; 653c2de5c91Smalc --fmod-inc=*) fmod_inc="$optarg" 654c2de5c91Smalc ;; 6552f6a1ab0Sblueswir1 --oss-lib=*) oss_lib="$optarg" 6562f6a1ab0Sblueswir1 ;; 6572fa7d3bfSmalc --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` 6580c58ac1cSmalc ;; 6590c58ac1cSmalc --audio-drv-list=*) audio_drv_list="$optarg" 6600c58ac1cSmalc ;; 661eb852011SMarkus Armbruster --block-drv-whitelist=*) block_drv_whitelist=`echo "$optarg" | sed -e 's/,/ /g'` 662eb852011SMarkus Armbruster ;; 663f8393946Saurel32 --enable-debug-tcg) debug_tcg="yes" 664f8393946Saurel32 ;; 665f8393946Saurel32 --disable-debug-tcg) debug_tcg="no" 666f8393946Saurel32 ;; 667f3d08ee6SPaul Brook --enable-debug) 668f3d08ee6SPaul Brook # Enable debugging options that aren't excessively noisy 669f3d08ee6SPaul Brook debug_tcg="yes" 670f3d08ee6SPaul Brook debug="yes" 671f3d08ee6SPaul Brook strip_opt="no" 672f3d08ee6SPaul Brook ;; 67303b4fe7dSaliguori --enable-sparse) sparse="yes" 67403b4fe7dSaliguori ;; 67503b4fe7dSaliguori --disable-sparse) sparse="no" 67603b4fe7dSaliguori ;; 6771625af87Saliguori --disable-strip) strip_opt="no" 6781625af87Saliguori ;; 6798d5d2d4cSths --disable-vnc-tls) vnc_tls="no" 6808d5d2d4cSths ;; 6811be10ad2SJuan Quintela --enable-vnc-tls) vnc_tls="yes" 6821be10ad2SJuan Quintela ;; 6832f9606b3Saliguori --disable-vnc-sasl) vnc_sasl="no" 6842f9606b3Saliguori ;; 685ea784e3bSJuan Quintela --enable-vnc-sasl) vnc_sasl="yes" 686ea784e3bSJuan Quintela ;; 6872f6f5c7aSCorentin Chary --disable-vnc-jpeg) vnc_jpeg="no" 6882f6f5c7aSCorentin Chary ;; 6892f6f5c7aSCorentin Chary --enable-vnc-jpeg) vnc_jpeg="yes" 6902f6f5c7aSCorentin Chary ;; 691efe556adSCorentin Chary --disable-vnc-png) vnc_png="no" 692efe556adSCorentin Chary ;; 693efe556adSCorentin Chary --enable-vnc-png) vnc_png="yes" 694efe556adSCorentin Chary ;; 695443f1376Sbellard --disable-slirp) slirp="no" 696c20709aaSbellard ;; 697ee682d27SStefan Weil --disable-uuid) uuid="no" 698ee682d27SStefan Weil ;; 699ee682d27SStefan Weil --enable-uuid) uuid="yes" 700ee682d27SStefan Weil ;; 701e0e6c8c0Saliguori --disable-vde) vde="no" 7028a16d273Sths ;; 703dfb278bdSJuan Quintela --enable-vde) vde="yes" 704dfb278bdSJuan Quintela ;; 705e37630caSaliguori --disable-xen) xen="no" 706e37630caSaliguori ;; 707fc321b4bSJuan Quintela --enable-xen) xen="yes" 708fc321b4bSJuan Quintela ;; 709eb6fda0fSAnthony PERARD --disable-xen-pci-passthrough) xen_pci_passthrough="no" 710eb6fda0fSAnthony PERARD ;; 711eb6fda0fSAnthony PERARD --enable-xen-pci-passthrough) xen_pci_passthrough="yes" 712eb6fda0fSAnthony PERARD ;; 7132e4d9fb1Saurel32 --disable-brlapi) brlapi="no" 7142e4d9fb1Saurel32 ;; 7154ffcedb6SJuan Quintela --enable-brlapi) brlapi="yes" 7164ffcedb6SJuan Quintela ;; 717fb599c9aSbalrog --disable-bluez) bluez="no" 718fb599c9aSbalrog ;; 719a20a6f46SJuan Quintela --enable-bluez) bluez="yes" 720a20a6f46SJuan Quintela ;; 7217ba1e619Saliguori --disable-kvm) kvm="no" 7227ba1e619Saliguori ;; 723b31a0277SJuan Quintela --enable-kvm) kvm="yes" 724b31a0277SJuan Quintela ;; 7259195b2c2SStefan Weil --disable-tcg-interpreter) tcg_interpreter="no" 7269195b2c2SStefan Weil ;; 7279195b2c2SStefan Weil --enable-tcg-interpreter) tcg_interpreter="yes" 7289195b2c2SStefan Weil ;; 72947e98658SCorey Bryant --disable-cap-ng) cap_ng="no" 73047e98658SCorey Bryant ;; 73147e98658SCorey Bryant --enable-cap-ng) cap_ng="yes" 73247e98658SCorey Bryant ;; 733cd4ec0b4SGerd Hoffmann --disable-spice) spice="no" 734cd4ec0b4SGerd Hoffmann ;; 735cd4ec0b4SGerd Hoffmann --enable-spice) spice="yes" 736cd4ec0b4SGerd Hoffmann ;; 737c589b249SRonnie Sahlberg --disable-libiscsi) libiscsi="no" 738c589b249SRonnie Sahlberg ;; 739c589b249SRonnie Sahlberg --enable-libiscsi) libiscsi="yes" 740c589b249SRonnie Sahlberg ;; 74105c2a3e7Sbellard --enable-profiler) profiler="yes" 74205c2a3e7Sbellard ;; 74314821030SPavel Borzenkov --disable-cocoa) cocoa="no" 74414821030SPavel Borzenkov ;; 745c2de5c91Smalc --enable-cocoa) 746c2de5c91Smalc cocoa="yes" ; 747c2de5c91Smalc sdl="no" ; 748c2de5c91Smalc audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`" 7495b0753e0Sbellard ;; 750cad25d69Spbrook --disable-system) softmmu="no" 7510a8e90f4Spbrook ;; 752cad25d69Spbrook --enable-system) softmmu="yes" 7530a8e90f4Spbrook ;; 7540953a80fSZachary Amsden --disable-user) 7550953a80fSZachary Amsden linux_user="no" ; 7560953a80fSZachary Amsden bsd_user="no" ; 7570953a80fSZachary Amsden ;; 7580953a80fSZachary Amsden --enable-user) ;; 759831b7825Sths --disable-linux-user) linux_user="no" 7600a8e90f4Spbrook ;; 761831b7825Sths --enable-linux-user) linux_user="yes" 762831b7825Sths ;; 76384778508Sblueswir1 --disable-bsd-user) bsd_user="no" 76484778508Sblueswir1 ;; 76584778508Sblueswir1 --enable-bsd-user) bsd_user="yes" 76684778508Sblueswir1 ;; 767379f6698SPaul Brook --enable-guest-base) guest_base="yes" 768379f6698SPaul Brook ;; 769379f6698SPaul Brook --disable-guest-base) guest_base="no" 770379f6698SPaul Brook ;; 77140d6444eSAvi Kivity --enable-pie) pie="yes" 77234005a00SKirill A. Shutemov ;; 77340d6444eSAvi Kivity --disable-pie) pie="no" 77434005a00SKirill A. Shutemov ;; 775c5937220Spbrook --enable-uname-release=*) uname_release="$optarg" 776c5937220Spbrook ;; 77785aa5189Sbellard --enable-werror) werror="yes" 77885aa5189Sbellard ;; 77985aa5189Sbellard --disable-werror) werror="no" 78085aa5189Sbellard ;; 7814d3b6f6eSbalrog --disable-curses) curses="no" 7824d3b6f6eSbalrog ;; 783c584a6d0SJuan Quintela --enable-curses) curses="yes" 784c584a6d0SJuan Quintela ;; 785769ce76dSAlexander Graf --disable-curl) curl="no" 786769ce76dSAlexander Graf ;; 787788c8196SJuan Quintela --enable-curl) curl="yes" 788788c8196SJuan Quintela ;; 7892df87df7SJuan Quintela --disable-fdt) fdt="no" 7902df87df7SJuan Quintela ;; 7912df87df7SJuan Quintela --enable-fdt) fdt="yes" 7922df87df7SJuan Quintela ;; 793bd0c5661Spbrook --disable-nptl) nptl="no" 794bd0c5661Spbrook ;; 795b0a47e79SJuan Quintela --enable-nptl) nptl="yes" 796b0a47e79SJuan Quintela ;; 7978ff9cbf7Smalc --enable-mixemu) mixemu="yes" 7988ff9cbf7Smalc ;; 7995c6c3a6cSChristoph Hellwig --disable-linux-aio) linux_aio="no" 8005c6c3a6cSChristoph Hellwig ;; 8015c6c3a6cSChristoph Hellwig --enable-linux-aio) linux_aio="yes" 8025c6c3a6cSChristoph Hellwig ;; 803758e8e38SVenkateswararao Jujjuri (JV) --disable-attr) attr="no" 804758e8e38SVenkateswararao Jujjuri (JV) ;; 805758e8e38SVenkateswararao Jujjuri (JV) --enable-attr) attr="yes" 806758e8e38SVenkateswararao Jujjuri (JV) ;; 80777755340Sths --disable-blobs) blobs="no" 80877755340Sths ;; 8094a19f1ecSpbrook --with-pkgversion=*) pkgversion=" ($optarg)" 8104a19f1ecSpbrook ;; 811519175a2SAlex Barcelo --with-coroutine=*) coroutine="$optarg" 812519175a2SAlex Barcelo ;; 813a25dba17SJuan Quintela --disable-docs) docs="no" 81470ec5dc0SAnthony Liguori ;; 815a25dba17SJuan Quintela --enable-docs) docs="yes" 81683a3ab8bSJuan Quintela ;; 817d5970055SMichael S. Tsirkin --disable-vhost-net) vhost_net="no" 818d5970055SMichael S. Tsirkin ;; 819d5970055SMichael S. Tsirkin --enable-vhost-net) vhost_net="yes" 820d5970055SMichael S. Tsirkin ;; 82120ff075bSMichael Walle --disable-opengl) opengl="no" 82220ff075bSMichael Walle ;; 82320ff075bSMichael Walle --enable-opengl) opengl="yes" 82420ff075bSMichael Walle ;; 825f27aaf4bSChristian Brunner --disable-rbd) rbd="no" 826f27aaf4bSChristian Brunner ;; 827f27aaf4bSChristian Brunner --enable-rbd) rbd="yes" 828f27aaf4bSChristian Brunner ;; 8298c84cf11SSergei Trofimovich --disable-xfsctl) xfs="no" 8308c84cf11SSergei Trofimovich ;; 8318c84cf11SSergei Trofimovich --enable-xfsctl) xfs="yes" 8328c84cf11SSergei Trofimovich ;; 83336707144SAlon Levy --disable-smartcard) smartcard="no" 83436707144SAlon Levy ;; 83536707144SAlon Levy --enable-smartcard) smartcard="yes" 83636707144SAlon Levy ;; 837111a38b0SRobert Relyea --disable-smartcard-nss) smartcard_nss="no" 838111a38b0SRobert Relyea ;; 839111a38b0SRobert Relyea --enable-smartcard-nss) smartcard_nss="yes" 840111a38b0SRobert Relyea ;; 84169354a83SHans de Goede --disable-usb-redir) usb_redir="no" 84269354a83SHans de Goede ;; 84369354a83SHans de Goede --enable-usb-redir) usb_redir="yes" 84469354a83SHans de Goede ;; 8451ece9905SAlon Levy --disable-zlib-test) zlib="no" 8461ece9905SAlon Levy ;; 847d138cee9SMichael Roth --enable-guest-agent) guest_agent="yes" 848d138cee9SMichael Roth ;; 849d138cee9SMichael Roth --disable-guest-agent) guest_agent="no" 850d138cee9SMichael Roth ;; 8514b1c11fdSDaniel P. Berrange --enable-tools) want_tools="yes" 8524b1c11fdSDaniel P. Berrange ;; 8534b1c11fdSDaniel P. Berrange --disable-tools) want_tools="no" 8544b1c11fdSDaniel P. Berrange ;; 855f794573eSEduardo Otubo --enable-seccomp) seccomp="yes" 856f794573eSEduardo Otubo ;; 857f794573eSEduardo Otubo --disable-seccomp) seccomp="no" 858f794573eSEduardo Otubo ;; 8597f1559c6Sbalrog *) echo "ERROR: unknown option $opt"; show_help="yes" 8607f1559c6Sbalrog ;; 8617d13299dSbellard esac 8627d13299dSbellarddone 8637d13299dSbellard 864379f6698SPaul Brookhost_guest_base="no" 86540293e58Sbellardcase "$cpu" in 8669b9c37c3SRichard Henderson sparc) 8670c439cbfSJuan Quintela LDFLAGS="-m32 $LDFLAGS" 8689b9c37c3SRichard Henderson QEMU_CFLAGS="-m32 -mcpu=ultrasparc $QEMU_CFLAGS" 869c6f7e4fbSRichard Henderson host_guest_base="yes" 8703142255cSblueswir1 ;; 871ed968ff1SJuan Quintela sparc64) 8720c439cbfSJuan Quintela LDFLAGS="-m64 $LDFLAGS" 8739b9c37c3SRichard Henderson QEMU_CFLAGS="-m64 -mcpu=ultrasparc $QEMU_CFLAGS" 874c6f7e4fbSRichard Henderson host_guest_base="yes" 8753142255cSblueswir1 ;; 87676d83bdeSths s390) 87728d7cc49SRichard Henderson QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS" 87828d7cc49SRichard Henderson LDFLAGS="-m31 $LDFLAGS" 87948bb3750SRichard Henderson host_guest_base="yes" 88028d7cc49SRichard Henderson ;; 88128d7cc49SRichard Henderson s390x) 88228d7cc49SRichard Henderson QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS" 88328d7cc49SRichard Henderson LDFLAGS="-m64 $LDFLAGS" 88448bb3750SRichard Henderson host_guest_base="yes" 88576d83bdeSths ;; 88640293e58Sbellard i386) 887a558ee17SJuan Quintela QEMU_CFLAGS="-m32 $QEMU_CFLAGS" 8880c439cbfSJuan Quintela LDFLAGS="-m32 $LDFLAGS" 8892b2e59e6SPaolo Bonzini cc_i386='$(CC) -m32' 890379f6698SPaul Brook host_guest_base="yes" 89140293e58Sbellard ;; 89240293e58Sbellard x86_64) 893a558ee17SJuan Quintela QEMU_CFLAGS="-m64 $QEMU_CFLAGS" 8940c439cbfSJuan Quintela LDFLAGS="-m64 $LDFLAGS" 8952b2e59e6SPaolo Bonzini cc_i386='$(CC) -m32' 896379f6698SPaul Brook host_guest_base="yes" 897379f6698SPaul Brook ;; 898379f6698SPaul Brook arm*) 899379f6698SPaul Brook host_guest_base="yes" 90040293e58Sbellard ;; 901f6548c0aSmalc ppc*) 902f6548c0aSmalc host_guest_base="yes" 903f6548c0aSmalc ;; 904cc01cc8eSAurelien Jarno mips*) 905cc01cc8eSAurelien Jarno host_guest_base="yes" 906cc01cc8eSAurelien Jarno ;; 907477ba620SAurelien Jarno ia64*) 908477ba620SAurelien Jarno host_guest_base="yes" 909477ba620SAurelien Jarno ;; 910fd76e73aSRichard Henderson hppa*) 911fd76e73aSRichard Henderson host_guest_base="yes" 912fd76e73aSRichard Henderson ;; 913d2fbca94SGuan Xuetao unicore32*) 914d2fbca94SGuan Xuetao host_guest_base="yes" 915d2fbca94SGuan Xuetao ;; 9163142255cSblueswir1esac 9173142255cSblueswir1 918379f6698SPaul Brook[ -z "$guest_base" ] && guest_base="$host_guest_base" 919379f6698SPaul Brook 92060e0df25SPeter Maydell 92160e0df25SPeter Maydelldefault_target_list="" 92260e0df25SPeter Maydell 92360e0df25SPeter Maydell# these targets are portable 92460e0df25SPeter Maydellif [ "$softmmu" = "yes" ] ; then 92560e0df25SPeter Maydell default_target_list="\ 92660e0df25SPeter Maydelli386-softmmu \ 92760e0df25SPeter Maydellx86_64-softmmu \ 92827cdad67SRichard Hendersonalpha-softmmu \ 92960e0df25SPeter Maydellarm-softmmu \ 93060e0df25SPeter Maydellcris-softmmu \ 93160e0df25SPeter Maydelllm32-softmmu \ 93260e0df25SPeter Maydellm68k-softmmu \ 93360e0df25SPeter Maydellmicroblaze-softmmu \ 93460e0df25SPeter Maydellmicroblazeel-softmmu \ 93560e0df25SPeter Maydellmips-softmmu \ 93660e0df25SPeter Maydellmipsel-softmmu \ 93760e0df25SPeter Maydellmips64-softmmu \ 93860e0df25SPeter Maydellmips64el-softmmu \ 939e67db06eSJia Liuor32-softmmu \ 94060e0df25SPeter Maydellppc-softmmu \ 94160e0df25SPeter Maydellppcemb-softmmu \ 94260e0df25SPeter Maydellppc64-softmmu \ 94360e0df25SPeter Maydellsh4-softmmu \ 94460e0df25SPeter Maydellsh4eb-softmmu \ 94560e0df25SPeter Maydellsparc-softmmu \ 94660e0df25SPeter Maydellsparc64-softmmu \ 9470f3301d4SAlexander Grafs390x-softmmu \ 948cfa550c6SMax Filippovxtensa-softmmu \ 949cfa550c6SMax Filippovxtensaeb-softmmu \ 9504f23a1e6SGuan Xuetaounicore32-softmmu \ 95160e0df25SPeter Maydell" 95260e0df25SPeter Maydellfi 95360e0df25SPeter Maydell# the following are Linux specific 95460e0df25SPeter Maydellif [ "$linux_user" = "yes" ] ; then 95560e0df25SPeter Maydell default_target_list="${default_target_list}\ 95660e0df25SPeter Maydelli386-linux-user \ 95760e0df25SPeter Maydellx86_64-linux-user \ 95860e0df25SPeter Maydellalpha-linux-user \ 95960e0df25SPeter Maydellarm-linux-user \ 96060e0df25SPeter Maydellarmeb-linux-user \ 96160e0df25SPeter Maydellcris-linux-user \ 96260e0df25SPeter Maydellm68k-linux-user \ 96360e0df25SPeter Maydellmicroblaze-linux-user \ 96460e0df25SPeter Maydellmicroblazeel-linux-user \ 96560e0df25SPeter Maydellmips-linux-user \ 96660e0df25SPeter Maydellmipsel-linux-user \ 967d962783eSJia Liuor32-linux-user \ 96860e0df25SPeter Maydellppc-linux-user \ 96960e0df25SPeter Maydellppc64-linux-user \ 97060e0df25SPeter Maydellppc64abi32-linux-user \ 97160e0df25SPeter Maydellsh4-linux-user \ 97260e0df25SPeter Maydellsh4eb-linux-user \ 97360e0df25SPeter Maydellsparc-linux-user \ 97460e0df25SPeter Maydellsparc64-linux-user \ 97560e0df25SPeter Maydellsparc32plus-linux-user \ 97660e0df25SPeter Maydellunicore32-linux-user \ 9770f3301d4SAlexander Grafs390x-linux-user \ 97860e0df25SPeter Maydell" 97960e0df25SPeter Maydellfi 98060e0df25SPeter Maydell# the following are BSD specific 98160e0df25SPeter Maydellif [ "$bsd_user" = "yes" ] ; then 98260e0df25SPeter Maydell default_target_list="${default_target_list}\ 98360e0df25SPeter Maydelli386-bsd-user \ 98460e0df25SPeter Maydellx86_64-bsd-user \ 98560e0df25SPeter Maydellsparc-bsd-user \ 98660e0df25SPeter Maydellsparc64-bsd-user \ 98760e0df25SPeter Maydell" 98860e0df25SPeter Maydellfi 98960e0df25SPeter Maydell 990af5db58eSpbrookif test x"$show_help" = x"yes" ; then 991af5db58eSpbrookcat << EOF 992af5db58eSpbrook 993af5db58eSpbrookUsage: configure [options] 994af5db58eSpbrookOptions: [defaults in brackets after descriptions] 995af5db58eSpbrook 996af5db58eSpbrookEOF 997af5db58eSpbrookecho "Standard options:" 998af5db58eSpbrookecho " --help print this message" 999af5db58eSpbrookecho " --prefix=PREFIX install in PREFIX [$prefix]" 1000af5db58eSpbrookecho " --interp-prefix=PREFIX where to find shared libraries, etc." 1001af5db58eSpbrookecho " use %M for cpu name [$interp_prefix]" 100260e0df25SPeter Maydellecho " --target-list=LIST set target list (default: build everything)" 100360e0df25SPeter Maydellecho "Available targets: $default_target_list" | \ 100460e0df25SPeter Maydell fold -s -w 53 | sed -e 's/^/ /' 1005af5db58eSpbrookecho "" 1006af5db58eSpbrookecho "Advanced options (experts only):" 1007af5db58eSpbrookecho " --source-path=PATH path of source code [$source_path]" 1008af5db58eSpbrookecho " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" 1009af5db58eSpbrookecho " --cc=CC use C compiler CC [$cc]" 10100bfe8cc0SPaolo Bonziniecho " --host-cc=CC use C compiler CC [$host_cc] for code run at" 10110bfe8cc0SPaolo Bonziniecho " build time" 10123c4a4d0dSPeter Maydellecho " --objcc=OBJCC use Objective-C compiler OBJCC [$objcc]" 1013a558ee17SJuan Quintelaecho " --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS" 1014e3fc14c3SJan Kiszkaecho " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS" 1015af5db58eSpbrookecho " --make=MAKE use specified make [$make]" 10166a882643Spbrookecho " --install=INSTALL use specified install [$install]" 1017c886edfbSBlue Swirlecho " --python=PYTHON use specified python [$python]" 1018e2d8830eSBradecho " --smbd=SMBD use specified smbd [$smbd]" 1019af5db58eSpbrookecho " --static enable static build [$static]" 10200b24e75fSPaolo Bonziniecho " --mandir=PATH install man pages in PATH" 1021023d3d67SEduardo Habkostecho " --datadir=PATH install firmware in PATH$confsuffix" 1022023d3d67SEduardo Habkostecho " --docdir=PATH install documentation in PATH$confsuffix" 10230b24e75fSPaolo Bonziniecho " --bindir=PATH install binaries in PATH" 1024023d3d67SEduardo Habkostecho " --sysconfdir=PATH install config in PATH$confsuffix" 10252ae4748fSStefan Weilecho " --with-confsuffix=SUFFIX suffix for QEMU data inside datadir and sysconfdir [$confsuffix]" 1026f8393946Saurel32echo " --enable-debug-tcg enable TCG debugging" 1027f8393946Saurel32echo " --disable-debug-tcg disable TCG debugging (default)" 102809695a4aSStefan Weilecho " --enable-debug enable common debug build options" 1029890b1658Saliguoriecho " --enable-sparse enable sparse checker" 1030890b1658Saliguoriecho " --disable-sparse disable sparse checker (default)" 10311625af87Saliguoriecho " --disable-strip disable stripping binaries" 103285aa5189Sbellardecho " --disable-werror disable compilation abort on warning" 1033fe8f78e4Sbalrogecho " --disable-sdl disable SDL" 1034c4198157SJuan Quintelaecho " --enable-sdl enable SDL" 1035983eef5aSMeador Ingeecho " --disable-virtfs disable VirtFS" 1036983eef5aSMeador Ingeecho " --enable-virtfs enable VirtFS" 1037821601eaSJes Sorensenecho " --disable-vnc disable VNC" 1038821601eaSJes Sorensenecho " --enable-vnc enable VNC" 103914821030SPavel Borzenkovecho " --disable-cocoa disable Cocoa (Mac OS X only)" 104014821030SPavel Borzenkovecho " --enable-cocoa enable Cocoa (default on Mac OS X)" 1041c2de5c91Smalcecho " --audio-drv-list=LIST set audio drivers list:" 1042c2de5c91Smalcecho " Available drivers: $audio_possible_drivers" 10434c9b53e3Smalcecho " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]" 10444c9b53e3Smalcecho " Available cards: $audio_possible_cards" 1045eb852011SMarkus Armbrusterecho " --block-drv-whitelist=L set block driver whitelist" 1046eb852011SMarkus Armbrusterecho " (affects only QEMU, not qemu-img)" 10478ff9cbf7Smalcecho " --enable-mixemu enable mixer emulation" 1048e37630caSaliguoriecho " --disable-xen disable xen backend driver support" 1049fc321b4bSJuan Quintelaecho " --enable-xen enable xen backend driver support" 1050eb6fda0fSAnthony PERARDecho " --disable-xen-pci-passthrough" 1051eb6fda0fSAnthony PERARDecho " --enable-xen-pci-passthrough" 10522e4d9fb1Saurel32echo " --disable-brlapi disable BrlAPI" 10534ffcedb6SJuan Quintelaecho " --enable-brlapi enable BrlAPI" 10548d5d2d4cSthsecho " --disable-vnc-tls disable TLS encryption for VNC server" 10551be10ad2SJuan Quintelaecho " --enable-vnc-tls enable TLS encryption for VNC server" 10562f9606b3Saliguoriecho " --disable-vnc-sasl disable SASL encryption for VNC server" 1057ea784e3bSJuan Quintelaecho " --enable-vnc-sasl enable SASL encryption for VNC server" 10582f6f5c7aSCorentin Charyecho " --disable-vnc-jpeg disable JPEG lossy compression for VNC server" 10592f6f5c7aSCorentin Charyecho " --enable-vnc-jpeg enable JPEG lossy compression for VNC server" 106096763cf9SCorentin Charyecho " --disable-vnc-png disable PNG compression for VNC server (default)" 1061efe556adSCorentin Charyecho " --enable-vnc-png enable PNG compression for VNC server" 1062af896aaaSpbrookecho " --disable-curses disable curses output" 1063c584a6d0SJuan Quintelaecho " --enable-curses enable curses output" 1064769ce76dSAlexander Grafecho " --disable-curl disable curl connectivity" 1065788c8196SJuan Quintelaecho " --enable-curl enable curl connectivity" 10662df87df7SJuan Quintelaecho " --disable-fdt disable fdt device tree" 10672df87df7SJuan Quintelaecho " --enable-fdt enable fdt device tree" 1068fb599c9aSbalrogecho " --disable-bluez disable bluez stack connectivity" 1069a20a6f46SJuan Quintelaecho " --enable-bluez enable bluez stack connectivity" 10706093d3d4SPeter Maydellecho " --disable-slirp disable SLIRP userspace network connectivity" 10717ba1e619Saliguoriecho " --disable-kvm disable KVM acceleration support" 1072b31a0277SJuan Quintelaecho " --enable-kvm enable KVM acceleration support" 10739195b2c2SStefan Weilecho " --enable-tcg-interpreter enable TCG with bytecode interpreter (TCI)" 1074bd0c5661Spbrookecho " --disable-nptl disable usermode NPTL support" 1075e5934d33SAndre Przywaraecho " --enable-nptl enable usermode NPTL support" 1076af5db58eSpbrookecho " --enable-system enable all system emulation targets" 1077af5db58eSpbrookecho " --disable-system disable all system emulation targets" 10780953a80fSZachary Amsdenecho " --enable-user enable supported user emulation targets" 10790953a80fSZachary Amsdenecho " --disable-user disable all user emulation targets" 1080831b7825Sthsecho " --enable-linux-user enable all linux usermode emulation targets" 1081831b7825Sthsecho " --disable-linux-user disable all linux usermode emulation targets" 108284778508Sblueswir1echo " --enable-bsd-user enable all BSD usermode emulation targets" 108384778508Sblueswir1echo " --disable-bsd-user disable all BSD usermode emulation targets" 1084379f6698SPaul Brookecho " --enable-guest-base enable GUEST_BASE support for usermode" 1085379f6698SPaul Brookecho " emulation targets" 1086379f6698SPaul Brookecho " --disable-guest-base disable GUEST_BASE support" 108740d6444eSAvi Kivityecho " --enable-pie build Position Independent Executables" 108840d6444eSAvi Kivityecho " --disable-pie do not build Position Independent Executables" 1089af5db58eSpbrookecho " --fmod-lib path to FMOD library" 1090af5db58eSpbrookecho " --fmod-inc path to FMOD includes" 10912f6a1ab0Sblueswir1echo " --oss-lib path to OSS library" 1092c5937220Spbrookecho " --enable-uname-release=R Return R for uname -r in usermode emulation" 1093235e510cS陳韋任echo " --cpu=CPU Build for host CPU [$cpu]" 10943142255cSblueswir1echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9" 1095ee682d27SStefan Weilecho " --disable-uuid disable uuid support" 1096ee682d27SStefan Weilecho " --enable-uuid enable uuid support" 1097e0e6c8c0Saliguoriecho " --disable-vde disable support for vde network" 1098dfb278bdSJuan Quintelaecho " --enable-vde enable support for vde network" 10995c6c3a6cSChristoph Hellwigecho " --disable-linux-aio disable Linux AIO support" 11005c6c3a6cSChristoph Hellwigecho " --enable-linux-aio enable Linux AIO support" 110147e98658SCorey Bryantecho " --disable-cap-ng disable libcap-ng support" 110247e98658SCorey Bryantecho " --enable-cap-ng enable libcap-ng support" 1103758e8e38SVenkateswararao Jujjuri (JV)echo " --disable-attr disables attr and xattr support" 1104758e8e38SVenkateswararao Jujjuri (JV)echo " --enable-attr enable attr and xattr support" 110577755340Sthsecho " --disable-blobs disable installing provided firmware blobs" 1106d2807bc9SDirk Ullrichecho " --enable-docs enable documentation build" 1107d2807bc9SDirk Ullrichecho " --disable-docs disable documentation build" 1108d5970055SMichael S. Tsirkinecho " --disable-vhost-net disable vhost-net acceleration support" 1109d5970055SMichael S. Tsirkinecho " --enable-vhost-net enable vhost-net acceleration support" 1110320fba2aSFabien Chouteauecho " --enable-trace-backend=B Set trace backend" 1111650ab98dSLluís Vilanovaecho " Available backends:" $($python "$source_path"/scripts/tracetool.py --list-backends) 111274242e0fSPaolo Bonziniecho " --with-trace-file=NAME Full PATH,NAME of file to store traces" 11139410b56cSPrerna Saxenaecho " Default:trace-<pid>" 1114cd4ec0b4SGerd Hoffmannecho " --disable-spice disable spice" 1115cd4ec0b4SGerd Hoffmannecho " --enable-spice enable spice" 1116f27aaf4bSChristian Brunnerecho " --enable-rbd enable building the rados block device (rbd)" 1117c589b249SRonnie Sahlbergecho " --disable-libiscsi disable iscsi support" 1118c589b249SRonnie Sahlbergecho " --enable-libiscsi enable iscsi support" 111936707144SAlon Levyecho " --disable-smartcard disable smartcard support" 112036707144SAlon Levyecho " --enable-smartcard enable smartcard support" 1121111a38b0SRobert Relyeaecho " --disable-smartcard-nss disable smartcard nss support" 1122111a38b0SRobert Relyeaecho " --enable-smartcard-nss enable smartcard nss support" 112369354a83SHans de Goedeecho " --disable-usb-redir disable usb network redirection support" 112469354a83SHans de Goedeecho " --enable-usb-redir enable usb network redirection support" 1125d138cee9SMichael Rothecho " --disable-guest-agent disable building of the QEMU Guest Agent" 1126d138cee9SMichael Rothecho " --enable-guest-agent enable building of the QEMU Guest Agent" 1127f794573eSEduardo Otuboecho " --disable-seccomp disable seccomp support" 1128f794573eSEduardo Otuboecho " --enable-seccomp enables seccomp support" 1129519175a2SAlex Barceloecho " --with-coroutine=BACKEND coroutine backend. Supported options:" 1130fe91bfa8SAlex Barceloecho " gthread, ucontext, sigaltstack, windows" 1131af5db58eSpbrookecho "" 11325bf08934Sthsecho "NOTE: The object files are built at the place where configure is launched" 1133af5db58eSpbrookexit 1 1134af5db58eSpbrookfi 1135af5db58eSpbrook 1136359bc95dSPeter Maydell# Now we have handled --enable-tcg-interpreter and know we're not just 1137359bc95dSPeter Maydell# printing the help message, bail out if the host CPU isn't supported. 1138359bc95dSPeter Maydellif test "$ARCH" = "unknown"; then 1139359bc95dSPeter Maydell if test "$tcg_interpreter" = "yes" ; then 1140359bc95dSPeter Maydell echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)" 1141359bc95dSPeter Maydell ARCH=tci 1142359bc95dSPeter Maydell else 1143359bc95dSPeter Maydell echo "Unsupported CPU = $cpu, try --enable-tcg-interpreter" 1144359bc95dSPeter Maydell exit 1 1145359bc95dSPeter Maydell fi 1146359bc95dSPeter Maydellfi 1147359bc95dSPeter Maydell 11488d05095cSPaolo Bonzini# check that the C compiler works. 11498d05095cSPaolo Bonzinicat > $TMPC <<EOF 115075cafad7SStefan Weilint main(void) { return 0; } 11518d05095cSPaolo BonziniEOF 11528d05095cSPaolo Bonzini 11538d05095cSPaolo Bonziniif compile_object ; then 11548d05095cSPaolo Bonzini : C compiler works ok 11558d05095cSPaolo Bonzinielse 11568d05095cSPaolo Bonzini echo "ERROR: \"$cc\" either does not exist or does not work" 11578d05095cSPaolo Bonzini exit 1 11588d05095cSPaolo Bonzinifi 11598d05095cSPaolo Bonzini 1160417c9d72SAlexander Graf# Consult white-list to determine whether to enable werror 1161417c9d72SAlexander Graf# by default. Only enable by default for git builds 1162417c9d72SAlexander Grafz_version=`cut -f3 -d. $source_path/VERSION` 1163417c9d72SAlexander Graf 1164417c9d72SAlexander Grafif test -z "$werror" ; then 1165417c9d72SAlexander Graf if test "$z_version" = "50" -a \ 1166417c9d72SAlexander Graf "$linux" = "yes" ; then 1167417c9d72SAlexander Graf werror="yes" 1168417c9d72SAlexander Graf else 1169417c9d72SAlexander Graf werror="no" 1170417c9d72SAlexander Graf fi 1171417c9d72SAlexander Graffi 1172417c9d72SAlexander Graf 11738d05095cSPaolo Bonzinigcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits" 11748d05095cSPaolo Bonzinigcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags" 11758d05095cSPaolo Bonzinigcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags" 1176f9188227SMike Frysingergcc_flags="-fstack-protector-all -Wendif-labels $gcc_flags" 11776ca026cbSPeter Maydell# Note that we do not add -Werror to gcc_flags here, because that would 11786ca026cbSPeter Maydell# enable it for all configure tests. If a configure test failed due 11796ca026cbSPeter Maydell# to -Werror this would just silently disable some features, 11806ca026cbSPeter Maydell# so it's too error prone. 11818d05095cSPaolo Bonzinicat > $TMPC << EOF 11828d05095cSPaolo Bonziniint main(void) { return 0; } 11838d05095cSPaolo BonziniEOF 11848d05095cSPaolo Bonzinifor flag in $gcc_flags; do 1185bd947d30SStefan Weil if compile_prog "-Werror $flag" "" ; then 11868d05095cSPaolo Bonzini QEMU_CFLAGS="$QEMU_CFLAGS $flag" 11878d05095cSPaolo Bonzini fi 11888d05095cSPaolo Bonzinidone 11898d05095cSPaolo Bonzini 119040d6444eSAvi Kivityif test "$static" = "yes" ; then 119140d6444eSAvi Kivity if test "$pie" = "yes" ; then 119240d6444eSAvi Kivity echo "static and pie are mutually incompatible" 119340d6444eSAvi Kivity exit 1 119440d6444eSAvi Kivity else 119540d6444eSAvi Kivity pie="no" 119640d6444eSAvi Kivity fi 119740d6444eSAvi Kivityfi 119840d6444eSAvi Kivity 119940d6444eSAvi Kivityif test "$pie" = ""; then 120040d6444eSAvi Kivity case "$cpu-$targetos" in 1201f9db31a2SBrad i386-Linux|x86_64-Linux|i386-OpenBSD|x86_64-OpenBSD) 120240d6444eSAvi Kivity ;; 120340d6444eSAvi Kivity *) 120440d6444eSAvi Kivity pie="no" 120540d6444eSAvi Kivity ;; 120640d6444eSAvi Kivity esac 120740d6444eSAvi Kivityfi 120840d6444eSAvi Kivity 120940d6444eSAvi Kivityif test "$pie" != "no" ; then 121040d6444eSAvi Kivity cat > $TMPC << EOF 121121d4a791SAvi Kivity 121221d4a791SAvi Kivity#ifdef __linux__ 121321d4a791SAvi Kivity# define THREAD __thread 121421d4a791SAvi Kivity#else 121521d4a791SAvi Kivity# define THREAD 121621d4a791SAvi Kivity#endif 121721d4a791SAvi Kivity 121821d4a791SAvi Kivitystatic THREAD int tls_var; 121921d4a791SAvi Kivity 122021d4a791SAvi Kivityint main(void) { return tls_var; } 122121d4a791SAvi Kivity 122240d6444eSAvi KivityEOF 122340d6444eSAvi Kivity if compile_prog "-fPIE -DPIE" "-pie"; then 122440d6444eSAvi Kivity QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS" 122540d6444eSAvi Kivity LDFLAGS="-pie $LDFLAGS" 122640d6444eSAvi Kivity pie="yes" 122740d6444eSAvi Kivity if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then 122840d6444eSAvi Kivity LDFLAGS="-Wl,-z,relro -Wl,-z,now $LDFLAGS" 122940d6444eSAvi Kivity fi 123040d6444eSAvi Kivity else 123140d6444eSAvi Kivity if test "$pie" = "yes"; then 123240d6444eSAvi Kivity echo "PIE not available due to missing toolchain support" 123340d6444eSAvi Kivity exit 1 123440d6444eSAvi Kivity else 123540d6444eSAvi Kivity echo "Disabling PIE due to missing toolchain support" 123640d6444eSAvi Kivity pie="no" 123740d6444eSAvi Kivity fi 123840d6444eSAvi Kivity fi 123940d6444eSAvi Kivityfi 124040d6444eSAvi Kivity 1241ec530c81Sbellard# 1242ec530c81Sbellard# Solaris specific configure tool chain decisions 1243ec530c81Sbellard# 1244ec530c81Sbellardif test "$solaris" = "yes" ; then 12456792aa11SLoïc Minier if has $install; then 12466792aa11SLoïc Minier : 12476792aa11SLoïc Minier else 1248ec530c81Sbellard echo "Solaris install program not found. Use --install=/usr/ucb/install or" 1249ec530c81Sbellard echo "install fileutils from www.blastwave.org using pkg-get -i fileutils" 1250ec530c81Sbellard echo "to get ginstall which is used by default (which lives in /opt/csw/bin)" 1251ec530c81Sbellard exit 1 1252ec530c81Sbellard fi 12536792aa11SLoïc Minier if test "`path_of $install`" = "/usr/sbin/install" ; then 1254ec530c81Sbellard echo "Error: Solaris /usr/sbin/install is not an appropriate install program." 1255ec530c81Sbellard echo "try ginstall from the GNU fileutils available from www.blastwave.org" 1256ec530c81Sbellard echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install" 1257ec530c81Sbellard exit 1 1258ec530c81Sbellard fi 12596792aa11SLoïc Minier if has ar; then 12606792aa11SLoïc Minier : 12616792aa11SLoïc Minier else 1262ec530c81Sbellard echo "Error: No path includes ar" 1263ec530c81Sbellard if test -f /usr/ccs/bin/ar ; then 1264ec530c81Sbellard echo "Add /usr/ccs/bin to your path and rerun configure" 1265ec530c81Sbellard fi 1266ec530c81Sbellard exit 1 1267ec530c81Sbellard fi 1268ec530c81Sbellardfi 1269ec530c81Sbellard 12707a3fc891SSebastian Herbsztif ! has $python; then 1271c886edfbSBlue Swirl echo "Python not found. Use --python=/path/to/python" 1272c886edfbSBlue Swirl exit 1 1273c886edfbSBlue Swirlfi 1274c886edfbSBlue Swirl 12756ccea1e4SPeter Maydell# Note that if the Python conditional here evaluates True we will exit 12766ccea1e4SPeter Maydell# with status 1 which is a shell 'false' value. 1277e120d449SStefan Hajnocziif ! "$python" -c 'import sys; sys.exit(sys.version_info < (2,4) or sys.version_info >= (3,))'; then 1278e120d449SStefan Hajnoczi echo "Cannot use '$python', Python 2.4 or later is required." 1279e120d449SStefan Hajnoczi echo "Note that Python 3 or later is not yet supported." 1280e120d449SStefan Hajnoczi echo "Use --python=/path/to/python to specify a supported Python." 12816ccea1e4SPeter Maydell exit 1 12826ccea1e4SPeter Maydellfi 12836ccea1e4SPeter Maydell 1284121afa9eSAnthony Liguoriif test -z "$target_list" ; then 1285121afa9eSAnthony Liguori target_list="$default_target_list" 1286121afa9eSAnthony Liguorielse 1287121afa9eSAnthony Liguori target_list=`echo "$target_list" | sed -e 's/,/ /g'` 12885327cf48Sbellardfi 1289121afa9eSAnthony Liguoriif test -z "$target_list" ; then 1290121afa9eSAnthony Liguori echo "No targets enabled" 1291121afa9eSAnthony Liguori exit 1 1292121afa9eSAnthony Liguorifi 1293f55fe278SPaolo Bonzini# see if system emulation was really requested 1294f55fe278SPaolo Bonzinicase " $target_list " in 1295f55fe278SPaolo Bonzini *"-softmmu "*) softmmu=yes 1296f55fe278SPaolo Bonzini ;; 1297f55fe278SPaolo Bonzini *) softmmu=no 1298f55fe278SPaolo Bonzini ;; 1299f55fe278SPaolo Bonziniesac 13005327cf48Sbellard 1301249247c9SJuan Quintelafeature_not_found() { 1302249247c9SJuan Quintela feature=$1 1303249247c9SJuan Quintela 1304249247c9SJuan Quintela echo "ERROR" 1305249247c9SJuan Quintela echo "ERROR: User requested feature $feature" 13069332f6a2SSebastian Herbszt echo "ERROR: configure was not able to find it" 1307249247c9SJuan Quintela echo "ERROR" 1308249247c9SJuan Quintela exit 1; 1309249247c9SJuan Quintela} 1310249247c9SJuan Quintela 13117d13299dSbellardif test -z "$cross_prefix" ; then 13127d13299dSbellard 13137d13299dSbellard# --- 13147d13299dSbellard# big/little endian test 13157d13299dSbellardcat > $TMPC << EOF 13167d13299dSbellard#include <inttypes.h> 13177d13299dSbellardint main(int argc, char ** argv){ 13187d13299dSbellard volatile uint32_t i=0x01234567; 13197d13299dSbellard return (*((uint8_t*)(&i))) == 0x67; 13207d13299dSbellard} 13217d13299dSbellardEOF 13227d13299dSbellard 132352166aa0SJuan Quintelaif compile_prog "" "" ; then 13247d13299dSbellard$TMPE && bigendian="yes" 13257d13299dSbellardelse 13267d13299dSbellardecho big/little test failed 13277d13299dSbellardfi 13287d13299dSbellard 13297d13299dSbellardelse 13307d13299dSbellard 13317d13299dSbellard# if cross compiling, cannot launch a program, so make a static guess 1332ea8f20f8SJuan Quintelacase "$cpu" in 133321d89f84SPeter Maydell arm) 133421d89f84SPeter Maydell # ARM can be either way; ask the compiler which one we are 133521d89f84SPeter Maydell if check_define __ARMEB__; then 133621d89f84SPeter Maydell bigendian=yes 133721d89f84SPeter Maydell fi 133821d89f84SPeter Maydell ;; 133921d89f84SPeter Maydell hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64) 1340ea8f20f8SJuan Quintela bigendian=yes 1341ea8f20f8SJuan Quintela ;; 1342ea8f20f8SJuan Quintelaesac 13437d13299dSbellard 13447d13299dSbellardfi 13457d13299dSbellard 1346b0a47e79SJuan Quintela########################################## 1347b0a47e79SJuan Quintela# NPTL probe 1348b0a47e79SJuan Quintela 1349b0a47e79SJuan Quintelaif test "$nptl" != "no" ; then 1350bd0c5661Spbrook cat > $TMPC <<EOF 1351bd0c5661Spbrook#include <sched.h> 135230813ceaSpbrook#include <linux/futex.h> 1353182eacc0SStefan Weilint main(void) { 1354bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) 1355bd0c5661Spbrook#error bork 1356bd0c5661Spbrook#endif 1357182eacc0SStefan Weil return 0; 1358bd0c5661Spbrook} 1359bd0c5661SpbrookEOF 1360bd0c5661Spbrook 136152166aa0SJuan Quintela if compile_object ; then 1362b0a47e79SJuan Quintela nptl=yes 1363bd0c5661Spbrook else 1364b0a47e79SJuan Quintela if test "$nptl" = "yes" ; then 1365b0a47e79SJuan Quintela feature_not_found "nptl" 1366b0a47e79SJuan Quintela fi 1367b0a47e79SJuan Quintela nptl=no 1368b0a47e79SJuan Quintela fi 1369bd0c5661Spbrookfi 1370bd0c5661Spbrook 137111d9f695Sbellard########################################## 1372ac62922eSbalrog# zlib check 1373ac62922eSbalrog 13741ece9905SAlon Levyif test "$zlib" != "no" ; then 1375ac62922eSbalrog cat > $TMPC << EOF 1376ac62922eSbalrog#include <zlib.h> 1377ac62922eSbalrogint main(void) { zlibVersion(); return 0; } 1378ac62922eSbalrogEOF 137952166aa0SJuan Quintela if compile_prog "" "-lz" ; then 1380ac62922eSbalrog : 1381ac62922eSbalrog else 1382ac62922eSbalrog echo 1383ac62922eSbalrog echo "Error: zlib check failed" 1384ac62922eSbalrog echo "Make sure to have the zlib libs and headers installed." 1385ac62922eSbalrog echo 1386ac62922eSbalrog exit 1 1387ac62922eSbalrog fi 13881ece9905SAlon Levyfi 1389ac62922eSbalrog 1390ac62922eSbalrog########################################## 1391f794573eSEduardo Otubo# libseccomp check 1392f794573eSEduardo Otubo 1393f794573eSEduardo Otuboif test "$seccomp" != "no" ; then 1394f794573eSEduardo Otubo if $pkg_config libseccomp --modversion >/dev/null 2>&1; then 1395f794573eSEduardo Otubo LIBS=`$pkg_config --libs libseccomp` 1396f794573eSEduardo Otubo seccomp="yes" 1397f794573eSEduardo Otubo else 1398f794573eSEduardo Otubo if test "$seccomp" = "yes"; then 1399f794573eSEduardo Otubo feature_not_found "libseccomp" 1400f794573eSEduardo Otubo fi 1401e84d5956SYann E. MORIN seccomp="no" 1402f794573eSEduardo Otubo fi 1403f794573eSEduardo Otubofi 1404f794573eSEduardo Otubo########################################## 1405e37630caSaliguori# xen probe 1406e37630caSaliguori 1407fc321b4bSJuan Quintelaif test "$xen" != "no" ; then 1408b2266beeSJuan Quintela xen_libs="-lxenstore -lxenctrl -lxenguest" 1409d5b93ddfSAnthony PERARD 141050ced5b3SStefan Weil # First we test whether Xen headers and libraries are available. 141150ced5b3SStefan Weil # If no, we are done and there is no Xen support. 141250ced5b3SStefan Weil # If yes, more tests are run to detect the Xen version. 141350ced5b3SStefan Weil 141450ced5b3SStefan Weil # Xen (any) 141550ced5b3SStefan Weil cat > $TMPC <<EOF 141650ced5b3SStefan Weil#include <xenctrl.h> 141750ced5b3SStefan Weilint main(void) { 141850ced5b3SStefan Weil return 0; 141950ced5b3SStefan Weil} 142050ced5b3SStefan WeilEOF 142150ced5b3SStefan Weil if ! compile_prog "" "$xen_libs" ; then 142250ced5b3SStefan Weil # Xen not found 142350ced5b3SStefan Weil if test "$xen" = "yes" ; then 142450ced5b3SStefan Weil feature_not_found "xen" 142550ced5b3SStefan Weil fi 142650ced5b3SStefan Weil xen=no 142750ced5b3SStefan Weil 1428d5b93ddfSAnthony PERARD # Xen unstable 142969deef08SPeter Maydell elif 143069deef08SPeter Maydell cat > $TMPC <<EOF && 1431e37630caSaliguori#include <xenctrl.h> 1432e108a3c1SAnthony PERARD#include <xenstore.h> 1433d5b93ddfSAnthony PERARD#include <stdint.h> 1434d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h> 1435d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS) 1436d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined 1437d5b93ddfSAnthony PERARD#endif 1438d5b93ddfSAnthony PERARDint main(void) { 1439d5b93ddfSAnthony PERARD xc_interface *xc; 1440d5b93ddfSAnthony PERARD xs_daemon_open(); 1441d5b93ddfSAnthony PERARD xc = xc_interface_open(0, 0, 0); 1442d5b93ddfSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1443d5b93ddfSAnthony PERARD xc_gnttab_open(NULL, 0); 1444b87de24eSAnthony PERARD xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); 14458688e065SStefano Stabellini xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); 14468688e065SStefano Stabellini return 0; 14478688e065SStefano Stabellini} 14488688e065SStefano StabelliniEOF 14498688e065SStefano Stabellini compile_prog "" "$xen_libs" 145069deef08SPeter Maydell then 14518688e065SStefano Stabellini xen_ctrl_version=420 14528688e065SStefano Stabellini xen=yes 14538688e065SStefano Stabellini 145469deef08SPeter Maydell elif 145569deef08SPeter Maydell cat > $TMPC <<EOF && 14568688e065SStefano Stabellini#include <xenctrl.h> 14578688e065SStefano Stabellini#include <xs.h> 14588688e065SStefano Stabellini#include <stdint.h> 14598688e065SStefano Stabellini#include <xen/hvm/hvm_info_table.h> 14608688e065SStefano Stabellini#if !defined(HVM_MAX_VCPUS) 14618688e065SStefano Stabellini# error HVM_MAX_VCPUS not defined 14628688e065SStefano Stabellini#endif 14638688e065SStefano Stabelliniint main(void) { 14648688e065SStefano Stabellini xs_daemon_open(); 14659b4c0b56SPeter Maydell xc_interface_open(0, 0, 0); 14668688e065SStefano Stabellini xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 14678688e065SStefano Stabellini xc_gnttab_open(NULL, 0); 14688688e065SStefano Stabellini xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); 1469d5b93ddfSAnthony PERARD return 0; 1470d5b93ddfSAnthony PERARD} 1471e37630caSaliguoriEOF 147250ced5b3SStefan Weil compile_prog "" "$xen_libs" 147369deef08SPeter Maydell then 1474d5b93ddfSAnthony PERARD xen_ctrl_version=410 1475fc321b4bSJuan Quintela xen=yes 1476d5b93ddfSAnthony PERARD 1477d5b93ddfSAnthony PERARD # Xen 4.0.0 147869deef08SPeter Maydell elif 147969deef08SPeter Maydell cat > $TMPC <<EOF && 1480d5b93ddfSAnthony PERARD#include <xenctrl.h> 1481d5b93ddfSAnthony PERARD#include <xs.h> 1482d5b93ddfSAnthony PERARD#include <stdint.h> 1483d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h> 1484d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS) 1485d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined 1486d5b93ddfSAnthony PERARD#endif 1487d5b93ddfSAnthony PERARDint main(void) { 1488b87de24eSAnthony PERARD struct xen_add_to_physmap xatp = { 1489b87de24eSAnthony PERARD .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0, 1490b87de24eSAnthony PERARD }; 1491d5b93ddfSAnthony PERARD xs_daemon_open(); 1492d5b93ddfSAnthony PERARD xc_interface_open(); 1493d5b93ddfSAnthony PERARD xc_gnttab_open(); 1494d5b93ddfSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1495b87de24eSAnthony PERARD xc_memory_op(0, XENMEM_add_to_physmap, &xatp); 1496d5b93ddfSAnthony PERARD return 0; 1497d5b93ddfSAnthony PERARD} 1498d5b93ddfSAnthony PERARDEOF 1499d5b93ddfSAnthony PERARD compile_prog "" "$xen_libs" 150069deef08SPeter Maydell then 1501d5b93ddfSAnthony PERARD xen_ctrl_version=400 1502d5b93ddfSAnthony PERARD xen=yes 1503d5b93ddfSAnthony PERARD 1504b87de24eSAnthony PERARD # Xen 3.4.0 150569deef08SPeter Maydell elif 150669deef08SPeter Maydell cat > $TMPC <<EOF && 1507b87de24eSAnthony PERARD#include <xenctrl.h> 1508b87de24eSAnthony PERARD#include <xs.h> 1509b87de24eSAnthony PERARDint main(void) { 1510b87de24eSAnthony PERARD struct xen_add_to_physmap xatp = { 1511b87de24eSAnthony PERARD .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0, 1512b87de24eSAnthony PERARD }; 1513b87de24eSAnthony PERARD xs_daemon_open(); 1514b87de24eSAnthony PERARD xc_interface_open(); 1515b87de24eSAnthony PERARD xc_gnttab_open(); 1516b87de24eSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1517b87de24eSAnthony PERARD xc_memory_op(0, XENMEM_add_to_physmap, &xatp); 1518b87de24eSAnthony PERARD return 0; 1519b87de24eSAnthony PERARD} 1520b87de24eSAnthony PERARDEOF 1521b87de24eSAnthony PERARD compile_prog "" "$xen_libs" 152269deef08SPeter Maydell then 1523b87de24eSAnthony PERARD xen_ctrl_version=340 1524b87de24eSAnthony PERARD xen=yes 1525b87de24eSAnthony PERARD 1526b87de24eSAnthony PERARD # Xen 3.3.0 152769deef08SPeter Maydell elif 152869deef08SPeter Maydell cat > $TMPC <<EOF && 1529d5b93ddfSAnthony PERARD#include <xenctrl.h> 1530d5b93ddfSAnthony PERARD#include <xs.h> 1531d5b93ddfSAnthony PERARDint main(void) { 1532d5b93ddfSAnthony PERARD xs_daemon_open(); 1533d5b93ddfSAnthony PERARD xc_interface_open(); 1534d5b93ddfSAnthony PERARD xc_gnttab_open(); 1535d5b93ddfSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1536d5b93ddfSAnthony PERARD return 0; 1537d5b93ddfSAnthony PERARD} 1538d5b93ddfSAnthony PERARDEOF 1539d5b93ddfSAnthony PERARD compile_prog "" "$xen_libs" 154069deef08SPeter Maydell then 1541d5b93ddfSAnthony PERARD xen_ctrl_version=330 1542d5b93ddfSAnthony PERARD xen=yes 1543d5b93ddfSAnthony PERARD 154450ced5b3SStefan Weil # Xen version unsupported 1545e37630caSaliguori else 1546fc321b4bSJuan Quintela if test "$xen" = "yes" ; then 154750ced5b3SStefan Weil feature_not_found "xen (unsupported version)" 1548fc321b4bSJuan Quintela fi 1549fc321b4bSJuan Quintela xen=no 1550e37630caSaliguori fi 1551d5b93ddfSAnthony PERARD 1552d5b93ddfSAnthony PERARD if test "$xen" = yes; then 1553d5b93ddfSAnthony PERARD libs_softmmu="$xen_libs $libs_softmmu" 1554d5b93ddfSAnthony PERARD fi 1555e37630caSaliguorifi 1556e37630caSaliguori 1557eb6fda0fSAnthony PERARDif test "$xen_pci_passthrough" != "no"; then 1558eb6fda0fSAnthony PERARD if test "$xen" = "yes" && test "$linux" = "yes" && 1559eb6fda0fSAnthony PERARD test "$xen_ctrl_version" -ge 340; then 1560eb6fda0fSAnthony PERARD xen_pci_passthrough=yes 1561eb6fda0fSAnthony PERARD else 1562eb6fda0fSAnthony PERARD if test "$xen_pci_passthrough" = "yes"; then 1563eb6fda0fSAnthony PERARD echo "ERROR" 1564eb6fda0fSAnthony PERARD echo "ERROR: User requested feature Xen PCI Passthrough" 1565eb6fda0fSAnthony PERARD echo "ERROR: but this feature require /sys from Linux" 1566eb6fda0fSAnthony PERARD if test "$xen_ctrl_version" -lt 340; then 1567eb6fda0fSAnthony PERARD echo "ERROR: This feature does not work with Xen 3.3" 1568eb6fda0fSAnthony PERARD fi 1569eb6fda0fSAnthony PERARD echo "ERROR" 1570eb6fda0fSAnthony PERARD exit 1; 1571eb6fda0fSAnthony PERARD fi 1572eb6fda0fSAnthony PERARD xen_pci_passthrough=no 1573eb6fda0fSAnthony PERARD fi 1574eb6fda0fSAnthony PERARDfi 1575eb6fda0fSAnthony PERARD 1576e37630caSaliguori########################################## 1577a8bd70adSPaolo Bonzini# pkg-config probe 1578f91672e5SPaolo Bonzini 157917884d7bSSergei Trofimovichif ! has "$pkg_config_exe"; then 158017884d7bSSergei Trofimovich echo "Error: pkg-config binary '$pkg_config_exe' not found" 1581a213fcb2SPeter Maydell exit 1 1582f91672e5SPaolo Bonzinifi 1583f91672e5SPaolo Bonzini 1584f91672e5SPaolo Bonzini########################################## 158544dc0ca3SAlon Levy# libtool probe 158644dc0ca3SAlon Levy 15873f534581SBradif ! has $libtool; then 158844dc0ca3SAlon Levy libtool= 158944dc0ca3SAlon Levyfi 159044dc0ca3SAlon Levy 159144dc0ca3SAlon Levy########################################## 1592dfffc653SJuan Quintela# Sparse probe 1593dfffc653SJuan Quintelaif test "$sparse" != "no" ; then 15940dba6195SLoïc Minier if has cgcc; then 1595dfffc653SJuan Quintela sparse=yes 1596dfffc653SJuan Quintela else 1597dfffc653SJuan Quintela if test "$sparse" = "yes" ; then 1598dfffc653SJuan Quintela feature_not_found "sparse" 1599dfffc653SJuan Quintela fi 1600dfffc653SJuan Quintela sparse=no 1601dfffc653SJuan Quintela fi 1602dfffc653SJuan Quintelafi 1603dfffc653SJuan Quintela 1604dfffc653SJuan Quintela########################################## 160511d9f695Sbellard# SDL probe 160611d9f695Sbellard 16073ec87ffeSPaolo Bonzini# Look for sdl configuration program (pkg-config or sdl-config). Try 16083ec87ffeSPaolo Bonzini# sdl-config even without cross prefix, and favour pkg-config over sdl-config. 16093ec87ffeSPaolo Bonziniif test "`basename $sdl_config`" != sdl-config && ! has ${sdl_config}; then 16103ec87ffeSPaolo Bonzini sdl_config=sdl-config 16113ec87ffeSPaolo Bonzinifi 16123ec87ffeSPaolo Bonzini 16133ec87ffeSPaolo Bonziniif $pkg_config sdl --modversion >/dev/null 2>&1; then 1614a8bd70adSPaolo Bonzini sdlconfig="$pkg_config sdl" 1615fec0e3e8SStefan Weil _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'` 16163ec87ffeSPaolo Bonzinielif has ${sdl_config}; then 16173ec87ffeSPaolo Bonzini sdlconfig="$sdl_config" 16189316f803SPaolo Bonzini _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'` 1619a0dfd8a4SLoïc Minierelse 1620a0dfd8a4SLoïc Minier if test "$sdl" = "yes" ; then 1621a0dfd8a4SLoïc Minier feature_not_found "sdl" 1622a0dfd8a4SLoïc Minier fi 1623a0dfd8a4SLoïc Minier sdl=no 16249316f803SPaolo Bonzinifi 162529e5badaSScott Woodif test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then 16263ec87ffeSPaolo Bonzini echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2 16273ec87ffeSPaolo Bonzinifi 162811d9f695Sbellard 16299316f803SPaolo Bonzinisdl_too_old=no 1630c4198157SJuan Quintelaif test "$sdl" != "no" ; then 163111d9f695Sbellard cat > $TMPC << EOF 163211d9f695Sbellard#include <SDL.h> 163311d9f695Sbellard#undef main /* We don't want SDL to override our main() */ 163411d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); } 163511d9f695SbellardEOF 16369316f803SPaolo Bonzini sdl_cflags=`$sdlconfig --cflags 2> /dev/null` 163774f42e18STeLeMan if test "$static" = "yes" ; then 163874f42e18STeLeMan sdl_libs=`$sdlconfig --static-libs 2>/dev/null` 163974f42e18STeLeMan else 16409316f803SPaolo Bonzini sdl_libs=`$sdlconfig --libs 2> /dev/null` 164174f42e18STeLeMan fi 164252166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 164311d9f695Sbellard if test "$_sdlversion" -lt 121 ; then 164411d9f695Sbellard sdl_too_old=yes 164511d9f695Sbellard else 1646fd677642Sths if test "$cocoa" = "no" ; then 164711d9f695Sbellard sdl=yes 164811d9f695Sbellard fi 1649fd677642Sths fi 16507c1f25b4Sbellard 165167c274d3SPaolo Bonzini # static link with sdl ? (note: sdl.pc's --static --libs is broken) 16521ac88f28SJuan Quintela if test "$sdl" = "yes" -a "$static" = "yes" ; then 165367c274d3SPaolo Bonzini if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then 1654f8aa6c7bSStefan Weil sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`" 1655f8aa6c7bSStefan Weil sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`" 165611d9f695Sbellard fi 165752166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 16581ac88f28SJuan Quintela : 16591ac88f28SJuan Quintela else 16601ac88f28SJuan Quintela sdl=no 16617c1f25b4Sbellard fi 16627c1f25b4Sbellard fi # static link 1663c4198157SJuan Quintela else # sdl not found 1664c4198157SJuan Quintela if test "$sdl" = "yes" ; then 1665c4198157SJuan Quintela feature_not_found "sdl" 1666c4198157SJuan Quintela fi 1667c4198157SJuan Quintela sdl=no 16687c1f25b4Sbellard fi # sdl compile test 1669fd677642Sthsfi 167011d9f695Sbellard 16715368a422Saliguoriif test "$sdl" = "yes" ; then 16725368a422Saliguori cat > $TMPC <<EOF 16735368a422Saliguori#include <SDL.h> 16745368a422Saliguori#if defined(SDL_VIDEO_DRIVER_X11) 16755368a422Saliguori#include <X11/XKBlib.h> 16765368a422Saliguori#else 16775368a422Saliguori#error No x11 support 16785368a422Saliguori#endif 16795368a422Saliguoriint main(void) { return 0; } 16805368a422SaliguoriEOF 168152166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 1682681306dfSJuan Quintela sdl_libs="$sdl_libs -lX11" 16835368a422Saliguori fi 16840705667eSJuan Quintela libs_softmmu="$sdl_libs $libs_softmmu" 16855368a422Saliguorifi 16865368a422Saliguori 16878f28f3fbSths########################################## 16888d5d2d4cSths# VNC TLS detection 1689821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_tls" != "no" ; then 1690ae6b5e5aSaliguori cat > $TMPC <<EOF 1691ae6b5e5aSaliguori#include <gnutls/gnutls.h> 1692ae6b5e5aSaliguoriint main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; } 1693ae6b5e5aSaliguoriEOF 1694a8bd70adSPaolo Bonzini vnc_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null` 1695a8bd70adSPaolo Bonzini vnc_tls_libs=`$pkg_config --libs gnutls 2> /dev/null` 169652166aa0SJuan Quintela if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then 16971be10ad2SJuan Quintela vnc_tls=yes 1698a5e32cc9SJuan Quintela libs_softmmu="$vnc_tls_libs $libs_softmmu" 1699ae6b5e5aSaliguori else 17001be10ad2SJuan Quintela if test "$vnc_tls" = "yes" ; then 17011be10ad2SJuan Quintela feature_not_found "vnc-tls" 17021be10ad2SJuan Quintela fi 17031be10ad2SJuan Quintela vnc_tls=no 17048d5d2d4cSths fi 17058d5d2d4cSthsfi 17068d5d2d4cSths 17078d5d2d4cSths########################################## 17082f9606b3Saliguori# VNC SASL detection 1709821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then 17102f9606b3Saliguori cat > $TMPC <<EOF 17112f9606b3Saliguori#include <sasl/sasl.h> 17122f9606b3Saliguori#include <stdio.h> 17132f9606b3Saliguoriint main(void) { sasl_server_init(NULL, "qemu"); return 0; } 17142f9606b3SaliguoriEOF 17152f9606b3Saliguori # Assuming Cyrus-SASL installed in /usr prefix 17162f9606b3Saliguori vnc_sasl_cflags="" 17172f9606b3Saliguori vnc_sasl_libs="-lsasl2" 171852166aa0SJuan Quintela if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then 1719ea784e3bSJuan Quintela vnc_sasl=yes 1720fa838301SJuan Quintela libs_softmmu="$vnc_sasl_libs $libs_softmmu" 17212f9606b3Saliguori else 1722ea784e3bSJuan Quintela if test "$vnc_sasl" = "yes" ; then 1723ea784e3bSJuan Quintela feature_not_found "vnc-sasl" 1724ea784e3bSJuan Quintela fi 1725ea784e3bSJuan Quintela vnc_sasl=no 17262f9606b3Saliguori fi 17272f9606b3Saliguorifi 17282f9606b3Saliguori 17292f9606b3Saliguori########################################## 17302f6f5c7aSCorentin Chary# VNC JPEG detection 1731821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then 17322f6f5c7aSCorentin Charycat > $TMPC <<EOF 17332f6f5c7aSCorentin Chary#include <stdio.h> 17342f6f5c7aSCorentin Chary#include <jpeglib.h> 17352f6f5c7aSCorentin Charyint main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; } 17362f6f5c7aSCorentin CharyEOF 17372f6f5c7aSCorentin Chary vnc_jpeg_cflags="" 17382f6f5c7aSCorentin Chary vnc_jpeg_libs="-ljpeg" 17392f6f5c7aSCorentin Chary if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then 17402f6f5c7aSCorentin Chary vnc_jpeg=yes 17412f6f5c7aSCorentin Chary libs_softmmu="$vnc_jpeg_libs $libs_softmmu" 17422f6f5c7aSCorentin Chary else 17432f6f5c7aSCorentin Chary if test "$vnc_jpeg" = "yes" ; then 17442f6f5c7aSCorentin Chary feature_not_found "vnc-jpeg" 17452f6f5c7aSCorentin Chary fi 17462f6f5c7aSCorentin Chary vnc_jpeg=no 17472f6f5c7aSCorentin Chary fi 17482f6f5c7aSCorentin Charyfi 17492f6f5c7aSCorentin Chary 17502f6f5c7aSCorentin Chary########################################## 1751efe556adSCorentin Chary# VNC PNG detection 1752821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_png" != "no" ; then 1753efe556adSCorentin Charycat > $TMPC <<EOF 1754efe556adSCorentin Chary//#include <stdio.h> 1755efe556adSCorentin Chary#include <png.h> 1756832ce9c2SScott Wood#include <stddef.h> 1757efe556adSCorentin Charyint main(void) { 1758efe556adSCorentin Chary png_structp png_ptr; 1759efe556adSCorentin Chary png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); 17607edc3fedSPeter Maydell return png_ptr != 0; 1761efe556adSCorentin Chary} 1762efe556adSCorentin CharyEOF 17639af8025eSBrad if $pkg_config libpng --modversion >/dev/null 2>&1; then 17649af8025eSBrad vnc_png_cflags=`$pkg_config libpng --cflags 2> /dev/null` 17659af8025eSBrad vnc_png_libs=`$pkg_config libpng --libs 2> /dev/null` 17669af8025eSBrad else 1767efe556adSCorentin Chary vnc_png_cflags="" 1768efe556adSCorentin Chary vnc_png_libs="-lpng" 17699af8025eSBrad fi 1770efe556adSCorentin Chary if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then 1771efe556adSCorentin Chary vnc_png=yes 1772efe556adSCorentin Chary libs_softmmu="$vnc_png_libs $libs_softmmu" 17739af8025eSBrad QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags" 1774efe556adSCorentin Chary else 1775efe556adSCorentin Chary if test "$vnc_png" = "yes" ; then 1776efe556adSCorentin Chary feature_not_found "vnc-png" 1777efe556adSCorentin Chary fi 1778efe556adSCorentin Chary vnc_png=no 1779efe556adSCorentin Chary fi 1780efe556adSCorentin Charyfi 1781efe556adSCorentin Chary 1782efe556adSCorentin Chary########################################## 178376655d6dSaliguori# fnmatch() probe, used for ACL routines 178476655d6dSaliguorifnmatch="no" 178576655d6dSaliguoricat > $TMPC << EOF 178676655d6dSaliguori#include <fnmatch.h> 178776655d6dSaliguoriint main(void) 178876655d6dSaliguori{ 178976655d6dSaliguori fnmatch("foo", "foo", 0); 179076655d6dSaliguori return 0; 179176655d6dSaliguori} 179276655d6dSaliguoriEOF 179352166aa0SJuan Quintelaif compile_prog "" "" ; then 179476655d6dSaliguori fnmatch="yes" 179576655d6dSaliguorifi 179676655d6dSaliguori 179776655d6dSaliguori########################################## 1798ee682d27SStefan Weil# uuid_generate() probe, used for vdi block driver 1799ee682d27SStefan Weilif test "$uuid" != "no" ; then 1800ee682d27SStefan Weil uuid_libs="-luuid" 1801ee682d27SStefan Weil cat > $TMPC << EOF 1802ee682d27SStefan Weil#include <uuid/uuid.h> 1803ee682d27SStefan Weilint main(void) 1804ee682d27SStefan Weil{ 1805ee682d27SStefan Weil uuid_t my_uuid; 1806ee682d27SStefan Weil uuid_generate(my_uuid); 1807ee682d27SStefan Weil return 0; 1808ee682d27SStefan Weil} 1809ee682d27SStefan WeilEOF 1810ee682d27SStefan Weil if compile_prog "" "$uuid_libs" ; then 1811ee682d27SStefan Weil uuid="yes" 1812ee682d27SStefan Weil libs_softmmu="$uuid_libs $libs_softmmu" 1813ee682d27SStefan Weil libs_tools="$uuid_libs $libs_tools" 1814ee682d27SStefan Weil else 1815ee682d27SStefan Weil if test "$uuid" = "yes" ; then 1816ee682d27SStefan Weil feature_not_found "uuid" 1817ee682d27SStefan Weil fi 1818ee682d27SStefan Weil uuid=no 1819ee682d27SStefan Weil fi 1820ee682d27SStefan Weilfi 1821ee682d27SStefan Weil 1822ee682d27SStefan Weil########################################## 1823dce512deSChristoph Hellwig# xfsctl() probe, used for raw-posix 1824dce512deSChristoph Hellwigif test "$xfs" != "no" ; then 1825dce512deSChristoph Hellwig cat > $TMPC << EOF 1826ffc41d10SStefan Weil#include <stddef.h> /* NULL */ 1827dce512deSChristoph Hellwig#include <xfs/xfs.h> 1828dce512deSChristoph Hellwigint main(void) 1829dce512deSChristoph Hellwig{ 1830dce512deSChristoph Hellwig xfsctl(NULL, 0, 0, NULL); 1831dce512deSChristoph Hellwig return 0; 1832dce512deSChristoph Hellwig} 1833dce512deSChristoph HellwigEOF 1834dce512deSChristoph Hellwig if compile_prog "" "" ; then 1835dce512deSChristoph Hellwig xfs="yes" 1836dce512deSChristoph Hellwig else 1837dce512deSChristoph Hellwig if test "$xfs" = "yes" ; then 1838dce512deSChristoph Hellwig feature_not_found "xfs" 1839dce512deSChristoph Hellwig fi 1840dce512deSChristoph Hellwig xfs=no 1841dce512deSChristoph Hellwig fi 1842dce512deSChristoph Hellwigfi 1843dce512deSChristoph Hellwig 1844dce512deSChristoph Hellwig########################################## 18458a16d273Sths# vde libraries probe 1846dfb278bdSJuan Quintelaif test "$vde" != "no" ; then 18474baae0acSJuan Quintela vde_libs="-lvdeplug" 18488a16d273Sths cat > $TMPC << EOF 18498a16d273Sths#include <libvdeplug.h> 18504a7f0e06Spbrookint main(void) 18514a7f0e06Spbrook{ 18524a7f0e06Spbrook struct vde_open_args a = {0, 0, 0}; 1853fea08e08SPeter Maydell char s[] = ""; 1854fea08e08SPeter Maydell vde_open(s, s, &a); 18554a7f0e06Spbrook return 0; 18564a7f0e06Spbrook} 18578a16d273SthsEOF 185852166aa0SJuan Quintela if compile_prog "" "$vde_libs" ; then 18594baae0acSJuan Quintela vde=yes 18608e02e54cSJuan Quintela libs_softmmu="$vde_libs $libs_softmmu" 18618e02e54cSJuan Quintela libs_tools="$vde_libs $libs_tools" 1862dfb278bdSJuan Quintela else 1863dfb278bdSJuan Quintela if test "$vde" = "yes" ; then 1864dfb278bdSJuan Quintela feature_not_found "vde" 1865dfb278bdSJuan Quintela fi 1866dfb278bdSJuan Quintela vde=no 18678a16d273Sths fi 18688a16d273Sthsfi 18698a16d273Sths 18708a16d273Sths########################################## 187147e98658SCorey Bryant# libcap-ng library probe 187247e98658SCorey Bryantif test "$cap_ng" != "no" ; then 187347e98658SCorey Bryant cap_libs="-lcap-ng" 187447e98658SCorey Bryant cat > $TMPC << EOF 187547e98658SCorey Bryant#include <cap-ng.h> 187647e98658SCorey Bryantint main(void) 187747e98658SCorey Bryant{ 187847e98658SCorey Bryant capng_capability_to_name(CAPNG_EFFECTIVE); 187947e98658SCorey Bryant return 0; 188047e98658SCorey Bryant} 188147e98658SCorey BryantEOF 188247e98658SCorey Bryant if compile_prog "" "$cap_libs" ; then 188347e98658SCorey Bryant cap_ng=yes 188447e98658SCorey Bryant libs_tools="$cap_libs $libs_tools" 188547e98658SCorey Bryant else 188647e98658SCorey Bryant if test "$cap_ng" = "yes" ; then 188747e98658SCorey Bryant feature_not_found "cap_ng" 188847e98658SCorey Bryant fi 188947e98658SCorey Bryant cap_ng=no 189047e98658SCorey Bryant fi 189147e98658SCorey Bryantfi 189247e98658SCorey Bryant 189347e98658SCorey Bryant########################################## 1894c2de5c91Smalc# Sound support libraries probe 18958f28f3fbSths 1896c2de5c91Smalcaudio_drv_probe() 1897c2de5c91Smalc{ 1898c2de5c91Smalc drv=$1 1899c2de5c91Smalc hdr=$2 1900c2de5c91Smalc lib=$3 1901c2de5c91Smalc exp=$4 1902c2de5c91Smalc cfl=$5 19038f28f3fbSths cat > $TMPC << EOF 1904c2de5c91Smalc#include <$hdr> 1905c2de5c91Smalcint main(void) { $exp } 19068f28f3fbSthsEOF 190752166aa0SJuan Quintela if compile_prog "$cfl" "$lib" ; then 19088f28f3fbSths : 19098f28f3fbSths else 19108f28f3fbSths echo 1911c2de5c91Smalc echo "Error: $drv check failed" 1912c2de5c91Smalc echo "Make sure to have the $drv libs and headers installed." 19138f28f3fbSths echo 19148f28f3fbSths exit 1 19158f28f3fbSths fi 1916c2de5c91Smalc} 1917c2de5c91Smalc 19182fa7d3bfSmalcaudio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` 1919c2de5c91Smalcfor drv in $audio_drv_list; do 1920c2de5c91Smalc case $drv in 1921c2de5c91Smalc alsa) 1922c2de5c91Smalc audio_drv_probe $drv alsa/asoundlib.h -lasound \ 1923e35bcb0cSStefan Weil "return snd_pcm_close((snd_pcm_t *)0);" 1924a4bf6780SJuan Quintela libs_softmmu="-lasound $libs_softmmu" 1925c2de5c91Smalc ;; 1926c2de5c91Smalc 1927c2de5c91Smalc fmod) 1928c2de5c91Smalc if test -z $fmod_lib || test -z $fmod_inc; then 1929c2de5c91Smalc echo 1930c2de5c91Smalc echo "Error: You must specify path to FMOD library and headers" 1931c2de5c91Smalc echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so" 1932c2de5c91Smalc echo 1933c2de5c91Smalc exit 1 19348f28f3fbSths fi 1935c2de5c91Smalc audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc" 1936a4bf6780SJuan Quintela libs_softmmu="$fmod_lib $libs_softmmu" 1937c2de5c91Smalc ;; 1938c2de5c91Smalc 1939c2de5c91Smalc esd) 1940c2de5c91Smalc audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);' 1941a4bf6780SJuan Quintela libs_softmmu="-lesd $libs_softmmu" 194267f86e8eSJuan Quintela audio_pt_int="yes" 1943c2de5c91Smalc ;; 1944b8e59f18Smalc 1945b8e59f18Smalc pa) 1946a394aed2SMarc-André Lureau audio_drv_probe $drv pulse/mainloop.h "-lpulse" \ 1947a394aed2SMarc-André Lureau "pa_mainloop *m = 0; pa_mainloop_free (m); return 0;" 1948a394aed2SMarc-André Lureau libs_softmmu="-lpulse $libs_softmmu" 194967f86e8eSJuan Quintela audio_pt_int="yes" 1950b8e59f18Smalc ;; 1951b8e59f18Smalc 1952997e690aSJuan Quintela coreaudio) 1953997e690aSJuan Quintela libs_softmmu="-framework CoreAudio $libs_softmmu" 1954997e690aSJuan Quintela ;; 1955997e690aSJuan Quintela 1956a4bf6780SJuan Quintela dsound) 1957a4bf6780SJuan Quintela libs_softmmu="-lole32 -ldxguid $libs_softmmu" 1958d5631638Smalc audio_win_int="yes" 1959a4bf6780SJuan Quintela ;; 1960a4bf6780SJuan Quintela 1961a4bf6780SJuan Quintela oss) 1962a4bf6780SJuan Quintela libs_softmmu="$oss_lib $libs_softmmu" 1963a4bf6780SJuan Quintela ;; 1964a4bf6780SJuan Quintela 1965a4bf6780SJuan Quintela sdl|wav) 19662f6a1ab0Sblueswir1 # XXX: Probes for CoreAudio, DirectSound, SDL(?) 19672f6a1ab0Sblueswir1 ;; 19682f6a1ab0Sblueswir1 1969d5631638Smalc winwave) 1970d5631638Smalc libs_softmmu="-lwinmm $libs_softmmu" 1971d5631638Smalc audio_win_int="yes" 1972d5631638Smalc ;; 1973d5631638Smalc 1974e4c63a6aSmalc *) 19751c9b2a52Smalc echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { 1976e4c63a6aSmalc echo 1977e4c63a6aSmalc echo "Error: Unknown driver '$drv' selected" 1978e4c63a6aSmalc echo "Possible drivers are: $audio_possible_drivers" 1979e4c63a6aSmalc echo 1980e4c63a6aSmalc exit 1 1981e4c63a6aSmalc } 1982e4c63a6aSmalc ;; 1983c2de5c91Smalc esac 1984c2de5c91Smalcdone 19858f28f3fbSths 19864d3b6f6eSbalrog########################################## 19872e4d9fb1Saurel32# BrlAPI probe 19882e4d9fb1Saurel32 19894ffcedb6SJuan Quintelaif test "$brlapi" != "no" ; then 1990eb82284fSJuan Quintela brlapi_libs="-lbrlapi" 19912e4d9fb1Saurel32 cat > $TMPC << EOF 19922e4d9fb1Saurel32#include <brlapi.h> 1993832ce9c2SScott Wood#include <stddef.h> 19942e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } 19952e4d9fb1Saurel32EOF 199652166aa0SJuan Quintela if compile_prog "" "$brlapi_libs" ; then 19972e4d9fb1Saurel32 brlapi=yes 1998264606b3SJuan Quintela libs_softmmu="$brlapi_libs $libs_softmmu" 19994ffcedb6SJuan Quintela else 20004ffcedb6SJuan Quintela if test "$brlapi" = "yes" ; then 20014ffcedb6SJuan Quintela feature_not_found "brlapi" 20024ffcedb6SJuan Quintela fi 20034ffcedb6SJuan Quintela brlapi=no 2004eb82284fSJuan Quintela fi 2005eb82284fSJuan Quintelafi 20062e4d9fb1Saurel32 20072e4d9fb1Saurel32########################################## 20084d3b6f6eSbalrog# curses probe 2009e095e2f3SStefan Weilif test "$mingw32" = "yes" ; then 2010e095e2f3SStefan Weil curses_list="-lpdcurses" 2011e095e2f3SStefan Weilelse 20124f78ef9aSJuan Quintela curses_list="-lncurses -lcurses" 2013e095e2f3SStefan Weilfi 20144d3b6f6eSbalrog 2015c584a6d0SJuan Quintelaif test "$curses" != "no" ; then 2016c584a6d0SJuan Quintela curses_found=no 20174d3b6f6eSbalrog cat > $TMPC << EOF 20184d3b6f6eSbalrog#include <curses.h> 2019ef9a2524SStefan Weilint main(void) { 2020ef9a2524SStefan Weil const char *s = curses_version(); 2021ef9a2524SStefan Weil resize_term(0, 0); 2022ef9a2524SStefan Weil return s != 0; 2023ef9a2524SStefan Weil} 20244d3b6f6eSbalrogEOF 20254f78ef9aSJuan Quintela for curses_lib in $curses_list; do 20264f78ef9aSJuan Quintela if compile_prog "" "$curses_lib" ; then 2027c584a6d0SJuan Quintela curses_found=yes 20284f78ef9aSJuan Quintela libs_softmmu="$curses_lib $libs_softmmu" 20294f78ef9aSJuan Quintela break 20304d3b6f6eSbalrog fi 20314f78ef9aSJuan Quintela done 2032c584a6d0SJuan Quintela if test "$curses_found" = "yes" ; then 2033c584a6d0SJuan Quintela curses=yes 2034c584a6d0SJuan Quintela else 2035c584a6d0SJuan Quintela if test "$curses" = "yes" ; then 2036c584a6d0SJuan Quintela feature_not_found "curses" 2037c584a6d0SJuan Quintela fi 2038c584a6d0SJuan Quintela curses=no 2039c584a6d0SJuan Quintela fi 20404f78ef9aSJuan Quintelafi 20414d3b6f6eSbalrog 2042414f0dabSblueswir1########################################## 2043769ce76dSAlexander Graf# curl probe 2044769ce76dSAlexander Graf 2045a8bd70adSPaolo Bonziniif $pkg_config libcurl --modversion >/dev/null 2>&1; then 2046a8bd70adSPaolo Bonzini curlconfig="$pkg_config libcurl" 20474e2b0658SPaolo Bonzinielse 20484e2b0658SPaolo Bonzini curlconfig=curl-config 20494e2b0658SPaolo Bonzinifi 20504e2b0658SPaolo Bonzini 2051788c8196SJuan Quintelaif test "$curl" != "no" ; then 2052769ce76dSAlexander Graf cat > $TMPC << EOF 2053769ce76dSAlexander Graf#include <curl/curl.h> 20540b862cedSPeter Maydellint main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; } 2055769ce76dSAlexander GrafEOF 20564e2b0658SPaolo Bonzini curl_cflags=`$curlconfig --cflags 2>/dev/null` 20574e2b0658SPaolo Bonzini curl_libs=`$curlconfig --libs 2>/dev/null` 2058b1d5a277SJuan Quintela if compile_prog "$curl_cflags" "$curl_libs" ; then 2059769ce76dSAlexander Graf curl=yes 2060f0302935SJuan Quintela libs_tools="$curl_libs $libs_tools" 2061f0302935SJuan Quintela libs_softmmu="$curl_libs $libs_softmmu" 2062788c8196SJuan Quintela else 2063788c8196SJuan Quintela if test "$curl" = "yes" ; then 2064788c8196SJuan Quintela feature_not_found "curl" 2065788c8196SJuan Quintela fi 2066788c8196SJuan Quintela curl=no 2067769ce76dSAlexander Graf fi 2068769ce76dSAlexander Graffi # test "$curl" 2069769ce76dSAlexander Graf 2070769ce76dSAlexander Graf########################################## 2071fb599c9aSbalrog# bluez support probe 2072a20a6f46SJuan Quintelaif test "$bluez" != "no" ; then 2073e820e3f4Sbalrog cat > $TMPC << EOF 2074e820e3f4Sbalrog#include <bluetooth/bluetooth.h> 2075e820e3f4Sbalrogint main(void) { return bt_error(0); } 2076e820e3f4SbalrogEOF 2077a8bd70adSPaolo Bonzini bluez_cflags=`$pkg_config --cflags bluez 2> /dev/null` 2078a8bd70adSPaolo Bonzini bluez_libs=`$pkg_config --libs bluez 2> /dev/null` 207952166aa0SJuan Quintela if compile_prog "$bluez_cflags" "$bluez_libs" ; then 2080a20a6f46SJuan Quintela bluez=yes 2081e482d56aSJuan Quintela libs_softmmu="$bluez_libs $libs_softmmu" 2082e820e3f4Sbalrog else 2083a20a6f46SJuan Quintela if test "$bluez" = "yes" ; then 2084a20a6f46SJuan Quintela feature_not_found "bluez" 2085a20a6f46SJuan Quintela fi 2086e820e3f4Sbalrog bluez="no" 2087e820e3f4Sbalrog fi 2088fb599c9aSbalrogfi 2089fb599c9aSbalrog 2090fb599c9aSbalrog########################################## 2091e18df141SAnthony Liguori# glib support probe 2092a52d28afSPaolo Bonzini 2093a52d28afSPaolo Bonziniif test "$mingw32" = yes; then 2094a52d28afSPaolo Bonzini # g_poll is required in order to integrate with the glib main loop. 2095a52d28afSPaolo Bonzini glib_req_ver=2.20 2096a52d28afSPaolo Bonzinielse 2097a52d28afSPaolo Bonzini glib_req_ver=2.12 2098a52d28afSPaolo Bonzinifi 2099a52d28afSPaolo Bonziniif $pkg_config --atleast-version=$glib_req_ver gthread-2.0 > /dev/null 2>&1 2100a52d28afSPaolo Bonzinithen 21014b76a481SStefan Hajnoczi glib_cflags=`$pkg_config --cflags gthread-2.0 2>/dev/null` 21024b76a481SStefan Hajnoczi glib_libs=`$pkg_config --libs gthread-2.0 2>/dev/null` 210314015304SAnthony Liguori LIBS="$glib_libs $LIBS" 2104957f1f99SMichael Roth libs_qga="$glib_libs $libs_qga" 2105e18df141SAnthony Liguorielse 2106a52d28afSPaolo Bonzini echo "glib-$glib_req_ver required to compile QEMU" 2107e18df141SAnthony Liguori exit 1 2108e18df141SAnthony Liguorifi 2109e18df141SAnthony Liguori 2110e18df141SAnthony Liguori########################################## 211117bff52bSM. Mohan Kumar# libcap probe 211217bff52bSM. Mohan Kumar 211317bff52bSM. Mohan Kumarif test "$cap" != "no" ; then 211417bff52bSM. Mohan Kumar cat > $TMPC <<EOF 211517bff52bSM. Mohan Kumar#include <stdio.h> 211617bff52bSM. Mohan Kumar#include <sys/capability.h> 2117cc939743SStefan Weilint main(void) { cap_t caps; caps = cap_init(); return caps != NULL; } 211817bff52bSM. Mohan KumarEOF 211917bff52bSM. Mohan Kumar if compile_prog "" "-lcap" ; then 212017bff52bSM. Mohan Kumar cap=yes 212117bff52bSM. Mohan Kumar else 212217bff52bSM. Mohan Kumar cap=no 212317bff52bSM. Mohan Kumar fi 212417bff52bSM. Mohan Kumarfi 212517bff52bSM. Mohan Kumar 212617bff52bSM. Mohan Kumar########################################## 2127e5d355d1Saliguori# pthread probe 21284b29ec41SBradPTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2" 21293c529d93Saliguori 2130e5d355d1Saliguoripthread=no 2131414f0dabSblueswir1cat > $TMPC << EOF 21323c529d93Saliguori#include <pthread.h> 21337a42bbe4SStefan Weilstatic void *f(void *p) { return NULL; } 21347a42bbe4SStefan Weilint main(void) { 21357a42bbe4SStefan Weil pthread_t thread; 21367a42bbe4SStefan Weil pthread_create(&thread, 0, f, 0); 21377a42bbe4SStefan Weil return 0; 21387a42bbe4SStefan Weil} 2139414f0dabSblueswir1EOF 2140bd00d539SAndreas Färberif compile_prog "" "" ; then 2141bd00d539SAndreas Färber pthread=yes 2142bd00d539SAndreas Färberelse 2143de65fe0fSSebastian Herbszt for pthread_lib in $PTHREADLIBS_LIST; do 214452166aa0SJuan Quintela if compile_prog "" "$pthread_lib" ; then 2145e5d355d1Saliguori pthread=yes 2146e3c56761SPeter Portante found=no 2147e3c56761SPeter Portante for lib_entry in $LIBS; do 2148e3c56761SPeter Portante if test "$lib_entry" = "$pthread_lib"; then 2149e3c56761SPeter Portante found=yes 2150e3c56761SPeter Portante break 2151e3c56761SPeter Portante fi 2152e3c56761SPeter Portante done 2153e3c56761SPeter Portante if test "$found" = "no"; then 21545572b539SJuan Quintela LIBS="$pthread_lib $LIBS" 2155e3c56761SPeter Portante fi 2156de65fe0fSSebastian Herbszt break 2157414f0dabSblueswir1 fi 2158de65fe0fSSebastian Herbszt done 2159bd00d539SAndreas Färberfi 2160414f0dabSblueswir1 21614617e593SAnthony Liguoriif test "$mingw32" != yes -a "$pthread" = no; then 21624dd75c70SChristoph Hellwig echo 21634dd75c70SChristoph Hellwig echo "Error: pthread check failed" 21644dd75c70SChristoph Hellwig echo "Make sure to have the pthread libs and headers installed." 21654dd75c70SChristoph Hellwig echo 21664dd75c70SChristoph Hellwig exit 1 2167e5d355d1Saliguorifi 2168e5d355d1Saliguori 2169bf9298b9Saliguori########################################## 2170f27aaf4bSChristian Brunner# rbd probe 2171f27aaf4bSChristian Brunnerif test "$rbd" != "no" ; then 2172f27aaf4bSChristian Brunner cat > $TMPC <<EOF 2173f27aaf4bSChristian Brunner#include <stdio.h> 2174ad32e9c0SJosh Durgin#include <rbd/librbd.h> 2175f27aaf4bSChristian Brunnerint main(void) { 2176ad32e9c0SJosh Durgin rados_t cluster; 2177ad32e9c0SJosh Durgin rados_create(&cluster, NULL); 2178f27aaf4bSChristian Brunner return 0; 2179f27aaf4bSChristian Brunner} 2180f27aaf4bSChristian BrunnerEOF 2181ad32e9c0SJosh Durgin rbd_libs="-lrbd -lrados" 2182f27aaf4bSChristian Brunner if compile_prog "" "$rbd_libs" ; then 2183f27aaf4bSChristian Brunner rbd=yes 2184f27aaf4bSChristian Brunner libs_tools="$rbd_libs $libs_tools" 2185f27aaf4bSChristian Brunner libs_softmmu="$rbd_libs $libs_softmmu" 2186f27aaf4bSChristian Brunner else 2187f27aaf4bSChristian Brunner if test "$rbd" = "yes" ; then 2188f27aaf4bSChristian Brunner feature_not_found "rados block device" 2189f27aaf4bSChristian Brunner fi 2190f27aaf4bSChristian Brunner rbd=no 2191f27aaf4bSChristian Brunner fi 2192f27aaf4bSChristian Brunnerfi 2193f27aaf4bSChristian Brunner 2194f27aaf4bSChristian Brunner########################################## 21955c6c3a6cSChristoph Hellwig# linux-aio probe 21965c6c3a6cSChristoph Hellwig 21975c6c3a6cSChristoph Hellwigif test "$linux_aio" != "no" ; then 21985c6c3a6cSChristoph Hellwig cat > $TMPC <<EOF 21995c6c3a6cSChristoph Hellwig#include <libaio.h> 22005c6c3a6cSChristoph Hellwig#include <sys/eventfd.h> 2201832ce9c2SScott Wood#include <stddef.h> 22025c6c3a6cSChristoph Hellwigint main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; } 22035c6c3a6cSChristoph HellwigEOF 22045c6c3a6cSChristoph Hellwig if compile_prog "" "-laio" ; then 22055c6c3a6cSChristoph Hellwig linux_aio=yes 2206048d179fSPaul Brook libs_softmmu="$libs_softmmu -laio" 2207048d179fSPaul Brook libs_tools="$libs_tools -laio" 22085c6c3a6cSChristoph Hellwig else 22095c6c3a6cSChristoph Hellwig if test "$linux_aio" = "yes" ; then 22105c6c3a6cSChristoph Hellwig feature_not_found "linux AIO" 22115c6c3a6cSChristoph Hellwig fi 22123cfcae3cSLuiz Capitulino linux_aio=no 22135c6c3a6cSChristoph Hellwig fi 22145c6c3a6cSChristoph Hellwigfi 22155c6c3a6cSChristoph Hellwig 22165c6c3a6cSChristoph Hellwig########################################## 2217758e8e38SVenkateswararao Jujjuri (JV)# attr probe 2218758e8e38SVenkateswararao Jujjuri (JV) 2219758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" != "no" ; then 2220758e8e38SVenkateswararao Jujjuri (JV) cat > $TMPC <<EOF 2221758e8e38SVenkateswararao Jujjuri (JV)#include <stdio.h> 2222758e8e38SVenkateswararao Jujjuri (JV)#include <sys/types.h> 2223f2338fb4SPavel Borzenkov#ifdef CONFIG_LIBATTR 2224f2338fb4SPavel Borzenkov#include <attr/xattr.h> 2225f2338fb4SPavel Borzenkov#else 22264f26f2b6SAvi Kivity#include <sys/xattr.h> 2227f2338fb4SPavel Borzenkov#endif 2228758e8e38SVenkateswararao Jujjuri (JV)int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; } 2229758e8e38SVenkateswararao Jujjuri (JV)EOF 22304f26f2b6SAvi Kivity if compile_prog "" "" ; then 22314f26f2b6SAvi Kivity attr=yes 22324f26f2b6SAvi Kivity # Older distros have <attr/xattr.h>, and need -lattr: 2233f2338fb4SPavel Borzenkov elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then 2234758e8e38SVenkateswararao Jujjuri (JV) attr=yes 2235758e8e38SVenkateswararao Jujjuri (JV) LIBS="-lattr $LIBS" 22364f26f2b6SAvi Kivity libattr=yes 2237758e8e38SVenkateswararao Jujjuri (JV) else 2238758e8e38SVenkateswararao Jujjuri (JV) if test "$attr" = "yes" ; then 2239758e8e38SVenkateswararao Jujjuri (JV) feature_not_found "ATTR" 2240758e8e38SVenkateswararao Jujjuri (JV) fi 2241758e8e38SVenkateswararao Jujjuri (JV) attr=no 2242758e8e38SVenkateswararao Jujjuri (JV) fi 2243758e8e38SVenkateswararao Jujjuri (JV)fi 2244758e8e38SVenkateswararao Jujjuri (JV) 2245758e8e38SVenkateswararao Jujjuri (JV)########################################## 2246bf9298b9Saliguori# iovec probe 2247bf9298b9Saliguoricat > $TMPC <<EOF 2248db34f0b3Sblueswir1#include <sys/types.h> 2249bf9298b9Saliguori#include <sys/uio.h> 2250db34f0b3Sblueswir1#include <unistd.h> 2251f91f9beeSStefan Weilint main(void) { return sizeof(struct iovec); } 2252bf9298b9SaliguoriEOF 2253bf9298b9Saliguoriiovec=no 225452166aa0SJuan Quintelaif compile_prog "" "" ; then 2255bf9298b9Saliguori iovec=yes 2256bf9298b9Saliguorifi 2257bf9298b9Saliguori 2258f652e6afSaurel32########################################## 2259ceb42de8Saliguori# preadv probe 2260ceb42de8Saliguoricat > $TMPC <<EOF 2261ceb42de8Saliguori#include <sys/types.h> 2262ceb42de8Saliguori#include <sys/uio.h> 2263ceb42de8Saliguori#include <unistd.h> 2264c075a723SBlue Swirlint main(void) { return preadv(0, 0, 0, 0); } 2265ceb42de8SaliguoriEOF 2266ceb42de8Saliguoripreadv=no 226752166aa0SJuan Quintelaif compile_prog "" "" ; then 2268ceb42de8Saliguori preadv=yes 2269ceb42de8Saliguorifi 2270ceb42de8Saliguori 2271ceb42de8Saliguori########################################## 2272f652e6afSaurel32# fdt probe 22732df87df7SJuan Quintelaif test "$fdt" != "no" ; then 2274b41af4baSJuan Quintela fdt_libs="-lfdt" 2275f652e6afSaurel32 cat > $TMPC << EOF 2276f652e6afSaurel32int main(void) { return 0; } 2277f652e6afSaurel32EOF 227852166aa0SJuan Quintela if compile_prog "" "$fdt_libs" ; then 2279f652e6afSaurel32 fdt=yes 22802df87df7SJuan Quintela else 22812df87df7SJuan Quintela if test "$fdt" = "yes" ; then 22822df87df7SJuan Quintela feature_not_found "fdt" 22832df87df7SJuan Quintela fi 2284de3a354aSMichael Walle fdt_libs= 22852df87df7SJuan Quintela fdt=no 2286f652e6afSaurel32 fi 2287f652e6afSaurel32fi 2288f652e6afSaurel32 228920ff075bSMichael Walle########################################## 229020ff075bSMichael Walle# opengl probe, used by milkymist-tmu2 229120ff075bSMichael Walleif test "$opengl" != "no" ; then 229220ff075bSMichael Walle opengl_libs="-lGL" 229320ff075bSMichael Walle cat > $TMPC << EOF 229420ff075bSMichael Walle#include <X11/Xlib.h> 229520ff075bSMichael Walle#include <GL/gl.h> 229620ff075bSMichael Walle#include <GL/glx.h> 229784972cbbSStefan Weilint main(void) { return GL_VERSION != 0; } 229820ff075bSMichael WalleEOF 229920ff075bSMichael Walle if compile_prog "" "-lGL" ; then 230020ff075bSMichael Walle opengl=yes 230120ff075bSMichael Walle else 230220ff075bSMichael Walle if test "$opengl" = "yes" ; then 230320ff075bSMichael Walle feature_not_found "opengl" 230420ff075bSMichael Walle fi 2305de3a354aSMichael Walle opengl_libs= 230620ff075bSMichael Walle opengl=no 230720ff075bSMichael Walle fi 230820ff075bSMichael Wallefi 230920ff075bSMichael Walle 23103b3f24adSaurel32# 23113b3f24adSaurel32# Check for xxxat() functions when we are building linux-user 23123b3f24adSaurel32# emulator. This is done because older glibc versions don't 23133b3f24adSaurel32# have syscall stubs for these implemented. 23143b3f24adSaurel32# 23153b3f24adSaurel32atfile=no 23163b3f24adSaurel32cat > $TMPC << EOF 23173b3f24adSaurel32#define _ATFILE_SOURCE 23183b3f24adSaurel32#include <sys/types.h> 23193b3f24adSaurel32#include <fcntl.h> 23203b3f24adSaurel32#include <unistd.h> 23213b3f24adSaurel32 23223b3f24adSaurel32int 23233b3f24adSaurel32main(void) 23243b3f24adSaurel32{ 23253b3f24adSaurel32 /* try to unlink nonexisting file */ 23263b3f24adSaurel32 return (unlinkat(AT_FDCWD, "nonexistent_file", 0)); 23273b3f24adSaurel32} 23283b3f24adSaurel32EOF 232952166aa0SJuan Quintelaif compile_prog "" "" ; then 23303b3f24adSaurel32 atfile=yes 23313b3f24adSaurel32fi 23323b3f24adSaurel32 233339386ac7Saurel32# Check for inotify functions when we are building linux-user 23343b3f24adSaurel32# emulator. This is done because older glibc versions don't 23353b3f24adSaurel32# have syscall stubs for these implemented. In that case we 23363b3f24adSaurel32# don't provide them even if kernel supports them. 23373b3f24adSaurel32# 23383b3f24adSaurel32inotify=no 23393b3f24adSaurel32cat > $TMPC << EOF 23403b3f24adSaurel32#include <sys/inotify.h> 23413b3f24adSaurel32 23423b3f24adSaurel32int 23433b3f24adSaurel32main(void) 23443b3f24adSaurel32{ 23453b3f24adSaurel32 /* try to start inotify */ 23468690e420Saurel32 return inotify_init(); 23473b3f24adSaurel32} 23483b3f24adSaurel32EOF 234952166aa0SJuan Quintelaif compile_prog "" "" ; then 23503b3f24adSaurel32 inotify=yes 23513b3f24adSaurel32fi 23523b3f24adSaurel32 2353c05c7a73SRiku Voipioinotify1=no 2354c05c7a73SRiku Voipiocat > $TMPC << EOF 2355c05c7a73SRiku Voipio#include <sys/inotify.h> 2356c05c7a73SRiku Voipio 2357c05c7a73SRiku Voipioint 2358c05c7a73SRiku Voipiomain(void) 2359c05c7a73SRiku Voipio{ 2360c05c7a73SRiku Voipio /* try to start inotify */ 2361c05c7a73SRiku Voipio return inotify_init1(0); 2362c05c7a73SRiku Voipio} 2363c05c7a73SRiku VoipioEOF 2364c05c7a73SRiku Voipioif compile_prog "" "" ; then 2365c05c7a73SRiku Voipio inotify1=yes 2366c05c7a73SRiku Voipiofi 2367c05c7a73SRiku Voipio 2368ebc996f3SRiku Voipio# check if utimensat and futimens are supported 2369ebc996f3SRiku Voipioutimens=no 2370ebc996f3SRiku Voipiocat > $TMPC << EOF 2371ebc996f3SRiku Voipio#define _ATFILE_SOURCE 2372ebc996f3SRiku Voipio#include <stddef.h> 2373ebc996f3SRiku Voipio#include <fcntl.h> 23743014ee00SPeter Maydell#include <sys/stat.h> 2375ebc996f3SRiku Voipio 2376ebc996f3SRiku Voipioint main(void) 2377ebc996f3SRiku Voipio{ 2378ebc996f3SRiku Voipio utimensat(AT_FDCWD, "foo", NULL, 0); 2379ebc996f3SRiku Voipio futimens(0, NULL); 2380ebc996f3SRiku Voipio return 0; 2381ebc996f3SRiku Voipio} 2382ebc996f3SRiku VoipioEOF 238352166aa0SJuan Quintelaif compile_prog "" "" ; then 2384ebc996f3SRiku Voipio utimens=yes 2385ebc996f3SRiku Voipiofi 2386ebc996f3SRiku Voipio 2387099d6b0fSRiku Voipio# check if pipe2 is there 2388099d6b0fSRiku Voipiopipe2=no 2389099d6b0fSRiku Voipiocat > $TMPC << EOF 2390099d6b0fSRiku Voipio#include <unistd.h> 2391099d6b0fSRiku Voipio#include <fcntl.h> 2392099d6b0fSRiku Voipio 2393099d6b0fSRiku Voipioint main(void) 2394099d6b0fSRiku Voipio{ 2395099d6b0fSRiku Voipio int pipefd[2]; 2396099d6b0fSRiku Voipio pipe2(pipefd, O_CLOEXEC); 2397099d6b0fSRiku Voipio return 0; 2398099d6b0fSRiku Voipio} 2399099d6b0fSRiku VoipioEOF 240052166aa0SJuan Quintelaif compile_prog "" "" ; then 2401099d6b0fSRiku Voipio pipe2=yes 2402099d6b0fSRiku Voipiofi 2403099d6b0fSRiku Voipio 240440ff6d7eSKevin Wolf# check if accept4 is there 240540ff6d7eSKevin Wolfaccept4=no 240640ff6d7eSKevin Wolfcat > $TMPC << EOF 240740ff6d7eSKevin Wolf#include <sys/socket.h> 240840ff6d7eSKevin Wolf#include <stddef.h> 240940ff6d7eSKevin Wolf 241040ff6d7eSKevin Wolfint main(void) 241140ff6d7eSKevin Wolf{ 241240ff6d7eSKevin Wolf accept4(0, NULL, NULL, SOCK_CLOEXEC); 241340ff6d7eSKevin Wolf return 0; 241440ff6d7eSKevin Wolf} 241540ff6d7eSKevin WolfEOF 241640ff6d7eSKevin Wolfif compile_prog "" "" ; then 241740ff6d7eSKevin Wolf accept4=yes 241840ff6d7eSKevin Wolffi 241940ff6d7eSKevin Wolf 24203ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time. 24213ce34dfbSvibisreenivasansplice=no 24223ce34dfbSvibisreenivasancat > $TMPC << EOF 24233ce34dfbSvibisreenivasan#include <unistd.h> 24243ce34dfbSvibisreenivasan#include <fcntl.h> 24253ce34dfbSvibisreenivasan#include <limits.h> 24263ce34dfbSvibisreenivasan 24273ce34dfbSvibisreenivasanint main(void) 24283ce34dfbSvibisreenivasan{ 242966ea0f22SStefan Weil int len, fd = 0; 24303ce34dfbSvibisreenivasan len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK); 24313ce34dfbSvibisreenivasan splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE); 24323ce34dfbSvibisreenivasan return 0; 24333ce34dfbSvibisreenivasan} 24343ce34dfbSvibisreenivasanEOF 243552166aa0SJuan Quintelaif compile_prog "" "" ; then 24363ce34dfbSvibisreenivasan splice=yes 24373ce34dfbSvibisreenivasanfi 24383ce34dfbSvibisreenivasan 2439dcc38d1cSMarcelo Tosatti########################################## 2440dcc38d1cSMarcelo Tosatti# signalfd probe 2441dcc38d1cSMarcelo Tosattisignalfd="no" 2442dcc38d1cSMarcelo Tosatticat > $TMPC << EOF 2443dcc38d1cSMarcelo Tosatti#include <unistd.h> 2444dcc38d1cSMarcelo Tosatti#include <sys/syscall.h> 2445dcc38d1cSMarcelo Tosatti#include <signal.h> 2446dcc38d1cSMarcelo Tosattiint main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); } 2447dcc38d1cSMarcelo TosattiEOF 2448dcc38d1cSMarcelo Tosatti 2449dcc38d1cSMarcelo Tosattiif compile_prog "" "" ; then 2450dcc38d1cSMarcelo Tosatti signalfd=yes 2451dcc38d1cSMarcelo Tosattifi 2452dcc38d1cSMarcelo Tosatti 2453c2882b96SRiku Voipio# check if eventfd is supported 2454c2882b96SRiku Voipioeventfd=no 2455c2882b96SRiku Voipiocat > $TMPC << EOF 2456c2882b96SRiku Voipio#include <sys/eventfd.h> 2457c2882b96SRiku Voipio 2458c2882b96SRiku Voipioint main(void) 2459c2882b96SRiku Voipio{ 246055cc7f3eSStefan Weil return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); 2461c2882b96SRiku Voipio} 2462c2882b96SRiku VoipioEOF 2463c2882b96SRiku Voipioif compile_prog "" "" ; then 2464c2882b96SRiku Voipio eventfd=yes 2465c2882b96SRiku Voipiofi 2466c2882b96SRiku Voipio 2467d0927938SUlrich Hecht# check for fallocate 2468d0927938SUlrich Hechtfallocate=no 2469d0927938SUlrich Hechtcat > $TMPC << EOF 2470d0927938SUlrich Hecht#include <fcntl.h> 2471d0927938SUlrich Hecht 2472d0927938SUlrich Hechtint main(void) 2473d0927938SUlrich Hecht{ 2474d0927938SUlrich Hecht fallocate(0, 0, 0, 0); 2475d0927938SUlrich Hecht return 0; 2476d0927938SUlrich Hecht} 2477d0927938SUlrich HechtEOF 24788fb03151SPeter Maydellif compile_prog "" "" ; then 2479d0927938SUlrich Hecht fallocate=yes 2480d0927938SUlrich Hechtfi 2481d0927938SUlrich Hecht 2482c727f47dSPeter Maydell# check for sync_file_range 2483c727f47dSPeter Maydellsync_file_range=no 2484c727f47dSPeter Maydellcat > $TMPC << EOF 2485c727f47dSPeter Maydell#include <fcntl.h> 2486c727f47dSPeter Maydell 2487c727f47dSPeter Maydellint main(void) 2488c727f47dSPeter Maydell{ 2489c727f47dSPeter Maydell sync_file_range(0, 0, 0, 0); 2490c727f47dSPeter Maydell return 0; 2491c727f47dSPeter Maydell} 2492c727f47dSPeter MaydellEOF 24938fb03151SPeter Maydellif compile_prog "" "" ; then 2494c727f47dSPeter Maydell sync_file_range=yes 2495c727f47dSPeter Maydellfi 2496c727f47dSPeter Maydell 2497dace20dcSPeter Maydell# check for linux/fiemap.h and FS_IOC_FIEMAP 2498dace20dcSPeter Maydellfiemap=no 2499dace20dcSPeter Maydellcat > $TMPC << EOF 2500dace20dcSPeter Maydell#include <sys/ioctl.h> 2501dace20dcSPeter Maydell#include <linux/fs.h> 2502dace20dcSPeter Maydell#include <linux/fiemap.h> 2503dace20dcSPeter Maydell 2504dace20dcSPeter Maydellint main(void) 2505dace20dcSPeter Maydell{ 2506dace20dcSPeter Maydell ioctl(0, FS_IOC_FIEMAP, 0); 2507dace20dcSPeter Maydell return 0; 2508dace20dcSPeter Maydell} 2509dace20dcSPeter MaydellEOF 25108fb03151SPeter Maydellif compile_prog "" "" ; then 2511dace20dcSPeter Maydell fiemap=yes 2512dace20dcSPeter Maydellfi 2513dace20dcSPeter Maydell 2514d0927938SUlrich Hecht# check for dup3 2515d0927938SUlrich Hechtdup3=no 2516d0927938SUlrich Hechtcat > $TMPC << EOF 2517d0927938SUlrich Hecht#include <unistd.h> 2518d0927938SUlrich Hecht 2519d0927938SUlrich Hechtint main(void) 2520d0927938SUlrich Hecht{ 2521d0927938SUlrich Hecht dup3(0, 0, 0); 2522d0927938SUlrich Hecht return 0; 2523d0927938SUlrich Hecht} 2524d0927938SUlrich HechtEOF 252578f5d726SJan Kiszkaif compile_prog "" "" ; then 2526d0927938SUlrich Hecht dup3=yes 2527d0927938SUlrich Hechtfi 2528d0927938SUlrich Hecht 25293b6edd16SPeter Maydell# check for epoll support 25303b6edd16SPeter Maydellepoll=no 25313b6edd16SPeter Maydellcat > $TMPC << EOF 25323b6edd16SPeter Maydell#include <sys/epoll.h> 25333b6edd16SPeter Maydell 25343b6edd16SPeter Maydellint main(void) 25353b6edd16SPeter Maydell{ 25363b6edd16SPeter Maydell epoll_create(0); 25373b6edd16SPeter Maydell return 0; 25383b6edd16SPeter Maydell} 25393b6edd16SPeter MaydellEOF 25408fb03151SPeter Maydellif compile_prog "" "" ; then 25413b6edd16SPeter Maydell epoll=yes 25423b6edd16SPeter Maydellfi 25433b6edd16SPeter Maydell 25443b6edd16SPeter Maydell# epoll_create1 and epoll_pwait are later additions 25453b6edd16SPeter Maydell# so we must check separately for their presence 25463b6edd16SPeter Maydellepoll_create1=no 25473b6edd16SPeter Maydellcat > $TMPC << EOF 25483b6edd16SPeter Maydell#include <sys/epoll.h> 25493b6edd16SPeter Maydell 25503b6edd16SPeter Maydellint main(void) 25513b6edd16SPeter Maydell{ 255219e83f6bSPeter Maydell /* Note that we use epoll_create1 as a value, not as 255319e83f6bSPeter Maydell * a function being called. This is necessary so that on 255419e83f6bSPeter Maydell * old SPARC glibc versions where the function was present in 255519e83f6bSPeter Maydell * the library but not declared in the header file we will 255619e83f6bSPeter Maydell * fail the configure check. (Otherwise we will get a compiler 255719e83f6bSPeter Maydell * warning but not an error, and will proceed to fail the 255819e83f6bSPeter Maydell * qemu compile where we compile with -Werror.) 255919e83f6bSPeter Maydell */ 2560c075a723SBlue Swirl return (int)(uintptr_t)&epoll_create1; 25613b6edd16SPeter Maydell} 25623b6edd16SPeter MaydellEOF 25638fb03151SPeter Maydellif compile_prog "" "" ; then 25643b6edd16SPeter Maydell epoll_create1=yes 25653b6edd16SPeter Maydellfi 25663b6edd16SPeter Maydell 25673b6edd16SPeter Maydellepoll_pwait=no 25683b6edd16SPeter Maydellcat > $TMPC << EOF 25693b6edd16SPeter Maydell#include <sys/epoll.h> 25703b6edd16SPeter Maydell 25713b6edd16SPeter Maydellint main(void) 25723b6edd16SPeter Maydell{ 25733b6edd16SPeter Maydell epoll_pwait(0, 0, 0, 0, 0); 25743b6edd16SPeter Maydell return 0; 25753b6edd16SPeter Maydell} 25763b6edd16SPeter MaydellEOF 25778fb03151SPeter Maydellif compile_prog "" "" ; then 25783b6edd16SPeter Maydell epoll_pwait=yes 25793b6edd16SPeter Maydellfi 25803b6edd16SPeter Maydell 2581cc8ae6deSpbrook# Check if tools are available to build documentation. 2582a25dba17SJuan Quintelaif test "$docs" != "no" ; then 258301668d98SStefan Weil if has makeinfo && has pod2man; then 2584a25dba17SJuan Quintela docs=yes 258583a3ab8bSJuan Quintela else 2586a25dba17SJuan Quintela if test "$docs" = "yes" ; then 2587a25dba17SJuan Quintela feature_not_found "docs" 258883a3ab8bSJuan Quintela fi 2589a25dba17SJuan Quintela docs=no 259083a3ab8bSJuan Quintela fi 2591cc8ae6deSpbrookfi 2592cc8ae6deSpbrook 2593f514f41cSStefan Weil# Search for bswap_32 function 25946ae9a1f4SJuan Quintelabyteswap_h=no 25956ae9a1f4SJuan Quintelacat > $TMPC << EOF 25966ae9a1f4SJuan Quintela#include <byteswap.h> 25976ae9a1f4SJuan Quintelaint main(void) { return bswap_32(0); } 25986ae9a1f4SJuan QuintelaEOF 259952166aa0SJuan Quintelaif compile_prog "" "" ; then 26006ae9a1f4SJuan Quintela byteswap_h=yes 26016ae9a1f4SJuan Quintelafi 26026ae9a1f4SJuan Quintela 2603f514f41cSStefan Weil# Search for bswap_32 function 26046ae9a1f4SJuan Quintelabswap_h=no 26056ae9a1f4SJuan Quintelacat > $TMPC << EOF 26066ae9a1f4SJuan Quintela#include <sys/endian.h> 26076ae9a1f4SJuan Quintela#include <sys/types.h> 26086ae9a1f4SJuan Quintela#include <machine/bswap.h> 26096ae9a1f4SJuan Quintelaint main(void) { return bswap32(0); } 26106ae9a1f4SJuan QuintelaEOF 261152166aa0SJuan Quintelaif compile_prog "" "" ; then 26126ae9a1f4SJuan Quintela bswap_h=yes 26136ae9a1f4SJuan Quintelafi 26146ae9a1f4SJuan Quintela 2615da93a1fdSaliguori########################################## 2616c589b249SRonnie Sahlberg# Do we have libiscsi 2617fa6acb0cSRonnie Sahlberg# We check for iscsi_unmap_sync() to make sure we have a 2618fa6acb0cSRonnie Sahlberg# recent enough version of libiscsi. 2619c589b249SRonnie Sahlbergif test "$libiscsi" != "no" ; then 2620c589b249SRonnie Sahlberg cat > $TMPC << EOF 2621fa6acb0cSRonnie Sahlberg#include <stdio.h> 2622c589b249SRonnie Sahlberg#include <iscsi/iscsi.h> 2623fa6acb0cSRonnie Sahlbergint main(void) { iscsi_unmap_sync(NULL,0,0,0,NULL,0); return 0; } 2624c589b249SRonnie SahlbergEOF 2625417c9d72SAlexander Graf if compile_prog "" "-liscsi" ; then 2626c589b249SRonnie Sahlberg libiscsi="yes" 2627c589b249SRonnie Sahlberg LIBS="$LIBS -liscsi" 2628c589b249SRonnie Sahlberg else 2629c589b249SRonnie Sahlberg if test "$libiscsi" = "yes" ; then 2630c589b249SRonnie Sahlberg feature_not_found "libiscsi" 2631c589b249SRonnie Sahlberg fi 2632c589b249SRonnie Sahlberg libiscsi="no" 2633c589b249SRonnie Sahlberg fi 2634c589b249SRonnie Sahlbergfi 2635c589b249SRonnie Sahlberg 2636c589b249SRonnie Sahlberg 2637c589b249SRonnie Sahlberg########################################## 26388bacde8dSNatanael Copa# Do we need libm 26398bacde8dSNatanael Copacat > $TMPC << EOF 26408bacde8dSNatanael Copa#include <math.h> 26418bacde8dSNatanael Copaint main(void) { return isnan(sin(0.0)); } 26428bacde8dSNatanael CopaEOF 26438bacde8dSNatanael Copaif compile_prog "" "" ; then 26448bacde8dSNatanael Copa : 26458bacde8dSNatanael Copaelif compile_prog "" "-lm" ; then 26468bacde8dSNatanael Copa LIBS="-lm $LIBS" 26478bacde8dSNatanael Copa libs_qga="-lm $libs_qga" 26488bacde8dSNatanael Copaelse 26498bacde8dSNatanael Copa echo 26508bacde8dSNatanael Copa echo "Error: libm check failed" 26518bacde8dSNatanael Copa echo 26528bacde8dSNatanael Copa exit 1 26538bacde8dSNatanael Copafi 26548bacde8dSNatanael Copa 26558bacde8dSNatanael Copa########################################## 2656da93a1fdSaliguori# Do we need librt 26578bacde8dSNatanael Copa# uClibc provides 2 versions of clock_gettime(), one with realtime 26588bacde8dSNatanael Copa# support and one without. This means that the clock_gettime() don't 26598bacde8dSNatanael Copa# need -lrt. We still need it for timer_create() so we check for this 26608bacde8dSNatanael Copa# function in addition. 2661da93a1fdSaliguoricat > $TMPC <<EOF 2662da93a1fdSaliguori#include <signal.h> 2663da93a1fdSaliguori#include <time.h> 26648bacde8dSNatanael Copaint main(void) { 26658bacde8dSNatanael Copa timer_create(CLOCK_REALTIME, NULL, NULL); 26668bacde8dSNatanael Copa return clock_gettime(CLOCK_REALTIME, NULL); 26678bacde8dSNatanael Copa} 2668da93a1fdSaliguoriEOF 2669da93a1fdSaliguori 267052166aa0SJuan Quintelaif compile_prog "" "" ; then 267107ffa4bdSJuan Quintela : 26728bacde8dSNatanael Copa# we need pthread for static linking. use previous pthread test result 26738bacde8dSNatanael Copaelif compile_prog "" "-lrt $pthread_lib" ; then 267407ffa4bdSJuan Quintela LIBS="-lrt $LIBS" 26758bacde8dSNatanael Copa libs_qga="-lrt $libs_qga" 2676da93a1fdSaliguorifi 2677da93a1fdSaliguori 267831ff504dSBlue Swirlif test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \ 2679179cf400SAndreas Färber "$aix" != "yes" -a "$haiku" != "yes" ; then 26806362a53fSJuan Quintela libs_softmmu="-lutil $libs_softmmu" 26816362a53fSJuan Quintelafi 26826362a53fSJuan Quintela 2683de5071c5SBlue Swirl########################################## 2684cd4ec0b4SGerd Hoffmann# spice probe 2685cd4ec0b4SGerd Hoffmannif test "$spice" != "no" ; then 2686cd4ec0b4SGerd Hoffmann cat > $TMPC << EOF 2687cd4ec0b4SGerd Hoffmann#include <spice.h> 2688cd4ec0b4SGerd Hoffmannint main(void) { spice_server_new(); return 0; } 2689cd4ec0b4SGerd HoffmannEOF 2690710fc4f5SJiri Denemark spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null) 2691710fc4f5SJiri Denemark spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null) 26924295e15aSAlon Levy if $pkg_config --atleast-version=0.8.2 spice-server >/dev/null 2>&1 && \ 26937e3efdacSAlon Levy $pkg_config --atleast-version=0.8.1 spice-protocol > /dev/null 2>&1 && \ 2694cd4ec0b4SGerd Hoffmann compile_prog "$spice_cflags" "$spice_libs" ; then 2695cd4ec0b4SGerd Hoffmann spice="yes" 2696cd4ec0b4SGerd Hoffmann libs_softmmu="$libs_softmmu $spice_libs" 2697cd4ec0b4SGerd Hoffmann QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags" 26982e0e3c39SAlon Levy spice_protocol_version=$($pkg_config --modversion spice-protocol) 26992e0e3c39SAlon Levy spice_server_version=$($pkg_config --modversion spice-server) 2700020af1c4SAlon Levy if $pkg_config --atleast-version=0.12.0 spice-protocol >/dev/null 2>&1; then 2701020af1c4SAlon Levy spice_qxl_io_monitors_config_async="yes" 2702020af1c4SAlon Levy fi 2703a639ab04SAlon Levy if $pkg_config --atleast-version=0.12.2 spice-protocol > /dev/null 2>&1; then 2704a639ab04SAlon Levy spice_qxl_client_monitors_config="yes" 2705a639ab04SAlon Levy fi 2706cd4ec0b4SGerd Hoffmann else 2707cd4ec0b4SGerd Hoffmann if test "$spice" = "yes" ; then 2708cd4ec0b4SGerd Hoffmann feature_not_found "spice" 2709cd4ec0b4SGerd Hoffmann fi 2710cd4ec0b4SGerd Hoffmann spice="no" 2711cd4ec0b4SGerd Hoffmann fi 2712cd4ec0b4SGerd Hoffmannfi 2713cd4ec0b4SGerd Hoffmann 2714111a38b0SRobert Relyea# check for libcacard for smartcard support 2715111a38b0SRobert Relyeaif test "$smartcard" != "no" ; then 2716111a38b0SRobert Relyea smartcard="yes" 2717111a38b0SRobert Relyea smartcard_cflags="" 2718111a38b0SRobert Relyea # TODO - what's the minimal nss version we support? 2719111a38b0SRobert Relyea if test "$smartcard_nss" != "no"; then 27205f01e06fSSergei Trofimovich cat > $TMPC << EOF 27215f01e06fSSergei Trofimovich#include <pk11pub.h> 27225f01e06fSSergei Trofimovichint main(void) { PK11_FreeSlot(0); return 0; } 27235f01e06fSSergei TrofimovichEOF 27240b22ef0fSPeter Maydell smartcard_includes="-I\$(SRC_PATH)/libcacard" 27258c741c22SAlon Levy libcacard_libs="$($pkg_config --libs nss 2>/dev/null) $glib_libs" 27268c741c22SAlon Levy libcacard_cflags="$($pkg_config --cflags nss 2>/dev/null) $glib_cflags" 27276ca026cbSPeter Maydell test_cflags="$libcacard_cflags" 27286ca026cbSPeter Maydell # The header files in nss < 3.13.3 have a bug which causes them to 27296ca026cbSPeter Maydell # emit a warning. If we're going to compile QEMU with -Werror, then 27306ca026cbSPeter Maydell # test that the headers don't have this bug. Otherwise we would pass 27316ca026cbSPeter Maydell # the configure test but fail to compile QEMU later. 27326ca026cbSPeter Maydell if test "$werror" = "yes"; then 27336ca026cbSPeter Maydell test_cflags="-Werror $test_cflags" 27346ca026cbSPeter Maydell fi 27355f01e06fSSergei Trofimovich if $pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 && \ 27366ca026cbSPeter Maydell compile_prog "$test_cflags" "$libcacard_libs"; then 27375f01e06fSSergei Trofimovich smartcard_nss="yes" 27380b22ef0fSPeter Maydell QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags" 27390b22ef0fSPeter Maydell QEMU_INCLUDES="$QEMU_INCLUDES $smartcard_includes" 2740ad4cf3f6SPaul Brook libs_softmmu="$libcacard_libs $libs_softmmu" 2741111a38b0SRobert Relyea else 2742111a38b0SRobert Relyea if test "$smartcard_nss" = "yes"; then 2743111a38b0SRobert Relyea feature_not_found "nss" 2744111a38b0SRobert Relyea fi 2745111a38b0SRobert Relyea smartcard_nss="no" 2746111a38b0SRobert Relyea fi 2747111a38b0SRobert Relyea fi 2748111a38b0SRobert Relyeafi 2749111a38b0SRobert Relyeaif test "$smartcard" = "no" ; then 2750111a38b0SRobert Relyea smartcard_nss="no" 2751111a38b0SRobert Relyeafi 2752111a38b0SRobert Relyea 275369354a83SHans de Goede# check for usbredirparser for usb network redirection support 275469354a83SHans de Goedeif test "$usb_redir" != "no" ; then 2755*8b626aa7SHans de Goede if $pkg_config --atleast-version=0.5 libusbredirparser-0.5 >/dev/null 2>&1 ; then 275669354a83SHans de Goede usb_redir="yes" 2757*8b626aa7SHans de Goede usb_redir_cflags=$($pkg_config --cflags libusbredirparser-0.5 2>/dev/null) 2758*8b626aa7SHans de Goede usb_redir_libs=$($pkg_config --libs libusbredirparser-0.5 2>/dev/null) 275969354a83SHans de Goede QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags" 276056ab2ad1SAurelien Jarno libs_softmmu="$libs_softmmu $usb_redir_libs" 276169354a83SHans de Goede else 276269354a83SHans de Goede if test "$usb_redir" = "yes"; then 276369354a83SHans de Goede feature_not_found "usb-redir" 276469354a83SHans de Goede fi 276569354a83SHans de Goede usb_redir="no" 276669354a83SHans de Goede fi 276769354a83SHans de Goedefi 276869354a83SHans de Goede 2769cd4ec0b4SGerd Hoffmann########################################## 2770cd4ec0b4SGerd Hoffmann 2771747bbdf7SBlue Swirl########################################## 27725f6b9e8fSBlue Swirl# check if we have fdatasync 27735f6b9e8fSBlue Swirl 27745f6b9e8fSBlue Swirlfdatasync=no 27755f6b9e8fSBlue Swirlcat > $TMPC << EOF 27765f6b9e8fSBlue Swirl#include <unistd.h> 2777d1722a27SAlexandre Raymondint main(void) { 2778d1722a27SAlexandre Raymond#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0 2779d1722a27SAlexandre Raymondreturn fdatasync(0); 2780d1722a27SAlexandre Raymond#else 2781e172fe11SStefan Weil#error Not supported 2782d1722a27SAlexandre Raymond#endif 2783d1722a27SAlexandre Raymond} 27845f6b9e8fSBlue SwirlEOF 27855f6b9e8fSBlue Swirlif compile_prog "" "" ; then 27865f6b9e8fSBlue Swirl fdatasync=yes 27875f6b9e8fSBlue Swirlfi 27885f6b9e8fSBlue Swirl 278994a420b1SStefan Hajnoczi########################################## 2790e78815a5SAndreas Färber# check if we have madvise 2791e78815a5SAndreas Färber 2792e78815a5SAndreas Färbermadvise=no 2793e78815a5SAndreas Färbercat > $TMPC << EOF 2794e78815a5SAndreas Färber#include <sys/types.h> 2795e78815a5SAndreas Färber#include <sys/mman.h> 2796832ce9c2SScott Wood#include <stddef.h> 2797e78815a5SAndreas Färberint main(void) { return madvise(NULL, 0, MADV_DONTNEED); } 2798e78815a5SAndreas FärberEOF 2799e78815a5SAndreas Färberif compile_prog "" "" ; then 2800e78815a5SAndreas Färber madvise=yes 2801e78815a5SAndreas Färberfi 2802e78815a5SAndreas Färber 2803e78815a5SAndreas Färber########################################## 2804e78815a5SAndreas Färber# check if we have posix_madvise 2805e78815a5SAndreas Färber 2806e78815a5SAndreas Färberposix_madvise=no 2807e78815a5SAndreas Färbercat > $TMPC << EOF 2808e78815a5SAndreas Färber#include <sys/mman.h> 2809832ce9c2SScott Wood#include <stddef.h> 2810e78815a5SAndreas Färberint main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); } 2811e78815a5SAndreas FärberEOF 2812e78815a5SAndreas Färberif compile_prog "" "" ; then 2813e78815a5SAndreas Färber posix_madvise=yes 2814e78815a5SAndreas Färberfi 2815e78815a5SAndreas Färber 2816e78815a5SAndreas Färber########################################## 281794a420b1SStefan Hajnoczi# check if trace backend exists 281894a420b1SStefan Hajnoczi 2819650ab98dSLluís Vilanova$python "$source_path/scripts/tracetool.py" "--backend=$trace_backend" --check-backend > /dev/null 2> /dev/null 282094a420b1SStefan Hajnocziif test "$?" -ne 0 ; then 282194a420b1SStefan Hajnoczi echo 282294a420b1SStefan Hajnoczi echo "Error: invalid trace backend" 282394a420b1SStefan Hajnoczi echo "Please choose a supported trace backend." 282494a420b1SStefan Hajnoczi echo 282594a420b1SStefan Hajnoczi exit 1 282694a420b1SStefan Hajnoczifi 282794a420b1SStefan Hajnoczi 28287e24e92aSStefan Hajnoczi########################################## 28297e24e92aSStefan Hajnoczi# For 'ust' backend, test if ust headers are present 28307e24e92aSStefan Hajnocziif test "$trace_backend" = "ust"; then 28317e24e92aSStefan Hajnoczi cat > $TMPC << EOF 28327e24e92aSStefan Hajnoczi#include <ust/tracepoint.h> 28337e24e92aSStefan Hajnoczi#include <ust/marker.h> 28347e24e92aSStefan Hajnocziint main(void) { return 0; } 28357e24e92aSStefan HajnocziEOF 28367e24e92aSStefan Hajnoczi if compile_prog "" "" ; then 283794b4fefaSLluís Vilanova LIBS="-lust -lurcu-bp $LIBS" 2838c9a2e37cSLluís Vilanova libs_qga="-lust -lurcu-bp $libs_qga" 28397e24e92aSStefan Hajnoczi else 28407e24e92aSStefan Hajnoczi echo 28417e24e92aSStefan Hajnoczi echo "Error: Trace backend 'ust' missing libust header files" 28427e24e92aSStefan Hajnoczi echo 28437e24e92aSStefan Hajnoczi exit 1 28447e24e92aSStefan Hajnoczi fi 28457e24e92aSStefan Hajnoczifi 2846b3d08c02SDaniel P. Berrange 2847b3d08c02SDaniel P. Berrange########################################## 2848b3d08c02SDaniel P. Berrange# For 'dtrace' backend, test if 'dtrace' command is present 2849b3d08c02SDaniel P. Berrangeif test "$trace_backend" = "dtrace"; then 2850b3d08c02SDaniel P. Berrange if ! has 'dtrace' ; then 2851b3d08c02SDaniel P. Berrange echo 2852b3d08c02SDaniel P. Berrange echo "Error: dtrace command is not found in PATH $PATH" 2853b3d08c02SDaniel P. Berrange echo 2854b3d08c02SDaniel P. Berrange exit 1 2855b3d08c02SDaniel P. Berrange fi 2856c276b17dSDaniel P. Berrange trace_backend_stap="no" 2857c276b17dSDaniel P. Berrange if has 'stap' ; then 2858c276b17dSDaniel P. Berrange trace_backend_stap="yes" 2859c276b17dSDaniel P. Berrange fi 2860b3d08c02SDaniel P. Berrangefi 2861b3d08c02SDaniel P. Berrange 28627e24e92aSStefan Hajnoczi########################################## 2863023367e6SWolfgang Mauerer# __sync_fetch_and_and requires at least -march=i486. Many toolchains 2864023367e6SWolfgang Mauerer# use i686 as default anyway, but for those that don't, an explicit 2865023367e6SWolfgang Mauerer# specification is necessary 28661ba16968SStefan Weilif test "$vhost_net" = "yes" && test "$cpu" = "i386"; then 2867023367e6SWolfgang Mauerer cat > $TMPC << EOF 28687ace252aSStefan Weilstatic int sfaa(int *ptr) 2869023367e6SWolfgang Mauerer{ 2870023367e6SWolfgang Mauerer return __sync_fetch_and_and(ptr, 0); 2871023367e6SWolfgang Mauerer} 2872023367e6SWolfgang Mauerer 2873023367e6SWolfgang Mauererint main(int argc, char **argv) 2874023367e6SWolfgang Mauerer{ 2875023367e6SWolfgang Mauerer int val = 42; 2876023367e6SWolfgang Mauerer sfaa(&val); 2877023367e6SWolfgang Mauerer return val; 2878023367e6SWolfgang Mauerer} 2879023367e6SWolfgang MauererEOF 2880023367e6SWolfgang Mauerer if ! compile_prog "" "" ; then 2881caa50971SPeter Maydell QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS" 2882023367e6SWolfgang Mauerer fi 2883023367e6SWolfgang Mauererfi 2884023367e6SWolfgang Mauerer 2885023367e6SWolfgang Mauerer########################################## 2886519175a2SAlex Barcelo# check and set a backend for coroutine 2887d0e2fce5SAneesh Kumar K.V 2888519175a2SAlex Barcelo# default is ucontext, but always fallback to gthread 2889519175a2SAlex Barcelo# windows autodetected by make 2890519175a2SAlex Barceloif test "$coroutine" = "" -o "$coroutine" = "ucontext"; then 2891d0e2fce5SAneesh Kumar K.V if test "$darwin" != "yes"; then 2892d0e2fce5SAneesh Kumar K.V cat > $TMPC << EOF 2893d0e2fce5SAneesh Kumar K.V#include <ucontext.h> 2894cdf84806SPeter Maydell#ifdef __stub_makecontext 2895cdf84806SPeter Maydell#error Ignoring glibc stub makecontext which will always fail 2896cdf84806SPeter Maydell#endif 289775cafad7SStefan Weilint main(void) { makecontext(0, 0, 0); return 0; } 2898d0e2fce5SAneesh Kumar K.VEOF 2899d0e2fce5SAneesh Kumar K.V if compile_prog "" "" ; then 2900519175a2SAlex Barcelo coroutine_backend=ucontext 2901519175a2SAlex Barcelo else 2902519175a2SAlex Barcelo coroutine_backend=gthread 2903d0e2fce5SAneesh Kumar K.V fi 2904519175a2SAlex Barcelo else 2905519175a2SAlex Barcelo echo "Silently falling back into gthread backend under darwin" 2906519175a2SAlex Barcelo fi 2907519175a2SAlex Barceloelif test "$coroutine" = "gthread" ; then 2908519175a2SAlex Barcelo coroutine_backend=gthread 2909519175a2SAlex Barceloelif test "$coroutine" = "windows" ; then 2910519175a2SAlex Barcelo coroutine_backend=windows 2911fe91bfa8SAlex Barceloelif test "$coroutine" = "sigaltstack" ; then 2912fe91bfa8SAlex Barcelo coroutine_backend=sigaltstack 2913519175a2SAlex Barceloelse 2914519175a2SAlex Barcelo echo 2915519175a2SAlex Barcelo echo "Error: unknown coroutine backend $coroutine" 2916519175a2SAlex Barcelo echo 2917519175a2SAlex Barcelo exit 1 2918d0e2fce5SAneesh Kumar K.Vfi 2919d0e2fce5SAneesh Kumar K.V 2920d0e2fce5SAneesh Kumar K.V########################################## 2921d2042378SAneesh Kumar K.V# check if we have open_by_handle_at 2922d2042378SAneesh Kumar K.V 29234e1797f9SStefan Weilopen_by_handle_at=no 2924d2042378SAneesh Kumar K.Vcat > $TMPC << EOF 2925d2042378SAneesh Kumar K.V#include <fcntl.h> 2926acc55ba8SStefan Weil#if !defined(AT_EMPTY_PATH) 2927acc55ba8SStefan Weil# error missing definition 2928acc55ba8SStefan Weil#else 292975cafad7SStefan Weilint main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); } 2930acc55ba8SStefan Weil#endif 2931d2042378SAneesh Kumar K.VEOF 2932d2042378SAneesh Kumar K.Vif compile_prog "" "" ; then 2933d2042378SAneesh Kumar K.V open_by_handle_at=yes 2934d2042378SAneesh Kumar K.Vfi 2935d2042378SAneesh Kumar K.V 2936e06a765eSHarsh Prateek Bora######################################## 2937e06a765eSHarsh Prateek Bora# check if we have linux/magic.h 2938e06a765eSHarsh Prateek Bora 2939e06a765eSHarsh Prateek Boralinux_magic_h=no 2940e06a765eSHarsh Prateek Boracat > $TMPC << EOF 2941e06a765eSHarsh Prateek Bora#include <linux/magic.h> 2942e06a765eSHarsh Prateek Boraint main(void) { 294375cafad7SStefan Weil return 0; 2944e06a765eSHarsh Prateek Bora} 2945e06a765eSHarsh Prateek BoraEOF 2946e06a765eSHarsh Prateek Boraif compile_prog "" "" ; then 2947e06a765eSHarsh Prateek Bora linux_magic_h=yes 2948e06a765eSHarsh Prateek Borafi 2949e06a765eSHarsh Prateek Bora 29508ab1bf12SLuiz Capitulino######################################## 295106d71fa1SPeter Maydell# check whether we can disable the -Wunused-but-set-variable 295206d71fa1SPeter Maydell# option with a pragma (this is needed to silence a warning in 295306d71fa1SPeter Maydell# some versions of the valgrind VALGRIND_STACK_DEREGISTER macro.) 295406d71fa1SPeter Maydell# This test has to be compiled with -Werror as otherwise an 295506d71fa1SPeter Maydell# unknown pragma is only a warning. 295606d71fa1SPeter Maydellpragma_disable_unused_but_set=no 295706d71fa1SPeter Maydellcat > $TMPC << EOF 295806d71fa1SPeter Maydell#pragma GCC diagnostic ignored "-Wunused-but-set-variable" 295906d71fa1SPeter Maydellint main(void) { 296006d71fa1SPeter Maydell return 0; 296106d71fa1SPeter Maydell} 296206d71fa1SPeter MaydellEOF 296306d71fa1SPeter Maydellif compile_prog "-Werror" "" ; then 296406d71fa1SPeter Maydell pragma_disable_unused_but_set=yes 296506d71fa1SPeter Maydellfi 296606d71fa1SPeter Maydell 296706d71fa1SPeter Maydell######################################## 296862fe8331SChristian Borntraeger# check if we have valgrind/valgrind.h and valgrind/memcheck.h 29693f4349dcSKevin Wolf 29703f4349dcSKevin Wolfvalgrind_h=no 29713f4349dcSKevin Wolfcat > $TMPC << EOF 29723f4349dcSKevin Wolf#include <valgrind/valgrind.h> 297362fe8331SChristian Borntraeger#include <valgrind/memcheck.h> 29743f4349dcSKevin Wolfint main(void) { 29753f4349dcSKevin Wolf return 0; 29763f4349dcSKevin Wolf} 29773f4349dcSKevin WolfEOF 29783f4349dcSKevin Wolfif compile_prog "" "" ; then 29793f4349dcSKevin Wolf valgrind_h=yes 29803f4349dcSKevin Wolffi 29813f4349dcSKevin Wolf 29823f4349dcSKevin Wolf######################################## 29838ab1bf12SLuiz Capitulino# check if environ is declared 29848ab1bf12SLuiz Capitulino 29858ab1bf12SLuiz Capitulinohas_environ=no 29868ab1bf12SLuiz Capitulinocat > $TMPC << EOF 29878ab1bf12SLuiz Capitulino#include <unistd.h> 29888ab1bf12SLuiz Capitulinoint main(void) { 2989c075a723SBlue Swirl environ = 0; 29908ab1bf12SLuiz Capitulino return 0; 29918ab1bf12SLuiz Capitulino} 29928ab1bf12SLuiz CapitulinoEOF 29938ab1bf12SLuiz Capitulinoif compile_prog "" "" ; then 29948ab1bf12SLuiz Capitulino has_environ=yes 29958ab1bf12SLuiz Capitulinofi 29968ab1bf12SLuiz Capitulino 2997d2042378SAneesh Kumar K.V########################################## 2998e86ecd4bSJuan Quintela# End of CC checks 2999e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs 3000e86ecd4bSJuan Quintela 3001e86ecd4bSJuan Quintelaif test "$debug" = "no" ; then 30028be74dc0SAvi Kivity CFLAGS="-O2 -D_FORTIFY_SOURCE=2 $CFLAGS" 3003e86ecd4bSJuan Quintelafi 3004a316e378SJuan Quintela 300520ff6c80SAnthony Liguori# Disable zero malloc errors for official releases unless explicitly told to 300620ff6c80SAnthony Liguori# enable/disable 300720ff6c80SAnthony Liguoriif test -z "$zero_malloc" ; then 300820ff6c80SAnthony Liguori if test "$z_version" = "50" ; then 300920ff6c80SAnthony Liguori zero_malloc="no" 301020ff6c80SAnthony Liguori else 301120ff6c80SAnthony Liguori zero_malloc="yes" 301220ff6c80SAnthony Liguori fi 301320ff6c80SAnthony Liguorifi 301420ff6c80SAnthony Liguori 30156ca026cbSPeter Maydell# Now we've finished running tests it's OK to add -Werror to the compiler flags 30166ca026cbSPeter Maydellif test "$werror" = "yes"; then 30176ca026cbSPeter Maydell QEMU_CFLAGS="-Werror $QEMU_CFLAGS" 30186ca026cbSPeter Maydellfi 30196ca026cbSPeter Maydell 3020e86ecd4bSJuan Quintelaif test "$solaris" = "no" ; then 3021e86ecd4bSJuan Quintela if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then 30221156c669SJuan Quintela LDFLAGS="-Wl,--warn-common $LDFLAGS" 3023e86ecd4bSJuan Quintela fi 3024e86ecd4bSJuan Quintelafi 3025e86ecd4bSJuan Quintela 302694dd53c5SGerd Hoffmann# test if pod2man has --utf8 option 302794dd53c5SGerd Hoffmannif pod2man --help | grep -q utf8; then 302894dd53c5SGerd Hoffmann POD2MAN="pod2man --utf8" 302994dd53c5SGerd Hoffmannelse 303094dd53c5SGerd Hoffmann POD2MAN="pod2man" 303194dd53c5SGerd Hoffmannfi 303294dd53c5SGerd Hoffmann 3033952afb71SBlue Swirl# Use ASLR, no-SEH and DEP if available 3034952afb71SBlue Swirlif test "$mingw32" = "yes" ; then 3035952afb71SBlue Swirl for flag in --dynamicbase --no-seh --nxcompat; do 3036952afb71SBlue Swirl if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then 3037952afb71SBlue Swirl LDFLAGS="-Wl,$flag $LDFLAGS" 3038952afb71SBlue Swirl fi 3039952afb71SBlue Swirl done 3040952afb71SBlue Swirlfi 3041952afb71SBlue Swirl 304210ea68b3SEduardo Habkostqemu_confdir=$sysconfdir$confsuffix 3043528ae5b8SEduardo Habkostqemu_datadir=$datadir$confsuffix 30445a67135aSbellard 30454b1c11fdSDaniel P. Berrangetools="" 30464b1c11fdSDaniel P. Berrangeif test "$want_tools" = "yes" ; then 3047ca35f780SPaolo Bonzini tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools" 30484b1c11fdSDaniel P. Berrange if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then 30494b1c11fdSDaniel P. Berrange tools="qemu-nbd\$(EXESUF) $tools" 30504b1c11fdSDaniel P. Berrange fi 30514b1c11fdSDaniel P. Berrangefi 30524b1c11fdSDaniel P. Berrangeif test "$softmmu" = yes ; then 3053983eef5aSMeador Inge if test "$virtfs" != no ; then 3054be5ea8edSAnthony Liguori if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then 3055983eef5aSMeador Inge virtfs=yes 305617bff52bSM. Mohan Kumar tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)" 3057983eef5aSMeador Inge else 3058983eef5aSMeador Inge if test "$virtfs" = yes; then 3059263ddcc8SHarsh Prateek Bora echo "VirtFS is supported only on Linux and requires libcap-devel and libattr-devel" 3060263ddcc8SHarsh Prateek Bora exit 1 3061983eef5aSMeador Inge fi 306217500370SAndreas Färber virtfs=no 3063983eef5aSMeador Inge fi 306417bff52bSM. Mohan Kumar fi 3065ca35f780SPaolo Bonzini if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then 3066d138cee9SMichael Roth if [ "$guest_agent" = "yes" ]; then 306748ff7a62SMichael Roth tools="qemu-ga\$(EXESUF) $tools" 3068d138cee9SMichael Roth fi 3069ca35f780SPaolo Bonzini fi 307000c705fbSPaolo Bonzini if test "$smartcard_nss" = "yes" ; then 307100c705fbSPaolo Bonzini tools="vscclient\$(EXESUF) $tools" 307200c705fbSPaolo Bonzini fi 30734b1c11fdSDaniel P. Berrangefi 3074ca35f780SPaolo Bonzini 3075ca35f780SPaolo Bonzini# Mac OS X ships with a broken assembler 3076ca35f780SPaolo Bonziniroms= 3077ca35f780SPaolo Bonziniif test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ 3078ca35f780SPaolo Bonzini "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \ 3079ca35f780SPaolo Bonzini "$softmmu" = yes ; then 3080ca35f780SPaolo Bonzini roms="optionrom" 3081ca35f780SPaolo Bonzinifi 3082d0384d1dSAndreas Färberif test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then 308339ac8455SDavid Gibson roms="$roms spapr-rtas" 308439ac8455SDavid Gibsonfi 3085ca35f780SPaolo Bonzini 30867d13299dSbellardecho "Install prefix $prefix" 3087c00b2808SEduardo Habkostecho "BIOS directory `eval echo $qemu_datadir`" 3088f2b9e1e3SPaolo Bonziniecho "binary directory `eval echo $bindir`" 30893aa5d2beSAlon Levyecho "library directory `eval echo $libdir`" 30908bf188aaSMichael Tokarevecho "libexec directory `eval echo $libexecdir`" 30910f94d6daSAlon Levyecho "include directory `eval echo $includedir`" 30921c0fd160SAurelien Jarnoecho "config directory `eval echo $sysconfdir`" 309311d9f695Sbellardif test "$mingw32" = "no" ; then 3094f2b9e1e3SPaolo Bonziniecho "Manual directory `eval echo $mandir`" 309543ce4dfeSbellardecho "ELF interp prefix $interp_prefix" 309611d9f695Sbellardfi 30975a67135aSbellardecho "Source path $source_path" 30987d13299dSbellardecho "C compiler $cc" 309983469015Sbellardecho "Host C compiler $host_cc" 31003c4a4d0dSPeter Maydellecho "Objective-C compiler $objcc" 31010c439cbfSJuan Quintelaecho "CFLAGS $CFLAGS" 3102a558ee17SJuan Quintelaecho "QEMU_CFLAGS $QEMU_CFLAGS" 31030c439cbfSJuan Quintelaecho "LDFLAGS $LDFLAGS" 31047d13299dSbellardecho "make $make" 31056a882643Spbrookecho "install $install" 3106c886edfbSBlue Swirlecho "python $python" 3107e2d8830eSBradif test "$slirp" = "yes" ; then 3108e2d8830eSBrad echo "smbd $smbd" 3109e2d8830eSBradfi 3110a98fd896Sbellardecho "host CPU $cpu" 3111de83cd02Sbellardecho "host big endian $bigendian" 311297a847bcSbellardecho "target list $target_list" 3113ade25b0dSaurel32echo "tcg debug enabled $debug_tcg" 31147d13299dSbellardecho "gprof enabled $gprof" 311503b4fe7dSaliguoriecho "sparse enabled $sparse" 31161625af87Saliguoriecho "strip binaries $strip_opt" 311705c2a3e7Sbellardecho "profiler $profiler" 311843ce4dfeSbellardecho "static build $static" 311985aa5189Sbellardecho "-Werror enabled $werror" 31205b0753e0Sbellardif test "$darwin" = "yes" ; then 31215b0753e0Sbellard echo "Cocoa support $cocoa" 31225b0753e0Sbellardfi 312397a847bcSbellardecho "SDL support $sdl" 31244d3b6f6eSbalrogecho "curses support $curses" 3125769ce76dSAlexander Grafecho "curl support $curl" 312667b915a5Sbellardecho "mingw32 support $mingw32" 31270c58ac1cSmalcecho "Audio drivers $audio_drv_list" 31280c58ac1cSmalcecho "Extra audio cards $audio_card_list" 3129eb852011SMarkus Armbrusterecho "Block whitelist $block_drv_whitelist" 31308ff9cbf7Smalcecho "Mixer emulation $mixemu" 3131983eef5aSMeador Ingeecho "VirtFS support $virtfs" 3132821601eaSJes Sorensenecho "VNC support $vnc" 3133821601eaSJes Sorensenif test "$vnc" = "yes" ; then 31348d5d2d4cSths echo "VNC TLS support $vnc_tls" 31352f9606b3Saliguori echo "VNC SASL support $vnc_sasl" 31362f6f5c7aSCorentin Chary echo "VNC JPEG support $vnc_jpeg" 3137efe556adSCorentin Chary echo "VNC PNG support $vnc_png" 3138821601eaSJes Sorensenfi 31393142255cSblueswir1if test -n "$sparc_cpu"; then 31403142255cSblueswir1 echo "Target Sparc Arch $sparc_cpu" 31413142255cSblueswir1fi 3142e37630caSaliguoriecho "xen support $xen" 31432e4d9fb1Saurel32echo "brlapi support $brlapi" 3144a20a6f46SJuan Quintelaecho "bluez support $bluez" 3145a25dba17SJuan Quintelaecho "Documentation $docs" 3146c5937220Spbrook[ ! -z "$uname_release" ] && \ 3147c5937220Spbrookecho "uname -r $uname_release" 3148bd0c5661Spbrookecho "NPTL support $nptl" 3149379f6698SPaul Brookecho "GUEST_BASE $guest_base" 315040d6444eSAvi Kivityecho "PIE $pie" 31518a16d273Sthsecho "vde support $vde" 31525c6c3a6cSChristoph Hellwigecho "Linux AIO support $linux_aio" 3153758e8e38SVenkateswararao Jujjuri (JV)echo "ATTR/XATTR support $attr" 315477755340Sthsecho "Install blobs $blobs" 3155b31a0277SJuan Quintelaecho "KVM support $kvm" 31569195b2c2SStefan Weilecho "TCG interpreter $tcg_interpreter" 3157f652e6afSaurel32echo "fdt support $fdt" 3158ceb42de8Saliguoriecho "preadv support $preadv" 31595f6b9e8fSBlue Swirlecho "fdatasync $fdatasync" 3160e78815a5SAndreas Färberecho "madvise $madvise" 3161e78815a5SAndreas Färberecho "posix_madvise $posix_madvise" 3162ee682d27SStefan Weilecho "uuid support $uuid" 316347e98658SCorey Bryantecho "libcap-ng support $cap_ng" 3164d5970055SMichael S. Tsirkinecho "vhost-net support $vhost_net" 316594a420b1SStefan Hajnocziecho "Trace backend $trace_backend" 31669410b56cSPrerna Saxenaecho "Trace output file $trace_file-<pid>" 31672e0e3c39SAlon Levyecho "spice support $spice ($spice_protocol_version/$spice_server_version)" 3168f27aaf4bSChristian Brunnerecho "rbd support $rbd" 3169dce512deSChristoph Hellwigecho "xfsctl support $xfs" 3170111a38b0SRobert Relyeaecho "nss used $smartcard_nss" 317169354a83SHans de Goedeecho "usb net redir $usb_redir" 317220ff075bSMichael Walleecho "OpenGL support $opengl" 3173c589b249SRonnie Sahlbergecho "libiscsi support $libiscsi" 3174d138cee9SMichael Rothecho "build guest agent $guest_agent" 3175f794573eSEduardo Otuboecho "seccomp support $seccomp" 3176519175a2SAlex Barceloecho "coroutine backend $coroutine_backend" 317767b915a5Sbellard 31781ba16968SStefan Weilif test "$sdl_too_old" = "yes"; then 317924b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support" 3180e8cd23deSbellardfi 318197a847bcSbellard 318298ec69acSJuan Quintelaconfig_host_mak="config-host.mak" 31834bf6b55bSJuan Quintelaconfig_host_ld="config-host.ld" 318497a847bcSbellard 318598ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak 318698ec69acSJuan Quintelaprintf "# Configured with:" >> $config_host_mak 318798ec69acSJuan Quintelaprintf " '%s'" "$0" "$@" >> $config_host_mak 318898ec69acSJuan Quintelaecho >> $config_host_mak 318998ec69acSJuan Quintela 3190e6c3b0f7SPaolo Bonziniecho all: >> $config_host_mak 319199d7cc75SPaolo Bonziniecho "prefix=$prefix" >> $config_host_mak 319299d7cc75SPaolo Bonziniecho "bindir=$bindir" >> $config_host_mak 31933aa5d2beSAlon Levyecho "libdir=$libdir" >> $config_host_mak 31948bf188aaSMichael Tokarevecho "libexecdir=$libexecdir" >> $config_host_mak 31950f94d6daSAlon Levyecho "includedir=$includedir" >> $config_host_mak 319699d7cc75SPaolo Bonziniecho "mandir=$mandir" >> $config_host_mak 319799d7cc75SPaolo Bonziniecho "sysconfdir=$sysconfdir" >> $config_host_mak 319822d07038SEduardo Habkostecho "qemu_confdir=$qemu_confdir" >> $config_host_mak 31999afa52ceSEduardo Habkostecho "qemu_datadir=$qemu_datadir" >> $config_host_mak 32009afa52ceSEduardo Habkostecho "qemu_docdir=$qemu_docdir" >> $config_host_mak 32018bf188aaSMichael Tokarevecho "CONFIG_QEMU_HELPERDIR=\"$libexecdir\"" >> $config_host_mak 3202804edf29SJuan Quintela 320398ec69acSJuan Quintelaecho "ARCH=$ARCH" >> $config_host_mak 3204f8393946Saurel32if test "$debug_tcg" = "yes" ; then 32052358a494SJuan Quintela echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak 3206f8393946Saurel32fi 3207f3d08ee6SPaul Brookif test "$debug" = "yes" ; then 32082358a494SJuan Quintela echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak 3209f3d08ee6SPaul Brookfi 32101625af87Saliguoriif test "$strip_opt" = "yes" ; then 321152ba784dSHollis Blanchard echo "STRIP=${strip}" >> $config_host_mak 32121625af87Saliguorifi 32137d13299dSbellardif test "$bigendian" = "yes" ; then 3214e2542fe2SJuan Quintela echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak 321597a847bcSbellardfi 321667b915a5Sbellardif test "$mingw32" = "yes" ; then 321798ec69acSJuan Quintela echo "CONFIG_WIN32=y" >> $config_host_mak 32189fe6de94SBlue Swirl rc_version=`cat $source_path/VERSION` 32199fe6de94SBlue Swirl version_major=${rc_version%%.*} 32209fe6de94SBlue Swirl rc_version=${rc_version#*.} 32219fe6de94SBlue Swirl version_minor=${rc_version%%.*} 32229fe6de94SBlue Swirl rc_version=${rc_version#*.} 32239fe6de94SBlue Swirl version_subminor=${rc_version%%.*} 32249fe6de94SBlue Swirl version_micro=0 32259fe6de94SBlue Swirl echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak 32269fe6de94SBlue Swirl echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak 3227210fa556Spbrookelse 322835f4df27SJuan Quintela echo "CONFIG_POSIX=y" >> $config_host_mak 3229210fa556Spbrookfi 3230128ab2ffSblueswir1 3231dffcb71cSMark McLoughlinif test "$linux" = "yes" ; then 3232dffcb71cSMark McLoughlin echo "CONFIG_LINUX=y" >> $config_host_mak 3233dffcb71cSMark McLoughlinfi 3234dffcb71cSMark McLoughlin 323583fb7adfSbellardif test "$darwin" = "yes" ; then 323698ec69acSJuan Quintela echo "CONFIG_DARWIN=y" >> $config_host_mak 323783fb7adfSbellardfi 3238b29fe3edSmalc 3239b29fe3edSmalcif test "$aix" = "yes" ; then 324098ec69acSJuan Quintela echo "CONFIG_AIX=y" >> $config_host_mak 3241b29fe3edSmalcfi 3242b29fe3edSmalc 3243ec530c81Sbellardif test "$solaris" = "yes" ; then 324498ec69acSJuan Quintela echo "CONFIG_SOLARIS=y" >> $config_host_mak 32452358a494SJuan Quintela echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak 32460475a5caSths if test "$needs_libsunmath" = "yes" ; then 324775b5a697SJuan Quintela echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak 32480475a5caSths fi 3249ec530c81Sbellardfi 3250179cf400SAndreas Färberif test "$haiku" = "yes" ; then 3251179cf400SAndreas Färber echo "CONFIG_HAIKU=y" >> $config_host_mak 3252179cf400SAndreas Färberfi 325397a847bcSbellardif test "$static" = "yes" ; then 325498ec69acSJuan Quintela echo "CONFIG_STATIC=y" >> $config_host_mak 325597a847bcSbellardfi 32561ba16968SStefan Weilif test "$profiler" = "yes" ; then 32572358a494SJuan Quintela echo "CONFIG_PROFILER=y" >> $config_host_mak 325805c2a3e7Sbellardfi 3259c20709aaSbellardif test "$slirp" = "yes" ; then 326098ec69acSJuan Quintela echo "CONFIG_SLIRP=y" >> $config_host_mak 3261e2d8830eSBrad echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak 3262f9728943SPaolo Bonzini QEMU_INCLUDES="-I\$(SRC_PATH)/slirp $QEMU_INCLUDES" 3263c20709aaSbellardfi 32648a16d273Sthsif test "$vde" = "yes" ; then 326598ec69acSJuan Quintela echo "CONFIG_VDE=y" >> $config_host_mak 32668a16d273Sthsfi 326747e98658SCorey Bryantif test "$cap_ng" = "yes" ; then 326847e98658SCorey Bryant echo "CONFIG_LIBCAP=y" >> $config_host_mak 326947e98658SCorey Bryantfi 32700c58ac1cSmalcfor card in $audio_card_list; do 3271bb55b712SStefan Weil def=CONFIG_`echo $card | LC_ALL=C tr '[a-z]' '[A-Z]'` 327298ec69acSJuan Quintela echo "$def=y" >> $config_host_mak 32730c58ac1cSmalcdone 32742358a494SJuan Quintelaecho "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak 32750c58ac1cSmalcfor drv in $audio_drv_list; do 3276bb55b712SStefan Weil def=CONFIG_`echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]'` 327798ec69acSJuan Quintela echo "$def=y" >> $config_host_mak 3278923e4521Smalc if test "$drv" = "fmod"; then 32797aac6cb1SJuan Quintela echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak 3280fb065187Sbellard fi 32810c58ac1cSmalcdone 328267f86e8eSJuan Quintelaif test "$audio_pt_int" = "yes" ; then 328367f86e8eSJuan Quintela echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak 328467f86e8eSJuan Quintelafi 3285d5631638Smalcif test "$audio_win_int" = "yes" ; then 3286d5631638Smalc echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak 3287d5631638Smalcfi 3288eb852011SMarkus Armbrusterecho "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak 32898ff9cbf7Smalcif test "$mixemu" = "yes" ; then 329098ec69acSJuan Quintela echo "CONFIG_MIXEMU=y" >> $config_host_mak 32918ff9cbf7Smalcfi 3292821601eaSJes Sorensenif test "$vnc" = "yes" ; then 3293821601eaSJes Sorensen echo "CONFIG_VNC=y" >> $config_host_mak 3294821601eaSJes Sorensenfi 32958d5d2d4cSthsif test "$vnc_tls" = "yes" ; then 329698ec69acSJuan Quintela echo "CONFIG_VNC_TLS=y" >> $config_host_mak 3297525061bfSJuan Quintela echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak 32988d5d2d4cSthsfi 32992f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then 330098ec69acSJuan Quintela echo "CONFIG_VNC_SASL=y" >> $config_host_mak 330160ddf533SJuan Quintela echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak 33022f9606b3Saliguorifi 3303821601eaSJes Sorensenif test "$vnc_jpeg" = "yes" ; then 33042f6f5c7aSCorentin Chary echo "CONFIG_VNC_JPEG=y" >> $config_host_mak 33052f6f5c7aSCorentin Chary echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak 33062f6f5c7aSCorentin Charyfi 3307821601eaSJes Sorensenif test "$vnc_png" = "yes" ; then 3308efe556adSCorentin Chary echo "CONFIG_VNC_PNG=y" >> $config_host_mak 3309efe556adSCorentin Chary echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak 3310efe556adSCorentin Charyfi 331176655d6dSaliguoriif test "$fnmatch" = "yes" ; then 33122358a494SJuan Quintela echo "CONFIG_FNMATCH=y" >> $config_host_mak 331376655d6dSaliguorifi 3314ee682d27SStefan Weilif test "$uuid" = "yes" ; then 3315ee682d27SStefan Weil echo "CONFIG_UUID=y" >> $config_host_mak 3316ee682d27SStefan Weilfi 3317dce512deSChristoph Hellwigif test "$xfs" = "yes" ; then 3318dce512deSChristoph Hellwig echo "CONFIG_XFS=y" >> $config_host_mak 3319dce512deSChristoph Hellwigfi 3320b1a550a0Spbrookqemu_version=`head $source_path/VERSION` 332198ec69acSJuan Quintelaecho "VERSION=$qemu_version" >>$config_host_mak 33222358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak 332398ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak 332498ec69acSJuan Quintelaecho "TARGET_DIRS=$target_list" >> $config_host_mak 3325a25dba17SJuan Quintelaif [ "$docs" = "yes" ] ; then 332698ec69acSJuan Quintela echo "BUILD_DOCS=yes" >> $config_host_mak 3327cc8ae6deSpbrookfi 33281ac88f28SJuan Quintelaif test "$sdl" = "yes" ; then 332998ec69acSJuan Quintela echo "CONFIG_SDL=y" >> $config_host_mak 33308ad3a7ddSJuan Quintela echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak 333149ecc3faSbellardfi 333249ecc3faSbellardif test "$cocoa" = "yes" ; then 333398ec69acSJuan Quintela echo "CONFIG_COCOA=y" >> $config_host_mak 333449ecc3faSbellardfi 33354d3b6f6eSbalrogif test "$curses" = "yes" ; then 333698ec69acSJuan Quintela echo "CONFIG_CURSES=y" >> $config_host_mak 3337ab4e5602SJan Kiszkafi 33383b3f24adSaurel32if test "$atfile" = "yes" ; then 33392358a494SJuan Quintela echo "CONFIG_ATFILE=y" >> $config_host_mak 33403b3f24adSaurel32fi 3341ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then 33422358a494SJuan Quintela echo "CONFIG_UTIMENSAT=y" >> $config_host_mak 3343ebc996f3SRiku Voipiofi 3344099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then 33452358a494SJuan Quintela echo "CONFIG_PIPE2=y" >> $config_host_mak 3346099d6b0fSRiku Voipiofi 334740ff6d7eSKevin Wolfif test "$accept4" = "yes" ; then 334840ff6d7eSKevin Wolf echo "CONFIG_ACCEPT4=y" >> $config_host_mak 334940ff6d7eSKevin Wolffi 33503ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then 33512358a494SJuan Quintela echo "CONFIG_SPLICE=y" >> $config_host_mak 33523ce34dfbSvibisreenivasanfi 3353c2882b96SRiku Voipioif test "$eventfd" = "yes" ; then 3354c2882b96SRiku Voipio echo "CONFIG_EVENTFD=y" >> $config_host_mak 3355c2882b96SRiku Voipiofi 3356d0927938SUlrich Hechtif test "$fallocate" = "yes" ; then 3357d0927938SUlrich Hecht echo "CONFIG_FALLOCATE=y" >> $config_host_mak 3358d0927938SUlrich Hechtfi 3359c727f47dSPeter Maydellif test "$sync_file_range" = "yes" ; then 3360c727f47dSPeter Maydell echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak 3361c727f47dSPeter Maydellfi 3362dace20dcSPeter Maydellif test "$fiemap" = "yes" ; then 3363dace20dcSPeter Maydell echo "CONFIG_FIEMAP=y" >> $config_host_mak 3364dace20dcSPeter Maydellfi 3365d0927938SUlrich Hechtif test "$dup3" = "yes" ; then 3366d0927938SUlrich Hecht echo "CONFIG_DUP3=y" >> $config_host_mak 3367d0927938SUlrich Hechtfi 33683b6edd16SPeter Maydellif test "$epoll" = "yes" ; then 33693b6edd16SPeter Maydell echo "CONFIG_EPOLL=y" >> $config_host_mak 33703b6edd16SPeter Maydellfi 33713b6edd16SPeter Maydellif test "$epoll_create1" = "yes" ; then 33723b6edd16SPeter Maydell echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak 33733b6edd16SPeter Maydellfi 33743b6edd16SPeter Maydellif test "$epoll_pwait" = "yes" ; then 33753b6edd16SPeter Maydell echo "CONFIG_EPOLL_PWAIT=y" >> $config_host_mak 33763b6edd16SPeter Maydellfi 33773b3f24adSaurel32if test "$inotify" = "yes" ; then 33782358a494SJuan Quintela echo "CONFIG_INOTIFY=y" >> $config_host_mak 33793b3f24adSaurel32fi 3380c05c7a73SRiku Voipioif test "$inotify1" = "yes" ; then 3381c05c7a73SRiku Voipio echo "CONFIG_INOTIFY1=y" >> $config_host_mak 3382c05c7a73SRiku Voipiofi 33836ae9a1f4SJuan Quintelaif test "$byteswap_h" = "yes" ; then 33846ae9a1f4SJuan Quintela echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak 33856ae9a1f4SJuan Quintelafi 33866ae9a1f4SJuan Quintelaif test "$bswap_h" = "yes" ; then 33876ae9a1f4SJuan Quintela echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak 33886ae9a1f4SJuan Quintelafi 3389769ce76dSAlexander Grafif test "$curl" = "yes" ; then 339098ec69acSJuan Quintela echo "CONFIG_CURL=y" >> $config_host_mak 3391b1d5a277SJuan Quintela echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak 3392769ce76dSAlexander Graffi 33932e4d9fb1Saurel32if test "$brlapi" = "yes" ; then 339498ec69acSJuan Quintela echo "CONFIG_BRLAPI=y" >> $config_host_mak 33952e4d9fb1Saurel32fi 3396fb599c9aSbalrogif test "$bluez" = "yes" ; then 339798ec69acSJuan Quintela echo "CONFIG_BLUEZ=y" >> $config_host_mak 3398ef7635ecSJuan Quintela echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak 3399fb599c9aSbalrogfi 3400e18df141SAnthony Liguoriecho "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak 3401e37630caSaliguoriif test "$xen" = "yes" ; then 34026dbd588aSJan Kiszka echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak 3403d5b93ddfSAnthony PERARD echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak 3404e37630caSaliguorifi 34055c6c3a6cSChristoph Hellwigif test "$linux_aio" = "yes" ; then 34065c6c3a6cSChristoph Hellwig echo "CONFIG_LINUX_AIO=y" >> $config_host_mak 34075c6c3a6cSChristoph Hellwigfi 3408758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" = "yes" ; then 3409758e8e38SVenkateswararao Jujjuri (JV) echo "CONFIG_ATTR=y" >> $config_host_mak 3410758e8e38SVenkateswararao Jujjuri (JV)fi 34114f26f2b6SAvi Kivityif test "$libattr" = "yes" ; then 34124f26f2b6SAvi Kivity echo "CONFIG_LIBATTR=y" >> $config_host_mak 34134f26f2b6SAvi Kivityfi 3414983eef5aSMeador Ingeif test "$virtfs" = "yes" ; then 3415758e8e38SVenkateswararao Jujjuri (JV) echo "CONFIG_VIRTFS=y" >> $config_host_mak 3416758e8e38SVenkateswararao Jujjuri (JV)fi 341777755340Sthsif test "$blobs" = "yes" ; then 341898ec69acSJuan Quintela echo "INSTALL_BLOBS=yes" >> $config_host_mak 341977755340Sthsfi 3420bf9298b9Saliguoriif test "$iovec" = "yes" ; then 34212358a494SJuan Quintela echo "CONFIG_IOVEC=y" >> $config_host_mak 3422bf9298b9Saliguorifi 3423ceb42de8Saliguoriif test "$preadv" = "yes" ; then 34242358a494SJuan Quintela echo "CONFIG_PREADV=y" >> $config_host_mak 3425ceb42de8Saliguorifi 3426f652e6afSaurel32if test "$fdt" = "yes" ; then 34273f0855b1SJuan Quintela echo "CONFIG_FDT=y" >> $config_host_mak 3428f652e6afSaurel32fi 3429dcc38d1cSMarcelo Tosattiif test "$signalfd" = "yes" ; then 3430dcc38d1cSMarcelo Tosatti echo "CONFIG_SIGNALFD=y" >> $config_host_mak 3431dcc38d1cSMarcelo Tosattifi 34329195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then 34339195b2c2SStefan Weil echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak 34349195b2c2SStefan Weilfi 34355f6b9e8fSBlue Swirlif test "$fdatasync" = "yes" ; then 34365f6b9e8fSBlue Swirl echo "CONFIG_FDATASYNC=y" >> $config_host_mak 34375f6b9e8fSBlue Swirlfi 3438e78815a5SAndreas Färberif test "$madvise" = "yes" ; then 3439e78815a5SAndreas Färber echo "CONFIG_MADVISE=y" >> $config_host_mak 3440e78815a5SAndreas Färberfi 3441e78815a5SAndreas Färberif test "$posix_madvise" = "yes" ; then 3442e78815a5SAndreas Färber echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak 3443e78815a5SAndreas Färberfi 344497a847bcSbellard 3445cd4ec0b4SGerd Hoffmannif test "$spice" = "yes" ; then 3446cd4ec0b4SGerd Hoffmann echo "CONFIG_SPICE=y" >> $config_host_mak 3447cd4ec0b4SGerd Hoffmannfi 3448cd4ec0b4SGerd Hoffmann 3449020af1c4SAlon Levyif test "$spice_qxl_io_monitors_config_async" = "yes" ; then 3450020af1c4SAlon Levy echo "CONFIG_QXL_IO_MONITORS_CONFIG_ASYNC=y" >> $config_host_mak 3451020af1c4SAlon Levyfi 3452020af1c4SAlon Levy 3453a639ab04SAlon Levyif test "$spice_qxl_client_monitors_config" = "yes" ; then 3454a639ab04SAlon Levy echo "CONFIG_QXL_CLIENT_MONITORS_CONFIG=y" >> $config_host_mak 3455a639ab04SAlon Levyfi 3456a639ab04SAlon Levy 345736707144SAlon Levyif test "$smartcard" = "yes" ; then 345836707144SAlon Levy echo "CONFIG_SMARTCARD=y" >> $config_host_mak 345936707144SAlon Levyfi 346036707144SAlon Levy 3461111a38b0SRobert Relyeaif test "$smartcard_nss" = "yes" ; then 3462111a38b0SRobert Relyea echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak 3463ad4cf3f6SPaul Brook echo "libcacard_libs=$libcacard_libs" >> $config_host_mak 3464ad4cf3f6SPaul Brook echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak 3465111a38b0SRobert Relyeafi 3466111a38b0SRobert Relyea 346769354a83SHans de Goedeif test "$usb_redir" = "yes" ; then 346869354a83SHans de Goede echo "CONFIG_USB_REDIR=y" >> $config_host_mak 346969354a83SHans de Goedefi 347069354a83SHans de Goede 347120ff075bSMichael Walleif test "$opengl" = "yes" ; then 347220ff075bSMichael Walle echo "CONFIG_OPENGL=y" >> $config_host_mak 347320ff075bSMichael Wallefi 347420ff075bSMichael Walle 3475c589b249SRonnie Sahlbergif test "$libiscsi" = "yes" ; then 3476c589b249SRonnie Sahlberg echo "CONFIG_LIBISCSI=y" >> $config_host_mak 3477c589b249SRonnie Sahlbergfi 3478c589b249SRonnie Sahlberg 3479f794573eSEduardo Otuboif test "$seccomp" = "yes"; then 3480f794573eSEduardo Otubo echo "CONFIG_SECCOMP=y" >> $config_host_mak 3481f794573eSEduardo Otubofi 3482f794573eSEduardo Otubo 348383fb7adfSbellard# XXX: suppress that 34847d3505c5Sbellardif [ "$bsd" = "yes" ] ; then 34852358a494SJuan Quintela echo "CONFIG_BSD=y" >> $config_host_mak 34867d3505c5Sbellardfi 34877d3505c5Sbellard 34882358a494SJuan Quintelaecho "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak 3489c5937220Spbrook 349020ff6c80SAnthony Liguoriif test "$zero_malloc" = "yes" ; then 349120ff6c80SAnthony Liguori echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak 349220ff6c80SAnthony Liguorifi 3493f27aaf4bSChristian Brunnerif test "$rbd" = "yes" ; then 3494f27aaf4bSChristian Brunner echo "CONFIG_RBD=y" >> $config_host_mak 3495f27aaf4bSChristian Brunnerfi 349620ff6c80SAnthony Liguori 3497519175a2SAlex Barceloif test "$coroutine_backend" = "ucontext" ; then 3498d0e2fce5SAneesh Kumar K.V echo "CONFIG_UCONTEXT_COROUTINE=y" >> $config_host_mak 3499fe91bfa8SAlex Barceloelif test "$coroutine_backend" = "sigaltstack" ; then 3500fe91bfa8SAlex Barcelo echo "CONFIG_SIGALTSTACK_COROUTINE=y" >> $config_host_mak 3501d0e2fce5SAneesh Kumar K.Vfi 3502d0e2fce5SAneesh Kumar K.V 3503d2042378SAneesh Kumar K.Vif test "$open_by_handle_at" = "yes" ; then 3504d2042378SAneesh Kumar K.V echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak 3505d2042378SAneesh Kumar K.Vfi 3506d2042378SAneesh Kumar K.V 3507e06a765eSHarsh Prateek Boraif test "$linux_magic_h" = "yes" ; then 3508e06a765eSHarsh Prateek Bora echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak 3509e06a765eSHarsh Prateek Borafi 3510e06a765eSHarsh Prateek Bora 351106d71fa1SPeter Maydellif test "$pragma_disable_unused_but_set" = "yes" ; then 351206d71fa1SPeter Maydell echo "CONFIG_PRAGMA_DISABLE_UNUSED_BUT_SET=y" >> $config_host_mak 351306d71fa1SPeter Maydellfi 351406d71fa1SPeter Maydell 35153f4349dcSKevin Wolfif test "$valgrind_h" = "yes" ; then 35163f4349dcSKevin Wolf echo "CONFIG_VALGRIND_H=y" >> $config_host_mak 35173f4349dcSKevin Wolffi 35183f4349dcSKevin Wolf 35198ab1bf12SLuiz Capitulinoif test "$has_environ" = "yes" ; then 35208ab1bf12SLuiz Capitulino echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak 35218ab1bf12SLuiz Capitulinofi 35228ab1bf12SLuiz Capitulino 352368063649Sblueswir1# USB host support 352468063649Sblueswir1case "$usb" in 352568063649Sblueswir1linux) 352698ec69acSJuan Quintela echo "HOST_USB=linux" >> $config_host_mak 352768063649Sblueswir1;; 352868063649Sblueswir1bsd) 352998ec69acSJuan Quintela echo "HOST_USB=bsd" >> $config_host_mak 353068063649Sblueswir1;; 353168063649Sblueswir1*) 353298ec69acSJuan Quintela echo "HOST_USB=stub" >> $config_host_mak 353368063649Sblueswir1;; 353468063649Sblueswir1esac 353568063649Sblueswir1 3536e4858974SLluís# use default implementation for tracing backend-specific routines 3537e4858974SLluístrace_default=yes 353894a420b1SStefan Hajnocziecho "TRACE_BACKEND=$trace_backend" >> $config_host_mak 35396d8a764eSLluísif test "$trace_backend" = "nop"; then 35406d8a764eSLluís echo "CONFIG_TRACE_NOP=y" >> $config_host_mak 354122890ab5SPrerna Saxenafi 35429410b56cSPrerna Saxenaif test "$trace_backend" = "simple"; then 35436d8a764eSLluís echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak 3544e4858974SLluís trace_default=no 35456d8a764eSLluís # Set the appropriate trace file. 3546953ffe0fSAndreas Färber trace_file="\"$trace_file-\" FMT_pid" 35479410b56cSPrerna Saxenafi 35486d8a764eSLluísif test "$trace_backend" = "stderr"; then 35496d8a764eSLluís echo "CONFIG_TRACE_STDERR=y" >> $config_host_mak 35509a82b6a5SLluís trace_default=no 35516d8a764eSLluísfi 35526d8a764eSLluísif test "$trace_backend" = "ust"; then 35536d8a764eSLluís echo "CONFIG_TRACE_UST=y" >> $config_host_mak 35546d8a764eSLluísfi 35556d8a764eSLluísif test "$trace_backend" = "dtrace"; then 35566d8a764eSLluís echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak 35576d8a764eSLluís if test "$trace_backend_stap" = "yes" ; then 35586d8a764eSLluís echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak 35596d8a764eSLluís fi 3560c276b17dSDaniel P. Berrangefi 35619410b56cSPrerna Saxenaecho "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak 3562e4858974SLluísif test "$trace_default" = "yes"; then 3563e4858974SLluís echo "CONFIG_TRACE_DEFAULT=y" >> $config_host_mak 3564e4858974SLluísfi 35659410b56cSPrerna Saxena 356698ec69acSJuan Quintelaecho "TOOLS=$tools" >> $config_host_mak 356798ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak 3568804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak 3569804edf29SJuan Quintelaecho "INSTALL=$install" >> $config_host_mak 35701901cb14SBradecho "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak 35711901cb14SBradecho "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak 35721901cb14SBradecho "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak 3573c886edfbSBlue Swirlecho "PYTHON=$python" >> $config_host_mak 3574804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak 35752b2e59e6SPaolo Bonziniecho "CC_I386=$cc_i386" >> $config_host_mak 3576804edf29SJuan Quintelaecho "HOST_CC=$host_cc" >> $config_host_mak 35773c4a4d0dSPeter Maydellecho "OBJCC=$objcc" >> $config_host_mak 3578804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak 3579804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak 3580804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak 35819fe6de94SBlue Swirlecho "WINDRES=$windres" >> $config_host_mak 358244dc0ca3SAlon Levyecho "LIBTOOL=$libtool" >> $config_host_mak 3583e2a2ed06SJuan Quintelaecho "CFLAGS=$CFLAGS" >> $config_host_mak 3584a558ee17SJuan Quintelaecho "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak 3585f9728943SPaolo Bonziniecho "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak 3586e39f0062SPaolo Bonziniif test "$sparse" = "yes" ; then 3587e39f0062SPaolo Bonzini echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak 3588e39f0062SPaolo Bonzini echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak 3589e39f0062SPaolo Bonzini echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak 3590e39f0062SPaolo Bonzinifi 3591e2a2ed06SJuan Quintelaecho "LDFLAGS=$LDFLAGS" >> $config_host_mak 3592a36abbbbSJuan Quintelaecho "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak 3593a36abbbbSJuan Quintelaecho "ARLIBS_END=$arlibs_end" >> $config_host_mak 359473da375eSJuan Quintelaecho "LIBS+=$LIBS" >> $config_host_mak 35953e2e0e6bSJuan Quintelaecho "LIBS_TOOLS+=$libs_tools" >> $config_host_mak 3596804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak 3597957f1f99SMichael Rothecho "LIBS_QGA+=$libs_qga" >> $config_host_mak 359894dd53c5SGerd Hoffmannecho "POD2MAN=$POD2MAN" >> $config_host_mak 3599804edf29SJuan Quintela 36004bf6b55bSJuan Quintela# generate list of library paths for linker script 36014bf6b55bSJuan Quintela 36024bf6b55bSJuan Quintela$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld} 36034bf6b55bSJuan Quintela 36044bf6b55bSJuan Quintelaif test -f ${config_host_ld}~ ; then 36054bf6b55bSJuan Quintela if cmp -s $config_host_ld ${config_host_ld}~ ; then 36064bf6b55bSJuan Quintela mv ${config_host_ld}~ $config_host_ld 36074bf6b55bSJuan Quintela else 36084bf6b55bSJuan Quintela rm ${config_host_ld}~ 36094bf6b55bSJuan Quintela fi 36104bf6b55bSJuan Quintelafi 36114bf6b55bSJuan Quintela 36124d904533SBlue Swirlfor d in libdis libdis-user; do 361372b8b5a1SStefan Weil symlink "$source_path/Makefile.dis" "$d/Makefile" 36144d904533SBlue Swirl echo > $d/config.mak 36154d904533SBlue Swirldone 36164d904533SBlue Swirl 36176efd7517SPeter Maydell# use included Linux headers 36186efd7517SPeter Maydellif test "$linux" = "yes" ; then 3619a307beb6SAndreas Färber mkdir -p linux-headers 36206efd7517SPeter Maydell case "$cpu" in 36216efd7517SPeter Maydell i386|x86_64) 362208312a63SPeter Maydell linux_arch=x86 36236efd7517SPeter Maydell ;; 36246efd7517SPeter Maydell ppcemb|ppc|ppc64) 362508312a63SPeter Maydell linux_arch=powerpc 36266efd7517SPeter Maydell ;; 36276efd7517SPeter Maydell s390x) 362808312a63SPeter Maydell linux_arch=s390 362908312a63SPeter Maydell ;; 363008312a63SPeter Maydell *) 363108312a63SPeter Maydell # For most CPUs the kernel architecture name and QEMU CPU name match. 363208312a63SPeter Maydell linux_arch="$cpu" 36336efd7517SPeter Maydell ;; 36346efd7517SPeter Maydell esac 363508312a63SPeter Maydell # For non-KVM architectures we will not have asm headers 363608312a63SPeter Maydell if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then 363708312a63SPeter Maydell symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm 363808312a63SPeter Maydell fi 36396efd7517SPeter Maydellfi 36406efd7517SPeter Maydell 364197a847bcSbellardfor target in $target_list; do 364297a847bcSbellardtarget_dir="$target" 364325be210fSJuan Quintelaconfig_target_mak=$target_dir/config-target.mak 3644600309b6SBlue Swirltarget_arch2=`echo $target | cut -d '-' -f 1` 364597a847bcSbellardtarget_bigendian="no" 36461f3d3c8fSJuan Quintela 3647ea2d6a39SJuan Quintelacase "$target_arch2" in 3648e67db06eSJia Liu armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|or32|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb) 3649ea2d6a39SJuan Quintela target_bigendian=yes 3650ea2d6a39SJuan Quintela ;; 3651ea2d6a39SJuan Quintelaesac 365297a847bcSbellardtarget_softmmu="no" 3653997344f3Sbellardtarget_user_only="no" 3654831b7825Sthstarget_linux_user="no" 365584778508Sblueswir1target_bsd_user="no" 36569e407a85Spbrookcase "$target" in 3657600309b6SBlue Swirl ${target_arch2}-softmmu) 36589e407a85Spbrook target_softmmu="yes" 36599e407a85Spbrook ;; 3660600309b6SBlue Swirl ${target_arch2}-linux-user) 36619c7a4202SBlue Swirl if test "$linux" != "yes" ; then 36629c7a4202SBlue Swirl echo "ERROR: Target '$target' is only available on a Linux host" 36639c7a4202SBlue Swirl exit 1 36649c7a4202SBlue Swirl fi 36659e407a85Spbrook target_user_only="yes" 36669e407a85Spbrook target_linux_user="yes" 36679e407a85Spbrook ;; 3668600309b6SBlue Swirl ${target_arch2}-bsd-user) 36699cf55765SBlue Swirl if test "$bsd" != "yes" ; then 36709c7a4202SBlue Swirl echo "ERROR: Target '$target' is only available on a BSD host" 36719c7a4202SBlue Swirl exit 1 36729c7a4202SBlue Swirl fi 367384778508Sblueswir1 target_user_only="yes" 367484778508Sblueswir1 target_bsd_user="yes" 367584778508Sblueswir1 ;; 36769e407a85Spbrook *) 36779e407a85Spbrook echo "ERROR: Target '$target' not recognised" 36789e407a85Spbrook exit 1 36799e407a85Spbrook ;; 36809e407a85Spbrookesac 3681831b7825Sths 368297a847bcSbellardmkdir -p $target_dir 368325be210fSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_target_mak 368497a847bcSbellard 3685e5fe0c52Spbrookbflt="no" 3686bd0c5661Spbrooktarget_nptl="no" 3687600309b6SBlue Swirlinterp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"` 368856aebc89Spbrookgdb_xml_files="" 3689c2e3dee6SLaurent Viviertarget_short_alignment=2 3690c2e3dee6SLaurent Viviertarget_int_alignment=4 3691c2e3dee6SLaurent Viviertarget_long_alignment=4 3692c2e3dee6SLaurent Viviertarget_llong_alignment=8 3693de3a354aSMichael Walletarget_libs_softmmu= 36947ba1e619Saliguori 3695938b1eddSJuan QuintelaTARGET_ARCH="$target_arch2" 36966acff7daSJuan QuintelaTARGET_BASE_ARCH="" 3697e6e91b9cSJuan QuintelaTARGET_ABI_DIR="" 3698e73aae67SJuan Quintela 3699600309b6SBlue Swirlcase "$target_arch2" in 37002408a527Saurel32 i386) 370171deff27SAurelien Jarno target_phys_bits=64 37022408a527Saurel32 ;; 37032408a527Saurel32 x86_64) 37046acff7daSJuan Quintela TARGET_BASE_ARCH=i386 37051ad2134fSPaul Brook target_phys_bits=64 3706c2e3dee6SLaurent Vivier target_long_alignment=8 37072408a527Saurel32 ;; 37082408a527Saurel32 alpha) 37091ad2134fSPaul Brook target_phys_bits=64 3710c2e3dee6SLaurent Vivier target_long_alignment=8 3711a4b388ffSRichard Henderson target_nptl="yes" 37122408a527Saurel32 ;; 37132408a527Saurel32 arm|armeb) 3714b498c8a0SJuan Quintela TARGET_ARCH=arm 3715e5fe0c52Spbrook bflt="yes" 3716bd0c5661Spbrook target_nptl="yes" 371756aebc89Spbrook gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" 37183cc0cd61SPeter Maydell target_phys_bits=64 3719c2e3dee6SLaurent Vivier target_llong_alignment=4 3720412beee6SGrant Likely target_libs_softmmu="$fdt_libs" 37212408a527Saurel32 ;; 37222408a527Saurel32 cris) 3723253bd7f8Sedgar_igl target_nptl="yes" 37241ad2134fSPaul Brook target_phys_bits=32 37252408a527Saurel32 ;; 3726613a22c9SMichael Walle lm32) 3727613a22c9SMichael Walle target_phys_bits=32 3728de3a354aSMichael Walle target_libs_softmmu="$opengl_libs" 3729613a22c9SMichael Walle ;; 37302408a527Saurel32 m68k) 37310938cda5Saurel32 bflt="yes" 373256aebc89Spbrook gdb_xml_files="cf-core.xml cf-fp.xml" 37331ad2134fSPaul Brook target_phys_bits=32 3734c2e3dee6SLaurent Vivier target_int_alignment=2 3735c2e3dee6SLaurent Vivier target_long_alignment=2 3736c2e3dee6SLaurent Vivier target_llong_alignment=2 37372408a527Saurel32 ;; 3738877fdc12SEdgar E. Iglesias microblaze|microblazeel) 3739877fdc12SEdgar E. Iglesias TARGET_ARCH=microblaze 374072b675caSEdgar E. Iglesias bflt="yes" 374172b675caSEdgar E. Iglesias target_nptl="yes" 374272b675caSEdgar E. Iglesias target_phys_bits=32 3743de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 374472b675caSEdgar E. Iglesias ;; 37452408a527Saurel32 mips|mipsel) 3746b498c8a0SJuan Quintela TARGET_ARCH=mips 374725be210fSJuan Quintela echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak 3748f04dc72fSPaul Brook target_nptl="yes" 37491ad2134fSPaul Brook target_phys_bits=64 37502408a527Saurel32 ;; 37512408a527Saurel32 mipsn32|mipsn32el) 3752b498c8a0SJuan Quintela TARGET_ARCH=mipsn32 37536acff7daSJuan Quintela TARGET_BASE_ARCH=mips 375425be210fSJuan Quintela echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak 37551ad2134fSPaul Brook target_phys_bits=64 37562408a527Saurel32 ;; 37572408a527Saurel32 mips64|mips64el) 3758b498c8a0SJuan Quintela TARGET_ARCH=mips64 37596acff7daSJuan Quintela TARGET_BASE_ARCH=mips 376025be210fSJuan Quintela echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak 37611ad2134fSPaul Brook target_phys_bits=64 3762c2e3dee6SLaurent Vivier target_long_alignment=8 37632408a527Saurel32 ;; 3764e67db06eSJia Liu or32) 3765e67db06eSJia Liu TARGET_ARCH=openrisc 3766e67db06eSJia Liu TARGET_BASE_ARCH=openrisc 3767e67db06eSJia Liu target_phys_bits=32 3768e67db06eSJia Liu ;; 37692408a527Saurel32 ppc) 3770c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 37718b242ebaSAlexander Graf target_phys_bits=64 3772d6630708SNathan Froyd target_nptl="yes" 3773de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 37742408a527Saurel32 ;; 37752408a527Saurel32 ppcemb) 37766acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 3777e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 3778c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 37791ad2134fSPaul Brook target_phys_bits=64 3780d6630708SNathan Froyd target_nptl="yes" 3781de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 37822408a527Saurel32 ;; 37832408a527Saurel32 ppc64) 37846acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 3785e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 3786c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 37871ad2134fSPaul Brook target_phys_bits=64 3788c2e3dee6SLaurent Vivier target_long_alignment=8 3789de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 37902408a527Saurel32 ;; 37912408a527Saurel32 ppc64abi32) 3792b498c8a0SJuan Quintela TARGET_ARCH=ppc64 37936acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 3794e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 379525be210fSJuan Quintela echo "TARGET_ABI32=y" >> $config_target_mak 3796c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 37971ad2134fSPaul Brook target_phys_bits=64 3798de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 37992408a527Saurel32 ;; 38002408a527Saurel32 sh4|sh4eb) 3801b498c8a0SJuan Quintela TARGET_ARCH=sh4 38024dbed897Spbrook bflt="yes" 38030b6d3ae0Saurel32 target_nptl="yes" 38041ad2134fSPaul Brook target_phys_bits=32 38052408a527Saurel32 ;; 38062408a527Saurel32 sparc) 38071ad2134fSPaul Brook target_phys_bits=64 38082408a527Saurel32 ;; 38092408a527Saurel32 sparc64) 38106acff7daSJuan Quintela TARGET_BASE_ARCH=sparc 38111ad2134fSPaul Brook target_phys_bits=64 3812c2e3dee6SLaurent Vivier target_long_alignment=8 38132408a527Saurel32 ;; 38142408a527Saurel32 sparc32plus) 3815b498c8a0SJuan Quintela TARGET_ARCH=sparc64 38166acff7daSJuan Quintela TARGET_BASE_ARCH=sparc 3817e6e91b9cSJuan Quintela TARGET_ABI_DIR=sparc 381825be210fSJuan Quintela echo "TARGET_ABI32=y" >> $config_target_mak 38191ad2134fSPaul Brook target_phys_bits=64 38202408a527Saurel32 ;; 382124e804ecSAlexander Graf s390x) 3822bc434676SUlrich Hecht target_nptl="yes" 382324e804ecSAlexander Graf target_phys_bits=64 38247b3da903SAlexander Graf target_long_alignment=8 382524e804ecSAlexander Graf ;; 3826d2fbca94SGuan Xuetao unicore32) 3827d2fbca94SGuan Xuetao target_phys_bits=32 3828d2fbca94SGuan Xuetao ;; 3829cfa550c6SMax Filippov xtensa|xtensaeb) 3830cfa550c6SMax Filippov TARGET_ARCH=xtensa 3831cfa550c6SMax Filippov target_phys_bits=32 3832cfa550c6SMax Filippov ;; 38332408a527Saurel32 *) 3834de83cd02Sbellard echo "Unsupported target CPU" 3835de83cd02Sbellard exit 1 38362408a527Saurel32 ;; 38372408a527Saurel32esac 38385e8861a0SPaolo Bonzini# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH 38395e8861a0SPaolo Bonziniif [ "$TARGET_BASE_ARCH" = "" ]; then 38405e8861a0SPaolo Bonzini TARGET_BASE_ARCH=$TARGET_ARCH 38415e8861a0SPaolo Bonzinifi 38425e8861a0SPaolo Bonzini 38435e8861a0SPaolo Bonzinisymlink "$source_path/Makefile.target" "$target_dir/Makefile" 38445e8861a0SPaolo Bonzini 384599afc91dSDaniel P. Berrangeupper() { 384699afc91dSDaniel P. Berrange echo "$@"| LC_ALL=C tr '[a-z]' '[A-Z]' 384799afc91dSDaniel P. Berrange} 384899afc91dSDaniel P. Berrange 3849c2e3dee6SLaurent Vivierecho "TARGET_SHORT_ALIGNMENT=$target_short_alignment" >> $config_target_mak 3850c2e3dee6SLaurent Vivierecho "TARGET_INT_ALIGNMENT=$target_int_alignment" >> $config_target_mak 3851c2e3dee6SLaurent Vivierecho "TARGET_LONG_ALIGNMENT=$target_long_alignment" >> $config_target_mak 3852c2e3dee6SLaurent Vivierecho "TARGET_LLONG_ALIGNMENT=$target_llong_alignment" >> $config_target_mak 385325be210fSJuan Quintelaecho "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak 385499afc91dSDaniel P. Berrangetarget_arch_name="`upper $TARGET_ARCH`" 385525be210fSJuan Quintelaecho "TARGET_$target_arch_name=y" >> $config_target_mak 385625be210fSJuan Quintelaecho "TARGET_ARCH2=$target_arch2" >> $config_target_mak 385799afc91dSDaniel P. Berrangeecho "TARGET_TYPE=TARGET_TYPE_`upper $target_arch2`" >> $config_target_mak 385825be210fSJuan Quintelaecho "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak 3859e6e91b9cSJuan Quintelaif [ "$TARGET_ABI_DIR" = "" ]; then 3860e6e91b9cSJuan Quintela TARGET_ABI_DIR=$TARGET_ARCH 3861e6e91b9cSJuan Quintelafi 386225be210fSJuan Quintelaecho "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak 38631b0c87fcSJuan Quintelacase "$target_arch2" in 38641b0c87fcSJuan Quintela i386|x86_64) 38651b0c87fcSJuan Quintela if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then 386664b3cfdbSAnthony PERARD target_phys_bits=64 386725be210fSJuan Quintela echo "CONFIG_XEN=y" >> $config_target_mak 3868eb6fda0fSAnthony PERARD if test "$xen_pci_passthrough" = yes; then 3869eb6fda0fSAnthony PERARD echo "CONFIG_XEN_PCI_PASSTHROUGH=y" >> "$config_target_mak" 3870eb6fda0fSAnthony PERARD fi 387159d21e53SAlexander Graf else 387259d21e53SAlexander Graf echo "CONFIG_NO_XEN=y" >> $config_target_mak 3873432d268cSJun Nakajima fi 387459d21e53SAlexander Graf ;; 387559d21e53SAlexander Graf *) 387659d21e53SAlexander Graf echo "CONFIG_NO_XEN=y" >> $config_target_mak 38771b0c87fcSJuan Quintelaesac 3878c59249f9SJuan Quintelacase "$target_arch2" in 38790e60a699SAlexander Graf i386|x86_64|ppcemb|ppc|ppc64|s390x) 3880c59249f9SJuan Quintela # Make sure the target and host cpus are compatible 3881c59249f9SJuan Quintela if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \ 3882c59249f9SJuan Quintela \( "$target_arch2" = "$cpu" -o \ 3883c59249f9SJuan Quintela \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \ 38845f114bc6SAlexander Graf \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \ 3885adf82011SRené Rebe \( "$target_arch2" = "ppc" -a "$cpu" = "ppc64" \) -o \ 3886adf82011SRené Rebe \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc64" \) -o \ 3887c59249f9SJuan Quintela \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \ 3888c59249f9SJuan Quintela \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then 388925be210fSJuan Quintela echo "CONFIG_KVM=y" >> $config_target_mak 38901ba16968SStefan Weil if test "$vhost_net" = "yes" ; then 3891d5970055SMichael S. Tsirkin echo "CONFIG_VHOST_NET=y" >> $config_target_mak 3892d5970055SMichael S. Tsirkin fi 3893c59249f9SJuan Quintela fi 3894c59249f9SJuan Quintelaesac 3895fae001f5SWen Congyangcase "$target_arch2" in 3896fae001f5SWen Congyang i386|x86_64) 3897fae001f5SWen Congyang echo "CONFIG_HAVE_GET_MEMORY_MAPPING=y" >> $config_target_mak 3898fae001f5SWen Congyangesac 38997f762366SBlue Swirlif test "$target_arch2" = "ppc64" -a "$fdt" = "yes"; then 39000a6b8ddeSAlexander Graf echo "CONFIG_PSERIES=y" >> $config_target_mak 39010a6b8ddeSAlexander Graffi 3902de83cd02Sbellardif test "$target_bigendian" = "yes" ; then 390325be210fSJuan Quintela echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak 390497a847bcSbellardfi 390597a847bcSbellardif test "$target_softmmu" = "yes" ; then 3906b1aa27c4SPaul Brook echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak 390725be210fSJuan Quintela echo "CONFIG_SOFTMMU=y" >> $config_target_mak 3908de3a354aSMichael Walle echo "LIBS+=$libs_softmmu $target_libs_softmmu" >> $config_target_mak 39090e8c9214SAndreas Färber echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak 39105791f45bSKirill A. Shutemov echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak 3911ad4cf3f6SPaul Brook if test "$smartcard_nss" = "yes" ; then 3912ad4cf3f6SPaul Brook echo "subdir-$target: subdir-libcacard" >> $config_host_mak 3913ad4cf3f6SPaul Brook fi 39149fecbed0SWen Congyang case "$target_arch2" in 39159fecbed0SWen Congyang i386|x86_64) 39169fecbed0SWen Congyang echo "CONFIG_HAVE_CORE_DUMP=y" >> $config_target_mak 39179fecbed0SWen Congyang esac 3918de83cd02Sbellardfi 3919997344f3Sbellardif test "$target_user_only" = "yes" ; then 392025be210fSJuan Quintela echo "CONFIG_USER_ONLY=y" >> $config_target_mak 3921a2c80be9SStefan Weil echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak 3922997344f3Sbellardfi 3923831b7825Sthsif test "$target_linux_user" = "yes" ; then 392425be210fSJuan Quintela echo "CONFIG_LINUX_USER=y" >> $config_target_mak 3925831b7825Sthsfi 392656aebc89Spbrooklist="" 392756aebc89Spbrookif test ! -z "$gdb_xml_files" ; then 392856aebc89Spbrook for x in $gdb_xml_files; do 392956aebc89Spbrook list="$list $source_path/gdb-xml/$x" 393056aebc89Spbrook done 393125be210fSJuan Quintela echo "TARGET_XML_FILES=$list" >> $config_target_mak 39323d0f1517SJuan Quintelafi 3933de83cd02Sbellard 3934e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then 393525be210fSJuan Quintela echo "TARGET_HAS_BFLT=y" >> $config_target_mak 3936e5fe0c52Spbrookfi 3937bd0c5661Spbrookif test "$target_user_only" = "yes" \ 3938bd0c5661Spbrook -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then 393925be210fSJuan Quintela echo "CONFIG_USE_NPTL=y" >> $config_target_mak 3940bd0c5661Spbrookfi 3941379f6698SPaul Brookif test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then 394225be210fSJuan Quintela echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak 3943379f6698SPaul Brookfi 394484778508Sblueswir1if test "$target_bsd_user" = "yes" ; then 394525be210fSJuan Quintela echo "CONFIG_BSD_USER=y" >> $config_target_mak 394684778508Sblueswir1fi 39475b0753e0Sbellard 39485a4d701aSJan Kiszka# the static way of configuring available audio cards requires this workaround 39495a4d701aSJan Kiszkaif test "$target_user_only" != "yes" && grep -q CONFIG_PCSPK $source_path/default-configs/$target.mak; then 39505a4d701aSJan Kiszka echo "CONFIG_PCSPK=y" >> $config_target_mak 39515a4d701aSJan Kiszkafi 39525a4d701aSJan Kiszka 39534afddb55SJuan Quintela# generate QEMU_CFLAGS/LDFLAGS for targets 3954fa282484SJuan Quintela 39554afddb55SJuan Quintelacflags="" 3956f9728943SPaolo Bonziniincludes="" 3957fa282484SJuan Quintelaldflags="" 39589b8e111fSJuan Quintela 39599195b2c2SStefan Weilif test "$tcg_interpreter" = "yes"; then 39609195b2c2SStefan Weil includes="-I\$(SRC_PATH)/tcg/tci $includes" 39619195b2c2SStefan Weilelif test "$ARCH" = "sparc64" ; then 3962f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/sparc $includes" 396324e804ecSAlexander Grafelif test "$ARCH" = "s390x" ; then 3964f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/s390 $includes" 39655d8a4f8fSRichard Hendersonelif test "$ARCH" = "x86_64" ; then 3966f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/i386 $includes" 396757ddfbf7SJuan Quintelaelse 3968f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/\$(ARCH) $includes" 396957ddfbf7SJuan Quintelafi 3970f9728943SPaolo Bonziniincludes="-I\$(SRC_PATH)/tcg $includes" 397157ddfbf7SJuan Quintela 39726efd7517SPeter Maydellif test "$linux" = "yes" ; then 39736efd7517SPeter Maydell includes="-I\$(SRC_PATH)/linux-headers $includes" 39746efd7517SPeter Maydellfi 39756efd7517SPeter Maydell 39764d904533SBlue Swirlif test "$target_user_only" = "yes" ; then 39774d904533SBlue Swirl libdis_config_mak=libdis-user/config.mak 39784d904533SBlue Swirlelse 39794d904533SBlue Swirl libdis_config_mak=libdis/config.mak 39804d904533SBlue Swirlfi 39814d904533SBlue Swirl 398264656024SJuan Quintelafor i in $ARCH $TARGET_BASE_ARCH ; do 398364656024SJuan Quintela case "$i" in 398464656024SJuan Quintela alpha) 398525be210fSJuan Quintela echo "CONFIG_ALPHA_DIS=y" >> $config_target_mak 39864d904533SBlue Swirl echo "CONFIG_ALPHA_DIS=y" >> $libdis_config_mak 398764656024SJuan Quintela ;; 398864656024SJuan Quintela arm) 398925be210fSJuan Quintela echo "CONFIG_ARM_DIS=y" >> $config_target_mak 39904d904533SBlue Swirl echo "CONFIG_ARM_DIS=y" >> $libdis_config_mak 399164656024SJuan Quintela ;; 399264656024SJuan Quintela cris) 399325be210fSJuan Quintela echo "CONFIG_CRIS_DIS=y" >> $config_target_mak 39944d904533SBlue Swirl echo "CONFIG_CRIS_DIS=y" >> $libdis_config_mak 399564656024SJuan Quintela ;; 399664656024SJuan Quintela hppa) 399725be210fSJuan Quintela echo "CONFIG_HPPA_DIS=y" >> $config_target_mak 39984d904533SBlue Swirl echo "CONFIG_HPPA_DIS=y" >> $libdis_config_mak 399964656024SJuan Quintela ;; 400064656024SJuan Quintela i386|x86_64) 400125be210fSJuan Quintela echo "CONFIG_I386_DIS=y" >> $config_target_mak 40024d904533SBlue Swirl echo "CONFIG_I386_DIS=y" >> $libdis_config_mak 400364656024SJuan Quintela ;; 4004903ec55cSAurelien Jarno ia64*) 4005903ec55cSAurelien Jarno echo "CONFIG_IA64_DIS=y" >> $config_target_mak 4006903ec55cSAurelien Jarno echo "CONFIG_IA64_DIS=y" >> $libdis_config_mak 4007903ec55cSAurelien Jarno ;; 400879368f49SMichael Walle lm32) 400979368f49SMichael Walle echo "CONFIG_LM32_DIS=y" >> $config_target_mak 401079368f49SMichael Walle echo "CONFIG_LM32_DIS=y" >> $libdis_config_mak 401179368f49SMichael Walle ;; 401264656024SJuan Quintela m68k) 401325be210fSJuan Quintela echo "CONFIG_M68K_DIS=y" >> $config_target_mak 40144d904533SBlue Swirl echo "CONFIG_M68K_DIS=y" >> $libdis_config_mak 401564656024SJuan Quintela ;; 4016877fdc12SEdgar E. Iglesias microblaze*) 401725be210fSJuan Quintela echo "CONFIG_MICROBLAZE_DIS=y" >> $config_target_mak 40184d904533SBlue Swirl echo "CONFIG_MICROBLAZE_DIS=y" >> $libdis_config_mak 401964656024SJuan Quintela ;; 402064656024SJuan Quintela mips*) 402125be210fSJuan Quintela echo "CONFIG_MIPS_DIS=y" >> $config_target_mak 40224d904533SBlue Swirl echo "CONFIG_MIPS_DIS=y" >> $libdis_config_mak 402364656024SJuan Quintela ;; 4024e67db06eSJia Liu or32) 4025e67db06eSJia Liu echo "CONFIG_OPENRISC_DIS=y" >> $config_target_mak 4026e67db06eSJia Liu echo "CONFIG_OPENRISC_DIS=y" >> $libdis_config_mak 4027e67db06eSJia Liu ;; 402864656024SJuan Quintela ppc*) 402925be210fSJuan Quintela echo "CONFIG_PPC_DIS=y" >> $config_target_mak 40304d904533SBlue Swirl echo "CONFIG_PPC_DIS=y" >> $libdis_config_mak 403164656024SJuan Quintela ;; 403224e804ecSAlexander Graf s390*) 403325be210fSJuan Quintela echo "CONFIG_S390_DIS=y" >> $config_target_mak 40344d904533SBlue Swirl echo "CONFIG_S390_DIS=y" >> $libdis_config_mak 403564656024SJuan Quintela ;; 403664656024SJuan Quintela sh4) 403725be210fSJuan Quintela echo "CONFIG_SH4_DIS=y" >> $config_target_mak 40384d904533SBlue Swirl echo "CONFIG_SH4_DIS=y" >> $libdis_config_mak 403964656024SJuan Quintela ;; 404064656024SJuan Quintela sparc*) 404125be210fSJuan Quintela echo "CONFIG_SPARC_DIS=y" >> $config_target_mak 40424d904533SBlue Swirl echo "CONFIG_SPARC_DIS=y" >> $libdis_config_mak 404364656024SJuan Quintela ;; 4044cfa550c6SMax Filippov xtensa*) 4045cfa550c6SMax Filippov echo "CONFIG_XTENSA_DIS=y" >> $config_target_mak 4046cfa550c6SMax Filippov echo "CONFIG_XTENSA_DIS=y" >> $libdis_config_mak 4047cfa550c6SMax Filippov ;; 404864656024SJuan Quintela esac 404964656024SJuan Quinteladone 40509195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then 40519195b2c2SStefan Weil echo "CONFIG_TCI_DIS=y" >> $config_target_mak 40529195b2c2SStefan Weil echo "CONFIG_TCI_DIS=y" >> $libdis_config_mak 40539195b2c2SStefan Weilfi 405464656024SJuan Quintela 40556ee7126fSJuan Quintelacase "$ARCH" in 40566ee7126fSJuan Quintelaalpha) 40576ee7126fSJuan Quintela # Ensure there's only a single GP 40586ee7126fSJuan Quintela cflags="-msmall-data $cflags" 40596ee7126fSJuan Quintela;; 40606ee7126fSJuan Quintelaesac 40616ee7126fSJuan Quintela 406255d9c04bSJuan Quintelaif test "$target_softmmu" = "yes" ; then 406355d9c04bSJuan Quintela case "$TARGET_BASE_ARCH" in 406455d9c04bSJuan Quintela arm) 406555d9c04bSJuan Quintela cflags="-DHAS_AUDIO $cflags" 406655d9c04bSJuan Quintela ;; 406725a8bb96SMichael Walle lm32) 406825a8bb96SMichael Walle cflags="-DHAS_AUDIO $cflags" 406925a8bb96SMichael Walle ;; 407055d9c04bSJuan Quintela i386|mips|ppc) 407155d9c04bSJuan Quintela cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags" 407255d9c04bSJuan Quintela ;; 407355d9c04bSJuan Quintela esac 407455d9c04bSJuan Quintelafi 407555d9c04bSJuan Quintela 4076d02c1db3SJuan Quintelaif test "$gprof" = "yes" ; then 407725be210fSJuan Quintela echo "TARGET_GPROF=yes" >> $config_target_mak 4078d02c1db3SJuan Quintela if test "$target_linux_user" = "yes" ; then 4079d02c1db3SJuan Quintela cflags="-p $cflags" 4080d02c1db3SJuan Quintela ldflags="-p $ldflags" 4081d02c1db3SJuan Quintela fi 4082d02c1db3SJuan Quintela if test "$target_softmmu" = "yes" ; then 4083d02c1db3SJuan Quintela ldflags="-p $ldflags" 408425be210fSJuan Quintela echo "GPROF_CFLAGS=-p" >> $config_target_mak 4085d02c1db3SJuan Quintela fi 4086d02c1db3SJuan Quintelafi 4087d02c1db3SJuan Quintela 40889195b2c2SStefan Weilif test "$ARCH" = "tci"; then 40899195b2c2SStefan Weil linker_script="" 40909195b2c2SStefan Weilelse 40916ee7126fSJuan Quintela linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld" 40929195b2c2SStefan Weilfi 40939195b2c2SStefan Weil 40949b8e111fSJuan Quintelaif test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then 4095fa282484SJuan Quintela case "$ARCH" in 40964d58be06SRichard Henderson alpha | s390x) 40974d58be06SRichard Henderson # The default placement of the application is fine. 40984d58be06SRichard Henderson ;; 4099fd76e73aSRichard Henderson *) 4100322e5878SJuan Quintela ldflags="$linker_script $ldflags" 4101fa282484SJuan Quintela ;; 4102fa282484SJuan Quintela esac 4103fa282484SJuan Quintelafi 4104fa282484SJuan Quintela 410525be210fSJuan Quintelaecho "LDFLAGS+=$ldflags" >> $config_target_mak 410625be210fSJuan Quintelaecho "QEMU_CFLAGS+=$cflags" >> $config_target_mak 4107f9728943SPaolo Bonziniecho "QEMU_INCLUDES+=$includes" >> $config_target_mak 4108fa282484SJuan Quintela 410997a847bcSbellarddone # for target in $targets 41107d13299dSbellard 4111d1807a4fSPaolo Bonzini# build tree in object directory in case the source is not in the current directory 4112927b241dSMichael WalleDIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32" 41132dee8d54SPaolo BonziniDIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas" 41142d9f27d2SAnthony LiguoriDIRS="$DIRS roms/seabios roms/vgabios" 41152dee8d54SPaolo BonziniDIRS="$DIRS qapi-generated" 411600c705fbSPaolo BonziniDIRS="$DIRS libcacard libcacard/libcacard libcacard/trace" 4117c09015ddSAnthony LiguoriFILES="Makefile tests/tcg/Makefile qdict-test-data.txt" 4118c09015ddSAnthony LiguoriFILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit" 411900c705fbSPaolo BonziniFILES="$FILES tests/tcg/lm32/Makefile libcacard/Makefile" 4120ae0bfb79SBlue SwirlFILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps" 4121446b9165SAndreas FärberFILES="$FILES pc-bios/spapr-rtas/Makefile" 41222d9f27d2SAnthony LiguoriFILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile" 4123753d11f2SRichard Hendersonfor bios_file in \ 4124753d11f2SRichard Henderson $source_path/pc-bios/*.bin \ 4125753d11f2SRichard Henderson $source_path/pc-bios/*.rom \ 4126753d11f2SRichard Henderson $source_path/pc-bios/*.dtb \ 4127753d11f2SRichard Henderson $source_path/pc-bios/openbios-* \ 4128753d11f2SRichard Henderson $source_path/pc-bios/palcode-* 4129753d11f2SRichard Hendersondo 41307ea78b74SJan Kiszka FILES="$FILES pc-bios/`basename $bios_file`" 41317ea78b74SJan Kiszkadone 4132d1807a4fSPaolo Bonzinimkdir -p $DIRS 41337d13299dSbellardfor f in $FILES ; do 413472b8b5a1SStefan Weil if [ -e "$source_path/$f" ] && [ "$source_path" != `pwd` ]; then 4135f9245e10SPeter Maydell symlink "$source_path/$f" "$f" 4136f9245e10SPeter Maydell fi 41377d13299dSbellarddone 41381ad2134fSPaul Brook 4139c34ebfdcSAnthony Liguori# temporary config to build submodules 41402d9f27d2SAnthony Liguorifor rom in seabios vgabios ; do 4141c34ebfdcSAnthony Liguori config_mak=roms/$rom/config.mak 414237116c89SStefan Weil echo "# Automatically generated by configure - do not modify" > $config_mak 4143c34ebfdcSAnthony Liguori echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak 4144c34ebfdcSAnthony Liguori echo "CC=$cc" >> $config_mak 4145c34ebfdcSAnthony Liguori echo "BCC=bcc" >> $config_mak 4146c34ebfdcSAnthony Liguori echo "CPP=${cross_prefix}cpp" >> $config_mak 4147c34ebfdcSAnthony Liguori echo "OBJCOPY=objcopy" >> $config_mak 4148c34ebfdcSAnthony Liguori echo "IASL=iasl" >> $config_mak 4149c34ebfdcSAnthony Liguori echo "LD=$ld" >> $config_mak 4150c34ebfdcSAnthony Liguoridone 4151c34ebfdcSAnthony Liguori 41521ad2134fSPaul Brookfor hwlib in 32 64; do 41531ad2134fSPaul Brook d=libhw$hwlib 415472b8b5a1SStefan Weil symlink "$source_path/Makefile.hw" "$d/Makefile" 415537116c89SStefan Weil echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak 41561ad2134fSPaul Brookdone 4157add16157SBlue Swirl 4158add16157SBlue Swirld=libuser 415972b8b5a1SStefan Weilsymlink "$source_path/Makefile.user" "$d/Makefile" 4160b40292e7SJan Kiszka 4161b40292e7SJan Kiszkaif test "$docs" = "yes" ; then 4162b40292e7SJan Kiszka mkdir -p QMP 4163b40292e7SJan Kiszkafi 4164