17d13299dSbellard#!/bin/sh 27d13299dSbellard# 33ef693a0Sbellard# qemu configure script (c) 2003 Fabrice Bellard 47d13299dSbellard# 58cd05ab6SPeter Maydell 699519e67SCornelia Huck# Unset some variables known to interfere with behavior of common tools, 799519e67SCornelia Huck# just as autoconf does. 899519e67SCornelia HuckCLICOLOR_FORCE= GREP_OPTIONS= 999519e67SCornelia Huckunset CLICOLOR_FORCE GREP_OPTIONS 1099519e67SCornelia Huck 115e4dfd3dSJohn Snow# Don't allow CCACHE, if present, to use cached results of compile tests! 125e4dfd3dSJohn Snowexport CCACHE_RECACHE=yes 135e4dfd3dSJohn Snow 14dedad027SDaniel P. Berrangé# make source path absolute 15dedad027SDaniel P. Berrangésource_path=$(cd "$(dirname -- "$0")"; pwd) 16dedad027SDaniel P. Berrangé 17dedad027SDaniel P. Berrangéif test "$PWD" = "$source_path" 18dedad027SDaniel P. Berrangéthen 19dedad027SDaniel P. Berrangé echo "Using './build' as the directory for build output" 20dedad027SDaniel P. Berrangé 21dedad027SDaniel P. Berrangé MARKER=build/auto-created-by-configure 22dedad027SDaniel P. Berrangé 23dedad027SDaniel P. Berrangé if test -e build 24dedad027SDaniel P. Berrangé then 25dedad027SDaniel P. Berrangé if test -f $MARKER 26dedad027SDaniel P. Berrangé then 27dedad027SDaniel P. Berrangé rm -rf build 28dedad027SDaniel P. Berrangé else 29dedad027SDaniel P. Berrangé echo "ERROR: ./build dir already exists and was not previously created by configure" 30dedad027SDaniel P. Berrangé exit 1 31dedad027SDaniel P. Berrangé fi 32dedad027SDaniel P. Berrangé fi 33dedad027SDaniel P. Berrangé 34dedad027SDaniel P. Berrangé mkdir build 35dedad027SDaniel P. Berrangé touch $MARKER 36dedad027SDaniel P. Berrangé 37dedad027SDaniel P. Berrangé cat > GNUmakefile <<'EOF' 38dedad027SDaniel P. Berrangé# This file is auto-generated by configure to support in-source tree 39dedad027SDaniel P. Berrangé# 'make' command invocation 40dedad027SDaniel P. Berrangé 41dedad027SDaniel P. Berrangéifeq ($(MAKECMDGOALS),) 42dedad027SDaniel P. Berrangérecurse: all 43dedad027SDaniel P. Berrangéendif 44dedad027SDaniel P. Berrangé 45dedad027SDaniel P. Berrangé.NOTPARALLEL: % 46dedad027SDaniel P. Berrangé%: force 47dedad027SDaniel P. Berrangé @echo 'changing dir to build for $(MAKE) "$(MAKECMDGOALS)"...' 48dedad027SDaniel P. Berrangé @$(MAKE) -C build -f Makefile $(MAKECMDGOALS) 49dedad027SDaniel P. Berrangé @if test "$(MAKECMDGOALS)" = "distclean" && \ 50dedad027SDaniel P. Berrangé test -e build/auto-created-by-configure ; \ 51dedad027SDaniel P. Berrangé then \ 52dedad027SDaniel P. Berrangé rm -rf build GNUmakefile ; \ 53dedad027SDaniel P. Berrangé fi 54dedad027SDaniel P. Berrangéforce: ; 55dedad027SDaniel P. Berrangé.PHONY: force 56dedad027SDaniel P. BerrangéGNUmakefile: ; 57dedad027SDaniel P. Berrangé 58dedad027SDaniel P. BerrangéEOF 59dedad027SDaniel P. Berrangé cd build 60dedad027SDaniel P. Berrangé exec $source_path/configure "$@" 61dedad027SDaniel P. Berrangéfi 62dedad027SDaniel P. Berrangé 638cd05ab6SPeter Maydell# Temporary directory used for files created while 648cd05ab6SPeter Maydell# configure runs. Since it is in the build directory 658cd05ab6SPeter Maydell# we can safely blow away any previous version of it 668cd05ab6SPeter Maydell# (and we need not jump through hoops to try to delete 678cd05ab6SPeter Maydell# it when configure exits.) 688cd05ab6SPeter MaydellTMPDIR1="config-temp" 698cd05ab6SPeter Maydellrm -rf "${TMPDIR1}" 708cd05ab6SPeter Maydellmkdir -p "${TMPDIR1}" 718cd05ab6SPeter Maydellif [ $? -ne 0 ]; then 728cd05ab6SPeter Maydell echo "ERROR: failed to create temporary directory" 738cd05ab6SPeter Maydell exit 1 747d13299dSbellardfi 757d13299dSbellard 768cd05ab6SPeter MaydellTMPB="qemu-conf" 778cd05ab6SPeter MaydellTMPC="${TMPDIR1}/${TMPB}.c" 7866518bf6SDon SlutzTMPO="${TMPDIR1}/${TMPB}.o" 799c83ffd8SPeter MaydellTMPCXX="${TMPDIR1}/${TMPB}.cxx" 804cb37d11SPhilippe Mathieu-DaudéTMPM="${TMPDIR1}/${TMPB}.m" 818cd05ab6SPeter MaydellTMPE="${TMPDIR1}/${TMPB}.exe" 827d13299dSbellard 83da1d85e3SGerd Hoffmannrm -f config.log 849ac81bbbSmalc 85b48e3611SPeter Maydell# Print a helpful header at the top of config.log 86b48e3611SPeter Maydellecho "# QEMU configure log $(date)" >> config.log 87979ae168SPeter Maydellprintf "# Configured with:" >> config.log 88979ae168SPeter Maydellprintf " '%s'" "$0" "$@" >> config.log 89979ae168SPeter Maydellecho >> config.log 90b48e3611SPeter Maydellecho "#" >> config.log 91b48e3611SPeter Maydell 92835af899SPaolo Bonziniquote_sh() { 93835af899SPaolo Bonzini printf "%s" "$1" | sed "s,','\\\\'',g; s,.*,'&'," 94835af899SPaolo Bonzini} 95835af899SPaolo Bonzini 96d880a3baSPaolo Bonziniprint_error() { 97d880a3baSPaolo Bonzini (echo 9876ad07a4SPeter Maydell echo "ERROR: $1" 9976ad07a4SPeter Maydell while test -n "$2"; do 10076ad07a4SPeter Maydell echo " $2" 10176ad07a4SPeter Maydell shift 10276ad07a4SPeter Maydell done 103d880a3baSPaolo Bonzini echo) >&2 104d880a3baSPaolo Bonzini} 105d880a3baSPaolo Bonzini 106d880a3baSPaolo Bonzinierror_exit() { 107d880a3baSPaolo Bonzini print_error "$@" 10876ad07a4SPeter Maydell exit 1 10976ad07a4SPeter Maydell} 11076ad07a4SPeter Maydell 1119c83ffd8SPeter Maydelldo_compiler() { 1129c83ffd8SPeter Maydell # Run the compiler, capturing its output to the log. First argument 1139c83ffd8SPeter Maydell # is compiler binary to execute. 114630d86b7SDavid CARLIER compiler="$1" 1159c83ffd8SPeter Maydell shift 1168bbe05d7SIan Jackson if test -n "$BASH_VERSION"; then eval ' 1178bbe05d7SIan Jackson echo >>config.log " 1188bbe05d7SIan Jacksonfuncs: ${FUNCNAME[*]} 1198bbe05d7SIan Jacksonlines: ${BASH_LINENO[*]}" 1208bbe05d7SIan Jackson '; fi 1219c83ffd8SPeter Maydell echo $compiler "$@" >> config.log 1229c83ffd8SPeter Maydell $compiler "$@" >> config.log 2>&1 || return $? 1238dc38a78SPeter Maydell # Test passed. If this is an --enable-werror build, rerun 1248dc38a78SPeter Maydell # the test with -Werror and bail out if it fails. This 1258dc38a78SPeter Maydell # makes warning-generating-errors in configure test code 1268dc38a78SPeter Maydell # obvious to developers. 1278dc38a78SPeter Maydell if test "$werror" != "yes"; then 1288dc38a78SPeter Maydell return 0 1298dc38a78SPeter Maydell fi 1308dc38a78SPeter Maydell # Don't bother rerunning the compile if we were already using -Werror 1318dc38a78SPeter Maydell case "$*" in 1328dc38a78SPeter Maydell *-Werror*) 1338dc38a78SPeter Maydell return 0 1348dc38a78SPeter Maydell ;; 1358dc38a78SPeter Maydell esac 1369c83ffd8SPeter Maydell echo $compiler -Werror "$@" >> config.log 1379c83ffd8SPeter Maydell $compiler -Werror "$@" >> config.log 2>&1 && return $? 13876ad07a4SPeter Maydell error_exit "configure test passed without -Werror but failed with -Werror." \ 13976ad07a4SPeter Maydell "This is probably a bug in the configure script. The failing command" \ 14076ad07a4SPeter Maydell "will be at the bottom of config.log." \ 14176ad07a4SPeter Maydell "You can run configure with --disable-werror to bypass this check." 1428dc38a78SPeter Maydell} 1438dc38a78SPeter Maydell 1449c83ffd8SPeter Maydelldo_cc() { 1454dba2789SPaolo Bonzini do_compiler "$cc" $CPU_CFLAGS "$@" 1469c83ffd8SPeter Maydell} 1479c83ffd8SPeter Maydell 1489c83ffd8SPeter Maydelldo_cxx() { 1494dba2789SPaolo Bonzini do_compiler "$cxx" $CPU_CFLAGS "$@" 1509c83ffd8SPeter Maydell} 1519c83ffd8SPeter Maydell 1524cb37d11SPhilippe Mathieu-Daudédo_objc() { 1534cb37d11SPhilippe Mathieu-Daudé do_compiler "$objcc" $CPU_CFLAGS "$@" 1544cb37d11SPhilippe Mathieu-Daudé} 1554cb37d11SPhilippe Mathieu-Daudé 15600849b92SRichard Henderson# Append $2 to the variable named $1, with space separation 15700849b92SRichard Hendersonadd_to() { 15800849b92SRichard Henderson eval $1=\${$1:+\"\$$1 \"}\$2 15900849b92SRichard Henderson} 16000849b92SRichard Henderson 1619c83ffd8SPeter Maydellupdate_cxxflags() { 1629c83ffd8SPeter Maydell # Set QEMU_CXXFLAGS from QEMU_CFLAGS by filtering out those 1639c83ffd8SPeter Maydell # options which some versions of GCC's C++ compiler complain about 1649c83ffd8SPeter Maydell # because they only make sense for C programs. 165de38c0ccSPaolo Bonzini QEMU_CXXFLAGS="-D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS" 1668a9d3d56SRichard Henderson CONFIGURE_CXXFLAGS=$(echo "$CONFIGURE_CFLAGS" | sed s/-std=gnu11/-std=gnu++11/) 1679c83ffd8SPeter Maydell for arg in $QEMU_CFLAGS; do 1689c83ffd8SPeter Maydell case $arg in 1699c83ffd8SPeter Maydell -Wstrict-prototypes|-Wmissing-prototypes|-Wnested-externs|\ 1709c83ffd8SPeter Maydell -Wold-style-declaration|-Wold-style-definition|-Wredundant-decls) 1719c83ffd8SPeter Maydell ;; 1729c83ffd8SPeter Maydell *) 1739c83ffd8SPeter Maydell QEMU_CXXFLAGS=${QEMU_CXXFLAGS:+$QEMU_CXXFLAGS }$arg 1749c83ffd8SPeter Maydell ;; 1759c83ffd8SPeter Maydell esac 1769c83ffd8SPeter Maydell done 1779c83ffd8SPeter Maydell} 1789c83ffd8SPeter Maydell 17952166aa0SJuan Quintelacompile_object() { 180fd0e6053SJohn Snow local_cflags="$1" 181a2866660SPaolo Bonzini do_cc $CFLAGS $EXTRA_CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -c -o $TMPO $TMPC 18252166aa0SJuan Quintela} 18352166aa0SJuan Quintela 18452166aa0SJuan Quintelacompile_prog() { 18552166aa0SJuan Quintela local_cflags="$1" 18652166aa0SJuan Quintela local_ldflags="$2" 187a2866660SPaolo Bonzini do_cc $CFLAGS $EXTRA_CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC \ 188a2866660SPaolo Bonzini $LDFLAGS $EXTRA_LDFLAGS $CONFIGURE_LDFLAGS $QEMU_LDFLAGS $local_ldflags 18952166aa0SJuan Quintela} 19052166aa0SJuan Quintela 19111568d6dSPaolo Bonzini# symbolically link $1 to $2. Portable version of "ln -sf". 19211568d6dSPaolo Bonzinisymlink() { 19372b8b5a1SStefan Weil rm -rf "$2" 194ec5b06d7SAnthony Liguori mkdir -p "$(dirname "$2")" 19572b8b5a1SStefan Weil ln -s "$1" "$2" 19611568d6dSPaolo Bonzini} 19711568d6dSPaolo Bonzini 1980dba6195SLoïc Minier# check whether a command is available to this shell (may be either an 1990dba6195SLoïc Minier# executable or a builtin) 2000dba6195SLoïc Minierhas() { 2010dba6195SLoïc Minier type "$1" >/dev/null 2>&1 2020dba6195SLoïc Minier} 2030dba6195SLoïc Minier 2040a01d76fSMarc-André Lureauversion_ge () { 2052df52b9bSAlex Bennée local_ver1=$(expr "$1" : '\([0-9.]*\)' | tr . ' ') 2062df52b9bSAlex Bennée local_ver2=$(echo "$2" | tr . ' ') 2070a01d76fSMarc-André Lureau while true; do 2080a01d76fSMarc-André Lureau set x $local_ver1 2090a01d76fSMarc-André Lureau local_first=${2-0} 210c44a33e2SStefano Garzarella # 'shift 2' if $2 is set, or 'shift' if $2 is not set 211c44a33e2SStefano Garzarella shift ${2:+2} 2120a01d76fSMarc-André Lureau local_ver1=$* 2130a01d76fSMarc-André Lureau set x $local_ver2 2140a01d76fSMarc-André Lureau # the second argument finished, the first must be greater or equal 2150a01d76fSMarc-André Lureau test $# = 1 && return 0 2160a01d76fSMarc-André Lureau test $local_first -lt $2 && return 1 2170a01d76fSMarc-André Lureau test $local_first -gt $2 && return 0 218c44a33e2SStefano Garzarella shift ${2:+2} 2190a01d76fSMarc-André Lureau local_ver2=$* 2200a01d76fSMarc-André Lureau done 2210a01d76fSMarc-André Lureau} 2220a01d76fSMarc-André Lureau 2233b6b7550SPaolo Bonziniglob() { 2243b6b7550SPaolo Bonzini eval test -z '"${1#'"$2"'}"' 2253b6b7550SPaolo Bonzini} 2263b6b7550SPaolo Bonzini 227e9a3591fSChristian Borntraegerld_has() { 228e9a3591fSChristian Borntraeger $ld --help 2>/dev/null | grep ".$1" >/dev/null 2>&1 229e9a3591fSChristian Borntraeger} 230e9a3591fSChristian Borntraeger 2314ace32e2SAntonio Ospiteif printf %s\\n "$source_path" "$PWD" | grep -q "[[:space:]:]"; 2324ace32e2SAntonio Ospitethen 2334ace32e2SAntonio Ospite error_exit "main directory cannot contain spaces nor colons" 2344ace32e2SAntonio Ospitefi 2354ace32e2SAntonio Ospite 23614211825SAntonio Ospite# default parameters 2372ff6b91eSJuan Quintelacpu="" 238a31a8642SMichael S. Tsirkiniasl="iasl" 2391e43adfcSbellardinterp_prefix="/usr/gnemul/qemu-%M" 24043ce4dfeSbellardstatic="no" 2413812c0c4SJoelle van Dynecross_compile="no" 2427d13299dSbellardcross_prefix="" 24387430d5bSPaolo Bonziniaudio_drv_list="default" 244b64ec4e4SFam Zhengblock_drv_rw_whitelist="" 245b64ec4e4SFam Zhengblock_drv_ro_whitelist="" 246e49d021eSPeter Maydellhost_cc="cc" 247cdad781dSDaniele Buonolto="false" 24863678e17SSteven Noonanstack_protector="" 2491e4f6065SDaniele Buonosafe_stack="" 250afc3a8f9SAlex Bennéeuse_containers="yes" 251f2385398SAlex Bennéegdb_bin=$(command -v "gdb-multiarch" || command -v "gdb") 252ac0df51dSaliguori 25392712822SDaniel P. Berrangeif test -e "$source_path/.git" 25492712822SDaniel P. Berrangethen 2557d7dbf9dSDan Streetman git_submodules_action="update" 25692712822SDaniel P. Berrangeelse 2577d7dbf9dSDan Streetman git_submodules_action="ignore" 25892712822SDaniel P. Berrangefi 2592d652f24SPaolo Bonzini 2602d652f24SPaolo Bonzinigit_submodules="ui/keycodemapdb" 261cc84d63aSDaniel P. Berrangegit="git" 262ac0df51dSaliguori 263afb63ebdSStefan Weil# Don't accept a target_list environment variable. 264afb63ebdSStefan Weilunset target_list 265447e133fSAlex Bennéeunset target_list_exclude 266377529c0SPaolo Bonzini 267377529c0SPaolo Bonzini# Default value for a variable defining feature "foo". 268377529c0SPaolo Bonzini# * foo="no" feature will only be used if --enable-foo arg is given 269377529c0SPaolo Bonzini# * foo="" feature will be searched for, and if found, will be used 270377529c0SPaolo Bonzini# unless --disable-foo is given 271377529c0SPaolo Bonzini# * foo="yes" this value will only be set by --enable-foo flag. 272377529c0SPaolo Bonzini# feature will searched for, 273377529c0SPaolo Bonzini# if not found, configure exits with error 274377529c0SPaolo Bonzini# 275377529c0SPaolo Bonzini# Always add --enable-foo and --disable-foo command line args. 276377529c0SPaolo Bonzini# Distributions want to ensure that several features are compiled in, and it 277377529c0SPaolo Bonzini# is impossible without a --enable-foo that exits if a feature is not found. 278377529c0SPaolo Bonzini 279c87ea116SAlex Bennéedefault_feature="" 280c87ea116SAlex Bennée# parse CC options second 281c87ea116SAlex Bennéefor opt do 282c87ea116SAlex Bennée optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') 283c87ea116SAlex Bennée case "$opt" in 284c87ea116SAlex Bennée --without-default-features) 285c87ea116SAlex Bennée default_feature="no" 286c87ea116SAlex Bennée ;; 287c87ea116SAlex Bennée esac 288c87ea116SAlex Bennéedone 289c87ea116SAlex Bennée 290a2866660SPaolo BonziniEXTRA_CFLAGS="" 291a2866660SPaolo BonziniEXTRA_CXXFLAGS="" 292e910c7d9SPhilippe Mathieu-DaudéEXTRA_OBJCFLAGS="" 293a2866660SPaolo BonziniEXTRA_LDFLAGS="" 294a2866660SPaolo Bonzini 295c87ea116SAlex Bennéexen_ctrl_version="$default_feature" 2960848f8acSThomas Huthvhost_kernel="$default_feature" 297c87ea116SAlex Bennéevhost_net="$default_feature" 298c87ea116SAlex Bennéevhost_crypto="$default_feature" 299c87ea116SAlex Bennéevhost_scsi="$default_feature" 300c87ea116SAlex Bennéevhost_vsock="$default_feature" 301d88618f7SStefan Hajnoczivhost_user="no" 302c87ea116SAlex Bennéevhost_user_fs="$default_feature" 3030848f8acSThomas Huthvhost_vdpa="$default_feature" 304c87ea116SAlex Bennéerdma="$default_feature" 305c87ea116SAlex Bennéepvrdma="$default_feature" 306*28609749SPaolo Bonzinidebug_info="yes" 307377529c0SPaolo Bonzinidebug_tcg="no" 308377529c0SPaolo Bonzinidebug="no" 309247724cbSMarc-André Lureausanitizers="no" 3100aebab04SLingfeng Yangtsan="no" 3111f3f2bfeSMichael Tokarevfortify_source="yes" 3121d728c39SBlue Swirlgcov="no" 313c7328271SMiroslav RezaninaEXESUF="" 31417969268SFam Zhengmodules="no" 315bd83c861SChristian Ehrhardtmodule_upgrades="no" 316377529c0SPaolo Bonziniprefix="/usr/local" 31710ff82d1SMarc-André Lureauqemu_suffix="qemu" 318377529c0SPaolo Bonzinisoftmmu="yes" 319b915a2f1SPaolo Bonzinilinux_user="" 320b915a2f1SPaolo Bonzinibsd_user="" 321377529c0SPaolo Bonzinipkgversion="" 32240d6444eSAvi Kivitypie="" 323377529c0SPaolo Bonzinitrace_file="trace" 324c87ea116SAlex Bennéeopengl="$default_feature" 325519175a2SAlex Barcelocoroutine="" 326a1c5e949SDaniel P. Berrangetls_priority="NORMAL" 327ba4dd2aaSAlex Bennéeplugins="$default_feature" 328c87ea116SAlex Bennéesecret_keyring="$default_feature" 329a5665051SPaolo Bonzinimeson="" 3303b4da132SPaolo Bonzinimeson_args="" 33148328880SPaolo Bonzinininja="" 3323b4da132SPaolo Bonzinigio="$default_feature" 333a5665051SPaolo Bonziniskip_meson=no 334377529c0SPaolo Bonzini 3353b4da132SPaolo Bonzini# The following Meson options are handled manually (still they 3363b4da132SPaolo Bonzini# are included in the automatically generated help message) 3373b4da132SPaolo Bonzini 3383b4da132SPaolo Bonzini# 1. Track which submodules are needed 3390577e84dSThomas Huthif test "$default_feature" = no ; then 3400577e84dSThomas Huth capstone="disabled" 3410577e84dSThomas Huth slirp="disabled" 3420577e84dSThomas Huthelse 3433b4da132SPaolo Bonzini capstone="auto" 3443b4da132SPaolo Bonzini slirp="auto" 3450577e84dSThomas Huthfi 3460577e84dSThomas Huthfdt="auto" 3473b4da132SPaolo Bonzini 3483b4da132SPaolo Bonzini# 2. Support --with/--without option 3493b4da132SPaolo Bonzinidefault_devices="true" 3503b4da132SPaolo Bonzini 3513b4da132SPaolo Bonzini# 3. Automatically enable/disable other options 3523b4da132SPaolo Bonzinitcg="enabled" 3533b4da132SPaolo Bonzinicfi="false" 3543b4da132SPaolo Bonzini 3553b4da132SPaolo Bonzini# 4. Detection partly done in configure 3563b4da132SPaolo Bonzinixen=${default_feature:+disabled} 357898be3e0SPeter Maydell 358c87ea116SAlex Bennée# parse CC options second 359ac0df51dSaliguorifor opt do 36089138857SStefan Weil optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') 361ac0df51dSaliguori case "$opt" in 362ac0df51dSaliguori --cross-prefix=*) cross_prefix="$optarg" 3633812c0c4SJoelle van Dyne cross_compile="yes" 364ac0df51dSaliguori ;; 3653d8df640SPaolo Bonzini --cc=*) CC="$optarg" 366ac0df51dSaliguori ;; 36783f73fceSTomoki Sekiyama --cxx=*) CXX="$optarg" 36883f73fceSTomoki Sekiyama ;; 3692ff6b91eSJuan Quintela --cpu=*) cpu="$optarg" 3702ff6b91eSJuan Quintela ;; 371a2866660SPaolo Bonzini --extra-cflags=*) 372a2866660SPaolo Bonzini EXTRA_CFLAGS="$EXTRA_CFLAGS $optarg" 373a2866660SPaolo Bonzini EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS $optarg" 374e910c7d9SPhilippe Mathieu-Daudé EXTRA_OBJCFLAGS="$EXTRA_OBJCFLAGS $optarg" 375e2a2ed06SJuan Quintela ;; 376a2866660SPaolo Bonzini --extra-cxxflags=*) EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS $optarg" 37711cde1c8SBruno Dominguez ;; 378e910c7d9SPhilippe Mathieu-Daudé --extra-objcflags=*) EXTRA_OBJCFLAGS="$EXTRA_OBJCFLAGS $optarg" 379e910c7d9SPhilippe Mathieu-Daudé ;; 380a2866660SPaolo Bonzini --extra-ldflags=*) EXTRA_LDFLAGS="$EXTRA_LDFLAGS $optarg" 381e2a2ed06SJuan Quintela ;; 382d75402b5SAlex Bennée --cross-cc-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-cc-FOO option" 383d75402b5SAlex Bennée ;; 384479ca4ccSMatheus Ferst --cross-cc-cflags-*) cc_arch=${opt#--cross-cc-cflags-}; cc_arch=${cc_arch%%=*} 385d422b2bcSAlex Bennée eval "cross_cc_cflags_${cc_arch}=\$optarg" 3862038f8c8SPaolo Bonzini cross_cc_vars="$cross_cc_vars cross_cc_cflags_${cc_arch}" 387d422b2bcSAlex Bennée ;; 388d75402b5SAlex Bennée --cross-cc-*) cc_arch=${opt#--cross-cc-}; cc_arch=${cc_arch%%=*} 389d75402b5SAlex Bennée eval "cross_cc_${cc_arch}=\$optarg" 3902038f8c8SPaolo Bonzini cross_cc_vars="$cross_cc_vars cross_cc_${cc_arch}" 391d75402b5SAlex Bennée ;; 392ac0df51dSaliguori esac 393ac0df51dSaliguoridone 394ac0df51dSaliguori# OS specific 395ac0df51dSaliguori# Using uname is really, really broken. Once we have the right set of checks 39693148aa5SStefan Weil# we can eliminate its usage altogether. 397ac0df51dSaliguori 398e49d021eSPeter Maydell# Preferred compiler: 399e49d021eSPeter Maydell# ${CC} (if set) 400e49d021eSPeter Maydell# ${cross_prefix}gcc (if cross-prefix specified) 401e49d021eSPeter Maydell# system compiler 402e49d021eSPeter Maydellif test -z "${CC}${cross_prefix}"; then 403e49d021eSPeter Maydell cc="$host_cc" 404e49d021eSPeter Maydellelse 405b3198cc2SStuart Yoder cc="${CC-${cross_prefix}gcc}" 406e49d021eSPeter Maydellfi 407e49d021eSPeter Maydell 40883f73fceSTomoki Sekiyamaif test -z "${CXX}${cross_prefix}"; then 40983f73fceSTomoki Sekiyama cxx="c++" 41083f73fceSTomoki Sekiyamaelse 41183f73fceSTomoki Sekiyama cxx="${CXX-${cross_prefix}g++}" 41283f73fceSTomoki Sekiyamafi 41383f73fceSTomoki Sekiyama 414b3198cc2SStuart Yoderar="${AR-${cross_prefix}ar}" 415cdbd727cSRichard Hendersonas="${AS-${cross_prefix}as}" 4165f6f0e27SRichard Hendersonccas="${CCAS-$cc}" 4173dd46c78SBlue Swirlcpp="${CPP-$cc -E}" 418b3198cc2SStuart Yoderobjcopy="${OBJCOPY-${cross_prefix}objcopy}" 419b3198cc2SStuart Yoderld="${LD-${cross_prefix}ld}" 4209f81aeb5SAlistair Francisranlib="${RANLIB-${cross_prefix}ranlib}" 4214852ee95SStefan Weilnm="${NM-${cross_prefix}nm}" 42235acbb30SPaolo Bonzinismbd="$SMBD" 423b3198cc2SStuart Yoderstrip="${STRIP-${cross_prefix}strip}" 424b3198cc2SStuart Yoderwindres="${WINDRES-${cross_prefix}windres}" 42517884d7bSSergei Trofimovichpkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}" 42617884d7bSSergei Trofimovichquery_pkg_config() { 42717884d7bSSergei Trofimovich "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@" 42817884d7bSSergei Trofimovich} 42917884d7bSSergei Trofimovichpkg_config=query_pkg_config 43047c03744SDave Airliesdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}" 431ac0df51dSaliguori 432be17dc90SMichael S. Tsirkin# default flags for all hosts 4332d31515bSPeter Maydell# We use -fwrapv to tell the compiler that we require a C dialect where 4342d31515bSPeter Maydell# left shift of signed integers is well defined and has the expected 4352d31515bSPeter Maydell# 2s-complement style results. (Both clang and gcc agree that it 4362d31515bSPeter Maydell# provides these semantics.) 437de38c0ccSPaolo BonziniQEMU_CFLAGS="-fno-strict-aliasing -fno-common -fwrapv" 438086d5f75SPaolo BonziniQEMU_CFLAGS="-Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS" 439c95e3080SKevin WolfQEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS" 440be17dc90SMichael S. TsirkinQEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS" 4415770e8afSPaolo Bonzini 442de38c0ccSPaolo BonziniQEMU_LDFLAGS= 443de38c0ccSPaolo Bonzini 4445770e8afSPaolo Bonzini# Flags that are needed during configure but later taken care of by Meson 4458a9d3d56SRichard HendersonCONFIGURE_CFLAGS="-std=gnu11 -Wall" 4465770e8afSPaolo BonziniCONFIGURE_LDFLAGS= 447086d5f75SPaolo Bonzini 448be17dc90SMichael S. Tsirkin 449ac0df51dSaliguoricheck_define() { 450ac0df51dSaliguoricat > $TMPC <<EOF 451ac0df51dSaliguori#if !defined($1) 452fd786e1aSPeter Maydell#error $1 not defined 453ac0df51dSaliguori#endif 454ac0df51dSaliguoriint main(void) { return 0; } 455ac0df51dSaliguoriEOF 45652166aa0SJuan Quintela compile_object 457ac0df51dSaliguori} 458ac0df51dSaliguori 459307119e7SGerd Hoffmanncheck_include() { 460307119e7SGerd Hoffmanncat > $TMPC <<EOF 461307119e7SGerd Hoffmann#include <$1> 462307119e7SGerd Hoffmannint main(void) { return 0; } 463307119e7SGerd HoffmannEOF 464307119e7SGerd Hoffmann compile_object 465307119e7SGerd Hoffmann} 466307119e7SGerd Hoffmann 46793b25869SJohn Snowwrite_c_skeleton() { 46893b25869SJohn Snow cat > $TMPC <<EOF 46993b25869SJohn Snowint main(void) { return 0; } 47093b25869SJohn SnowEOF 47193b25869SJohn Snow} 47293b25869SJohn Snow 473bbea4050SPeter Maydellif check_define __linux__ ; then 474ba7c60c2SPaolo Bonzini targetos=linux 475bbea4050SPeter Maydellelif check_define _WIN32 ; then 476ba7c60c2SPaolo Bonzini targetos=windows 477bbea4050SPeter Maydellelif check_define __OpenBSD__ ; then 478ba7c60c2SPaolo Bonzini targetos=openbsd 479bbea4050SPeter Maydellelif check_define __sun__ ; then 480ba7c60c2SPaolo Bonzini targetos=sunos 481bbea4050SPeter Maydellelif check_define __HAIKU__ ; then 482ba7c60c2SPaolo Bonzini targetos=haiku 483951fedfcSPeter Maydellelif check_define __FreeBSD__ ; then 484ba7c60c2SPaolo Bonzini targetos=freebsd 485951fedfcSPeter Maydellelif check_define __FreeBSD_kernel__ && check_define __GLIBC__; then 486ba7c60c2SPaolo Bonzini targetos=gnu/kfreebsd 487951fedfcSPeter Maydellelif check_define __DragonFly__ ; then 488ba7c60c2SPaolo Bonzini targetos=dragonfly 489951fedfcSPeter Maydellelif check_define __NetBSD__; then 490ba7c60c2SPaolo Bonzini targetos=netbsd 491951fedfcSPeter Maydellelif check_define __APPLE__; then 492ba7c60c2SPaolo Bonzini targetos=darwin 493bbea4050SPeter Maydellelse 494951fedfcSPeter Maydell # This is a fatal error, but don't report it yet, because we 495951fedfcSPeter Maydell # might be going to just print the --help text, or it might 496951fedfcSPeter Maydell # be the result of a missing compiler. 497ba7c60c2SPaolo Bonzini targetos=bogus 498bbea4050SPeter Maydellfi 499bbea4050SPeter Maydell 50065eff01bSPaolo Bonzini# OS specific 50165eff01bSPaolo Bonzini 5023b0d8643SPaolo Bonzinimingw32="no" 5033b0d8643SPaolo Bonzinibsd="no" 5043b0d8643SPaolo Bonzinilinux="no" 5053b0d8643SPaolo Bonzinisolaris="no" 50665eff01bSPaolo Bonzinicase $targetos in 50765eff01bSPaolo Bonziniwindows) 50865eff01bSPaolo Bonzini mingw32="yes" 50965eff01bSPaolo Bonzini plugins="no" 51065eff01bSPaolo Bonzini pie="no" 51165eff01bSPaolo Bonzini;; 51265eff01bSPaolo Bonzinignu/kfreebsd) 51365eff01bSPaolo Bonzini bsd="yes" 51465eff01bSPaolo Bonzini;; 51565eff01bSPaolo Bonzinifreebsd) 51665eff01bSPaolo Bonzini bsd="yes" 51765eff01bSPaolo Bonzini make="${MAKE-gmake}" 51865eff01bSPaolo Bonzini # needed for kinfo_getvmmap(3) in libutil.h 51965eff01bSPaolo Bonzini;; 52065eff01bSPaolo Bonzinidragonfly) 52165eff01bSPaolo Bonzini bsd="yes" 52265eff01bSPaolo Bonzini make="${MAKE-gmake}" 52365eff01bSPaolo Bonzini;; 52465eff01bSPaolo Bonzininetbsd) 52565eff01bSPaolo Bonzini bsd="yes" 52665eff01bSPaolo Bonzini make="${MAKE-gmake}" 52765eff01bSPaolo Bonzini;; 52865eff01bSPaolo Bonziniopenbsd) 52965eff01bSPaolo Bonzini bsd="yes" 53065eff01bSPaolo Bonzini make="${MAKE-gmake}" 53165eff01bSPaolo Bonzini;; 53265eff01bSPaolo Bonzinidarwin) 53365eff01bSPaolo Bonzini bsd="yes" 53465eff01bSPaolo Bonzini darwin="yes" 53565eff01bSPaolo Bonzini # Disable attempts to use ObjectiveC features in os/object.h since they 53665eff01bSPaolo Bonzini # won't work when we're compiling with gcc as a C compiler. 53765eff01bSPaolo Bonzini QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS" 53865eff01bSPaolo Bonzini;; 53965eff01bSPaolo Bonzinisunos) 54065eff01bSPaolo Bonzini solaris="yes" 54165eff01bSPaolo Bonzini make="${MAKE-gmake}" 54265eff01bSPaolo Bonzini# needed for CMSG_ macros in sys/socket.h 54365eff01bSPaolo Bonzini QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS" 54465eff01bSPaolo Bonzini# needed for TIOCWIN* defines in termios.h 54565eff01bSPaolo Bonzini QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS" 54665eff01bSPaolo Bonzini # $(uname -m) returns i86pc even on an x86_64 box, so default based on isainfo 54765eff01bSPaolo Bonzini # Note that this check is broken for cross-compilation: if you're 548bbea4050SPeter Maydell # cross-compiling to one of these OSes then you'll need to specify 549bbea4050SPeter Maydell # the correct CPU with the --cpu option. 550bbea4050SPeter Maydell if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then 551bbea4050SPeter Maydell cpu="x86_64" 552bbea4050SPeter Maydell fi 55365eff01bSPaolo Bonzini;; 55465eff01bSPaolo Bonzinihaiku) 55565eff01bSPaolo Bonzini pie="no" 55665eff01bSPaolo Bonzini QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS -D_BSD_SOURCE -fPIC $QEMU_CFLAGS" 55765eff01bSPaolo Bonzini;; 55865eff01bSPaolo Bonzinilinux) 55965eff01bSPaolo Bonzini linux="yes" 56065eff01bSPaolo Bonzini vhost_user=${default_feature:-yes} 56165eff01bSPaolo Bonzini;; 562bbea4050SPeter Maydellesac 563bbea4050SPeter Maydell 5642ff6b91eSJuan Quintelaif test ! -z "$cpu" ; then 5652ff6b91eSJuan Quintela # command line argument 5662ff6b91eSJuan Quintela : 5672ff6b91eSJuan Quintelaelif check_define __i386__ ; then 568ac0df51dSaliguori cpu="i386" 569ac0df51dSaliguorielif check_define __x86_64__ ; then 570c72b26ecSRichard Henderson if check_define __ILP32__ ; then 571c72b26ecSRichard Henderson cpu="x32" 572c72b26ecSRichard Henderson else 573ac0df51dSaliguori cpu="x86_64" 574c72b26ecSRichard Henderson fi 5753aa9bd6cSblueswir1elif check_define __sparc__ ; then 5763aa9bd6cSblueswir1 if check_define __arch64__ ; then 5773aa9bd6cSblueswir1 cpu="sparc64" 5783aa9bd6cSblueswir1 else 5793aa9bd6cSblueswir1 cpu="sparc" 5803aa9bd6cSblueswir1 fi 581fdf7ed96Smalcelif check_define _ARCH_PPC ; then 582fdf7ed96Smalc if check_define _ARCH_PPC64 ; then 583f8378accSRichard Henderson if check_define _LITTLE_ENDIAN ; then 584f8378accSRichard Henderson cpu="ppc64le" 585f8378accSRichard Henderson else 586fdf7ed96Smalc cpu="ppc64" 587f8378accSRichard Henderson fi 588ac0df51dSaliguori else 589fdf7ed96Smalc cpu="ppc" 590fdf7ed96Smalc fi 591afa05235SAurelien Jarnoelif check_define __mips__ ; then 592afa05235SAurelien Jarno cpu="mips" 593d66ed0eaSAurelien Jarnoelif check_define __s390__ ; then 594d66ed0eaSAurelien Jarno if check_define __s390x__ ; then 595d66ed0eaSAurelien Jarno cpu="s390x" 596d66ed0eaSAurelien Jarno else 597d66ed0eaSAurelien Jarno cpu="s390" 598d66ed0eaSAurelien Jarno fi 599c4f80543SAlistair Franciselif check_define __riscv ; then 600ba0e7333SRichard Henderson cpu="riscv" 60121d89f84SPeter Maydellelif check_define __arm__ ; then 60221d89f84SPeter Maydell cpu="arm" 6031f080313SClaudio Fontanaelif check_define __aarch64__ ; then 6041f080313SClaudio Fontana cpu="aarch64" 605dfcf900bSWANG Xueruielif check_define __loongarch64 ; then 606dfcf900bSWANG Xuerui cpu="loongarch64" 607fdf7ed96Smalcelse 60889138857SStefan Weil cpu=$(uname -m) 609ac0df51dSaliguorifi 610ac0df51dSaliguori 611823eb013SPaolo Bonzini# Normalise host CPU name, set multilib cflags 612359bc95dSPeter Maydell# Note that this case should only have supported host CPUs, not guests. 6137d13299dSbellardcase "$cpu" in 614e4da0e39SPaolo Bonzini armv*b|armv*l|arm) 615e4da0e39SPaolo Bonzini cpu="arm" ;; 616e4da0e39SPaolo Bonzini 6177d13299dSbellard i386|i486|i586|i686|i86pc|BePC) 61897a847bcSbellard cpu="i386" 619e4da0e39SPaolo Bonzini CPU_CFLAGS="-m32" ;; 620e4da0e39SPaolo Bonzini x32) 6214da270beSPaolo Bonzini cpu="x86_64" 622e4da0e39SPaolo Bonzini CPU_CFLAGS="-mx32" ;; 623aaa5fa14Saurel32 x86_64|amd64) 624aaa5fa14Saurel32 cpu="x86_64" 625e4da0e39SPaolo Bonzini # ??? Only extremely old AMD cpus do not have cmpxchg16b. 626e4da0e39SPaolo Bonzini # If we truly care, we should simply detect this case at 627e4da0e39SPaolo Bonzini # runtime and generate the fallback to serial emulation. 628e4da0e39SPaolo Bonzini CPU_CFLAGS="-m64 -mcx16" ;; 629e4da0e39SPaolo Bonzini 630afa05235SAurelien Jarno mips*) 631e4da0e39SPaolo Bonzini cpu="mips" ;; 632e4da0e39SPaolo Bonzini 633e4da0e39SPaolo Bonzini ppc) 634e4da0e39SPaolo Bonzini CPU_CFLAGS="-m32" ;; 635e4da0e39SPaolo Bonzini ppc64) 636ced5cfffSMiroslav Rezanina CPU_CFLAGS="-m64 -mbig-endian" ;; 637e4da0e39SPaolo Bonzini ppc64le) 638d8ff892dSPaolo Bonzini cpu="ppc64" 639ced5cfffSMiroslav Rezanina CPU_CFLAGS="-m64 -mlittle-endian" ;; 640e4da0e39SPaolo Bonzini 641e4da0e39SPaolo Bonzini s390) 642823eb013SPaolo Bonzini CPU_CFLAGS="-m31" ;; 643e4da0e39SPaolo Bonzini s390x) 644e4da0e39SPaolo Bonzini CPU_CFLAGS="-m64" ;; 645e4da0e39SPaolo Bonzini 6463142255cSblueswir1 sparc|sun4[cdmuv]) 647ae228531Sbellard cpu="sparc" 648e4da0e39SPaolo Bonzini CPU_CFLAGS="-m32 -mv8plus -mcpu=ultrasparc" ;; 649e4da0e39SPaolo Bonzini sparc64) 650e4da0e39SPaolo Bonzini CPU_CFLAGS="-m64 -mcpu=ultrasparc" ;; 6517d13299dSbellardesac 652e2d52ad3SJuan Quintela 6530db4a067SPaolo Bonzini: ${make=${MAKE-make}} 654b6daf4d3SPaolo Bonzini 655faf44142SDaniel P. Berrangé# We prefer python 3.x. A bare 'python' is traditionally 656faf44142SDaniel P. Berrangé# python 2.x, but some distros have it as python 3.x, so 657ddf90699SEduardo Habkost# we check that too 658faf44142SDaniel P. Berrangépython= 6590a01d76fSMarc-André Lureauexplicit_python=no 660ddf90699SEduardo Habkostfor binary in "${PYTHON-python3}" python 661faf44142SDaniel P. Berrangédo 662faf44142SDaniel P. Berrangé if has "$binary" 663faf44142SDaniel P. Berrangé then 66495c5f2deSPaolo Bonzini python=$(command -v "$binary") 665faf44142SDaniel P. Berrangé break 666faf44142SDaniel P. Berrangé fi 667faf44142SDaniel P. Berrangédone 668903458c8SMarkus Armbruster 669903458c8SMarkus Armbruster 67039d87c8cSAlex Bennée# Check for ancillary tools used in testing 67139d87c8cSAlex Bennéegenisoimage= 6723df437c7SAlex Bennéefor binary in genisoimage mkisofs 67339d87c8cSAlex Bennéedo 67439d87c8cSAlex Bennée if has $binary 67539d87c8cSAlex Bennée then 67639d87c8cSAlex Bennée genisoimage=$(command -v "$binary") 67739d87c8cSAlex Bennée break 67839d87c8cSAlex Bennée fi 67939d87c8cSAlex Bennéedone 68039d87c8cSAlex Bennée 6813c4a4d0dSPeter Maydell# Default objcc to clang if available, otherwise use CC 6823c4a4d0dSPeter Maydellif has clang; then 6833c4a4d0dSPeter Maydell objcc=clang 6843c4a4d0dSPeter Maydellelse 6853c4a4d0dSPeter Maydell objcc="$cc" 6863c4a4d0dSPeter Maydellfi 6873c4a4d0dSPeter Maydell 6883457a3f8SJuan Quintelaif test "$mingw32" = "yes" ; then 6893457a3f8SJuan Quintela EXESUF=".exe" 69078e9d4adSStefan Weil # MinGW needs -mthreads for TLS and macro _MT. 6915770e8afSPaolo Bonzini CONFIGURE_CFLAGS="-mthreads $CONFIGURE_CFLAGS" 69293b25869SJohn Snow write_c_skeleton; 693d17f305aSPaolo Bonzini prefix="/qemu" 69477433a5fSMarc-André Lureau qemu_suffix="" 6953457a3f8SJuan Quintelafi 6963457a3f8SJuan Quintela 697487fefdbSAnthony Liguoriwerror="" 69885aa5189Sbellard 69961d63097SPaolo Bonzini. $source_path/scripts/meson-buildoptions.sh 70061d63097SPaolo Bonzini 70161d63097SPaolo Bonzinimeson_options= 70261d63097SPaolo Bonzinimeson_option_parse() { 70361d63097SPaolo Bonzini meson_options="$meson_options $(_meson_option_parse "$@")" 70461d63097SPaolo Bonzini if test $? -eq 1; then 70561d63097SPaolo Bonzini echo "ERROR: unknown option $1" 70661d63097SPaolo Bonzini echo "Try '$0 --help' for more information" 70761d63097SPaolo Bonzini exit 1 70861d63097SPaolo Bonzini fi 70961d63097SPaolo Bonzini} 71061d63097SPaolo Bonzini 7117d13299dSbellardfor opt do 71289138857SStefan Weil optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') 7137d13299dSbellard case "$opt" in 7142efc3265Sbellard --help|-h) show_help=yes 7152efc3265Sbellard ;; 71699123e13SMike Frysinger --version|-V) exec cat $source_path/VERSION 71799123e13SMike Frysinger ;; 718b1a550a0Spbrook --prefix=*) prefix="$optarg" 7197d13299dSbellard ;; 720b1a550a0Spbrook --interp-prefix=*) interp_prefix="$optarg" 72132ce6337Sbellard ;; 722ac0df51dSaliguori --cross-prefix=*) 7237d13299dSbellard ;; 724ac0df51dSaliguori --cc=*) 7257d13299dSbellard ;; 726b1a550a0Spbrook --host-cc=*) host_cc="$optarg" 72783469015Sbellard ;; 72883f73fceSTomoki Sekiyama --cxx=*) 72983f73fceSTomoki Sekiyama ;; 730e007dbecSMichael S. Tsirkin --iasl=*) iasl="$optarg" 731e007dbecSMichael S. Tsirkin ;; 7323c4a4d0dSPeter Maydell --objcc=*) objcc="$optarg" 7333c4a4d0dSPeter Maydell ;; 734b1a550a0Spbrook --make=*) make="$optarg" 7357d13299dSbellard ;; 736b6daf4d3SPaolo Bonzini --install=*) 7376a882643Spbrook ;; 7380a01d76fSMarc-André Lureau --python=*) python="$optarg" ; explicit_python=yes 739c886edfbSBlue Swirl ;; 7402eb054c2SPeter Maydell --sphinx-build=*) sphinx_build="$optarg" 7412eb054c2SPeter Maydell ;; 742a5665051SPaolo Bonzini --skip-meson) skip_meson=yes 743a5665051SPaolo Bonzini ;; 744a5665051SPaolo Bonzini --meson=*) meson="$optarg" 745a5665051SPaolo Bonzini ;; 74648328880SPaolo Bonzini --ninja=*) ninja="$optarg" 74748328880SPaolo Bonzini ;; 748e2d8830eSBrad --smbd=*) smbd="$optarg" 749e2d8830eSBrad ;; 750e2a2ed06SJuan Quintela --extra-cflags=*) 7517d13299dSbellard ;; 75211cde1c8SBruno Dominguez --extra-cxxflags=*) 75311cde1c8SBruno Dominguez ;; 754e910c7d9SPhilippe Mathieu-Daudé --extra-objcflags=*) 755e910c7d9SPhilippe Mathieu-Daudé ;; 756e2a2ed06SJuan Quintela --extra-ldflags=*) 7577d13299dSbellard ;; 758d75402b5SAlex Bennée --cross-cc-*) 759d75402b5SAlex Bennée ;; 760*28609749SPaolo Bonzini --enable-debug-info) debug_info="yes" 761*28609749SPaolo Bonzini ;; 762*28609749SPaolo Bonzini --disable-debug-info) debug_info="no" 763*28609749SPaolo Bonzini ;; 76417969268SFam Zheng --enable-modules) 76517969268SFam Zheng modules="yes" 76617969268SFam Zheng ;; 7673aa88b31SStefan Hajnoczi --disable-modules) 7683aa88b31SStefan Hajnoczi modules="no" 7693aa88b31SStefan Hajnoczi ;; 770bd83c861SChristian Ehrhardt --disable-module-upgrades) module_upgrades="no" 771bd83c861SChristian Ehrhardt ;; 772bd83c861SChristian Ehrhardt --enable-module-upgrades) module_upgrades="yes" 773bd83c861SChristian Ehrhardt ;; 7742ff6b91eSJuan Quintela --cpu=*) 7757d13299dSbellard ;; 776b1a550a0Spbrook --target-list=*) target_list="$optarg" 777447e133fSAlex Bennée if test "$target_list_exclude"; then 778447e133fSAlex Bennée error_exit "Can't mix --target-list with --target-list-exclude" 779447e133fSAlex Bennée fi 780447e133fSAlex Bennée ;; 781447e133fSAlex Bennée --target-list-exclude=*) target_list_exclude="$optarg" 782447e133fSAlex Bennée if test "$target_list"; then 783447e133fSAlex Bennée error_exit "Can't mix --target-list-exclude with --target-list" 784447e133fSAlex Bennée fi 785de83cd02Sbellard ;; 78674242e0fSPaolo Bonzini --with-trace-file=*) trace_file="$optarg" 7879410b56cSPrerna Saxena ;; 7887bc3ca7fSPaolo Bonzini --with-default-devices) default_devices="true" 789f3494749SPaolo Bonzini ;; 7907bc3ca7fSPaolo Bonzini --without-default-devices) default_devices="false" 791f3494749SPaolo Bonzini ;; 792d1d5e9eeSAlex Bennée --with-devices-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --with-devices-FOO option" 793d1d5e9eeSAlex Bennée ;; 794d1d5e9eeSAlex Bennée --with-devices-*) device_arch=${opt#--with-devices-}; 795d1d5e9eeSAlex Bennée device_arch=${device_arch%%=*} 796d1d5e9eeSAlex Bennée cf=$source_path/configs/devices/$device_arch-softmmu/$optarg.mak 797d1d5e9eeSAlex Bennée if test -f "$cf"; then 798d1d5e9eeSAlex Bennée device_archs="$device_archs $device_arch" 799d1d5e9eeSAlex Bennée eval "devices_${device_arch}=\$optarg" 800d1d5e9eeSAlex Bennée else 801d1d5e9eeSAlex Bennée error_exit "File $cf does not exist" 802d1d5e9eeSAlex Bennée fi 803d1d5e9eeSAlex Bennée ;; 804c87ea116SAlex Bennée --without-default-features) # processed above 805c87ea116SAlex Bennée ;; 8061d728c39SBlue Swirl --enable-gcov) gcov="yes" 8071d728c39SBlue Swirl ;; 80879427693SLoïc Minier --static) 80979427693SLoïc Minier static="yes" 81017884d7bSSergei Trofimovich QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS" 81143ce4dfeSbellard ;; 8120b24e75fSPaolo Bonzini --mandir=*) mandir="$optarg" 8130b24e75fSPaolo Bonzini ;; 8140b24e75fSPaolo Bonzini --bindir=*) bindir="$optarg" 8150b24e75fSPaolo Bonzini ;; 8163aa5d2beSAlon Levy --libdir=*) libdir="$optarg" 8173aa5d2beSAlon Levy ;; 8188bf188aaSMichael Tokarev --libexecdir=*) libexecdir="$optarg" 8198bf188aaSMichael Tokarev ;; 8200f94d6daSAlon Levy --includedir=*) includedir="$optarg" 8210f94d6daSAlon Levy ;; 822528ae5b8SEduardo Habkost --datadir=*) datadir="$optarg" 8230b24e75fSPaolo Bonzini ;; 82477433a5fSMarc-André Lureau --with-suffix=*) qemu_suffix="$optarg" 825023d3d67SEduardo Habkost ;; 826c6502638SBruce Rogers --docdir=*) docdir="$optarg" 8270b24e75fSPaolo Bonzini ;; 828fe0038beSPaolo Bonzini --localedir=*) localedir="$optarg" 829fe0038beSPaolo Bonzini ;; 830ca2fb938SAndre Przywara --sysconfdir=*) sysconfdir="$optarg" 83107381cc1SAnthony Liguori ;; 832785c23aeSLuiz Capitulino --localstatedir=*) local_statedir="$optarg" 833785c23aeSLuiz Capitulino ;; 8343d5eecabSGerd Hoffmann --firmwarepath=*) firmwarepath="$optarg" 8353d5eecabSGerd Hoffmann ;; 836181ce1d0SOlaf Hering --host=*|--build=*|\ 837181ce1d0SOlaf Hering --disable-dependency-tracking|\ 838785c23aeSLuiz Capitulino --sbindir=*|--sharedstatedir=*|\ 839fe0038beSPaolo Bonzini --oldincludedir=*|--datarootdir=*|--infodir=*|\ 840023ddd74SMax Filippov --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*) 841023ddd74SMax Filippov # These switches are silently ignored, for compatibility with 842023ddd74SMax Filippov # autoconf-generated configure scripts. This allows QEMU's 843023ddd74SMax Filippov # configure to be used by RPM and similar macros that set 844023ddd74SMax Filippov # lots of directory switches by default. 845023ddd74SMax Filippov ;; 8460c58ac1cSmalc --audio-drv-list=*) audio_drv_list="$optarg" 8470c58ac1cSmalc ;; 84889138857SStefan Weil --block-drv-rw-whitelist=*|--block-drv-whitelist=*) block_drv_rw_whitelist=$(echo "$optarg" | sed -e 's/,/ /g') 849b64ec4e4SFam Zheng ;; 85089138857SStefan Weil --block-drv-ro-whitelist=*) block_drv_ro_whitelist=$(echo "$optarg" | sed -e 's/,/ /g') 851eb852011SMarkus Armbruster ;; 852f8393946Saurel32 --enable-debug-tcg) debug_tcg="yes" 853f8393946Saurel32 ;; 854f8393946Saurel32 --disable-debug-tcg) debug_tcg="no" 855f8393946Saurel32 ;; 856f3d08ee6SPaul Brook --enable-debug) 857f3d08ee6SPaul Brook # Enable debugging options that aren't excessively noisy 858f3d08ee6SPaul Brook debug_tcg="yes" 859c55cf6abSPaolo Bonzini meson_option_parse --enable-debug-mutex "" 860f3d08ee6SPaul Brook debug="yes" 861b553a042SJohn Snow fortify_source="no" 862f3d08ee6SPaul Brook ;; 863247724cbSMarc-André Lureau --enable-sanitizers) sanitizers="yes" 864247724cbSMarc-André Lureau ;; 865247724cbSMarc-André Lureau --disable-sanitizers) sanitizers="no" 866247724cbSMarc-André Lureau ;; 8670aebab04SLingfeng Yang --enable-tsan) tsan="yes" 8680aebab04SLingfeng Yang ;; 8690aebab04SLingfeng Yang --disable-tsan) tsan="no" 8700aebab04SLingfeng Yang ;; 8714d34a86bSPaolo Bonzini --disable-slirp) slirp="disabled" 872c20709aaSbellard ;; 873fd6fc214SPaolo Bonzini --enable-slirp) slirp="enabled" 874fd6fc214SPaolo Bonzini ;; 8754d34a86bSPaolo Bonzini --enable-slirp=git) slirp="internal" 8767c57bdd8SMarc-André Lureau ;; 87703a3c0b3SPaolo Bonzini --enable-slirp=*) slirp="$optarg" 878675b9b53SMarc-André Lureau ;; 8791badb709SPaolo Bonzini --disable-xen) xen="disabled" 880e37630caSaliguori ;; 8811badb709SPaolo Bonzini --enable-xen) xen="enabled" 882fc321b4bSJuan Quintela ;; 8831badb709SPaolo Bonzini --disable-tcg) tcg="disabled" 884d1a14257SAlex Bennée plugins="no" 885b3f6ea7eSPaolo Bonzini ;; 8861badb709SPaolo Bonzini --enable-tcg) tcg="enabled" 887b3f6ea7eSPaolo Bonzini ;; 888cad25d69Spbrook --disable-system) softmmu="no" 8890a8e90f4Spbrook ;; 890cad25d69Spbrook --enable-system) softmmu="yes" 8910a8e90f4Spbrook ;; 8920953a80fSZachary Amsden --disable-user) 8930953a80fSZachary Amsden linux_user="no" ; 8940953a80fSZachary Amsden bsd_user="no" ; 8950953a80fSZachary Amsden ;; 8960953a80fSZachary Amsden --enable-user) ;; 897831b7825Sths --disable-linux-user) linux_user="no" 8980a8e90f4Spbrook ;; 899831b7825Sths --enable-linux-user) linux_user="yes" 900831b7825Sths ;; 90184778508Sblueswir1 --disable-bsd-user) bsd_user="no" 90284778508Sblueswir1 ;; 90384778508Sblueswir1 --enable-bsd-user) bsd_user="yes" 90484778508Sblueswir1 ;; 90540d6444eSAvi Kivity --enable-pie) pie="yes" 90634005a00SKirill A. Shutemov ;; 90740d6444eSAvi Kivity --disable-pie) pie="no" 90834005a00SKirill A. Shutemov ;; 90985aa5189Sbellard --enable-werror) werror="yes" 91085aa5189Sbellard ;; 91185aa5189Sbellard --disable-werror) werror="no" 91285aa5189Sbellard ;; 913cdad781dSDaniele Buono --enable-lto) lto="true" 914cdad781dSDaniele Buono ;; 915cdad781dSDaniele Buono --disable-lto) lto="false" 916cdad781dSDaniele Buono ;; 91763678e17SSteven Noonan --enable-stack-protector) stack_protector="yes" 91863678e17SSteven Noonan ;; 91963678e17SSteven Noonan --disable-stack-protector) stack_protector="no" 92063678e17SSteven Noonan ;; 9211e4f6065SDaniele Buono --enable-safe-stack) safe_stack="yes" 9221e4f6065SDaniele Buono ;; 9231e4f6065SDaniele Buono --disable-safe-stack) safe_stack="no" 9241e4f6065SDaniele Buono ;; 9259e62ba48SDaniele Buono --enable-cfi) 9269e62ba48SDaniele Buono cfi="true"; 9279e62ba48SDaniele Buono lto="true"; 9289e62ba48SDaniele Buono ;; 9299e62ba48SDaniele Buono --disable-cfi) cfi="false" 9309e62ba48SDaniele Buono ;; 931fbb4121dSPaolo Bonzini --disable-fdt) fdt="disabled" 9322df87df7SJuan Quintela ;; 933fbb4121dSPaolo Bonzini --enable-fdt) fdt="enabled" 934fbb4121dSPaolo Bonzini ;; 935fbb4121dSPaolo Bonzini --enable-fdt=git) fdt="internal" 936fbb4121dSPaolo Bonzini ;; 93703a3c0b3SPaolo Bonzini --enable-fdt=*) fdt="$optarg" 9382df87df7SJuan Quintela ;; 9397e563bfbSThomas Huth --with-pkgversion=*) pkgversion="$optarg" 9404a19f1ecSpbrook ;; 941519175a2SAlex Barcelo --with-coroutine=*) coroutine="$optarg" 942519175a2SAlex Barcelo ;; 943d5970055SMichael S. Tsirkin --disable-vhost-net) vhost_net="no" 944d5970055SMichael S. Tsirkin ;; 945d5970055SMichael S. Tsirkin --enable-vhost-net) vhost_net="yes" 946d5970055SMichael S. Tsirkin ;; 947042cea27SGonglei --disable-vhost-crypto) vhost_crypto="no" 948042cea27SGonglei ;; 949299e6f19SPaolo Bonzini --enable-vhost-crypto) vhost_crypto="yes" 950042cea27SGonglei ;; 9515e9be92dSNicholas Bellinger --disable-vhost-scsi) vhost_scsi="no" 9525e9be92dSNicholas Bellinger ;; 9535e9be92dSNicholas Bellinger --enable-vhost-scsi) vhost_scsi="yes" 9545e9be92dSNicholas Bellinger ;; 955fc0b9b0eSStefan Hajnoczi --disable-vhost-vsock) vhost_vsock="no" 956fc0b9b0eSStefan Hajnoczi ;; 957fc0b9b0eSStefan Hajnoczi --enable-vhost-vsock) vhost_vsock="yes" 958fc0b9b0eSStefan Hajnoczi ;; 95998fc1adaSDr. David Alan Gilbert --disable-vhost-user-fs) vhost_user_fs="no" 96098fc1adaSDr. David Alan Gilbert ;; 96198fc1adaSDr. David Alan Gilbert --enable-vhost-user-fs) vhost_user_fs="yes" 96298fc1adaSDr. David Alan Gilbert ;; 963da076ffeSGerd Hoffmann --disable-opengl) opengl="no" 96420ff075bSMichael Walle ;; 965da076ffeSGerd Hoffmann --enable-opengl) opengl="yes" 96620ff075bSMichael Walle ;; 9671ffb3bbbSPaolo Bonzini --disable-zlib-test) 9681ece9905SAlon Levy ;; 96952b53c04SFam Zheng --disable-virtio-blk-data-plane|--enable-virtio-blk-data-plane) 97052b53c04SFam Zheng echo "$0: $opt is obsolete, virtio-blk data-plane is always on" >&2 971583f6e7bSStefan Hajnoczi ;; 972cb6414dfSFam Zheng --enable-vhdx|--disable-vhdx) 973cb6414dfSFam Zheng echo "$0: $opt is obsolete, VHDX driver is always built" >&2 974cb6414dfSFam Zheng ;; 975315d3184SFam Zheng --enable-uuid|--disable-uuid) 976315d3184SFam Zheng echo "$0: $opt is obsolete, UUID support is always built" >&2 977315d3184SFam Zheng ;; 978a1c5e949SDaniel P. Berrange --tls-priority=*) tls_priority="$optarg" 979a1c5e949SDaniel P. Berrange ;; 9802da776dbSMichael R. Hines --enable-rdma) rdma="yes" 9812da776dbSMichael R. Hines ;; 9822da776dbSMichael R. Hines --disable-rdma) rdma="no" 9832da776dbSMichael R. Hines ;; 98421ab34c9SMarcel Apfelbaum --enable-pvrdma) pvrdma="yes" 98521ab34c9SMarcel Apfelbaum ;; 98621ab34c9SMarcel Apfelbaum --disable-pvrdma) pvrdma="no" 98721ab34c9SMarcel Apfelbaum ;; 988e6a74868SMarc-André Lureau --disable-vhost-user) vhost_user="no" 989e6a74868SMarc-André Lureau ;; 990299e6f19SPaolo Bonzini --enable-vhost-user) vhost_user="yes" 991299e6f19SPaolo Bonzini ;; 992108a6481SCindy Lu --disable-vhost-vdpa) vhost_vdpa="no" 993108a6481SCindy Lu ;; 994108a6481SCindy Lu --enable-vhost-vdpa) vhost_vdpa="yes" 995108a6481SCindy Lu ;; 996299e6f19SPaolo Bonzini --disable-vhost-kernel) vhost_kernel="no" 997299e6f19SPaolo Bonzini ;; 998299e6f19SPaolo Bonzini --enable-vhost-kernel) vhost_kernel="yes" 999e6a74868SMarc-André Lureau ;; 10008b18cdbfSRichard Henderson --disable-capstone) capstone="disabled" 10018ca80760SRichard Henderson ;; 10028b18cdbfSRichard Henderson --enable-capstone) capstone="enabled" 10038ca80760SRichard Henderson ;; 10048b18cdbfSRichard Henderson --enable-capstone=git) capstone="internal" 1005e219c499SRichard Henderson ;; 100603a3c0b3SPaolo Bonzini --enable-capstone=*) capstone="$optarg" 1007e219c499SRichard Henderson ;; 1008cc84d63aSDaniel P. Berrange --with-git=*) git="$optarg" 1009cc84d63aSDaniel P. Berrange ;; 10107d7dbf9dSDan Streetman --with-git-submodules=*) 10117d7dbf9dSDan Streetman git_submodules_action="$optarg" 1012f62bbee5SDaniel P. Berrange ;; 10139b8e4298SAlex Bennée --enable-plugins) if test "$mingw32" = "yes"; then 10149b8e4298SAlex Bennée error_exit "TCG plugins not currently supported on Windows platforms" 10159b8e4298SAlex Bennée else 10169b8e4298SAlex Bennée plugins="yes" 10179b8e4298SAlex Bennée fi 101840e8c6f4SAlex Bennée ;; 101940e8c6f4SAlex Bennée --disable-plugins) plugins="no" 102040e8c6f4SAlex Bennée ;; 1021afc3a8f9SAlex Bennée --enable-containers) use_containers="yes" 1022afc3a8f9SAlex Bennée ;; 1023afc3a8f9SAlex Bennée --disable-containers) use_containers="no" 1024afc3a8f9SAlex Bennée ;; 1025f48e590aSAlex Bennée --gdb=*) gdb_bin="$optarg" 1026f48e590aSAlex Bennée ;; 102754e7aac0SAlexey Krasikov --enable-keyring) secret_keyring="yes" 102854e7aac0SAlexey Krasikov ;; 102954e7aac0SAlexey Krasikov --disable-keyring) secret_keyring="no" 103054e7aac0SAlexey Krasikov ;; 103120cf7b8eSDenis Plotnikov --enable-gio) gio=yes 103220cf7b8eSDenis Plotnikov ;; 103320cf7b8eSDenis Plotnikov --disable-gio) gio=no 103420cf7b8eSDenis Plotnikov ;; 10353b4da132SPaolo Bonzini # backwards compatibility options 10363b4da132SPaolo Bonzini --enable-trace-backend=*) meson_option_parse "--enable-trace-backends=$optarg" "$optarg" 10373b4da132SPaolo Bonzini ;; 10383b4da132SPaolo Bonzini --disable-blobs) meson_option_parse --disable-install-blobs "" 10393b4da132SPaolo Bonzini ;; 10403b4da132SPaolo Bonzini --enable-tcmalloc) meson_option_parse --enable-malloc=tcmalloc tcmalloc 10413b4da132SPaolo Bonzini ;; 10423b4da132SPaolo Bonzini --enable-jemalloc) meson_option_parse --enable-malloc=jemalloc jemalloc 10433b4da132SPaolo Bonzini ;; 10443b4da132SPaolo Bonzini # everything else has the same name in configure and meson 104561d63097SPaolo Bonzini --enable-* | --disable-*) meson_option_parse "$opt" "$optarg" 104661d63097SPaolo Bonzini ;; 10472d2ad6d0SFam Zheng *) 10482d2ad6d0SFam Zheng echo "ERROR: unknown option $opt" 10492d2ad6d0SFam Zheng echo "Try '$0 --help' for more information" 10502d2ad6d0SFam Zheng exit 1 10517f1559c6Sbalrog ;; 10527d13299dSbellard esac 10537d13299dSbellarddone 10547d13299dSbellard 1055d1a14257SAlex Bennée# test for any invalid configuration combinations 1056d1a14257SAlex Bennéeif test "$plugins" = "yes" -a "$tcg" = "disabled"; then 1057d1a14257SAlex Bennée error_exit "Can't enable plugins on non-TCG builds" 1058d1a14257SAlex Bennéefi 1059d1a14257SAlex Bennée 10607d7dbf9dSDan Streetmancase $git_submodules_action in 10617d7dbf9dSDan Streetman update|validate) 10627d7dbf9dSDan Streetman if test ! -e "$source_path/.git"; then 10637d7dbf9dSDan Streetman echo "ERROR: cannot $git_submodules_action git submodules without .git" 10647d7dbf9dSDan Streetman exit 1 10657d7dbf9dSDan Streetman fi 10667d7dbf9dSDan Streetman ;; 10677d7dbf9dSDan Streetman ignore) 1068b80fd281SPaolo Bonzini if ! test -f "$source_path/ui/keycodemapdb/README" 1069b80fd281SPaolo Bonzini then 1070b80fd281SPaolo Bonzini echo 1071b80fd281SPaolo Bonzini echo "ERROR: missing GIT submodules" 1072b80fd281SPaolo Bonzini echo 1073b80fd281SPaolo Bonzini if test -e "$source_path/.git"; then 1074b80fd281SPaolo Bonzini echo "--with-git-submodules=ignore specified but submodules were not" 1075b80fd281SPaolo Bonzini echo "checked out. Please initialize and update submodules." 1076b80fd281SPaolo Bonzini else 1077b80fd281SPaolo Bonzini echo "This is not a GIT checkout but module content appears to" 1078b80fd281SPaolo Bonzini echo "be missing. Do not use 'git archive' or GitHub download links" 1079b80fd281SPaolo Bonzini echo "to acquire QEMU source archives. Non-GIT builds are only" 1080b80fd281SPaolo Bonzini echo "supported with source archives linked from:" 1081b80fd281SPaolo Bonzini echo 1082b80fd281SPaolo Bonzini echo " https://www.qemu.org/download/#source" 1083b80fd281SPaolo Bonzini echo 1084b80fd281SPaolo Bonzini echo "Developers working with GIT can use scripts/archive-source.sh" 1085b80fd281SPaolo Bonzini echo "if they need to create valid source archives." 1086b80fd281SPaolo Bonzini fi 1087b80fd281SPaolo Bonzini echo 1088b80fd281SPaolo Bonzini exit 1 1089b80fd281SPaolo Bonzini fi 10907d7dbf9dSDan Streetman ;; 10917d7dbf9dSDan Streetman *) 10927d7dbf9dSDan Streetman echo "ERROR: invalid --with-git-submodules= value '$git_submodules_action'" 10937d7dbf9dSDan Streetman exit 1 10947d7dbf9dSDan Streetman ;; 10957d7dbf9dSDan Streetmanesac 10967d7dbf9dSDan Streetman 109722a87800SMarc-André Lureaulibdir="${libdir:-$prefix/lib}" 109822a87800SMarc-André Lureaulibexecdir="${libexecdir:-$prefix/libexec}" 109922a87800SMarc-André Lureauincludedir="${includedir:-$prefix/include}" 110022a87800SMarc-André Lureau 110122a87800SMarc-André Lureauif test "$mingw32" = "yes" ; then 110215588a62SJoshua Watt bindir="${bindir:-$prefix}" 110322a87800SMarc-André Lureauelse 110415588a62SJoshua Watt bindir="${bindir:-$prefix/bin}" 110515588a62SJoshua Wattfi 110622a87800SMarc-André Lureaumandir="${mandir:-$prefix/share/man}" 110722a87800SMarc-André Lureaudatadir="${datadir:-$prefix/share}" 1108ca8c0909SMarc-André Lureaudocdir="${docdir:-$prefix/share/doc}" 110922a87800SMarc-André Lureausysconfdir="${sysconfdir:-$prefix/etc}" 111022a87800SMarc-André Lureaulocal_statedir="${local_statedir:-$prefix/var}" 111116bf7a33SPaolo Bonzinifirmwarepath="${firmwarepath:-$datadir/qemu-firmware}" 111216bf7a33SPaolo Bonzinilocaledir="${localedir:-$datadir/locale}" 111322a87800SMarc-André Lureau 11149557af9cSAlex Bennéeif eval test -z "\${cross_cc_$cpu}"; then 1115b1aa4de1SAlex Bennée eval "cross_cc_${cpu}=\$cc" 11162038f8c8SPaolo Bonzini cross_cc_vars="$cross_cc_vars cross_cc_${cpu}" 11179557af9cSAlex Bennéefi 111879f3b12fSPeter Crosthwaite 111960e0df25SPeter Maydelldefault_target_list="" 11206e92f823SPeter Maydellmak_wilds="" 11216e92f823SPeter Maydell 1122b915a2f1SPaolo Bonziniif [ "$linux_user" != no ]; then 1123b915a2f1SPaolo Bonzini if [ "$targetos" = linux ] && [ -d $source_path/linux-user/include/host/$cpu ]; then 1124b915a2f1SPaolo Bonzini linux_user=yes 1125b915a2f1SPaolo Bonzini elif [ "$linux_user" = yes ]; then 1126b915a2f1SPaolo Bonzini error_exit "linux-user not supported on this architecture" 1127b915a2f1SPaolo Bonzini fi 1128b915a2f1SPaolo Bonzinifi 1129b915a2f1SPaolo Bonziniif [ "$bsd_user" != no ]; then 1130b915a2f1SPaolo Bonzini if [ "$bsd_user" = "" ]; then 1131b915a2f1SPaolo Bonzini test $targetos = freebsd && bsd_user=yes 1132b915a2f1SPaolo Bonzini fi 1133b915a2f1SPaolo Bonzini if [ "$bsd_user" = yes ] && ! [ -d $source_path/bsd-user/$targetos ]; then 1134b915a2f1SPaolo Bonzini error_exit "bsd-user not supported on this host OS" 1135b915a2f1SPaolo Bonzini fi 1136b915a2f1SPaolo Bonzinifi 113760e0df25SPeter Maydellif [ "$softmmu" = "yes" ]; then 1138812b31d3SAlex Bennée mak_wilds="${mak_wilds} $source_path/configs/targets/*-softmmu.mak" 113960e0df25SPeter Maydellfi 114060e0df25SPeter Maydellif [ "$linux_user" = "yes" ]; then 1141812b31d3SAlex Bennée mak_wilds="${mak_wilds} $source_path/configs/targets/*-linux-user.mak" 114260e0df25SPeter Maydellfi 114360e0df25SPeter Maydellif [ "$bsd_user" = "yes" ]; then 1144812b31d3SAlex Bennée mak_wilds="${mak_wilds} $source_path/configs/targets/*-bsd-user.mak" 114560e0df25SPeter Maydellfi 114660e0df25SPeter Maydell 1147447e133fSAlex Bennéefor config in $mak_wilds; do 1148447e133fSAlex Bennée target="$(basename "$config" .mak)" 114998db9a06SAlex Bennée if echo "$target_list_exclude" | grep -vq "$target"; then 1150447e133fSAlex Bennée default_target_list="${default_target_list} $target" 1151447e133fSAlex Bennée fi 1152447e133fSAlex Bennéedone 11536e92f823SPeter Maydell 1154af5db58eSpbrookif test x"$show_help" = x"yes" ; then 1155af5db58eSpbrookcat << EOF 1156af5db58eSpbrook 1157af5db58eSpbrookUsage: configure [options] 1158af5db58eSpbrookOptions: [defaults in brackets after descriptions] 1159af5db58eSpbrook 116008fb77edSStefan WeilStandard options: 116108fb77edSStefan Weil --help print this message 116208fb77edSStefan Weil --prefix=PREFIX install in PREFIX [$prefix] 116308fb77edSStefan Weil --interp-prefix=PREFIX where to find shared libraries, etc. 116408fb77edSStefan Weil use %M for cpu name [$interp_prefix] 116574154d7eSThomas Huth --target-list=LIST set target list (default: build all) 116608fb77edSStefan Weil$(echo Available targets: $default_target_list | \ 116708fb77edSStefan Weil fold -s -w 53 | sed -e 's/^/ /') 1168447e133fSAlex Bennée --target-list-exclude=LIST exclude a set of targets from the default target-list 116908fb77edSStefan Weil 117008fb77edSStefan WeilAdvanced options (experts only): 11713812c0c4SJoelle van Dyne --cross-prefix=PREFIX use PREFIX for compile tools, PREFIX can be blank [$cross_prefix] 117208fb77edSStefan Weil --cc=CC use C compiler CC [$cc] 117308fb77edSStefan Weil --iasl=IASL use ACPI compiler IASL [$iasl] 117408fb77edSStefan Weil --host-cc=CC use C compiler CC [$host_cc] for code run at 117508fb77edSStefan Weil build time 117608fb77edSStefan Weil --cxx=CXX use C++ compiler CXX [$cxx] 117708fb77edSStefan Weil --objcc=OBJCC use Objective-C compiler OBJCC [$objcc] 1178a2866660SPaolo Bonzini --extra-cflags=CFLAGS append extra C compiler flags CFLAGS 1179a2866660SPaolo Bonzini --extra-cxxflags=CXXFLAGS append extra C++ compiler flags CXXFLAGS 1180e910c7d9SPhilippe Mathieu-Daudé --extra-objcflags=OBJCFLAGS append extra Objective C compiler flags OBJCFLAGS 118108fb77edSStefan Weil --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS 1182d75402b5SAlex Bennée --cross-cc-ARCH=CC use compiler when building ARCH guest test cases 1183479ca4ccSMatheus Ferst --cross-cc-cflags-ARCH= use compiler flags when building ARCH guest tests 118408fb77edSStefan Weil --make=MAKE use specified make [$make] 118508fb77edSStefan Weil --python=PYTHON use specified python [$python] 11862eb054c2SPeter Maydell --sphinx-build=SPHINX use specified sphinx-build [$sphinx_build] 1187a5665051SPaolo Bonzini --meson=MESON use specified meson [$meson] 118848328880SPaolo Bonzini --ninja=NINJA use specified ninja [$ninja] 118908fb77edSStefan Weil --smbd=SMBD use specified smbd [$smbd] 1190db1b5f13SThomas Huth --with-git=GIT use specified git [$git] 11917d7dbf9dSDan Streetman --with-git-submodules=update update git submodules (default if .git dir exists) 11927d7dbf9dSDan Streetman --with-git-submodules=validate fail if git submodules are not up to date 11937d7dbf9dSDan Streetman --with-git-submodules=ignore do not update or check git submodules (default if no .git dir) 119408fb77edSStefan Weil --static enable static build [$static] 119508fb77edSStefan Weil --mandir=PATH install man pages in PATH 119610ff82d1SMarc-André Lureau --datadir=PATH install firmware in PATH/$qemu_suffix 1197fe0038beSPaolo Bonzini --localedir=PATH install translation in PATH/$qemu_suffix 119810ff82d1SMarc-André Lureau --docdir=PATH install documentation in PATH/$qemu_suffix 119908fb77edSStefan Weil --bindir=PATH install binaries in PATH 120008fb77edSStefan Weil --libdir=PATH install libraries in PATH 1201db1b5f13SThomas Huth --libexecdir=PATH install helper binaries in PATH 120210ff82d1SMarc-André Lureau --sysconfdir=PATH install config in PATH/$qemu_suffix 120308fb77edSStefan Weil --localstatedir=PATH install local state in PATH (set at runtime on win32) 12043d5eecabSGerd Hoffmann --firmwarepath=PATH search PATH for firmware files 120513336606SRobert Foley --efi-aarch64=PATH PATH of efi file to use for aarch64 VMs. 1206ca8c0909SMarc-André Lureau --with-suffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir/docdir [$qemu_suffix] 1207db1b5f13SThomas Huth --with-pkgversion=VERS use specified string as sub-version of the package 1208c035c8d6SPaolo Bonzini --without-default-features default all --enable-* options to "disabled" 1209c035c8d6SPaolo Bonzini --without-default-devices do not include any device that is not needed to 1210c035c8d6SPaolo Bonzini start the emulator (only use if you are including 1211d1d5e9eeSAlex Bennée desired devices in configs/devices/) 1212d1d5e9eeSAlex Bennée --with-devices-ARCH=NAME override default configs/devices 121308fb77edSStefan Weil --enable-debug enable common debug build options 1214247724cbSMarc-André Lureau --enable-sanitizers enable default sanitizers 12150aebab04SLingfeng Yang --enable-tsan enable thread sanitizer 121608fb77edSStefan Weil --disable-werror disable compilation abort on warning 121763678e17SSteven Noonan --disable-stack-protector disable compiler-provided stack protection 121816bfbc70SPaolo Bonzini --audio-drv-list=LIST set audio drivers to try if -audiodev is not used 121908fb77edSStefan Weil --block-drv-whitelist=L Same as --block-drv-rw-whitelist=L 122008fb77edSStefan Weil --block-drv-rw-whitelist=L 122108fb77edSStefan Weil set block driver read-write whitelist 1222e5f05f8cSKevin Wolf (by default affects only QEMU, not tools like qemu-img) 122308fb77edSStefan Weil --block-drv-ro-whitelist=L 122408fb77edSStefan Weil set block driver read-only whitelist 1225e5f05f8cSKevin Wolf (by default affects only QEMU, not tools like qemu-img) 122608fb77edSStefan Weil --with-trace-file=NAME Full PATH,NAME of file to store traces 122708fb77edSStefan Weil Default:trace-<pid> 1228c23f23b9SMichael Tokarev --cpu=CPU Build for host CPU [$cpu] 122908fb77edSStefan Weil --with-coroutine=BACKEND coroutine backend. Supported options: 123033c53c54SDaniel P. Berrange ucontext, sigaltstack, windows 123108fb77edSStefan Weil --enable-gcov enable test coverage analysis with gcov 1232a1c5e949SDaniel P. Berrange --tls-priority default TLS protocol/cipher priority string 123340e8c6f4SAlex Bennée --enable-plugins 123440e8c6f4SAlex Bennée enable plugins via shared library loading 1235afc3a8f9SAlex Bennée --disable-containers don't use containers for cross-building 1236f48e590aSAlex Bennée --gdb=GDB-path gdb to use for gdbstub tests [$gdb_bin] 123761d63097SPaolo BonziniEOF 123861d63097SPaolo Bonzini meson_options_help 123961d63097SPaolo Bonzinicat << EOF 1240c23f23b9SMichael Tokarev system all system emulation targets 1241c23f23b9SMichael Tokarev user supported user emulation targets 1242c23f23b9SMichael Tokarev linux-user all linux usermode emulation targets 1243c23f23b9SMichael Tokarev bsd-user all BSD usermode emulation targets 1244c23f23b9SMichael Tokarev pie Position Independent Executables 124521e709aaSMarc-André Lureau modules modules support (non-Windows) 1246bd83c861SChristian Ehrhardt module-upgrades try to load modules from alternate paths for upgrades 1247c23f23b9SMichael Tokarev debug-tcg TCG debugging (default is disabled) 1248c23f23b9SMichael Tokarev debug-info debugging information 1249cdad781dSDaniele Buono lto Enable Link-Time Optimization. 12501e4f6065SDaniele Buono safe-stack SafeStack Stack Smash Protection. Depends on 12511e4f6065SDaniele Buono clang/llvm >= 3.7 and requires coroutine backend ucontext. 125221ab34c9SMarcel Apfelbaum rdma Enable RDMA-based migration 125321ab34c9SMarcel Apfelbaum pvrdma Enable PVRDMA support 1254299e6f19SPaolo Bonzini vhost-net vhost-net kernel acceleration support 1255299e6f19SPaolo Bonzini vhost-vsock virtio sockets device support 1256299e6f19SPaolo Bonzini vhost-scsi vhost-scsi kernel target support 1257299e6f19SPaolo Bonzini vhost-crypto vhost-user-crypto backend support 1258299e6f19SPaolo Bonzini vhost-kernel vhost kernel backend support 1259299e6f19SPaolo Bonzini vhost-user vhost-user backend support 1260108a6481SCindy Lu vhost-vdpa vhost-vdpa kernel backend support 1261c12d66aaSLin Ma opengl opengl support 126220cf7b8eSDenis Plotnikov gio libgio support 126308fb77edSStefan Weil 126408fb77edSStefan WeilNOTE: The object files are built at the place where configure is launched 1265af5db58eSpbrookEOF 12662d2ad6d0SFam Zhengexit 0 1267af5db58eSpbrookfi 1268af5db58eSpbrook 12699c790242SThomas Huth# Remove old dependency files to make sure that they get properly regenerated 1270bb768f71SThomas Huthrm -f */config-devices.mak.d 12719c790242SThomas Huth 1272faf44142SDaniel P. Berrangéif test -z "$python" 1273faf44142SDaniel P. Berrangéthen 1274c53eeaf7SStefan Hajnoczi error_exit "Python not found. Use --python=/path/to/python" 1275c53eeaf7SStefan Hajnoczifi 12768e2c76bdSRoman Bolshakovif ! has "$make" 12778e2c76bdSRoman Bolshakovthen 12788e2c76bdSRoman Bolshakov error_exit "GNU make ($make) not found" 12798e2c76bdSRoman Bolshakovfi 1280c53eeaf7SStefan Hajnoczi 1281c53eeaf7SStefan Hajnoczi# Note that if the Python conditional here evaluates True we will exit 1282c53eeaf7SStefan Hajnoczi# with status 1 which is a shell 'false' value. 12831b11f28dSThomas Huthif ! $python -c 'import sys; sys.exit(sys.version_info < (3,6))'; then 12841b11f28dSThomas Huth error_exit "Cannot use '$python', Python >= 3.6 is required." \ 1285c53eeaf7SStefan Hajnoczi "Use --python=/path/to/python to specify a supported Python." 1286c53eeaf7SStefan Hajnoczifi 1287c53eeaf7SStefan Hajnoczi 1288755ee70fSCleber Rosa# Preserve python version since some functionality is dependent on it 1289406ab2f3SCleber Rosapython_version=$($python -c 'import sys; print("%d.%d.%d" % (sys.version_info[0], sys.version_info[1], sys.version_info[2]))' 2>/dev/null) 1290755ee70fSCleber Rosa 1291c53eeaf7SStefan Hajnoczi# Suppress writing compiled files 1292c53eeaf7SStefan Hajnoczipython="$python -B" 1293c53eeaf7SStefan Hajnoczi 12940a01d76fSMarc-André Lureauif test -z "$meson"; then 12956638cae5SPaolo Bonzini if test "$explicit_python" = no && has meson && version_ge "$(meson --version)" 0.59.3; then 12960a01d76fSMarc-André Lureau meson=meson 12977d7dbf9dSDan Streetman elif test $git_submodules_action != 'ignore' ; then 12980a01d76fSMarc-André Lureau meson=git 12990a01d76fSMarc-André Lureau elif test -e "${source_path}/meson/meson.py" ; then 13000a01d76fSMarc-André Lureau meson=internal 13010a01d76fSMarc-André Lureau else 13020a01d76fSMarc-André Lureau if test "$explicit_python" = yes; then 13030a01d76fSMarc-André Lureau error_exit "--python requires using QEMU's embedded Meson distribution, but it was not found." 13040a01d76fSMarc-André Lureau else 1305a5665051SPaolo Bonzini error_exit "Meson not found. Use --meson=/path/to/meson" 1306a5665051SPaolo Bonzini fi 13070a01d76fSMarc-André Lureau fi 13080a01d76fSMarc-André Lureauelse 13090a01d76fSMarc-André Lureau # Meson uses its own Python interpreter to invoke other Python scripts, 13100a01d76fSMarc-André Lureau # but the user wants to use the one they specified with --python. 13110a01d76fSMarc-André Lureau # 13120a01d76fSMarc-André Lureau # We do not want to override the distro Python interpreter (and sometimes 13130a01d76fSMarc-André Lureau # cannot: for example in Homebrew /usr/bin/meson is a bash script), so 13140a01d76fSMarc-André Lureau # just require --meson=git|internal together with --python. 13150a01d76fSMarc-André Lureau if test "$explicit_python" = yes; then 13160a01d76fSMarc-André Lureau case "$meson" in 13170a01d76fSMarc-André Lureau git | internal) ;; 13180a01d76fSMarc-André Lureau *) error_exit "--python requires using QEMU's embedded Meson distribution." ;; 13190a01d76fSMarc-André Lureau esac 13200a01d76fSMarc-André Lureau fi 13210a01d76fSMarc-André Lureaufi 1322a5665051SPaolo Bonzini 13230a01d76fSMarc-André Lureauif test "$meson" = git; then 13240a01d76fSMarc-André Lureau git_submodules="${git_submodules} meson" 13250a01d76fSMarc-André Lureaufi 13260a01d76fSMarc-André Lureau 13270a01d76fSMarc-André Lureaucase "$meson" in 13280a01d76fSMarc-André Lureau git | internal) 13290a01d76fSMarc-André Lureau meson="$python ${source_path}/meson/meson.py" 13300a01d76fSMarc-André Lureau ;; 133184ec0c24SPaolo Bonzini *) meson=$(command -v "$meson") ;; 13320a01d76fSMarc-André Lureauesac 13330a01d76fSMarc-André Lureau 133409e93326SPaolo Bonzini# Probe for ninja 133548328880SPaolo Bonzini 133648328880SPaolo Bonziniif test -z "$ninja"; then 133748328880SPaolo Bonzini for c in ninja ninja-build samu; do 133848328880SPaolo Bonzini if has $c; then 133948328880SPaolo Bonzini ninja=$(command -v "$c") 134048328880SPaolo Bonzini break 134148328880SPaolo Bonzini fi 134248328880SPaolo Bonzini done 134309e93326SPaolo Bonzini if test -z "$ninja"; then 134409e93326SPaolo Bonzini error_exit "Cannot find Ninja" 134509e93326SPaolo Bonzini fi 134648328880SPaolo Bonzinifi 1347a5665051SPaolo Bonzini 13489aae6e54SDaniel Henrique Barboza# Check that the C compiler works. Doing this here before testing 13499aae6e54SDaniel Henrique Barboza# the host CPU ensures that we had a valid CC to autodetect the 13509aae6e54SDaniel Henrique Barboza# $cpu var (and we should bail right here if that's not the case). 13519aae6e54SDaniel Henrique Barboza# It also allows the help message to be printed without a CC. 13529aae6e54SDaniel Henrique Barbozawrite_c_skeleton; 13539aae6e54SDaniel Henrique Barbozaif compile_object ; then 13549aae6e54SDaniel Henrique Barboza : C compiler works ok 13559aae6e54SDaniel Henrique Barbozaelse 13569aae6e54SDaniel Henrique Barboza error_exit "\"$cc\" either does not exist or does not work" 13579aae6e54SDaniel Henrique Barbozafi 13589aae6e54SDaniel Henrique Barbozaif ! compile_prog ; then 13599aae6e54SDaniel Henrique Barboza error_exit "\"$cc\" cannot build an executable (is your linker broken?)" 13609aae6e54SDaniel Henrique Barbozafi 13619aae6e54SDaniel Henrique Barboza 13629c83ffd8SPeter Maydell# Consult white-list to determine whether to enable werror 13639c83ffd8SPeter Maydell# by default. Only enable by default for git builds 13649c83ffd8SPeter Maydellif test -z "$werror" ; then 13657d7dbf9dSDan Streetman if test "$git_submodules_action" != "ignore" && \ 1366e633a5c6SEric Blake { test "$linux" = "yes" || test "$mingw32" = "yes"; }; then 13679c83ffd8SPeter Maydell werror="yes" 13689c83ffd8SPeter Maydell else 13699c83ffd8SPeter Maydell werror="no" 13709c83ffd8SPeter Maydell fi 13719c83ffd8SPeter Maydellfi 13729c83ffd8SPeter Maydell 1373975ff037SPaolo Bonziniif test "$targetos" = "bogus"; then 1374fb59dabdSPeter Maydell # Now that we know that we're not printing the help and that 1375fb59dabdSPeter Maydell # the compiler works (so the results of the check_defines we used 1376fb59dabdSPeter Maydell # to identify the OS are reliable), if we didn't recognize the 1377fb59dabdSPeter Maydell # host OS we should stop now. 1378951fedfcSPeter Maydell error_exit "Unrecognized host OS (uname -s reports '$(uname -s)')" 1379fb59dabdSPeter Maydellfi 1380fb59dabdSPeter Maydell 1381efc6c070SThomas Huth# Check whether the compiler matches our minimum requirements: 1382efc6c070SThomas Huthcat > $TMPC << EOF 1383efc6c070SThomas Huth#if defined(__clang_major__) && defined(__clang_minor__) 1384efc6c070SThomas Huth# ifdef __apple_build_version__ 13852a85a08cSDaniel P. Berrangé# if __clang_major__ < 10 || (__clang_major__ == 10 && __clang_minor__ < 0) 13862a85a08cSDaniel P. Berrangé# error You need at least XCode Clang v10.0 to compile QEMU 1387efc6c070SThomas Huth# endif 1388efc6c070SThomas Huth# else 13892a85a08cSDaniel P. Berrangé# if __clang_major__ < 6 || (__clang_major__ == 6 && __clang_minor__ < 0) 13902a85a08cSDaniel P. Berrangé# error You need at least Clang v6.0 to compile QEMU 1391efc6c070SThomas Huth# endif 1392efc6c070SThomas Huth# endif 1393efc6c070SThomas Huth#elif defined(__GNUC__) && defined(__GNUC_MINOR__) 13943830df5fSnia# if __GNUC__ < 7 || (__GNUC__ == 7 && __GNUC_MINOR__ < 4) 13953830df5fSnia# error You need at least GCC v7.4.0 to compile QEMU 1396efc6c070SThomas Huth# endif 1397efc6c070SThomas Huth#else 1398efc6c070SThomas Huth# error You either need GCC or Clang to compiler QEMU 1399efc6c070SThomas Huth#endif 1400efc6c070SThomas Huthint main (void) { return 0; } 1401efc6c070SThomas HuthEOF 1402efc6c070SThomas Huthif ! compile_prog "" "" ; then 14033830df5fSnia error_exit "You need at least GCC v7.4 or Clang v6.0 (or XCode Clang v10.0)" 1404efc6c070SThomas Huthfi 1405efc6c070SThomas Huth 140600849b92SRichard Henderson# Accumulate -Wfoo and -Wno-bar separately. 140700849b92SRichard Henderson# We will list all of the enable flags first, and the disable flags second. 140800849b92SRichard Henderson# Note that we do not add -Werror, because that would enable it for all 140900849b92SRichard Henderson# configure tests. If a configure test failed due to -Werror this would 141000849b92SRichard Henderson# just silently disable some features, so it's too error prone. 141100849b92SRichard Henderson 141200849b92SRichard Hendersonwarn_flags= 141300849b92SRichard Hendersonadd_to warn_flags -Wold-style-declaration 141400849b92SRichard Hendersonadd_to warn_flags -Wold-style-definition 141500849b92SRichard Hendersonadd_to warn_flags -Wtype-limits 141600849b92SRichard Hendersonadd_to warn_flags -Wformat-security 141700849b92SRichard Hendersonadd_to warn_flags -Wformat-y2k 141800849b92SRichard Hendersonadd_to warn_flags -Winit-self 141900849b92SRichard Hendersonadd_to warn_flags -Wignored-qualifiers 142000849b92SRichard Hendersonadd_to warn_flags -Wempty-body 142100849b92SRichard Hendersonadd_to warn_flags -Wnested-externs 142200849b92SRichard Hendersonadd_to warn_flags -Wendif-labels 142300849b92SRichard Hendersonadd_to warn_flags -Wexpansion-to-defined 14240a2ebce9SThomas Huthadd_to warn_flags -Wimplicit-fallthrough=2 142500849b92SRichard Henderson 142600849b92SRichard Hendersonnowarn_flags= 142700849b92SRichard Hendersonadd_to nowarn_flags -Wno-initializer-overrides 142800849b92SRichard Hendersonadd_to nowarn_flags -Wno-missing-include-dirs 142900849b92SRichard Hendersonadd_to nowarn_flags -Wno-shift-negative-value 143000849b92SRichard Hendersonadd_to nowarn_flags -Wno-string-plus-int 143100849b92SRichard Hendersonadd_to nowarn_flags -Wno-typedef-redefinition 1432aabab967SRichard Hendersonadd_to nowarn_flags -Wno-tautological-type-limit-compare 1433bac8d222SRichard Hendersonadd_to nowarn_flags -Wno-psabi 143400849b92SRichard Henderson 143500849b92SRichard Hendersongcc_flags="$warn_flags $nowarn_flags" 143693b25869SJohn Snow 143793b25869SJohn Snowcc_has_warning_flag() { 143893b25869SJohn Snow write_c_skeleton; 143993b25869SJohn Snow 1440a1d29d6cSPeter Maydell # Use the positive sense of the flag when testing for -Wno-wombat 1441a1d29d6cSPeter Maydell # support (gcc will happily accept the -Wno- form of unknown 1442a1d29d6cSPeter Maydell # warning options). 144393b25869SJohn Snow optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')" 144493b25869SJohn Snow compile_prog "-Werror $optflag" "" 144593b25869SJohn Snow} 144693b25869SJohn Snow 14474cb37d11SPhilippe Mathieu-Daudéobjcc_has_warning_flag() { 14484cb37d11SPhilippe Mathieu-Daudé cat > $TMPM <<EOF 14494cb37d11SPhilippe Mathieu-Daudéint main(void) { return 0; } 14504cb37d11SPhilippe Mathieu-DaudéEOF 14514cb37d11SPhilippe Mathieu-Daudé 14524cb37d11SPhilippe Mathieu-Daudé # Use the positive sense of the flag when testing for -Wno-wombat 14534cb37d11SPhilippe Mathieu-Daudé # support (gcc will happily accept the -Wno- form of unknown 14544cb37d11SPhilippe Mathieu-Daudé # warning options). 14554cb37d11SPhilippe Mathieu-Daudé optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')" 14564cb37d11SPhilippe Mathieu-Daudé do_objc -Werror $optflag \ 14574cb37d11SPhilippe Mathieu-Daudé $OBJCFLAGS $EXTRA_OBJCFLAGS $CONFIGURE_OBJCFLAGS $QEMU_OBJCFLAGS \ 14584cb37d11SPhilippe Mathieu-Daudé -o $TMPE $TMPM $QEMU_LDFLAGS 14594cb37d11SPhilippe Mathieu-Daudé} 14604cb37d11SPhilippe Mathieu-Daudé 146193b25869SJohn Snowfor flag in $gcc_flags; do 146293b25869SJohn Snow if cc_has_warning_flag $flag ; then 14638d05095cSPaolo Bonzini QEMU_CFLAGS="$QEMU_CFLAGS $flag" 14648d05095cSPaolo Bonzini fi 14654cb37d11SPhilippe Mathieu-Daudé if objcc_has_warning_flag $flag ; then 14664cb37d11SPhilippe Mathieu-Daudé QEMU_OBJCFLAGS="$QEMU_OBJCFLAGS $flag" 14674cb37d11SPhilippe Mathieu-Daudé fi 14688d05095cSPaolo Bonzinidone 14698d05095cSPaolo Bonzini 147063678e17SSteven Noonanif test "$stack_protector" != "no"; then 1471fccd35a0SRodrigo Rebello cat > $TMPC << EOF 1472fccd35a0SRodrigo Rebelloint main(int argc, char *argv[]) 1473fccd35a0SRodrigo Rebello{ 1474fccd35a0SRodrigo Rebello char arr[64], *p = arr, *c = argv[0]; 1475fccd35a0SRodrigo Rebello while (*c) { 1476fccd35a0SRodrigo Rebello *p++ = *c++; 1477fccd35a0SRodrigo Rebello } 1478fccd35a0SRodrigo Rebello return 0; 1479fccd35a0SRodrigo Rebello} 1480fccd35a0SRodrigo RebelloEOF 148163678e17SSteven Noonan gcc_flags="-fstack-protector-strong -fstack-protector-all" 14823b463a3fSMiroslav Rezanina sp_on=0 148363678e17SSteven Noonan for flag in $gcc_flags; do 1484590e5dd9SPeter Maydell # We need to check both a compile and a link, since some compiler 1485590e5dd9SPeter Maydell # setups fail only on a .c->.o compile and some only at link time 1486086d5f75SPaolo Bonzini if compile_object "-Werror $flag" && 1487590e5dd9SPeter Maydell compile_prog "-Werror $flag" ""; then 148863678e17SSteven Noonan QEMU_CFLAGS="$QEMU_CFLAGS $flag" 1489db5adeaaSPaolo Bonzini QEMU_LDFLAGS="$QEMU_LDFLAGS $flag" 14903b463a3fSMiroslav Rezanina sp_on=1 149163678e17SSteven Noonan break 149263678e17SSteven Noonan fi 149363678e17SSteven Noonan done 14943b463a3fSMiroslav Rezanina if test "$stack_protector" = yes; then 14953b463a3fSMiroslav Rezanina if test $sp_on = 0; then 14963b463a3fSMiroslav Rezanina error_exit "Stack protector not supported" 14973b463a3fSMiroslav Rezanina fi 14983b463a3fSMiroslav Rezanina fi 149937746c5eSMarc-André Lureaufi 150037746c5eSMarc-André Lureau 150120bc94a2SPaolo Bonzini# Disable -Wmissing-braces on older compilers that warn even for 150220bc94a2SPaolo Bonzini# the "universal" C zero initializer {0}. 150320bc94a2SPaolo Bonzinicat > $TMPC << EOF 150420bc94a2SPaolo Bonzinistruct { 150520bc94a2SPaolo Bonzini int a[2]; 150620bc94a2SPaolo Bonzini} x = {0}; 150720bc94a2SPaolo BonziniEOF 150820bc94a2SPaolo Bonziniif compile_object "-Werror" "" ; then 150920bc94a2SPaolo Bonzini : 151020bc94a2SPaolo Bonzinielse 151120bc94a2SPaolo Bonzini QEMU_CFLAGS="$QEMU_CFLAGS -Wno-missing-braces" 151220bc94a2SPaolo Bonzinifi 151320bc94a2SPaolo Bonzini 151421e709aaSMarc-André Lureau# Our module code doesn't support Windows 151521e709aaSMarc-André Lureauif test "$modules" = "yes" && test "$mingw32" = "yes" ; then 151621e709aaSMarc-André Lureau error_exit "Modules are not available for Windows" 151721e709aaSMarc-André Lureaufi 151821e709aaSMarc-André Lureau 1519bd83c861SChristian Ehrhardt# module_upgrades is only reasonable if modules are enabled 1520bd83c861SChristian Ehrhardtif test "$modules" = "no" && test "$module_upgrades" = "yes" ; then 1521bd83c861SChristian Ehrhardt error_exit "Can't enable module-upgrades as Modules are not enabled" 1522bd83c861SChristian Ehrhardtfi 1523bd83c861SChristian Ehrhardt 15245f2453acSAlex Bennée# Static linking is not possible with plugins, modules or PIE 152540d6444eSAvi Kivityif test "$static" = "yes" ; then 1526aa0d1f44SPaolo Bonzini if test "$modules" = "yes" ; then 1527aa0d1f44SPaolo Bonzini error_exit "static and modules are mutually incompatible" 1528aa0d1f44SPaolo Bonzini fi 15295f2453acSAlex Bennée if test "$plugins" = "yes"; then 15305f2453acSAlex Bennée error_exit "static and plugins are mutually incompatible" 1531ba4dd2aaSAlex Bennée else 1532ba4dd2aaSAlex Bennée plugins="no" 15335f2453acSAlex Bennée fi 153440d6444eSAvi Kivityfi 153537650689SPaolo Bonzinitest "$plugins" = "" && plugins=yes 153640d6444eSAvi Kivity 153740d6444eSAvi Kivitycat > $TMPC << EOF 153821d4a791SAvi Kivity 153921d4a791SAvi Kivity#ifdef __linux__ 154021d4a791SAvi Kivity# define THREAD __thread 154121d4a791SAvi Kivity#else 154221d4a791SAvi Kivity# define THREAD 154321d4a791SAvi Kivity#endif 154421d4a791SAvi Kivitystatic THREAD int tls_var; 154521d4a791SAvi Kivityint main(void) { return tls_var; } 154640d6444eSAvi KivityEOF 1547b2634124SRichard Henderson 1548ffd205efSJessica Clarke# Check we support -fno-pie and -no-pie first; we will need the former for 1549ffd205efSJessica Clarke# building ROMs, and both for everything if --disable-pie is passed. 1550412aeacdSAlex Bennéeif compile_prog "-Werror -fno-pie" "-no-pie"; then 1551412aeacdSAlex Bennée CFLAGS_NOPIE="-fno-pie" 1552ffd205efSJessica Clarke LDFLAGS_NOPIE="-no-pie" 1553412aeacdSAlex Bennéefi 1554412aeacdSAlex Bennée 155512781462SRichard Hendersonif test "$static" = "yes"; then 1556eca7a8e6SRichard Henderson if test "$pie" != "no" && compile_prog "-Werror -fPIE -DPIE" "-static-pie"; then 15575770e8afSPaolo Bonzini CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS" 155812781462SRichard Henderson QEMU_LDFLAGS="-static-pie $QEMU_LDFLAGS" 155912781462SRichard Henderson pie="yes" 156012781462SRichard Henderson elif test "$pie" = "yes"; then 156112781462SRichard Henderson error_exit "-static-pie not available due to missing toolchain support" 156212781462SRichard Henderson else 156312781462SRichard Henderson QEMU_LDFLAGS="-static $QEMU_LDFLAGS" 156412781462SRichard Henderson pie="no" 156512781462SRichard Henderson fi 156612781462SRichard Hendersonelif test "$pie" = "no"; then 15675770e8afSPaolo Bonzini CONFIGURE_CFLAGS="$CFLAGS_NOPIE $CONFIGURE_CFLAGS" 1568ffd205efSJessica Clarke CONFIGURE_LDFLAGS="$LDFLAGS_NOPIE $CONFIGURE_LDFLAGS" 1569eca7a8e6SRichard Hendersonelif compile_prog "-Werror -fPIE -DPIE" "-pie"; then 15705770e8afSPaolo Bonzini CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS" 15715770e8afSPaolo Bonzini CONFIGURE_LDFLAGS="-pie $CONFIGURE_LDFLAGS" 157240d6444eSAvi Kivity pie="yes" 15732c674109SRichard Hendersonelif test "$pie" = "yes"; then 157476ad07a4SPeter Maydell error_exit "PIE not available due to missing toolchain support" 157540d6444eSAvi Kivityelse 157640d6444eSAvi Kivity echo "Disabling PIE due to missing toolchain support" 157740d6444eSAvi Kivity pie="no" 157840d6444eSAvi Kivityfi 157940d6444eSAvi Kivity 1580e6cbd751SRichard Henderson# Detect support for PT_GNU_RELRO + DT_BIND_NOW. 1581e6cbd751SRichard Henderson# The combination is known as "full relro", because .got.plt is read-only too. 1582e6cbd751SRichard Hendersonif compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then 1583e6cbd751SRichard Henderson QEMU_LDFLAGS="-Wl,-z,relro -Wl,-z,now $QEMU_LDFLAGS" 1584e6cbd751SRichard Hendersonfi 1585e6cbd751SRichard Henderson 158609dada40SPaolo Bonzini########################################## 158709dada40SPaolo Bonzini# __sync_fetch_and_and requires at least -march=i486. Many toolchains 158809dada40SPaolo Bonzini# use i686 as default anyway, but for those that don't, an explicit 158909dada40SPaolo Bonzini# specification is necessary 159009dada40SPaolo Bonzini 159109dada40SPaolo Bonziniif test "$cpu" = "i386"; then 159209dada40SPaolo Bonzini cat > $TMPC << EOF 159309dada40SPaolo Bonzinistatic int sfaa(int *ptr) 159409dada40SPaolo Bonzini{ 159509dada40SPaolo Bonzini return __sync_fetch_and_and(ptr, 0); 159609dada40SPaolo Bonzini} 159709dada40SPaolo Bonzini 159809dada40SPaolo Bonziniint main(void) 159909dada40SPaolo Bonzini{ 160009dada40SPaolo Bonzini int val = 42; 16011405b629SStefan Weil val = __sync_val_compare_and_swap(&val, 0, 1); 160209dada40SPaolo Bonzini sfaa(&val); 160309dada40SPaolo Bonzini return val; 160409dada40SPaolo Bonzini} 160509dada40SPaolo BonziniEOF 160609dada40SPaolo Bonzini if ! compile_prog "" "" ; then 160709dada40SPaolo Bonzini QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS" 160809dada40SPaolo Bonzini fi 160909dada40SPaolo Bonzinifi 161009dada40SPaolo Bonzini 161156267b62SPhilippe Mathieu-Daudéif test "$tcg" = "enabled"; then 161256267b62SPhilippe Mathieu-Daudé git_submodules="$git_submodules tests/fp/berkeley-testfloat-3" 161356267b62SPhilippe Mathieu-Daudé git_submodules="$git_submodules tests/fp/berkeley-softfloat-3" 161456267b62SPhilippe Mathieu-Daudéfi 161556267b62SPhilippe Mathieu-Daudé 1616afb63ebdSStefan Weilif test -z "${target_list+xxx}" ; then 1617fdb75aefSPaolo Bonzini default_targets=yes 1618d880a3baSPaolo Bonzini for target in $default_target_list; do 1619d880a3baSPaolo Bonzini target_list="$target_list $target" 1620d880a3baSPaolo Bonzini done 1621d880a3baSPaolo Bonzini target_list="${target_list# }" 1622121afa9eSAnthony Liguorielse 1623fdb75aefSPaolo Bonzini default_targets=no 162489138857SStefan Weil target_list=$(echo "$target_list" | sed -e 's/,/ /g') 1625d880a3baSPaolo Bonzini for target in $target_list; do 162625b48338SPeter Maydell # Check that we recognised the target name; this allows a more 162725b48338SPeter Maydell # friendly error message than if we let it fall through. 162825b48338SPeter Maydell case " $default_target_list " in 162925b48338SPeter Maydell *" $target "*) 163025b48338SPeter Maydell ;; 163125b48338SPeter Maydell *) 163225b48338SPeter Maydell error_exit "Unknown target name '$target'" 163325b48338SPeter Maydell ;; 163425b48338SPeter Maydell esac 163525b48338SPeter Maydell done 1636d880a3baSPaolo Bonzinifi 163725b48338SPeter Maydell 1638f55fe278SPaolo Bonzini# see if system emulation was really requested 1639f55fe278SPaolo Bonzinicase " $target_list " in 1640f55fe278SPaolo Bonzini *"-softmmu "*) softmmu=yes 1641f55fe278SPaolo Bonzini ;; 1642f55fe278SPaolo Bonzini *) softmmu=no 1643f55fe278SPaolo Bonzini ;; 1644f55fe278SPaolo Bonziniesac 16455327cf48Sbellard 1646249247c9SJuan Quintelafeature_not_found() { 1647249247c9SJuan Quintela feature=$1 164821684af0SStewart Smith remedy=$2 1649249247c9SJuan Quintela 165076ad07a4SPeter Maydell error_exit "User requested feature $feature" \ 165121684af0SStewart Smith "configure was not able to find it." \ 165221684af0SStewart Smith "$remedy" 1653249247c9SJuan Quintela} 1654249247c9SJuan Quintela 16557d13299dSbellard# --- 16567d13299dSbellard# big/little endian test 16577d13299dSbellardcat > $TMPC << EOF 1658659eb157SThomas Huth#include <stdio.h> 165961cc919fSMike Frysingershort big_endian[] = { 0x4269, 0x4765, 0x4e64, 0x4961, 0x4e00, 0, }; 166061cc919fSMike Frysingershort little_endian[] = { 0x694c, 0x7454, 0x654c, 0x6e45, 0x6944, 0x6e41, 0, }; 1661659eb157SThomas Huthint main(int argc, char *argv[]) 1662659eb157SThomas Huth{ 1663659eb157SThomas Huth return printf("%s %s\n", (char *)big_endian, (char *)little_endian); 16647d13299dSbellard} 16657d13299dSbellardEOF 16667d13299dSbellard 1667659eb157SThomas Huthif compile_prog ; then 1668659eb157SThomas Huth if strings -a $TMPE | grep -q BiGeNdIaN ; then 166961cc919fSMike Frysinger bigendian="yes" 1670659eb157SThomas Huth elif strings -a $TMPE | grep -q LiTtLeEnDiAn ; then 167161cc919fSMike Frysinger bigendian="no" 16727d13299dSbellard else 16737d13299dSbellard echo big/little test failed 1674659eb157SThomas Huth exit 1 16757d13299dSbellard fi 16767d13299dSbellardelse 167761cc919fSMike Frysinger echo big/little test failed 1678659eb157SThomas Huth exit 1 16797d13299dSbellardfi 16807d13299dSbellard 1681299e6f19SPaolo Bonzini######################################### 1682299e6f19SPaolo Bonzini# vhost interdependencies and host support 1683299e6f19SPaolo Bonzini 1684299e6f19SPaolo Bonzini# vhost backends 1685eb9baecdSSergio Lopezif test "$vhost_user" = "yes" && test "$mingw32" = "yes"; then 1686eb9baecdSSergio Lopez error_exit "vhost-user is not available on Windows" 1687299e6f19SPaolo Bonzinifi 1688108a6481SCindy Lutest "$vhost_vdpa" = "" && vhost_vdpa=$linux 1689108a6481SCindy Luif test "$vhost_vdpa" = "yes" && test "$linux" != "yes"; then 1690108a6481SCindy Lu error_exit "vhost-vdpa is only available on Linux" 1691108a6481SCindy Lufi 1692299e6f19SPaolo Bonzinitest "$vhost_kernel" = "" && vhost_kernel=$linux 1693299e6f19SPaolo Bonziniif test "$vhost_kernel" = "yes" && test "$linux" != "yes"; then 1694299e6f19SPaolo Bonzini error_exit "vhost-kernel is only available on Linux" 1695299e6f19SPaolo Bonzinifi 1696299e6f19SPaolo Bonzini 1697299e6f19SPaolo Bonzini# vhost-kernel devices 1698299e6f19SPaolo Bonzinitest "$vhost_scsi" = "" && vhost_scsi=$vhost_kernel 1699299e6f19SPaolo Bonziniif test "$vhost_scsi" = "yes" && test "$vhost_kernel" != "yes"; then 1700299e6f19SPaolo Bonzini error_exit "--enable-vhost-scsi requires --enable-vhost-kernel" 1701299e6f19SPaolo Bonzinifi 1702299e6f19SPaolo Bonzinitest "$vhost_vsock" = "" && vhost_vsock=$vhost_kernel 1703299e6f19SPaolo Bonziniif test "$vhost_vsock" = "yes" && test "$vhost_kernel" != "yes"; then 1704299e6f19SPaolo Bonzini error_exit "--enable-vhost-vsock requires --enable-vhost-kernel" 1705299e6f19SPaolo Bonzinifi 1706299e6f19SPaolo Bonzini 1707299e6f19SPaolo Bonzini# vhost-user backends 1708299e6f19SPaolo Bonzinitest "$vhost_net_user" = "" && vhost_net_user=$vhost_user 1709299e6f19SPaolo Bonziniif test "$vhost_net_user" = "yes" && test "$vhost_user" = "no"; then 1710299e6f19SPaolo Bonzini error_exit "--enable-vhost-net-user requires --enable-vhost-user" 1711299e6f19SPaolo Bonzinifi 1712299e6f19SPaolo Bonzinitest "$vhost_crypto" = "" && vhost_crypto=$vhost_user 1713299e6f19SPaolo Bonziniif test "$vhost_crypto" = "yes" && test "$vhost_user" = "no"; then 1714299e6f19SPaolo Bonzini error_exit "--enable-vhost-crypto requires --enable-vhost-user" 1715299e6f19SPaolo Bonzinifi 171698fc1adaSDr. David Alan Gilberttest "$vhost_user_fs" = "" && vhost_user_fs=$vhost_user 171798fc1adaSDr. David Alan Gilbertif test "$vhost_user_fs" = "yes" && test "$vhost_user" = "no"; then 171898fc1adaSDr. David Alan Gilbert error_exit "--enable-vhost-user-fs requires --enable-vhost-user" 171998fc1adaSDr. David Alan Gilbertfi 1720108a6481SCindy Lu#vhost-vdpa backends 1721108a6481SCindy Lutest "$vhost_net_vdpa" = "" && vhost_net_vdpa=$vhost_vdpa 1722108a6481SCindy Luif test "$vhost_net_vdpa" = "yes" && test "$vhost_vdpa" = "no"; then 1723108a6481SCindy Lu error_exit "--enable-vhost-net-vdpa requires --enable-vhost-vdpa" 1724108a6481SCindy Lufi 1725299e6f19SPaolo Bonzini 172640bc0ca9SLaurent Vivier# OR the vhost-kernel, vhost-vdpa and vhost-user values for simplicity 1727299e6f19SPaolo Bonziniif test "$vhost_net" = ""; then 1728299e6f19SPaolo Bonzini test "$vhost_net_user" = "yes" && vhost_net=yes 172940bc0ca9SLaurent Vivier test "$vhost_net_vdpa" = "yes" && vhost_net=yes 1730299e6f19SPaolo Bonzini test "$vhost_kernel" = "yes" && vhost_net=yes 1731299e6f19SPaolo Bonzinifi 1732299e6f19SPaolo Bonzini 1733015a33bdSGonglei########################################## 1734779ab5e3SStefan Weil# pkg-config probe 1735779ab5e3SStefan Weil 1736779ab5e3SStefan Weilif ! has "$pkg_config_exe"; then 173776ad07a4SPeter Maydell error_exit "pkg-config binary '$pkg_config_exe' not found" 1738779ab5e3SStefan Weilfi 1739779ab5e3SStefan Weil 1740779ab5e3SStefan Weil########################################## 1741e37630caSaliguori# xen probe 1742e37630caSaliguori 17431badb709SPaolo Bonziniif test "$xen" != "disabled" ; then 1744c1cdd9d5SJuergen Gross # Check whether Xen library path is specified via --extra-ldflags to avoid 1745c1cdd9d5SJuergen Gross # overriding this setting with pkg-config output. If not, try pkg-config 1746c1cdd9d5SJuergen Gross # to obtain all needed flags. 1747c1cdd9d5SJuergen Gross 1748c1cdd9d5SJuergen Gross if ! echo $EXTRA_LDFLAGS | grep tools/libxc > /dev/null && \ 1749c1cdd9d5SJuergen Gross $pkg_config --exists xencontrol ; then 1750c1cdd9d5SJuergen Gross xen_ctrl_version="$(printf '%d%02d%02d' \ 1751c1cdd9d5SJuergen Gross $($pkg_config --modversion xencontrol | sed 's/\./ /g') )" 17521badb709SPaolo Bonzini xen=enabled 17535b6a8f43SMichael Tokarev xen_pc="xencontrol xenstore xenforeignmemory xengnttab" 1754c1cdd9d5SJuergen Gross xen_pc="$xen_pc xenevtchn xendevicemodel" 175558ea9a7aSAnthony PERARD if $pkg_config --exists xentoolcore; then 175658ea9a7aSAnthony PERARD xen_pc="$xen_pc xentoolcore" 175758ea9a7aSAnthony PERARD fi 1758582ea95fSMarc-André Lureau xen_cflags="$($pkg_config --cflags $xen_pc)" 1759582ea95fSMarc-André Lureau xen_libs="$($pkg_config --libs $xen_pc)" 1760c1cdd9d5SJuergen Gross else 1761c1cdd9d5SJuergen Gross 17625b6a8f43SMichael Tokarev xen_libs="-lxenstore -lxenctrl" 1763d9506cabSAnthony PERARD xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn" 1764d5b93ddfSAnthony PERARD 176550ced5b3SStefan Weil # First we test whether Xen headers and libraries are available. 176650ced5b3SStefan Weil # If no, we are done and there is no Xen support. 176750ced5b3SStefan Weil # If yes, more tests are run to detect the Xen version. 176850ced5b3SStefan Weil 176950ced5b3SStefan Weil # Xen (any) 177050ced5b3SStefan Weil cat > $TMPC <<EOF 177150ced5b3SStefan Weil#include <xenctrl.h> 177250ced5b3SStefan Weilint main(void) { 177350ced5b3SStefan Weil return 0; 177450ced5b3SStefan Weil} 177550ced5b3SStefan WeilEOF 177650ced5b3SStefan Weil if ! compile_prog "" "$xen_libs" ; then 177750ced5b3SStefan Weil # Xen not found 17781badb709SPaolo Bonzini if test "$xen" = "enabled" ; then 177921684af0SStewart Smith feature_not_found "xen" "Install xen devel" 178050ced5b3SStefan Weil fi 17811badb709SPaolo Bonzini xen=disabled 178250ced5b3SStefan Weil 1783d5b93ddfSAnthony PERARD # Xen unstable 178469deef08SPeter Maydell elif 178569deef08SPeter Maydell cat > $TMPC <<EOF && 17862cbf8903SRoss Lagerwall#undef XC_WANT_COMPAT_DEVICEMODEL_API 17872cbf8903SRoss Lagerwall#define __XEN_TOOLS__ 17882cbf8903SRoss Lagerwall#include <xendevicemodel.h> 1789d3c49ebbSPaul Durrant#include <xenforeignmemory.h> 17902cbf8903SRoss Lagerwallint main(void) { 17912cbf8903SRoss Lagerwall xendevicemodel_handle *xd; 1792d3c49ebbSPaul Durrant xenforeignmemory_handle *xfmem; 17932cbf8903SRoss Lagerwall 17942cbf8903SRoss Lagerwall xd = xendevicemodel_open(0, 0); 17952cbf8903SRoss Lagerwall xendevicemodel_pin_memory_cacheattr(xd, 0, 0, 0, 0); 17962cbf8903SRoss Lagerwall 1797d3c49ebbSPaul Durrant xfmem = xenforeignmemory_open(0, 0); 1798d3c49ebbSPaul Durrant xenforeignmemory_map_resource(xfmem, 0, 0, 0, 0, 0, NULL, 0, 0); 1799d3c49ebbSPaul Durrant 18002cbf8903SRoss Lagerwall return 0; 18012cbf8903SRoss Lagerwall} 18022cbf8903SRoss LagerwallEOF 18032cbf8903SRoss Lagerwall compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore" 18042cbf8903SRoss Lagerwall then 18052cbf8903SRoss Lagerwall xen_stable_libs="-lxendevicemodel $xen_stable_libs -lxentoolcore" 18062cbf8903SRoss Lagerwall xen_ctrl_version=41100 18071badb709SPaolo Bonzini xen=enabled 18082cbf8903SRoss Lagerwall elif 18092cbf8903SRoss Lagerwall cat > $TMPC <<EOF && 18105ba3d756SIgor Druzhinin#undef XC_WANT_COMPAT_MAP_FOREIGN_API 18115ba3d756SIgor Druzhinin#include <xenforeignmemory.h> 181258ea9a7aSAnthony PERARD#include <xentoolcore.h> 18135ba3d756SIgor Druzhininint main(void) { 18145ba3d756SIgor Druzhinin xenforeignmemory_handle *xfmem; 18155ba3d756SIgor Druzhinin 18165ba3d756SIgor Druzhinin xfmem = xenforeignmemory_open(0, 0); 18175ba3d756SIgor Druzhinin xenforeignmemory_map2(xfmem, 0, 0, 0, 0, 0, 0, 0); 181858ea9a7aSAnthony PERARD xentoolcore_restrict_all(0); 18195ba3d756SIgor Druzhinin 18205ba3d756SIgor Druzhinin return 0; 18215ba3d756SIgor Druzhinin} 18225ba3d756SIgor DruzhininEOF 182358ea9a7aSAnthony PERARD compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore" 18245ba3d756SIgor Druzhinin then 182558ea9a7aSAnthony PERARD xen_stable_libs="-lxendevicemodel $xen_stable_libs -lxentoolcore" 18265ba3d756SIgor Druzhinin xen_ctrl_version=41000 18271badb709SPaolo Bonzini xen=enabled 18285ba3d756SIgor Druzhinin elif 18295ba3d756SIgor Druzhinin cat > $TMPC <<EOF && 1830da8090ccSPaul Durrant#undef XC_WANT_COMPAT_DEVICEMODEL_API 1831da8090ccSPaul Durrant#define __XEN_TOOLS__ 1832da8090ccSPaul Durrant#include <xendevicemodel.h> 1833da8090ccSPaul Durrantint main(void) { 1834da8090ccSPaul Durrant xendevicemodel_handle *xd; 1835da8090ccSPaul Durrant 1836da8090ccSPaul Durrant xd = xendevicemodel_open(0, 0); 1837da8090ccSPaul Durrant xendevicemodel_close(xd); 1838da8090ccSPaul Durrant 1839da8090ccSPaul Durrant return 0; 1840da8090ccSPaul Durrant} 1841da8090ccSPaul DurrantEOF 1842da8090ccSPaul Durrant compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs" 1843da8090ccSPaul Durrant then 1844da8090ccSPaul Durrant xen_stable_libs="-lxendevicemodel $xen_stable_libs" 1845f1167ee6SJuergen Gross xen_ctrl_version=40900 18461badb709SPaolo Bonzini xen=enabled 1847da8090ccSPaul Durrant elif 1848da8090ccSPaul Durrant cat > $TMPC <<EOF && 18495eeb39c2SIan Campbell/* 18505eeb39c2SIan Campbell * If we have stable libs the we don't want the libxc compat 18515eeb39c2SIan Campbell * layers, regardless of what CFLAGS we may have been given. 1852b6eb9b45SPaulina Szubarczyk * 1853b6eb9b45SPaulina Szubarczyk * Also, check if xengnttab_grant_copy_segment_t is defined and 1854b6eb9b45SPaulina Szubarczyk * grant copy operation is implemented. 1855b6eb9b45SPaulina Szubarczyk */ 1856b6eb9b45SPaulina Szubarczyk#undef XC_WANT_COMPAT_EVTCHN_API 1857b6eb9b45SPaulina Szubarczyk#undef XC_WANT_COMPAT_GNTTAB_API 1858b6eb9b45SPaulina Szubarczyk#undef XC_WANT_COMPAT_MAP_FOREIGN_API 1859b6eb9b45SPaulina Szubarczyk#include <xenctrl.h> 1860b6eb9b45SPaulina Szubarczyk#include <xenstore.h> 1861b6eb9b45SPaulina Szubarczyk#include <xenevtchn.h> 1862b6eb9b45SPaulina Szubarczyk#include <xengnttab.h> 1863b6eb9b45SPaulina Szubarczyk#include <xenforeignmemory.h> 1864b6eb9b45SPaulina Szubarczyk#include <stdint.h> 1865b6eb9b45SPaulina Szubarczyk#include <xen/hvm/hvm_info_table.h> 1866b6eb9b45SPaulina Szubarczyk#if !defined(HVM_MAX_VCPUS) 1867b6eb9b45SPaulina Szubarczyk# error HVM_MAX_VCPUS not defined 1868b6eb9b45SPaulina Szubarczyk#endif 1869b6eb9b45SPaulina Szubarczykint main(void) { 1870b6eb9b45SPaulina Szubarczyk xc_interface *xc = NULL; 1871b6eb9b45SPaulina Szubarczyk xenforeignmemory_handle *xfmem; 1872b6eb9b45SPaulina Szubarczyk xenevtchn_handle *xe; 1873b6eb9b45SPaulina Szubarczyk xengnttab_handle *xg; 1874b6eb9b45SPaulina Szubarczyk xengnttab_grant_copy_segment_t* seg = NULL; 1875b6eb9b45SPaulina Szubarczyk 1876b6eb9b45SPaulina Szubarczyk xs_daemon_open(); 1877b6eb9b45SPaulina Szubarczyk 1878b6eb9b45SPaulina Szubarczyk xc = xc_interface_open(0, 0, 0); 1879b6eb9b45SPaulina Szubarczyk xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1880b6eb9b45SPaulina Szubarczyk xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); 1881b6eb9b45SPaulina Szubarczyk xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); 1882b6eb9b45SPaulina Szubarczyk xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL); 1883b6eb9b45SPaulina Szubarczyk 1884b6eb9b45SPaulina Szubarczyk xfmem = xenforeignmemory_open(0, 0); 1885b6eb9b45SPaulina Szubarczyk xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0); 1886b6eb9b45SPaulina Szubarczyk 1887b6eb9b45SPaulina Szubarczyk xe = xenevtchn_open(0, 0); 1888b6eb9b45SPaulina Szubarczyk xenevtchn_fd(xe); 1889b6eb9b45SPaulina Szubarczyk 1890b6eb9b45SPaulina Szubarczyk xg = xengnttab_open(0, 0); 1891b6eb9b45SPaulina Szubarczyk xengnttab_grant_copy(xg, 0, seg); 1892b6eb9b45SPaulina Szubarczyk 1893b6eb9b45SPaulina Szubarczyk return 0; 1894b6eb9b45SPaulina Szubarczyk} 1895b6eb9b45SPaulina SzubarczykEOF 1896b6eb9b45SPaulina Szubarczyk compile_prog "" "$xen_libs $xen_stable_libs" 1897b6eb9b45SPaulina Szubarczyk then 1898f1167ee6SJuergen Gross xen_ctrl_version=40800 18991badb709SPaolo Bonzini xen=enabled 1900b6eb9b45SPaulina Szubarczyk elif 1901b6eb9b45SPaulina Szubarczyk cat > $TMPC <<EOF && 1902b6eb9b45SPaulina Szubarczyk/* 1903b6eb9b45SPaulina Szubarczyk * If we have stable libs the we don't want the libxc compat 1904b6eb9b45SPaulina Szubarczyk * layers, regardless of what CFLAGS we may have been given. 19055eeb39c2SIan Campbell */ 19065eeb39c2SIan Campbell#undef XC_WANT_COMPAT_EVTCHN_API 19075eeb39c2SIan Campbell#undef XC_WANT_COMPAT_GNTTAB_API 19085eeb39c2SIan Campbell#undef XC_WANT_COMPAT_MAP_FOREIGN_API 19095eeb39c2SIan Campbell#include <xenctrl.h> 19105eeb39c2SIan Campbell#include <xenstore.h> 19115eeb39c2SIan Campbell#include <xenevtchn.h> 19125eeb39c2SIan Campbell#include <xengnttab.h> 19135eeb39c2SIan Campbell#include <xenforeignmemory.h> 19145eeb39c2SIan Campbell#include <stdint.h> 19155eeb39c2SIan Campbell#include <xen/hvm/hvm_info_table.h> 19165eeb39c2SIan Campbell#if !defined(HVM_MAX_VCPUS) 19175eeb39c2SIan Campbell# error HVM_MAX_VCPUS not defined 19185eeb39c2SIan Campbell#endif 19195eeb39c2SIan Campbellint main(void) { 19205eeb39c2SIan Campbell xc_interface *xc = NULL; 19215eeb39c2SIan Campbell xenforeignmemory_handle *xfmem; 19225eeb39c2SIan Campbell xenevtchn_handle *xe; 19235eeb39c2SIan Campbell xengnttab_handle *xg; 19245eeb39c2SIan Campbell 19255eeb39c2SIan Campbell xs_daemon_open(); 19265eeb39c2SIan Campbell 19275eeb39c2SIan Campbell xc = xc_interface_open(0, 0, 0); 19285eeb39c2SIan Campbell xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 19295eeb39c2SIan Campbell xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); 19305eeb39c2SIan Campbell xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); 19315eeb39c2SIan Campbell xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL); 19325eeb39c2SIan Campbell 19335eeb39c2SIan Campbell xfmem = xenforeignmemory_open(0, 0); 19345eeb39c2SIan Campbell xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0); 19355eeb39c2SIan Campbell 19365eeb39c2SIan Campbell xe = xenevtchn_open(0, 0); 19375eeb39c2SIan Campbell xenevtchn_fd(xe); 19385eeb39c2SIan Campbell 19395eeb39c2SIan Campbell xg = xengnttab_open(0, 0); 19405eeb39c2SIan Campbell xengnttab_map_grant_ref(xg, 0, 0, 0); 19415eeb39c2SIan Campbell 19425eeb39c2SIan Campbell return 0; 19435eeb39c2SIan Campbell} 19445eeb39c2SIan CampbellEOF 19455eeb39c2SIan Campbell compile_prog "" "$xen_libs $xen_stable_libs" 19465eeb39c2SIan Campbell then 1947f1167ee6SJuergen Gross xen_ctrl_version=40701 19481badb709SPaolo Bonzini xen=enabled 1949cdadde39SRoger Pau Monne 1950cdadde39SRoger Pau Monne # Xen 4.6 1951cdadde39SRoger Pau Monne elif 1952cdadde39SRoger Pau Monne cat > $TMPC <<EOF && 1953cdadde39SRoger Pau Monne#include <xenctrl.h> 1954e108a3c1SAnthony PERARD#include <xenstore.h> 1955d5b93ddfSAnthony PERARD#include <stdint.h> 1956d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h> 1957d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS) 1958d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined 1959d5b93ddfSAnthony PERARD#endif 1960d5b93ddfSAnthony PERARDint main(void) { 1961d5b93ddfSAnthony PERARD xc_interface *xc; 1962d5b93ddfSAnthony PERARD xs_daemon_open(); 1963d5b93ddfSAnthony PERARD xc = xc_interface_open(0, 0, 0); 1964d5b93ddfSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1965d5b93ddfSAnthony PERARD xc_gnttab_open(NULL, 0); 1966b87de24eSAnthony PERARD xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); 19678688e065SStefano Stabellini xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); 1968d8b441a3SJan Beulich xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL); 196920a544c7SKonrad Rzeszutek Wilk xc_reserved_device_memory_map(xc, 0, 0, 0, 0, NULL, 0); 1970d8b441a3SJan Beulich return 0; 1971d8b441a3SJan Beulich} 1972d8b441a3SJan BeulichEOF 1973d8b441a3SJan Beulich compile_prog "" "$xen_libs" 1974d8b441a3SJan Beulich then 1975f1167ee6SJuergen Gross xen_ctrl_version=40600 19761badb709SPaolo Bonzini xen=enabled 1977d8b441a3SJan Beulich 1978d8b441a3SJan Beulich # Xen 4.5 1979d8b441a3SJan Beulich elif 1980d8b441a3SJan Beulich cat > $TMPC <<EOF && 1981d8b441a3SJan Beulich#include <xenctrl.h> 1982d8b441a3SJan Beulich#include <xenstore.h> 1983d8b441a3SJan Beulich#include <stdint.h> 1984d8b441a3SJan Beulich#include <xen/hvm/hvm_info_table.h> 1985d8b441a3SJan Beulich#if !defined(HVM_MAX_VCPUS) 1986d8b441a3SJan Beulich# error HVM_MAX_VCPUS not defined 1987d8b441a3SJan Beulich#endif 1988d8b441a3SJan Beulichint main(void) { 1989d8b441a3SJan Beulich xc_interface *xc; 1990d8b441a3SJan Beulich xs_daemon_open(); 1991d8b441a3SJan Beulich xc = xc_interface_open(0, 0, 0); 1992d8b441a3SJan Beulich xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1993d8b441a3SJan Beulich xc_gnttab_open(NULL, 0); 1994d8b441a3SJan Beulich xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); 1995d8b441a3SJan Beulich xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); 19963996e85cSPaul Durrant xc_hvm_create_ioreq_server(xc, 0, 0, NULL); 19973996e85cSPaul Durrant return 0; 19983996e85cSPaul Durrant} 19993996e85cSPaul DurrantEOF 20003996e85cSPaul Durrant compile_prog "" "$xen_libs" 20013996e85cSPaul Durrant then 2002f1167ee6SJuergen Gross xen_ctrl_version=40500 20031badb709SPaolo Bonzini xen=enabled 20043996e85cSPaul Durrant 20053996e85cSPaul Durrant elif 20063996e85cSPaul Durrant cat > $TMPC <<EOF && 20073996e85cSPaul Durrant#include <xenctrl.h> 20083996e85cSPaul Durrant#include <xenstore.h> 20093996e85cSPaul Durrant#include <stdint.h> 20103996e85cSPaul Durrant#include <xen/hvm/hvm_info_table.h> 20113996e85cSPaul Durrant#if !defined(HVM_MAX_VCPUS) 20123996e85cSPaul Durrant# error HVM_MAX_VCPUS not defined 20133996e85cSPaul Durrant#endif 20143996e85cSPaul Durrantint main(void) { 20153996e85cSPaul Durrant xc_interface *xc; 20163996e85cSPaul Durrant xs_daemon_open(); 20173996e85cSPaul Durrant xc = xc_interface_open(0, 0, 0); 20183996e85cSPaul Durrant xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 20193996e85cSPaul Durrant xc_gnttab_open(NULL, 0); 20203996e85cSPaul Durrant xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); 20213996e85cSPaul Durrant xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); 20228688e065SStefano Stabellini return 0; 20238688e065SStefano Stabellini} 20248688e065SStefano StabelliniEOF 20258688e065SStefano Stabellini compile_prog "" "$xen_libs" 202669deef08SPeter Maydell then 2027f1167ee6SJuergen Gross xen_ctrl_version=40200 20281badb709SPaolo Bonzini xen=enabled 20298688e065SStefano Stabellini 2030e37630caSaliguori else 20311badb709SPaolo Bonzini if test "$xen" = "enabled" ; then 2032edfb07edSIan Campbell feature_not_found "xen (unsupported version)" \ 2033edfb07edSIan Campbell "Install a supported xen (xen 4.2 or newer)" 2034fc321b4bSJuan Quintela fi 20351badb709SPaolo Bonzini xen=disabled 2036e37630caSaliguori fi 2037d5b93ddfSAnthony PERARD 20381badb709SPaolo Bonzini if test "$xen" = enabled; then 2039f1167ee6SJuergen Gross if test $xen_ctrl_version -ge 40701 ; then 2040582ea95fSMarc-André Lureau xen_libs="$xen_libs $xen_stable_libs " 20415eeb39c2SIan Campbell fi 2042d5b93ddfSAnthony PERARD fi 2043e37630caSaliguori fi 2044c1cdd9d5SJuergen Grossfi 2045e37630caSaliguori 2046d661d9a4SJustin Terry (VM)########################################## 20472da776dbSMichael R. Hines# RDMA needs OpenFabrics libraries 20482da776dbSMichael R. Hinesif test "$rdma" != "no" ; then 20492da776dbSMichael R. Hines cat > $TMPC <<EOF 20502da776dbSMichael R. Hines#include <rdma/rdma_cma.h> 20512da776dbSMichael R. Hinesint main(void) { return 0; } 20522da776dbSMichael R. HinesEOF 2053ef6d4ccdSYuval Shaia rdma_libs="-lrdmacm -libverbs -libumad" 20542da776dbSMichael R. Hines if compile_prog "" "$rdma_libs" ; then 20552da776dbSMichael R. Hines rdma="yes" 20562da776dbSMichael R. Hines else 20572da776dbSMichael R. Hines if test "$rdma" = "yes" ; then 20582da776dbSMichael R. Hines error_exit \ 2059ef6d4ccdSYuval Shaia " OpenFabrics librdmacm/libibverbs/libibumad not present." \ 20602da776dbSMichael R. Hines " Your options:" \ 2061ef6d4ccdSYuval Shaia " (1) Fast: Install infiniband packages (devel) from your distro." \ 20622da776dbSMichael R. Hines " (2) Cleanest: Install libraries from www.openfabrics.org" \ 20632da776dbSMichael R. Hines " (3) Also: Install softiwarp if you don't have RDMA hardware" 20642da776dbSMichael R. Hines fi 20652da776dbSMichael R. Hines rdma="no" 20662da776dbSMichael R. Hines fi 20672da776dbSMichael R. Hinesfi 20682da776dbSMichael R. Hines 206921ab34c9SMarcel Apfelbaum########################################## 207021ab34c9SMarcel Apfelbaum# PVRDMA detection 207121ab34c9SMarcel Apfelbaum 207221ab34c9SMarcel Apfelbaumcat > $TMPC <<EOF && 207321ab34c9SMarcel Apfelbaum#include <sys/mman.h> 207421ab34c9SMarcel Apfelbaum 207521ab34c9SMarcel Apfelbaumint 207621ab34c9SMarcel Apfelbaummain(void) 207721ab34c9SMarcel Apfelbaum{ 207821ab34c9SMarcel Apfelbaum char buf = 0; 207921ab34c9SMarcel Apfelbaum void *addr = &buf; 208021ab34c9SMarcel Apfelbaum addr = mremap(addr, 0, 1, MREMAP_MAYMOVE | MREMAP_FIXED); 208121ab34c9SMarcel Apfelbaum 208221ab34c9SMarcel Apfelbaum return 0; 208321ab34c9SMarcel Apfelbaum} 208421ab34c9SMarcel ApfelbaumEOF 208521ab34c9SMarcel Apfelbaum 208621ab34c9SMarcel Apfelbaumif test "$rdma" = "yes" ; then 208721ab34c9SMarcel Apfelbaum case "$pvrdma" in 208821ab34c9SMarcel Apfelbaum "") 208921ab34c9SMarcel Apfelbaum if compile_prog "" ""; then 209021ab34c9SMarcel Apfelbaum pvrdma="yes" 209121ab34c9SMarcel Apfelbaum else 209221ab34c9SMarcel Apfelbaum pvrdma="no" 209321ab34c9SMarcel Apfelbaum fi 209421ab34c9SMarcel Apfelbaum ;; 209521ab34c9SMarcel Apfelbaum "yes") 209621ab34c9SMarcel Apfelbaum if ! compile_prog "" ""; then 209721ab34c9SMarcel Apfelbaum error_exit "PVRDMA is not supported since mremap is not implemented" 209821ab34c9SMarcel Apfelbaum fi 209921ab34c9SMarcel Apfelbaum pvrdma="yes" 210021ab34c9SMarcel Apfelbaum ;; 210121ab34c9SMarcel Apfelbaum "no") 210221ab34c9SMarcel Apfelbaum pvrdma="no" 210321ab34c9SMarcel Apfelbaum ;; 210421ab34c9SMarcel Apfelbaum esac 210521ab34c9SMarcel Apfelbaumelse 210621ab34c9SMarcel Apfelbaum if test "$pvrdma" = "yes" ; then 210721ab34c9SMarcel Apfelbaum error_exit "PVRDMA requires rdma suppport" 210821ab34c9SMarcel Apfelbaum fi 210921ab34c9SMarcel Apfelbaum pvrdma="no" 211021ab34c9SMarcel Apfelbaumfi 211195c6bff3SBenoît Canet 2112ee108585SYuval Shaia# Let's see if enhanced reg_mr is supported 2113ee108585SYuval Shaiaif test "$pvrdma" = "yes" ; then 2114ee108585SYuval Shaia 2115ee108585SYuval Shaiacat > $TMPC <<EOF && 2116ee108585SYuval Shaia#include <infiniband/verbs.h> 2117ee108585SYuval Shaia 2118ee108585SYuval Shaiaint 2119ee108585SYuval Shaiamain(void) 2120ee108585SYuval Shaia{ 2121ee108585SYuval Shaia struct ibv_mr *mr; 2122ee108585SYuval Shaia struct ibv_pd *pd = NULL; 2123ee108585SYuval Shaia size_t length = 10; 2124ee108585SYuval Shaia uint64_t iova = 0; 2125ee108585SYuval Shaia int access = 0; 2126ee108585SYuval Shaia void *addr = NULL; 2127ee108585SYuval Shaia 2128ee108585SYuval Shaia mr = ibv_reg_mr_iova(pd, addr, length, iova, access); 2129ee108585SYuval Shaia 2130ee108585SYuval Shaia ibv_dereg_mr(mr); 2131ee108585SYuval Shaia 2132ee108585SYuval Shaia return 0; 2133ee108585SYuval Shaia} 2134ee108585SYuval ShaiaEOF 2135ee108585SYuval Shaia if ! compile_prog "" "-libverbs"; then 2136ee108585SYuval Shaia QEMU_CFLAGS="$QEMU_CFLAGS -DLEGACY_RDMA_REG_MR" 2137ee108585SYuval Shaia fi 2138ee108585SYuval Shaiafi 2139ee108585SYuval Shaia 214095c6bff3SBenoît Canet########################################## 2141e18df141SAnthony Liguori# glib support probe 2142a52d28afSPaolo Bonzini 2143b4c6036fSDaniel P. Berrangéglib_req_ver=2.56 2144aa0d1f44SPaolo Bonziniglib_modules=gthread-2.0 2145aa0d1f44SPaolo Bonziniif test "$modules" = yes; then 2146a88afc64SGerd Hoffmann glib_modules="$glib_modules gmodule-export-2.0" 2147b906acacSPaolo Bonzinielif test "$plugins" = "yes"; then 2148b906acacSPaolo Bonzini glib_modules="$glib_modules gmodule-no-export-2.0" 214954cb65d8SEmilio G. Cotafi 2150e26110cfSFam Zheng 2151aa0d1f44SPaolo Bonzinifor i in $glib_modules; do 2152e26110cfSFam Zheng if $pkg_config --atleast-version=$glib_req_ver $i; then 215389138857SStefan Weil glib_cflags=$($pkg_config --cflags $i) 215489138857SStefan Weil glib_libs=$($pkg_config --libs $i) 2155e18df141SAnthony Liguori else 2156e26110cfSFam Zheng error_exit "glib-$glib_req_ver $i is required to compile QEMU" 2157e26110cfSFam Zheng fi 2158e26110cfSFam Zhengdone 2159e26110cfSFam Zheng 2160215b0c2fSPaolo Bonzini# This workaround is required due to a bug in pkg-config file for glib as it 2161215b0c2fSPaolo Bonzini# doesn't define GLIB_STATIC_COMPILATION for pkg-config --static 2162215b0c2fSPaolo Bonzini 2163215b0c2fSPaolo Bonziniif test "$static" = yes && test "$mingw32" = yes; then 2164215b0c2fSPaolo Bonzini glib_cflags="-DGLIB_STATIC_COMPILATION $glib_cflags" 2165215b0c2fSPaolo Bonzinifi 2166215b0c2fSPaolo Bonzini 216720cf7b8eSDenis Plotnikovif ! test "$gio" = "no"; then 216820cf7b8eSDenis Plotnikov pass=no 2169f876b765SMarc-André Lureau if $pkg_config --atleast-version=$glib_req_ver gio-2.0; then 2170f876b765SMarc-André Lureau gio_cflags=$($pkg_config --cflags gio-2.0) 2171f876b765SMarc-André Lureau gio_libs=$($pkg_config --libs gio-2.0) 217225a97a56SMarc-André Lureau gdbus_codegen=$($pkg_config --variable=gdbus_codegen gio-2.0) 21735ecfb76cSPaolo Bonzini if ! has "$gdbus_codegen"; then 21740dba4897SMarc-André Lureau gdbus_codegen= 21750dba4897SMarc-André Lureau fi 217676346b62SPeter Maydell # Check that the libraries actually work -- Ubuntu 18.04 ships 217776346b62SPeter Maydell # with pkg-config --static --libs data for gio-2.0 that is missing 217876346b62SPeter Maydell # -lblkid and will give a link error. 217913ceae66SPeter Maydell cat > $TMPC <<EOF 218013ceae66SPeter Maydell#include <gio/gio.h> 218113ceae66SPeter Maydellint main(void) 218213ceae66SPeter Maydell{ 218313ceae66SPeter Maydell g_dbus_proxy_new_sync(0, 0, 0, 0, 0, 0, 0, 0); 218413ceae66SPeter Maydell return 0; 218513ceae66SPeter Maydell} 218613ceae66SPeter MaydellEOF 218713ceae66SPeter Maydell if compile_prog "$gio_cflags" "$gio_libs" ; then 218820cf7b8eSDenis Plotnikov pass=yes 218976346b62SPeter Maydell else 219020cf7b8eSDenis Plotnikov pass=no 2191f876b765SMarc-André Lureau fi 2192f876b765SMarc-André Lureau 219320cf7b8eSDenis Plotnikov if test "$pass" = "yes" && 219420cf7b8eSDenis Plotnikov $pkg_config --atleast-version=$glib_req_ver gio-unix-2.0; then 219525a97a56SMarc-André Lureau gio_cflags="$gio_cflags $($pkg_config --cflags gio-unix-2.0)" 219625a97a56SMarc-André Lureau gio_libs="$gio_libs $($pkg_config --libs gio-unix-2.0)" 219725a97a56SMarc-André Lureau fi 219820cf7b8eSDenis Plotnikov fi 219920cf7b8eSDenis Plotnikov 220020cf7b8eSDenis Plotnikov if test "$pass" = "no"; then 220120cf7b8eSDenis Plotnikov if test "$gio" = "yes"; then 220220cf7b8eSDenis Plotnikov feature_not_found "gio" "Install libgio >= 2.0" 220320cf7b8eSDenis Plotnikov else 220420cf7b8eSDenis Plotnikov gio=no 220520cf7b8eSDenis Plotnikov fi 220620cf7b8eSDenis Plotnikov else 220720cf7b8eSDenis Plotnikov gio=yes 220820cf7b8eSDenis Plotnikov fi 220920cf7b8eSDenis Plotnikovfi 221025a97a56SMarc-André Lureau 2211977a82abSDaniel P. Berrange# Sanity check that the current size_t matches the 2212977a82abSDaniel P. Berrange# size that glib thinks it should be. This catches 2213977a82abSDaniel P. Berrange# problems on multi-arch where people try to build 2214977a82abSDaniel P. Berrange# 32-bit QEMU while pointing at 64-bit glib headers 2215977a82abSDaniel P. Berrangecat > $TMPC <<EOF 2216977a82abSDaniel P. Berrange#include <glib.h> 2217977a82abSDaniel P. Berrange#include <unistd.h> 2218977a82abSDaniel P. Berrange 2219977a82abSDaniel P. Berrange#define QEMU_BUILD_BUG_ON(x) \ 2220977a82abSDaniel P. Berrange typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused)); 2221977a82abSDaniel P. Berrange 2222977a82abSDaniel P. Berrangeint main(void) { 2223977a82abSDaniel P. Berrange QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T); 2224977a82abSDaniel P. Berrange return 0; 2225977a82abSDaniel P. Berrange} 2226977a82abSDaniel P. BerrangeEOF 2227977a82abSDaniel P. Berrange 2228215b0c2fSPaolo Bonziniif ! compile_prog "$glib_cflags" "$glib_libs" ; then 2229977a82abSDaniel P. Berrange error_exit "sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T."\ 2230977a82abSDaniel P. Berrange "You probably need to set PKG_CONFIG_LIBDIR"\ 2231977a82abSDaniel P. Berrange "to point to the right pkg-config files for your"\ 2232977a82abSDaniel P. Berrange "build target" 2233977a82abSDaniel P. Berrangefi 2234977a82abSDaniel P. Berrange 22359bda600bSEric Blake# Silence clang warnings triggered by glib < 2.57.2 22369bda600bSEric Blakecat > $TMPC << EOF 22379bda600bSEric Blake#include <glib.h> 22389bda600bSEric Blaketypedef struct Foo { 22399bda600bSEric Blake int i; 22409bda600bSEric Blake} Foo; 22419bda600bSEric Blakestatic void foo_free(Foo *f) 22429bda600bSEric Blake{ 22439bda600bSEric Blake g_free(f); 22449bda600bSEric Blake} 2245e0e7fe07SMarc-André LureauG_DEFINE_AUTOPTR_CLEANUP_FUNC(Foo, foo_free) 22469bda600bSEric Blakeint main(void) { return 0; } 22479bda600bSEric BlakeEOF 22489bda600bSEric Blakeif ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then 22499bda600bSEric Blake if cc_has_warning_flag "-Wno-unused-function"; then 22509bda600bSEric Blake glib_cflags="$glib_cflags -Wno-unused-function" 22515770e8afSPaolo Bonzini CONFIGURE_CFLAGS="$CONFIGURE_CFLAGS -Wno-unused-function" 22529bda600bSEric Blake fi 22539bda600bSEric Blakefi 22549bda600bSEric Blake 2255e26110cfSFam Zheng########################################## 2256e26110cfSFam Zheng# SHA command probe for modules 2257e26110cfSFam Zhengif test "$modules" = yes; then 2258e26110cfSFam Zheng shacmd_probe="sha1sum sha1 shasum" 2259e26110cfSFam Zheng for c in $shacmd_probe; do 22608ccefb91SFam Zheng if has $c; then 2261e26110cfSFam Zheng shacmd="$c" 2262e26110cfSFam Zheng break 2263e26110cfSFam Zheng fi 2264e26110cfSFam Zheng done 2265e26110cfSFam Zheng if test "$shacmd" = ""; then 2266e26110cfSFam Zheng error_exit "one of the checksum commands is required to enable modules: $shacmd_probe" 2267e26110cfSFam Zheng fi 2268e18df141SAnthony Liguorifi 2269e18df141SAnthony Liguori 2270e18df141SAnthony Liguori########################################## 2271f652e6afSaurel32# fdt probe 2272e169e1e1SPeter Maydell 2273fbb4121dSPaolo Bonzinicase "$fdt" in 2274fbb4121dSPaolo Bonzini auto | enabled | internal) 2275fbb4121dSPaolo Bonzini # Simpler to always update submodule, even if not needed. 2276aef45d51SDaniel P. Berrange git_submodules="${git_submodules} dtc" 2277fbb4121dSPaolo Bonzini ;; 2278fbb4121dSPaolo Bonziniesac 2279f652e6afSaurel32 228020ff075bSMichael Walle########################################## 22819d49bcf6SMarkus Armbruster# opengl probe (for sdl2, gtk) 2282b1546f32SGerd Hoffmann 2283da076ffeSGerd Hoffmannif test "$opengl" != "no" ; then 2284bc6a3565SAkihiko Odaki epoxy=no 2285bc6a3565SAkihiko Odaki if $pkg_config epoxy; then 2286bc6a3565SAkihiko Odaki cat > $TMPC << EOF 2287bc6a3565SAkihiko Odaki#include <epoxy/egl.h> 2288bc6a3565SAkihiko Odakiint main(void) { return 0; } 2289bc6a3565SAkihiko OdakiEOF 2290bc6a3565SAkihiko Odaki if compile_prog "" "" ; then 2291bc6a3565SAkihiko Odaki epoxy=yes 2292bc6a3565SAkihiko Odaki fi 2293bc6a3565SAkihiko Odaki fi 2294bc6a3565SAkihiko Odaki 2295bc6a3565SAkihiko Odaki if test "$epoxy" = "yes" ; then 2296bc6a3565SAkihiko Odaki opengl_cflags="$($pkg_config --cflags epoxy)" 2297bc6a3565SAkihiko Odaki opengl_libs="$($pkg_config --libs epoxy)" 2298da076ffeSGerd Hoffmann opengl=yes 229920ff075bSMichael Walle else 2300da076ffeSGerd Hoffmann if test "$opengl" = "yes" ; then 2301bc6a3565SAkihiko Odaki feature_not_found "opengl" "Please install epoxy with EGL" 230220ff075bSMichael Walle fi 2303f676c67eSJeremy White opengl_cflags="" 2304da076ffeSGerd Hoffmann opengl_libs="" 2305da076ffeSGerd Hoffmann opengl=no 230620ff075bSMichael Walle fi 230720ff075bSMichael Wallefi 230820ff075bSMichael Walle 2309955727d2SCortland Tölva# check for usbfs 2310955727d2SCortland Tölvahave_usbfs=no 2311955727d2SCortland Tölvaif test "$linux_user" = "yes"; then 231296566d09SThomas Petazzoni cat > $TMPC << EOF 231396566d09SThomas Petazzoni#include <linux/usbdevice_fs.h> 231496566d09SThomas Petazzoni 231596566d09SThomas Petazzoni#ifndef USBDEVFS_GET_CAPABILITIES 231696566d09SThomas Petazzoni#error "USBDEVFS_GET_CAPABILITIES undefined" 231796566d09SThomas Petazzoni#endif 231896566d09SThomas Petazzoni 231996566d09SThomas Petazzoni#ifndef USBDEVFS_DISCONNECT_CLAIM 232096566d09SThomas Petazzoni#error "USBDEVFS_DISCONNECT_CLAIM undefined" 232196566d09SThomas Petazzoni#endif 232296566d09SThomas Petazzoni 232396566d09SThomas Petazzoniint main(void) 232496566d09SThomas Petazzoni{ 232596566d09SThomas Petazzoni return 0; 232696566d09SThomas Petazzoni} 232796566d09SThomas PetazzoniEOF 232896566d09SThomas Petazzoni if compile_prog "" ""; then 2329955727d2SCortland Tölva have_usbfs=yes 2330955727d2SCortland Tölva fi 2331955727d2SCortland Tölvafi 2332751bcc39SMarc-André Lureau 2333de5071c5SBlue Swirl########################################## 23348ca80760SRichard Henderson# capstone 23358ca80760SRichard Henderson 2336e219c499SRichard Hendersoncase "$capstone" in 23378b18cdbfSRichard Henderson auto | enabled | internal) 23388b18cdbfSRichard Henderson # Simpler to always update submodule, even if not needed. 2339e219c499SRichard Henderson git_submodules="${git_submodules} capstone" 2340e219c499SRichard Henderson ;; 2341e219c499SRichard Hendersonesac 23428ca80760SRichard Henderson 23438ca80760SRichard Henderson########################################## 2344519175a2SAlex Barcelo# check and set a backend for coroutine 2345d0e2fce5SAneesh Kumar K.V 23467c2acc70SPeter Maydell# We prefer ucontext, but it's not always possible. The fallback 234733c53c54SDaniel P. Berrange# is sigcontext. On Windows the only valid backend is the Windows 234833c53c54SDaniel P. Berrange# specific one. 23497c2acc70SPeter Maydell 23507c2acc70SPeter Maydellucontext_works=no 2351d0e2fce5SAneesh Kumar K.Vif test "$darwin" != "yes"; then 2352d0e2fce5SAneesh Kumar K.V cat > $TMPC << EOF 2353d0e2fce5SAneesh Kumar K.V#include <ucontext.h> 2354cdf84806SPeter Maydell#ifdef __stub_makecontext 2355cdf84806SPeter Maydell#error Ignoring glibc stub makecontext which will always fail 2356cdf84806SPeter Maydell#endif 235775cafad7SStefan Weilint main(void) { makecontext(0, 0, 0); return 0; } 2358d0e2fce5SAneesh Kumar K.VEOF 2359d0e2fce5SAneesh Kumar K.V if compile_prog "" "" ; then 23607c2acc70SPeter Maydell ucontext_works=yes 2361d0e2fce5SAneesh Kumar K.V fi 2362519175a2SAlex Barcelofi 23637c2acc70SPeter Maydell 23647c2acc70SPeter Maydellif test "$coroutine" = ""; then 23657c2acc70SPeter Maydell if test "$mingw32" = "yes"; then 23667c2acc70SPeter Maydell coroutine=win32 23677c2acc70SPeter Maydell elif test "$ucontext_works" = "yes"; then 23687c2acc70SPeter Maydell coroutine=ucontext 2369519175a2SAlex Barcelo else 23707c2acc70SPeter Maydell coroutine=sigaltstack 23717c2acc70SPeter Maydell fi 23727c2acc70SPeter Maydellelse 23737c2acc70SPeter Maydell case $coroutine in 23747c2acc70SPeter Maydell windows) 23757c2acc70SPeter Maydell if test "$mingw32" != "yes"; then 23767c2acc70SPeter Maydell error_exit "'windows' coroutine backend only valid for Windows" 23777c2acc70SPeter Maydell fi 23787c2acc70SPeter Maydell # Unfortunately the user visible backend name doesn't match the 23797c2acc70SPeter Maydell # coroutine-*.c filename for this case, so we have to adjust it here. 23807c2acc70SPeter Maydell coroutine=win32 23817c2acc70SPeter Maydell ;; 23827c2acc70SPeter Maydell ucontext) 23837c2acc70SPeter Maydell if test "$ucontext_works" != "yes"; then 23847c2acc70SPeter Maydell feature_not_found "ucontext" 23857c2acc70SPeter Maydell fi 23867c2acc70SPeter Maydell ;; 238733c53c54SDaniel P. Berrange sigaltstack) 23887c2acc70SPeter Maydell if test "$mingw32" = "yes"; then 23897c2acc70SPeter Maydell error_exit "only the 'windows' coroutine backend is valid for Windows" 23907c2acc70SPeter Maydell fi 23917c2acc70SPeter Maydell ;; 23927c2acc70SPeter Maydell *) 239376ad07a4SPeter Maydell error_exit "unknown coroutine backend $coroutine" 23947c2acc70SPeter Maydell ;; 23957c2acc70SPeter Maydell esac 2396d0e2fce5SAneesh Kumar K.Vfi 2397d0e2fce5SAneesh Kumar K.V 23981e4f6065SDaniele Buono################################################## 23991e4f6065SDaniele Buono# SafeStack 24001e4f6065SDaniele Buono 24011e4f6065SDaniele Buono 24021e4f6065SDaniele Buonoif test "$safe_stack" = "yes"; then 24031e4f6065SDaniele Buonocat > $TMPC << EOF 24041e4f6065SDaniele Buonoint main(int argc, char *argv[]) 24051e4f6065SDaniele Buono{ 24061e4f6065SDaniele Buono#if ! __has_feature(safe_stack) 24071e4f6065SDaniele Buono#error SafeStack Disabled 24081e4f6065SDaniele Buono#endif 24091e4f6065SDaniele Buono return 0; 24101e4f6065SDaniele Buono} 24111e4f6065SDaniele BuonoEOF 24121e4f6065SDaniele Buono flag="-fsanitize=safe-stack" 24131e4f6065SDaniele Buono # Check that safe-stack is supported and enabled. 24141e4f6065SDaniele Buono if compile_prog "-Werror $flag" "$flag"; then 24151e4f6065SDaniele Buono # Flag needed both at compilation and at linking 24161e4f6065SDaniele Buono QEMU_CFLAGS="$QEMU_CFLAGS $flag" 24171e4f6065SDaniele Buono QEMU_LDFLAGS="$QEMU_LDFLAGS $flag" 24181e4f6065SDaniele Buono else 24191e4f6065SDaniele Buono error_exit "SafeStack not supported by your compiler" 24201e4f6065SDaniele Buono fi 24211e4f6065SDaniele Buono if test "$coroutine" != "ucontext"; then 24221e4f6065SDaniele Buono error_exit "SafeStack is only supported by the coroutine backend ucontext" 24231e4f6065SDaniele Buono fi 24241e4f6065SDaniele Buonoelse 24251e4f6065SDaniele Buonocat > $TMPC << EOF 24261e4f6065SDaniele Buonoint main(int argc, char *argv[]) 24271e4f6065SDaniele Buono{ 24281e4f6065SDaniele Buono#if defined(__has_feature) 24291e4f6065SDaniele Buono#if __has_feature(safe_stack) 24301e4f6065SDaniele Buono#error SafeStack Enabled 24311e4f6065SDaniele Buono#endif 24321e4f6065SDaniele Buono#endif 24331e4f6065SDaniele Buono return 0; 24341e4f6065SDaniele Buono} 24351e4f6065SDaniele BuonoEOF 24361e4f6065SDaniele Buonoif test "$safe_stack" = "no"; then 24371e4f6065SDaniele Buono # Make sure that safe-stack is disabled 24381e4f6065SDaniele Buono if ! compile_prog "-Werror" ""; then 24391e4f6065SDaniele Buono # SafeStack was already enabled, try to explicitly remove the feature 24401e4f6065SDaniele Buono flag="-fno-sanitize=safe-stack" 24411e4f6065SDaniele Buono if ! compile_prog "-Werror $flag" "$flag"; then 24421e4f6065SDaniele Buono error_exit "Configure cannot disable SafeStack" 24431e4f6065SDaniele Buono fi 24441e4f6065SDaniele Buono QEMU_CFLAGS="$QEMU_CFLAGS $flag" 24451e4f6065SDaniele Buono QEMU_LDFLAGS="$QEMU_LDFLAGS $flag" 24461e4f6065SDaniele Buono fi 24471e4f6065SDaniele Buonoelse # "$safe_stack" = "" 24481e4f6065SDaniele Buono # Set safe_stack to yes or no based on pre-existing flags 24491e4f6065SDaniele Buono if compile_prog "-Werror" ""; then 24501e4f6065SDaniele Buono safe_stack="no" 24511e4f6065SDaniele Buono else 24521e4f6065SDaniele Buono safe_stack="yes" 24531e4f6065SDaniele Buono if test "$coroutine" != "ucontext"; then 24541e4f6065SDaniele Buono error_exit "SafeStack is only supported by the coroutine backend ucontext" 24551e4f6065SDaniele Buono fi 24561e4f6065SDaniele Buono fi 24571e4f6065SDaniele Buonofi 24581e4f6065SDaniele Buonofi 24597d992e4dSPeter Lieven 246076a347e1SRichard Henderson######################################## 2461fd0e6053SJohn Snow# check if ccache is interfering with 2462fd0e6053SJohn Snow# semantic analysis of macros 2463fd0e6053SJohn Snow 24645e4dfd3dSJohn Snowunset CCACHE_CPP2 2465fd0e6053SJohn Snowccache_cpp2=no 2466fd0e6053SJohn Snowcat > $TMPC << EOF 2467fd0e6053SJohn Snowstatic const int Z = 1; 2468fd0e6053SJohn Snow#define fn() ({ Z; }) 2469fd0e6053SJohn Snow#define TAUT(X) ((X) == Z) 2470fd0e6053SJohn Snow#define PAREN(X, Y) (X == Y) 2471fd0e6053SJohn Snow#define ID(X) (X) 2472fd0e6053SJohn Snowint main(int argc, char *argv[]) 2473fd0e6053SJohn Snow{ 2474fd0e6053SJohn Snow int x = 0, y = 0; 2475fd0e6053SJohn Snow x = ID(x); 2476fd0e6053SJohn Snow x = fn(); 2477fd0e6053SJohn Snow fn(); 2478fd0e6053SJohn Snow if (PAREN(x, y)) return 0; 2479fd0e6053SJohn Snow if (TAUT(Z)) return 0; 2480fd0e6053SJohn Snow return 0; 2481fd0e6053SJohn Snow} 2482fd0e6053SJohn SnowEOF 2483fd0e6053SJohn Snow 2484fd0e6053SJohn Snowif ! compile_object "-Werror"; then 2485fd0e6053SJohn Snow ccache_cpp2=yes 2486fd0e6053SJohn Snowfi 2487fd0e6053SJohn Snow 2488b553a042SJohn Snow################################################# 2489b553a042SJohn Snow# clang does not support glibc + FORTIFY_SOURCE. 2490b553a042SJohn Snow 2491b553a042SJohn Snowif test "$fortify_source" != "no"; then 2492b553a042SJohn Snow if echo | $cc -dM -E - | grep __clang__ > /dev/null 2>&1 ; then 2493b553a042SJohn Snow fortify_source="no"; 2494e189091fSPeter Maydell elif test -n "$cxx" && has $cxx && 2495cfcc7c14SJohn Snow echo | $cxx -dM -E - | grep __clang__ >/dev/null 2>&1 ; then 2496b553a042SJohn Snow fortify_source="no"; 2497b553a042SJohn Snow else 2498b553a042SJohn Snow fortify_source="yes" 2499b553a042SJohn Snow fi 2500b553a042SJohn Snowfi 2501b553a042SJohn Snow 2502d2042378SAneesh Kumar K.V########################################## 2503247724cbSMarc-André Lureau# checks for sanitizers 2504247724cbSMarc-André Lureau 2505247724cbSMarc-André Lureauhave_asan=no 2506247724cbSMarc-André Lureauhave_ubsan=no 2507d83414e1SMarc-André Lureauhave_asan_iface_h=no 2508d83414e1SMarc-André Lureauhave_asan_iface_fiber=no 2509247724cbSMarc-André Lureau 2510247724cbSMarc-André Lureauif test "$sanitizers" = "yes" ; then 2511b9f44da2SMarc-André Lureau write_c_skeleton 2512247724cbSMarc-André Lureau if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" ""; then 2513247724cbSMarc-André Lureau have_asan=yes 2514247724cbSMarc-André Lureau fi 2515b9f44da2SMarc-André Lureau 2516b9f44da2SMarc-André Lureau # we could use a simple skeleton for flags checks, but this also 2517b9f44da2SMarc-André Lureau # detect the static linking issue of ubsan, see also: 2518b9f44da2SMarc-André Lureau # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84285 2519b9f44da2SMarc-André Lureau cat > $TMPC << EOF 2520b9f44da2SMarc-André Lureau#include <stdlib.h> 2521b9f44da2SMarc-André Lureauint main(void) { 2522b9f44da2SMarc-André Lureau void *tmp = malloc(10); 2523f2dfe54cSLeonid Bloch if (tmp != NULL) { 2524b9f44da2SMarc-André Lureau return *(int *)(tmp + 2); 2525b9f44da2SMarc-André Lureau } 2526d1abf3fcSOlaf Hering return 1; 2527f2dfe54cSLeonid Bloch} 2528b9f44da2SMarc-André LureauEOF 2529247724cbSMarc-André Lureau if compile_prog "$CPU_CFLAGS -Werror -fsanitize=undefined" ""; then 2530247724cbSMarc-André Lureau have_ubsan=yes 2531247724cbSMarc-André Lureau fi 2532d83414e1SMarc-André Lureau 2533d83414e1SMarc-André Lureau if check_include "sanitizer/asan_interface.h" ; then 2534d83414e1SMarc-André Lureau have_asan_iface_h=yes 2535d83414e1SMarc-André Lureau fi 2536d83414e1SMarc-André Lureau 2537d83414e1SMarc-André Lureau cat > $TMPC << EOF 2538d83414e1SMarc-André Lureau#include <sanitizer/asan_interface.h> 2539d83414e1SMarc-André Lureauint main(void) { 2540d83414e1SMarc-André Lureau __sanitizer_start_switch_fiber(0, 0, 0); 2541d83414e1SMarc-André Lureau return 0; 2542d83414e1SMarc-André Lureau} 2543d83414e1SMarc-André LureauEOF 2544d83414e1SMarc-André Lureau if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" "" ; then 2545d83414e1SMarc-André Lureau have_asan_iface_fiber=yes 2546d83414e1SMarc-André Lureau fi 2547247724cbSMarc-André Lureaufi 2548247724cbSMarc-André Lureau 25490aebab04SLingfeng Yang# Thread sanitizer is, for now, much noisier than the other sanitizers; 25500aebab04SLingfeng Yang# keep it separate until that is not the case. 25510aebab04SLingfeng Yangif test "$tsan" = "yes" && test "$sanitizers" = "yes"; then 25520aebab04SLingfeng Yang error_exit "TSAN is not supported with other sanitiziers." 25530aebab04SLingfeng Yangfi 25540aebab04SLingfeng Yanghave_tsan=no 25550aebab04SLingfeng Yanghave_tsan_iface_fiber=no 25560aebab04SLingfeng Yangif test "$tsan" = "yes" ; then 25570aebab04SLingfeng Yang write_c_skeleton 25580aebab04SLingfeng Yang if compile_prog "$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then 25590aebab04SLingfeng Yang have_tsan=yes 25600aebab04SLingfeng Yang fi 25610aebab04SLingfeng Yang cat > $TMPC << EOF 25620aebab04SLingfeng Yang#include <sanitizer/tsan_interface.h> 25630aebab04SLingfeng Yangint main(void) { 25640aebab04SLingfeng Yang __tsan_create_fiber(0); 25650aebab04SLingfeng Yang return 0; 25660aebab04SLingfeng Yang} 25670aebab04SLingfeng YangEOF 25680aebab04SLingfeng Yang if compile_prog "$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then 25690aebab04SLingfeng Yang have_tsan_iface_fiber=yes 25700aebab04SLingfeng Yang fi 25710aebab04SLingfeng Yangfi 25720aebab04SLingfeng Yang 2573adc28027SAlexander Bulekov########################################## 2574675b9b53SMarc-André Lureau# check for slirp 2575675b9b53SMarc-André Lureau 2576675b9b53SMarc-André Lureaucase "$slirp" in 25774d34a86bSPaolo Bonzini auto | enabled | internal) 25784d34a86bSPaolo Bonzini # Simpler to always update submodule, even if not needed. 25797c57bdd8SMarc-André Lureau git_submodules="${git_submodules} slirp" 2580675b9b53SMarc-André Lureau ;; 2581675b9b53SMarc-André Lureauesac 2582675b9b53SMarc-André Lureau 258354e7aac0SAlexey Krasikov########################################## 258454e7aac0SAlexey Krasikov# check for usable __NR_keyctl syscall 258554e7aac0SAlexey Krasikov 258654e7aac0SAlexey Krasikovif test "$linux" = "yes" ; then 258754e7aac0SAlexey Krasikov 258854e7aac0SAlexey Krasikov have_keyring=no 258954e7aac0SAlexey Krasikov cat > $TMPC << EOF 259054e7aac0SAlexey Krasikov#include <errno.h> 259154e7aac0SAlexey Krasikov#include <asm/unistd.h> 259254e7aac0SAlexey Krasikov#include <linux/keyctl.h> 259354e7aac0SAlexey Krasikov#include <unistd.h> 259454e7aac0SAlexey Krasikovint main(void) { 259554e7aac0SAlexey Krasikov return syscall(__NR_keyctl, KEYCTL_READ, 0, NULL, NULL, 0); 259654e7aac0SAlexey Krasikov} 259754e7aac0SAlexey KrasikovEOF 259854e7aac0SAlexey Krasikov if compile_prog "" "" ; then 259954e7aac0SAlexey Krasikov have_keyring=yes 260054e7aac0SAlexey Krasikov fi 260154e7aac0SAlexey Krasikovfi 260254e7aac0SAlexey Krasikovif test "$secret_keyring" != "no" 260354e7aac0SAlexey Krasikovthen 2604b418d265SDavid Edmondson if test "$have_keyring" = "yes" 260554e7aac0SAlexey Krasikov then 260654e7aac0SAlexey Krasikov secret_keyring=yes 260754e7aac0SAlexey Krasikov else 260854e7aac0SAlexey Krasikov if test "$secret_keyring" = "yes" 260954e7aac0SAlexey Krasikov then 261054e7aac0SAlexey Krasikov error_exit "syscall __NR_keyctl requested, \ 261154e7aac0SAlexey Krasikovbut not implemented on your system" 261254e7aac0SAlexey Krasikov else 261354e7aac0SAlexey Krasikov secret_keyring=no 261454e7aac0SAlexey Krasikov fi 261554e7aac0SAlexey Krasikov fi 261654e7aac0SAlexey Krasikovfi 261754e7aac0SAlexey Krasikov 261892500362SAlexey Krasikov########################################## 2619e86ecd4bSJuan Quintela# End of CC checks 2620e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs 2621e86ecd4bSJuan Quintela 2622d83414e1SMarc-André Lureauwrite_c_skeleton 2623d83414e1SMarc-André Lureau 2624df42fa7dSPaolo Bonziniif test "$fortify_source" = "yes" ; then 2625086d5f75SPaolo Bonzini QEMU_CFLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $QEMU_CFLAGS" 2626086d5f75SPaolo Bonzini debug=no 2627086d5f75SPaolo Bonzinifi 2628086d5f75SPaolo Bonzini 2629086d5f75SPaolo Bonzinicase "$ARCH" in 2630086d5f75SPaolo Bonzinialpha) 2631086d5f75SPaolo Bonzini # Ensure there's only a single GP 2632086d5f75SPaolo Bonzini QEMU_CFLAGS="-msmall-data $QEMU_CFLAGS" 2633086d5f75SPaolo Bonzini;; 2634086d5f75SPaolo Bonziniesac 2635086d5f75SPaolo Bonzini 2636247724cbSMarc-André Lureauif test "$have_asan" = "yes"; then 2637db5adeaaSPaolo Bonzini QEMU_CFLAGS="-fsanitize=address $QEMU_CFLAGS" 2638db5adeaaSPaolo Bonzini QEMU_LDFLAGS="-fsanitize=address $QEMU_LDFLAGS" 2639d83414e1SMarc-André Lureau if test "$have_asan_iface_h" = "no" ; then 2640d83414e1SMarc-André Lureau echo "ASAN build enabled, but ASAN header missing." \ 2641d83414e1SMarc-André Lureau "Without code annotation, the report may be inferior." 2642d83414e1SMarc-André Lureau elif test "$have_asan_iface_fiber" = "no" ; then 2643d83414e1SMarc-André Lureau echo "ASAN build enabled, but ASAN header is too old." \ 2644d83414e1SMarc-André Lureau "Without code annotation, the report may be inferior." 2645d83414e1SMarc-André Lureau fi 2646247724cbSMarc-André Lureaufi 26470aebab04SLingfeng Yangif test "$have_tsan" = "yes" ; then 26480aebab04SLingfeng Yang if test "$have_tsan_iface_fiber" = "yes" ; then 26490aebab04SLingfeng Yang QEMU_CFLAGS="-fsanitize=thread $QEMU_CFLAGS" 26500aebab04SLingfeng Yang QEMU_LDFLAGS="-fsanitize=thread $QEMU_LDFLAGS" 26510aebab04SLingfeng Yang else 26520aebab04SLingfeng Yang error_exit "Cannot enable TSAN due to missing fiber annotation interface." 26530aebab04SLingfeng Yang fi 26540aebab04SLingfeng Yangelif test "$tsan" = "yes" ; then 26550aebab04SLingfeng Yang error_exit "Cannot enable TSAN due to missing sanitize thread interface." 26560aebab04SLingfeng Yangfi 2657247724cbSMarc-André Lureauif test "$have_ubsan" = "yes"; then 2658db5adeaaSPaolo Bonzini QEMU_CFLAGS="-fsanitize=undefined $QEMU_CFLAGS" 2659db5adeaaSPaolo Bonzini QEMU_LDFLAGS="-fsanitize=undefined $QEMU_LDFLAGS" 2660247724cbSMarc-André Lureaufi 2661247724cbSMarc-André Lureau 26626542aa9cSPeter Lieven########################################## 26633efac6ebSTomáš Golembiovský 26640aebab04SLingfeng Yang# Exclude --warn-common with TSan to suppress warnings from the TSan libraries. 26650aebab04SLingfeng Yangif test "$solaris" = "no" && test "$tsan" = "no"; then 2666e86ecd4bSJuan Quintela if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then 2667db5adeaaSPaolo Bonzini QEMU_LDFLAGS="-Wl,--warn-common $QEMU_LDFLAGS" 2668e86ecd4bSJuan Quintela fi 2669e86ecd4bSJuan Quintelafi 2670e86ecd4bSJuan Quintela 2671952afb71SBlue Swirl# Use ASLR, no-SEH and DEP if available 2672952afb71SBlue Swirlif test "$mingw32" = "yes" ; then 2673cb8baa77SMark Cave-Ayland flags="--no-seh --nxcompat" 2674cb8baa77SMark Cave-Ayland 2675cb8baa77SMark Cave-Ayland # Disable ASLR for debug builds to allow debugging with gdb 2676cb8baa77SMark Cave-Ayland if test "$debug" = "no" ; then 2677cb8baa77SMark Cave-Ayland flags="--dynamicbase $flags" 2678cb8baa77SMark Cave-Ayland fi 2679cb8baa77SMark Cave-Ayland 2680cb8baa77SMark Cave-Ayland for flag in $flags; do 2681e9a3591fSChristian Borntraeger if ld_has $flag ; then 2682db5adeaaSPaolo Bonzini QEMU_LDFLAGS="-Wl,$flag $QEMU_LDFLAGS" 2683952afb71SBlue Swirl fi 2684952afb71SBlue Swirl done 2685952afb71SBlue Swirlfi 2686952afb71SBlue Swirl 2687b846ab7cSPaolo Bonzini# Guest agent Windows MSI package 26889d6bc27bSMichael Roth 26899d6bc27bSMichael Rothif test "$QEMU_GA_MANUFACTURER" = ""; then 26909d6bc27bSMichael Roth QEMU_GA_MANUFACTURER=QEMU 26919d6bc27bSMichael Rothfi 26929d6bc27bSMichael Rothif test "$QEMU_GA_DISTRO" = ""; then 26939d6bc27bSMichael Roth QEMU_GA_DISTRO=Linux 26949d6bc27bSMichael Rothfi 26959d6bc27bSMichael Rothif test "$QEMU_GA_VERSION" = ""; then 269689138857SStefan Weil QEMU_GA_VERSION=$(cat $source_path/VERSION) 26979d6bc27bSMichael Rothfi 26989d6bc27bSMichael Roth 26996e444209SPaolo BonziniQEMU_GA_MSI_MINGW_BIN_PATH="$($pkg_config --variable=prefix glib-2.0)/bin" 27009d6bc27bSMichael Roth 2701ca35f780SPaolo Bonzini# Mac OS X ships with a broken assembler 2702ca35f780SPaolo Bonziniroms= 2703e633a5c6SEric Blakeif { test "$cpu" = "i386" || test "$cpu" = "x86_64"; } && \ 2704ba7c60c2SPaolo Bonzini test "$targetos" != "darwin" && test "$targetos" != "sunos" && \ 2705ba7c60c2SPaolo Bonzini test "$targetos" != "haiku" && test "$softmmu" = yes ; then 2706e57218b6SPeter Maydell # Different host OS linkers have different ideas about the name of the ELF 2707c65d5e4eSBrad Smith # emulation. Linux and OpenBSD/amd64 use 'elf_i386'; FreeBSD uses the _fbsd 2708c65d5e4eSBrad Smith # variant; OpenBSD/i386 uses the _obsd variant; and Windows uses i386pe. 2709c65d5e4eSBrad Smith for emu in elf_i386 elf_i386_fbsd elf_i386_obsd i386pe; do 2710e57218b6SPeter Maydell if "$ld" -verbose 2>&1 | grep -q "^[[:space:]]*$emu[[:space:]]*$"; then 2711e57218b6SPeter Maydell ld_i386_emulation="$emu" 2712ca35f780SPaolo Bonzini roms="optionrom" 2713e57218b6SPeter Maydell break 2714e57218b6SPeter Maydell fi 2715e57218b6SPeter Maydell done 2716ca35f780SPaolo Bonzinifi 2717ca35f780SPaolo Bonzini 27182e33c3f8SThomas Huth# Only build s390-ccw bios if we're on s390x and the compiler has -march=z900 2719a5b2afd5SThomas Huth# or -march=z10 (which is the lowest architecture level that Clang supports) 27209933c305SChristian Borntraegerif test "$cpu" = "s390x" ; then 27212e33c3f8SThomas Huth write_c_skeleton 2722a5b2afd5SThomas Huth compile_prog "-march=z900" "" 2723a5b2afd5SThomas Huth has_z900=$? 27243af448b3SThomas Huth if [ $has_z900 = 0 ] || compile_object "-march=z10 -msoft-float -Werror"; then 2725a5b2afd5SThomas Huth if [ $has_z900 != 0 ]; then 2726a5b2afd5SThomas Huth echo "WARNING: Your compiler does not support the z900!" 2727a5b2afd5SThomas Huth echo " The s390-ccw bios will only work with guest CPUs >= z10." 2728a5b2afd5SThomas Huth fi 27299933c305SChristian Borntraeger roms="$roms s390-ccw" 27301ef6bfc2SPhilippe Mathieu-Daudé # SLOF is required for building the s390-ccw firmware on s390x, 27311ef6bfc2SPhilippe Mathieu-Daudé # since it is using the libnet code from SLOF for network booting. 27321ef6bfc2SPhilippe Mathieu-Daudé git_submodules="${git_submodules} roms/SLOF" 27331ef6bfc2SPhilippe Mathieu-Daudé fi 27349933c305SChristian Borntraegerfi 27359933c305SChristian Borntraeger 273611cde1c8SBruno Dominguez# Check that the C++ compiler exists and works with the C compiler. 273711cde1c8SBruno Dominguez# All the QEMU_CXXFLAGS are based on QEMU_CFLAGS. Keep this at the end to don't miss any other that could be added. 273811cde1c8SBruno Dominguezif has $cxx; then 273911cde1c8SBruno Dominguez cat > $TMPC <<EOF 274011cde1c8SBruno Dominguezint c_function(void); 274111cde1c8SBruno Dominguezint main(void) { return c_function(); } 274211cde1c8SBruno DominguezEOF 274311cde1c8SBruno Dominguez 274411cde1c8SBruno Dominguez compile_object 274511cde1c8SBruno Dominguez 274611cde1c8SBruno Dominguez cat > $TMPCXX <<EOF 274711cde1c8SBruno Dominguezextern "C" { 274811cde1c8SBruno Dominguez int c_function(void); 274911cde1c8SBruno Dominguez} 275011cde1c8SBruno Dominguezint c_function(void) { return 42; } 275111cde1c8SBruno DominguezEOF 275211cde1c8SBruno Dominguez 275311cde1c8SBruno Dominguez update_cxxflags 275411cde1c8SBruno Dominguez 2755a2866660SPaolo Bonzini if do_cxx $CXXFLAGS $EXTRA_CXXFLAGS $CONFIGURE_CXXFLAGS $QEMU_CXXFLAGS -o $TMPE $TMPCXX $TMPO $QEMU_LDFLAGS; then 275611cde1c8SBruno Dominguez # C++ compiler $cxx works ok with C compiler $cc 275711cde1c8SBruno Dominguez : 275811cde1c8SBruno Dominguez else 275911cde1c8SBruno Dominguez echo "C++ compiler $cxx does not work with C compiler $cc" 276011cde1c8SBruno Dominguez echo "Disabling C++ specific optional code" 276111cde1c8SBruno Dominguez cxx= 276211cde1c8SBruno Dominguez fi 276311cde1c8SBruno Dominguezelse 276411cde1c8SBruno Dominguez echo "No C++ compiler available; disabling C++ specific optional code" 276511cde1c8SBruno Dominguez cxx= 276611cde1c8SBruno Dominguezfi 276711cde1c8SBruno Dominguez 27687d7dbf9dSDan Streetmanif !(GIT="$git" "$source_path/scripts/git-submodule.sh" "$git_submodules_action" "$git_submodules"); then 27697d7dbf9dSDan Streetman exit 1 27705d91a2edSYonggang Luofi 27715d91a2edSYonggang Luo 277298ec69acSJuan Quintelaconfig_host_mak="config-host.mak" 277397a847bcSbellard 277498ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak 277598ec69acSJuan Quintelaecho >> $config_host_mak 277698ec69acSJuan Quintela 2777e6c3b0f7SPaolo Bonziniecho all: >> $config_host_mak 2778cc84d63aSDaniel P. Berrangeecho "GIT=$git" >> $config_host_mak 2779aef45d51SDaniel P. Berrangeecho "GIT_SUBMODULES=$git_submodules" >> $config_host_mak 27807d7dbf9dSDan Streetmanecho "GIT_SUBMODULES_ACTION=$git_submodules_action" >> $config_host_mak 2781804edf29SJuan Quintela 2782f8393946Saurel32if test "$debug_tcg" = "yes" ; then 27832358a494SJuan Quintela echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak 2784f8393946Saurel32fi 278567b915a5Sbellardif test "$mingw32" = "yes" ; then 278698ec69acSJuan Quintela echo "CONFIG_WIN32=y" >> $config_host_mak 27876e444209SPaolo Bonzini echo "QEMU_GA_MSI_MINGW_BIN_PATH=${QEMU_GA_MSI_MINGW_BIN_PATH}" >> $config_host_mak 27889dacf32dSYossi Hindin echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER}" >> $config_host_mak 27899dacf32dSYossi Hindin echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO}" >> $config_host_mak 27909dacf32dSYossi Hindin echo "QEMU_GA_VERSION=${QEMU_GA_VERSION}" >> $config_host_mak 2791210fa556Spbrookelse 279235f4df27SJuan Quintela echo "CONFIG_POSIX=y" >> $config_host_mak 2793210fa556Spbrookfi 2794128ab2ffSblueswir1 2795dffcb71cSMark McLoughlinif test "$linux" = "yes" ; then 2796dffcb71cSMark McLoughlin echo "CONFIG_LINUX=y" >> $config_host_mak 2797dffcb71cSMark McLoughlinfi 2798dffcb71cSMark McLoughlin 279983fb7adfSbellardif test "$darwin" = "yes" ; then 280098ec69acSJuan Quintela echo "CONFIG_DARWIN=y" >> $config_host_mak 280183fb7adfSbellardfi 2802b29fe3edSmalc 2803ec530c81Sbellardif test "$solaris" = "yes" ; then 280498ec69acSJuan Quintela echo "CONFIG_SOLARIS=y" >> $config_host_mak 2805ec530c81Sbellardfi 280697a847bcSbellardif test "$static" = "yes" ; then 280798ec69acSJuan Quintela echo "CONFIG_STATIC=y" >> $config_host_mak 280897a847bcSbellardfi 2809b64ec4e4SFam Zhengecho "CONFIG_BDRV_RW_WHITELIST=$block_drv_rw_whitelist" >> $config_host_mak 2810b64ec4e4SFam Zhengecho "CONFIG_BDRV_RO_WHITELIST=$block_drv_ro_whitelist" >> $config_host_mak 281189138857SStefan Weilqemu_version=$(head $source_path/VERSION) 28122358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak 281398ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak 28142b1f35b9SAlex Bennéeecho "TARGET_DIRS=$target_list" >> $config_host_mak 281517969268SFam Zhengif test "$modules" = "yes"; then 2816e26110cfSFam Zheng # $shacmd can generate a hash started with digit, which the compiler doesn't 2817e26110cfSFam Zheng # like as an symbol. So prefix it with an underscore 281889138857SStefan Weil echo "CONFIG_STAMP=_$( (echo $qemu_version; echo $pkgversion; cat $0) | $shacmd - | cut -f1 -d\ )" >> $config_host_mak 281917969268SFam Zheng echo "CONFIG_MODULES=y" >> $config_host_mak 282017969268SFam Zhengfi 2821bd83c861SChristian Ehrhardtif test "$module_upgrades" = "yes"; then 2822bd83c861SChristian Ehrhardt echo "CONFIG_MODULE_UPGRADES=y" >> $config_host_mak 2823bd83c861SChristian Ehrhardtfi 2824955727d2SCortland Tölvaif test "$have_usbfs" = "yes" ; then 2825955727d2SCortland Tölva echo "CONFIG_USBFS=y" >> $config_host_mak 2826955727d2SCortland Tölvafi 2827f876b765SMarc-André Lureauif test "$gio" = "yes" ; then 2828f876b765SMarc-André Lureau echo "CONFIG_GIO=y" >> $config_host_mak 2829f876b765SMarc-André Lureau echo "GIO_CFLAGS=$gio_cflags" >> $config_host_mak 2830f876b765SMarc-André Lureau echo "GIO_LIBS=$gio_libs" >> $config_host_mak 28315ecfb76cSPaolo Bonzinifi 28325ecfb76cSPaolo Bonziniif test "$gdbus_codegen" != "" ; then 283325a97a56SMarc-André Lureau echo "GDBUS_CODEGEN=$gdbus_codegen" >> $config_host_mak 2834f876b765SMarc-André Lureaufi 2835a1c5e949SDaniel P. Berrangeecho "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak 2836277abf15SJan Vesely 28371badb709SPaolo Bonziniif test "$xen" = "enabled" ; then 28386dbd588aSJan Kiszka echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak 2839d5b93ddfSAnthony PERARD echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak 2840582ea95fSMarc-André Lureau echo "XEN_CFLAGS=$xen_cflags" >> $config_host_mak 2841582ea95fSMarc-André Lureau echo "XEN_LIBS=$xen_libs" >> $config_host_mak 2842e37630caSaliguorifi 28435e9be92dSNicholas Bellingerif test "$vhost_scsi" = "yes" ; then 28445e9be92dSNicholas Bellinger echo "CONFIG_VHOST_SCSI=y" >> $config_host_mak 28455e9be92dSNicholas Bellingerfi 2846af3bba76SPaolo Bonziniif test "$vhost_net" = "yes" ; then 2847af3bba76SPaolo Bonzini echo "CONFIG_VHOST_NET=y" >> $config_host_mak 2848af3bba76SPaolo Bonzinifi 2849af3bba76SPaolo Bonziniif test "$vhost_net_user" = "yes" ; then 285056f41de7SPaolo Bonzini echo "CONFIG_VHOST_NET_USER=y" >> $config_host_mak 285103ce5744SNikolay Nikolaevfi 2852108a6481SCindy Luif test "$vhost_net_vdpa" = "yes" ; then 2853108a6481SCindy Lu echo "CONFIG_VHOST_NET_VDPA=y" >> $config_host_mak 2854108a6481SCindy Lufi 2855042cea27SGongleiif test "$vhost_crypto" = "yes" ; then 2856042cea27SGonglei echo "CONFIG_VHOST_CRYPTO=y" >> $config_host_mak 2857042cea27SGongleifi 2858fc0b9b0eSStefan Hajnocziif test "$vhost_vsock" = "yes" ; then 2859fc0b9b0eSStefan Hajnoczi echo "CONFIG_VHOST_VSOCK=y" >> $config_host_mak 28605fe97d88SStefano Garzarella if test "$vhost_user" = "yes" ; then 28615fe97d88SStefano Garzarella echo "CONFIG_VHOST_USER_VSOCK=y" >> $config_host_mak 28625fe97d88SStefano Garzarella fi 2863fc0b9b0eSStefan Hajnoczifi 2864299e6f19SPaolo Bonziniif test "$vhost_kernel" = "yes" ; then 2865299e6f19SPaolo Bonzini echo "CONFIG_VHOST_KERNEL=y" >> $config_host_mak 2866299e6f19SPaolo Bonzinifi 2867e6a74868SMarc-André Lureauif test "$vhost_user" = "yes" ; then 2868e6a74868SMarc-André Lureau echo "CONFIG_VHOST_USER=y" >> $config_host_mak 2869e6a74868SMarc-André Lureaufi 2870108a6481SCindy Luif test "$vhost_vdpa" = "yes" ; then 2871108a6481SCindy Lu echo "CONFIG_VHOST_VDPA=y" >> $config_host_mak 2872108a6481SCindy Lufi 287398fc1adaSDr. David Alan Gilbertif test "$vhost_user_fs" = "yes" ; then 287498fc1adaSDr. David Alan Gilbert echo "CONFIG_VHOST_USER_FS=y" >> $config_host_mak 287598fc1adaSDr. David Alan Gilbertfi 287658d3f3ffSGerd Hoffmann 2877da076ffeSGerd Hoffmannif test "$opengl" = "yes" ; then 2878da076ffeSGerd Hoffmann echo "CONFIG_OPENGL=y" >> $config_host_mak 2879de2d3005SPaolo Bonzini echo "OPENGL_CFLAGS=$opengl_cflags" >> $config_host_mak 2880da076ffeSGerd Hoffmann echo "OPENGL_LIBS=$opengl_libs" >> $config_host_mak 288120ff075bSMichael Wallefi 288220ff075bSMichael Walle 288383fb7adfSbellard# XXX: suppress that 28847d3505c5Sbellardif [ "$bsd" = "yes" ] ; then 28852358a494SJuan Quintela echo "CONFIG_BSD=y" >> $config_host_mak 28867d3505c5Sbellardfi 28877d3505c5Sbellard 28887c2acc70SPeter Maydellecho "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak 28897d992e4dSPeter Lieven 2890d83414e1SMarc-André Lureauif test "$have_asan_iface_fiber" = "yes" ; then 2891d83414e1SMarc-André Lureau echo "CONFIG_ASAN_IFACE_FIBER=y" >> $config_host_mak 2892d83414e1SMarc-André Lureaufi 2893d83414e1SMarc-André Lureau 28940aebab04SLingfeng Yangif test "$have_tsan" = "yes" && test "$have_tsan_iface_fiber" = "yes" ; then 28950aebab04SLingfeng Yang echo "CONFIG_TSAN=y" >> $config_host_mak 28960aebab04SLingfeng Yangfi 28970aebab04SLingfeng Yang 28982da776dbSMichael R. Hinesif test "$rdma" = "yes" ; then 28992da776dbSMichael R. Hines echo "CONFIG_RDMA=y" >> $config_host_mak 2900392fb643SFam Zheng echo "RDMA_LIBS=$rdma_libs" >> $config_host_mak 29012da776dbSMichael R. Hinesfi 29022da776dbSMichael R. Hines 290321ab34c9SMarcel Apfelbaumif test "$pvrdma" = "yes" ; then 290421ab34c9SMarcel Apfelbaum echo "CONFIG_PVRDMA=y" >> $config_host_mak 290521ab34c9SMarcel Apfelbaumfi 290621ab34c9SMarcel Apfelbaum 290740e8c6f4SAlex Bennéeif test "$plugins" = "yes" ; then 290840e8c6f4SAlex Bennée echo "CONFIG_PLUGIN=y" >> $config_host_mak 290940e8c6f4SAlex Bennéefi 291040e8c6f4SAlex Bennée 2911f48e590aSAlex Bennéeif test -n "$gdb_bin"; then 2912b1863cccSAlex Bennée gdb_version=$($gdb_bin --version | head -n 1) 2913d6a66c81SAlex Bennée if version_ge ${gdb_version##* } 9.1; then 2914f48e590aSAlex Bennée echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak 2915f48e590aSAlex Bennée fi 2916b1863cccSAlex Bennéefi 2917f48e590aSAlex Bennée 291854e7aac0SAlexey Krasikovif test "$secret_keyring" = "yes" ; then 291954e7aac0SAlexey Krasikov echo "CONFIG_SECRET_KEYRING=y" >> $config_host_mak 292054e7aac0SAlexey Krasikovfi 292154e7aac0SAlexey Krasikov 292298ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak 2923804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak 2924c886edfbSBlue Swirlecho "PYTHON=$python" >> $config_host_mak 292539d87c8cSAlex Bennéeecho "GENISOIMAGE=$genisoimage" >> $config_host_mak 2926a5665051SPaolo Bonziniecho "MESON=$meson" >> $config_host_mak 292709e93326SPaolo Bonziniecho "NINJA=$ninja" >> $config_host_mak 2928804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak 2929804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak 2930cdbd727cSRichard Hendersonecho "AS=$as" >> $config_host_mak 29315f6f0e27SRichard Hendersonecho "CCAS=$ccas" >> $config_host_mak 29323dd46c78SBlue Swirlecho "CPP=$cpp" >> $config_host_mak 2933804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak 2934804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak 293546eef33bSBradecho "CFLAGS_NOPIE=$CFLAGS_NOPIE" >> $config_host_mak 2936a558ee17SJuan Quintelaecho "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak 293711cde1c8SBruno Dominguezecho "QEMU_CXXFLAGS=$QEMU_CXXFLAGS" >> $config_host_mak 29384cb37d11SPhilippe Mathieu-Daudéecho "QEMU_OBJCFLAGS=$QEMU_OBJCFLAGS" >> $config_host_mak 2939a81df1b6SPaolo Bonziniecho "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak 2940a81df1b6SPaolo Bonziniecho "GLIB_LIBS=$glib_libs" >> $config_host_mak 2941d83acfd0SMarc-André Lureauecho "GLIB_VERSION=$(pkg-config --modversion glib-2.0)" >> $config_host_mak 29428a99e9a3SPhilippe Mathieu-Daudéecho "QEMU_LDFLAGS=$QEMU_LDFLAGS" >> $config_host_mak 2943e57218b6SPeter Maydellecho "LD_I386_EMULATION=$ld_i386_emulation" >> $config_host_mak 2944a70248dbSPaolo Bonziniecho "STRIP=$strip" >> $config_host_mak 2945804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak 2946804edf29SJuan Quintela 29476efd7517SPeter Maydell# use included Linux headers 29486efd7517SPeter Maydellif test "$linux" = "yes" ; then 2949a307beb6SAndreas Färber mkdir -p linux-headers 29506efd7517SPeter Maydell case "$cpu" in 29514da270beSPaolo Bonzini i386|x86_64) 295208312a63SPeter Maydell linux_arch=x86 29536efd7517SPeter Maydell ;; 2954d8ff892dSPaolo Bonzini ppc|ppc64) 295508312a63SPeter Maydell linux_arch=powerpc 29566efd7517SPeter Maydell ;; 29576efd7517SPeter Maydell s390x) 295808312a63SPeter Maydell linux_arch=s390 295908312a63SPeter Maydell ;; 29601f080313SClaudio Fontana aarch64) 29611f080313SClaudio Fontana linux_arch=arm64 29621f080313SClaudio Fontana ;; 2963dfcf900bSWANG Xuerui loongarch*) 2964dfcf900bSWANG Xuerui linux_arch=loongarch 2965dfcf900bSWANG Xuerui ;; 2966222e7d11SSanjay Lal mips64) 2967222e7d11SSanjay Lal linux_arch=mips 2968222e7d11SSanjay Lal ;; 296908312a63SPeter Maydell *) 297008312a63SPeter Maydell # For most CPUs the kernel architecture name and QEMU CPU name match. 297108312a63SPeter Maydell linux_arch="$cpu" 29726efd7517SPeter Maydell ;; 29736efd7517SPeter Maydell esac 297408312a63SPeter Maydell # For non-KVM architectures we will not have asm headers 297508312a63SPeter Maydell if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then 297608312a63SPeter Maydell symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm 297708312a63SPeter Maydell fi 29786efd7517SPeter Maydellfi 29796efd7517SPeter Maydell 298097a847bcSbellardfor target in $target_list; do 298197a847bcSbellard target_dir="$target" 298257a93f16SPhilippe Mathieu-Daudé target_name=$(echo $target | cut -d '-' -f 1)$EXESUF 298397a847bcSbellard mkdir -p $target_dir 2984fdb75aefSPaolo Bonzini case $target in 2985fdb75aefSPaolo Bonzini *-user) symlink "../qemu-$target_name" "$target_dir/qemu-$target_name" ;; 2986fdb75aefSPaolo Bonzini *) symlink "../qemu-system-$target_name" "$target_dir/qemu-system-$target_name" ;; 29872408a527Saurel32 esac 298856aebc89Spbrookdone 29897d13299dSbellard 2990765686d6SPaolo Bonziniecho "CONFIG_QEMU_INTERP_PREFIX=$interp_prefix" | sed 's/%M/@0@/' >> $config_host_mak 2991fdb75aefSPaolo Bonziniif test "$default_targets" = "yes"; then 2992fdb75aefSPaolo Bonzini echo "CONFIG_DEFAULT_TARGETS=y" >> $config_host_mak 2993fdb75aefSPaolo Bonzinifi 2994a540f158SPeter Crosthwaite 2995fd0e6053SJohn Snowif test "$ccache_cpp2" = "yes"; then 2996fd0e6053SJohn Snow echo "export CCACHE_CPP2=y" >> $config_host_mak 2997fd0e6053SJohn Snowfi 2998fd0e6053SJohn Snow 29991e4f6065SDaniele Buonoif test "$safe_stack" = "yes"; then 30001e4f6065SDaniele Buono echo "CONFIG_SAFESTACK=y" >> $config_host_mak 30011e4f6065SDaniele Buonofi 30021e4f6065SDaniele Buono 3003e29e5c6eSPeter Maydell# If we're using a separate build tree, set it up now. 3004e29e5c6eSPeter Maydell# LINKS are things to symlink back into the source tree 3005e29e5c6eSPeter Maydell# (these can be both files and directories). 3006e29e5c6eSPeter Maydell# Caution: do not add files or directories here using wildcards. This 3007e29e5c6eSPeter Maydell# will result in problems later if a new file matching the wildcard is 3008e29e5c6eSPeter Maydell# added to the source tree -- nothing will cause configure to be rerun 3009e29e5c6eSPeter Maydell# so the build tree will be missing the link back to the new file, and 3010e29e5c6eSPeter Maydell# tests might fail. Prefer to keep the relevant files in their own 3011e29e5c6eSPeter Maydell# directory and symlink the directory instead. 30122038f8c8SPaolo BonziniLINKS="Makefile" 30133941996bSPaolo BonziniLINKS="$LINKS tests/tcg/Makefile.target" 3014ddcf607fSGerd HoffmannLINKS="$LINKS pc-bios/optionrom/Makefile" 3015e29e5c6eSPeter MaydellLINKS="$LINKS pc-bios/s390-ccw/Makefile" 3016e29e5c6eSPeter MaydellLINKS="$LINKS .gdbinit scripts" # scripts needed by relative path in .gdbinit 3017bbbd9b6eSWillian RampazzoLINKS="$LINKS tests/avocado tests/data" 301839950353SPeter MaydellLINKS="$LINKS tests/qemu-iotests/check" 30198f8fd9edSCleber RosaLINKS="$LINKS python" 3020c17a386bSAlex BennéeLINKS="$LINKS contrib/plugins/Makefile " 3021753d11f2SRichard Hendersonfor bios_file in \ 3022753d11f2SRichard Henderson $source_path/pc-bios/*.bin \ 30233a631b8eSBin Meng $source_path/pc-bios/*.elf \ 3024225a9ab8SAlexey Kardashevskiy $source_path/pc-bios/*.lid \ 3025753d11f2SRichard Henderson $source_path/pc-bios/*.rom \ 3026753d11f2SRichard Henderson $source_path/pc-bios/*.dtb \ 3027e89e33e1SDominik Dingel $source_path/pc-bios/*.img \ 3028753d11f2SRichard Henderson $source_path/pc-bios/openbios-* \ 30294e73c781SAlexander Graf $source_path/pc-bios/u-boot.* \ 3030cd946e5cSJohn Arbuckle $source_path/pc-bios/palcode-* \ 3031cd946e5cSJohn Arbuckle $source_path/pc-bios/qemu_vga.ndrv 3032cd946e5cSJohn Arbuckle 3033753d11f2SRichard Hendersondo 3034e29e5c6eSPeter Maydell LINKS="$LINKS pc-bios/$(basename $bios_file)" 30357ea78b74SJan Kiszkadone 3036e29e5c6eSPeter Maydellfor f in $LINKS ; do 30370f4d8894SPaolo Bonzini if [ -e "$source_path/$f" ]; then 30385dce7b8dSPaolo Bonzini mkdir -p `dirname ./$f` 3039f9245e10SPeter Maydell symlink "$source_path/$f" "$f" 3040f9245e10SPeter Maydell fi 30417d13299dSbellarddone 30421ad2134fSPaul Brook 30432038f8c8SPaolo Bonzini(for i in $cross_cc_vars; do 30442038f8c8SPaolo Bonzini export $i 30452038f8c8SPaolo Bonzinidone 3046544f4a25SPaolo Bonziniexport target_list source_path use_containers cpu host_cc 30472038f8c8SPaolo Bonzini$source_path/tests/tcg/configure.sh) 30482038f8c8SPaolo Bonzini 304998409991SHelge Konetzkaconfig_mak=pc-bios/optionrom/config.mak 305098409991SHelge Konetzkaecho "# Automatically generated by configure - do not modify" > $config_mak 305198409991SHelge Konetzkaecho "TOPSRC_DIR=$source_path" >> $config_mak 305298409991SHelge Konetzka 3053a5665051SPaolo Bonziniif test "$skip_meson" = no; then 3054fc929892SMarc-André Lureau cross="config-meson.cross.new" 3055fc929892SMarc-André Lureau meson_quote() { 3056ac7ebcc5SPaolo Bonzini test $# = 0 && return 305747b30835SPaolo Bonzini echo "'$(echo $* | sed "s/ /','/g")'" 3058fc929892SMarc-André Lureau } 3059fc929892SMarc-André Lureau 3060fc929892SMarc-André Lureau echo "# Automatically generated by configure - do not modify" > $cross 3061fc929892SMarc-André Lureau echo "[properties]" >> $cross 3062d1d5e9eeSAlex Bennée 3063d1d5e9eeSAlex Bennée # unroll any custom device configs 3064d1d5e9eeSAlex Bennée for a in $device_archs; do 3065d1d5e9eeSAlex Bennée eval "c=\$devices_${a}" 3066d1d5e9eeSAlex Bennée echo "${a}-softmmu = '$c'" >> $cross 3067d1d5e9eeSAlex Bennée done 3068d1d5e9eeSAlex Bennée 3069fc929892SMarc-André Lureau test -z "$cxx" && echo "link_language = 'c'" >> $cross 307047b30835SPaolo Bonzini echo "[built-in options]" >> $cross 3071a2866660SPaolo Bonzini echo "c_args = [$(meson_quote $CFLAGS $EXTRA_CFLAGS)]" >> $cross 3072a2866660SPaolo Bonzini echo "cpp_args = [$(meson_quote $CXXFLAGS $EXTRA_CXXFLAGS)]" >> $cross 3073e910c7d9SPhilippe Mathieu-Daudé test -n "$objcc" && echo "objc_args = [$(meson_quote $OBJCFLAGS $EXTRA_OBJCFLAGS)]" >> $cross 3074a2866660SPaolo Bonzini echo "c_link_args = [$(meson_quote $CFLAGS $LDFLAGS $EXTRA_CFLAGS $EXTRA_LDFLAGS)]" >> $cross 3075a2866660SPaolo Bonzini echo "cpp_link_args = [$(meson_quote $CXXFLAGS $LDFLAGS $EXTRA_CXXFLAGS $EXTRA_LDFLAGS)]" >> $cross 3076fc929892SMarc-André Lureau echo "[binaries]" >> $cross 30774dba2789SPaolo Bonzini echo "c = [$(meson_quote $cc $CPU_CFLAGS)]" >> $cross 30784dba2789SPaolo Bonzini test -n "$cxx" && echo "cpp = [$(meson_quote $cxx $CPU_CFLAGS)]" >> $cross 30794dba2789SPaolo Bonzini test -n "$objcc" && echo "objc = [$(meson_quote $objcc $CPU_CFLAGS)]" >> $cross 308047b30835SPaolo Bonzini echo "ar = [$(meson_quote $ar)]" >> $cross 308147b30835SPaolo Bonzini echo "nm = [$(meson_quote $nm)]" >> $cross 308247b30835SPaolo Bonzini echo "pkgconfig = [$(meson_quote $pkg_config_exe)]" >> $cross 308347b30835SPaolo Bonzini echo "ranlib = [$(meson_quote $ranlib)]" >> $cross 3084e8178514SPaolo Bonzini if has $sdl2_config; then 308547b30835SPaolo Bonzini echo "sdl2-config = [$(meson_quote $sdl2_config)]" >> $cross 3086e8178514SPaolo Bonzini fi 308747b30835SPaolo Bonzini echo "strip = [$(meson_quote $strip)]" >> $cross 308847b30835SPaolo Bonzini echo "windres = [$(meson_quote $windres)]" >> $cross 30893812c0c4SJoelle van Dyne if test "$cross_compile" = "yes"; then 3090fc929892SMarc-André Lureau cross_arg="--cross-file config-meson.cross" 3091fc929892SMarc-André Lureau echo "[host_machine]" >> $cross 3092ba7c60c2SPaolo Bonzini echo "system = '$targetos'" >> $cross 3093823eb013SPaolo Bonzini case "$cpu" in 3094f6bca9dfSJoelle van Dyne i386) 3095fc929892SMarc-André Lureau echo "cpu_family = 'x86'" >> $cross 3096fc929892SMarc-André Lureau ;; 3097fc929892SMarc-André Lureau *) 3098823eb013SPaolo Bonzini echo "cpu_family = '$cpu'" >> $cross 3099fc929892SMarc-André Lureau ;; 3100fc929892SMarc-André Lureau esac 3101fc929892SMarc-André Lureau echo "cpu = '$cpu'" >> $cross 3102fc929892SMarc-André Lureau if test "$bigendian" = "yes" ; then 3103fc929892SMarc-André Lureau echo "endian = 'big'" >> $cross 3104fc929892SMarc-André Lureau else 3105fc929892SMarc-André Lureau echo "endian = 'little'" >> $cross 3106fc929892SMarc-André Lureau fi 3107fc929892SMarc-André Lureau else 3108fc929892SMarc-André Lureau cross_arg="--native-file config-meson.cross" 3109fc929892SMarc-André Lureau fi 3110fc929892SMarc-André Lureau mv $cross config-meson.cross 3111fc929892SMarc-André Lureau 3112a5665051SPaolo Bonzini rm -rf meson-private meson-info meson-logs 311361d63097SPaolo Bonzini run_meson() { 311409e93326SPaolo Bonzini NINJA=$ninja $meson setup \ 3115d17f305aSPaolo Bonzini --prefix "$prefix" \ 3116d17f305aSPaolo Bonzini --libdir "$libdir" \ 3117d17f305aSPaolo Bonzini --libexecdir "$libexecdir" \ 3118d17f305aSPaolo Bonzini --bindir "$bindir" \ 3119d17f305aSPaolo Bonzini --includedir "$includedir" \ 3120d17f305aSPaolo Bonzini --datadir "$datadir" \ 3121d17f305aSPaolo Bonzini --mandir "$mandir" \ 3122d17f305aSPaolo Bonzini --sysconfdir "$sysconfdir" \ 312316bf7a33SPaolo Bonzini --localedir "$localedir" \ 3124d17f305aSPaolo Bonzini --localstatedir "$local_statedir" \ 31253b4da132SPaolo Bonzini -Daudio_drv_list=$audio_drv_list \ 31263b4da132SPaolo Bonzini -Ddefault_devices=$default_devices \ 3127d17f305aSPaolo Bonzini -Ddocdir="$docdir" \ 31285dc4618eSPaolo Bonzini -Diasl="$($iasl -h >/dev/null 2>&1 && printf %s "$iasl")" \ 312916bf7a33SPaolo Bonzini -Dqemu_firmwarepath="$firmwarepath" \ 313073f3aa37SMarc-André Lureau -Dqemu_suffix="$qemu_suffix" \ 313135acbb30SPaolo Bonzini -Dsmbd="$smbd" \ 31323b4da132SPaolo Bonzini -Dsphinx_build="$sphinx_build" \ 31333b4da132SPaolo Bonzini -Dtrace_file="$trace_file" \ 3134a5665051SPaolo Bonzini -Doptimization=$(if test "$debug" = yes; then echo 0; else echo 2; fi) \ 3135a5665051SPaolo Bonzini -Ddebug=$(if test "$debug_info" = yes; then echo true; else echo false; fi) \ 3136a5665051SPaolo Bonzini -Dwerror=$(if test "$werror" = yes; then echo true; else echo false; fi) \ 3137da6d48b9SMarc-André Lureau -Db_pie=$(if test "$pie" = yes; then echo true; else echo false; fi) \ 3138bf0e56a3SMarc-André Lureau -Db_coverage=$(if test "$gcov" = yes; then echo true; else echo false; fi) \ 31393b4da132SPaolo Bonzini -Db_lto=$lto -Dcfi=$cfi -Dtcg=$tcg -Dxen=$xen \ 31403b4da132SPaolo Bonzini -Dcapstone=$capstone -Dfdt=$fdt -Dslirp=$slirp \ 3141537b7248SPaolo Bonzini $(test -n "${LIB_FUZZING_ENGINE+xxx}" && echo "-Dfuzzing_engine=$LIB_FUZZING_ENGINE") \ 3142332008e0SThomas Huth $(if test "$default_feature" = no; then echo "-Dauto_features=disabled"; fi) \ 314361d63097SPaolo Bonzini "$@" $cross_arg "$PWD" "$source_path" 314461d63097SPaolo Bonzini } 314561d63097SPaolo Bonzini eval run_meson $meson_options 3146a5665051SPaolo Bonzini if test "$?" -ne 0 ; then 3147a5665051SPaolo Bonzini error_exit "meson setup failed" 3148a5665051SPaolo Bonzini fi 3149699d3884SPaolo Bonzinielse 3150699d3884SPaolo Bonzini if test -f meson-private/cmd_line.txt; then 3151699d3884SPaolo Bonzini # Adjust old command line options whose type was changed 3152699d3884SPaolo Bonzini # Avoids having to use "setup --wipe" when Meson is upgraded 3153699d3884SPaolo Bonzini perl -i -ne ' 3154699d3884SPaolo Bonzini s/^gettext = true$/gettext = auto/; 3155699d3884SPaolo Bonzini s/^gettext = false$/gettext = disabled/; 3156654d6b04SPaolo Bonzini /^b_staticpic/ && next; 3157699d3884SPaolo Bonzini print;' meson-private/cmd_line.txt 3158699d3884SPaolo Bonzini fi 3159a5665051SPaolo Bonzinifi 3160a5665051SPaolo Bonzini 3161dc655404SMichael S. Tsirkin# Save the configure command line for later reuse. 3162dc655404SMichael S. Tsirkincat <<EOD >config.status 3163dc655404SMichael S. Tsirkin#!/bin/sh 3164dc655404SMichael S. Tsirkin# Generated by configure. 3165dc655404SMichael S. Tsirkin# Run this file to recreate the current configuration. 3166dc655404SMichael S. Tsirkin# Compiler output produced by configure, useful for debugging 3167dc655404SMichael S. Tsirkin# configure, is in config.log if it exists. 3168dc655404SMichael S. TsirkinEOD 3169e811da7fSDaniel P. Berrangé 3170e811da7fSDaniel P. Berrangépreserve_env() { 3171e811da7fSDaniel P. Berrangé envname=$1 3172e811da7fSDaniel P. Berrangé 3173e811da7fSDaniel P. Berrangé eval envval=\$$envname 3174e811da7fSDaniel P. Berrangé 3175e811da7fSDaniel P. Berrangé if test -n "$envval" 3176e811da7fSDaniel P. Berrangé then 3177e811da7fSDaniel P. Berrangé echo "$envname='$envval'" >> config.status 3178e811da7fSDaniel P. Berrangé echo "export $envname" >> config.status 3179e811da7fSDaniel P. Berrangé else 3180e811da7fSDaniel P. Berrangé echo "unset $envname" >> config.status 3181e811da7fSDaniel P. Berrangé fi 3182e811da7fSDaniel P. Berrangé} 3183e811da7fSDaniel P. Berrangé 3184e811da7fSDaniel P. Berrangé# Preserve various env variables that influence what 3185e811da7fSDaniel P. Berrangé# features/build target configure will detect 3186e811da7fSDaniel P. Berrangépreserve_env AR 3187e811da7fSDaniel P. Berrangépreserve_env AS 3188e811da7fSDaniel P. Berrangépreserve_env CC 3189e811da7fSDaniel P. Berrangépreserve_env CPP 31908009da03SPaolo Bonzinipreserve_env CFLAGS 3191e811da7fSDaniel P. Berrangépreserve_env CXX 31928009da03SPaolo Bonzinipreserve_env CXXFLAGS 3193e811da7fSDaniel P. Berrangépreserve_env INSTALL 3194e811da7fSDaniel P. Berrangépreserve_env LD 31958009da03SPaolo Bonzinipreserve_env LDFLAGS 3196e811da7fSDaniel P. Berrangépreserve_env LD_LIBRARY_PATH 3197e811da7fSDaniel P. Berrangépreserve_env LIBTOOL 3198e811da7fSDaniel P. Berrangépreserve_env MAKE 3199e811da7fSDaniel P. Berrangépreserve_env NM 3200e811da7fSDaniel P. Berrangépreserve_env OBJCOPY 3201e811da7fSDaniel P. Berrangépreserve_env PATH 3202e811da7fSDaniel P. Berrangépreserve_env PKG_CONFIG 3203e811da7fSDaniel P. Berrangépreserve_env PKG_CONFIG_LIBDIR 3204e811da7fSDaniel P. Berrangépreserve_env PKG_CONFIG_PATH 3205e811da7fSDaniel P. Berrangépreserve_env PYTHON 3206e811da7fSDaniel P. Berrangépreserve_env SDL2_CONFIG 3207e811da7fSDaniel P. Berrangépreserve_env SMBD 3208e811da7fSDaniel P. Berrangépreserve_env STRIP 3209e811da7fSDaniel P. Berrangépreserve_env WINDRES 3210e811da7fSDaniel P. Berrangé 3211dc655404SMichael S. Tsirkinprintf "exec" >>config.status 3212a5665051SPaolo Bonzinifor i in "$0" "$@"; do 3213835af899SPaolo Bonzini test "$i" = --skip-meson || printf " %s" "$(quote_sh "$i")" >>config.status 3214a5665051SPaolo Bonzinidone 3215cf7cc929SDr. David Alan Gilbertecho ' "$@"' >>config.status 3216dc655404SMichael S. Tsirkinchmod +x config.status 3217dc655404SMichael S. Tsirkin 32188cd05ab6SPeter Maydellrm -r "$TMPDIR1" 3219