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 866*9b9c37c3SRichard Henderson sparc) 8670c439cbfSJuan Quintela LDFLAGS="-m32 $LDFLAGS" 868*9b9c37c3SRichard Henderson QEMU_CFLAGS="-m32 -mcpu=ultrasparc $QEMU_CFLAGS" 869*9b9c37c3SRichard Henderson QEMU_CFLAGS="-ffixed-g2 -ffixed-g3 $QEMU_CFLAGS" 870762e8230Sblueswir1 if test "$solaris" = "no" ; then 871a558ee17SJuan Quintela QEMU_CFLAGS="-ffixed-g1 -ffixed-g6 $QEMU_CFLAGS" 872762e8230Sblueswir1 fi 8733142255cSblueswir1 ;; 874ed968ff1SJuan Quintela sparc64) 8750c439cbfSJuan Quintela LDFLAGS="-m64 $LDFLAGS" 876*9b9c37c3SRichard Henderson QEMU_CFLAGS="-m64 -mcpu=ultrasparc $QEMU_CFLAGS" 877a558ee17SJuan Quintela QEMU_CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $QEMU_CFLAGS" 878ed968ff1SJuan Quintela if test "$solaris" != "no" ; then 879a558ee17SJuan Quintela QEMU_CFLAGS="-ffixed-g1 $QEMU_CFLAGS" 880762e8230Sblueswir1 fi 8813142255cSblueswir1 ;; 88276d83bdeSths s390) 88328d7cc49SRichard Henderson QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS" 88428d7cc49SRichard Henderson LDFLAGS="-m31 $LDFLAGS" 88548bb3750SRichard Henderson host_guest_base="yes" 88628d7cc49SRichard Henderson ;; 88728d7cc49SRichard Henderson s390x) 88828d7cc49SRichard Henderson QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS" 88928d7cc49SRichard Henderson LDFLAGS="-m64 $LDFLAGS" 89048bb3750SRichard Henderson host_guest_base="yes" 89176d83bdeSths ;; 89240293e58Sbellard i386) 893a558ee17SJuan Quintela QEMU_CFLAGS="-m32 $QEMU_CFLAGS" 8940c439cbfSJuan Quintela LDFLAGS="-m32 $LDFLAGS" 8952b2e59e6SPaolo Bonzini cc_i386='$(CC) -m32' 896379f6698SPaul Brook host_guest_base="yes" 89740293e58Sbellard ;; 89840293e58Sbellard x86_64) 899a558ee17SJuan Quintela QEMU_CFLAGS="-m64 $QEMU_CFLAGS" 9000c439cbfSJuan Quintela LDFLAGS="-m64 $LDFLAGS" 9012b2e59e6SPaolo Bonzini cc_i386='$(CC) -m32' 902379f6698SPaul Brook host_guest_base="yes" 903379f6698SPaul Brook ;; 904379f6698SPaul Brook arm*) 905379f6698SPaul Brook host_guest_base="yes" 90640293e58Sbellard ;; 907f6548c0aSmalc ppc*) 908f6548c0aSmalc host_guest_base="yes" 909f6548c0aSmalc ;; 910cc01cc8eSAurelien Jarno mips*) 911cc01cc8eSAurelien Jarno host_guest_base="yes" 912cc01cc8eSAurelien Jarno ;; 913477ba620SAurelien Jarno ia64*) 914477ba620SAurelien Jarno host_guest_base="yes" 915477ba620SAurelien Jarno ;; 916fd76e73aSRichard Henderson hppa*) 917fd76e73aSRichard Henderson host_guest_base="yes" 918fd76e73aSRichard Henderson ;; 919d2fbca94SGuan Xuetao unicore32*) 920d2fbca94SGuan Xuetao host_guest_base="yes" 921d2fbca94SGuan Xuetao ;; 9223142255cSblueswir1esac 9233142255cSblueswir1 924379f6698SPaul Brook[ -z "$guest_base" ] && guest_base="$host_guest_base" 925379f6698SPaul Brook 92660e0df25SPeter Maydell 92760e0df25SPeter Maydelldefault_target_list="" 92860e0df25SPeter Maydell 92960e0df25SPeter Maydell# these targets are portable 93060e0df25SPeter Maydellif [ "$softmmu" = "yes" ] ; then 93160e0df25SPeter Maydell default_target_list="\ 93260e0df25SPeter Maydelli386-softmmu \ 93360e0df25SPeter Maydellx86_64-softmmu \ 93427cdad67SRichard Hendersonalpha-softmmu \ 93560e0df25SPeter Maydellarm-softmmu \ 93660e0df25SPeter Maydellcris-softmmu \ 93760e0df25SPeter Maydelllm32-softmmu \ 93860e0df25SPeter Maydellm68k-softmmu \ 93960e0df25SPeter Maydellmicroblaze-softmmu \ 94060e0df25SPeter Maydellmicroblazeel-softmmu \ 94160e0df25SPeter Maydellmips-softmmu \ 94260e0df25SPeter Maydellmipsel-softmmu \ 94360e0df25SPeter Maydellmips64-softmmu \ 94460e0df25SPeter Maydellmips64el-softmmu \ 945e67db06eSJia Liuor32-softmmu \ 94660e0df25SPeter Maydellppc-softmmu \ 94760e0df25SPeter Maydellppcemb-softmmu \ 94860e0df25SPeter Maydellppc64-softmmu \ 94960e0df25SPeter Maydellsh4-softmmu \ 95060e0df25SPeter Maydellsh4eb-softmmu \ 95160e0df25SPeter Maydellsparc-softmmu \ 95260e0df25SPeter Maydellsparc64-softmmu \ 9530f3301d4SAlexander Grafs390x-softmmu \ 954cfa550c6SMax Filippovxtensa-softmmu \ 955cfa550c6SMax Filippovxtensaeb-softmmu \ 9564f23a1e6SGuan Xuetaounicore32-softmmu \ 95760e0df25SPeter Maydell" 95860e0df25SPeter Maydellfi 95960e0df25SPeter Maydell# the following are Linux specific 96060e0df25SPeter Maydellif [ "$linux_user" = "yes" ] ; then 96160e0df25SPeter Maydell default_target_list="${default_target_list}\ 96260e0df25SPeter Maydelli386-linux-user \ 96360e0df25SPeter Maydellx86_64-linux-user \ 96460e0df25SPeter Maydellalpha-linux-user \ 96560e0df25SPeter Maydellarm-linux-user \ 96660e0df25SPeter Maydellarmeb-linux-user \ 96760e0df25SPeter Maydellcris-linux-user \ 96860e0df25SPeter Maydellm68k-linux-user \ 96960e0df25SPeter Maydellmicroblaze-linux-user \ 97060e0df25SPeter Maydellmicroblazeel-linux-user \ 97160e0df25SPeter Maydellmips-linux-user \ 97260e0df25SPeter Maydellmipsel-linux-user \ 973d962783eSJia Liuor32-linux-user \ 97460e0df25SPeter Maydellppc-linux-user \ 97560e0df25SPeter Maydellppc64-linux-user \ 97660e0df25SPeter Maydellppc64abi32-linux-user \ 97760e0df25SPeter Maydellsh4-linux-user \ 97860e0df25SPeter Maydellsh4eb-linux-user \ 97960e0df25SPeter Maydellsparc-linux-user \ 98060e0df25SPeter Maydellsparc64-linux-user \ 98160e0df25SPeter Maydellsparc32plus-linux-user \ 98260e0df25SPeter Maydellunicore32-linux-user \ 9830f3301d4SAlexander Grafs390x-linux-user \ 98460e0df25SPeter Maydell" 98560e0df25SPeter Maydellfi 98660e0df25SPeter Maydell# the following are BSD specific 98760e0df25SPeter Maydellif [ "$bsd_user" = "yes" ] ; then 98860e0df25SPeter Maydell default_target_list="${default_target_list}\ 98960e0df25SPeter Maydelli386-bsd-user \ 99060e0df25SPeter Maydellx86_64-bsd-user \ 99160e0df25SPeter Maydellsparc-bsd-user \ 99260e0df25SPeter Maydellsparc64-bsd-user \ 99360e0df25SPeter Maydell" 99460e0df25SPeter Maydellfi 99560e0df25SPeter Maydell 996af5db58eSpbrookif test x"$show_help" = x"yes" ; then 997af5db58eSpbrookcat << EOF 998af5db58eSpbrook 999af5db58eSpbrookUsage: configure [options] 1000af5db58eSpbrookOptions: [defaults in brackets after descriptions] 1001af5db58eSpbrook 1002af5db58eSpbrookEOF 1003af5db58eSpbrookecho "Standard options:" 1004af5db58eSpbrookecho " --help print this message" 1005af5db58eSpbrookecho " --prefix=PREFIX install in PREFIX [$prefix]" 1006af5db58eSpbrookecho " --interp-prefix=PREFIX where to find shared libraries, etc." 1007af5db58eSpbrookecho " use %M for cpu name [$interp_prefix]" 100860e0df25SPeter Maydellecho " --target-list=LIST set target list (default: build everything)" 100960e0df25SPeter Maydellecho "Available targets: $default_target_list" | \ 101060e0df25SPeter Maydell fold -s -w 53 | sed -e 's/^/ /' 1011af5db58eSpbrookecho "" 1012af5db58eSpbrookecho "Advanced options (experts only):" 1013af5db58eSpbrookecho " --source-path=PATH path of source code [$source_path]" 1014af5db58eSpbrookecho " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" 1015af5db58eSpbrookecho " --cc=CC use C compiler CC [$cc]" 10160bfe8cc0SPaolo Bonziniecho " --host-cc=CC use C compiler CC [$host_cc] for code run at" 10170bfe8cc0SPaolo Bonziniecho " build time" 10183c4a4d0dSPeter Maydellecho " --objcc=OBJCC use Objective-C compiler OBJCC [$objcc]" 1019a558ee17SJuan Quintelaecho " --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS" 1020e3fc14c3SJan Kiszkaecho " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS" 1021af5db58eSpbrookecho " --make=MAKE use specified make [$make]" 10226a882643Spbrookecho " --install=INSTALL use specified install [$install]" 1023c886edfbSBlue Swirlecho " --python=PYTHON use specified python [$python]" 1024e2d8830eSBradecho " --smbd=SMBD use specified smbd [$smbd]" 1025af5db58eSpbrookecho " --static enable static build [$static]" 10260b24e75fSPaolo Bonziniecho " --mandir=PATH install man pages in PATH" 1027023d3d67SEduardo Habkostecho " --datadir=PATH install firmware in PATH$confsuffix" 1028023d3d67SEduardo Habkostecho " --docdir=PATH install documentation in PATH$confsuffix" 10290b24e75fSPaolo Bonziniecho " --bindir=PATH install binaries in PATH" 1030023d3d67SEduardo Habkostecho " --sysconfdir=PATH install config in PATH$confsuffix" 10312ae4748fSStefan Weilecho " --with-confsuffix=SUFFIX suffix for QEMU data inside datadir and sysconfdir [$confsuffix]" 1032f8393946Saurel32echo " --enable-debug-tcg enable TCG debugging" 1033f8393946Saurel32echo " --disable-debug-tcg disable TCG debugging (default)" 103409695a4aSStefan Weilecho " --enable-debug enable common debug build options" 1035890b1658Saliguoriecho " --enable-sparse enable sparse checker" 1036890b1658Saliguoriecho " --disable-sparse disable sparse checker (default)" 10371625af87Saliguoriecho " --disable-strip disable stripping binaries" 103885aa5189Sbellardecho " --disable-werror disable compilation abort on warning" 1039fe8f78e4Sbalrogecho " --disable-sdl disable SDL" 1040c4198157SJuan Quintelaecho " --enable-sdl enable SDL" 1041983eef5aSMeador Ingeecho " --disable-virtfs disable VirtFS" 1042983eef5aSMeador Ingeecho " --enable-virtfs enable VirtFS" 1043821601eaSJes Sorensenecho " --disable-vnc disable VNC" 1044821601eaSJes Sorensenecho " --enable-vnc enable VNC" 104514821030SPavel Borzenkovecho " --disable-cocoa disable Cocoa (Mac OS X only)" 104614821030SPavel Borzenkovecho " --enable-cocoa enable Cocoa (default on Mac OS X)" 1047c2de5c91Smalcecho " --audio-drv-list=LIST set audio drivers list:" 1048c2de5c91Smalcecho " Available drivers: $audio_possible_drivers" 10494c9b53e3Smalcecho " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]" 10504c9b53e3Smalcecho " Available cards: $audio_possible_cards" 1051eb852011SMarkus Armbrusterecho " --block-drv-whitelist=L set block driver whitelist" 1052eb852011SMarkus Armbrusterecho " (affects only QEMU, not qemu-img)" 10538ff9cbf7Smalcecho " --enable-mixemu enable mixer emulation" 1054e37630caSaliguoriecho " --disable-xen disable xen backend driver support" 1055fc321b4bSJuan Quintelaecho " --enable-xen enable xen backend driver support" 1056eb6fda0fSAnthony PERARDecho " --disable-xen-pci-passthrough" 1057eb6fda0fSAnthony PERARDecho " --enable-xen-pci-passthrough" 10582e4d9fb1Saurel32echo " --disable-brlapi disable BrlAPI" 10594ffcedb6SJuan Quintelaecho " --enable-brlapi enable BrlAPI" 10608d5d2d4cSthsecho " --disable-vnc-tls disable TLS encryption for VNC server" 10611be10ad2SJuan Quintelaecho " --enable-vnc-tls enable TLS encryption for VNC server" 10622f9606b3Saliguoriecho " --disable-vnc-sasl disable SASL encryption for VNC server" 1063ea784e3bSJuan Quintelaecho " --enable-vnc-sasl enable SASL encryption for VNC server" 10642f6f5c7aSCorentin Charyecho " --disable-vnc-jpeg disable JPEG lossy compression for VNC server" 10652f6f5c7aSCorentin Charyecho " --enable-vnc-jpeg enable JPEG lossy compression for VNC server" 106696763cf9SCorentin Charyecho " --disable-vnc-png disable PNG compression for VNC server (default)" 1067efe556adSCorentin Charyecho " --enable-vnc-png enable PNG compression for VNC server" 1068af896aaaSpbrookecho " --disable-curses disable curses output" 1069c584a6d0SJuan Quintelaecho " --enable-curses enable curses output" 1070769ce76dSAlexander Grafecho " --disable-curl disable curl connectivity" 1071788c8196SJuan Quintelaecho " --enable-curl enable curl connectivity" 10722df87df7SJuan Quintelaecho " --disable-fdt disable fdt device tree" 10732df87df7SJuan Quintelaecho " --enable-fdt enable fdt device tree" 1074fb599c9aSbalrogecho " --disable-bluez disable bluez stack connectivity" 1075a20a6f46SJuan Quintelaecho " --enable-bluez enable bluez stack connectivity" 10766093d3d4SPeter Maydellecho " --disable-slirp disable SLIRP userspace network connectivity" 10777ba1e619Saliguoriecho " --disable-kvm disable KVM acceleration support" 1078b31a0277SJuan Quintelaecho " --enable-kvm enable KVM acceleration support" 10799195b2c2SStefan Weilecho " --enable-tcg-interpreter enable TCG with bytecode interpreter (TCI)" 1080bd0c5661Spbrookecho " --disable-nptl disable usermode NPTL support" 1081e5934d33SAndre Przywaraecho " --enable-nptl enable usermode NPTL support" 1082af5db58eSpbrookecho " --enable-system enable all system emulation targets" 1083af5db58eSpbrookecho " --disable-system disable all system emulation targets" 10840953a80fSZachary Amsdenecho " --enable-user enable supported user emulation targets" 10850953a80fSZachary Amsdenecho " --disable-user disable all user emulation targets" 1086831b7825Sthsecho " --enable-linux-user enable all linux usermode emulation targets" 1087831b7825Sthsecho " --disable-linux-user disable all linux usermode emulation targets" 108884778508Sblueswir1echo " --enable-bsd-user enable all BSD usermode emulation targets" 108984778508Sblueswir1echo " --disable-bsd-user disable all BSD usermode emulation targets" 1090379f6698SPaul Brookecho " --enable-guest-base enable GUEST_BASE support for usermode" 1091379f6698SPaul Brookecho " emulation targets" 1092379f6698SPaul Brookecho " --disable-guest-base disable GUEST_BASE support" 109340d6444eSAvi Kivityecho " --enable-pie build Position Independent Executables" 109440d6444eSAvi Kivityecho " --disable-pie do not build Position Independent Executables" 1095af5db58eSpbrookecho " --fmod-lib path to FMOD library" 1096af5db58eSpbrookecho " --fmod-inc path to FMOD includes" 10972f6a1ab0Sblueswir1echo " --oss-lib path to OSS library" 1098c5937220Spbrookecho " --enable-uname-release=R Return R for uname -r in usermode emulation" 1099235e510cS陳韋任echo " --cpu=CPU Build for host CPU [$cpu]" 11003142255cSblueswir1echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9" 1101ee682d27SStefan Weilecho " --disable-uuid disable uuid support" 1102ee682d27SStefan Weilecho " --enable-uuid enable uuid support" 1103e0e6c8c0Saliguoriecho " --disable-vde disable support for vde network" 1104dfb278bdSJuan Quintelaecho " --enable-vde enable support for vde network" 11055c6c3a6cSChristoph Hellwigecho " --disable-linux-aio disable Linux AIO support" 11065c6c3a6cSChristoph Hellwigecho " --enable-linux-aio enable Linux AIO support" 110747e98658SCorey Bryantecho " --disable-cap-ng disable libcap-ng support" 110847e98658SCorey Bryantecho " --enable-cap-ng enable libcap-ng support" 1109758e8e38SVenkateswararao Jujjuri (JV)echo " --disable-attr disables attr and xattr support" 1110758e8e38SVenkateswararao Jujjuri (JV)echo " --enable-attr enable attr and xattr support" 111177755340Sthsecho " --disable-blobs disable installing provided firmware blobs" 1112d2807bc9SDirk Ullrichecho " --enable-docs enable documentation build" 1113d2807bc9SDirk Ullrichecho " --disable-docs disable documentation build" 1114d5970055SMichael S. Tsirkinecho " --disable-vhost-net disable vhost-net acceleration support" 1115d5970055SMichael S. Tsirkinecho " --enable-vhost-net enable vhost-net acceleration support" 1116320fba2aSFabien Chouteauecho " --enable-trace-backend=B Set trace backend" 1117650ab98dSLluís Vilanovaecho " Available backends:" $($python "$source_path"/scripts/tracetool.py --list-backends) 111874242e0fSPaolo Bonziniecho " --with-trace-file=NAME Full PATH,NAME of file to store traces" 11199410b56cSPrerna Saxenaecho " Default:trace-<pid>" 1120cd4ec0b4SGerd Hoffmannecho " --disable-spice disable spice" 1121cd4ec0b4SGerd Hoffmannecho " --enable-spice enable spice" 1122f27aaf4bSChristian Brunnerecho " --enable-rbd enable building the rados block device (rbd)" 1123c589b249SRonnie Sahlbergecho " --disable-libiscsi disable iscsi support" 1124c589b249SRonnie Sahlbergecho " --enable-libiscsi enable iscsi support" 112536707144SAlon Levyecho " --disable-smartcard disable smartcard support" 112636707144SAlon Levyecho " --enable-smartcard enable smartcard support" 1127111a38b0SRobert Relyeaecho " --disable-smartcard-nss disable smartcard nss support" 1128111a38b0SRobert Relyeaecho " --enable-smartcard-nss enable smartcard nss support" 112969354a83SHans de Goedeecho " --disable-usb-redir disable usb network redirection support" 113069354a83SHans de Goedeecho " --enable-usb-redir enable usb network redirection support" 1131d138cee9SMichael Rothecho " --disable-guest-agent disable building of the QEMU Guest Agent" 1132d138cee9SMichael Rothecho " --enable-guest-agent enable building of the QEMU Guest Agent" 1133f794573eSEduardo Otuboecho " --disable-seccomp disable seccomp support" 1134f794573eSEduardo Otuboecho " --enable-seccomp enables seccomp support" 1135519175a2SAlex Barceloecho " --with-coroutine=BACKEND coroutine backend. Supported options:" 1136fe91bfa8SAlex Barceloecho " gthread, ucontext, sigaltstack, windows" 1137af5db58eSpbrookecho "" 11385bf08934Sthsecho "NOTE: The object files are built at the place where configure is launched" 1139af5db58eSpbrookexit 1 1140af5db58eSpbrookfi 1141af5db58eSpbrook 1142359bc95dSPeter Maydell# Now we have handled --enable-tcg-interpreter and know we're not just 1143359bc95dSPeter Maydell# printing the help message, bail out if the host CPU isn't supported. 1144359bc95dSPeter Maydellif test "$ARCH" = "unknown"; then 1145359bc95dSPeter Maydell if test "$tcg_interpreter" = "yes" ; then 1146359bc95dSPeter Maydell echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)" 1147359bc95dSPeter Maydell ARCH=tci 1148359bc95dSPeter Maydell else 1149359bc95dSPeter Maydell echo "Unsupported CPU = $cpu, try --enable-tcg-interpreter" 1150359bc95dSPeter Maydell exit 1 1151359bc95dSPeter Maydell fi 1152359bc95dSPeter Maydellfi 1153359bc95dSPeter Maydell 11548d05095cSPaolo Bonzini# check that the C compiler works. 11558d05095cSPaolo Bonzinicat > $TMPC <<EOF 115675cafad7SStefan Weilint main(void) { return 0; } 11578d05095cSPaolo BonziniEOF 11588d05095cSPaolo Bonzini 11598d05095cSPaolo Bonziniif compile_object ; then 11608d05095cSPaolo Bonzini : C compiler works ok 11618d05095cSPaolo Bonzinielse 11628d05095cSPaolo Bonzini echo "ERROR: \"$cc\" either does not exist or does not work" 11638d05095cSPaolo Bonzini exit 1 11648d05095cSPaolo Bonzinifi 11658d05095cSPaolo Bonzini 1166417c9d72SAlexander Graf# Consult white-list to determine whether to enable werror 1167417c9d72SAlexander Graf# by default. Only enable by default for git builds 1168417c9d72SAlexander Grafz_version=`cut -f3 -d. $source_path/VERSION` 1169417c9d72SAlexander Graf 1170417c9d72SAlexander Grafif test -z "$werror" ; then 1171417c9d72SAlexander Graf if test "$z_version" = "50" -a \ 1172417c9d72SAlexander Graf "$linux" = "yes" ; then 1173417c9d72SAlexander Graf werror="yes" 1174417c9d72SAlexander Graf else 1175417c9d72SAlexander Graf werror="no" 1176417c9d72SAlexander Graf fi 1177417c9d72SAlexander Graffi 1178417c9d72SAlexander Graf 11798d05095cSPaolo Bonzinigcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits" 11808d05095cSPaolo Bonzinigcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags" 11818d05095cSPaolo Bonzinigcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags" 1182f9188227SMike Frysingergcc_flags="-fstack-protector-all -Wendif-labels $gcc_flags" 11836ca026cbSPeter Maydell# Note that we do not add -Werror to gcc_flags here, because that would 11846ca026cbSPeter Maydell# enable it for all configure tests. If a configure test failed due 11856ca026cbSPeter Maydell# to -Werror this would just silently disable some features, 11866ca026cbSPeter Maydell# so it's too error prone. 11878d05095cSPaolo Bonzinicat > $TMPC << EOF 11888d05095cSPaolo Bonziniint main(void) { return 0; } 11898d05095cSPaolo BonziniEOF 11908d05095cSPaolo Bonzinifor flag in $gcc_flags; do 1191bd947d30SStefan Weil if compile_prog "-Werror $flag" "" ; then 11928d05095cSPaolo Bonzini QEMU_CFLAGS="$QEMU_CFLAGS $flag" 11938d05095cSPaolo Bonzini fi 11948d05095cSPaolo Bonzinidone 11958d05095cSPaolo Bonzini 119640d6444eSAvi Kivityif test "$static" = "yes" ; then 119740d6444eSAvi Kivity if test "$pie" = "yes" ; then 119840d6444eSAvi Kivity echo "static and pie are mutually incompatible" 119940d6444eSAvi Kivity exit 1 120040d6444eSAvi Kivity else 120140d6444eSAvi Kivity pie="no" 120240d6444eSAvi Kivity fi 120340d6444eSAvi Kivityfi 120440d6444eSAvi Kivity 120540d6444eSAvi Kivityif test "$pie" = ""; then 120640d6444eSAvi Kivity case "$cpu-$targetos" in 1207f9db31a2SBrad i386-Linux|x86_64-Linux|i386-OpenBSD|x86_64-OpenBSD) 120840d6444eSAvi Kivity ;; 120940d6444eSAvi Kivity *) 121040d6444eSAvi Kivity pie="no" 121140d6444eSAvi Kivity ;; 121240d6444eSAvi Kivity esac 121340d6444eSAvi Kivityfi 121440d6444eSAvi Kivity 121540d6444eSAvi Kivityif test "$pie" != "no" ; then 121640d6444eSAvi Kivity cat > $TMPC << EOF 121721d4a791SAvi Kivity 121821d4a791SAvi Kivity#ifdef __linux__ 121921d4a791SAvi Kivity# define THREAD __thread 122021d4a791SAvi Kivity#else 122121d4a791SAvi Kivity# define THREAD 122221d4a791SAvi Kivity#endif 122321d4a791SAvi Kivity 122421d4a791SAvi Kivitystatic THREAD int tls_var; 122521d4a791SAvi Kivity 122621d4a791SAvi Kivityint main(void) { return tls_var; } 122721d4a791SAvi Kivity 122840d6444eSAvi KivityEOF 122940d6444eSAvi Kivity if compile_prog "-fPIE -DPIE" "-pie"; then 123040d6444eSAvi Kivity QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS" 123140d6444eSAvi Kivity LDFLAGS="-pie $LDFLAGS" 123240d6444eSAvi Kivity pie="yes" 123340d6444eSAvi Kivity if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then 123440d6444eSAvi Kivity LDFLAGS="-Wl,-z,relro -Wl,-z,now $LDFLAGS" 123540d6444eSAvi Kivity fi 123640d6444eSAvi Kivity else 123740d6444eSAvi Kivity if test "$pie" = "yes"; then 123840d6444eSAvi Kivity echo "PIE not available due to missing toolchain support" 123940d6444eSAvi Kivity exit 1 124040d6444eSAvi Kivity else 124140d6444eSAvi Kivity echo "Disabling PIE due to missing toolchain support" 124240d6444eSAvi Kivity pie="no" 124340d6444eSAvi Kivity fi 124440d6444eSAvi Kivity fi 124540d6444eSAvi Kivityfi 124640d6444eSAvi Kivity 1247ec530c81Sbellard# 1248ec530c81Sbellard# Solaris specific configure tool chain decisions 1249ec530c81Sbellard# 1250ec530c81Sbellardif test "$solaris" = "yes" ; then 12516792aa11SLoïc Minier if has $install; then 12526792aa11SLoïc Minier : 12536792aa11SLoïc Minier else 1254ec530c81Sbellard echo "Solaris install program not found. Use --install=/usr/ucb/install or" 1255ec530c81Sbellard echo "install fileutils from www.blastwave.org using pkg-get -i fileutils" 1256ec530c81Sbellard echo "to get ginstall which is used by default (which lives in /opt/csw/bin)" 1257ec530c81Sbellard exit 1 1258ec530c81Sbellard fi 12596792aa11SLoïc Minier if test "`path_of $install`" = "/usr/sbin/install" ; then 1260ec530c81Sbellard echo "Error: Solaris /usr/sbin/install is not an appropriate install program." 1261ec530c81Sbellard echo "try ginstall from the GNU fileutils available from www.blastwave.org" 1262ec530c81Sbellard echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install" 1263ec530c81Sbellard exit 1 1264ec530c81Sbellard fi 12656792aa11SLoïc Minier if has ar; then 12666792aa11SLoïc Minier : 12676792aa11SLoïc Minier else 1268ec530c81Sbellard echo "Error: No path includes ar" 1269ec530c81Sbellard if test -f /usr/ccs/bin/ar ; then 1270ec530c81Sbellard echo "Add /usr/ccs/bin to your path and rerun configure" 1271ec530c81Sbellard fi 1272ec530c81Sbellard exit 1 1273ec530c81Sbellard fi 1274ec530c81Sbellardfi 1275ec530c81Sbellard 12767a3fc891SSebastian Herbsztif ! has $python; then 1277c886edfbSBlue Swirl echo "Python not found. Use --python=/path/to/python" 1278c886edfbSBlue Swirl exit 1 1279c886edfbSBlue Swirlfi 1280c886edfbSBlue Swirl 12816ccea1e4SPeter Maydell# Note that if the Python conditional here evaluates True we will exit 12826ccea1e4SPeter Maydell# with status 1 which is a shell 'false' value. 1283e120d449SStefan Hajnocziif ! "$python" -c 'import sys; sys.exit(sys.version_info < (2,4) or sys.version_info >= (3,))'; then 1284e120d449SStefan Hajnoczi echo "Cannot use '$python', Python 2.4 or later is required." 1285e120d449SStefan Hajnoczi echo "Note that Python 3 or later is not yet supported." 1286e120d449SStefan Hajnoczi echo "Use --python=/path/to/python to specify a supported Python." 12876ccea1e4SPeter Maydell exit 1 12886ccea1e4SPeter Maydellfi 12896ccea1e4SPeter Maydell 1290121afa9eSAnthony Liguoriif test -z "$target_list" ; then 1291121afa9eSAnthony Liguori target_list="$default_target_list" 1292121afa9eSAnthony Liguorielse 1293121afa9eSAnthony Liguori target_list=`echo "$target_list" | sed -e 's/,/ /g'` 12945327cf48Sbellardfi 1295121afa9eSAnthony Liguoriif test -z "$target_list" ; then 1296121afa9eSAnthony Liguori echo "No targets enabled" 1297121afa9eSAnthony Liguori exit 1 1298121afa9eSAnthony Liguorifi 1299f55fe278SPaolo Bonzini# see if system emulation was really requested 1300f55fe278SPaolo Bonzinicase " $target_list " in 1301f55fe278SPaolo Bonzini *"-softmmu "*) softmmu=yes 1302f55fe278SPaolo Bonzini ;; 1303f55fe278SPaolo Bonzini *) softmmu=no 1304f55fe278SPaolo Bonzini ;; 1305f55fe278SPaolo Bonziniesac 13065327cf48Sbellard 1307249247c9SJuan Quintelafeature_not_found() { 1308249247c9SJuan Quintela feature=$1 1309249247c9SJuan Quintela 1310249247c9SJuan Quintela echo "ERROR" 1311249247c9SJuan Quintela echo "ERROR: User requested feature $feature" 13129332f6a2SSebastian Herbszt echo "ERROR: configure was not able to find it" 1313249247c9SJuan Quintela echo "ERROR" 1314249247c9SJuan Quintela exit 1; 1315249247c9SJuan Quintela} 1316249247c9SJuan Quintela 13177d13299dSbellardif test -z "$cross_prefix" ; then 13187d13299dSbellard 13197d13299dSbellard# --- 13207d13299dSbellard# big/little endian test 13217d13299dSbellardcat > $TMPC << EOF 13227d13299dSbellard#include <inttypes.h> 13237d13299dSbellardint main(int argc, char ** argv){ 13247d13299dSbellard volatile uint32_t i=0x01234567; 13257d13299dSbellard return (*((uint8_t*)(&i))) == 0x67; 13267d13299dSbellard} 13277d13299dSbellardEOF 13287d13299dSbellard 132952166aa0SJuan Quintelaif compile_prog "" "" ; then 13307d13299dSbellard$TMPE && bigendian="yes" 13317d13299dSbellardelse 13327d13299dSbellardecho big/little test failed 13337d13299dSbellardfi 13347d13299dSbellard 13357d13299dSbellardelse 13367d13299dSbellard 13377d13299dSbellard# if cross compiling, cannot launch a program, so make a static guess 1338ea8f20f8SJuan Quintelacase "$cpu" in 133921d89f84SPeter Maydell arm) 134021d89f84SPeter Maydell # ARM can be either way; ask the compiler which one we are 134121d89f84SPeter Maydell if check_define __ARMEB__; then 134221d89f84SPeter Maydell bigendian=yes 134321d89f84SPeter Maydell fi 134421d89f84SPeter Maydell ;; 134521d89f84SPeter Maydell hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64) 1346ea8f20f8SJuan Quintela bigendian=yes 1347ea8f20f8SJuan Quintela ;; 1348ea8f20f8SJuan Quintelaesac 13497d13299dSbellard 13507d13299dSbellardfi 13517d13299dSbellard 1352b0a47e79SJuan Quintela########################################## 1353b0a47e79SJuan Quintela# NPTL probe 1354b0a47e79SJuan Quintela 1355b0a47e79SJuan Quintelaif test "$nptl" != "no" ; then 1356bd0c5661Spbrook cat > $TMPC <<EOF 1357bd0c5661Spbrook#include <sched.h> 135830813ceaSpbrook#include <linux/futex.h> 1359182eacc0SStefan Weilint main(void) { 1360bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) 1361bd0c5661Spbrook#error bork 1362bd0c5661Spbrook#endif 1363182eacc0SStefan Weil return 0; 1364bd0c5661Spbrook} 1365bd0c5661SpbrookEOF 1366bd0c5661Spbrook 136752166aa0SJuan Quintela if compile_object ; then 1368b0a47e79SJuan Quintela nptl=yes 1369bd0c5661Spbrook else 1370b0a47e79SJuan Quintela if test "$nptl" = "yes" ; then 1371b0a47e79SJuan Quintela feature_not_found "nptl" 1372b0a47e79SJuan Quintela fi 1373b0a47e79SJuan Quintela nptl=no 1374b0a47e79SJuan Quintela fi 1375bd0c5661Spbrookfi 1376bd0c5661Spbrook 137711d9f695Sbellard########################################## 1378ac62922eSbalrog# zlib check 1379ac62922eSbalrog 13801ece9905SAlon Levyif test "$zlib" != "no" ; then 1381ac62922eSbalrog cat > $TMPC << EOF 1382ac62922eSbalrog#include <zlib.h> 1383ac62922eSbalrogint main(void) { zlibVersion(); return 0; } 1384ac62922eSbalrogEOF 138552166aa0SJuan Quintela if compile_prog "" "-lz" ; then 1386ac62922eSbalrog : 1387ac62922eSbalrog else 1388ac62922eSbalrog echo 1389ac62922eSbalrog echo "Error: zlib check failed" 1390ac62922eSbalrog echo "Make sure to have the zlib libs and headers installed." 1391ac62922eSbalrog echo 1392ac62922eSbalrog exit 1 1393ac62922eSbalrog fi 13941ece9905SAlon Levyfi 1395ac62922eSbalrog 1396ac62922eSbalrog########################################## 1397f794573eSEduardo Otubo# libseccomp check 1398f794573eSEduardo Otubo 1399f794573eSEduardo Otuboif test "$seccomp" != "no" ; then 1400f794573eSEduardo Otubo if $pkg_config libseccomp --modversion >/dev/null 2>&1; then 1401f794573eSEduardo Otubo LIBS=`$pkg_config --libs libseccomp` 1402f794573eSEduardo Otubo seccomp="yes" 1403f794573eSEduardo Otubo else 1404f794573eSEduardo Otubo if test "$seccomp" = "yes"; then 1405f794573eSEduardo Otubo feature_not_found "libseccomp" 1406f794573eSEduardo Otubo fi 1407e84d5956SYann E. MORIN seccomp="no" 1408f794573eSEduardo Otubo fi 1409f794573eSEduardo Otubofi 1410f794573eSEduardo Otubo########################################## 1411e37630caSaliguori# xen probe 1412e37630caSaliguori 1413fc321b4bSJuan Quintelaif test "$xen" != "no" ; then 1414b2266beeSJuan Quintela xen_libs="-lxenstore -lxenctrl -lxenguest" 1415d5b93ddfSAnthony PERARD 141650ced5b3SStefan Weil # First we test whether Xen headers and libraries are available. 141750ced5b3SStefan Weil # If no, we are done and there is no Xen support. 141850ced5b3SStefan Weil # If yes, more tests are run to detect the Xen version. 141950ced5b3SStefan Weil 142050ced5b3SStefan Weil # Xen (any) 142150ced5b3SStefan Weil cat > $TMPC <<EOF 142250ced5b3SStefan Weil#include <xenctrl.h> 142350ced5b3SStefan Weilint main(void) { 142450ced5b3SStefan Weil return 0; 142550ced5b3SStefan Weil} 142650ced5b3SStefan WeilEOF 142750ced5b3SStefan Weil if ! compile_prog "" "$xen_libs" ; then 142850ced5b3SStefan Weil # Xen not found 142950ced5b3SStefan Weil if test "$xen" = "yes" ; then 143050ced5b3SStefan Weil feature_not_found "xen" 143150ced5b3SStefan Weil fi 143250ced5b3SStefan Weil xen=no 143350ced5b3SStefan Weil 1434d5b93ddfSAnthony PERARD # Xen unstable 143569deef08SPeter Maydell elif 143669deef08SPeter Maydell cat > $TMPC <<EOF && 1437e37630caSaliguori#include <xenctrl.h> 1438e108a3c1SAnthony PERARD#include <xenstore.h> 1439d5b93ddfSAnthony PERARD#include <stdint.h> 1440d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h> 1441d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS) 1442d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined 1443d5b93ddfSAnthony PERARD#endif 1444d5b93ddfSAnthony PERARDint main(void) { 1445d5b93ddfSAnthony PERARD xc_interface *xc; 1446d5b93ddfSAnthony PERARD xs_daemon_open(); 1447d5b93ddfSAnthony PERARD xc = xc_interface_open(0, 0, 0); 1448d5b93ddfSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1449d5b93ddfSAnthony PERARD xc_gnttab_open(NULL, 0); 1450b87de24eSAnthony PERARD xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); 14518688e065SStefano Stabellini xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); 14528688e065SStefano Stabellini return 0; 14538688e065SStefano Stabellini} 14548688e065SStefano StabelliniEOF 14558688e065SStefano Stabellini compile_prog "" "$xen_libs" 145669deef08SPeter Maydell then 14578688e065SStefano Stabellini xen_ctrl_version=420 14588688e065SStefano Stabellini xen=yes 14598688e065SStefano Stabellini 146069deef08SPeter Maydell elif 146169deef08SPeter Maydell cat > $TMPC <<EOF && 14628688e065SStefano Stabellini#include <xenctrl.h> 14638688e065SStefano Stabellini#include <xs.h> 14648688e065SStefano Stabellini#include <stdint.h> 14658688e065SStefano Stabellini#include <xen/hvm/hvm_info_table.h> 14668688e065SStefano Stabellini#if !defined(HVM_MAX_VCPUS) 14678688e065SStefano Stabellini# error HVM_MAX_VCPUS not defined 14688688e065SStefano Stabellini#endif 14698688e065SStefano Stabelliniint main(void) { 14708688e065SStefano Stabellini xs_daemon_open(); 14719b4c0b56SPeter Maydell xc_interface_open(0, 0, 0); 14728688e065SStefano Stabellini xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 14738688e065SStefano Stabellini xc_gnttab_open(NULL, 0); 14748688e065SStefano Stabellini xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); 1475d5b93ddfSAnthony PERARD return 0; 1476d5b93ddfSAnthony PERARD} 1477e37630caSaliguoriEOF 147850ced5b3SStefan Weil compile_prog "" "$xen_libs" 147969deef08SPeter Maydell then 1480d5b93ddfSAnthony PERARD xen_ctrl_version=410 1481fc321b4bSJuan Quintela xen=yes 1482d5b93ddfSAnthony PERARD 1483d5b93ddfSAnthony PERARD # Xen 4.0.0 148469deef08SPeter Maydell elif 148569deef08SPeter Maydell cat > $TMPC <<EOF && 1486d5b93ddfSAnthony PERARD#include <xenctrl.h> 1487d5b93ddfSAnthony PERARD#include <xs.h> 1488d5b93ddfSAnthony PERARD#include <stdint.h> 1489d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h> 1490d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS) 1491d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined 1492d5b93ddfSAnthony PERARD#endif 1493d5b93ddfSAnthony PERARDint main(void) { 1494b87de24eSAnthony PERARD struct xen_add_to_physmap xatp = { 1495b87de24eSAnthony PERARD .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0, 1496b87de24eSAnthony PERARD }; 1497d5b93ddfSAnthony PERARD xs_daemon_open(); 1498d5b93ddfSAnthony PERARD xc_interface_open(); 1499d5b93ddfSAnthony PERARD xc_gnttab_open(); 1500d5b93ddfSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1501b87de24eSAnthony PERARD xc_memory_op(0, XENMEM_add_to_physmap, &xatp); 1502d5b93ddfSAnthony PERARD return 0; 1503d5b93ddfSAnthony PERARD} 1504d5b93ddfSAnthony PERARDEOF 1505d5b93ddfSAnthony PERARD compile_prog "" "$xen_libs" 150669deef08SPeter Maydell then 1507d5b93ddfSAnthony PERARD xen_ctrl_version=400 1508d5b93ddfSAnthony PERARD xen=yes 1509d5b93ddfSAnthony PERARD 1510b87de24eSAnthony PERARD # Xen 3.4.0 151169deef08SPeter Maydell elif 151269deef08SPeter Maydell cat > $TMPC <<EOF && 1513b87de24eSAnthony PERARD#include <xenctrl.h> 1514b87de24eSAnthony PERARD#include <xs.h> 1515b87de24eSAnthony PERARDint main(void) { 1516b87de24eSAnthony PERARD struct xen_add_to_physmap xatp = { 1517b87de24eSAnthony PERARD .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0, 1518b87de24eSAnthony PERARD }; 1519b87de24eSAnthony PERARD xs_daemon_open(); 1520b87de24eSAnthony PERARD xc_interface_open(); 1521b87de24eSAnthony PERARD xc_gnttab_open(); 1522b87de24eSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1523b87de24eSAnthony PERARD xc_memory_op(0, XENMEM_add_to_physmap, &xatp); 1524b87de24eSAnthony PERARD return 0; 1525b87de24eSAnthony PERARD} 1526b87de24eSAnthony PERARDEOF 1527b87de24eSAnthony PERARD compile_prog "" "$xen_libs" 152869deef08SPeter Maydell then 1529b87de24eSAnthony PERARD xen_ctrl_version=340 1530b87de24eSAnthony PERARD xen=yes 1531b87de24eSAnthony PERARD 1532b87de24eSAnthony PERARD # Xen 3.3.0 153369deef08SPeter Maydell elif 153469deef08SPeter Maydell cat > $TMPC <<EOF && 1535d5b93ddfSAnthony PERARD#include <xenctrl.h> 1536d5b93ddfSAnthony PERARD#include <xs.h> 1537d5b93ddfSAnthony PERARDint main(void) { 1538d5b93ddfSAnthony PERARD xs_daemon_open(); 1539d5b93ddfSAnthony PERARD xc_interface_open(); 1540d5b93ddfSAnthony PERARD xc_gnttab_open(); 1541d5b93ddfSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1542d5b93ddfSAnthony PERARD return 0; 1543d5b93ddfSAnthony PERARD} 1544d5b93ddfSAnthony PERARDEOF 1545d5b93ddfSAnthony PERARD compile_prog "" "$xen_libs" 154669deef08SPeter Maydell then 1547d5b93ddfSAnthony PERARD xen_ctrl_version=330 1548d5b93ddfSAnthony PERARD xen=yes 1549d5b93ddfSAnthony PERARD 155050ced5b3SStefan Weil # Xen version unsupported 1551e37630caSaliguori else 1552fc321b4bSJuan Quintela if test "$xen" = "yes" ; then 155350ced5b3SStefan Weil feature_not_found "xen (unsupported version)" 1554fc321b4bSJuan Quintela fi 1555fc321b4bSJuan Quintela xen=no 1556e37630caSaliguori fi 1557d5b93ddfSAnthony PERARD 1558d5b93ddfSAnthony PERARD if test "$xen" = yes; then 1559d5b93ddfSAnthony PERARD libs_softmmu="$xen_libs $libs_softmmu" 1560d5b93ddfSAnthony PERARD fi 1561e37630caSaliguorifi 1562e37630caSaliguori 1563eb6fda0fSAnthony PERARDif test "$xen_pci_passthrough" != "no"; then 1564eb6fda0fSAnthony PERARD if test "$xen" = "yes" && test "$linux" = "yes" && 1565eb6fda0fSAnthony PERARD test "$xen_ctrl_version" -ge 340; then 1566eb6fda0fSAnthony PERARD xen_pci_passthrough=yes 1567eb6fda0fSAnthony PERARD else 1568eb6fda0fSAnthony PERARD if test "$xen_pci_passthrough" = "yes"; then 1569eb6fda0fSAnthony PERARD echo "ERROR" 1570eb6fda0fSAnthony PERARD echo "ERROR: User requested feature Xen PCI Passthrough" 1571eb6fda0fSAnthony PERARD echo "ERROR: but this feature require /sys from Linux" 1572eb6fda0fSAnthony PERARD if test "$xen_ctrl_version" -lt 340; then 1573eb6fda0fSAnthony PERARD echo "ERROR: This feature does not work with Xen 3.3" 1574eb6fda0fSAnthony PERARD fi 1575eb6fda0fSAnthony PERARD echo "ERROR" 1576eb6fda0fSAnthony PERARD exit 1; 1577eb6fda0fSAnthony PERARD fi 1578eb6fda0fSAnthony PERARD xen_pci_passthrough=no 1579eb6fda0fSAnthony PERARD fi 1580eb6fda0fSAnthony PERARDfi 1581eb6fda0fSAnthony PERARD 1582e37630caSaliguori########################################## 1583a8bd70adSPaolo Bonzini# pkg-config probe 1584f91672e5SPaolo Bonzini 158517884d7bSSergei Trofimovichif ! has "$pkg_config_exe"; then 158617884d7bSSergei Trofimovich echo "Error: pkg-config binary '$pkg_config_exe' not found" 1587a213fcb2SPeter Maydell exit 1 1588f91672e5SPaolo Bonzinifi 1589f91672e5SPaolo Bonzini 1590f91672e5SPaolo Bonzini########################################## 159144dc0ca3SAlon Levy# libtool probe 159244dc0ca3SAlon Levy 15933f534581SBradif ! has $libtool; then 159444dc0ca3SAlon Levy libtool= 159544dc0ca3SAlon Levyfi 159644dc0ca3SAlon Levy 159744dc0ca3SAlon Levy########################################## 1598dfffc653SJuan Quintela# Sparse probe 1599dfffc653SJuan Quintelaif test "$sparse" != "no" ; then 16000dba6195SLoïc Minier if has cgcc; then 1601dfffc653SJuan Quintela sparse=yes 1602dfffc653SJuan Quintela else 1603dfffc653SJuan Quintela if test "$sparse" = "yes" ; then 1604dfffc653SJuan Quintela feature_not_found "sparse" 1605dfffc653SJuan Quintela fi 1606dfffc653SJuan Quintela sparse=no 1607dfffc653SJuan Quintela fi 1608dfffc653SJuan Quintelafi 1609dfffc653SJuan Quintela 1610dfffc653SJuan Quintela########################################## 161111d9f695Sbellard# SDL probe 161211d9f695Sbellard 16133ec87ffeSPaolo Bonzini# Look for sdl configuration program (pkg-config or sdl-config). Try 16143ec87ffeSPaolo Bonzini# sdl-config even without cross prefix, and favour pkg-config over sdl-config. 16153ec87ffeSPaolo Bonziniif test "`basename $sdl_config`" != sdl-config && ! has ${sdl_config}; then 16163ec87ffeSPaolo Bonzini sdl_config=sdl-config 16173ec87ffeSPaolo Bonzinifi 16183ec87ffeSPaolo Bonzini 16193ec87ffeSPaolo Bonziniif $pkg_config sdl --modversion >/dev/null 2>&1; then 1620a8bd70adSPaolo Bonzini sdlconfig="$pkg_config sdl" 1621fec0e3e8SStefan Weil _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'` 16223ec87ffeSPaolo Bonzinielif has ${sdl_config}; then 16233ec87ffeSPaolo Bonzini sdlconfig="$sdl_config" 16249316f803SPaolo Bonzini _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'` 1625a0dfd8a4SLoïc Minierelse 1626a0dfd8a4SLoïc Minier if test "$sdl" = "yes" ; then 1627a0dfd8a4SLoïc Minier feature_not_found "sdl" 1628a0dfd8a4SLoïc Minier fi 1629a0dfd8a4SLoïc Minier sdl=no 16309316f803SPaolo Bonzinifi 163129e5badaSScott Woodif test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then 16323ec87ffeSPaolo Bonzini echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2 16333ec87ffeSPaolo Bonzinifi 163411d9f695Sbellard 16359316f803SPaolo Bonzinisdl_too_old=no 1636c4198157SJuan Quintelaif test "$sdl" != "no" ; then 163711d9f695Sbellard cat > $TMPC << EOF 163811d9f695Sbellard#include <SDL.h> 163911d9f695Sbellard#undef main /* We don't want SDL to override our main() */ 164011d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); } 164111d9f695SbellardEOF 16429316f803SPaolo Bonzini sdl_cflags=`$sdlconfig --cflags 2> /dev/null` 164374f42e18STeLeMan if test "$static" = "yes" ; then 164474f42e18STeLeMan sdl_libs=`$sdlconfig --static-libs 2>/dev/null` 164574f42e18STeLeMan else 16469316f803SPaolo Bonzini sdl_libs=`$sdlconfig --libs 2> /dev/null` 164774f42e18STeLeMan fi 164852166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 164911d9f695Sbellard if test "$_sdlversion" -lt 121 ; then 165011d9f695Sbellard sdl_too_old=yes 165111d9f695Sbellard else 1652fd677642Sths if test "$cocoa" = "no" ; then 165311d9f695Sbellard sdl=yes 165411d9f695Sbellard fi 1655fd677642Sths fi 16567c1f25b4Sbellard 165767c274d3SPaolo Bonzini # static link with sdl ? (note: sdl.pc's --static --libs is broken) 16581ac88f28SJuan Quintela if test "$sdl" = "yes" -a "$static" = "yes" ; then 165967c274d3SPaolo Bonzini if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then 1660f8aa6c7bSStefan Weil sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`" 1661f8aa6c7bSStefan Weil sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`" 166211d9f695Sbellard fi 166352166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 16641ac88f28SJuan Quintela : 16651ac88f28SJuan Quintela else 16661ac88f28SJuan Quintela sdl=no 16677c1f25b4Sbellard fi 16687c1f25b4Sbellard fi # static link 1669c4198157SJuan Quintela else # sdl not found 1670c4198157SJuan Quintela if test "$sdl" = "yes" ; then 1671c4198157SJuan Quintela feature_not_found "sdl" 1672c4198157SJuan Quintela fi 1673c4198157SJuan Quintela sdl=no 16747c1f25b4Sbellard fi # sdl compile test 1675fd677642Sthsfi 167611d9f695Sbellard 16775368a422Saliguoriif test "$sdl" = "yes" ; then 16785368a422Saliguori cat > $TMPC <<EOF 16795368a422Saliguori#include <SDL.h> 16805368a422Saliguori#if defined(SDL_VIDEO_DRIVER_X11) 16815368a422Saliguori#include <X11/XKBlib.h> 16825368a422Saliguori#else 16835368a422Saliguori#error No x11 support 16845368a422Saliguori#endif 16855368a422Saliguoriint main(void) { return 0; } 16865368a422SaliguoriEOF 168752166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 1688681306dfSJuan Quintela sdl_libs="$sdl_libs -lX11" 16895368a422Saliguori fi 16900705667eSJuan Quintela libs_softmmu="$sdl_libs $libs_softmmu" 16915368a422Saliguorifi 16925368a422Saliguori 16938f28f3fbSths########################################## 16948d5d2d4cSths# VNC TLS detection 1695821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_tls" != "no" ; then 1696ae6b5e5aSaliguori cat > $TMPC <<EOF 1697ae6b5e5aSaliguori#include <gnutls/gnutls.h> 1698ae6b5e5aSaliguoriint main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; } 1699ae6b5e5aSaliguoriEOF 1700a8bd70adSPaolo Bonzini vnc_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null` 1701a8bd70adSPaolo Bonzini vnc_tls_libs=`$pkg_config --libs gnutls 2> /dev/null` 170252166aa0SJuan Quintela if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then 17031be10ad2SJuan Quintela vnc_tls=yes 1704a5e32cc9SJuan Quintela libs_softmmu="$vnc_tls_libs $libs_softmmu" 1705ae6b5e5aSaliguori else 17061be10ad2SJuan Quintela if test "$vnc_tls" = "yes" ; then 17071be10ad2SJuan Quintela feature_not_found "vnc-tls" 17081be10ad2SJuan Quintela fi 17091be10ad2SJuan Quintela vnc_tls=no 17108d5d2d4cSths fi 17118d5d2d4cSthsfi 17128d5d2d4cSths 17138d5d2d4cSths########################################## 17142f9606b3Saliguori# VNC SASL detection 1715821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then 17162f9606b3Saliguori cat > $TMPC <<EOF 17172f9606b3Saliguori#include <sasl/sasl.h> 17182f9606b3Saliguori#include <stdio.h> 17192f9606b3Saliguoriint main(void) { sasl_server_init(NULL, "qemu"); return 0; } 17202f9606b3SaliguoriEOF 17212f9606b3Saliguori # Assuming Cyrus-SASL installed in /usr prefix 17222f9606b3Saliguori vnc_sasl_cflags="" 17232f9606b3Saliguori vnc_sasl_libs="-lsasl2" 172452166aa0SJuan Quintela if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then 1725ea784e3bSJuan Quintela vnc_sasl=yes 1726fa838301SJuan Quintela libs_softmmu="$vnc_sasl_libs $libs_softmmu" 17272f9606b3Saliguori else 1728ea784e3bSJuan Quintela if test "$vnc_sasl" = "yes" ; then 1729ea784e3bSJuan Quintela feature_not_found "vnc-sasl" 1730ea784e3bSJuan Quintela fi 1731ea784e3bSJuan Quintela vnc_sasl=no 17322f9606b3Saliguori fi 17332f9606b3Saliguorifi 17342f9606b3Saliguori 17352f9606b3Saliguori########################################## 17362f6f5c7aSCorentin Chary# VNC JPEG detection 1737821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then 17382f6f5c7aSCorentin Charycat > $TMPC <<EOF 17392f6f5c7aSCorentin Chary#include <stdio.h> 17402f6f5c7aSCorentin Chary#include <jpeglib.h> 17412f6f5c7aSCorentin Charyint main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; } 17422f6f5c7aSCorentin CharyEOF 17432f6f5c7aSCorentin Chary vnc_jpeg_cflags="" 17442f6f5c7aSCorentin Chary vnc_jpeg_libs="-ljpeg" 17452f6f5c7aSCorentin Chary if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then 17462f6f5c7aSCorentin Chary vnc_jpeg=yes 17472f6f5c7aSCorentin Chary libs_softmmu="$vnc_jpeg_libs $libs_softmmu" 17482f6f5c7aSCorentin Chary else 17492f6f5c7aSCorentin Chary if test "$vnc_jpeg" = "yes" ; then 17502f6f5c7aSCorentin Chary feature_not_found "vnc-jpeg" 17512f6f5c7aSCorentin Chary fi 17522f6f5c7aSCorentin Chary vnc_jpeg=no 17532f6f5c7aSCorentin Chary fi 17542f6f5c7aSCorentin Charyfi 17552f6f5c7aSCorentin Chary 17562f6f5c7aSCorentin Chary########################################## 1757efe556adSCorentin Chary# VNC PNG detection 1758821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_png" != "no" ; then 1759efe556adSCorentin Charycat > $TMPC <<EOF 1760efe556adSCorentin Chary//#include <stdio.h> 1761efe556adSCorentin Chary#include <png.h> 1762832ce9c2SScott Wood#include <stddef.h> 1763efe556adSCorentin Charyint main(void) { 1764efe556adSCorentin Chary png_structp png_ptr; 1765efe556adSCorentin Chary png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); 17667edc3fedSPeter Maydell return png_ptr != 0; 1767efe556adSCorentin Chary} 1768efe556adSCorentin CharyEOF 17699af8025eSBrad if $pkg_config libpng --modversion >/dev/null 2>&1; then 17709af8025eSBrad vnc_png_cflags=`$pkg_config libpng --cflags 2> /dev/null` 17719af8025eSBrad vnc_png_libs=`$pkg_config libpng --libs 2> /dev/null` 17729af8025eSBrad else 1773efe556adSCorentin Chary vnc_png_cflags="" 1774efe556adSCorentin Chary vnc_png_libs="-lpng" 17759af8025eSBrad fi 1776efe556adSCorentin Chary if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then 1777efe556adSCorentin Chary vnc_png=yes 1778efe556adSCorentin Chary libs_softmmu="$vnc_png_libs $libs_softmmu" 17799af8025eSBrad QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags" 1780efe556adSCorentin Chary else 1781efe556adSCorentin Chary if test "$vnc_png" = "yes" ; then 1782efe556adSCorentin Chary feature_not_found "vnc-png" 1783efe556adSCorentin Chary fi 1784efe556adSCorentin Chary vnc_png=no 1785efe556adSCorentin Chary fi 1786efe556adSCorentin Charyfi 1787efe556adSCorentin Chary 1788efe556adSCorentin Chary########################################## 178976655d6dSaliguori# fnmatch() probe, used for ACL routines 179076655d6dSaliguorifnmatch="no" 179176655d6dSaliguoricat > $TMPC << EOF 179276655d6dSaliguori#include <fnmatch.h> 179376655d6dSaliguoriint main(void) 179476655d6dSaliguori{ 179576655d6dSaliguori fnmatch("foo", "foo", 0); 179676655d6dSaliguori return 0; 179776655d6dSaliguori} 179876655d6dSaliguoriEOF 179952166aa0SJuan Quintelaif compile_prog "" "" ; then 180076655d6dSaliguori fnmatch="yes" 180176655d6dSaliguorifi 180276655d6dSaliguori 180376655d6dSaliguori########################################## 1804ee682d27SStefan Weil# uuid_generate() probe, used for vdi block driver 1805ee682d27SStefan Weilif test "$uuid" != "no" ; then 1806ee682d27SStefan Weil uuid_libs="-luuid" 1807ee682d27SStefan Weil cat > $TMPC << EOF 1808ee682d27SStefan Weil#include <uuid/uuid.h> 1809ee682d27SStefan Weilint main(void) 1810ee682d27SStefan Weil{ 1811ee682d27SStefan Weil uuid_t my_uuid; 1812ee682d27SStefan Weil uuid_generate(my_uuid); 1813ee682d27SStefan Weil return 0; 1814ee682d27SStefan Weil} 1815ee682d27SStefan WeilEOF 1816ee682d27SStefan Weil if compile_prog "" "$uuid_libs" ; then 1817ee682d27SStefan Weil uuid="yes" 1818ee682d27SStefan Weil libs_softmmu="$uuid_libs $libs_softmmu" 1819ee682d27SStefan Weil libs_tools="$uuid_libs $libs_tools" 1820ee682d27SStefan Weil else 1821ee682d27SStefan Weil if test "$uuid" = "yes" ; then 1822ee682d27SStefan Weil feature_not_found "uuid" 1823ee682d27SStefan Weil fi 1824ee682d27SStefan Weil uuid=no 1825ee682d27SStefan Weil fi 1826ee682d27SStefan Weilfi 1827ee682d27SStefan Weil 1828ee682d27SStefan Weil########################################## 1829dce512deSChristoph Hellwig# xfsctl() probe, used for raw-posix 1830dce512deSChristoph Hellwigif test "$xfs" != "no" ; then 1831dce512deSChristoph Hellwig cat > $TMPC << EOF 1832ffc41d10SStefan Weil#include <stddef.h> /* NULL */ 1833dce512deSChristoph Hellwig#include <xfs/xfs.h> 1834dce512deSChristoph Hellwigint main(void) 1835dce512deSChristoph Hellwig{ 1836dce512deSChristoph Hellwig xfsctl(NULL, 0, 0, NULL); 1837dce512deSChristoph Hellwig return 0; 1838dce512deSChristoph Hellwig} 1839dce512deSChristoph HellwigEOF 1840dce512deSChristoph Hellwig if compile_prog "" "" ; then 1841dce512deSChristoph Hellwig xfs="yes" 1842dce512deSChristoph Hellwig else 1843dce512deSChristoph Hellwig if test "$xfs" = "yes" ; then 1844dce512deSChristoph Hellwig feature_not_found "xfs" 1845dce512deSChristoph Hellwig fi 1846dce512deSChristoph Hellwig xfs=no 1847dce512deSChristoph Hellwig fi 1848dce512deSChristoph Hellwigfi 1849dce512deSChristoph Hellwig 1850dce512deSChristoph Hellwig########################################## 18518a16d273Sths# vde libraries probe 1852dfb278bdSJuan Quintelaif test "$vde" != "no" ; then 18534baae0acSJuan Quintela vde_libs="-lvdeplug" 18548a16d273Sths cat > $TMPC << EOF 18558a16d273Sths#include <libvdeplug.h> 18564a7f0e06Spbrookint main(void) 18574a7f0e06Spbrook{ 18584a7f0e06Spbrook struct vde_open_args a = {0, 0, 0}; 1859fea08e08SPeter Maydell char s[] = ""; 1860fea08e08SPeter Maydell vde_open(s, s, &a); 18614a7f0e06Spbrook return 0; 18624a7f0e06Spbrook} 18638a16d273SthsEOF 186452166aa0SJuan Quintela if compile_prog "" "$vde_libs" ; then 18654baae0acSJuan Quintela vde=yes 18668e02e54cSJuan Quintela libs_softmmu="$vde_libs $libs_softmmu" 18678e02e54cSJuan Quintela libs_tools="$vde_libs $libs_tools" 1868dfb278bdSJuan Quintela else 1869dfb278bdSJuan Quintela if test "$vde" = "yes" ; then 1870dfb278bdSJuan Quintela feature_not_found "vde" 1871dfb278bdSJuan Quintela fi 1872dfb278bdSJuan Quintela vde=no 18738a16d273Sths fi 18748a16d273Sthsfi 18758a16d273Sths 18768a16d273Sths########################################## 187747e98658SCorey Bryant# libcap-ng library probe 187847e98658SCorey Bryantif test "$cap_ng" != "no" ; then 187947e98658SCorey Bryant cap_libs="-lcap-ng" 188047e98658SCorey Bryant cat > $TMPC << EOF 188147e98658SCorey Bryant#include <cap-ng.h> 188247e98658SCorey Bryantint main(void) 188347e98658SCorey Bryant{ 188447e98658SCorey Bryant capng_capability_to_name(CAPNG_EFFECTIVE); 188547e98658SCorey Bryant return 0; 188647e98658SCorey Bryant} 188747e98658SCorey BryantEOF 188847e98658SCorey Bryant if compile_prog "" "$cap_libs" ; then 188947e98658SCorey Bryant cap_ng=yes 189047e98658SCorey Bryant libs_tools="$cap_libs $libs_tools" 189147e98658SCorey Bryant else 189247e98658SCorey Bryant if test "$cap_ng" = "yes" ; then 189347e98658SCorey Bryant feature_not_found "cap_ng" 189447e98658SCorey Bryant fi 189547e98658SCorey Bryant cap_ng=no 189647e98658SCorey Bryant fi 189747e98658SCorey Bryantfi 189847e98658SCorey Bryant 189947e98658SCorey Bryant########################################## 1900c2de5c91Smalc# Sound support libraries probe 19018f28f3fbSths 1902c2de5c91Smalcaudio_drv_probe() 1903c2de5c91Smalc{ 1904c2de5c91Smalc drv=$1 1905c2de5c91Smalc hdr=$2 1906c2de5c91Smalc lib=$3 1907c2de5c91Smalc exp=$4 1908c2de5c91Smalc cfl=$5 19098f28f3fbSths cat > $TMPC << EOF 1910c2de5c91Smalc#include <$hdr> 1911c2de5c91Smalcint main(void) { $exp } 19128f28f3fbSthsEOF 191352166aa0SJuan Quintela if compile_prog "$cfl" "$lib" ; then 19148f28f3fbSths : 19158f28f3fbSths else 19168f28f3fbSths echo 1917c2de5c91Smalc echo "Error: $drv check failed" 1918c2de5c91Smalc echo "Make sure to have the $drv libs and headers installed." 19198f28f3fbSths echo 19208f28f3fbSths exit 1 19218f28f3fbSths fi 1922c2de5c91Smalc} 1923c2de5c91Smalc 19242fa7d3bfSmalcaudio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` 1925c2de5c91Smalcfor drv in $audio_drv_list; do 1926c2de5c91Smalc case $drv in 1927c2de5c91Smalc alsa) 1928c2de5c91Smalc audio_drv_probe $drv alsa/asoundlib.h -lasound \ 1929e35bcb0cSStefan Weil "return snd_pcm_close((snd_pcm_t *)0);" 1930a4bf6780SJuan Quintela libs_softmmu="-lasound $libs_softmmu" 1931c2de5c91Smalc ;; 1932c2de5c91Smalc 1933c2de5c91Smalc fmod) 1934c2de5c91Smalc if test -z $fmod_lib || test -z $fmod_inc; then 1935c2de5c91Smalc echo 1936c2de5c91Smalc echo "Error: You must specify path to FMOD library and headers" 1937c2de5c91Smalc echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so" 1938c2de5c91Smalc echo 1939c2de5c91Smalc exit 1 19408f28f3fbSths fi 1941c2de5c91Smalc audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc" 1942a4bf6780SJuan Quintela libs_softmmu="$fmod_lib $libs_softmmu" 1943c2de5c91Smalc ;; 1944c2de5c91Smalc 1945c2de5c91Smalc esd) 1946c2de5c91Smalc audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);' 1947a4bf6780SJuan Quintela libs_softmmu="-lesd $libs_softmmu" 194867f86e8eSJuan Quintela audio_pt_int="yes" 1949c2de5c91Smalc ;; 1950b8e59f18Smalc 1951b8e59f18Smalc pa) 1952a394aed2SMarc-André Lureau audio_drv_probe $drv pulse/mainloop.h "-lpulse" \ 1953a394aed2SMarc-André Lureau "pa_mainloop *m = 0; pa_mainloop_free (m); return 0;" 1954a394aed2SMarc-André Lureau libs_softmmu="-lpulse $libs_softmmu" 195567f86e8eSJuan Quintela audio_pt_int="yes" 1956b8e59f18Smalc ;; 1957b8e59f18Smalc 1958997e690aSJuan Quintela coreaudio) 1959997e690aSJuan Quintela libs_softmmu="-framework CoreAudio $libs_softmmu" 1960997e690aSJuan Quintela ;; 1961997e690aSJuan Quintela 1962a4bf6780SJuan Quintela dsound) 1963a4bf6780SJuan Quintela libs_softmmu="-lole32 -ldxguid $libs_softmmu" 1964d5631638Smalc audio_win_int="yes" 1965a4bf6780SJuan Quintela ;; 1966a4bf6780SJuan Quintela 1967a4bf6780SJuan Quintela oss) 1968a4bf6780SJuan Quintela libs_softmmu="$oss_lib $libs_softmmu" 1969a4bf6780SJuan Quintela ;; 1970a4bf6780SJuan Quintela 1971a4bf6780SJuan Quintela sdl|wav) 19722f6a1ab0Sblueswir1 # XXX: Probes for CoreAudio, DirectSound, SDL(?) 19732f6a1ab0Sblueswir1 ;; 19742f6a1ab0Sblueswir1 1975d5631638Smalc winwave) 1976d5631638Smalc libs_softmmu="-lwinmm $libs_softmmu" 1977d5631638Smalc audio_win_int="yes" 1978d5631638Smalc ;; 1979d5631638Smalc 1980e4c63a6aSmalc *) 19811c9b2a52Smalc echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { 1982e4c63a6aSmalc echo 1983e4c63a6aSmalc echo "Error: Unknown driver '$drv' selected" 1984e4c63a6aSmalc echo "Possible drivers are: $audio_possible_drivers" 1985e4c63a6aSmalc echo 1986e4c63a6aSmalc exit 1 1987e4c63a6aSmalc } 1988e4c63a6aSmalc ;; 1989c2de5c91Smalc esac 1990c2de5c91Smalcdone 19918f28f3fbSths 19924d3b6f6eSbalrog########################################## 19932e4d9fb1Saurel32# BrlAPI probe 19942e4d9fb1Saurel32 19954ffcedb6SJuan Quintelaif test "$brlapi" != "no" ; then 1996eb82284fSJuan Quintela brlapi_libs="-lbrlapi" 19972e4d9fb1Saurel32 cat > $TMPC << EOF 19982e4d9fb1Saurel32#include <brlapi.h> 1999832ce9c2SScott Wood#include <stddef.h> 20002e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } 20012e4d9fb1Saurel32EOF 200252166aa0SJuan Quintela if compile_prog "" "$brlapi_libs" ; then 20032e4d9fb1Saurel32 brlapi=yes 2004264606b3SJuan Quintela libs_softmmu="$brlapi_libs $libs_softmmu" 20054ffcedb6SJuan Quintela else 20064ffcedb6SJuan Quintela if test "$brlapi" = "yes" ; then 20074ffcedb6SJuan Quintela feature_not_found "brlapi" 20084ffcedb6SJuan Quintela fi 20094ffcedb6SJuan Quintela brlapi=no 2010eb82284fSJuan Quintela fi 2011eb82284fSJuan Quintelafi 20122e4d9fb1Saurel32 20132e4d9fb1Saurel32########################################## 20144d3b6f6eSbalrog# curses probe 2015e095e2f3SStefan Weilif test "$mingw32" = "yes" ; then 2016e095e2f3SStefan Weil curses_list="-lpdcurses" 2017e095e2f3SStefan Weilelse 20184f78ef9aSJuan Quintela curses_list="-lncurses -lcurses" 2019e095e2f3SStefan Weilfi 20204d3b6f6eSbalrog 2021c584a6d0SJuan Quintelaif test "$curses" != "no" ; then 2022c584a6d0SJuan Quintela curses_found=no 20234d3b6f6eSbalrog cat > $TMPC << EOF 20244d3b6f6eSbalrog#include <curses.h> 2025ef9a2524SStefan Weilint main(void) { 2026ef9a2524SStefan Weil const char *s = curses_version(); 2027ef9a2524SStefan Weil resize_term(0, 0); 2028ef9a2524SStefan Weil return s != 0; 2029ef9a2524SStefan Weil} 20304d3b6f6eSbalrogEOF 20314f78ef9aSJuan Quintela for curses_lib in $curses_list; do 20324f78ef9aSJuan Quintela if compile_prog "" "$curses_lib" ; then 2033c584a6d0SJuan Quintela curses_found=yes 20344f78ef9aSJuan Quintela libs_softmmu="$curses_lib $libs_softmmu" 20354f78ef9aSJuan Quintela break 20364d3b6f6eSbalrog fi 20374f78ef9aSJuan Quintela done 2038c584a6d0SJuan Quintela if test "$curses_found" = "yes" ; then 2039c584a6d0SJuan Quintela curses=yes 2040c584a6d0SJuan Quintela else 2041c584a6d0SJuan Quintela if test "$curses" = "yes" ; then 2042c584a6d0SJuan Quintela feature_not_found "curses" 2043c584a6d0SJuan Quintela fi 2044c584a6d0SJuan Quintela curses=no 2045c584a6d0SJuan Quintela fi 20464f78ef9aSJuan Quintelafi 20474d3b6f6eSbalrog 2048414f0dabSblueswir1########################################## 2049769ce76dSAlexander Graf# curl probe 2050769ce76dSAlexander Graf 2051a8bd70adSPaolo Bonziniif $pkg_config libcurl --modversion >/dev/null 2>&1; then 2052a8bd70adSPaolo Bonzini curlconfig="$pkg_config libcurl" 20534e2b0658SPaolo Bonzinielse 20544e2b0658SPaolo Bonzini curlconfig=curl-config 20554e2b0658SPaolo Bonzinifi 20564e2b0658SPaolo Bonzini 2057788c8196SJuan Quintelaif test "$curl" != "no" ; then 2058769ce76dSAlexander Graf cat > $TMPC << EOF 2059769ce76dSAlexander Graf#include <curl/curl.h> 20600b862cedSPeter Maydellint main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; } 2061769ce76dSAlexander GrafEOF 20624e2b0658SPaolo Bonzini curl_cflags=`$curlconfig --cflags 2>/dev/null` 20634e2b0658SPaolo Bonzini curl_libs=`$curlconfig --libs 2>/dev/null` 2064b1d5a277SJuan Quintela if compile_prog "$curl_cflags" "$curl_libs" ; then 2065769ce76dSAlexander Graf curl=yes 2066f0302935SJuan Quintela libs_tools="$curl_libs $libs_tools" 2067f0302935SJuan Quintela libs_softmmu="$curl_libs $libs_softmmu" 2068788c8196SJuan Quintela else 2069788c8196SJuan Quintela if test "$curl" = "yes" ; then 2070788c8196SJuan Quintela feature_not_found "curl" 2071788c8196SJuan Quintela fi 2072788c8196SJuan Quintela curl=no 2073769ce76dSAlexander Graf fi 2074769ce76dSAlexander Graffi # test "$curl" 2075769ce76dSAlexander Graf 2076769ce76dSAlexander Graf########################################## 2077fb599c9aSbalrog# bluez support probe 2078a20a6f46SJuan Quintelaif test "$bluez" != "no" ; then 2079e820e3f4Sbalrog cat > $TMPC << EOF 2080e820e3f4Sbalrog#include <bluetooth/bluetooth.h> 2081e820e3f4Sbalrogint main(void) { return bt_error(0); } 2082e820e3f4SbalrogEOF 2083a8bd70adSPaolo Bonzini bluez_cflags=`$pkg_config --cflags bluez 2> /dev/null` 2084a8bd70adSPaolo Bonzini bluez_libs=`$pkg_config --libs bluez 2> /dev/null` 208552166aa0SJuan Quintela if compile_prog "$bluez_cflags" "$bluez_libs" ; then 2086a20a6f46SJuan Quintela bluez=yes 2087e482d56aSJuan Quintela libs_softmmu="$bluez_libs $libs_softmmu" 2088e820e3f4Sbalrog else 2089a20a6f46SJuan Quintela if test "$bluez" = "yes" ; then 2090a20a6f46SJuan Quintela feature_not_found "bluez" 2091a20a6f46SJuan Quintela fi 2092e820e3f4Sbalrog bluez="no" 2093e820e3f4Sbalrog fi 2094fb599c9aSbalrogfi 2095fb599c9aSbalrog 2096fb599c9aSbalrog########################################## 2097e18df141SAnthony Liguori# glib support probe 2098a52d28afSPaolo Bonzini 2099a52d28afSPaolo Bonziniif test "$mingw32" = yes; then 2100a52d28afSPaolo Bonzini # g_poll is required in order to integrate with the glib main loop. 2101a52d28afSPaolo Bonzini glib_req_ver=2.20 2102a52d28afSPaolo Bonzinielse 2103a52d28afSPaolo Bonzini glib_req_ver=2.12 2104a52d28afSPaolo Bonzinifi 2105a52d28afSPaolo Bonziniif $pkg_config --atleast-version=$glib_req_ver gthread-2.0 > /dev/null 2>&1 2106a52d28afSPaolo Bonzinithen 21074b76a481SStefan Hajnoczi glib_cflags=`$pkg_config --cflags gthread-2.0 2>/dev/null` 21084b76a481SStefan Hajnoczi glib_libs=`$pkg_config --libs gthread-2.0 2>/dev/null` 210914015304SAnthony Liguori LIBS="$glib_libs $LIBS" 2110957f1f99SMichael Roth libs_qga="$glib_libs $libs_qga" 2111e18df141SAnthony Liguorielse 2112a52d28afSPaolo Bonzini echo "glib-$glib_req_ver required to compile QEMU" 2113e18df141SAnthony Liguori exit 1 2114e18df141SAnthony Liguorifi 2115e18df141SAnthony Liguori 2116e18df141SAnthony Liguori########################################## 211717bff52bSM. Mohan Kumar# libcap probe 211817bff52bSM. Mohan Kumar 211917bff52bSM. Mohan Kumarif test "$cap" != "no" ; then 212017bff52bSM. Mohan Kumar cat > $TMPC <<EOF 212117bff52bSM. Mohan Kumar#include <stdio.h> 212217bff52bSM. Mohan Kumar#include <sys/capability.h> 2123cc939743SStefan Weilint main(void) { cap_t caps; caps = cap_init(); return caps != NULL; } 212417bff52bSM. Mohan KumarEOF 212517bff52bSM. Mohan Kumar if compile_prog "" "-lcap" ; then 212617bff52bSM. Mohan Kumar cap=yes 212717bff52bSM. Mohan Kumar else 212817bff52bSM. Mohan Kumar cap=no 212917bff52bSM. Mohan Kumar fi 213017bff52bSM. Mohan Kumarfi 213117bff52bSM. Mohan Kumar 213217bff52bSM. Mohan Kumar########################################## 2133e5d355d1Saliguori# pthread probe 21344b29ec41SBradPTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2" 21353c529d93Saliguori 2136e5d355d1Saliguoripthread=no 2137414f0dabSblueswir1cat > $TMPC << EOF 21383c529d93Saliguori#include <pthread.h> 21397a42bbe4SStefan Weilstatic void *f(void *p) { return NULL; } 21407a42bbe4SStefan Weilint main(void) { 21417a42bbe4SStefan Weil pthread_t thread; 21427a42bbe4SStefan Weil pthread_create(&thread, 0, f, 0); 21437a42bbe4SStefan Weil return 0; 21447a42bbe4SStefan Weil} 2145414f0dabSblueswir1EOF 2146bd00d539SAndreas Färberif compile_prog "" "" ; then 2147bd00d539SAndreas Färber pthread=yes 2148bd00d539SAndreas Färberelse 2149de65fe0fSSebastian Herbszt for pthread_lib in $PTHREADLIBS_LIST; do 215052166aa0SJuan Quintela if compile_prog "" "$pthread_lib" ; then 2151e5d355d1Saliguori pthread=yes 2152e3c56761SPeter Portante found=no 2153e3c56761SPeter Portante for lib_entry in $LIBS; do 2154e3c56761SPeter Portante if test "$lib_entry" = "$pthread_lib"; then 2155e3c56761SPeter Portante found=yes 2156e3c56761SPeter Portante break 2157e3c56761SPeter Portante fi 2158e3c56761SPeter Portante done 2159e3c56761SPeter Portante if test "$found" = "no"; then 21605572b539SJuan Quintela LIBS="$pthread_lib $LIBS" 2161e3c56761SPeter Portante fi 2162de65fe0fSSebastian Herbszt break 2163414f0dabSblueswir1 fi 2164de65fe0fSSebastian Herbszt done 2165bd00d539SAndreas Färberfi 2166414f0dabSblueswir1 21674617e593SAnthony Liguoriif test "$mingw32" != yes -a "$pthread" = no; then 21684dd75c70SChristoph Hellwig echo 21694dd75c70SChristoph Hellwig echo "Error: pthread check failed" 21704dd75c70SChristoph Hellwig echo "Make sure to have the pthread libs and headers installed." 21714dd75c70SChristoph Hellwig echo 21724dd75c70SChristoph Hellwig exit 1 2173e5d355d1Saliguorifi 2174e5d355d1Saliguori 2175bf9298b9Saliguori########################################## 2176f27aaf4bSChristian Brunner# rbd probe 2177f27aaf4bSChristian Brunnerif test "$rbd" != "no" ; then 2178f27aaf4bSChristian Brunner cat > $TMPC <<EOF 2179f27aaf4bSChristian Brunner#include <stdio.h> 2180ad32e9c0SJosh Durgin#include <rbd/librbd.h> 2181f27aaf4bSChristian Brunnerint main(void) { 2182ad32e9c0SJosh Durgin rados_t cluster; 2183ad32e9c0SJosh Durgin rados_create(&cluster, NULL); 2184f27aaf4bSChristian Brunner return 0; 2185f27aaf4bSChristian Brunner} 2186f27aaf4bSChristian BrunnerEOF 2187ad32e9c0SJosh Durgin rbd_libs="-lrbd -lrados" 2188f27aaf4bSChristian Brunner if compile_prog "" "$rbd_libs" ; then 2189f27aaf4bSChristian Brunner rbd=yes 2190f27aaf4bSChristian Brunner libs_tools="$rbd_libs $libs_tools" 2191f27aaf4bSChristian Brunner libs_softmmu="$rbd_libs $libs_softmmu" 2192f27aaf4bSChristian Brunner else 2193f27aaf4bSChristian Brunner if test "$rbd" = "yes" ; then 2194f27aaf4bSChristian Brunner feature_not_found "rados block device" 2195f27aaf4bSChristian Brunner fi 2196f27aaf4bSChristian Brunner rbd=no 2197f27aaf4bSChristian Brunner fi 2198f27aaf4bSChristian Brunnerfi 2199f27aaf4bSChristian Brunner 2200f27aaf4bSChristian Brunner########################################## 22015c6c3a6cSChristoph Hellwig# linux-aio probe 22025c6c3a6cSChristoph Hellwig 22035c6c3a6cSChristoph Hellwigif test "$linux_aio" != "no" ; then 22045c6c3a6cSChristoph Hellwig cat > $TMPC <<EOF 22055c6c3a6cSChristoph Hellwig#include <libaio.h> 22065c6c3a6cSChristoph Hellwig#include <sys/eventfd.h> 2207832ce9c2SScott Wood#include <stddef.h> 22085c6c3a6cSChristoph Hellwigint main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; } 22095c6c3a6cSChristoph HellwigEOF 22105c6c3a6cSChristoph Hellwig if compile_prog "" "-laio" ; then 22115c6c3a6cSChristoph Hellwig linux_aio=yes 2212048d179fSPaul Brook libs_softmmu="$libs_softmmu -laio" 2213048d179fSPaul Brook libs_tools="$libs_tools -laio" 22145c6c3a6cSChristoph Hellwig else 22155c6c3a6cSChristoph Hellwig if test "$linux_aio" = "yes" ; then 22165c6c3a6cSChristoph Hellwig feature_not_found "linux AIO" 22175c6c3a6cSChristoph Hellwig fi 22183cfcae3cSLuiz Capitulino linux_aio=no 22195c6c3a6cSChristoph Hellwig fi 22205c6c3a6cSChristoph Hellwigfi 22215c6c3a6cSChristoph Hellwig 22225c6c3a6cSChristoph Hellwig########################################## 2223758e8e38SVenkateswararao Jujjuri (JV)# attr probe 2224758e8e38SVenkateswararao Jujjuri (JV) 2225758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" != "no" ; then 2226758e8e38SVenkateswararao Jujjuri (JV) cat > $TMPC <<EOF 2227758e8e38SVenkateswararao Jujjuri (JV)#include <stdio.h> 2228758e8e38SVenkateswararao Jujjuri (JV)#include <sys/types.h> 2229f2338fb4SPavel Borzenkov#ifdef CONFIG_LIBATTR 2230f2338fb4SPavel Borzenkov#include <attr/xattr.h> 2231f2338fb4SPavel Borzenkov#else 22324f26f2b6SAvi Kivity#include <sys/xattr.h> 2233f2338fb4SPavel Borzenkov#endif 2234758e8e38SVenkateswararao Jujjuri (JV)int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; } 2235758e8e38SVenkateswararao Jujjuri (JV)EOF 22364f26f2b6SAvi Kivity if compile_prog "" "" ; then 22374f26f2b6SAvi Kivity attr=yes 22384f26f2b6SAvi Kivity # Older distros have <attr/xattr.h>, and need -lattr: 2239f2338fb4SPavel Borzenkov elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then 2240758e8e38SVenkateswararao Jujjuri (JV) attr=yes 2241758e8e38SVenkateswararao Jujjuri (JV) LIBS="-lattr $LIBS" 22424f26f2b6SAvi Kivity libattr=yes 2243758e8e38SVenkateswararao Jujjuri (JV) else 2244758e8e38SVenkateswararao Jujjuri (JV) if test "$attr" = "yes" ; then 2245758e8e38SVenkateswararao Jujjuri (JV) feature_not_found "ATTR" 2246758e8e38SVenkateswararao Jujjuri (JV) fi 2247758e8e38SVenkateswararao Jujjuri (JV) attr=no 2248758e8e38SVenkateswararao Jujjuri (JV) fi 2249758e8e38SVenkateswararao Jujjuri (JV)fi 2250758e8e38SVenkateswararao Jujjuri (JV) 2251758e8e38SVenkateswararao Jujjuri (JV)########################################## 2252bf9298b9Saliguori# iovec probe 2253bf9298b9Saliguoricat > $TMPC <<EOF 2254db34f0b3Sblueswir1#include <sys/types.h> 2255bf9298b9Saliguori#include <sys/uio.h> 2256db34f0b3Sblueswir1#include <unistd.h> 2257f91f9beeSStefan Weilint main(void) { return sizeof(struct iovec); } 2258bf9298b9SaliguoriEOF 2259bf9298b9Saliguoriiovec=no 226052166aa0SJuan Quintelaif compile_prog "" "" ; then 2261bf9298b9Saliguori iovec=yes 2262bf9298b9Saliguorifi 2263bf9298b9Saliguori 2264f652e6afSaurel32########################################## 2265ceb42de8Saliguori# preadv probe 2266ceb42de8Saliguoricat > $TMPC <<EOF 2267ceb42de8Saliguori#include <sys/types.h> 2268ceb42de8Saliguori#include <sys/uio.h> 2269ceb42de8Saliguori#include <unistd.h> 2270c075a723SBlue Swirlint main(void) { return preadv(0, 0, 0, 0); } 2271ceb42de8SaliguoriEOF 2272ceb42de8Saliguoripreadv=no 227352166aa0SJuan Quintelaif compile_prog "" "" ; then 2274ceb42de8Saliguori preadv=yes 2275ceb42de8Saliguorifi 2276ceb42de8Saliguori 2277ceb42de8Saliguori########################################## 2278f652e6afSaurel32# fdt probe 22792df87df7SJuan Quintelaif test "$fdt" != "no" ; then 2280b41af4baSJuan Quintela fdt_libs="-lfdt" 2281f652e6afSaurel32 cat > $TMPC << EOF 2282f652e6afSaurel32int main(void) { return 0; } 2283f652e6afSaurel32EOF 228452166aa0SJuan Quintela if compile_prog "" "$fdt_libs" ; then 2285f652e6afSaurel32 fdt=yes 22862df87df7SJuan Quintela else 22872df87df7SJuan Quintela if test "$fdt" = "yes" ; then 22882df87df7SJuan Quintela feature_not_found "fdt" 22892df87df7SJuan Quintela fi 2290de3a354aSMichael Walle fdt_libs= 22912df87df7SJuan Quintela fdt=no 2292f652e6afSaurel32 fi 2293f652e6afSaurel32fi 2294f652e6afSaurel32 229520ff075bSMichael Walle########################################## 229620ff075bSMichael Walle# opengl probe, used by milkymist-tmu2 229720ff075bSMichael Walleif test "$opengl" != "no" ; then 229820ff075bSMichael Walle opengl_libs="-lGL" 229920ff075bSMichael Walle cat > $TMPC << EOF 230020ff075bSMichael Walle#include <X11/Xlib.h> 230120ff075bSMichael Walle#include <GL/gl.h> 230220ff075bSMichael Walle#include <GL/glx.h> 230384972cbbSStefan Weilint main(void) { return GL_VERSION != 0; } 230420ff075bSMichael WalleEOF 230520ff075bSMichael Walle if compile_prog "" "-lGL" ; then 230620ff075bSMichael Walle opengl=yes 230720ff075bSMichael Walle else 230820ff075bSMichael Walle if test "$opengl" = "yes" ; then 230920ff075bSMichael Walle feature_not_found "opengl" 231020ff075bSMichael Walle fi 2311de3a354aSMichael Walle opengl_libs= 231220ff075bSMichael Walle opengl=no 231320ff075bSMichael Walle fi 231420ff075bSMichael Wallefi 231520ff075bSMichael Walle 23163b3f24adSaurel32# 23173b3f24adSaurel32# Check for xxxat() functions when we are building linux-user 23183b3f24adSaurel32# emulator. This is done because older glibc versions don't 23193b3f24adSaurel32# have syscall stubs for these implemented. 23203b3f24adSaurel32# 23213b3f24adSaurel32atfile=no 23223b3f24adSaurel32cat > $TMPC << EOF 23233b3f24adSaurel32#define _ATFILE_SOURCE 23243b3f24adSaurel32#include <sys/types.h> 23253b3f24adSaurel32#include <fcntl.h> 23263b3f24adSaurel32#include <unistd.h> 23273b3f24adSaurel32 23283b3f24adSaurel32int 23293b3f24adSaurel32main(void) 23303b3f24adSaurel32{ 23313b3f24adSaurel32 /* try to unlink nonexisting file */ 23323b3f24adSaurel32 return (unlinkat(AT_FDCWD, "nonexistent_file", 0)); 23333b3f24adSaurel32} 23343b3f24adSaurel32EOF 233552166aa0SJuan Quintelaif compile_prog "" "" ; then 23363b3f24adSaurel32 atfile=yes 23373b3f24adSaurel32fi 23383b3f24adSaurel32 233939386ac7Saurel32# Check for inotify functions when we are building linux-user 23403b3f24adSaurel32# emulator. This is done because older glibc versions don't 23413b3f24adSaurel32# have syscall stubs for these implemented. In that case we 23423b3f24adSaurel32# don't provide them even if kernel supports them. 23433b3f24adSaurel32# 23443b3f24adSaurel32inotify=no 23453b3f24adSaurel32cat > $TMPC << EOF 23463b3f24adSaurel32#include <sys/inotify.h> 23473b3f24adSaurel32 23483b3f24adSaurel32int 23493b3f24adSaurel32main(void) 23503b3f24adSaurel32{ 23513b3f24adSaurel32 /* try to start inotify */ 23528690e420Saurel32 return inotify_init(); 23533b3f24adSaurel32} 23543b3f24adSaurel32EOF 235552166aa0SJuan Quintelaif compile_prog "" "" ; then 23563b3f24adSaurel32 inotify=yes 23573b3f24adSaurel32fi 23583b3f24adSaurel32 2359c05c7a73SRiku Voipioinotify1=no 2360c05c7a73SRiku Voipiocat > $TMPC << EOF 2361c05c7a73SRiku Voipio#include <sys/inotify.h> 2362c05c7a73SRiku Voipio 2363c05c7a73SRiku Voipioint 2364c05c7a73SRiku Voipiomain(void) 2365c05c7a73SRiku Voipio{ 2366c05c7a73SRiku Voipio /* try to start inotify */ 2367c05c7a73SRiku Voipio return inotify_init1(0); 2368c05c7a73SRiku Voipio} 2369c05c7a73SRiku VoipioEOF 2370c05c7a73SRiku Voipioif compile_prog "" "" ; then 2371c05c7a73SRiku Voipio inotify1=yes 2372c05c7a73SRiku Voipiofi 2373c05c7a73SRiku Voipio 2374ebc996f3SRiku Voipio# check if utimensat and futimens are supported 2375ebc996f3SRiku Voipioutimens=no 2376ebc996f3SRiku Voipiocat > $TMPC << EOF 2377ebc996f3SRiku Voipio#define _ATFILE_SOURCE 2378ebc996f3SRiku Voipio#include <stddef.h> 2379ebc996f3SRiku Voipio#include <fcntl.h> 23803014ee00SPeter Maydell#include <sys/stat.h> 2381ebc996f3SRiku Voipio 2382ebc996f3SRiku Voipioint main(void) 2383ebc996f3SRiku Voipio{ 2384ebc996f3SRiku Voipio utimensat(AT_FDCWD, "foo", NULL, 0); 2385ebc996f3SRiku Voipio futimens(0, NULL); 2386ebc996f3SRiku Voipio return 0; 2387ebc996f3SRiku Voipio} 2388ebc996f3SRiku VoipioEOF 238952166aa0SJuan Quintelaif compile_prog "" "" ; then 2390ebc996f3SRiku Voipio utimens=yes 2391ebc996f3SRiku Voipiofi 2392ebc996f3SRiku Voipio 2393099d6b0fSRiku Voipio# check if pipe2 is there 2394099d6b0fSRiku Voipiopipe2=no 2395099d6b0fSRiku Voipiocat > $TMPC << EOF 2396099d6b0fSRiku Voipio#include <unistd.h> 2397099d6b0fSRiku Voipio#include <fcntl.h> 2398099d6b0fSRiku Voipio 2399099d6b0fSRiku Voipioint main(void) 2400099d6b0fSRiku Voipio{ 2401099d6b0fSRiku Voipio int pipefd[2]; 2402099d6b0fSRiku Voipio pipe2(pipefd, O_CLOEXEC); 2403099d6b0fSRiku Voipio return 0; 2404099d6b0fSRiku Voipio} 2405099d6b0fSRiku VoipioEOF 240652166aa0SJuan Quintelaif compile_prog "" "" ; then 2407099d6b0fSRiku Voipio pipe2=yes 2408099d6b0fSRiku Voipiofi 2409099d6b0fSRiku Voipio 241040ff6d7eSKevin Wolf# check if accept4 is there 241140ff6d7eSKevin Wolfaccept4=no 241240ff6d7eSKevin Wolfcat > $TMPC << EOF 241340ff6d7eSKevin Wolf#include <sys/socket.h> 241440ff6d7eSKevin Wolf#include <stddef.h> 241540ff6d7eSKevin Wolf 241640ff6d7eSKevin Wolfint main(void) 241740ff6d7eSKevin Wolf{ 241840ff6d7eSKevin Wolf accept4(0, NULL, NULL, SOCK_CLOEXEC); 241940ff6d7eSKevin Wolf return 0; 242040ff6d7eSKevin Wolf} 242140ff6d7eSKevin WolfEOF 242240ff6d7eSKevin Wolfif compile_prog "" "" ; then 242340ff6d7eSKevin Wolf accept4=yes 242440ff6d7eSKevin Wolffi 242540ff6d7eSKevin Wolf 24263ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time. 24273ce34dfbSvibisreenivasansplice=no 24283ce34dfbSvibisreenivasancat > $TMPC << EOF 24293ce34dfbSvibisreenivasan#include <unistd.h> 24303ce34dfbSvibisreenivasan#include <fcntl.h> 24313ce34dfbSvibisreenivasan#include <limits.h> 24323ce34dfbSvibisreenivasan 24333ce34dfbSvibisreenivasanint main(void) 24343ce34dfbSvibisreenivasan{ 243566ea0f22SStefan Weil int len, fd = 0; 24363ce34dfbSvibisreenivasan len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK); 24373ce34dfbSvibisreenivasan splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE); 24383ce34dfbSvibisreenivasan return 0; 24393ce34dfbSvibisreenivasan} 24403ce34dfbSvibisreenivasanEOF 244152166aa0SJuan Quintelaif compile_prog "" "" ; then 24423ce34dfbSvibisreenivasan splice=yes 24433ce34dfbSvibisreenivasanfi 24443ce34dfbSvibisreenivasan 2445dcc38d1cSMarcelo Tosatti########################################## 2446dcc38d1cSMarcelo Tosatti# signalfd probe 2447dcc38d1cSMarcelo Tosattisignalfd="no" 2448dcc38d1cSMarcelo Tosatticat > $TMPC << EOF 2449dcc38d1cSMarcelo Tosatti#include <unistd.h> 2450dcc38d1cSMarcelo Tosatti#include <sys/syscall.h> 2451dcc38d1cSMarcelo Tosatti#include <signal.h> 2452dcc38d1cSMarcelo Tosattiint main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); } 2453dcc38d1cSMarcelo TosattiEOF 2454dcc38d1cSMarcelo Tosatti 2455dcc38d1cSMarcelo Tosattiif compile_prog "" "" ; then 2456dcc38d1cSMarcelo Tosatti signalfd=yes 2457dcc38d1cSMarcelo Tosattifi 2458dcc38d1cSMarcelo Tosatti 2459c2882b96SRiku Voipio# check if eventfd is supported 2460c2882b96SRiku Voipioeventfd=no 2461c2882b96SRiku Voipiocat > $TMPC << EOF 2462c2882b96SRiku Voipio#include <sys/eventfd.h> 2463c2882b96SRiku Voipio 2464c2882b96SRiku Voipioint main(void) 2465c2882b96SRiku Voipio{ 246655cc7f3eSStefan Weil return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); 2467c2882b96SRiku Voipio} 2468c2882b96SRiku VoipioEOF 2469c2882b96SRiku Voipioif compile_prog "" "" ; then 2470c2882b96SRiku Voipio eventfd=yes 2471c2882b96SRiku Voipiofi 2472c2882b96SRiku Voipio 2473d0927938SUlrich Hecht# check for fallocate 2474d0927938SUlrich Hechtfallocate=no 2475d0927938SUlrich Hechtcat > $TMPC << EOF 2476d0927938SUlrich Hecht#include <fcntl.h> 2477d0927938SUlrich Hecht 2478d0927938SUlrich Hechtint main(void) 2479d0927938SUlrich Hecht{ 2480d0927938SUlrich Hecht fallocate(0, 0, 0, 0); 2481d0927938SUlrich Hecht return 0; 2482d0927938SUlrich Hecht} 2483d0927938SUlrich HechtEOF 24848fb03151SPeter Maydellif compile_prog "" "" ; then 2485d0927938SUlrich Hecht fallocate=yes 2486d0927938SUlrich Hechtfi 2487d0927938SUlrich Hecht 2488c727f47dSPeter Maydell# check for sync_file_range 2489c727f47dSPeter Maydellsync_file_range=no 2490c727f47dSPeter Maydellcat > $TMPC << EOF 2491c727f47dSPeter Maydell#include <fcntl.h> 2492c727f47dSPeter Maydell 2493c727f47dSPeter Maydellint main(void) 2494c727f47dSPeter Maydell{ 2495c727f47dSPeter Maydell sync_file_range(0, 0, 0, 0); 2496c727f47dSPeter Maydell return 0; 2497c727f47dSPeter Maydell} 2498c727f47dSPeter MaydellEOF 24998fb03151SPeter Maydellif compile_prog "" "" ; then 2500c727f47dSPeter Maydell sync_file_range=yes 2501c727f47dSPeter Maydellfi 2502c727f47dSPeter Maydell 2503dace20dcSPeter Maydell# check for linux/fiemap.h and FS_IOC_FIEMAP 2504dace20dcSPeter Maydellfiemap=no 2505dace20dcSPeter Maydellcat > $TMPC << EOF 2506dace20dcSPeter Maydell#include <sys/ioctl.h> 2507dace20dcSPeter Maydell#include <linux/fs.h> 2508dace20dcSPeter Maydell#include <linux/fiemap.h> 2509dace20dcSPeter Maydell 2510dace20dcSPeter Maydellint main(void) 2511dace20dcSPeter Maydell{ 2512dace20dcSPeter Maydell ioctl(0, FS_IOC_FIEMAP, 0); 2513dace20dcSPeter Maydell return 0; 2514dace20dcSPeter Maydell} 2515dace20dcSPeter MaydellEOF 25168fb03151SPeter Maydellif compile_prog "" "" ; then 2517dace20dcSPeter Maydell fiemap=yes 2518dace20dcSPeter Maydellfi 2519dace20dcSPeter Maydell 2520d0927938SUlrich Hecht# check for dup3 2521d0927938SUlrich Hechtdup3=no 2522d0927938SUlrich Hechtcat > $TMPC << EOF 2523d0927938SUlrich Hecht#include <unistd.h> 2524d0927938SUlrich Hecht 2525d0927938SUlrich Hechtint main(void) 2526d0927938SUlrich Hecht{ 2527d0927938SUlrich Hecht dup3(0, 0, 0); 2528d0927938SUlrich Hecht return 0; 2529d0927938SUlrich Hecht} 2530d0927938SUlrich HechtEOF 253178f5d726SJan Kiszkaif compile_prog "" "" ; then 2532d0927938SUlrich Hecht dup3=yes 2533d0927938SUlrich Hechtfi 2534d0927938SUlrich Hecht 25353b6edd16SPeter Maydell# check for epoll support 25363b6edd16SPeter Maydellepoll=no 25373b6edd16SPeter Maydellcat > $TMPC << EOF 25383b6edd16SPeter Maydell#include <sys/epoll.h> 25393b6edd16SPeter Maydell 25403b6edd16SPeter Maydellint main(void) 25413b6edd16SPeter Maydell{ 25423b6edd16SPeter Maydell epoll_create(0); 25433b6edd16SPeter Maydell return 0; 25443b6edd16SPeter Maydell} 25453b6edd16SPeter MaydellEOF 25468fb03151SPeter Maydellif compile_prog "" "" ; then 25473b6edd16SPeter Maydell epoll=yes 25483b6edd16SPeter Maydellfi 25493b6edd16SPeter Maydell 25503b6edd16SPeter Maydell# epoll_create1 and epoll_pwait are later additions 25513b6edd16SPeter Maydell# so we must check separately for their presence 25523b6edd16SPeter Maydellepoll_create1=no 25533b6edd16SPeter Maydellcat > $TMPC << EOF 25543b6edd16SPeter Maydell#include <sys/epoll.h> 25553b6edd16SPeter Maydell 25563b6edd16SPeter Maydellint main(void) 25573b6edd16SPeter Maydell{ 255819e83f6bSPeter Maydell /* Note that we use epoll_create1 as a value, not as 255919e83f6bSPeter Maydell * a function being called. This is necessary so that on 256019e83f6bSPeter Maydell * old SPARC glibc versions where the function was present in 256119e83f6bSPeter Maydell * the library but not declared in the header file we will 256219e83f6bSPeter Maydell * fail the configure check. (Otherwise we will get a compiler 256319e83f6bSPeter Maydell * warning but not an error, and will proceed to fail the 256419e83f6bSPeter Maydell * qemu compile where we compile with -Werror.) 256519e83f6bSPeter Maydell */ 2566c075a723SBlue Swirl return (int)(uintptr_t)&epoll_create1; 25673b6edd16SPeter Maydell} 25683b6edd16SPeter MaydellEOF 25698fb03151SPeter Maydellif compile_prog "" "" ; then 25703b6edd16SPeter Maydell epoll_create1=yes 25713b6edd16SPeter Maydellfi 25723b6edd16SPeter Maydell 25733b6edd16SPeter Maydellepoll_pwait=no 25743b6edd16SPeter Maydellcat > $TMPC << EOF 25753b6edd16SPeter Maydell#include <sys/epoll.h> 25763b6edd16SPeter Maydell 25773b6edd16SPeter Maydellint main(void) 25783b6edd16SPeter Maydell{ 25793b6edd16SPeter Maydell epoll_pwait(0, 0, 0, 0, 0); 25803b6edd16SPeter Maydell return 0; 25813b6edd16SPeter Maydell} 25823b6edd16SPeter MaydellEOF 25838fb03151SPeter Maydellif compile_prog "" "" ; then 25843b6edd16SPeter Maydell epoll_pwait=yes 25853b6edd16SPeter Maydellfi 25863b6edd16SPeter Maydell 2587cc8ae6deSpbrook# Check if tools are available to build documentation. 2588a25dba17SJuan Quintelaif test "$docs" != "no" ; then 258901668d98SStefan Weil if has makeinfo && has pod2man; then 2590a25dba17SJuan Quintela docs=yes 259183a3ab8bSJuan Quintela else 2592a25dba17SJuan Quintela if test "$docs" = "yes" ; then 2593a25dba17SJuan Quintela feature_not_found "docs" 259483a3ab8bSJuan Quintela fi 2595a25dba17SJuan Quintela docs=no 259683a3ab8bSJuan Quintela fi 2597cc8ae6deSpbrookfi 2598cc8ae6deSpbrook 2599f514f41cSStefan Weil# Search for bswap_32 function 26006ae9a1f4SJuan Quintelabyteswap_h=no 26016ae9a1f4SJuan Quintelacat > $TMPC << EOF 26026ae9a1f4SJuan Quintela#include <byteswap.h> 26036ae9a1f4SJuan Quintelaint main(void) { return bswap_32(0); } 26046ae9a1f4SJuan QuintelaEOF 260552166aa0SJuan Quintelaif compile_prog "" "" ; then 26066ae9a1f4SJuan Quintela byteswap_h=yes 26076ae9a1f4SJuan Quintelafi 26086ae9a1f4SJuan Quintela 2609f514f41cSStefan Weil# Search for bswap_32 function 26106ae9a1f4SJuan Quintelabswap_h=no 26116ae9a1f4SJuan Quintelacat > $TMPC << EOF 26126ae9a1f4SJuan Quintela#include <sys/endian.h> 26136ae9a1f4SJuan Quintela#include <sys/types.h> 26146ae9a1f4SJuan Quintela#include <machine/bswap.h> 26156ae9a1f4SJuan Quintelaint main(void) { return bswap32(0); } 26166ae9a1f4SJuan QuintelaEOF 261752166aa0SJuan Quintelaif compile_prog "" "" ; then 26186ae9a1f4SJuan Quintela bswap_h=yes 26196ae9a1f4SJuan Quintelafi 26206ae9a1f4SJuan Quintela 2621da93a1fdSaliguori########################################## 2622c589b249SRonnie Sahlberg# Do we have libiscsi 2623fa6acb0cSRonnie Sahlberg# We check for iscsi_unmap_sync() to make sure we have a 2624fa6acb0cSRonnie Sahlberg# recent enough version of libiscsi. 2625c589b249SRonnie Sahlbergif test "$libiscsi" != "no" ; then 2626c589b249SRonnie Sahlberg cat > $TMPC << EOF 2627fa6acb0cSRonnie Sahlberg#include <stdio.h> 2628c589b249SRonnie Sahlberg#include <iscsi/iscsi.h> 2629fa6acb0cSRonnie Sahlbergint main(void) { iscsi_unmap_sync(NULL,0,0,0,NULL,0); return 0; } 2630c589b249SRonnie SahlbergEOF 2631417c9d72SAlexander Graf if compile_prog "" "-liscsi" ; then 2632c589b249SRonnie Sahlberg libiscsi="yes" 2633c589b249SRonnie Sahlberg LIBS="$LIBS -liscsi" 2634c589b249SRonnie Sahlberg else 2635c589b249SRonnie Sahlberg if test "$libiscsi" = "yes" ; then 2636c589b249SRonnie Sahlberg feature_not_found "libiscsi" 2637c589b249SRonnie Sahlberg fi 2638c589b249SRonnie Sahlberg libiscsi="no" 2639c589b249SRonnie Sahlberg fi 2640c589b249SRonnie Sahlbergfi 2641c589b249SRonnie Sahlberg 2642c589b249SRonnie Sahlberg 2643c589b249SRonnie Sahlberg########################################## 26448bacde8dSNatanael Copa# Do we need libm 26458bacde8dSNatanael Copacat > $TMPC << EOF 26468bacde8dSNatanael Copa#include <math.h> 26478bacde8dSNatanael Copaint main(void) { return isnan(sin(0.0)); } 26488bacde8dSNatanael CopaEOF 26498bacde8dSNatanael Copaif compile_prog "" "" ; then 26508bacde8dSNatanael Copa : 26518bacde8dSNatanael Copaelif compile_prog "" "-lm" ; then 26528bacde8dSNatanael Copa LIBS="-lm $LIBS" 26538bacde8dSNatanael Copa libs_qga="-lm $libs_qga" 26548bacde8dSNatanael Copaelse 26558bacde8dSNatanael Copa echo 26568bacde8dSNatanael Copa echo "Error: libm check failed" 26578bacde8dSNatanael Copa echo 26588bacde8dSNatanael Copa exit 1 26598bacde8dSNatanael Copafi 26608bacde8dSNatanael Copa 26618bacde8dSNatanael Copa########################################## 2662da93a1fdSaliguori# Do we need librt 26638bacde8dSNatanael Copa# uClibc provides 2 versions of clock_gettime(), one with realtime 26648bacde8dSNatanael Copa# support and one without. This means that the clock_gettime() don't 26658bacde8dSNatanael Copa# need -lrt. We still need it for timer_create() so we check for this 26668bacde8dSNatanael Copa# function in addition. 2667da93a1fdSaliguoricat > $TMPC <<EOF 2668da93a1fdSaliguori#include <signal.h> 2669da93a1fdSaliguori#include <time.h> 26708bacde8dSNatanael Copaint main(void) { 26718bacde8dSNatanael Copa timer_create(CLOCK_REALTIME, NULL, NULL); 26728bacde8dSNatanael Copa return clock_gettime(CLOCK_REALTIME, NULL); 26738bacde8dSNatanael Copa} 2674da93a1fdSaliguoriEOF 2675da93a1fdSaliguori 267652166aa0SJuan Quintelaif compile_prog "" "" ; then 267707ffa4bdSJuan Quintela : 26788bacde8dSNatanael Copa# we need pthread for static linking. use previous pthread test result 26798bacde8dSNatanael Copaelif compile_prog "" "-lrt $pthread_lib" ; then 268007ffa4bdSJuan Quintela LIBS="-lrt $LIBS" 26818bacde8dSNatanael Copa libs_qga="-lrt $libs_qga" 2682da93a1fdSaliguorifi 2683da93a1fdSaliguori 268431ff504dSBlue Swirlif test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \ 2685179cf400SAndreas Färber "$aix" != "yes" -a "$haiku" != "yes" ; then 26866362a53fSJuan Quintela libs_softmmu="-lutil $libs_softmmu" 26876362a53fSJuan Quintelafi 26886362a53fSJuan Quintela 2689de5071c5SBlue Swirl########################################## 2690cd4ec0b4SGerd Hoffmann# spice probe 2691cd4ec0b4SGerd Hoffmannif test "$spice" != "no" ; then 2692cd4ec0b4SGerd Hoffmann cat > $TMPC << EOF 2693cd4ec0b4SGerd Hoffmann#include <spice.h> 2694cd4ec0b4SGerd Hoffmannint main(void) { spice_server_new(); return 0; } 2695cd4ec0b4SGerd HoffmannEOF 2696710fc4f5SJiri Denemark spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null) 2697710fc4f5SJiri Denemark spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null) 26984295e15aSAlon Levy if $pkg_config --atleast-version=0.8.2 spice-server >/dev/null 2>&1 && \ 26997e3efdacSAlon Levy $pkg_config --atleast-version=0.8.1 spice-protocol > /dev/null 2>&1 && \ 2700cd4ec0b4SGerd Hoffmann compile_prog "$spice_cflags" "$spice_libs" ; then 2701cd4ec0b4SGerd Hoffmann spice="yes" 2702cd4ec0b4SGerd Hoffmann libs_softmmu="$libs_softmmu $spice_libs" 2703cd4ec0b4SGerd Hoffmann QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags" 27042e0e3c39SAlon Levy spice_protocol_version=$($pkg_config --modversion spice-protocol) 27052e0e3c39SAlon Levy spice_server_version=$($pkg_config --modversion spice-server) 2706020af1c4SAlon Levy if $pkg_config --atleast-version=0.12.0 spice-protocol >/dev/null 2>&1; then 2707020af1c4SAlon Levy spice_qxl_io_monitors_config_async="yes" 2708020af1c4SAlon Levy fi 2709a639ab04SAlon Levy if $pkg_config --atleast-version=0.12.2 spice-protocol > /dev/null 2>&1; then 2710a639ab04SAlon Levy spice_qxl_client_monitors_config="yes" 2711a639ab04SAlon Levy fi 2712cd4ec0b4SGerd Hoffmann else 2713cd4ec0b4SGerd Hoffmann if test "$spice" = "yes" ; then 2714cd4ec0b4SGerd Hoffmann feature_not_found "spice" 2715cd4ec0b4SGerd Hoffmann fi 2716cd4ec0b4SGerd Hoffmann spice="no" 2717cd4ec0b4SGerd Hoffmann fi 2718cd4ec0b4SGerd Hoffmannfi 2719cd4ec0b4SGerd Hoffmann 2720111a38b0SRobert Relyea# check for libcacard for smartcard support 2721111a38b0SRobert Relyeaif test "$smartcard" != "no" ; then 2722111a38b0SRobert Relyea smartcard="yes" 2723111a38b0SRobert Relyea smartcard_cflags="" 2724111a38b0SRobert Relyea # TODO - what's the minimal nss version we support? 2725111a38b0SRobert Relyea if test "$smartcard_nss" != "no"; then 27265f01e06fSSergei Trofimovich cat > $TMPC << EOF 27275f01e06fSSergei Trofimovich#include <pk11pub.h> 27285f01e06fSSergei Trofimovichint main(void) { PK11_FreeSlot(0); return 0; } 27295f01e06fSSergei TrofimovichEOF 27300b22ef0fSPeter Maydell smartcard_includes="-I\$(SRC_PATH)/libcacard" 27318c741c22SAlon Levy libcacard_libs="$($pkg_config --libs nss 2>/dev/null) $glib_libs" 27328c741c22SAlon Levy libcacard_cflags="$($pkg_config --cflags nss 2>/dev/null) $glib_cflags" 27336ca026cbSPeter Maydell test_cflags="$libcacard_cflags" 27346ca026cbSPeter Maydell # The header files in nss < 3.13.3 have a bug which causes them to 27356ca026cbSPeter Maydell # emit a warning. If we're going to compile QEMU with -Werror, then 27366ca026cbSPeter Maydell # test that the headers don't have this bug. Otherwise we would pass 27376ca026cbSPeter Maydell # the configure test but fail to compile QEMU later. 27386ca026cbSPeter Maydell if test "$werror" = "yes"; then 27396ca026cbSPeter Maydell test_cflags="-Werror $test_cflags" 27406ca026cbSPeter Maydell fi 27415f01e06fSSergei Trofimovich if $pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 && \ 27426ca026cbSPeter Maydell compile_prog "$test_cflags" "$libcacard_libs"; then 27435f01e06fSSergei Trofimovich smartcard_nss="yes" 27440b22ef0fSPeter Maydell QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags" 27450b22ef0fSPeter Maydell QEMU_INCLUDES="$QEMU_INCLUDES $smartcard_includes" 2746ad4cf3f6SPaul Brook libs_softmmu="$libcacard_libs $libs_softmmu" 2747111a38b0SRobert Relyea else 2748111a38b0SRobert Relyea if test "$smartcard_nss" = "yes"; then 2749111a38b0SRobert Relyea feature_not_found "nss" 2750111a38b0SRobert Relyea fi 2751111a38b0SRobert Relyea smartcard_nss="no" 2752111a38b0SRobert Relyea fi 2753111a38b0SRobert Relyea fi 2754111a38b0SRobert Relyeafi 2755111a38b0SRobert Relyeaif test "$smartcard" = "no" ; then 2756111a38b0SRobert Relyea smartcard_nss="no" 2757111a38b0SRobert Relyeafi 2758111a38b0SRobert Relyea 275969354a83SHans de Goede# check for usbredirparser for usb network redirection support 276069354a83SHans de Goedeif test "$usb_redir" != "no" ; then 2761be4a8928SHans de Goede if $pkg_config --atleast-version=0.5 libusbredirparser >/dev/null 2>&1 ; then 276269354a83SHans de Goede usb_redir="yes" 276369354a83SHans de Goede usb_redir_cflags=$($pkg_config --cflags libusbredirparser 2>/dev/null) 276469354a83SHans de Goede usb_redir_libs=$($pkg_config --libs libusbredirparser 2>/dev/null) 276569354a83SHans de Goede QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags" 276656ab2ad1SAurelien Jarno libs_softmmu="$libs_softmmu $usb_redir_libs" 276769354a83SHans de Goede else 276869354a83SHans de Goede if test "$usb_redir" = "yes"; then 276969354a83SHans de Goede feature_not_found "usb-redir" 277069354a83SHans de Goede fi 277169354a83SHans de Goede usb_redir="no" 277269354a83SHans de Goede fi 277369354a83SHans de Goedefi 277469354a83SHans de Goede 2775cd4ec0b4SGerd Hoffmann########################################## 2776cd4ec0b4SGerd Hoffmann 2777747bbdf7SBlue Swirl########################################## 27785f6b9e8fSBlue Swirl# check if we have fdatasync 27795f6b9e8fSBlue Swirl 27805f6b9e8fSBlue Swirlfdatasync=no 27815f6b9e8fSBlue Swirlcat > $TMPC << EOF 27825f6b9e8fSBlue Swirl#include <unistd.h> 2783d1722a27SAlexandre Raymondint main(void) { 2784d1722a27SAlexandre Raymond#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0 2785d1722a27SAlexandre Raymondreturn fdatasync(0); 2786d1722a27SAlexandre Raymond#else 2787e172fe11SStefan Weil#error Not supported 2788d1722a27SAlexandre Raymond#endif 2789d1722a27SAlexandre Raymond} 27905f6b9e8fSBlue SwirlEOF 27915f6b9e8fSBlue Swirlif compile_prog "" "" ; then 27925f6b9e8fSBlue Swirl fdatasync=yes 27935f6b9e8fSBlue Swirlfi 27945f6b9e8fSBlue Swirl 279594a420b1SStefan Hajnoczi########################################## 2796e78815a5SAndreas Färber# check if we have madvise 2797e78815a5SAndreas Färber 2798e78815a5SAndreas Färbermadvise=no 2799e78815a5SAndreas Färbercat > $TMPC << EOF 2800e78815a5SAndreas Färber#include <sys/types.h> 2801e78815a5SAndreas Färber#include <sys/mman.h> 2802832ce9c2SScott Wood#include <stddef.h> 2803e78815a5SAndreas Färberint main(void) { return madvise(NULL, 0, MADV_DONTNEED); } 2804e78815a5SAndreas FärberEOF 2805e78815a5SAndreas Färberif compile_prog "" "" ; then 2806e78815a5SAndreas Färber madvise=yes 2807e78815a5SAndreas Färberfi 2808e78815a5SAndreas Färber 2809e78815a5SAndreas Färber########################################## 2810e78815a5SAndreas Färber# check if we have posix_madvise 2811e78815a5SAndreas Färber 2812e78815a5SAndreas Färberposix_madvise=no 2813e78815a5SAndreas Färbercat > $TMPC << EOF 2814e78815a5SAndreas Färber#include <sys/mman.h> 2815832ce9c2SScott Wood#include <stddef.h> 2816e78815a5SAndreas Färberint main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); } 2817e78815a5SAndreas FärberEOF 2818e78815a5SAndreas Färberif compile_prog "" "" ; then 2819e78815a5SAndreas Färber posix_madvise=yes 2820e78815a5SAndreas Färberfi 2821e78815a5SAndreas Färber 2822e78815a5SAndreas Färber########################################## 282394a420b1SStefan Hajnoczi# check if trace backend exists 282494a420b1SStefan Hajnoczi 2825650ab98dSLluís Vilanova$python "$source_path/scripts/tracetool.py" "--backend=$trace_backend" --check-backend > /dev/null 2> /dev/null 282694a420b1SStefan Hajnocziif test "$?" -ne 0 ; then 282794a420b1SStefan Hajnoczi echo 282894a420b1SStefan Hajnoczi echo "Error: invalid trace backend" 282994a420b1SStefan Hajnoczi echo "Please choose a supported trace backend." 283094a420b1SStefan Hajnoczi echo 283194a420b1SStefan Hajnoczi exit 1 283294a420b1SStefan Hajnoczifi 283394a420b1SStefan Hajnoczi 28347e24e92aSStefan Hajnoczi########################################## 28357e24e92aSStefan Hajnoczi# For 'ust' backend, test if ust headers are present 28367e24e92aSStefan Hajnocziif test "$trace_backend" = "ust"; then 28377e24e92aSStefan Hajnoczi cat > $TMPC << EOF 28387e24e92aSStefan Hajnoczi#include <ust/tracepoint.h> 28397e24e92aSStefan Hajnoczi#include <ust/marker.h> 28407e24e92aSStefan Hajnocziint main(void) { return 0; } 28417e24e92aSStefan HajnocziEOF 28427e24e92aSStefan Hajnoczi if compile_prog "" "" ; then 284394b4fefaSLluís Vilanova LIBS="-lust -lurcu-bp $LIBS" 2844c9a2e37cSLluís Vilanova libs_qga="-lust -lurcu-bp $libs_qga" 28457e24e92aSStefan Hajnoczi else 28467e24e92aSStefan Hajnoczi echo 28477e24e92aSStefan Hajnoczi echo "Error: Trace backend 'ust' missing libust header files" 28487e24e92aSStefan Hajnoczi echo 28497e24e92aSStefan Hajnoczi exit 1 28507e24e92aSStefan Hajnoczi fi 28517e24e92aSStefan Hajnoczifi 2852b3d08c02SDaniel P. Berrange 2853b3d08c02SDaniel P. Berrange########################################## 2854b3d08c02SDaniel P. Berrange# For 'dtrace' backend, test if 'dtrace' command is present 2855b3d08c02SDaniel P. Berrangeif test "$trace_backend" = "dtrace"; then 2856b3d08c02SDaniel P. Berrange if ! has 'dtrace' ; then 2857b3d08c02SDaniel P. Berrange echo 2858b3d08c02SDaniel P. Berrange echo "Error: dtrace command is not found in PATH $PATH" 2859b3d08c02SDaniel P. Berrange echo 2860b3d08c02SDaniel P. Berrange exit 1 2861b3d08c02SDaniel P. Berrange fi 2862c276b17dSDaniel P. Berrange trace_backend_stap="no" 2863c276b17dSDaniel P. Berrange if has 'stap' ; then 2864c276b17dSDaniel P. Berrange trace_backend_stap="yes" 2865c276b17dSDaniel P. Berrange fi 2866b3d08c02SDaniel P. Berrangefi 2867b3d08c02SDaniel P. Berrange 28687e24e92aSStefan Hajnoczi########################################## 2869023367e6SWolfgang Mauerer# __sync_fetch_and_and requires at least -march=i486. Many toolchains 2870023367e6SWolfgang Mauerer# use i686 as default anyway, but for those that don't, an explicit 2871023367e6SWolfgang Mauerer# specification is necessary 28721ba16968SStefan Weilif test "$vhost_net" = "yes" && test "$cpu" = "i386"; then 2873023367e6SWolfgang Mauerer cat > $TMPC << EOF 28747ace252aSStefan Weilstatic int sfaa(int *ptr) 2875023367e6SWolfgang Mauerer{ 2876023367e6SWolfgang Mauerer return __sync_fetch_and_and(ptr, 0); 2877023367e6SWolfgang Mauerer} 2878023367e6SWolfgang Mauerer 2879023367e6SWolfgang Mauererint main(int argc, char **argv) 2880023367e6SWolfgang Mauerer{ 2881023367e6SWolfgang Mauerer int val = 42; 2882023367e6SWolfgang Mauerer sfaa(&val); 2883023367e6SWolfgang Mauerer return val; 2884023367e6SWolfgang Mauerer} 2885023367e6SWolfgang MauererEOF 2886023367e6SWolfgang Mauerer if ! compile_prog "" "" ; then 2887caa50971SPeter Maydell QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS" 2888023367e6SWolfgang Mauerer fi 2889023367e6SWolfgang Mauererfi 2890023367e6SWolfgang Mauerer 2891023367e6SWolfgang Mauerer########################################## 2892519175a2SAlex Barcelo# check and set a backend for coroutine 2893d0e2fce5SAneesh Kumar K.V 2894519175a2SAlex Barcelo# default is ucontext, but always fallback to gthread 2895519175a2SAlex Barcelo# windows autodetected by make 2896519175a2SAlex Barceloif test "$coroutine" = "" -o "$coroutine" = "ucontext"; then 2897d0e2fce5SAneesh Kumar K.V if test "$darwin" != "yes"; then 2898d0e2fce5SAneesh Kumar K.V cat > $TMPC << EOF 2899d0e2fce5SAneesh Kumar K.V#include <ucontext.h> 2900cdf84806SPeter Maydell#ifdef __stub_makecontext 2901cdf84806SPeter Maydell#error Ignoring glibc stub makecontext which will always fail 2902cdf84806SPeter Maydell#endif 290375cafad7SStefan Weilint main(void) { makecontext(0, 0, 0); return 0; } 2904d0e2fce5SAneesh Kumar K.VEOF 2905d0e2fce5SAneesh Kumar K.V if compile_prog "" "" ; then 2906519175a2SAlex Barcelo coroutine_backend=ucontext 2907519175a2SAlex Barcelo else 2908519175a2SAlex Barcelo coroutine_backend=gthread 2909d0e2fce5SAneesh Kumar K.V fi 2910519175a2SAlex Barcelo else 2911519175a2SAlex Barcelo echo "Silently falling back into gthread backend under darwin" 2912519175a2SAlex Barcelo fi 2913519175a2SAlex Barceloelif test "$coroutine" = "gthread" ; then 2914519175a2SAlex Barcelo coroutine_backend=gthread 2915519175a2SAlex Barceloelif test "$coroutine" = "windows" ; then 2916519175a2SAlex Barcelo coroutine_backend=windows 2917fe91bfa8SAlex Barceloelif test "$coroutine" = "sigaltstack" ; then 2918fe91bfa8SAlex Barcelo coroutine_backend=sigaltstack 2919519175a2SAlex Barceloelse 2920519175a2SAlex Barcelo echo 2921519175a2SAlex Barcelo echo "Error: unknown coroutine backend $coroutine" 2922519175a2SAlex Barcelo echo 2923519175a2SAlex Barcelo exit 1 2924d0e2fce5SAneesh Kumar K.Vfi 2925d0e2fce5SAneesh Kumar K.V 2926d0e2fce5SAneesh Kumar K.V########################################## 2927d2042378SAneesh Kumar K.V# check if we have open_by_handle_at 2928d2042378SAneesh Kumar K.V 29294e1797f9SStefan Weilopen_by_handle_at=no 2930d2042378SAneesh Kumar K.Vcat > $TMPC << EOF 2931d2042378SAneesh Kumar K.V#include <fcntl.h> 2932acc55ba8SStefan Weil#if !defined(AT_EMPTY_PATH) 2933acc55ba8SStefan Weil# error missing definition 2934acc55ba8SStefan Weil#else 293575cafad7SStefan Weilint main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); } 2936acc55ba8SStefan Weil#endif 2937d2042378SAneesh Kumar K.VEOF 2938d2042378SAneesh Kumar K.Vif compile_prog "" "" ; then 2939d2042378SAneesh Kumar K.V open_by_handle_at=yes 2940d2042378SAneesh Kumar K.Vfi 2941d2042378SAneesh Kumar K.V 2942e06a765eSHarsh Prateek Bora######################################## 2943e06a765eSHarsh Prateek Bora# check if we have linux/magic.h 2944e06a765eSHarsh Prateek Bora 2945e06a765eSHarsh Prateek Boralinux_magic_h=no 2946e06a765eSHarsh Prateek Boracat > $TMPC << EOF 2947e06a765eSHarsh Prateek Bora#include <linux/magic.h> 2948e06a765eSHarsh Prateek Boraint main(void) { 294975cafad7SStefan Weil return 0; 2950e06a765eSHarsh Prateek Bora} 2951e06a765eSHarsh Prateek BoraEOF 2952e06a765eSHarsh Prateek Boraif compile_prog "" "" ; then 2953e06a765eSHarsh Prateek Bora linux_magic_h=yes 2954e06a765eSHarsh Prateek Borafi 2955e06a765eSHarsh Prateek Bora 29568ab1bf12SLuiz Capitulino######################################## 295706d71fa1SPeter Maydell# check whether we can disable the -Wunused-but-set-variable 295806d71fa1SPeter Maydell# option with a pragma (this is needed to silence a warning in 295906d71fa1SPeter Maydell# some versions of the valgrind VALGRIND_STACK_DEREGISTER macro.) 296006d71fa1SPeter Maydell# This test has to be compiled with -Werror as otherwise an 296106d71fa1SPeter Maydell# unknown pragma is only a warning. 296206d71fa1SPeter Maydellpragma_disable_unused_but_set=no 296306d71fa1SPeter Maydellcat > $TMPC << EOF 296406d71fa1SPeter Maydell#pragma GCC diagnostic ignored "-Wunused-but-set-variable" 296506d71fa1SPeter Maydellint main(void) { 296606d71fa1SPeter Maydell return 0; 296706d71fa1SPeter Maydell} 296806d71fa1SPeter MaydellEOF 296906d71fa1SPeter Maydellif compile_prog "-Werror" "" ; then 297006d71fa1SPeter Maydell pragma_disable_unused_but_set=yes 297106d71fa1SPeter Maydellfi 297206d71fa1SPeter Maydell 297306d71fa1SPeter Maydell######################################## 297462fe8331SChristian Borntraeger# check if we have valgrind/valgrind.h and valgrind/memcheck.h 29753f4349dcSKevin Wolf 29763f4349dcSKevin Wolfvalgrind_h=no 29773f4349dcSKevin Wolfcat > $TMPC << EOF 29783f4349dcSKevin Wolf#include <valgrind/valgrind.h> 297962fe8331SChristian Borntraeger#include <valgrind/memcheck.h> 29803f4349dcSKevin Wolfint main(void) { 29813f4349dcSKevin Wolf return 0; 29823f4349dcSKevin Wolf} 29833f4349dcSKevin WolfEOF 29843f4349dcSKevin Wolfif compile_prog "" "" ; then 29853f4349dcSKevin Wolf valgrind_h=yes 29863f4349dcSKevin Wolffi 29873f4349dcSKevin Wolf 29883f4349dcSKevin Wolf######################################## 29898ab1bf12SLuiz Capitulino# check if environ is declared 29908ab1bf12SLuiz Capitulino 29918ab1bf12SLuiz Capitulinohas_environ=no 29928ab1bf12SLuiz Capitulinocat > $TMPC << EOF 29938ab1bf12SLuiz Capitulino#include <unistd.h> 29948ab1bf12SLuiz Capitulinoint main(void) { 2995c075a723SBlue Swirl environ = 0; 29968ab1bf12SLuiz Capitulino return 0; 29978ab1bf12SLuiz Capitulino} 29988ab1bf12SLuiz CapitulinoEOF 29998ab1bf12SLuiz Capitulinoif compile_prog "" "" ; then 30008ab1bf12SLuiz Capitulino has_environ=yes 30018ab1bf12SLuiz Capitulinofi 30028ab1bf12SLuiz Capitulino 3003d2042378SAneesh Kumar K.V########################################## 3004e86ecd4bSJuan Quintela# End of CC checks 3005e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs 3006e86ecd4bSJuan Quintela 3007e86ecd4bSJuan Quintelaif test "$debug" = "no" ; then 30088be74dc0SAvi Kivity CFLAGS="-O2 -D_FORTIFY_SOURCE=2 $CFLAGS" 3009e86ecd4bSJuan Quintelafi 3010a316e378SJuan Quintela 301120ff6c80SAnthony Liguori# Disable zero malloc errors for official releases unless explicitly told to 301220ff6c80SAnthony Liguori# enable/disable 301320ff6c80SAnthony Liguoriif test -z "$zero_malloc" ; then 301420ff6c80SAnthony Liguori if test "$z_version" = "50" ; then 301520ff6c80SAnthony Liguori zero_malloc="no" 301620ff6c80SAnthony Liguori else 301720ff6c80SAnthony Liguori zero_malloc="yes" 301820ff6c80SAnthony Liguori fi 301920ff6c80SAnthony Liguorifi 302020ff6c80SAnthony Liguori 30216ca026cbSPeter Maydell# Now we've finished running tests it's OK to add -Werror to the compiler flags 30226ca026cbSPeter Maydellif test "$werror" = "yes"; then 30236ca026cbSPeter Maydell QEMU_CFLAGS="-Werror $QEMU_CFLAGS" 30246ca026cbSPeter Maydellfi 30256ca026cbSPeter Maydell 3026e86ecd4bSJuan Quintelaif test "$solaris" = "no" ; then 3027e86ecd4bSJuan Quintela if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then 30281156c669SJuan Quintela LDFLAGS="-Wl,--warn-common $LDFLAGS" 3029e86ecd4bSJuan Quintela fi 3030e86ecd4bSJuan Quintelafi 3031e86ecd4bSJuan Quintela 303294dd53c5SGerd Hoffmann# test if pod2man has --utf8 option 303394dd53c5SGerd Hoffmannif pod2man --help | grep -q utf8; then 303494dd53c5SGerd Hoffmann POD2MAN="pod2man --utf8" 303594dd53c5SGerd Hoffmannelse 303694dd53c5SGerd Hoffmann POD2MAN="pod2man" 303794dd53c5SGerd Hoffmannfi 303894dd53c5SGerd Hoffmann 3039952afb71SBlue Swirl# Use ASLR, no-SEH and DEP if available 3040952afb71SBlue Swirlif test "$mingw32" = "yes" ; then 3041952afb71SBlue Swirl for flag in --dynamicbase --no-seh --nxcompat; do 3042952afb71SBlue Swirl if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then 3043952afb71SBlue Swirl LDFLAGS="-Wl,$flag $LDFLAGS" 3044952afb71SBlue Swirl fi 3045952afb71SBlue Swirl done 3046952afb71SBlue Swirlfi 3047952afb71SBlue Swirl 304810ea68b3SEduardo Habkostqemu_confdir=$sysconfdir$confsuffix 3049528ae5b8SEduardo Habkostqemu_datadir=$datadir$confsuffix 30505a67135aSbellard 30514b1c11fdSDaniel P. Berrangetools="" 30524b1c11fdSDaniel P. Berrangeif test "$want_tools" = "yes" ; then 3053ca35f780SPaolo Bonzini tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools" 30544b1c11fdSDaniel P. Berrange if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then 30554b1c11fdSDaniel P. Berrange tools="qemu-nbd\$(EXESUF) $tools" 30564b1c11fdSDaniel P. Berrange fi 30574b1c11fdSDaniel P. Berrangefi 30584b1c11fdSDaniel P. Berrangeif test "$softmmu" = yes ; then 3059983eef5aSMeador Inge if test "$virtfs" != no ; then 3060be5ea8edSAnthony Liguori if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then 3061983eef5aSMeador Inge virtfs=yes 306217bff52bSM. Mohan Kumar tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)" 3063983eef5aSMeador Inge else 3064983eef5aSMeador Inge if test "$virtfs" = yes; then 3065263ddcc8SHarsh Prateek Bora echo "VirtFS is supported only on Linux and requires libcap-devel and libattr-devel" 3066263ddcc8SHarsh Prateek Bora exit 1 3067983eef5aSMeador Inge fi 306817500370SAndreas Färber virtfs=no 3069983eef5aSMeador Inge fi 307017bff52bSM. Mohan Kumar fi 3071ca35f780SPaolo Bonzini if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then 3072d138cee9SMichael Roth if [ "$guest_agent" = "yes" ]; then 307348ff7a62SMichael Roth tools="qemu-ga\$(EXESUF) $tools" 3074d138cee9SMichael Roth fi 3075ca35f780SPaolo Bonzini fi 307600c705fbSPaolo Bonzini if test "$smartcard_nss" = "yes" ; then 307700c705fbSPaolo Bonzini tools="vscclient\$(EXESUF) $tools" 307800c705fbSPaolo Bonzini fi 30794b1c11fdSDaniel P. Berrangefi 3080ca35f780SPaolo Bonzini 3081ca35f780SPaolo Bonzini# Mac OS X ships with a broken assembler 3082ca35f780SPaolo Bonziniroms= 3083ca35f780SPaolo Bonziniif test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ 3084ca35f780SPaolo Bonzini "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \ 3085ca35f780SPaolo Bonzini "$softmmu" = yes ; then 3086ca35f780SPaolo Bonzini roms="optionrom" 3087ca35f780SPaolo Bonzinifi 3088d0384d1dSAndreas Färberif test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then 308939ac8455SDavid Gibson roms="$roms spapr-rtas" 309039ac8455SDavid Gibsonfi 3091ca35f780SPaolo Bonzini 30927d13299dSbellardecho "Install prefix $prefix" 3093c00b2808SEduardo Habkostecho "BIOS directory `eval echo $qemu_datadir`" 3094f2b9e1e3SPaolo Bonziniecho "binary directory `eval echo $bindir`" 30953aa5d2beSAlon Levyecho "library directory `eval echo $libdir`" 30968bf188aaSMichael Tokarevecho "libexec directory `eval echo $libexecdir`" 30970f94d6daSAlon Levyecho "include directory `eval echo $includedir`" 30981c0fd160SAurelien Jarnoecho "config directory `eval echo $sysconfdir`" 309911d9f695Sbellardif test "$mingw32" = "no" ; then 3100f2b9e1e3SPaolo Bonziniecho "Manual directory `eval echo $mandir`" 310143ce4dfeSbellardecho "ELF interp prefix $interp_prefix" 310211d9f695Sbellardfi 31035a67135aSbellardecho "Source path $source_path" 31047d13299dSbellardecho "C compiler $cc" 310583469015Sbellardecho "Host C compiler $host_cc" 31063c4a4d0dSPeter Maydellecho "Objective-C compiler $objcc" 31070c439cbfSJuan Quintelaecho "CFLAGS $CFLAGS" 3108a558ee17SJuan Quintelaecho "QEMU_CFLAGS $QEMU_CFLAGS" 31090c439cbfSJuan Quintelaecho "LDFLAGS $LDFLAGS" 31107d13299dSbellardecho "make $make" 31116a882643Spbrookecho "install $install" 3112c886edfbSBlue Swirlecho "python $python" 3113e2d8830eSBradif test "$slirp" = "yes" ; then 3114e2d8830eSBrad echo "smbd $smbd" 3115e2d8830eSBradfi 3116a98fd896Sbellardecho "host CPU $cpu" 3117de83cd02Sbellardecho "host big endian $bigendian" 311897a847bcSbellardecho "target list $target_list" 3119ade25b0dSaurel32echo "tcg debug enabled $debug_tcg" 31207d13299dSbellardecho "gprof enabled $gprof" 312103b4fe7dSaliguoriecho "sparse enabled $sparse" 31221625af87Saliguoriecho "strip binaries $strip_opt" 312305c2a3e7Sbellardecho "profiler $profiler" 312443ce4dfeSbellardecho "static build $static" 312585aa5189Sbellardecho "-Werror enabled $werror" 31265b0753e0Sbellardif test "$darwin" = "yes" ; then 31275b0753e0Sbellard echo "Cocoa support $cocoa" 31285b0753e0Sbellardfi 312997a847bcSbellardecho "SDL support $sdl" 31304d3b6f6eSbalrogecho "curses support $curses" 3131769ce76dSAlexander Grafecho "curl support $curl" 313267b915a5Sbellardecho "mingw32 support $mingw32" 31330c58ac1cSmalcecho "Audio drivers $audio_drv_list" 31340c58ac1cSmalcecho "Extra audio cards $audio_card_list" 3135eb852011SMarkus Armbrusterecho "Block whitelist $block_drv_whitelist" 31368ff9cbf7Smalcecho "Mixer emulation $mixemu" 3137983eef5aSMeador Ingeecho "VirtFS support $virtfs" 3138821601eaSJes Sorensenecho "VNC support $vnc" 3139821601eaSJes Sorensenif test "$vnc" = "yes" ; then 31408d5d2d4cSths echo "VNC TLS support $vnc_tls" 31412f9606b3Saliguori echo "VNC SASL support $vnc_sasl" 31422f6f5c7aSCorentin Chary echo "VNC JPEG support $vnc_jpeg" 3143efe556adSCorentin Chary echo "VNC PNG support $vnc_png" 3144821601eaSJes Sorensenfi 31453142255cSblueswir1if test -n "$sparc_cpu"; then 31463142255cSblueswir1 echo "Target Sparc Arch $sparc_cpu" 31473142255cSblueswir1fi 3148e37630caSaliguoriecho "xen support $xen" 31492e4d9fb1Saurel32echo "brlapi support $brlapi" 3150a20a6f46SJuan Quintelaecho "bluez support $bluez" 3151a25dba17SJuan Quintelaecho "Documentation $docs" 3152c5937220Spbrook[ ! -z "$uname_release" ] && \ 3153c5937220Spbrookecho "uname -r $uname_release" 3154bd0c5661Spbrookecho "NPTL support $nptl" 3155379f6698SPaul Brookecho "GUEST_BASE $guest_base" 315640d6444eSAvi Kivityecho "PIE $pie" 31578a16d273Sthsecho "vde support $vde" 31585c6c3a6cSChristoph Hellwigecho "Linux AIO support $linux_aio" 3159758e8e38SVenkateswararao Jujjuri (JV)echo "ATTR/XATTR support $attr" 316077755340Sthsecho "Install blobs $blobs" 3161b31a0277SJuan Quintelaecho "KVM support $kvm" 31629195b2c2SStefan Weilecho "TCG interpreter $tcg_interpreter" 3163f652e6afSaurel32echo "fdt support $fdt" 3164ceb42de8Saliguoriecho "preadv support $preadv" 31655f6b9e8fSBlue Swirlecho "fdatasync $fdatasync" 3166e78815a5SAndreas Färberecho "madvise $madvise" 3167e78815a5SAndreas Färberecho "posix_madvise $posix_madvise" 3168ee682d27SStefan Weilecho "uuid support $uuid" 316947e98658SCorey Bryantecho "libcap-ng support $cap_ng" 3170d5970055SMichael S. Tsirkinecho "vhost-net support $vhost_net" 317194a420b1SStefan Hajnocziecho "Trace backend $trace_backend" 31729410b56cSPrerna Saxenaecho "Trace output file $trace_file-<pid>" 31732e0e3c39SAlon Levyecho "spice support $spice ($spice_protocol_version/$spice_server_version)" 3174f27aaf4bSChristian Brunnerecho "rbd support $rbd" 3175dce512deSChristoph Hellwigecho "xfsctl support $xfs" 3176111a38b0SRobert Relyeaecho "nss used $smartcard_nss" 317769354a83SHans de Goedeecho "usb net redir $usb_redir" 317820ff075bSMichael Walleecho "OpenGL support $opengl" 3179c589b249SRonnie Sahlbergecho "libiscsi support $libiscsi" 3180d138cee9SMichael Rothecho "build guest agent $guest_agent" 3181f794573eSEduardo Otuboecho "seccomp support $seccomp" 3182519175a2SAlex Barceloecho "coroutine backend $coroutine_backend" 318367b915a5Sbellard 31841ba16968SStefan Weilif test "$sdl_too_old" = "yes"; then 318524b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support" 3186e8cd23deSbellardfi 318797a847bcSbellard 318898ec69acSJuan Quintelaconfig_host_mak="config-host.mak" 31894bf6b55bSJuan Quintelaconfig_host_ld="config-host.ld" 319097a847bcSbellard 319198ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak 319298ec69acSJuan Quintelaprintf "# Configured with:" >> $config_host_mak 319398ec69acSJuan Quintelaprintf " '%s'" "$0" "$@" >> $config_host_mak 319498ec69acSJuan Quintelaecho >> $config_host_mak 319598ec69acSJuan Quintela 3196e6c3b0f7SPaolo Bonziniecho all: >> $config_host_mak 319799d7cc75SPaolo Bonziniecho "prefix=$prefix" >> $config_host_mak 319899d7cc75SPaolo Bonziniecho "bindir=$bindir" >> $config_host_mak 31993aa5d2beSAlon Levyecho "libdir=$libdir" >> $config_host_mak 32008bf188aaSMichael Tokarevecho "libexecdir=$libexecdir" >> $config_host_mak 32010f94d6daSAlon Levyecho "includedir=$includedir" >> $config_host_mak 320299d7cc75SPaolo Bonziniecho "mandir=$mandir" >> $config_host_mak 320399d7cc75SPaolo Bonziniecho "sysconfdir=$sysconfdir" >> $config_host_mak 320422d07038SEduardo Habkostecho "qemu_confdir=$qemu_confdir" >> $config_host_mak 32059afa52ceSEduardo Habkostecho "qemu_datadir=$qemu_datadir" >> $config_host_mak 32069afa52ceSEduardo Habkostecho "qemu_docdir=$qemu_docdir" >> $config_host_mak 32078bf188aaSMichael Tokarevecho "CONFIG_QEMU_HELPERDIR=\"$libexecdir\"" >> $config_host_mak 3208804edf29SJuan Quintela 320998ec69acSJuan Quintelaecho "ARCH=$ARCH" >> $config_host_mak 3210f8393946Saurel32if test "$debug_tcg" = "yes" ; then 32112358a494SJuan Quintela echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak 3212f8393946Saurel32fi 3213f3d08ee6SPaul Brookif test "$debug" = "yes" ; then 32142358a494SJuan Quintela echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak 3215f3d08ee6SPaul Brookfi 32161625af87Saliguoriif test "$strip_opt" = "yes" ; then 321752ba784dSHollis Blanchard echo "STRIP=${strip}" >> $config_host_mak 32181625af87Saliguorifi 32197d13299dSbellardif test "$bigendian" = "yes" ; then 3220e2542fe2SJuan Quintela echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak 322197a847bcSbellardfi 322267b915a5Sbellardif test "$mingw32" = "yes" ; then 322398ec69acSJuan Quintela echo "CONFIG_WIN32=y" >> $config_host_mak 32249fe6de94SBlue Swirl rc_version=`cat $source_path/VERSION` 32259fe6de94SBlue Swirl version_major=${rc_version%%.*} 32269fe6de94SBlue Swirl rc_version=${rc_version#*.} 32279fe6de94SBlue Swirl version_minor=${rc_version%%.*} 32289fe6de94SBlue Swirl rc_version=${rc_version#*.} 32299fe6de94SBlue Swirl version_subminor=${rc_version%%.*} 32309fe6de94SBlue Swirl version_micro=0 32319fe6de94SBlue Swirl echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak 32329fe6de94SBlue Swirl echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak 3233210fa556Spbrookelse 323435f4df27SJuan Quintela echo "CONFIG_POSIX=y" >> $config_host_mak 3235210fa556Spbrookfi 3236128ab2ffSblueswir1 3237dffcb71cSMark McLoughlinif test "$linux" = "yes" ; then 3238dffcb71cSMark McLoughlin echo "CONFIG_LINUX=y" >> $config_host_mak 3239dffcb71cSMark McLoughlinfi 3240dffcb71cSMark McLoughlin 324183fb7adfSbellardif test "$darwin" = "yes" ; then 324298ec69acSJuan Quintela echo "CONFIG_DARWIN=y" >> $config_host_mak 324383fb7adfSbellardfi 3244b29fe3edSmalc 3245b29fe3edSmalcif test "$aix" = "yes" ; then 324698ec69acSJuan Quintela echo "CONFIG_AIX=y" >> $config_host_mak 3247b29fe3edSmalcfi 3248b29fe3edSmalc 3249ec530c81Sbellardif test "$solaris" = "yes" ; then 325098ec69acSJuan Quintela echo "CONFIG_SOLARIS=y" >> $config_host_mak 32512358a494SJuan Quintela echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak 32520475a5caSths if test "$needs_libsunmath" = "yes" ; then 325375b5a697SJuan Quintela echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak 32540475a5caSths fi 3255ec530c81Sbellardfi 3256179cf400SAndreas Färberif test "$haiku" = "yes" ; then 3257179cf400SAndreas Färber echo "CONFIG_HAIKU=y" >> $config_host_mak 3258179cf400SAndreas Färberfi 325997a847bcSbellardif test "$static" = "yes" ; then 326098ec69acSJuan Quintela echo "CONFIG_STATIC=y" >> $config_host_mak 326197a847bcSbellardfi 32621ba16968SStefan Weilif test "$profiler" = "yes" ; then 32632358a494SJuan Quintela echo "CONFIG_PROFILER=y" >> $config_host_mak 326405c2a3e7Sbellardfi 3265c20709aaSbellardif test "$slirp" = "yes" ; then 326698ec69acSJuan Quintela echo "CONFIG_SLIRP=y" >> $config_host_mak 3267e2d8830eSBrad echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak 3268f9728943SPaolo Bonzini QEMU_INCLUDES="-I\$(SRC_PATH)/slirp $QEMU_INCLUDES" 3269c20709aaSbellardfi 32708a16d273Sthsif test "$vde" = "yes" ; then 327198ec69acSJuan Quintela echo "CONFIG_VDE=y" >> $config_host_mak 32728a16d273Sthsfi 327347e98658SCorey Bryantif test "$cap_ng" = "yes" ; then 327447e98658SCorey Bryant echo "CONFIG_LIBCAP=y" >> $config_host_mak 327547e98658SCorey Bryantfi 32760c58ac1cSmalcfor card in $audio_card_list; do 3277bb55b712SStefan Weil def=CONFIG_`echo $card | LC_ALL=C tr '[a-z]' '[A-Z]'` 327898ec69acSJuan Quintela echo "$def=y" >> $config_host_mak 32790c58ac1cSmalcdone 32802358a494SJuan Quintelaecho "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak 32810c58ac1cSmalcfor drv in $audio_drv_list; do 3282bb55b712SStefan Weil def=CONFIG_`echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]'` 328398ec69acSJuan Quintela echo "$def=y" >> $config_host_mak 3284923e4521Smalc if test "$drv" = "fmod"; then 32857aac6cb1SJuan Quintela echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak 3286fb065187Sbellard fi 32870c58ac1cSmalcdone 328867f86e8eSJuan Quintelaif test "$audio_pt_int" = "yes" ; then 328967f86e8eSJuan Quintela echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak 329067f86e8eSJuan Quintelafi 3291d5631638Smalcif test "$audio_win_int" = "yes" ; then 3292d5631638Smalc echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak 3293d5631638Smalcfi 3294eb852011SMarkus Armbrusterecho "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak 32958ff9cbf7Smalcif test "$mixemu" = "yes" ; then 329698ec69acSJuan Quintela echo "CONFIG_MIXEMU=y" >> $config_host_mak 32978ff9cbf7Smalcfi 3298821601eaSJes Sorensenif test "$vnc" = "yes" ; then 3299821601eaSJes Sorensen echo "CONFIG_VNC=y" >> $config_host_mak 3300821601eaSJes Sorensenfi 33018d5d2d4cSthsif test "$vnc_tls" = "yes" ; then 330298ec69acSJuan Quintela echo "CONFIG_VNC_TLS=y" >> $config_host_mak 3303525061bfSJuan Quintela echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak 33048d5d2d4cSthsfi 33052f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then 330698ec69acSJuan Quintela echo "CONFIG_VNC_SASL=y" >> $config_host_mak 330760ddf533SJuan Quintela echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak 33082f9606b3Saliguorifi 3309821601eaSJes Sorensenif test "$vnc_jpeg" = "yes" ; then 33102f6f5c7aSCorentin Chary echo "CONFIG_VNC_JPEG=y" >> $config_host_mak 33112f6f5c7aSCorentin Chary echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak 33122f6f5c7aSCorentin Charyfi 3313821601eaSJes Sorensenif test "$vnc_png" = "yes" ; then 3314efe556adSCorentin Chary echo "CONFIG_VNC_PNG=y" >> $config_host_mak 3315efe556adSCorentin Chary echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak 3316efe556adSCorentin Charyfi 331776655d6dSaliguoriif test "$fnmatch" = "yes" ; then 33182358a494SJuan Quintela echo "CONFIG_FNMATCH=y" >> $config_host_mak 331976655d6dSaliguorifi 3320ee682d27SStefan Weilif test "$uuid" = "yes" ; then 3321ee682d27SStefan Weil echo "CONFIG_UUID=y" >> $config_host_mak 3322ee682d27SStefan Weilfi 3323dce512deSChristoph Hellwigif test "$xfs" = "yes" ; then 3324dce512deSChristoph Hellwig echo "CONFIG_XFS=y" >> $config_host_mak 3325dce512deSChristoph Hellwigfi 3326b1a550a0Spbrookqemu_version=`head $source_path/VERSION` 332798ec69acSJuan Quintelaecho "VERSION=$qemu_version" >>$config_host_mak 33282358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak 332998ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak 333098ec69acSJuan Quintelaecho "TARGET_DIRS=$target_list" >> $config_host_mak 3331a25dba17SJuan Quintelaif [ "$docs" = "yes" ] ; then 333298ec69acSJuan Quintela echo "BUILD_DOCS=yes" >> $config_host_mak 3333cc8ae6deSpbrookfi 33341ac88f28SJuan Quintelaif test "$sdl" = "yes" ; then 333598ec69acSJuan Quintela echo "CONFIG_SDL=y" >> $config_host_mak 33368ad3a7ddSJuan Quintela echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak 333749ecc3faSbellardfi 333849ecc3faSbellardif test "$cocoa" = "yes" ; then 333998ec69acSJuan Quintela echo "CONFIG_COCOA=y" >> $config_host_mak 334049ecc3faSbellardfi 33414d3b6f6eSbalrogif test "$curses" = "yes" ; then 334298ec69acSJuan Quintela echo "CONFIG_CURSES=y" >> $config_host_mak 3343ab4e5602SJan Kiszkafi 33443b3f24adSaurel32if test "$atfile" = "yes" ; then 33452358a494SJuan Quintela echo "CONFIG_ATFILE=y" >> $config_host_mak 33463b3f24adSaurel32fi 3347ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then 33482358a494SJuan Quintela echo "CONFIG_UTIMENSAT=y" >> $config_host_mak 3349ebc996f3SRiku Voipiofi 3350099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then 33512358a494SJuan Quintela echo "CONFIG_PIPE2=y" >> $config_host_mak 3352099d6b0fSRiku Voipiofi 335340ff6d7eSKevin Wolfif test "$accept4" = "yes" ; then 335440ff6d7eSKevin Wolf echo "CONFIG_ACCEPT4=y" >> $config_host_mak 335540ff6d7eSKevin Wolffi 33563ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then 33572358a494SJuan Quintela echo "CONFIG_SPLICE=y" >> $config_host_mak 33583ce34dfbSvibisreenivasanfi 3359c2882b96SRiku Voipioif test "$eventfd" = "yes" ; then 3360c2882b96SRiku Voipio echo "CONFIG_EVENTFD=y" >> $config_host_mak 3361c2882b96SRiku Voipiofi 3362d0927938SUlrich Hechtif test "$fallocate" = "yes" ; then 3363d0927938SUlrich Hecht echo "CONFIG_FALLOCATE=y" >> $config_host_mak 3364d0927938SUlrich Hechtfi 3365c727f47dSPeter Maydellif test "$sync_file_range" = "yes" ; then 3366c727f47dSPeter Maydell echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak 3367c727f47dSPeter Maydellfi 3368dace20dcSPeter Maydellif test "$fiemap" = "yes" ; then 3369dace20dcSPeter Maydell echo "CONFIG_FIEMAP=y" >> $config_host_mak 3370dace20dcSPeter Maydellfi 3371d0927938SUlrich Hechtif test "$dup3" = "yes" ; then 3372d0927938SUlrich Hecht echo "CONFIG_DUP3=y" >> $config_host_mak 3373d0927938SUlrich Hechtfi 33743b6edd16SPeter Maydellif test "$epoll" = "yes" ; then 33753b6edd16SPeter Maydell echo "CONFIG_EPOLL=y" >> $config_host_mak 33763b6edd16SPeter Maydellfi 33773b6edd16SPeter Maydellif test "$epoll_create1" = "yes" ; then 33783b6edd16SPeter Maydell echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak 33793b6edd16SPeter Maydellfi 33803b6edd16SPeter Maydellif test "$epoll_pwait" = "yes" ; then 33813b6edd16SPeter Maydell echo "CONFIG_EPOLL_PWAIT=y" >> $config_host_mak 33823b6edd16SPeter Maydellfi 33833b3f24adSaurel32if test "$inotify" = "yes" ; then 33842358a494SJuan Quintela echo "CONFIG_INOTIFY=y" >> $config_host_mak 33853b3f24adSaurel32fi 3386c05c7a73SRiku Voipioif test "$inotify1" = "yes" ; then 3387c05c7a73SRiku Voipio echo "CONFIG_INOTIFY1=y" >> $config_host_mak 3388c05c7a73SRiku Voipiofi 33896ae9a1f4SJuan Quintelaif test "$byteswap_h" = "yes" ; then 33906ae9a1f4SJuan Quintela echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak 33916ae9a1f4SJuan Quintelafi 33926ae9a1f4SJuan Quintelaif test "$bswap_h" = "yes" ; then 33936ae9a1f4SJuan Quintela echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak 33946ae9a1f4SJuan Quintelafi 3395769ce76dSAlexander Grafif test "$curl" = "yes" ; then 339698ec69acSJuan Quintela echo "CONFIG_CURL=y" >> $config_host_mak 3397b1d5a277SJuan Quintela echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak 3398769ce76dSAlexander Graffi 33992e4d9fb1Saurel32if test "$brlapi" = "yes" ; then 340098ec69acSJuan Quintela echo "CONFIG_BRLAPI=y" >> $config_host_mak 34012e4d9fb1Saurel32fi 3402fb599c9aSbalrogif test "$bluez" = "yes" ; then 340398ec69acSJuan Quintela echo "CONFIG_BLUEZ=y" >> $config_host_mak 3404ef7635ecSJuan Quintela echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak 3405fb599c9aSbalrogfi 3406e18df141SAnthony Liguoriecho "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak 3407e37630caSaliguoriif test "$xen" = "yes" ; then 34086dbd588aSJan Kiszka echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak 3409d5b93ddfSAnthony PERARD echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak 3410e37630caSaliguorifi 34115c6c3a6cSChristoph Hellwigif test "$linux_aio" = "yes" ; then 34125c6c3a6cSChristoph Hellwig echo "CONFIG_LINUX_AIO=y" >> $config_host_mak 34135c6c3a6cSChristoph Hellwigfi 3414758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" = "yes" ; then 3415758e8e38SVenkateswararao Jujjuri (JV) echo "CONFIG_ATTR=y" >> $config_host_mak 3416758e8e38SVenkateswararao Jujjuri (JV)fi 34174f26f2b6SAvi Kivityif test "$libattr" = "yes" ; then 34184f26f2b6SAvi Kivity echo "CONFIG_LIBATTR=y" >> $config_host_mak 34194f26f2b6SAvi Kivityfi 3420983eef5aSMeador Ingeif test "$virtfs" = "yes" ; then 3421758e8e38SVenkateswararao Jujjuri (JV) echo "CONFIG_VIRTFS=y" >> $config_host_mak 3422758e8e38SVenkateswararao Jujjuri (JV)fi 342377755340Sthsif test "$blobs" = "yes" ; then 342498ec69acSJuan Quintela echo "INSTALL_BLOBS=yes" >> $config_host_mak 342577755340Sthsfi 3426bf9298b9Saliguoriif test "$iovec" = "yes" ; then 34272358a494SJuan Quintela echo "CONFIG_IOVEC=y" >> $config_host_mak 3428bf9298b9Saliguorifi 3429ceb42de8Saliguoriif test "$preadv" = "yes" ; then 34302358a494SJuan Quintela echo "CONFIG_PREADV=y" >> $config_host_mak 3431ceb42de8Saliguorifi 3432f652e6afSaurel32if test "$fdt" = "yes" ; then 34333f0855b1SJuan Quintela echo "CONFIG_FDT=y" >> $config_host_mak 3434f652e6afSaurel32fi 3435dcc38d1cSMarcelo Tosattiif test "$signalfd" = "yes" ; then 3436dcc38d1cSMarcelo Tosatti echo "CONFIG_SIGNALFD=y" >> $config_host_mak 3437dcc38d1cSMarcelo Tosattifi 34389195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then 34399195b2c2SStefan Weil echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak 34409195b2c2SStefan Weilfi 34415f6b9e8fSBlue Swirlif test "$fdatasync" = "yes" ; then 34425f6b9e8fSBlue Swirl echo "CONFIG_FDATASYNC=y" >> $config_host_mak 34435f6b9e8fSBlue Swirlfi 3444e78815a5SAndreas Färberif test "$madvise" = "yes" ; then 3445e78815a5SAndreas Färber echo "CONFIG_MADVISE=y" >> $config_host_mak 3446e78815a5SAndreas Färberfi 3447e78815a5SAndreas Färberif test "$posix_madvise" = "yes" ; then 3448e78815a5SAndreas Färber echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak 3449e78815a5SAndreas Färberfi 345097a847bcSbellard 3451cd4ec0b4SGerd Hoffmannif test "$spice" = "yes" ; then 3452cd4ec0b4SGerd Hoffmann echo "CONFIG_SPICE=y" >> $config_host_mak 3453cd4ec0b4SGerd Hoffmannfi 3454cd4ec0b4SGerd Hoffmann 3455020af1c4SAlon Levyif test "$spice_qxl_io_monitors_config_async" = "yes" ; then 3456020af1c4SAlon Levy echo "CONFIG_QXL_IO_MONITORS_CONFIG_ASYNC=y" >> $config_host_mak 3457020af1c4SAlon Levyfi 3458020af1c4SAlon Levy 3459a639ab04SAlon Levyif test "$spice_qxl_client_monitors_config" = "yes" ; then 3460a639ab04SAlon Levy echo "CONFIG_QXL_CLIENT_MONITORS_CONFIG=y" >> $config_host_mak 3461a639ab04SAlon Levyfi 3462a639ab04SAlon Levy 346336707144SAlon Levyif test "$smartcard" = "yes" ; then 346436707144SAlon Levy echo "CONFIG_SMARTCARD=y" >> $config_host_mak 346536707144SAlon Levyfi 346636707144SAlon Levy 3467111a38b0SRobert Relyeaif test "$smartcard_nss" = "yes" ; then 3468111a38b0SRobert Relyea echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak 3469ad4cf3f6SPaul Brook echo "libcacard_libs=$libcacard_libs" >> $config_host_mak 3470ad4cf3f6SPaul Brook echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak 3471111a38b0SRobert Relyeafi 3472111a38b0SRobert Relyea 347369354a83SHans de Goedeif test "$usb_redir" = "yes" ; then 347469354a83SHans de Goede echo "CONFIG_USB_REDIR=y" >> $config_host_mak 347569354a83SHans de Goedefi 347669354a83SHans de Goede 347720ff075bSMichael Walleif test "$opengl" = "yes" ; then 347820ff075bSMichael Walle echo "CONFIG_OPENGL=y" >> $config_host_mak 347920ff075bSMichael Wallefi 348020ff075bSMichael Walle 3481c589b249SRonnie Sahlbergif test "$libiscsi" = "yes" ; then 3482c589b249SRonnie Sahlberg echo "CONFIG_LIBISCSI=y" >> $config_host_mak 3483c589b249SRonnie Sahlbergfi 3484c589b249SRonnie Sahlberg 3485f794573eSEduardo Otuboif test "$seccomp" = "yes"; then 3486f794573eSEduardo Otubo echo "CONFIG_SECCOMP=y" >> $config_host_mak 3487f794573eSEduardo Otubofi 3488f794573eSEduardo Otubo 348983fb7adfSbellard# XXX: suppress that 34907d3505c5Sbellardif [ "$bsd" = "yes" ] ; then 34912358a494SJuan Quintela echo "CONFIG_BSD=y" >> $config_host_mak 34927d3505c5Sbellardfi 34937d3505c5Sbellard 34942358a494SJuan Quintelaecho "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak 3495c5937220Spbrook 349620ff6c80SAnthony Liguoriif test "$zero_malloc" = "yes" ; then 349720ff6c80SAnthony Liguori echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak 349820ff6c80SAnthony Liguorifi 3499f27aaf4bSChristian Brunnerif test "$rbd" = "yes" ; then 3500f27aaf4bSChristian Brunner echo "CONFIG_RBD=y" >> $config_host_mak 3501f27aaf4bSChristian Brunnerfi 350220ff6c80SAnthony Liguori 3503519175a2SAlex Barceloif test "$coroutine_backend" = "ucontext" ; then 3504d0e2fce5SAneesh Kumar K.V echo "CONFIG_UCONTEXT_COROUTINE=y" >> $config_host_mak 3505fe91bfa8SAlex Barceloelif test "$coroutine_backend" = "sigaltstack" ; then 3506fe91bfa8SAlex Barcelo echo "CONFIG_SIGALTSTACK_COROUTINE=y" >> $config_host_mak 3507d0e2fce5SAneesh Kumar K.Vfi 3508d0e2fce5SAneesh Kumar K.V 3509d2042378SAneesh Kumar K.Vif test "$open_by_handle_at" = "yes" ; then 3510d2042378SAneesh Kumar K.V echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak 3511d2042378SAneesh Kumar K.Vfi 3512d2042378SAneesh Kumar K.V 3513e06a765eSHarsh Prateek Boraif test "$linux_magic_h" = "yes" ; then 3514e06a765eSHarsh Prateek Bora echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak 3515e06a765eSHarsh Prateek Borafi 3516e06a765eSHarsh Prateek Bora 351706d71fa1SPeter Maydellif test "$pragma_disable_unused_but_set" = "yes" ; then 351806d71fa1SPeter Maydell echo "CONFIG_PRAGMA_DISABLE_UNUSED_BUT_SET=y" >> $config_host_mak 351906d71fa1SPeter Maydellfi 352006d71fa1SPeter Maydell 35213f4349dcSKevin Wolfif test "$valgrind_h" = "yes" ; then 35223f4349dcSKevin Wolf echo "CONFIG_VALGRIND_H=y" >> $config_host_mak 35233f4349dcSKevin Wolffi 35243f4349dcSKevin Wolf 35258ab1bf12SLuiz Capitulinoif test "$has_environ" = "yes" ; then 35268ab1bf12SLuiz Capitulino echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak 35278ab1bf12SLuiz Capitulinofi 35288ab1bf12SLuiz Capitulino 352968063649Sblueswir1# USB host support 353068063649Sblueswir1case "$usb" in 353168063649Sblueswir1linux) 353298ec69acSJuan Quintela echo "HOST_USB=linux" >> $config_host_mak 353368063649Sblueswir1;; 353468063649Sblueswir1bsd) 353598ec69acSJuan Quintela echo "HOST_USB=bsd" >> $config_host_mak 353668063649Sblueswir1;; 353768063649Sblueswir1*) 353898ec69acSJuan Quintela echo "HOST_USB=stub" >> $config_host_mak 353968063649Sblueswir1;; 354068063649Sblueswir1esac 354168063649Sblueswir1 3542e4858974SLluís# use default implementation for tracing backend-specific routines 3543e4858974SLluístrace_default=yes 354494a420b1SStefan Hajnocziecho "TRACE_BACKEND=$trace_backend" >> $config_host_mak 35456d8a764eSLluísif test "$trace_backend" = "nop"; then 35466d8a764eSLluís echo "CONFIG_TRACE_NOP=y" >> $config_host_mak 354722890ab5SPrerna Saxenafi 35489410b56cSPrerna Saxenaif test "$trace_backend" = "simple"; then 35496d8a764eSLluís echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak 3550e4858974SLluís trace_default=no 35516d8a764eSLluís # Set the appropriate trace file. 3552953ffe0fSAndreas Färber trace_file="\"$trace_file-\" FMT_pid" 35539410b56cSPrerna Saxenafi 35546d8a764eSLluísif test "$trace_backend" = "stderr"; then 35556d8a764eSLluís echo "CONFIG_TRACE_STDERR=y" >> $config_host_mak 35569a82b6a5SLluís trace_default=no 35576d8a764eSLluísfi 35586d8a764eSLluísif test "$trace_backend" = "ust"; then 35596d8a764eSLluís echo "CONFIG_TRACE_UST=y" >> $config_host_mak 35606d8a764eSLluísfi 35616d8a764eSLluísif test "$trace_backend" = "dtrace"; then 35626d8a764eSLluís echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak 35636d8a764eSLluís if test "$trace_backend_stap" = "yes" ; then 35646d8a764eSLluís echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak 35656d8a764eSLluís fi 3566c276b17dSDaniel P. Berrangefi 35679410b56cSPrerna Saxenaecho "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak 3568e4858974SLluísif test "$trace_default" = "yes"; then 3569e4858974SLluís echo "CONFIG_TRACE_DEFAULT=y" >> $config_host_mak 3570e4858974SLluísfi 35719410b56cSPrerna Saxena 357298ec69acSJuan Quintelaecho "TOOLS=$tools" >> $config_host_mak 357398ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak 3574804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak 3575804edf29SJuan Quintelaecho "INSTALL=$install" >> $config_host_mak 35761901cb14SBradecho "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak 35771901cb14SBradecho "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak 35781901cb14SBradecho "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak 3579c886edfbSBlue Swirlecho "PYTHON=$python" >> $config_host_mak 3580804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak 35812b2e59e6SPaolo Bonziniecho "CC_I386=$cc_i386" >> $config_host_mak 3582804edf29SJuan Quintelaecho "HOST_CC=$host_cc" >> $config_host_mak 35833c4a4d0dSPeter Maydellecho "OBJCC=$objcc" >> $config_host_mak 3584804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak 3585804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak 3586804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak 35879fe6de94SBlue Swirlecho "WINDRES=$windres" >> $config_host_mak 358844dc0ca3SAlon Levyecho "LIBTOOL=$libtool" >> $config_host_mak 3589e2a2ed06SJuan Quintelaecho "CFLAGS=$CFLAGS" >> $config_host_mak 3590a558ee17SJuan Quintelaecho "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak 3591f9728943SPaolo Bonziniecho "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak 3592e39f0062SPaolo Bonziniif test "$sparse" = "yes" ; then 3593e39f0062SPaolo Bonzini echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak 3594e39f0062SPaolo Bonzini echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak 3595e39f0062SPaolo Bonzini echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak 3596e39f0062SPaolo Bonzinifi 3597e2a2ed06SJuan Quintelaecho "LDFLAGS=$LDFLAGS" >> $config_host_mak 3598a36abbbbSJuan Quintelaecho "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak 3599a36abbbbSJuan Quintelaecho "ARLIBS_END=$arlibs_end" >> $config_host_mak 360073da375eSJuan Quintelaecho "LIBS+=$LIBS" >> $config_host_mak 36013e2e0e6bSJuan Quintelaecho "LIBS_TOOLS+=$libs_tools" >> $config_host_mak 3602804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak 3603957f1f99SMichael Rothecho "LIBS_QGA+=$libs_qga" >> $config_host_mak 360494dd53c5SGerd Hoffmannecho "POD2MAN=$POD2MAN" >> $config_host_mak 3605804edf29SJuan Quintela 36064bf6b55bSJuan Quintela# generate list of library paths for linker script 36074bf6b55bSJuan Quintela 36084bf6b55bSJuan Quintela$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld} 36094bf6b55bSJuan Quintela 36104bf6b55bSJuan Quintelaif test -f ${config_host_ld}~ ; then 36114bf6b55bSJuan Quintela if cmp -s $config_host_ld ${config_host_ld}~ ; then 36124bf6b55bSJuan Quintela mv ${config_host_ld}~ $config_host_ld 36134bf6b55bSJuan Quintela else 36144bf6b55bSJuan Quintela rm ${config_host_ld}~ 36154bf6b55bSJuan Quintela fi 36164bf6b55bSJuan Quintelafi 36174bf6b55bSJuan Quintela 36184d904533SBlue Swirlfor d in libdis libdis-user; do 361972b8b5a1SStefan Weil symlink "$source_path/Makefile.dis" "$d/Makefile" 36204d904533SBlue Swirl echo > $d/config.mak 36214d904533SBlue Swirldone 36224d904533SBlue Swirl 36236efd7517SPeter Maydell# use included Linux headers 36246efd7517SPeter Maydellif test "$linux" = "yes" ; then 3625a307beb6SAndreas Färber mkdir -p linux-headers 36266efd7517SPeter Maydell case "$cpu" in 36276efd7517SPeter Maydell i386|x86_64) 362808312a63SPeter Maydell linux_arch=x86 36296efd7517SPeter Maydell ;; 36306efd7517SPeter Maydell ppcemb|ppc|ppc64) 363108312a63SPeter Maydell linux_arch=powerpc 36326efd7517SPeter Maydell ;; 36336efd7517SPeter Maydell s390x) 363408312a63SPeter Maydell linux_arch=s390 363508312a63SPeter Maydell ;; 363608312a63SPeter Maydell *) 363708312a63SPeter Maydell # For most CPUs the kernel architecture name and QEMU CPU name match. 363808312a63SPeter Maydell linux_arch="$cpu" 36396efd7517SPeter Maydell ;; 36406efd7517SPeter Maydell esac 364108312a63SPeter Maydell # For non-KVM architectures we will not have asm headers 364208312a63SPeter Maydell if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then 364308312a63SPeter Maydell symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm 364408312a63SPeter Maydell fi 36456efd7517SPeter Maydellfi 36466efd7517SPeter Maydell 364797a847bcSbellardfor target in $target_list; do 364897a847bcSbellardtarget_dir="$target" 364925be210fSJuan Quintelaconfig_target_mak=$target_dir/config-target.mak 3650600309b6SBlue Swirltarget_arch2=`echo $target | cut -d '-' -f 1` 365197a847bcSbellardtarget_bigendian="no" 36521f3d3c8fSJuan Quintela 3653ea2d6a39SJuan Quintelacase "$target_arch2" in 3654e67db06eSJia Liu armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|or32|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb) 3655ea2d6a39SJuan Quintela target_bigendian=yes 3656ea2d6a39SJuan Quintela ;; 3657ea2d6a39SJuan Quintelaesac 365897a847bcSbellardtarget_softmmu="no" 3659997344f3Sbellardtarget_user_only="no" 3660831b7825Sthstarget_linux_user="no" 366184778508Sblueswir1target_bsd_user="no" 36629e407a85Spbrookcase "$target" in 3663600309b6SBlue Swirl ${target_arch2}-softmmu) 36649e407a85Spbrook target_softmmu="yes" 36659e407a85Spbrook ;; 3666600309b6SBlue Swirl ${target_arch2}-linux-user) 36679c7a4202SBlue Swirl if test "$linux" != "yes" ; then 36689c7a4202SBlue Swirl echo "ERROR: Target '$target' is only available on a Linux host" 36699c7a4202SBlue Swirl exit 1 36709c7a4202SBlue Swirl fi 36719e407a85Spbrook target_user_only="yes" 36729e407a85Spbrook target_linux_user="yes" 36739e407a85Spbrook ;; 3674600309b6SBlue Swirl ${target_arch2}-bsd-user) 36759cf55765SBlue Swirl if test "$bsd" != "yes" ; then 36769c7a4202SBlue Swirl echo "ERROR: Target '$target' is only available on a BSD host" 36779c7a4202SBlue Swirl exit 1 36789c7a4202SBlue Swirl fi 367984778508Sblueswir1 target_user_only="yes" 368084778508Sblueswir1 target_bsd_user="yes" 368184778508Sblueswir1 ;; 36829e407a85Spbrook *) 36839e407a85Spbrook echo "ERROR: Target '$target' not recognised" 36849e407a85Spbrook exit 1 36859e407a85Spbrook ;; 36869e407a85Spbrookesac 3687831b7825Sths 368897a847bcSbellardmkdir -p $target_dir 368925be210fSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_target_mak 369097a847bcSbellard 3691e5fe0c52Spbrookbflt="no" 3692bd0c5661Spbrooktarget_nptl="no" 3693600309b6SBlue Swirlinterp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"` 369456aebc89Spbrookgdb_xml_files="" 3695c2e3dee6SLaurent Viviertarget_short_alignment=2 3696c2e3dee6SLaurent Viviertarget_int_alignment=4 3697c2e3dee6SLaurent Viviertarget_long_alignment=4 3698c2e3dee6SLaurent Viviertarget_llong_alignment=8 3699de3a354aSMichael Walletarget_libs_softmmu= 37007ba1e619Saliguori 3701938b1eddSJuan QuintelaTARGET_ARCH="$target_arch2" 37026acff7daSJuan QuintelaTARGET_BASE_ARCH="" 3703e6e91b9cSJuan QuintelaTARGET_ABI_DIR="" 3704e73aae67SJuan Quintela 3705600309b6SBlue Swirlcase "$target_arch2" in 37062408a527Saurel32 i386) 370771deff27SAurelien Jarno target_phys_bits=64 37082408a527Saurel32 ;; 37092408a527Saurel32 x86_64) 37106acff7daSJuan Quintela TARGET_BASE_ARCH=i386 37111ad2134fSPaul Brook target_phys_bits=64 3712c2e3dee6SLaurent Vivier target_long_alignment=8 37132408a527Saurel32 ;; 37142408a527Saurel32 alpha) 37151ad2134fSPaul Brook target_phys_bits=64 3716c2e3dee6SLaurent Vivier target_long_alignment=8 3717a4b388ffSRichard Henderson target_nptl="yes" 37182408a527Saurel32 ;; 37192408a527Saurel32 arm|armeb) 3720b498c8a0SJuan Quintela TARGET_ARCH=arm 3721e5fe0c52Spbrook bflt="yes" 3722bd0c5661Spbrook target_nptl="yes" 372356aebc89Spbrook gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" 37243cc0cd61SPeter Maydell target_phys_bits=64 3725c2e3dee6SLaurent Vivier target_llong_alignment=4 3726412beee6SGrant Likely target_libs_softmmu="$fdt_libs" 37272408a527Saurel32 ;; 37282408a527Saurel32 cris) 3729253bd7f8Sedgar_igl target_nptl="yes" 37301ad2134fSPaul Brook target_phys_bits=32 37312408a527Saurel32 ;; 3732613a22c9SMichael Walle lm32) 3733613a22c9SMichael Walle target_phys_bits=32 3734de3a354aSMichael Walle target_libs_softmmu="$opengl_libs" 3735613a22c9SMichael Walle ;; 37362408a527Saurel32 m68k) 37370938cda5Saurel32 bflt="yes" 373856aebc89Spbrook gdb_xml_files="cf-core.xml cf-fp.xml" 37391ad2134fSPaul Brook target_phys_bits=32 3740c2e3dee6SLaurent Vivier target_int_alignment=2 3741c2e3dee6SLaurent Vivier target_long_alignment=2 3742c2e3dee6SLaurent Vivier target_llong_alignment=2 37432408a527Saurel32 ;; 3744877fdc12SEdgar E. Iglesias microblaze|microblazeel) 3745877fdc12SEdgar E. Iglesias TARGET_ARCH=microblaze 374672b675caSEdgar E. Iglesias bflt="yes" 374772b675caSEdgar E. Iglesias target_nptl="yes" 374872b675caSEdgar E. Iglesias target_phys_bits=32 3749de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 375072b675caSEdgar E. Iglesias ;; 37512408a527Saurel32 mips|mipsel) 3752b498c8a0SJuan Quintela TARGET_ARCH=mips 375325be210fSJuan Quintela echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak 3754f04dc72fSPaul Brook target_nptl="yes" 37551ad2134fSPaul Brook target_phys_bits=64 37562408a527Saurel32 ;; 37572408a527Saurel32 mipsn32|mipsn32el) 3758b498c8a0SJuan Quintela TARGET_ARCH=mipsn32 37596acff7daSJuan Quintela TARGET_BASE_ARCH=mips 376025be210fSJuan Quintela echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak 37611ad2134fSPaul Brook target_phys_bits=64 37622408a527Saurel32 ;; 37632408a527Saurel32 mips64|mips64el) 3764b498c8a0SJuan Quintela TARGET_ARCH=mips64 37656acff7daSJuan Quintela TARGET_BASE_ARCH=mips 376625be210fSJuan Quintela echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak 37671ad2134fSPaul Brook target_phys_bits=64 3768c2e3dee6SLaurent Vivier target_long_alignment=8 37692408a527Saurel32 ;; 3770e67db06eSJia Liu or32) 3771e67db06eSJia Liu TARGET_ARCH=openrisc 3772e67db06eSJia Liu TARGET_BASE_ARCH=openrisc 3773e67db06eSJia Liu target_phys_bits=32 3774e67db06eSJia Liu ;; 37752408a527Saurel32 ppc) 3776c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 37778b242ebaSAlexander Graf target_phys_bits=64 3778d6630708SNathan Froyd target_nptl="yes" 3779de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 37802408a527Saurel32 ;; 37812408a527Saurel32 ppcemb) 37826acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 3783e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 3784c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 37851ad2134fSPaul Brook target_phys_bits=64 3786d6630708SNathan Froyd target_nptl="yes" 3787de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 37882408a527Saurel32 ;; 37892408a527Saurel32 ppc64) 37906acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 3791e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 3792c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 37931ad2134fSPaul Brook target_phys_bits=64 3794c2e3dee6SLaurent Vivier target_long_alignment=8 3795de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 37962408a527Saurel32 ;; 37972408a527Saurel32 ppc64abi32) 3798b498c8a0SJuan Quintela TARGET_ARCH=ppc64 37996acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 3800e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 380125be210fSJuan Quintela echo "TARGET_ABI32=y" >> $config_target_mak 3802c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 38031ad2134fSPaul Brook target_phys_bits=64 3804de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 38052408a527Saurel32 ;; 38062408a527Saurel32 sh4|sh4eb) 3807b498c8a0SJuan Quintela TARGET_ARCH=sh4 38084dbed897Spbrook bflt="yes" 38090b6d3ae0Saurel32 target_nptl="yes" 38101ad2134fSPaul Brook target_phys_bits=32 38112408a527Saurel32 ;; 38122408a527Saurel32 sparc) 38131ad2134fSPaul Brook target_phys_bits=64 38142408a527Saurel32 ;; 38152408a527Saurel32 sparc64) 38166acff7daSJuan Quintela TARGET_BASE_ARCH=sparc 38171ad2134fSPaul Brook target_phys_bits=64 3818c2e3dee6SLaurent Vivier target_long_alignment=8 38192408a527Saurel32 ;; 38202408a527Saurel32 sparc32plus) 3821b498c8a0SJuan Quintela TARGET_ARCH=sparc64 38226acff7daSJuan Quintela TARGET_BASE_ARCH=sparc 3823e6e91b9cSJuan Quintela TARGET_ABI_DIR=sparc 382425be210fSJuan Quintela echo "TARGET_ABI32=y" >> $config_target_mak 38251ad2134fSPaul Brook target_phys_bits=64 38262408a527Saurel32 ;; 382724e804ecSAlexander Graf s390x) 3828bc434676SUlrich Hecht target_nptl="yes" 382924e804ecSAlexander Graf target_phys_bits=64 38307b3da903SAlexander Graf target_long_alignment=8 383124e804ecSAlexander Graf ;; 3832d2fbca94SGuan Xuetao unicore32) 3833d2fbca94SGuan Xuetao target_phys_bits=32 3834d2fbca94SGuan Xuetao ;; 3835cfa550c6SMax Filippov xtensa|xtensaeb) 3836cfa550c6SMax Filippov TARGET_ARCH=xtensa 3837cfa550c6SMax Filippov target_phys_bits=32 3838cfa550c6SMax Filippov ;; 38392408a527Saurel32 *) 3840de83cd02Sbellard echo "Unsupported target CPU" 3841de83cd02Sbellard exit 1 38422408a527Saurel32 ;; 38432408a527Saurel32esac 38445e8861a0SPaolo Bonzini# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH 38455e8861a0SPaolo Bonziniif [ "$TARGET_BASE_ARCH" = "" ]; then 38465e8861a0SPaolo Bonzini TARGET_BASE_ARCH=$TARGET_ARCH 38475e8861a0SPaolo Bonzinifi 38485e8861a0SPaolo Bonzini 38495e8861a0SPaolo Bonzinisymlink "$source_path/Makefile.target" "$target_dir/Makefile" 38505e8861a0SPaolo Bonzini 385199afc91dSDaniel P. Berrangeupper() { 385299afc91dSDaniel P. Berrange echo "$@"| LC_ALL=C tr '[a-z]' '[A-Z]' 385399afc91dSDaniel P. Berrange} 385499afc91dSDaniel P. Berrange 3855c2e3dee6SLaurent Vivierecho "TARGET_SHORT_ALIGNMENT=$target_short_alignment" >> $config_target_mak 3856c2e3dee6SLaurent Vivierecho "TARGET_INT_ALIGNMENT=$target_int_alignment" >> $config_target_mak 3857c2e3dee6SLaurent Vivierecho "TARGET_LONG_ALIGNMENT=$target_long_alignment" >> $config_target_mak 3858c2e3dee6SLaurent Vivierecho "TARGET_LLONG_ALIGNMENT=$target_llong_alignment" >> $config_target_mak 385925be210fSJuan Quintelaecho "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak 386099afc91dSDaniel P. Berrangetarget_arch_name="`upper $TARGET_ARCH`" 386125be210fSJuan Quintelaecho "TARGET_$target_arch_name=y" >> $config_target_mak 386225be210fSJuan Quintelaecho "TARGET_ARCH2=$target_arch2" >> $config_target_mak 386399afc91dSDaniel P. Berrangeecho "TARGET_TYPE=TARGET_TYPE_`upper $target_arch2`" >> $config_target_mak 386425be210fSJuan Quintelaecho "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak 3865e6e91b9cSJuan Quintelaif [ "$TARGET_ABI_DIR" = "" ]; then 3866e6e91b9cSJuan Quintela TARGET_ABI_DIR=$TARGET_ARCH 3867e6e91b9cSJuan Quintelafi 386825be210fSJuan Quintelaecho "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak 38691b0c87fcSJuan Quintelacase "$target_arch2" in 38701b0c87fcSJuan Quintela i386|x86_64) 38711b0c87fcSJuan Quintela if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then 387264b3cfdbSAnthony PERARD target_phys_bits=64 387325be210fSJuan Quintela echo "CONFIG_XEN=y" >> $config_target_mak 3874eb6fda0fSAnthony PERARD if test "$xen_pci_passthrough" = yes; then 3875eb6fda0fSAnthony PERARD echo "CONFIG_XEN_PCI_PASSTHROUGH=y" >> "$config_target_mak" 3876eb6fda0fSAnthony PERARD fi 387759d21e53SAlexander Graf else 387859d21e53SAlexander Graf echo "CONFIG_NO_XEN=y" >> $config_target_mak 3879432d268cSJun Nakajima fi 388059d21e53SAlexander Graf ;; 388159d21e53SAlexander Graf *) 388259d21e53SAlexander Graf echo "CONFIG_NO_XEN=y" >> $config_target_mak 38831b0c87fcSJuan Quintelaesac 3884c59249f9SJuan Quintelacase "$target_arch2" in 38850e60a699SAlexander Graf i386|x86_64|ppcemb|ppc|ppc64|s390x) 3886c59249f9SJuan Quintela # Make sure the target and host cpus are compatible 3887c59249f9SJuan Quintela if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \ 3888c59249f9SJuan Quintela \( "$target_arch2" = "$cpu" -o \ 3889c59249f9SJuan Quintela \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \ 38905f114bc6SAlexander Graf \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \ 3891adf82011SRené Rebe \( "$target_arch2" = "ppc" -a "$cpu" = "ppc64" \) -o \ 3892adf82011SRené Rebe \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc64" \) -o \ 3893c59249f9SJuan Quintela \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \ 3894c59249f9SJuan Quintela \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then 389525be210fSJuan Quintela echo "CONFIG_KVM=y" >> $config_target_mak 38961ba16968SStefan Weil if test "$vhost_net" = "yes" ; then 3897d5970055SMichael S. Tsirkin echo "CONFIG_VHOST_NET=y" >> $config_target_mak 3898d5970055SMichael S. Tsirkin fi 3899c59249f9SJuan Quintela fi 3900c59249f9SJuan Quintelaesac 3901fae001f5SWen Congyangcase "$target_arch2" in 3902fae001f5SWen Congyang i386|x86_64) 3903fae001f5SWen Congyang echo "CONFIG_HAVE_GET_MEMORY_MAPPING=y" >> $config_target_mak 3904fae001f5SWen Congyangesac 39057f762366SBlue Swirlif test "$target_arch2" = "ppc64" -a "$fdt" = "yes"; then 39060a6b8ddeSAlexander Graf echo "CONFIG_PSERIES=y" >> $config_target_mak 39070a6b8ddeSAlexander Graffi 3908de83cd02Sbellardif test "$target_bigendian" = "yes" ; then 390925be210fSJuan Quintela echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak 391097a847bcSbellardfi 391197a847bcSbellardif test "$target_softmmu" = "yes" ; then 3912b1aa27c4SPaul Brook echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak 391325be210fSJuan Quintela echo "CONFIG_SOFTMMU=y" >> $config_target_mak 3914de3a354aSMichael Walle echo "LIBS+=$libs_softmmu $target_libs_softmmu" >> $config_target_mak 39150e8c9214SAndreas Färber echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak 39165791f45bSKirill A. Shutemov echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak 3917ad4cf3f6SPaul Brook if test "$smartcard_nss" = "yes" ; then 3918ad4cf3f6SPaul Brook echo "subdir-$target: subdir-libcacard" >> $config_host_mak 3919ad4cf3f6SPaul Brook fi 39209fecbed0SWen Congyang case "$target_arch2" in 39219fecbed0SWen Congyang i386|x86_64) 39229fecbed0SWen Congyang echo "CONFIG_HAVE_CORE_DUMP=y" >> $config_target_mak 39239fecbed0SWen Congyang esac 3924de83cd02Sbellardfi 3925997344f3Sbellardif test "$target_user_only" = "yes" ; then 392625be210fSJuan Quintela echo "CONFIG_USER_ONLY=y" >> $config_target_mak 3927a2c80be9SStefan Weil echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak 3928997344f3Sbellardfi 3929831b7825Sthsif test "$target_linux_user" = "yes" ; then 393025be210fSJuan Quintela echo "CONFIG_LINUX_USER=y" >> $config_target_mak 3931831b7825Sthsfi 393256aebc89Spbrooklist="" 393356aebc89Spbrookif test ! -z "$gdb_xml_files" ; then 393456aebc89Spbrook for x in $gdb_xml_files; do 393556aebc89Spbrook list="$list $source_path/gdb-xml/$x" 393656aebc89Spbrook done 393725be210fSJuan Quintela echo "TARGET_XML_FILES=$list" >> $config_target_mak 39383d0f1517SJuan Quintelafi 3939de83cd02Sbellard 3940e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then 394125be210fSJuan Quintela echo "TARGET_HAS_BFLT=y" >> $config_target_mak 3942e5fe0c52Spbrookfi 3943bd0c5661Spbrookif test "$target_user_only" = "yes" \ 3944bd0c5661Spbrook -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then 394525be210fSJuan Quintela echo "CONFIG_USE_NPTL=y" >> $config_target_mak 3946bd0c5661Spbrookfi 3947379f6698SPaul Brookif test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then 394825be210fSJuan Quintela echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak 3949379f6698SPaul Brookfi 395084778508Sblueswir1if test "$target_bsd_user" = "yes" ; then 395125be210fSJuan Quintela echo "CONFIG_BSD_USER=y" >> $config_target_mak 395284778508Sblueswir1fi 39535b0753e0Sbellard 39545a4d701aSJan Kiszka# the static way of configuring available audio cards requires this workaround 39555a4d701aSJan Kiszkaif test "$target_user_only" != "yes" && grep -q CONFIG_PCSPK $source_path/default-configs/$target.mak; then 39565a4d701aSJan Kiszka echo "CONFIG_PCSPK=y" >> $config_target_mak 39575a4d701aSJan Kiszkafi 39585a4d701aSJan Kiszka 39594afddb55SJuan Quintela# generate QEMU_CFLAGS/LDFLAGS for targets 3960fa282484SJuan Quintela 39614afddb55SJuan Quintelacflags="" 3962f9728943SPaolo Bonziniincludes="" 3963fa282484SJuan Quintelaldflags="" 39649b8e111fSJuan Quintela 39659195b2c2SStefan Weilif test "$tcg_interpreter" = "yes"; then 39669195b2c2SStefan Weil includes="-I\$(SRC_PATH)/tcg/tci $includes" 39679195b2c2SStefan Weilelif test "$ARCH" = "sparc64" ; then 3968f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/sparc $includes" 396924e804ecSAlexander Grafelif test "$ARCH" = "s390x" ; then 3970f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/s390 $includes" 39715d8a4f8fSRichard Hendersonelif test "$ARCH" = "x86_64" ; then 3972f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/i386 $includes" 397357ddfbf7SJuan Quintelaelse 3974f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/\$(ARCH) $includes" 397557ddfbf7SJuan Quintelafi 3976f9728943SPaolo Bonziniincludes="-I\$(SRC_PATH)/tcg $includes" 397757ddfbf7SJuan Quintela 39786efd7517SPeter Maydellif test "$linux" = "yes" ; then 39796efd7517SPeter Maydell includes="-I\$(SRC_PATH)/linux-headers $includes" 39806efd7517SPeter Maydellfi 39816efd7517SPeter Maydell 39824d904533SBlue Swirlif test "$target_user_only" = "yes" ; then 39834d904533SBlue Swirl libdis_config_mak=libdis-user/config.mak 39844d904533SBlue Swirlelse 39854d904533SBlue Swirl libdis_config_mak=libdis/config.mak 39864d904533SBlue Swirlfi 39874d904533SBlue Swirl 398864656024SJuan Quintelafor i in $ARCH $TARGET_BASE_ARCH ; do 398964656024SJuan Quintela case "$i" in 399064656024SJuan Quintela alpha) 399125be210fSJuan Quintela echo "CONFIG_ALPHA_DIS=y" >> $config_target_mak 39924d904533SBlue Swirl echo "CONFIG_ALPHA_DIS=y" >> $libdis_config_mak 399364656024SJuan Quintela ;; 399464656024SJuan Quintela arm) 399525be210fSJuan Quintela echo "CONFIG_ARM_DIS=y" >> $config_target_mak 39964d904533SBlue Swirl echo "CONFIG_ARM_DIS=y" >> $libdis_config_mak 399764656024SJuan Quintela ;; 399864656024SJuan Quintela cris) 399925be210fSJuan Quintela echo "CONFIG_CRIS_DIS=y" >> $config_target_mak 40004d904533SBlue Swirl echo "CONFIG_CRIS_DIS=y" >> $libdis_config_mak 400164656024SJuan Quintela ;; 400264656024SJuan Quintela hppa) 400325be210fSJuan Quintela echo "CONFIG_HPPA_DIS=y" >> $config_target_mak 40044d904533SBlue Swirl echo "CONFIG_HPPA_DIS=y" >> $libdis_config_mak 400564656024SJuan Quintela ;; 400664656024SJuan Quintela i386|x86_64) 400725be210fSJuan Quintela echo "CONFIG_I386_DIS=y" >> $config_target_mak 40084d904533SBlue Swirl echo "CONFIG_I386_DIS=y" >> $libdis_config_mak 400964656024SJuan Quintela ;; 4010903ec55cSAurelien Jarno ia64*) 4011903ec55cSAurelien Jarno echo "CONFIG_IA64_DIS=y" >> $config_target_mak 4012903ec55cSAurelien Jarno echo "CONFIG_IA64_DIS=y" >> $libdis_config_mak 4013903ec55cSAurelien Jarno ;; 401479368f49SMichael Walle lm32) 401579368f49SMichael Walle echo "CONFIG_LM32_DIS=y" >> $config_target_mak 401679368f49SMichael Walle echo "CONFIG_LM32_DIS=y" >> $libdis_config_mak 401779368f49SMichael Walle ;; 401864656024SJuan Quintela m68k) 401925be210fSJuan Quintela echo "CONFIG_M68K_DIS=y" >> $config_target_mak 40204d904533SBlue Swirl echo "CONFIG_M68K_DIS=y" >> $libdis_config_mak 402164656024SJuan Quintela ;; 4022877fdc12SEdgar E. Iglesias microblaze*) 402325be210fSJuan Quintela echo "CONFIG_MICROBLAZE_DIS=y" >> $config_target_mak 40244d904533SBlue Swirl echo "CONFIG_MICROBLAZE_DIS=y" >> $libdis_config_mak 402564656024SJuan Quintela ;; 402664656024SJuan Quintela mips*) 402725be210fSJuan Quintela echo "CONFIG_MIPS_DIS=y" >> $config_target_mak 40284d904533SBlue Swirl echo "CONFIG_MIPS_DIS=y" >> $libdis_config_mak 402964656024SJuan Quintela ;; 4030e67db06eSJia Liu or32) 4031e67db06eSJia Liu echo "CONFIG_OPENRISC_DIS=y" >> $config_target_mak 4032e67db06eSJia Liu echo "CONFIG_OPENRISC_DIS=y" >> $libdis_config_mak 4033e67db06eSJia Liu ;; 403464656024SJuan Quintela ppc*) 403525be210fSJuan Quintela echo "CONFIG_PPC_DIS=y" >> $config_target_mak 40364d904533SBlue Swirl echo "CONFIG_PPC_DIS=y" >> $libdis_config_mak 403764656024SJuan Quintela ;; 403824e804ecSAlexander Graf s390*) 403925be210fSJuan Quintela echo "CONFIG_S390_DIS=y" >> $config_target_mak 40404d904533SBlue Swirl echo "CONFIG_S390_DIS=y" >> $libdis_config_mak 404164656024SJuan Quintela ;; 404264656024SJuan Quintela sh4) 404325be210fSJuan Quintela echo "CONFIG_SH4_DIS=y" >> $config_target_mak 40444d904533SBlue Swirl echo "CONFIG_SH4_DIS=y" >> $libdis_config_mak 404564656024SJuan Quintela ;; 404664656024SJuan Quintela sparc*) 404725be210fSJuan Quintela echo "CONFIG_SPARC_DIS=y" >> $config_target_mak 40484d904533SBlue Swirl echo "CONFIG_SPARC_DIS=y" >> $libdis_config_mak 404964656024SJuan Quintela ;; 4050cfa550c6SMax Filippov xtensa*) 4051cfa550c6SMax Filippov echo "CONFIG_XTENSA_DIS=y" >> $config_target_mak 4052cfa550c6SMax Filippov echo "CONFIG_XTENSA_DIS=y" >> $libdis_config_mak 4053cfa550c6SMax Filippov ;; 405464656024SJuan Quintela esac 405564656024SJuan Quinteladone 40569195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then 40579195b2c2SStefan Weil echo "CONFIG_TCI_DIS=y" >> $config_target_mak 40589195b2c2SStefan Weil echo "CONFIG_TCI_DIS=y" >> $libdis_config_mak 40599195b2c2SStefan Weilfi 406064656024SJuan Quintela 40616ee7126fSJuan Quintelacase "$ARCH" in 40626ee7126fSJuan Quintelaalpha) 40636ee7126fSJuan Quintela # Ensure there's only a single GP 40646ee7126fSJuan Quintela cflags="-msmall-data $cflags" 40656ee7126fSJuan Quintela;; 40666ee7126fSJuan Quintelaesac 40676ee7126fSJuan Quintela 406855d9c04bSJuan Quintelaif test "$target_softmmu" = "yes" ; then 406955d9c04bSJuan Quintela case "$TARGET_BASE_ARCH" in 407055d9c04bSJuan Quintela arm) 407155d9c04bSJuan Quintela cflags="-DHAS_AUDIO $cflags" 407255d9c04bSJuan Quintela ;; 407325a8bb96SMichael Walle lm32) 407425a8bb96SMichael Walle cflags="-DHAS_AUDIO $cflags" 407525a8bb96SMichael Walle ;; 407655d9c04bSJuan Quintela i386|mips|ppc) 407755d9c04bSJuan Quintela cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags" 407855d9c04bSJuan Quintela ;; 407955d9c04bSJuan Quintela esac 408055d9c04bSJuan Quintelafi 408155d9c04bSJuan Quintela 4082d02c1db3SJuan Quintelaif test "$gprof" = "yes" ; then 408325be210fSJuan Quintela echo "TARGET_GPROF=yes" >> $config_target_mak 4084d02c1db3SJuan Quintela if test "$target_linux_user" = "yes" ; then 4085d02c1db3SJuan Quintela cflags="-p $cflags" 4086d02c1db3SJuan Quintela ldflags="-p $ldflags" 4087d02c1db3SJuan Quintela fi 4088d02c1db3SJuan Quintela if test "$target_softmmu" = "yes" ; then 4089d02c1db3SJuan Quintela ldflags="-p $ldflags" 409025be210fSJuan Quintela echo "GPROF_CFLAGS=-p" >> $config_target_mak 4091d02c1db3SJuan Quintela fi 4092d02c1db3SJuan Quintelafi 4093d02c1db3SJuan Quintela 40949195b2c2SStefan Weilif test "$ARCH" = "tci"; then 40959195b2c2SStefan Weil linker_script="" 40969195b2c2SStefan Weilelse 40976ee7126fSJuan Quintela linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld" 40989195b2c2SStefan Weilfi 40999195b2c2SStefan Weil 41009b8e111fSJuan Quintelaif test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then 4101fa282484SJuan Quintela case "$ARCH" in 4102fa282484SJuan Quintela sparc) 4103fa282484SJuan Quintela # -static is used to avoid g1/g3 usage by the dynamic linker 4104322e5878SJuan Quintela ldflags="$linker_script -static $ldflags" 4105fa282484SJuan Quintela ;; 41064d58be06SRichard Henderson alpha | s390x) 41074d58be06SRichard Henderson # The default placement of the application is fine. 41084d58be06SRichard Henderson ;; 4109fd76e73aSRichard Henderson *) 4110322e5878SJuan Quintela ldflags="$linker_script $ldflags" 4111fa282484SJuan Quintela ;; 4112fa282484SJuan Quintela esac 4113fa282484SJuan Quintelafi 4114fa282484SJuan Quintela 411525be210fSJuan Quintelaecho "LDFLAGS+=$ldflags" >> $config_target_mak 411625be210fSJuan Quintelaecho "QEMU_CFLAGS+=$cflags" >> $config_target_mak 4117f9728943SPaolo Bonziniecho "QEMU_INCLUDES+=$includes" >> $config_target_mak 4118fa282484SJuan Quintela 411997a847bcSbellarddone # for target in $targets 41207d13299dSbellard 4121d1807a4fSPaolo Bonzini# build tree in object directory in case the source is not in the current directory 4122927b241dSMichael WalleDIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32" 41232dee8d54SPaolo BonziniDIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas" 41242d9f27d2SAnthony LiguoriDIRS="$DIRS roms/seabios roms/vgabios" 41252dee8d54SPaolo BonziniDIRS="$DIRS qapi-generated" 412600c705fbSPaolo BonziniDIRS="$DIRS libcacard libcacard/libcacard libcacard/trace" 4127c09015ddSAnthony LiguoriFILES="Makefile tests/tcg/Makefile qdict-test-data.txt" 4128c09015ddSAnthony LiguoriFILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit" 412900c705fbSPaolo BonziniFILES="$FILES tests/tcg/lm32/Makefile libcacard/Makefile" 4130ae0bfb79SBlue SwirlFILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps" 4131446b9165SAndreas FärberFILES="$FILES pc-bios/spapr-rtas/Makefile" 41322d9f27d2SAnthony LiguoriFILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile" 4133753d11f2SRichard Hendersonfor bios_file in \ 4134753d11f2SRichard Henderson $source_path/pc-bios/*.bin \ 4135753d11f2SRichard Henderson $source_path/pc-bios/*.rom \ 4136753d11f2SRichard Henderson $source_path/pc-bios/*.dtb \ 4137753d11f2SRichard Henderson $source_path/pc-bios/openbios-* \ 4138753d11f2SRichard Henderson $source_path/pc-bios/palcode-* 4139753d11f2SRichard Hendersondo 41407ea78b74SJan Kiszka FILES="$FILES pc-bios/`basename $bios_file`" 41417ea78b74SJan Kiszkadone 4142d1807a4fSPaolo Bonzinimkdir -p $DIRS 41437d13299dSbellardfor f in $FILES ; do 414472b8b5a1SStefan Weil if [ -e "$source_path/$f" ] && [ "$source_path" != `pwd` ]; then 4145f9245e10SPeter Maydell symlink "$source_path/$f" "$f" 4146f9245e10SPeter Maydell fi 41477d13299dSbellarddone 41481ad2134fSPaul Brook 4149c34ebfdcSAnthony Liguori# temporary config to build submodules 41502d9f27d2SAnthony Liguorifor rom in seabios vgabios ; do 4151c34ebfdcSAnthony Liguori config_mak=roms/$rom/config.mak 415237116c89SStefan Weil echo "# Automatically generated by configure - do not modify" > $config_mak 4153c34ebfdcSAnthony Liguori echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak 4154c34ebfdcSAnthony Liguori echo "CC=$cc" >> $config_mak 4155c34ebfdcSAnthony Liguori echo "BCC=bcc" >> $config_mak 4156c34ebfdcSAnthony Liguori echo "CPP=${cross_prefix}cpp" >> $config_mak 4157c34ebfdcSAnthony Liguori echo "OBJCOPY=objcopy" >> $config_mak 4158c34ebfdcSAnthony Liguori echo "IASL=iasl" >> $config_mak 4159c34ebfdcSAnthony Liguori echo "LD=$ld" >> $config_mak 4160c34ebfdcSAnthony Liguoridone 4161c34ebfdcSAnthony Liguori 41621ad2134fSPaul Brookfor hwlib in 32 64; do 41631ad2134fSPaul Brook d=libhw$hwlib 416472b8b5a1SStefan Weil symlink "$source_path/Makefile.hw" "$d/Makefile" 416537116c89SStefan Weil echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak 41661ad2134fSPaul Brookdone 4167add16157SBlue Swirl 4168add16157SBlue Swirld=libuser 416972b8b5a1SStefan Weilsymlink "$source_path/Makefile.user" "$d/Makefile" 4170b40292e7SJan Kiszka 4171b40292e7SJan Kiszkaif test "$docs" = "yes" ; then 4172b40292e7SJan Kiszka mkdir -p QMP 4173b40292e7SJan Kiszkafi 4174