blob: 26c7bc5154684b46962cde6ef111cb04222d3c7e [file] [log] [blame]
bellard7d132992003-03-06 23:23:54 +00001#!/bin/sh
2#
bellard3ef693a2003-03-23 20:17:16 +00003# qemu configure script (c) 2003 Fabrice Bellard
bellard7d132992003-03-06 23:23:54 +00004#
Peter Maydell8cd05ab2014-05-23 17:07:24 +01005
Cornelia Huck99519e62014-05-28 12:39:17 +02006# Unset some variables known to interfere with behavior of common tools,
7# just as autoconf does.
8CLICOLOR_FORCE= GREP_OPTIONS=
9unset CLICOLOR_FORCE GREP_OPTIONS
10
John Snow5e4dfd32015-10-28 13:56:40 -040011# Don't allow CCACHE, if present, to use cached results of compile tests!
12export CCACHE_RECACHE=yes
13
Daniel P. Berrangédedad022020-08-21 12:22:04 +020014# make source path absolute
15source_path=$(cd "$(dirname -- "$0")"; pwd)
16
17if test "$PWD" = "$source_path"
18then
19 echo "Using './build' as the directory for build output"
20
21 MARKER=build/auto-created-by-configure
22
23 if test -e build
24 then
25 if test -f $MARKER
26 then
27 rm -rf build
28 else
29 echo "ERROR: ./build dir already exists and was not previously created by configure"
30 exit 1
31 fi
32 fi
33
34 mkdir build
35 touch $MARKER
36
37 cat > GNUmakefile <<'EOF'
38# This file is auto-generated by configure to support in-source tree
39# 'make' command invocation
40
41ifeq ($(MAKECMDGOALS),)
42recurse: all
43endif
44
45.NOTPARALLEL: %
46%: force
47 @echo 'changing dir to build for $(MAKE) "$(MAKECMDGOALS)"...'
48 @$(MAKE) -C build -f Makefile $(MAKECMDGOALS)
49 @if test "$(MAKECMDGOALS)" = "distclean" && \
50 test -e build/auto-created-by-configure ; \
51 then \
52 rm -rf build GNUmakefile ; \
53 fi
54force: ;
55.PHONY: force
56GNUmakefile: ;
57
58EOF
59 cd build
Peter Maydell64708612022-08-25 16:06:59 +010060 exec "$source_path/configure" "$@"
Daniel P. Berrangédedad022020-08-21 12:22:04 +020061fi
62
Peter Maydell8cd05ab2014-05-23 17:07:24 +010063# Temporary directory used for files created while
64# configure runs. Since it is in the build directory
65# we can safely blow away any previous version of it
66# (and we need not jump through hoops to try to delete
67# it when configure exits.)
68TMPDIR1="config-temp"
69rm -rf "${TMPDIR1}"
Peter Maydell563661c2022-08-25 16:07:02 +010070if ! mkdir -p "${TMPDIR1}"; then
Peter Maydell8cd05ab2014-05-23 17:07:24 +010071 echo "ERROR: failed to create temporary directory"
72 exit 1
bellard7d132992003-03-06 23:23:54 +000073fi
74
Peter Maydell8cd05ab2014-05-23 17:07:24 +010075TMPB="qemu-conf"
76TMPC="${TMPDIR1}/${TMPB}.c"
Don Slutz66518bf2014-01-02 21:12:46 -050077TMPO="${TMPDIR1}/${TMPB}.o"
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +010078TMPM="${TMPDIR1}/${TMPB}.m"
Peter Maydell8cd05ab2014-05-23 17:07:24 +010079TMPE="${TMPDIR1}/${TMPB}.exe"
bellard7d132992003-03-06 23:23:54 +000080
Gerd Hoffmannda1d85e2010-04-23 13:44:10 +020081rm -f config.log
malc9ac81bb2008-11-29 20:09:56 +000082
Peter Maydellb48e3612011-11-23 17:26:44 +000083# Print a helpful header at the top of config.log
84echo "# QEMU configure log $(date)" >> config.log
Peter Maydell979ae162012-03-07 12:16:29 +000085printf "# Configured with:" >> config.log
86printf " '%s'" "$0" "$@" >> config.log
87echo >> config.log
Peter Maydellb48e3612011-11-23 17:26:44 +000088echo "#" >> config.log
89
Paolo Bonzini835af892020-09-08 13:20:45 +020090quote_sh() {
91 printf "%s" "$1" | sed "s,','\\\\'',g; s,.*,'&',"
92}
93
Paolo Bonzinid880a3b2017-07-03 16:58:28 +020094print_error() {
95 (echo
Peter Maydell76ad07a2013-04-08 12:11:26 +010096 echo "ERROR: $1"
97 while test -n "$2"; do
98 echo " $2"
99 shift
100 done
Paolo Bonzinid880a3b2017-07-03 16:58:28 +0200101 echo) >&2
102}
103
104error_exit() {
105 print_error "$@"
Peter Maydell76ad07a2013-04-08 12:11:26 +0100106 exit 1
107}
108
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000109do_compiler() {
Paolo Bonzinicd362de2022-05-27 16:35:48 +0100110 # Run the compiler, capturing its output to the log. First argument
111 # is compiler binary to execute.
Peter Maydellb3b54722022-08-25 16:07:03 +0100112 compiler="$1"
Paolo Bonzinicd362de2022-05-27 16:35:48 +0100113 shift
114 if test -n "$BASH_VERSION"; then eval '
115 echo >>config.log "
116funcs: ${FUNCNAME[*]}
117lines: ${BASH_LINENO[*]}"
118 '; fi
119 echo $compiler "$@" >> config.log
120 $compiler "$@" >> config.log 2>&1 || return $?
121}
122
123do_compiler_werror() {
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000124 # Run the compiler, capturing its output to the log. First argument
125 # is compiler binary to execute.
David CARLIER630d86b2020-07-18 14:19:10 +0100126 compiler="$1"
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000127 shift
Ian Jackson8bbe05d2017-09-25 16:41:03 +0100128 if test -n "$BASH_VERSION"; then eval '
129 echo >>config.log "
130funcs: ${FUNCNAME[*]}
131lines: ${BASH_LINENO[*]}"
132 '; fi
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000133 echo $compiler "$@" >> config.log
134 $compiler "$@" >> config.log 2>&1 || return $?
Peter Maydell8dc38a72012-07-18 15:10:28 +0100135 # Test passed. If this is an --enable-werror build, rerun
136 # the test with -Werror and bail out if it fails. This
137 # makes warning-generating-errors in configure test code
138 # obvious to developers.
139 if test "$werror" != "yes"; then
140 return 0
141 fi
142 # Don't bother rerunning the compile if we were already using -Werror
143 case "$*" in
144 *-Werror*)
145 return 0
146 ;;
147 esac
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000148 echo $compiler -Werror "$@" >> config.log
149 $compiler -Werror "$@" >> config.log 2>&1 && return $?
Peter Maydell76ad07a2013-04-08 12:11:26 +0100150 error_exit "configure test passed without -Werror but failed with -Werror." \
151 "This is probably a bug in the configure script. The failing command" \
152 "will be at the bottom of config.log." \
153 "You can run configure with --disable-werror to bypass this check."
Peter Maydell8dc38a72012-07-18 15:10:28 +0100154}
155
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000156do_cc() {
Paolo Bonzinicd362de2022-05-27 16:35:48 +0100157 do_compiler_werror "$cc" $CPU_CFLAGS "$@"
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000158}
159
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +0100160do_objc() {
Paolo Bonzinicd362de2022-05-27 16:35:48 +0100161 do_compiler_werror "$objcc" $CPU_CFLAGS "$@"
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +0100162}
163
Richard Henderson00849b92020-06-17 13:13:06 -0700164# Append $2 to the variable named $1, with space separation
165add_to() {
166 eval $1=\${$1:+\"\$$1 \"}\$2
167}
168
Juan Quintela52166aa2009-08-03 14:46:03 +0200169compile_object() {
John Snowfd0e6052015-03-25 18:57:39 -0400170 local_cflags="$1"
Paolo Bonzinia2866662021-11-05 10:09:26 +0100171 do_cc $CFLAGS $EXTRA_CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -c -o $TMPO $TMPC
Juan Quintela52166aa2009-08-03 14:46:03 +0200172}
173
174compile_prog() {
175 local_cflags="$1"
176 local_ldflags="$2"
Paolo Bonzinia2866662021-11-05 10:09:26 +0100177 do_cc $CFLAGS $EXTRA_CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC \
178 $LDFLAGS $EXTRA_LDFLAGS $CONFIGURE_LDFLAGS $QEMU_LDFLAGS $local_ldflags
Juan Quintela52166aa2009-08-03 14:46:03 +0200179}
180
Paolo Bonzini11568d62010-12-23 11:43:58 +0100181# symbolically link $1 to $2. Portable version of "ln -sf".
182symlink() {
Stefan Weil72b8b5a2012-03-19 13:20:47 +0100183 rm -rf "$2"
Anthony Liguoriec5b06d2012-06-06 16:57:00 +0800184 mkdir -p "$(dirname "$2")"
Stefan Weil72b8b5a2012-03-19 13:20:47 +0100185 ln -s "$1" "$2"
Paolo Bonzini11568d62010-12-23 11:43:58 +0100186}
187
Loïc Minier0dba6192010-01-28 21:26:51 +0000188# check whether a command is available to this shell (may be either an
189# executable or a builtin)
190has() {
191 type "$1" >/dev/null 2>&1
192}
193
Marc-André Lureau0a01d762019-08-21 11:21:16 +0400194version_ge () {
Alex Bennée2df52b92021-02-02 13:39:52 +0000195 local_ver1=$(expr "$1" : '\([0-9.]*\)' | tr . ' ')
196 local_ver2=$(echo "$2" | tr . ' ')
Marc-André Lureau0a01d762019-08-21 11:21:16 +0400197 while true; do
198 set x $local_ver1
199 local_first=${2-0}
Stefano Garzarellac44a33e2020-08-21 22:35:58 +0200200 # 'shift 2' if $2 is set, or 'shift' if $2 is not set
201 shift ${2:+2}
Marc-André Lureau0a01d762019-08-21 11:21:16 +0400202 local_ver1=$*
203 set x $local_ver2
204 # the second argument finished, the first must be greater or equal
205 test $# = 1 && return 0
206 test $local_first -lt $2 && return 1
207 test $local_first -gt $2 && return 0
Stefano Garzarellac44a33e2020-08-21 22:35:58 +0200208 shift ${2:+2}
Marc-André Lureau0a01d762019-08-21 11:21:16 +0400209 local_ver2=$*
210 done
211}
212
Paolo Bonzini3b6b7552012-09-17 11:59:41 +0200213glob() {
214 eval test -z '"${1#'"$2"'}"'
215}
216
Antonio Ospite4ace32e2019-05-26 16:47:47 +0200217if printf %s\\n "$source_path" "$PWD" | grep -q "[[:space:]:]";
218then
219 error_exit "main directory cannot contain spaces nor colons"
220fi
221
Antonio Ospite14211822019-05-26 16:47:46 +0200222# default parameters
Juan Quintela2ff6b912009-08-03 14:45:55 +0200223cpu=""
bellard43ce4df2003-06-09 19:53:12 +0000224static="no"
Joelle van Dyne3812c0c2021-01-25 17:24:48 -0800225cross_compile="no"
bellard7d132992003-03-06 23:23:54 +0000226cross_prefix=""
Peter Maydelle49d0212012-12-07 15:39:13 +0000227host_cc="cc"
Steven Noonan63678e12014-03-28 17:19:02 +0100228stack_protector=""
Daniele Buono1e4f6062020-05-29 16:51:21 -0400229safe_stack=""
Alex Bennéeafc3a8f2019-11-28 16:35:24 +0100230use_containers="yes"
Alex Bennéef2385392020-04-30 20:01:14 +0100231gdb_bin=$(command -v "gdb-multiarch" || command -v "gdb")
aliguoriac0df512008-12-29 17:14:15 +0000232
Daniel P. Berrange92712822017-09-29 11:11:58 +0100233if test -e "$source_path/.git"
234then
Dan Streetman7d7dbf92021-01-19 12:20:46 -0500235 git_submodules_action="update"
Daniel P. Berrange92712822017-09-29 11:11:58 +0100236else
Dan Streetman7d7dbf92021-01-19 12:20:46 -0500237 git_submodules_action="ignore"
Daniel P. Berrange92712822017-09-29 11:11:58 +0100238fi
Paolo Bonzini2d652f22021-05-12 09:21:56 +0200239
240git_submodules="ui/keycodemapdb"
Daniel P. Berrangecc84d632017-10-20 15:02:43 +0100241git="git"
aliguoriac0df512008-12-29 17:14:15 +0000242
Stefan Weilafb63eb2012-09-26 22:04:38 +0200243# Don't accept a target_list environment variable.
244unset target_list
Alex Bennée447e1332019-03-19 11:59:12 +0000245unset target_list_exclude
Paolo Bonzini377529c2010-12-23 11:43:50 +0100246
247# Default value for a variable defining feature "foo".
248# * foo="no" feature will only be used if --enable-foo arg is given
249# * foo="" feature will be searched for, and if found, will be used
250# unless --disable-foo is given
251# * foo="yes" this value will only be set by --enable-foo flag.
252# feature will searched for,
253# if not found, configure exits with error
254#
255# Always add --enable-foo and --disable-foo command line args.
256# Distributions want to ensure that several features are compiled in, and it
257# is impossible without a --enable-foo that exits if a feature is not found.
258
Alex Bennéec87ea112020-12-10 19:04:13 +0000259default_feature=""
260# parse CC options second
261for opt do
262 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
263 case "$opt" in
264 --without-default-features)
265 default_feature="no"
266 ;;
267 esac
268done
269
Paolo Bonzinia2866662021-11-05 10:09:26 +0100270EXTRA_CFLAGS=""
271EXTRA_CXXFLAGS=""
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +0100272EXTRA_OBJCFLAGS=""
Paolo Bonzinia2866662021-11-05 10:09:26 +0100273EXTRA_LDFLAGS=""
274
Paolo Bonzini377529c2010-12-23 11:43:50 +0100275debug_tcg="no"
Marc-André Lureau247724c2018-01-16 16:11:51 +0100276sanitizers="no"
Lingfeng Yang0aebab02020-06-12 20:02:23 +0100277tsan="no"
Michael Tokarev1f3f2bf2022-04-22 13:08:25 +0300278fortify_source="yes"
Miroslav Rezaninac7328272021-03-31 10:18:45 +0200279EXESUF=""
Fam Zheng17969262014-02-10 14:48:56 +0800280modules="no"
Paolo Bonzini377529c2010-12-23 11:43:50 +0100281prefix="/usr/local"
Marc-André Lureau10ff82d2020-08-26 15:04:13 +0400282qemu_suffix="qemu"
Paolo Bonzini377529c2010-12-23 11:43:50 +0100283softmmu="yes"
Paolo Bonzinib915a2f2021-11-09 10:10:41 +0100284linux_user=""
285bsd_user=""
Avi Kivity40d64442011-11-15 20:12:17 +0200286pie=""
Alex Barcelo519175a2012-02-28 12:25:50 +0100287coroutine=""
Alex Bennéeba4dd2a2021-07-09 15:29:57 +0100288plugins="$default_feature"
Paolo Bonzinia5665052019-06-10 12:05:14 +0200289meson=""
Paolo Bonzini48328882020-08-26 08:04:15 +0200290ninja=""
Paolo Bonzinic09c1ce2022-04-20 17:33:57 +0200291bindir="bin"
Paolo Bonzinia5665052019-06-10 12:05:14 +0200292skip_meson=no
Jagannathan Raman55116962022-06-13 16:26:24 -0400293vfio_user_server="disabled"
Paolo Bonzini377529c2010-12-23 11:43:50 +0100294
Paolo Bonzini3b4da132021-10-07 15:08:29 +0200295# The following Meson options are handled manually (still they
296# are included in the automatically generated help message)
297
298# 1. Track which submodules are needed
Paolo Bonzini3b4da132021-10-07 15:08:29 +0200299fdt="auto"
Paolo Bonzini3b4da132021-10-07 15:08:29 +0200300
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200301# 2. Automatically enable/disable other options
Philippe Mathieu-Daudé76301562022-02-04 15:54:47 +0100302tcg="auto"
Paolo Bonzini3b4da132021-10-07 15:08:29 +0200303cfi="false"
304
Alex Bennéec87ea112020-12-10 19:04:13 +0000305# parse CC options second
aliguoriac0df512008-12-29 17:14:15 +0000306for opt do
Stefan Weil89138852016-05-16 15:10:20 +0200307 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
aliguoriac0df512008-12-29 17:14:15 +0000308 case "$opt" in
309 --cross-prefix=*) cross_prefix="$optarg"
Joelle van Dyne3812c0c2021-01-25 17:24:48 -0800310 cross_compile="yes"
aliguoriac0df512008-12-29 17:14:15 +0000311 ;;
Paolo Bonzini3d8df642010-12-23 11:43:48 +0100312 --cc=*) CC="$optarg"
aliguoriac0df512008-12-29 17:14:15 +0000313 ;;
Tomoki Sekiyama83f73fc2013-08-07 11:39:36 -0400314 --cxx=*) CXX="$optarg"
315 ;;
Juan Quintela2ff6b912009-08-03 14:45:55 +0200316 --cpu=*) cpu="$optarg"
317 ;;
Paolo Bonzinia2866662021-11-05 10:09:26 +0100318 --extra-cflags=*)
319 EXTRA_CFLAGS="$EXTRA_CFLAGS $optarg"
320 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS $optarg"
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +0100321 EXTRA_OBJCFLAGS="$EXTRA_OBJCFLAGS $optarg"
Paolo Bonzinia2866662021-11-05 10:09:26 +0100322 ;;
323 --extra-cxxflags=*) EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS $optarg"
Juan Quintelae2a2ed02009-08-03 14:46:02 +0200324 ;;
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +0100325 --extra-objcflags=*) EXTRA_OBJCFLAGS="$EXTRA_OBJCFLAGS $optarg"
326 ;;
Paolo Bonzinia2866662021-11-05 10:09:26 +0100327 --extra-ldflags=*) EXTRA_LDFLAGS="$EXTRA_LDFLAGS $optarg"
Juan Quintelae2a2ed02009-08-03 14:46:02 +0200328 ;;
Alex Bennéed75402b2018-04-04 20:27:05 +0100329 --cross-cc-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-cc-FOO option"
330 ;;
Matheus Ferst479ca4c2022-01-20 14:31:41 -0300331 --cross-cc-cflags-*) cc_arch=${opt#--cross-cc-cflags-}; cc_arch=${cc_arch%%=*}
Alex Bennéed422b2b2018-04-13 11:07:58 +0100332 eval "cross_cc_cflags_${cc_arch}=\$optarg"
333 ;;
Alex Bennéed75402b2018-04-04 20:27:05 +0100334 --cross-cc-*) cc_arch=${opt#--cross-cc-}; cc_arch=${cc_arch%%=*}
335 eval "cross_cc_${cc_arch}=\$optarg"
336 ;;
Paolo Bonzini5adb43b2022-05-27 16:35:51 +0100337 --cross-prefix-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-prefix-FOO option"
338 ;;
339 --cross-prefix-*) cc_arch=${opt#--cross-prefix-}; cc_arch=${cc_arch%%=*}
340 eval "cross_prefix_${cc_arch}=\$optarg"
341 ;;
aliguoriac0df512008-12-29 17:14:15 +0000342 esac
343done
aliguoriac0df512008-12-29 17:14:15 +0000344# OS specific
345# Using uname is really, really broken. Once we have the right set of checks
Stefan Weil93148aa2012-02-26 18:46:12 +0100346# we can eliminate its usage altogether.
aliguoriac0df512008-12-29 17:14:15 +0000347
Peter Maydelle49d0212012-12-07 15:39:13 +0000348# Preferred compiler:
349# ${CC} (if set)
350# ${cross_prefix}gcc (if cross-prefix specified)
351# system compiler
352if test -z "${CC}${cross_prefix}"; then
353 cc="$host_cc"
354else
355 cc="${CC-${cross_prefix}gcc}"
356fi
357
Tomoki Sekiyama83f73fc2013-08-07 11:39:36 -0400358if test -z "${CXX}${cross_prefix}"; then
359 cxx="c++"
360else
361 cxx="${CXX-${cross_prefix}g++}"
362fi
363
Stuart Yoderb3198cc2011-08-04 17:10:08 -0500364ar="${AR-${cross_prefix}ar}"
Richard Hendersoncdbd7272016-07-07 21:49:36 -0700365as="${AS-${cross_prefix}as}"
Richard Henderson5f6f0e22016-06-23 10:39:18 -0700366ccas="${CCAS-$cc}"
Stuart Yoderb3198cc2011-08-04 17:10:08 -0500367objcopy="${OBJCOPY-${cross_prefix}objcopy}"
368ld="${LD-${cross_prefix}ld}"
Alistair Francis9f81aeb2017-11-07 17:10:46 -0800369ranlib="${RANLIB-${cross_prefix}ranlib}"
Stefan Weil4852ee92014-09-18 21:55:08 +0200370nm="${NM-${cross_prefix}nm}"
Paolo Bonzini35acbb32021-10-13 13:43:36 +0200371smbd="$SMBD"
Stuart Yoderb3198cc2011-08-04 17:10:08 -0500372strip="${STRIP-${cross_prefix}strip}"
Konstantin Kostiuk158bb222022-04-28 21:15:25 +0300373widl="${WIDL-${cross_prefix}widl}"
Stuart Yoderb3198cc2011-08-04 17:10:08 -0500374windres="${WINDRES-${cross_prefix}windres}"
Sergei Trofimovich17884d72012-01-31 22:03:45 +0300375pkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}"
376query_pkg_config() {
377 "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@"
378}
379pkg_config=query_pkg_config
Dave Airlie47c03742013-12-10 14:05:51 +1000380sdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}"
aliguoriac0df512008-12-29 17:14:15 +0000381
Michael S. Tsirkinbe17dc92009-11-11 13:50:09 +0200382# default flags for all hosts
Peter Maydell2d315152016-09-12 14:10:08 +0100383# We use -fwrapv to tell the compiler that we require a C dialect where
384# left shift of signed integers is well defined and has the expected
385# 2s-complement style results. (Both clang and gcc agree that it
386# provides these semantics.)
Paolo Bonzinide38c0c2021-11-08 08:58:23 +0100387QEMU_CFLAGS="-fno-strict-aliasing -fno-common -fwrapv"
Paolo Bonzini086d5f72020-02-03 15:22:17 +0100388QEMU_CFLAGS="-Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
Kevin Wolfc95e3082013-02-22 21:08:51 +0100389QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
Michael S. Tsirkinbe17dc92009-11-11 13:50:09 +0200390QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
Paolo Bonzini5770e8a2020-09-23 05:26:15 -0400391
Paolo Bonzinide38c0c2021-11-08 08:58:23 +0100392QEMU_LDFLAGS=
393
Paolo Bonzini5770e8a2020-09-23 05:26:15 -0400394# Flags that are needed during configure but later taken care of by Meson
Richard Henderson8a9d3d52021-06-14 16:31:36 -0700395CONFIGURE_CFLAGS="-std=gnu11 -Wall"
Paolo Bonzini5770e8a2020-09-23 05:26:15 -0400396CONFIGURE_LDFLAGS=
Paolo Bonzini086d5f72020-02-03 15:22:17 +0100397
Michael S. Tsirkinbe17dc92009-11-11 13:50:09 +0200398
aliguoriac0df512008-12-29 17:14:15 +0000399check_define() {
400cat > $TMPC <<EOF
401#if !defined($1)
Peter Maydellfd786e12011-11-23 17:26:43 +0000402#error $1 not defined
aliguoriac0df512008-12-29 17:14:15 +0000403#endif
404int main(void) { return 0; }
405EOF
Juan Quintela52166aa2009-08-03 14:46:03 +0200406 compile_object
aliguoriac0df512008-12-29 17:14:15 +0000407}
408
Gerd Hoffmann307119e2015-06-10 09:07:35 +0200409check_include() {
410cat > $TMPC <<EOF
411#include <$1>
412int main(void) { return 0; }
413EOF
414 compile_object
415}
416
John Snow93b25862015-03-25 18:57:37 -0400417write_c_skeleton() {
418 cat > $TMPC <<EOF
419int main(void) { return 0; }
420EOF
421}
422
Peter Maydellbbea4052012-08-14 15:35:34 +0100423if check_define __linux__ ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100424 targetos=linux
Peter Maydellbbea4052012-08-14 15:35:34 +0100425elif check_define _WIN32 ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100426 targetos=windows
Peter Maydellbbea4052012-08-14 15:35:34 +0100427elif check_define __OpenBSD__ ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100428 targetos=openbsd
Peter Maydellbbea4052012-08-14 15:35:34 +0100429elif check_define __sun__ ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100430 targetos=sunos
Peter Maydellbbea4052012-08-14 15:35:34 +0100431elif check_define __HAIKU__ ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100432 targetos=haiku
Peter Maydell951fedf2017-07-13 16:15:32 +0100433elif check_define __FreeBSD__ ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100434 targetos=freebsd
Peter Maydell951fedf2017-07-13 16:15:32 +0100435elif check_define __FreeBSD_kernel__ && check_define __GLIBC__; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100436 targetos=gnu/kfreebsd
Peter Maydell951fedf2017-07-13 16:15:32 +0100437elif check_define __DragonFly__ ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100438 targetos=dragonfly
Peter Maydell951fedf2017-07-13 16:15:32 +0100439elif check_define __NetBSD__; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100440 targetos=netbsd
Peter Maydell951fedf2017-07-13 16:15:32 +0100441elif check_define __APPLE__; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100442 targetos=darwin
Peter Maydellbbea4052012-08-14 15:35:34 +0100443else
Peter Maydell951fedf2017-07-13 16:15:32 +0100444 # This is a fatal error, but don't report it yet, because we
445 # might be going to just print the --help text, or it might
446 # be the result of a missing compiler.
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100447 targetos=bogus
Peter Maydellbbea4052012-08-14 15:35:34 +0100448fi
449
Paolo Bonzini65eff012021-11-08 22:52:35 +0100450# OS specific
451
Paolo Bonzini3b0d8642021-10-13 14:14:53 +0200452mingw32="no"
453bsd="no"
454linux="no"
455solaris="no"
Peter Maydellbbea4052012-08-14 15:35:34 +0100456case $targetos in
Paolo Bonzini65eff012021-11-08 22:52:35 +0100457windows)
458 mingw32="yes"
459 plugins="no"
460 pie="no"
461;;
462gnu/kfreebsd)
463 bsd="yes"
464;;
465freebsd)
466 bsd="yes"
Paolo Bonzini65eff012021-11-08 22:52:35 +0100467 make="${MAKE-gmake}"
468 # needed for kinfo_getvmmap(3) in libutil.h
469;;
470dragonfly)
471 bsd="yes"
472 make="${MAKE-gmake}"
473;;
474netbsd)
475 bsd="yes"
476 make="${MAKE-gmake}"
477;;
478openbsd)
479 bsd="yes"
480 make="${MAKE-gmake}"
481;;
482darwin)
483 bsd="yes"
484 darwin="yes"
485 # Disable attempts to use ObjectiveC features in os/object.h since they
486 # won't work when we're compiling with gcc as a C compiler.
487 QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS"
488;;
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100489sunos)
Paolo Bonzini65eff012021-11-08 22:52:35 +0100490 solaris="yes"
491 make="${MAKE-gmake}"
Paolo Bonzini65eff012021-11-08 22:52:35 +0100492# needed for CMSG_ macros in sys/socket.h
493 QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
494# needed for TIOCWIN* defines in termios.h
495 QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
Stefan Weil89138852016-05-16 15:10:20 +0200496 # $(uname -m) returns i86pc even on an x86_64 box, so default based on isainfo
Paolo Bonzini65eff012021-11-08 22:52:35 +0100497 # Note that this check is broken for cross-compilation: if you're
498 # cross-compiling to one of these OSes then you'll need to specify
499 # the correct CPU with the --cpu option.
Peter Maydellbbea4052012-08-14 15:35:34 +0100500 if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
501 cpu="x86_64"
502 fi
Paolo Bonzini65eff012021-11-08 22:52:35 +0100503;;
504haiku)
505 pie="no"
506 QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS -D_BSD_SOURCE -fPIC $QEMU_CFLAGS"
507;;
508linux)
509 linux="yes"
Paolo Bonzini65eff012021-11-08 22:52:35 +0100510;;
Peter Maydellbbea4052012-08-14 15:35:34 +0100511esac
512
Juan Quintela2ff6b912009-08-03 14:45:55 +0200513if test ! -z "$cpu" ; then
514 # command line argument
515 :
516elif check_define __i386__ ; then
aliguoriac0df512008-12-29 17:14:15 +0000517 cpu="i386"
518elif check_define __x86_64__ ; then
Richard Hendersonc72b26e2013-08-20 12:20:05 -0700519 if check_define __ILP32__ ; then
520 cpu="x32"
521 else
522 cpu="x86_64"
523 fi
blueswir13aa9bd62008-12-31 16:55:26 +0000524elif check_define __sparc__ ; then
blueswir13aa9bd62008-12-31 16:55:26 +0000525 if check_define __arch64__ ; then
526 cpu="sparc64"
527 else
528 cpu="sparc"
529 fi
malcfdf7ed92009-01-14 18:39:52 +0000530elif check_define _ARCH_PPC ; then
531 if check_define _ARCH_PPC64 ; then
Richard Hendersonf8378ac2019-05-01 15:38:18 -0700532 if check_define _LITTLE_ENDIAN ; then
533 cpu="ppc64le"
534 else
535 cpu="ppc64"
536 fi
malcfdf7ed92009-01-14 18:39:52 +0000537 else
538 cpu="ppc"
539 fi
Aurelien Jarnoafa05232009-10-17 14:17:47 +0200540elif check_define __mips__ ; then
541 cpu="mips"
Aurelien Jarnod66ed0e2010-06-13 12:28:21 +0200542elif check_define __s390__ ; then
543 if check_define __s390x__ ; then
544 cpu="s390x"
545 else
546 cpu="s390"
547 fi
Alistair Francisc4f80542018-12-19 19:20:19 +0000548elif check_define __riscv ; then
Richard Hendersonba0e7332021-09-17 11:08:09 -0700549 cpu="riscv"
Peter Maydell21d89f82011-11-30 10:57:48 +0100550elif check_define __arm__ ; then
551 cpu="arm"
Claudio Fontana1f080312013-06-12 16:20:23 +0100552elif check_define __aarch64__ ; then
553 cpu="aarch64"
WANG Xueruidfcf9002021-12-21 13:41:04 +0800554elif check_define __loongarch64 ; then
555 cpu="loongarch64"
aliguoriac0df512008-12-29 17:14:15 +0000556else
Stefan Weil89138852016-05-16 15:10:20 +0200557 cpu=$(uname -m)
aliguoriac0df512008-12-29 17:14:15 +0000558fi
559
Paolo Bonzini823eb012021-11-08 14:18:17 +0100560# Normalise host CPU name, set multilib cflags
Peter Maydell359bc952011-12-24 13:07:25 +0000561# Note that this case should only have supported host CPUs, not guests.
bellard7d132992003-03-06 23:23:54 +0000562case "$cpu" in
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100563 armv*b|armv*l|arm)
564 cpu="arm" ;;
565
bellard7d132992003-03-06 23:23:54 +0000566 i386|i486|i586|i686|i86pc|BePC)
bellard97a847b2003-08-10 21:36:04 +0000567 cpu="i386"
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100568 CPU_CFLAGS="-m32" ;;
569 x32)
Paolo Bonzini4da270b2021-11-09 09:36:10 +0100570 cpu="x86_64"
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100571 CPU_CFLAGS="-mx32" ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000572 x86_64|amd64)
573 cpu="x86_64"
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100574 # ??? Only extremely old AMD cpus do not have cmpxchg16b.
575 # If we truly care, we should simply detect this case at
576 # runtime and generate the fallback to serial emulation.
577 CPU_CFLAGS="-m64 -mcx16" ;;
578
Aurelien Jarnoafa05232009-10-17 14:17:47 +0200579 mips*)
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100580 cpu="mips" ;;
581
582 ppc)
583 CPU_CFLAGS="-m32" ;;
584 ppc64)
Miroslav Rezaninaced5cff2022-03-05 07:16:46 +0100585 CPU_CFLAGS="-m64 -mbig-endian" ;;
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100586 ppc64le)
Paolo Bonzinid8ff8922021-11-09 09:18:20 +0100587 cpu="ppc64"
Miroslav Rezaninaced5cff2022-03-05 07:16:46 +0100588 CPU_CFLAGS="-m64 -mlittle-endian" ;;
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100589
590 s390)
Paolo Bonzini823eb012021-11-08 14:18:17 +0100591 CPU_CFLAGS="-m31" ;;
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100592 s390x)
593 CPU_CFLAGS="-m64" ;;
594
blueswir131422552007-04-16 18:27:06 +0000595 sparc|sun4[cdmuv])
bellardae228532003-05-13 18:59:59 +0000596 cpu="sparc"
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100597 CPU_CFLAGS="-m32 -mv8plus -mcpu=ultrasparc" ;;
598 sparc64)
599 CPU_CFLAGS="-m64 -mcpu=ultrasparc" ;;
bellard7d132992003-03-06 23:23:54 +0000600esac
Juan Quintelae2d52ad2009-08-12 18:20:24 +0200601
Paolo Bonzini0db4a062010-12-23 11:43:49 +0100602: ${make=${MAKE-make}}
Paolo Bonzinib6daf4d2020-09-01 06:38:04 -0400603
Daniel P. Berrangéfaf44142019-03-27 17:07:01 +0000604# We prefer python 3.x. A bare 'python' is traditionally
605# python 2.x, but some distros have it as python 3.x, so
Eduardo Habkostddf90692019-10-16 19:42:37 -0300606# we check that too
Daniel P. Berrangéfaf44142019-03-27 17:07:01 +0000607python=
Marc-André Lureau0a01d762019-08-21 11:21:16 +0400608explicit_python=no
Eduardo Habkostddf90692019-10-16 19:42:37 -0300609for binary in "${PYTHON-python3}" python
Daniel P. Berrangéfaf44142019-03-27 17:07:01 +0000610do
611 if has "$binary"
612 then
Paolo Bonzini95c5f2d2019-06-10 12:03:44 +0200613 python=$(command -v "$binary")
Daniel P. Berrangéfaf44142019-03-27 17:07:01 +0000614 break
615 fi
616done
Markus Armbruster903458c2020-02-14 18:18:41 +0100617
Markus Armbruster903458c2020-02-14 18:18:41 +0100618
Alex Bennée39d87c82020-03-03 15:06:20 +0000619# Check for ancillary tools used in testing
620genisoimage=
Alex Bennée3df437c2020-05-19 09:22:48 -0400621for binary in genisoimage mkisofs
Alex Bennée39d87c82020-03-03 15:06:20 +0000622do
623 if has $binary
624 then
625 genisoimage=$(command -v "$binary")
626 break
627 fi
628done
629
Peter Maydell3c4a4d02012-08-11 22:34:40 +0100630# Default objcc to clang if available, otherwise use CC
631if has clang; then
632 objcc=clang
633else
634 objcc="$cc"
635fi
636
Juan Quintela3457a3f2009-08-03 14:46:07 +0200637if test "$mingw32" = "yes" ; then
Juan Quintela3457a3f2009-08-03 14:46:07 +0200638 EXESUF=".exe"
Stefan Weil78e9d4a2015-11-26 12:13:12 +0100639 # MinGW needs -mthreads for TLS and macro _MT.
Paolo Bonzini5770e8a2020-09-23 05:26:15 -0400640 CONFIGURE_CFLAGS="-mthreads $CONFIGURE_CFLAGS"
John Snow93b25862015-03-25 18:57:37 -0400641 write_c_skeleton;
Paolo Bonzinid17f3052020-08-18 12:17:01 +0200642 prefix="/qemu"
Paolo Bonzinic09c1ce2022-04-20 17:33:57 +0200643 bindir=""
Marc-André Lureau77433a52020-08-26 15:04:12 +0400644 qemu_suffix=""
Juan Quintela3457a3f2009-08-03 14:46:07 +0200645fi
646
Anthony Liguori487fefd2009-06-11 13:28:25 -0500647werror=""
bellard85aa5182007-11-11 20:17:03 +0000648
Akihiko Odaki8154f5e2022-06-25 00:40:42 +0900649meson_option_build_array() {
650 printf '['
Peter Maydellc5cfdab2022-07-20 16:26:31 +0100651 (if test "$targetos" = windows; then
Akihiko Odaki8154f5e2022-06-25 00:40:42 +0900652 IFS=\;
653 else
654 IFS=:
655 fi
656 for e in $1; do
Peter Maydell65842b02022-07-20 16:26:29 +0100657 printf '"""'
658 # backslash escape any '\' and '"' characters
659 printf "%s" "$e" | sed -e 's/\([\"]\)/\\\1/g'
660 printf '""",'
Akihiko Odaki8154f5e2022-06-25 00:40:42 +0900661 done)
662 printf ']\n'
663}
664
Peter Maydell64708612022-08-25 16:06:59 +0100665. "$source_path/scripts/meson-buildoptions.sh"
Paolo Bonzini61d63092021-10-07 15:08:28 +0200666
667meson_options=
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200668meson_option_add() {
669 meson_options="$meson_options $(quote_sh "$1")"
670}
Paolo Bonzini61d63092021-10-07 15:08:28 +0200671meson_option_parse() {
672 meson_options="$meson_options $(_meson_option_parse "$@")"
673 if test $? -eq 1; then
674 echo "ERROR: unknown option $1"
675 echo "Try '$0 --help' for more information"
676 exit 1
677 fi
678}
679
bellard7d132992003-03-06 23:23:54 +0000680for opt do
Stefan Weil89138852016-05-16 15:10:20 +0200681 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
bellard7d132992003-03-06 23:23:54 +0000682 case "$opt" in
bellard2efc3262005-12-18 19:14:49 +0000683 --help|-h) show_help=yes
684 ;;
Peter Maydell64708612022-08-25 16:06:59 +0100685 --version|-V) exec cat "$source_path/VERSION"
Mike Frysinger99123e12011-04-07 01:12:28 -0400686 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000687 --prefix=*) prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000688 ;;
aliguoriac0df512008-12-29 17:14:15 +0000689 --cross-prefix=*)
bellard7d132992003-03-06 23:23:54 +0000690 ;;
aliguoriac0df512008-12-29 17:14:15 +0000691 --cc=*)
bellard7d132992003-03-06 23:23:54 +0000692 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000693 --host-cc=*) host_cc="$optarg"
bellard83469012005-07-23 14:27:54 +0000694 ;;
Tomoki Sekiyama83f73fc2013-08-07 11:39:36 -0400695 --cxx=*)
696 ;;
Peter Maydell3c4a4d02012-08-11 22:34:40 +0100697 --objcc=*) objcc="$optarg"
698 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000699 --make=*) make="$optarg"
bellard7d132992003-03-06 23:23:54 +0000700 ;;
Paolo Bonzinib6daf4d2020-09-01 06:38:04 -0400701 --install=*)
pbrook6a882642006-04-17 13:57:12 +0000702 ;;
Marc-André Lureau0a01d762019-08-21 11:21:16 +0400703 --python=*) python="$optarg" ; explicit_python=yes
Blue Swirlc886edf2011-07-22 21:08:09 +0000704 ;;
Paolo Bonzinia5665052019-06-10 12:05:14 +0200705 --skip-meson) skip_meson=yes
706 ;;
707 --meson=*) meson="$optarg"
708 ;;
Paolo Bonzini48328882020-08-26 08:04:15 +0200709 --ninja=*) ninja="$optarg"
710 ;;
Brade2d88302011-09-02 16:53:28 -0400711 --smbd=*) smbd="$optarg"
712 ;;
Juan Quintelae2a2ed02009-08-03 14:46:02 +0200713 --extra-cflags=*)
bellard7d132992003-03-06 23:23:54 +0000714 ;;
Bruno Dominguez11cde1c2017-06-06 14:07:47 +0100715 --extra-cxxflags=*)
716 ;;
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +0100717 --extra-objcflags=*)
718 ;;
Juan Quintelae2a2ed02009-08-03 14:46:02 +0200719 --extra-ldflags=*)
bellard7d132992003-03-06 23:23:54 +0000720 ;;
Alex Bennéed75402b2018-04-04 20:27:05 +0100721 --cross-cc-*)
722 ;;
Paolo Bonzini5adb43b2022-05-27 16:35:51 +0100723 --cross-prefix-*)
724 ;;
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200725 --enable-debug-info) meson_option_add -Ddebug=true
Paolo Bonzini28609742022-04-20 17:33:39 +0200726 ;;
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200727 --disable-debug-info) meson_option_add -Ddebug=false
Paolo Bonzini28609742022-04-20 17:33:39 +0200728 ;;
Fam Zheng17969262014-02-10 14:48:56 +0800729 --enable-modules)
730 modules="yes"
731 ;;
Stefan Hajnoczi3aa88b32015-11-02 14:06:23 +0000732 --disable-modules)
733 modules="no"
734 ;;
Juan Quintela2ff6b912009-08-03 14:45:55 +0200735 --cpu=*)
bellard7d132992003-03-06 23:23:54 +0000736 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000737 --target-list=*) target_list="$optarg"
Alex Bennée447e1332019-03-19 11:59:12 +0000738 if test "$target_list_exclude"; then
739 error_exit "Can't mix --target-list with --target-list-exclude"
740 fi
741 ;;
742 --target-list-exclude=*) target_list_exclude="$optarg"
743 if test "$target_list"; then
744 error_exit "Can't mix --target-list-exclude with --target-list"
745 fi
bellardde83cd02003-06-15 20:25:43 +0000746 ;;
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200747 --with-default-devices) meson_option_add -Ddefault_devices=true
Paolo Bonzinif3494742019-01-23 14:56:17 +0800748 ;;
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200749 --without-default-devices) meson_option_add -Ddefault_devices=false
Paolo Bonzinif3494742019-01-23 14:56:17 +0800750 ;;
Alex Bennéed1d5e9e2021-07-07 14:17:44 +0100751 --with-devices-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --with-devices-FOO option"
752 ;;
753 --with-devices-*) device_arch=${opt#--with-devices-};
754 device_arch=${device_arch%%=*}
755 cf=$source_path/configs/devices/$device_arch-softmmu/$optarg.mak
756 if test -f "$cf"; then
757 device_archs="$device_archs $device_arch"
758 eval "devices_${device_arch}=\$optarg"
759 else
760 error_exit "File $cf does not exist"
761 fi
762 ;;
Alex Bennéec87ea112020-12-10 19:04:13 +0000763 --without-default-features) # processed above
764 ;;
Loïc Minier79427692010-01-31 12:23:45 +0100765 --static)
766 static="yes"
Sergei Trofimovich17884d72012-01-31 22:03:45 +0300767 QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS"
bellard43ce4df2003-06-09 19:53:12 +0000768 ;;
Paolo Bonzini0b24e752010-05-26 16:08:26 +0200769 --bindir=*) bindir="$optarg"
770 ;;
Marc-André Lureau77433a52020-08-26 15:04:12 +0400771 --with-suffix=*) qemu_suffix="$optarg"
Eduardo Habkost023d3d62012-04-18 16:55:50 -0300772 ;;
Olaf Hering181ce1d2018-04-18 09:50:44 +0200773 --host=*|--build=*|\
774 --disable-dependency-tracking|\
Luiz Capitulino785c23a2012-10-03 18:35:57 -0300775 --sbindir=*|--sharedstatedir=*|\
Paolo Bonzinife0038b2020-10-16 04:35:10 -0400776 --oldincludedir=*|--datarootdir=*|--infodir=*|\
Max Filippov023ddd72011-11-24 16:11:31 +0400777 --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*)
778 # These switches are silently ignored, for compatibility with
779 # autoconf-generated configure scripts. This allows QEMU's
780 # configure to be used by RPM and similar macros that set
781 # lots of directory switches by default.
782 ;;
aurel32f8393942009-04-13 18:45:38 +0000783 --enable-debug-tcg) debug_tcg="yes"
784 ;;
785 --disable-debug-tcg) debug_tcg="no"
786 ;;
Paul Brookf3d08ee2009-06-04 11:39:04 +0100787 --enable-debug)
788 # Enable debugging options that aren't excessively noisy
789 debug_tcg="yes"
Paolo Bonzinic55cf6a2021-10-13 11:46:09 +0200790 meson_option_parse --enable-debug-mutex ""
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200791 meson_option_add -Doptimization=0
John Snowb553a042015-11-03 15:43:42 -0500792 fortify_source="no"
Paul Brookf3d08ee2009-06-04 11:39:04 +0100793 ;;
Marc-André Lureau247724c2018-01-16 16:11:51 +0100794 --enable-sanitizers) sanitizers="yes"
795 ;;
796 --disable-sanitizers) sanitizers="no"
797 ;;
Lingfeng Yang0aebab02020-06-12 20:02:23 +0100798 --enable-tsan) tsan="yes"
799 ;;
800 --disable-tsan) tsan="no"
801 ;;
Paolo Bonzini1badb702020-09-18 04:57:25 -0400802 --disable-tcg) tcg="disabled"
Alex Bennéed1a14252021-07-09 15:29:54 +0100803 plugins="no"
Paolo Bonzinib3f6ea72017-07-03 16:59:07 +0200804 ;;
Paolo Bonzini1badb702020-09-18 04:57:25 -0400805 --enable-tcg) tcg="enabled"
Paolo Bonzinib3f6ea72017-07-03 16:59:07 +0200806 ;;
pbrookcad25d62006-03-19 16:31:11 +0000807 --disable-system) softmmu="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000808 ;;
pbrookcad25d62006-03-19 16:31:11 +0000809 --enable-system) softmmu="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000810 ;;
Zachary Amsden0953a802009-07-30 00:14:59 -1000811 --disable-user)
812 linux_user="no" ;
813 bsd_user="no" ;
Zachary Amsden0953a802009-07-30 00:14:59 -1000814 ;;
815 --enable-user) ;;
ths831b7822007-01-18 20:06:33 +0000816 --disable-linux-user) linux_user="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000817 ;;
ths831b7822007-01-18 20:06:33 +0000818 --enable-linux-user) linux_user="yes"
819 ;;
blueswir184778502008-10-26 20:33:16 +0000820 --disable-bsd-user) bsd_user="no"
821 ;;
822 --enable-bsd-user) bsd_user="yes"
823 ;;
Avi Kivity40d64442011-11-15 20:12:17 +0200824 --enable-pie) pie="yes"
Kirill A. Shutemov34005a02009-09-12 02:17:55 +0300825 ;;
Avi Kivity40d64442011-11-15 20:12:17 +0200826 --disable-pie) pie="no"
Kirill A. Shutemov34005a02009-09-12 02:17:55 +0300827 ;;
bellard85aa5182007-11-11 20:17:03 +0000828 --enable-werror) werror="yes"
829 ;;
830 --disable-werror) werror="no"
831 ;;
Steven Noonan63678e12014-03-28 17:19:02 +0100832 --enable-stack-protector) stack_protector="yes"
833 ;;
834 --disable-stack-protector) stack_protector="no"
835 ;;
Daniele Buono1e4f6062020-05-29 16:51:21 -0400836 --enable-safe-stack) safe_stack="yes"
837 ;;
838 --disable-safe-stack) safe_stack="no"
839 ;;
Daniele Buono9e62ba42020-12-04 18:06:14 -0500840 --enable-cfi)
841 cfi="true";
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200842 meson_option_add -Db_lto=true
Daniele Buono9e62ba42020-12-04 18:06:14 -0500843 ;;
844 --disable-cfi) cfi="false"
845 ;;
Paolo Bonzinifbb41212020-10-05 11:31:15 +0200846 --disable-fdt) fdt="disabled"
Juan Quintela2df87df2009-08-12 18:29:54 +0200847 ;;
Paolo Bonzinifbb41212020-10-05 11:31:15 +0200848 --enable-fdt) fdt="enabled"
849 ;;
850 --enable-fdt=git) fdt="internal"
851 ;;
Paolo Bonzini03a3c0b2021-10-07 15:08:27 +0200852 --enable-fdt=*) fdt="$optarg"
Juan Quintela2df87df2009-08-12 18:29:54 +0200853 ;;
Alex Barcelo519175a2012-02-28 12:25:50 +0100854 --with-coroutine=*) coroutine="$optarg"
855 ;;
Paolo Bonzini1ffb3bb2020-08-28 19:33:54 +0200856 --disable-zlib-test)
Alon Levy1ece9902011-07-26 12:30:40 +0300857 ;;
Fam Zheng52b53c02014-09-10 14:17:51 +0800858 --disable-virtio-blk-data-plane|--enable-virtio-blk-data-plane)
859 echo "$0: $opt is obsolete, virtio-blk data-plane is always on" >&2
Stefan Hajnoczi583f6e72012-11-14 15:04:15 +0100860 ;;
Fam Zhengcb6414d2016-09-21 12:27:16 +0800861 --enable-vhdx|--disable-vhdx)
862 echo "$0: $opt is obsolete, VHDX driver is always built" >&2
863 ;;
Fam Zheng315d3182016-09-21 12:27:21 +0800864 --enable-uuid|--disable-uuid)
865 echo "$0: $opt is obsolete, UUID support is always built" >&2
866 ;;
Daniel P. Berrangecc84d632017-10-20 15:02:43 +0100867 --with-git=*) git="$optarg"
868 ;;
Dan Streetman7d7dbf92021-01-19 12:20:46 -0500869 --with-git-submodules=*)
870 git_submodules_action="$optarg"
Daniel P. Berrangef62bbee2017-10-26 13:52:26 +0100871 ;;
Alex Bennée9b8e4292021-07-09 15:29:56 +0100872 --enable-plugins) if test "$mingw32" = "yes"; then
873 error_exit "TCG plugins not currently supported on Windows platforms"
874 else
875 plugins="yes"
876 fi
Alex Bennée40e8c6f2019-06-13 14:52:25 +0100877 ;;
878 --disable-plugins) plugins="no"
879 ;;
Alex Bennéeafc3a8f2019-11-28 16:35:24 +0100880 --enable-containers) use_containers="yes"
881 ;;
882 --disable-containers) use_containers="no"
883 ;;
Alex Bennéef48e5902020-03-16 17:21:48 +0000884 --gdb=*) gdb_bin="$optarg"
885 ;;
Paolo Bonzini3b4da132021-10-07 15:08:29 +0200886 # backwards compatibility options
887 --enable-trace-backend=*) meson_option_parse "--enable-trace-backends=$optarg" "$optarg"
888 ;;
889 --disable-blobs) meson_option_parse --disable-install-blobs ""
890 ;;
Jagannathan Raman55116962022-06-13 16:26:24 -0400891 --enable-vfio-user-server) vfio_user_server="enabled"
892 ;;
893 --disable-vfio-user-server) vfio_user_server="disabled"
894 ;;
Paolo Bonzini3b4da132021-10-07 15:08:29 +0200895 --enable-tcmalloc) meson_option_parse --enable-malloc=tcmalloc tcmalloc
896 ;;
897 --enable-jemalloc) meson_option_parse --enable-malloc=jemalloc jemalloc
898 ;;
899 # everything else has the same name in configure and meson
Paolo Bonzini4fda6012022-04-20 17:33:51 +0200900 --*) meson_option_parse "$opt" "$optarg"
balrog7f1559c2007-11-17 10:24:32 +0000901 ;;
bellard7d132992003-03-06 23:23:54 +0000902 esac
903done
904
Alex Bennéed1a14252021-07-09 15:29:54 +0100905# test for any invalid configuration combinations
906if test "$plugins" = "yes" -a "$tcg" = "disabled"; then
907 error_exit "Can't enable plugins on non-TCG builds"
908fi
909
Dan Streetman7d7dbf92021-01-19 12:20:46 -0500910case $git_submodules_action in
911 update|validate)
912 if test ! -e "$source_path/.git"; then
913 echo "ERROR: cannot $git_submodules_action git submodules without .git"
914 exit 1
915 fi
916 ;;
917 ignore)
Paolo Bonzinib80fd282021-05-12 09:18:55 +0200918 if ! test -f "$source_path/ui/keycodemapdb/README"
919 then
920 echo
921 echo "ERROR: missing GIT submodules"
922 echo
923 if test -e "$source_path/.git"; then
924 echo "--with-git-submodules=ignore specified but submodules were not"
925 echo "checked out. Please initialize and update submodules."
926 else
927 echo "This is not a GIT checkout but module content appears to"
928 echo "be missing. Do not use 'git archive' or GitHub download links"
929 echo "to acquire QEMU source archives. Non-GIT builds are only"
930 echo "supported with source archives linked from:"
931 echo
932 echo " https://www.qemu.org/download/#source"
933 echo
934 echo "Developers working with GIT can use scripts/archive-source.sh"
935 echo "if they need to create valid source archives."
936 fi
937 echo
938 exit 1
939 fi
Dan Streetman7d7dbf92021-01-19 12:20:46 -0500940 ;;
941 *)
942 echo "ERROR: invalid --with-git-submodules= value '$git_submodules_action'"
943 exit 1
944 ;;
945esac
946
Peter Maydell60e0df22011-05-03 14:50:13 +0100947default_target_list=""
Peter Maydell6e92f822013-05-20 16:16:15 +0100948mak_wilds=""
949
Paolo Bonzinib915a2f2021-11-09 10:10:41 +0100950if [ "$linux_user" != no ]; then
Peter Maydell64708612022-08-25 16:06:59 +0100951 if [ "$targetos" = linux ] && [ -d "$source_path/linux-user/include/host/$cpu" ]; then
Paolo Bonzinib915a2f2021-11-09 10:10:41 +0100952 linux_user=yes
953 elif [ "$linux_user" = yes ]; then
954 error_exit "linux-user not supported on this architecture"
955 fi
956fi
957if [ "$bsd_user" != no ]; then
958 if [ "$bsd_user" = "" ]; then
959 test $targetos = freebsd && bsd_user=yes
960 fi
Peter Maydell64708612022-08-25 16:06:59 +0100961 if [ "$bsd_user" = yes ] && ! [ -d "$source_path/bsd-user/$targetos" ]; then
Paolo Bonzinib915a2f2021-11-09 10:10:41 +0100962 error_exit "bsd-user not supported on this host OS"
963 fi
964fi
Peter Maydell6e92f822013-05-20 16:16:15 +0100965if [ "$softmmu" = "yes" ]; then
Alex Bennée812b31d2021-07-07 14:17:43 +0100966 mak_wilds="${mak_wilds} $source_path/configs/targets/*-softmmu.mak"
Peter Maydell60e0df22011-05-03 14:50:13 +0100967fi
Peter Maydell6e92f822013-05-20 16:16:15 +0100968if [ "$linux_user" = "yes" ]; then
Alex Bennée812b31d2021-07-07 14:17:43 +0100969 mak_wilds="${mak_wilds} $source_path/configs/targets/*-linux-user.mak"
Peter Maydell60e0df22011-05-03 14:50:13 +0100970fi
Peter Maydell6e92f822013-05-20 16:16:15 +0100971if [ "$bsd_user" = "yes" ]; then
Alex Bennée812b31d2021-07-07 14:17:43 +0100972 mak_wilds="${mak_wilds} $source_path/configs/targets/*-bsd-user.mak"
Peter Maydell60e0df22011-05-03 14:50:13 +0100973fi
974
Alex Bennée2d838d92020-09-09 12:27:37 +0100975for config in $mak_wilds; do
976 target="$(basename "$config" .mak)"
Alex Bennée98db9a02020-09-15 14:43:14 +0100977 if echo "$target_list_exclude" | grep -vq "$target"; then
Alex Bennée2d838d92020-09-09 12:27:37 +0100978 default_target_list="${default_target_list} $target"
979 fi
980done
Peter Maydell6e92f822013-05-20 16:16:15 +0100981
pbrookaf5db582006-04-08 14:26:41 +0000982if test x"$show_help" = x"yes" ; then
983cat << EOF
984
985Usage: configure [options]
986Options: [defaults in brackets after descriptions]
987
Stefan Weil08fb77e2013-12-18 22:09:39 +0100988Standard options:
989 --help print this message
990 --prefix=PREFIX install in PREFIX [$prefix]
Thomas Huth74154d72022-01-12 11:27:22 +0000991 --target-list=LIST set target list (default: build all)
Stefan Weil08fb77e2013-12-18 22:09:39 +0100992$(echo Available targets: $default_target_list | \
993 fold -s -w 53 | sed -e 's/^/ /')
Alex Bennée447e1332019-03-19 11:59:12 +0000994 --target-list-exclude=LIST exclude a set of targets from the default target-list
Stefan Weil08fb77e2013-12-18 22:09:39 +0100995
996Advanced options (experts only):
Joelle van Dyne3812c0c2021-01-25 17:24:48 -0800997 --cross-prefix=PREFIX use PREFIX for compile tools, PREFIX can be blank [$cross_prefix]
Stefan Weil08fb77e2013-12-18 22:09:39 +0100998 --cc=CC use C compiler CC [$cc]
Stefan Weil08fb77e2013-12-18 22:09:39 +0100999 --host-cc=CC use C compiler CC [$host_cc] for code run at
1000 build time
1001 --cxx=CXX use C++ compiler CXX [$cxx]
1002 --objcc=OBJCC use Objective-C compiler OBJCC [$objcc]
Paolo Bonzinia2866662021-11-05 10:09:26 +01001003 --extra-cflags=CFLAGS append extra C compiler flags CFLAGS
1004 --extra-cxxflags=CXXFLAGS append extra C++ compiler flags CXXFLAGS
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +01001005 --extra-objcflags=OBJCFLAGS append extra Objective C compiler flags OBJCFLAGS
Stefan Weil08fb77e2013-12-18 22:09:39 +01001006 --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS
Alex Bennéed75402b2018-04-04 20:27:05 +01001007 --cross-cc-ARCH=CC use compiler when building ARCH guest test cases
Matheus Ferst479ca4c2022-01-20 14:31:41 -03001008 --cross-cc-cflags-ARCH= use compiler flags when building ARCH guest tests
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001009 --cross-prefix-ARCH=PREFIX cross compiler prefix when building ARCH guest test cases
Stefan Weil08fb77e2013-12-18 22:09:39 +01001010 --make=MAKE use specified make [$make]
Stefan Weil08fb77e2013-12-18 22:09:39 +01001011 --python=PYTHON use specified python [$python]
Paolo Bonzinia5665052019-06-10 12:05:14 +02001012 --meson=MESON use specified meson [$meson]
Paolo Bonzini48328882020-08-26 08:04:15 +02001013 --ninja=NINJA use specified ninja [$ninja]
Stefan Weil08fb77e2013-12-18 22:09:39 +01001014 --smbd=SMBD use specified smbd [$smbd]
Thomas Huthdb1b5f12018-03-27 17:09:30 +02001015 --with-git=GIT use specified git [$git]
Dan Streetman7d7dbf92021-01-19 12:20:46 -05001016 --with-git-submodules=update update git submodules (default if .git dir exists)
1017 --with-git-submodules=validate fail if git submodules are not up to date
1018 --with-git-submodules=ignore do not update or check git submodules (default if no .git dir)
Stefan Weil08fb77e2013-12-18 22:09:39 +01001019 --static enable static build [$static]
Stefan Weil08fb77e2013-12-18 22:09:39 +01001020 --bindir=PATH install binaries in PATH
Marc-André Lureauca8c0902020-08-26 15:04:14 +04001021 --with-suffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir/docdir [$qemu_suffix]
Paolo Bonzinic035c8d2020-12-14 11:34:47 +01001022 --without-default-features default all --enable-* options to "disabled"
1023 --without-default-devices do not include any device that is not needed to
1024 start the emulator (only use if you are including
Alex Bennéed1d5e9e2021-07-07 14:17:44 +01001025 desired devices in configs/devices/)
1026 --with-devices-ARCH=NAME override default configs/devices
Stefan Weil08fb77e2013-12-18 22:09:39 +01001027 --enable-debug enable common debug build options
Marc-André Lureau247724c2018-01-16 16:11:51 +01001028 --enable-sanitizers enable default sanitizers
Lingfeng Yang0aebab02020-06-12 20:02:23 +01001029 --enable-tsan enable thread sanitizer
Stefan Weil08fb77e2013-12-18 22:09:39 +01001030 --disable-werror disable compilation abort on warning
Steven Noonan63678e12014-03-28 17:19:02 +01001031 --disable-stack-protector disable compiler-provided stack protection
Michael Tokarevc23f23b2015-06-17 22:19:26 +03001032 --cpu=CPU Build for host CPU [$cpu]
Stefan Weil08fb77e2013-12-18 22:09:39 +01001033 --with-coroutine=BACKEND coroutine backend. Supported options:
Daniel P. Berrange33c53c52017-04-28 13:24:44 +01001034 ucontext, sigaltstack, windows
Alex Bennée40e8c6f2019-06-13 14:52:25 +01001035 --enable-plugins
1036 enable plugins via shared library loading
Alex Bennéeafc3a8f2019-11-28 16:35:24 +01001037 --disable-containers don't use containers for cross-building
Alex Bennéef48e5902020-03-16 17:21:48 +00001038 --gdb=GDB-path gdb to use for gdbstub tests [$gdb_bin]
Paolo Bonzini61d63092021-10-07 15:08:28 +02001039EOF
1040 meson_options_help
1041cat << EOF
Michael Tokarevc23f23b2015-06-17 22:19:26 +03001042 system all system emulation targets
1043 user supported user emulation targets
1044 linux-user all linux usermode emulation targets
1045 bsd-user all BSD usermode emulation targets
Michael Tokarevc23f23b2015-06-17 22:19:26 +03001046 pie Position Independent Executables
Marc-André Lureau21e709a2019-07-18 16:04:13 +04001047 modules modules support (non-Windows)
Michael Tokarevc23f23b2015-06-17 22:19:26 +03001048 debug-tcg TCG debugging (default is disabled)
1049 debug-info debugging information
Daniele Buono1e4f6062020-05-29 16:51:21 -04001050 safe-stack SafeStack Stack Smash Protection. Depends on
1051 clang/llvm >= 3.7 and requires coroutine backend ucontext.
Stefan Weil08fb77e2013-12-18 22:09:39 +01001052
1053NOTE: The object files are built at the place where configure is launched
pbrookaf5db582006-04-08 14:26:41 +00001054EOF
Fam Zheng2d2ad6d2014-04-18 14:55:36 +08001055exit 0
pbrookaf5db582006-04-08 14:26:41 +00001056fi
1057
Thomas Huth9c790242019-03-11 11:20:34 +01001058# Remove old dependency files to make sure that they get properly regenerated
Peter Maydell002d8c12022-08-25 16:07:00 +01001059rm -f ./*/config-devices.mak.d
Thomas Huth9c790242019-03-11 11:20:34 +01001060
Daniel P. Berrangéfaf44142019-03-27 17:07:01 +00001061if test -z "$python"
1062then
1063 error_exit "Python not found. Use --python=/path/to/python"
Stefan Hajnoczic53eeaf2017-03-28 14:44:18 +01001064fi
Roman Bolshakov8e2c76b2020-08-25 23:27:55 +03001065if ! has "$make"
1066then
1067 error_exit "GNU make ($make) not found"
1068fi
Stefan Hajnoczic53eeaf2017-03-28 14:44:18 +01001069
1070# Note that if the Python conditional here evaluates True we will exit
1071# with status 1 which is a shell 'false' value.
Thomas Huth1b11f282020-09-25 16:40:27 +01001072if ! $python -c 'import sys; sys.exit(sys.version_info < (3,6))'; then
1073 error_exit "Cannot use '$python', Python >= 3.6 is required." \
Stefan Hajnoczic53eeaf2017-03-28 14:44:18 +01001074 "Use --python=/path/to/python to specify a supported Python."
1075fi
1076
1077# Suppress writing compiled files
1078python="$python -B"
1079
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001080if test -z "$meson"; then
Paolo Bonzini8a29c202021-12-23 15:29:56 +01001081 if test "$explicit_python" = no && has meson && version_ge "$(meson --version)" 0.61.5; then
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001082 meson=meson
Peter Maydell64708612022-08-25 16:06:59 +01001083 elif test "$git_submodules_action" != 'ignore' ; then
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001084 meson=git
1085 elif test -e "${source_path}/meson/meson.py" ; then
1086 meson=internal
1087 else
1088 if test "$explicit_python" = yes; then
1089 error_exit "--python requires using QEMU's embedded Meson distribution, but it was not found."
1090 else
1091 error_exit "Meson not found. Use --meson=/path/to/meson"
1092 fi
1093 fi
1094else
1095 # Meson uses its own Python interpreter to invoke other Python scripts,
1096 # but the user wants to use the one they specified with --python.
1097 #
1098 # We do not want to override the distro Python interpreter (and sometimes
1099 # cannot: for example in Homebrew /usr/bin/meson is a bash script), so
1100 # just require --meson=git|internal together with --python.
1101 if test "$explicit_python" = yes; then
1102 case "$meson" in
1103 git | internal) ;;
1104 *) error_exit "--python requires using QEMU's embedded Meson distribution." ;;
1105 esac
1106 fi
Paolo Bonzinia5665052019-06-10 12:05:14 +02001107fi
Paolo Bonzinia5665052019-06-10 12:05:14 +02001108
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001109if test "$meson" = git; then
1110 git_submodules="${git_submodules} meson"
Paolo Bonzinia5665052019-06-10 12:05:14 +02001111fi
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001112
1113case "$meson" in
1114 git | internal)
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001115 meson="$python ${source_path}/meson/meson.py"
1116 ;;
Paolo Bonzini84ec0c22020-09-04 10:00:26 -04001117 *) meson=$(command -v "$meson") ;;
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001118esac
1119
Paolo Bonzini09e93322020-08-13 09:28:11 -04001120# Probe for ninja
Paolo Bonzini48328882020-08-26 08:04:15 +02001121
1122if test -z "$ninja"; then
1123 for c in ninja ninja-build samu; do
1124 if has $c; then
1125 ninja=$(command -v "$c")
1126 break
1127 fi
1128 done
Paolo Bonzini09e93322020-08-13 09:28:11 -04001129 if test -z "$ninja"; then
1130 error_exit "Cannot find Ninja"
1131 fi
Paolo Bonzini48328882020-08-26 08:04:15 +02001132fi
Paolo Bonzinia5665052019-06-10 12:05:14 +02001133
Daniel Henrique Barboza9aae6e52017-11-02 07:09:06 -02001134# Check that the C compiler works. Doing this here before testing
1135# the host CPU ensures that we had a valid CC to autodetect the
1136# $cpu var (and we should bail right here if that's not the case).
1137# It also allows the help message to be printed without a CC.
1138write_c_skeleton;
1139if compile_object ; then
1140 : C compiler works ok
1141else
1142 error_exit "\"$cc\" either does not exist or does not work"
1143fi
1144if ! compile_prog ; then
1145 error_exit "\"$cc\" cannot build an executable (is your linker broken?)"
1146fi
1147
Peter Maydell9c83ffd2014-02-25 18:27:49 +00001148# Consult white-list to determine whether to enable werror
1149# by default. Only enable by default for git builds
Peter Maydell9c83ffd2014-02-25 18:27:49 +00001150if test -z "$werror" ; then
Dan Streetman7d7dbf92021-01-19 12:20:46 -05001151 if test "$git_submodules_action" != "ignore" && \
Eric Blakee633a5c2019-02-04 20:39:37 -06001152 { test "$linux" = "yes" || test "$mingw32" = "yes"; }; then
Peter Maydell9c83ffd2014-02-25 18:27:49 +00001153 werror="yes"
1154 else
1155 werror="no"
1156 fi
1157fi
1158
Paolo Bonzini975ff032020-11-20 10:34:10 +01001159if test "$targetos" = "bogus"; then
Peter Maydellfb59dab2017-03-28 14:01:52 +01001160 # Now that we know that we're not printing the help and that
1161 # the compiler works (so the results of the check_defines we used
1162 # to identify the OS are reliable), if we didn't recognize the
1163 # host OS we should stop now.
Peter Maydell951fedf2017-07-13 16:15:32 +01001164 error_exit "Unrecognized host OS (uname -s reports '$(uname -s)')"
Peter Maydellfb59dab2017-03-28 14:01:52 +01001165fi
1166
Thomas Huthefc6c072018-12-03 10:12:32 +01001167# Check whether the compiler matches our minimum requirements:
1168cat > $TMPC << EOF
1169#if defined(__clang_major__) && defined(__clang_minor__)
1170# ifdef __apple_build_version__
Daniel P. Berrangé2a85a082021-05-14 13:04:15 +01001171# if __clang_major__ < 10 || (__clang_major__ == 10 && __clang_minor__ < 0)
1172# error You need at least XCode Clang v10.0 to compile QEMU
Thomas Huthefc6c072018-12-03 10:12:32 +01001173# endif
1174# else
Daniel P. Berrangé2a85a082021-05-14 13:04:15 +01001175# if __clang_major__ < 6 || (__clang_major__ == 6 && __clang_minor__ < 0)
1176# error You need at least Clang v6.0 to compile QEMU
Thomas Huthefc6c072018-12-03 10:12:32 +01001177# endif
1178# endif
1179#elif defined(__GNUC__) && defined(__GNUC_MINOR__)
nia3830df52021-10-01 15:30:03 +00001180# if __GNUC__ < 7 || (__GNUC__ == 7 && __GNUC_MINOR__ < 4)
1181# error You need at least GCC v7.4.0 to compile QEMU
Thomas Huthefc6c072018-12-03 10:12:32 +01001182# endif
1183#else
1184# error You either need GCC or Clang to compiler QEMU
1185#endif
1186int main (void) { return 0; }
1187EOF
1188if ! compile_prog "" "" ; then
nia3830df52021-10-01 15:30:03 +00001189 error_exit "You need at least GCC v7.4 or Clang v6.0 (or XCode Clang v10.0)"
Thomas Huthefc6c072018-12-03 10:12:32 +01001190fi
1191
Richard Henderson00849b92020-06-17 13:13:06 -07001192# Accumulate -Wfoo and -Wno-bar separately.
1193# We will list all of the enable flags first, and the disable flags second.
1194# Note that we do not add -Werror, because that would enable it for all
1195# configure tests. If a configure test failed due to -Werror this would
1196# just silently disable some features, so it's too error prone.
1197
1198warn_flags=
1199add_to warn_flags -Wold-style-declaration
1200add_to warn_flags -Wold-style-definition
1201add_to warn_flags -Wtype-limits
1202add_to warn_flags -Wformat-security
1203add_to warn_flags -Wformat-y2k
1204add_to warn_flags -Winit-self
1205add_to warn_flags -Wignored-qualifiers
1206add_to warn_flags -Wempty-body
1207add_to warn_flags -Wnested-externs
1208add_to warn_flags -Wendif-labels
1209add_to warn_flags -Wexpansion-to-defined
Thomas Huth0a2ebce2020-12-11 16:24:26 +01001210add_to warn_flags -Wimplicit-fallthrough=2
Richard Henderson00849b92020-06-17 13:13:06 -07001211
1212nowarn_flags=
1213add_to nowarn_flags -Wno-initializer-overrides
1214add_to nowarn_flags -Wno-missing-include-dirs
1215add_to nowarn_flags -Wno-shift-negative-value
1216add_to nowarn_flags -Wno-string-plus-int
1217add_to nowarn_flags -Wno-typedef-redefinition
Richard Hendersonaabab962020-06-17 13:13:07 -07001218add_to nowarn_flags -Wno-tautological-type-limit-compare
Richard Hendersonbac8d222020-06-17 13:13:08 -07001219add_to nowarn_flags -Wno-psabi
Chenyi Qiang28d01b12022-09-15 17:10:34 +08001220add_to nowarn_flags -Wno-gnu-variable-sized-type-not-at-end
Richard Henderson00849b92020-06-17 13:13:06 -07001221
1222gcc_flags="$warn_flags $nowarn_flags"
John Snow93b25862015-03-25 18:57:37 -04001223
1224cc_has_warning_flag() {
1225 write_c_skeleton;
1226
Peter Maydella1d29d62012-10-27 22:19:07 +01001227 # Use the positive sense of the flag when testing for -Wno-wombat
1228 # support (gcc will happily accept the -Wno- form of unknown
1229 # warning options).
John Snow93b25862015-03-25 18:57:37 -04001230 optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')"
1231 compile_prog "-Werror $optflag" ""
1232}
1233
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +01001234objcc_has_warning_flag() {
1235 cat > $TMPM <<EOF
1236int main(void) { return 0; }
1237EOF
1238
1239 # Use the positive sense of the flag when testing for -Wno-wombat
1240 # support (gcc will happily accept the -Wno- form of unknown
1241 # warning options).
1242 optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')"
1243 do_objc -Werror $optflag \
1244 $OBJCFLAGS $EXTRA_OBJCFLAGS $CONFIGURE_OBJCFLAGS $QEMU_OBJCFLAGS \
1245 -o $TMPE $TMPM $QEMU_LDFLAGS
1246}
1247
John Snow93b25862015-03-25 18:57:37 -04001248for flag in $gcc_flags; do
1249 if cc_has_warning_flag $flag ; then
1250 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
Paolo Bonzini8d050952010-12-23 11:43:52 +01001251 fi
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +01001252 if objcc_has_warning_flag $flag ; then
1253 QEMU_OBJCFLAGS="$QEMU_OBJCFLAGS $flag"
1254 fi
Paolo Bonzini8d050952010-12-23 11:43:52 +01001255done
1256
Miroslav Rezanina3b463a32014-07-02 10:05:24 +02001257if test "$stack_protector" != "no"; then
Rodrigo Rebellofccd35a2015-11-12 12:04:28 -02001258 cat > $TMPC << EOF
1259int main(int argc, char *argv[])
1260{
Stefan Weil8a0afbb2022-11-02 21:22:58 +01001261 char arr[64], *p = arr, *c = argv[argc - 1];
Rodrigo Rebellofccd35a2015-11-12 12:04:28 -02001262 while (*c) {
1263 *p++ = *c++;
1264 }
1265 return 0;
1266}
1267EOF
Steven Noonan63678e12014-03-28 17:19:02 +01001268 gcc_flags="-fstack-protector-strong -fstack-protector-all"
Miroslav Rezanina3b463a32014-07-02 10:05:24 +02001269 sp_on=0
Steven Noonan63678e12014-03-28 17:19:02 +01001270 for flag in $gcc_flags; do
Peter Maydell590e5dd2014-04-11 17:13:52 +01001271 # We need to check both a compile and a link, since some compiler
1272 # setups fail only on a .c->.o compile and some only at link time
Paolo Bonzini086d5f72020-02-03 15:22:17 +01001273 if compile_object "-Werror $flag" &&
Peter Maydell590e5dd2014-04-11 17:13:52 +01001274 compile_prog "-Werror $flag" ""; then
Steven Noonan63678e12014-03-28 17:19:02 +01001275 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
Paolo Bonzinidb5adea2019-12-11 15:34:27 +01001276 QEMU_LDFLAGS="$QEMU_LDFLAGS $flag"
Miroslav Rezanina3b463a32014-07-02 10:05:24 +02001277 sp_on=1
Steven Noonan63678e12014-03-28 17:19:02 +01001278 break
1279 fi
1280 done
Miroslav Rezanina3b463a32014-07-02 10:05:24 +02001281 if test "$stack_protector" = yes; then
1282 if test $sp_on = 0; then
1283 error_exit "Stack protector not supported"
1284 fi
1285 fi
Marc-André Lureau37746c52013-02-25 23:31:12 +01001286fi
1287
Paolo Bonzini20bc94a2017-10-20 12:11:32 +02001288# Disable -Wmissing-braces on older compilers that warn even for
1289# the "universal" C zero initializer {0}.
1290cat > $TMPC << EOF
1291struct {
1292 int a[2];
1293} x = {0};
1294EOF
1295if compile_object "-Werror" "" ; then
1296 :
1297else
1298 QEMU_CFLAGS="$QEMU_CFLAGS -Wno-missing-braces"
1299fi
1300
Marc-André Lureau21e709a2019-07-18 16:04:13 +04001301# Our module code doesn't support Windows
1302if test "$modules" = "yes" && test "$mingw32" = "yes" ; then
1303 error_exit "Modules are not available for Windows"
1304fi
1305
Alex Bennée5f2453a2021-07-09 15:29:55 +01001306# Static linking is not possible with plugins, modules or PIE
Avi Kivity40d64442011-11-15 20:12:17 +02001307if test "$static" = "yes" ; then
Paolo Bonziniaa0d1f42014-02-25 17:36:55 +01001308 if test "$modules" = "yes" ; then
1309 error_exit "static and modules are mutually incompatible"
1310 fi
Alex Bennée5f2453a2021-07-09 15:29:55 +01001311 if test "$plugins" = "yes"; then
1312 error_exit "static and plugins are mutually incompatible"
Alex Bennéeba4dd2a2021-07-09 15:29:57 +01001313 else
1314 plugins="no"
Alex Bennée5f2453a2021-07-09 15:29:55 +01001315 fi
Avi Kivity40d64442011-11-15 20:12:17 +02001316fi
Paolo Bonzini37650682021-12-10 09:55:15 +01001317test "$plugins" = "" && plugins=yes
Avi Kivity40d64442011-11-15 20:12:17 +02001318
Richard Hendersonb2634122019-12-17 13:54:56 -10001319cat > $TMPC << EOF
Avi Kivity21d4a792011-11-23 11:24:25 +02001320
1321#ifdef __linux__
1322# define THREAD __thread
1323#else
1324# define THREAD
1325#endif
Avi Kivity21d4a792011-11-23 11:24:25 +02001326static THREAD int tls_var;
Avi Kivity21d4a792011-11-23 11:24:25 +02001327int main(void) { return tls_var; }
Avi Kivity40d64442011-11-15 20:12:17 +02001328EOF
Alex Bennée412aeac2019-08-15 19:41:51 +00001329
Alex Bennée977cccb2022-10-27 19:36:11 +01001330# Meson currently only handles pie as a boolean for now so if we have
1331# explicitly disabled PIE we need to extend our cflags because it wont.
Richard Henderson12781462019-12-17 15:30:14 -10001332if test "$static" = "yes"; then
Richard Hendersoneca7a8e2020-04-03 20:11:50 +01001333 if test "$pie" != "no" && compile_prog "-Werror -fPIE -DPIE" "-static-pie"; then
Paolo Bonzini5770e8a2020-09-23 05:26:15 -04001334 CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS"
Richard Henderson12781462019-12-17 15:30:14 -10001335 pie="yes"
1336 elif test "$pie" = "yes"; then
1337 error_exit "-static-pie not available due to missing toolchain support"
1338 else
Richard Henderson12781462019-12-17 15:30:14 -10001339 pie="no"
Alex Bennée977cccb2022-10-27 19:36:11 +01001340 QEMU_CFLAGS="-fno-pie -no-pie $QEMU_CFLAGS"
Richard Henderson12781462019-12-17 15:30:14 -10001341 fi
1342elif test "$pie" = "no"; then
Paolo Bonzinib9eae9e2022-03-29 13:07:25 +02001343 if compile_prog "-Werror -fno-pie" "-no-pie"; then
1344 CONFIGURE_CFLAGS="-fno-pie $CONFIGURE_CFLAGS"
1345 CONFIGURE_LDFLAGS="-no-pie $CONFIGURE_LDFLAGS"
Alex Bennéeabafb642022-09-14 16:59:38 +01001346 QEMU_CFLAGS="-fno-pie -no-pie $QEMU_CFLAGS"
Paolo Bonzinib9eae9e2022-03-29 13:07:25 +02001347 fi
Richard Hendersoneca7a8e2020-04-03 20:11:50 +01001348elif compile_prog "-Werror -fPIE -DPIE" "-pie"; then
Paolo Bonzini5770e8a2020-09-23 05:26:15 -04001349 CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS"
1350 CONFIGURE_LDFLAGS="-pie $CONFIGURE_LDFLAGS"
Richard Henderson2c674102019-12-17 15:15:01 -10001351 pie="yes"
1352elif test "$pie" = "yes"; then
1353 error_exit "PIE not available due to missing toolchain support"
1354else
1355 echo "Disabling PIE due to missing toolchain support"
1356 pie="no"
Avi Kivity40d64442011-11-15 20:12:17 +02001357fi
1358
Paolo Bonzini09dada42013-04-17 16:26:47 +02001359##########################################
1360# __sync_fetch_and_and requires at least -march=i486. Many toolchains
1361# use i686 as default anyway, but for those that don't, an explicit
1362# specification is necessary
1363
1364if test "$cpu" = "i386"; then
1365 cat > $TMPC << EOF
1366static int sfaa(int *ptr)
1367{
1368 return __sync_fetch_and_and(ptr, 0);
1369}
1370
1371int main(void)
1372{
1373 int val = 42;
Stefan Weil1405b622013-05-11 21:46:58 +02001374 val = __sync_val_compare_and_swap(&val, 0, 1);
Paolo Bonzini09dada42013-04-17 16:26:47 +02001375 sfaa(&val);
1376 return val;
1377}
1378EOF
1379 if ! compile_prog "" "" ; then
1380 QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS"
1381 fi
1382fi
1383
Stefan Weilafb63eb2012-09-26 22:04:38 +02001384if test -z "${target_list+xxx}" ; then
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001385 default_targets=yes
Paolo Bonzinid880a3b2017-07-03 16:58:28 +02001386 for target in $default_target_list; do
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001387 target_list="$target_list $target"
Paolo Bonzinid880a3b2017-07-03 16:58:28 +02001388 done
1389 target_list="${target_list# }"
Anthony Liguori121afa92012-09-14 08:17:03 -05001390else
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001391 default_targets=no
Stefan Weil89138852016-05-16 15:10:20 +02001392 target_list=$(echo "$target_list" | sed -e 's/,/ /g')
Paolo Bonzinid880a3b2017-07-03 16:58:28 +02001393 for target in $target_list; do
1394 # Check that we recognised the target name; this allows a more
1395 # friendly error message than if we let it fall through.
1396 case " $default_target_list " in
1397 *" $target "*)
1398 ;;
1399 *)
1400 error_exit "Unknown target name '$target'"
1401 ;;
1402 esac
Paolo Bonzinid880a3b2017-07-03 16:58:28 +02001403 done
bellard5327cf42005-01-10 23:18:50 +00001404fi
Peter Maydell25b48332013-05-20 16:16:16 +01001405
Paolo Bonzinif55fe272010-05-26 16:08:17 +02001406# see if system emulation was really requested
1407case " $target_list " in
1408 *"-softmmu "*) softmmu=yes
1409 ;;
1410 *) softmmu=no
1411 ;;
1412esac
bellard5327cf42005-01-10 23:18:50 +00001413
Philippe Mathieu-Daudé76301562022-02-04 15:54:47 +01001414if test "$tcg" = "auto"; then
1415 if test -z "$target_list"; then
1416 tcg="disabled"
1417 else
1418 tcg="enabled"
1419 fi
1420fi
1421
1422if test "$tcg" = "enabled"; then
1423 git_submodules="$git_submodules tests/fp/berkeley-testfloat-3"
1424 git_submodules="$git_submodules tests/fp/berkeley-softfloat-3"
1425fi
1426
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001427##########################################
bellard7d132992003-03-06 23:23:54 +00001428# big/little endian test
1429cat > $TMPC << EOF
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001430#if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
1431# error LITTLE
1432#endif
1433int main(void) { return 0; }
bellard7d132992003-03-06 23:23:54 +00001434EOF
1435
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001436if ! compile_prog ; then
1437 bigendian="no"
Mike Frysinger61cc9192013-06-30 23:30:18 -04001438else
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001439 cat > $TMPC << EOF
1440#if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
1441# error BIG
1442#endif
1443int main(void) { return 0; }
1444EOF
1445
1446 if ! compile_prog ; then
1447 bigendian="yes"
1448 else
Mike Frysinger61cc9192013-06-30 23:30:18 -04001449 echo big/little test failed
Thomas Huth659eb152021-07-15 10:39:28 +02001450 exit 1
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001451 fi
bellard7d132992003-03-06 23:23:54 +00001452fi
1453
Gonglei015a33b2014-07-01 20:58:08 +08001454##########################################
Stefan Weil779ab5e2012-12-16 11:29:45 +01001455# pkg-config probe
1456
1457if ! has "$pkg_config_exe"; then
Peter Maydell76ad07a2013-04-08 12:11:26 +01001458 error_exit "pkg-config binary '$pkg_config_exe' not found"
Stefan Weil779ab5e2012-12-16 11:29:45 +01001459fi
1460
1461##########################################
Anthony Liguorie18df142011-07-19 14:50:29 -05001462# glib support probe
Paolo Bonzinia52d28a2012-04-05 13:01:54 +02001463
Thomas Huth0ce9b082022-05-13 08:39:58 +02001464# When bumping glib_req_ver, please check also whether we should increase
1465# the _WIN32_WINNT setting in osdep.h according to the value from glib
Daniel P. Berrangéb4c60362021-05-14 13:04:13 +01001466glib_req_ver=2.56
Paolo Bonziniaa0d1f42014-02-25 17:36:55 +01001467glib_modules=gthread-2.0
1468if test "$modules" = yes; then
Gerd Hoffmanna88afc62018-03-08 09:53:00 +01001469 glib_modules="$glib_modules gmodule-export-2.0"
Paolo Bonzinib906aca2021-08-11 12:05:50 +02001470elif test "$plugins" = "yes"; then
1471 glib_modules="$glib_modules gmodule-no-export-2.0"
Emilio G. Cota54cb65d2017-08-30 18:39:53 -04001472fi
Fam Zhenge26110c2014-02-10 14:48:57 +08001473
Paolo Bonziniaa0d1f42014-02-25 17:36:55 +01001474for i in $glib_modules; do
Fam Zhenge26110c2014-02-10 14:48:57 +08001475 if $pkg_config --atleast-version=$glib_req_ver $i; then
Stefan Weil89138852016-05-16 15:10:20 +02001476 glib_cflags=$($pkg_config --cflags $i)
1477 glib_libs=$($pkg_config --libs $i)
Fam Zhenge26110c2014-02-10 14:48:57 +08001478 else
1479 error_exit "glib-$glib_req_ver $i is required to compile QEMU"
1480 fi
1481done
1482
Marc-André Lureau5b9e7d02022-05-25 16:41:39 +02001483glib_bindir="$($pkg_config --variable=bindir glib-2.0)"
1484if test -z "$glib_bindir" ; then
1485 glib_bindir="$($pkg_config --variable=prefix glib-2.0)"/bin
1486fi
1487
Paolo Bonzini215b0c22020-09-01 08:41:17 -04001488# This workaround is required due to a bug in pkg-config file for glib as it
1489# doesn't define GLIB_STATIC_COMPILATION for pkg-config --static
1490
1491if test "$static" = yes && test "$mingw32" = yes; then
1492 glib_cflags="-DGLIB_STATIC_COMPILATION $glib_cflags"
1493fi
1494
Daniel P. Berrange977a82a2016-01-27 09:00:45 +00001495# Sanity check that the current size_t matches the
1496# size that glib thinks it should be. This catches
1497# problems on multi-arch where people try to build
1498# 32-bit QEMU while pointing at 64-bit glib headers
1499cat > $TMPC <<EOF
1500#include <glib.h>
1501#include <unistd.h>
1502
1503#define QEMU_BUILD_BUG_ON(x) \
1504 typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused));
1505
1506int main(void) {
1507 QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T);
1508 return 0;
1509}
1510EOF
1511
Paolo Bonzini215b0c22020-09-01 08:41:17 -04001512if ! compile_prog "$glib_cflags" "$glib_libs" ; then
Daniel P. Berrange977a82a2016-01-27 09:00:45 +00001513 error_exit "sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T."\
1514 "You probably need to set PKG_CONFIG_LIBDIR"\
1515 "to point to the right pkg-config files for your"\
1516 "build target"
1517fi
1518
Eric Blake9bda6002020-03-17 12:55:34 -05001519# Silence clang warnings triggered by glib < 2.57.2
1520cat > $TMPC << EOF
1521#include <glib.h>
1522typedef struct Foo {
1523 int i;
1524} Foo;
1525static void foo_free(Foo *f)
1526{
1527 g_free(f);
1528}
Marc-André Lureaue0e7fe02022-03-12 02:22:02 +04001529G_DEFINE_AUTOPTR_CLEANUP_FUNC(Foo, foo_free)
Eric Blake9bda6002020-03-17 12:55:34 -05001530int main(void) { return 0; }
1531EOF
1532if ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then
1533 if cc_has_warning_flag "-Wno-unused-function"; then
1534 glib_cflags="$glib_cflags -Wno-unused-function"
Paolo Bonzini5770e8a2020-09-23 05:26:15 -04001535 CONFIGURE_CFLAGS="$CONFIGURE_CFLAGS -Wno-unused-function"
Eric Blake9bda6002020-03-17 12:55:34 -05001536 fi
1537fi
1538
Fam Zhenge26110c2014-02-10 14:48:57 +08001539##########################################
aurel32f652e6a2008-12-16 10:43:48 +00001540# fdt probe
Paolo Bonzinifbb41212020-10-05 11:31:15 +02001541
1542case "$fdt" in
1543 auto | enabled | internal)
1544 # Simpler to always update submodule, even if not needed.
Paolo Bonzini2d652f22021-05-12 09:21:56 +02001545 git_submodules="${git_submodules} dtc"
Peter Maydelle169e1e2013-05-24 16:26:54 +01001546 ;;
Paolo Bonzinifbb41212020-10-05 11:31:15 +02001547esac
aurel32f652e6a2008-12-16 10:43:48 +00001548
Michael Walle20ff0752011-03-07 23:32:39 +01001549##########################################
Alex Barcelo519175a2012-02-28 12:25:50 +01001550# check and set a backend for coroutine
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301551
Peter Maydell7c2acc72013-04-08 12:11:27 +01001552# We prefer ucontext, but it's not always possible. The fallback
Daniel P. Berrange33c53c52017-04-28 13:24:44 +01001553# is sigcontext. On Windows the only valid backend is the Windows
1554# specific one.
Peter Maydell7c2acc72013-04-08 12:11:27 +01001555
1556ucontext_works=no
1557if test "$darwin" != "yes"; then
1558 cat > $TMPC << EOF
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301559#include <ucontext.h>
Peter Maydellcdf84802012-02-23 16:20:05 +00001560#ifdef __stub_makecontext
1561#error Ignoring glibc stub makecontext which will always fail
1562#endif
Stefan Weil75cafad2011-12-17 09:27:29 +01001563int main(void) { makecontext(0, 0, 0); return 0; }
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301564EOF
Peter Maydell7c2acc72013-04-08 12:11:27 +01001565 if compile_prog "" "" ; then
1566 ucontext_works=yes
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301567 fi
Peter Maydell7c2acc72013-04-08 12:11:27 +01001568fi
1569
1570if test "$coroutine" = ""; then
1571 if test "$mingw32" = "yes"; then
1572 coroutine=win32
1573 elif test "$ucontext_works" = "yes"; then
1574 coroutine=ucontext
1575 else
1576 coroutine=sigaltstack
1577 fi
Alex Barcelo519175a2012-02-28 12:25:50 +01001578else
Peter Maydell7c2acc72013-04-08 12:11:27 +01001579 case $coroutine in
1580 windows)
1581 if test "$mingw32" != "yes"; then
1582 error_exit "'windows' coroutine backend only valid for Windows"
1583 fi
1584 # Unfortunately the user visible backend name doesn't match the
1585 # coroutine-*.c filename for this case, so we have to adjust it here.
1586 coroutine=win32
1587 ;;
1588 ucontext)
1589 if test "$ucontext_works" != "yes"; then
Paolo Bonzini7cb58442022-08-19 18:40:46 +02001590 error_exit "'ucontext' backend requested but makecontext not available"
Peter Maydell7c2acc72013-04-08 12:11:27 +01001591 fi
1592 ;;
Daniel P. Berrange33c53c52017-04-28 13:24:44 +01001593 sigaltstack)
Peter Maydell7c2acc72013-04-08 12:11:27 +01001594 if test "$mingw32" = "yes"; then
1595 error_exit "only the 'windows' coroutine backend is valid for Windows"
1596 fi
1597 ;;
1598 *)
1599 error_exit "unknown coroutine backend $coroutine"
1600 ;;
1601 esac
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301602fi
1603
Daniele Buono1e4f6062020-05-29 16:51:21 -04001604##################################################
1605# SafeStack
1606
1607
1608if test "$safe_stack" = "yes"; then
1609cat > $TMPC << EOF
Stefan Weil8a0afbb2022-11-02 21:22:58 +01001610int main(void)
Daniele Buono1e4f6062020-05-29 16:51:21 -04001611{
1612#if ! __has_feature(safe_stack)
1613#error SafeStack Disabled
1614#endif
1615 return 0;
1616}
1617EOF
1618 flag="-fsanitize=safe-stack"
1619 # Check that safe-stack is supported and enabled.
1620 if compile_prog "-Werror $flag" "$flag"; then
1621 # Flag needed both at compilation and at linking
1622 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
1623 QEMU_LDFLAGS="$QEMU_LDFLAGS $flag"
1624 else
1625 error_exit "SafeStack not supported by your compiler"
1626 fi
1627 if test "$coroutine" != "ucontext"; then
1628 error_exit "SafeStack is only supported by the coroutine backend ucontext"
1629 fi
1630else
1631cat > $TMPC << EOF
Stefan Weil8a0afbb2022-11-02 21:22:58 +01001632int main(void)
Daniele Buono1e4f6062020-05-29 16:51:21 -04001633{
1634#if defined(__has_feature)
1635#if __has_feature(safe_stack)
1636#error SafeStack Enabled
1637#endif
1638#endif
1639 return 0;
1640}
1641EOF
1642if test "$safe_stack" = "no"; then
1643 # Make sure that safe-stack is disabled
1644 if ! compile_prog "-Werror" ""; then
1645 # SafeStack was already enabled, try to explicitly remove the feature
1646 flag="-fno-sanitize=safe-stack"
1647 if ! compile_prog "-Werror $flag" "$flag"; then
1648 error_exit "Configure cannot disable SafeStack"
1649 fi
1650 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
1651 QEMU_LDFLAGS="$QEMU_LDFLAGS $flag"
1652 fi
1653else # "$safe_stack" = ""
1654 # Set safe_stack to yes or no based on pre-existing flags
1655 if compile_prog "-Werror" ""; then
1656 safe_stack="no"
1657 else
1658 safe_stack="yes"
1659 if test "$coroutine" != "ucontext"; then
1660 error_exit "SafeStack is only supported by the coroutine backend ucontext"
1661 fi
1662 fi
1663fi
1664fi
Peter Lieven7d992e42016-09-27 11:58:45 +02001665
Richard Henderson76a347e2012-12-28 14:17:02 -08001666########################################
John Snowfd0e6052015-03-25 18:57:39 -04001667# check if ccache is interfering with
1668# semantic analysis of macros
1669
John Snow5e4dfd32015-10-28 13:56:40 -04001670unset CCACHE_CPP2
John Snowfd0e6052015-03-25 18:57:39 -04001671ccache_cpp2=no
1672cat > $TMPC << EOF
1673static const int Z = 1;
1674#define fn() ({ Z; })
1675#define TAUT(X) ((X) == Z)
1676#define PAREN(X, Y) (X == Y)
1677#define ID(X) (X)
Stefan Weil8a0afbb2022-11-02 21:22:58 +01001678int main(void)
John Snowfd0e6052015-03-25 18:57:39 -04001679{
1680 int x = 0, y = 0;
1681 x = ID(x);
1682 x = fn();
1683 fn();
1684 if (PAREN(x, y)) return 0;
1685 if (TAUT(Z)) return 0;
1686 return 0;
1687}
1688EOF
1689
1690if ! compile_object "-Werror"; then
1691 ccache_cpp2=yes
1692fi
1693
John Snowb553a042015-11-03 15:43:42 -05001694#################################################
1695# clang does not support glibc + FORTIFY_SOURCE.
1696
1697if test "$fortify_source" != "no"; then
1698 if echo | $cc -dM -E - | grep __clang__ > /dev/null 2>&1 ; then
1699 fortify_source="no";
Peter Maydelle1890912017-06-26 16:25:24 +01001700 elif test -n "$cxx" && has $cxx &&
John Snowcfcc7c12015-11-12 11:29:49 -05001701 echo | $cxx -dM -E - | grep __clang__ >/dev/null 2>&1 ; then
John Snowb553a042015-11-03 15:43:42 -05001702 fortify_source="no";
1703 else
1704 fortify_source="yes"
1705 fi
1706fi
1707
Aneesh Kumar K.Vd2042372011-10-12 19:11:24 +05301708##########################################
Marc-André Lureau247724c2018-01-16 16:11:51 +01001709# checks for sanitizers
1710
Marc-André Lureau247724c2018-01-16 16:11:51 +01001711have_asan=no
1712have_ubsan=no
Marc-André Lureaud83414e2018-01-16 16:11:52 +01001713have_asan_iface_h=no
1714have_asan_iface_fiber=no
Marc-André Lureau247724c2018-01-16 16:11:51 +01001715
1716if test "$sanitizers" = "yes" ; then
Marc-André Lureaub9f44da2018-02-15 22:25:47 +01001717 write_c_skeleton
Marc-André Lureau247724c2018-01-16 16:11:51 +01001718 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" ""; then
1719 have_asan=yes
1720 fi
Marc-André Lureaub9f44da2018-02-15 22:25:47 +01001721
1722 # we could use a simple skeleton for flags checks, but this also
1723 # detect the static linking issue of ubsan, see also:
1724 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84285
1725 cat > $TMPC << EOF
1726#include <stdlib.h>
1727int main(void) {
1728 void *tmp = malloc(10);
Leonid Blochf2dfe542020-05-25 01:12:04 +03001729 if (tmp != NULL) {
1730 return *(int *)(tmp + 2);
1731 }
Olaf Heringd1abf3f2020-07-07 19:13:25 +02001732 return 1;
Marc-André Lureaub9f44da2018-02-15 22:25:47 +01001733}
1734EOF
Marc-André Lureau247724c2018-01-16 16:11:51 +01001735 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=undefined" ""; then
1736 have_ubsan=yes
1737 fi
Marc-André Lureaud83414e2018-01-16 16:11:52 +01001738
1739 if check_include "sanitizer/asan_interface.h" ; then
1740 have_asan_iface_h=yes
1741 fi
1742
1743 cat > $TMPC << EOF
1744#include <sanitizer/asan_interface.h>
1745int main(void) {
1746 __sanitizer_start_switch_fiber(0, 0, 0);
1747 return 0;
1748}
1749EOF
1750 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" "" ; then
1751 have_asan_iface_fiber=yes
1752 fi
Marc-André Lureau247724c2018-01-16 16:11:51 +01001753fi
1754
Lingfeng Yang0aebab02020-06-12 20:02:23 +01001755# Thread sanitizer is, for now, much noisier than the other sanitizers;
1756# keep it separate until that is not the case.
1757if test "$tsan" = "yes" && test "$sanitizers" = "yes"; then
1758 error_exit "TSAN is not supported with other sanitiziers."
1759fi
1760have_tsan=no
1761have_tsan_iface_fiber=no
1762if test "$tsan" = "yes" ; then
1763 write_c_skeleton
1764 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then
1765 have_tsan=yes
1766 fi
1767 cat > $TMPC << EOF
1768#include <sanitizer/tsan_interface.h>
1769int main(void) {
1770 __tsan_create_fiber(0);
1771 return 0;
1772}
1773EOF
1774 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then
1775 have_tsan_iface_fiber=yes
1776 fi
1777fi
1778
Alexander Bulekovadc28022020-02-19 23:11:14 -05001779##########################################
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001780# functions to probe cross compilers
1781
1782container="no"
Stefan Weil47fdc8f2022-11-17 17:25:20 +00001783if test $use_containers = "yes" && (has "docker" || has "podman"); then
Paolo Bonzinic4575b52022-09-29 12:41:58 +01001784 case $($python "$source_path"/tests/docker/docker.py probe) in
1785 *docker) container=docker ;;
1786 podman) container=podman ;;
1787 no) container=no ;;
1788 esac
Paolo Bonzinia3e28f82022-09-29 12:41:59 +01001789 if test "$container" != "no"; then
1790 docker_py="$python $source_path/tests/docker/docker.py --engine $container"
1791 fi
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001792fi
1793
1794# cross compilers defaults, can be overridden with --cross-cc-ARCH
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001795: ${cross_prefix_aarch64="aarch64-linux-gnu-"}
1796: ${cross_prefix_aarch64_be="$cross_prefix_aarch64"}
1797: ${cross_prefix_alpha="alpha-linux-gnu-"}
1798: ${cross_prefix_arm="arm-linux-gnueabihf-"}
1799: ${cross_prefix_armeb="$cross_prefix_arm"}
1800: ${cross_prefix_hexagon="hexagon-unknown-linux-musl-"}
Song Gao34bb43b2022-06-06 20:43:33 +08001801: ${cross_prefix_loongarch64="loongarch64-unknown-linux-gnu-"}
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001802: ${cross_prefix_hppa="hppa-linux-gnu-"}
1803: ${cross_prefix_i386="i686-linux-gnu-"}
1804: ${cross_prefix_m68k="m68k-linux-gnu-"}
1805: ${cross_prefix_microblaze="microblaze-linux-musl-"}
1806: ${cross_prefix_mips64el="mips64el-linux-gnuabi64-"}
1807: ${cross_prefix_mips64="mips64-linux-gnuabi64-"}
1808: ${cross_prefix_mipsel="mipsel-linux-gnu-"}
1809: ${cross_prefix_mips="mips-linux-gnu-"}
1810: ${cross_prefix_nios2="nios2-linux-gnu-"}
1811: ${cross_prefix_ppc="powerpc-linux-gnu-"}
1812: ${cross_prefix_ppc64="powerpc64-linux-gnu-"}
1813: ${cross_prefix_ppc64le="$cross_prefix_ppc64"}
1814: ${cross_prefix_riscv64="riscv64-linux-gnu-"}
1815: ${cross_prefix_s390x="s390x-linux-gnu-"}
1816: ${cross_prefix_sh4="sh4-linux-gnu-"}
1817: ${cross_prefix_sparc64="sparc64-linux-gnu-"}
1818: ${cross_prefix_sparc="$cross_prefix_sparc64"}
1819: ${cross_prefix_x86_64="x86_64-linux-gnu-"}
1820
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001821: ${cross_cc_aarch64_be="$cross_cc_aarch64"}
1822: ${cross_cc_cflags_aarch64_be="-mbig-endian"}
Paolo Bonzini46af66e2022-05-27 16:35:49 +01001823: ${cross_cc_armeb="$cross_cc_arm"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001824: ${cross_cc_cflags_armeb="-mbig-endian"}
1825: ${cross_cc_hexagon="hexagon-unknown-linux-musl-clang"}
1826: ${cross_cc_cflags_hexagon="-mv67 -O2 -static"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001827: ${cross_cc_cflags_i386="-m32"}
Paolo Bonzinid44f2f92022-06-15 11:42:01 +02001828: ${cross_cc_cflags_ppc="-m32 -mbig-endian"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001829: ${cross_cc_cflags_ppc64="-m64 -mbig-endian"}
1830: ${cross_cc_ppc64le="$cross_cc_ppc64"}
1831: ${cross_cc_cflags_ppc64le="-m64 -mlittle-endian"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001832: ${cross_cc_cflags_sparc64="-m64 -mcpu=ultrasparc"}
Paolo Bonzini46af66e2022-05-27 16:35:49 +01001833: ${cross_cc_sparc="$cross_cc_sparc64"}
1834: ${cross_cc_cflags_sparc="-m32 -mcpu=supersparc"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001835: ${cross_cc_cflags_x86_64="-m64"}
1836
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001837compute_target_variable() {
Paolo Bonzini92e288f2022-06-22 10:42:58 +02001838 eval "$2="
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001839 if eval test -n "\"\${cross_prefix_$1}\""; then
1840 if eval has "\"\${cross_prefix_$1}\$3\""; then
1841 eval "$2=\"\${cross_prefix_$1}\$3\""
1842 fi
1843 fi
1844}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001845
Paolo Bonzini35fd22b2022-10-12 16:33:03 +02001846have_target() {
1847 for i; do
1848 case " $target_list " in
1849 *" $i "*) return 0;;
1850 *) ;;
1851 esac
1852 done
1853 return 1
1854}
1855
Paolo Bonzini52f08de2022-07-02 15:59:02 +02001856# probe_target_compiler TARGET
1857#
1858# Look for a compiler for the given target, either native or cross.
1859# Set variables target_* if a compiler is found, and container_cross_*
1860# if a Docker-based cross-compiler image is known for the target.
1861# Set got_cross_cc to yes/no depending on whether a non-container-based
1862# compiler was found.
1863#
1864# If TARGET is a user-mode emulation target, also set build_static to
1865# "y" if static linking is possible.
1866#
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001867probe_target_compiler() {
1868 # reset all output variables
Paolo Bonzini92e288f2022-06-22 10:42:58 +02001869 got_cross_cc=no
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001870 container_image=
1871 container_hosts=
1872 container_cross_cc=
Paolo Bonzini87eb0142022-05-27 16:35:52 +01001873 container_cross_ar=
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001874 container_cross_as=
1875 container_cross_ld=
Paolo Bonzini87eb0142022-05-27 16:35:52 +01001876 container_cross_nm=
1877 container_cross_objcopy=
1878 container_cross_ranlib=
1879 container_cross_strip=
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001880
Alex Bennéec3b570b2022-10-27 19:36:10 +01001881 # We shall skip configuring the target compiler if the user didn't
1882 # bother enabling an appropriate guest. This avoids building
1883 # extraneous firmware images and tests.
1884 if test "${target_list#*$1}" != "$1"; then
1885 break;
1886 else
1887 return 1
1888 fi
1889
Paolo Bonzini52f08de2022-07-02 15:59:02 +02001890 target_arch=${1%%-*}
1891 case $target_arch in
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001892 aarch64) container_hosts="x86_64 aarch64" ;;
1893 alpha) container_hosts=x86_64 ;;
1894 arm) container_hosts="x86_64 aarch64" ;;
1895 cris) container_hosts=x86_64 ;;
1896 hexagon) container_hosts=x86_64 ;;
1897 hppa) container_hosts=x86_64 ;;
1898 i386) container_hosts=x86_64 ;;
Richard Hendersonb70ec502022-07-04 12:36:29 +05301899 loongarch64) container_hosts=x86_64 ;;
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001900 m68k) container_hosts=x86_64 ;;
1901 microblaze) container_hosts=x86_64 ;;
1902 mips64el) container_hosts=x86_64 ;;
1903 mips64) container_hosts=x86_64 ;;
1904 mipsel) container_hosts=x86_64 ;;
1905 mips) container_hosts=x86_64 ;;
1906 nios2) container_hosts=x86_64 ;;
1907 ppc) container_hosts=x86_64 ;;
1908 ppc64|ppc64le) container_hosts=x86_64 ;;
1909 riscv64) container_hosts=x86_64 ;;
1910 s390x) container_hosts=x86_64 ;;
1911 sh4) container_hosts=x86_64 ;;
1912 sparc64) container_hosts=x86_64 ;;
1913 tricore) container_hosts=x86_64 ;;
1914 x86_64) container_hosts="aarch64 ppc64el x86_64" ;;
1915 xtensa*) container_hosts=x86_64 ;;
1916 esac
1917
1918 for host in $container_hosts; do
1919 test "$container" != no || continue
1920 test "$host" = "$cpu" || continue
Paolo Bonzini52f08de2022-07-02 15:59:02 +02001921 case $target_arch in
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001922 aarch64)
1923 # We don't have any bigendian build tools so we only use this for AArch64
1924 container_image=debian-arm64-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001925 container_cross_prefix=aarch64-linux-gnu-
1926 container_cross_cc=${container_cross_prefix}gcc-10
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001927 ;;
1928 alpha)
1929 container_image=debian-alpha-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001930 container_cross_prefix=alpha-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001931 ;;
1932 arm)
1933 # We don't have any bigendian build tools so we only use this for ARM
1934 container_image=debian-armhf-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001935 container_cross_prefix=arm-linux-gnueabihf-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001936 ;;
1937 cris)
1938 container_image=fedora-cris-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001939 container_cross_prefix=cris-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001940 ;;
1941 hexagon)
1942 container_image=debian-hexagon-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001943 container_cross_prefix=hexagon-unknown-linux-musl-
1944 container_cross_cc=${container_cross_prefix}clang
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001945 ;;
1946 hppa)
1947 container_image=debian-hppa-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001948 container_cross_prefix=hppa-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001949 ;;
1950 i386)
1951 container_image=fedora-i386-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001952 container_cross_prefix=
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001953 ;;
Richard Hendersonb70ec502022-07-04 12:36:29 +05301954 loongarch64)
1955 container_image=debian-loongarch-cross
1956 container_cross_prefix=loongarch64-unknown-linux-gnu-
1957 ;;
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001958 m68k)
1959 container_image=debian-m68k-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001960 container_cross_prefix=m68k-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001961 ;;
1962 microblaze)
1963 container_image=debian-microblaze-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001964 container_cross_prefix=microblaze-linux-musl-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001965 ;;
1966 mips64el)
1967 container_image=debian-mips64el-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001968 container_cross_prefix=mips64el-linux-gnuabi64-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001969 ;;
1970 mips64)
1971 container_image=debian-mips64-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001972 container_cross_prefix=mips64-linux-gnuabi64-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001973 ;;
1974 mipsel)
1975 container_image=debian-mipsel-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001976 container_cross_prefix=mipsel-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001977 ;;
1978 mips)
1979 container_image=debian-mips-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001980 container_cross_prefix=mips-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001981 ;;
1982 nios2)
1983 container_image=debian-nios2-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001984 container_cross_prefix=nios2-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001985 ;;
1986 ppc)
1987 container_image=debian-powerpc-test-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001988 container_cross_prefix=powerpc-linux-gnu-
1989 container_cross_cc=${container_cross_prefix}gcc-10
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001990 ;;
1991 ppc64|ppc64le)
1992 container_image=debian-powerpc-test-cross
Richard Henderson705c8812022-07-28 11:39:01 -07001993 container_cross_prefix=powerpc${target_arch#ppc}-linux-gnu-
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001994 container_cross_cc=${container_cross_prefix}gcc-10
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001995 ;;
1996 riscv64)
1997 container_image=debian-riscv64-test-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001998 container_cross_prefix=riscv64-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001999 ;;
2000 s390x)
2001 container_image=debian-s390x-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002002 container_cross_prefix=s390x-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002003 ;;
2004 sh4)
2005 container_image=debian-sh4-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002006 container_cross_prefix=sh4-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002007 ;;
2008 sparc64)
2009 container_image=debian-sparc64-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002010 container_cross_prefix=sparc64-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002011 ;;
2012 tricore)
2013 container_image=debian-tricore-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002014 container_cross_prefix=tricore-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002015 container_cross_as=tricore-as
2016 container_cross_ld=tricore-ld
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002017 break
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002018 ;;
2019 x86_64)
2020 container_image=debian-amd64-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002021 container_cross_prefix=x86_64-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002022 ;;
2023 xtensa*)
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002024 container_hosts=x86_64
2025 container_image=debian-xtensa-cross
2026
2027 # default to the dc232b cpu
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002028 container_cross_prefix=/opt/2020.07/xtensa-dc232b-elf/bin/xtensa-dc232b-elf-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002029 ;;
2030 esac
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002031 : ${container_cross_cc:=${container_cross_prefix}gcc}
Paolo Bonzini87eb0142022-05-27 16:35:52 +01002032 : ${container_cross_ar:=${container_cross_prefix}ar}
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002033 : ${container_cross_as:=${container_cross_prefix}as}
2034 : ${container_cross_ld:=${container_cross_prefix}ld}
Paolo Bonzini87eb0142022-05-27 16:35:52 +01002035 : ${container_cross_nm:=${container_cross_prefix}nm}
2036 : ${container_cross_objcopy:=${container_cross_prefix}objcopy}
2037 : ${container_cross_ranlib:=${container_cross_prefix}ranlib}
2038 : ${container_cross_strip:=${container_cross_prefix}strip}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002039 done
2040
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002041 try=cross
Paolo Bonzini52f08de2022-07-02 15:59:02 +02002042 case "$target_arch:$cpu" in
Paolo Bonzini26e72532022-06-06 10:47:45 +02002043 aarch64_be:aarch64 | \
2044 armeb:arm | \
Paolo Bonzini640aabc2022-06-15 11:42:01 +02002045 i386:x86_64 | \
Paolo Bonzini26e72532022-06-06 10:47:45 +02002046 mips*:mips64 | \
Paolo Bonzinid44f2f92022-06-15 11:42:01 +02002047 ppc*:ppc64 | \
Paolo Bonzini26e72532022-06-06 10:47:45 +02002048 sparc:sparc64 | \
Paolo Bonzini640aabc2022-06-15 11:42:01 +02002049 "$cpu:$cpu")
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002050 try='native cross' ;;
Paolo Bonzini640aabc2022-06-15 11:42:01 +02002051 esac
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002052 eval "target_cflags=\${cross_cc_cflags_$target_arch}"
Peter Maydellb3b54722022-08-25 16:07:03 +01002053 for thistry in $try; do
2054 case $thistry in
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002055 native)
2056 target_cc=$cc
2057 target_ccas=$ccas
2058 target_ar=$ar
2059 target_as=$as
2060 target_ld=$ld
2061 target_nm=$nm
2062 target_objcopy=$objcopy
2063 target_ranlib=$ranlib
2064 target_strip=$strip
2065 ;;
2066 cross)
2067 target_cc=
2068 if eval test -n "\"\${cross_cc_$target_arch}\""; then
2069 if eval has "\"\${cross_cc_$target_arch}\""; then
2070 eval "target_cc=\"\${cross_cc_$target_arch}\""
2071 fi
2072 else
2073 compute_target_variable $target_arch target_cc gcc
2074 fi
2075 target_ccas=$target_cc
2076 compute_target_variable $target_arch target_ar ar
2077 compute_target_variable $target_arch target_as as
2078 compute_target_variable $target_arch target_ld ld
2079 compute_target_variable $target_arch target_nm nm
2080 compute_target_variable $target_arch target_objcopy objcopy
2081 compute_target_variable $target_arch target_ranlib ranlib
2082 compute_target_variable $target_arch target_strip strip
2083 ;;
2084 esac
2085
2086 if test -n "$target_cc"; then
2087 case $target_arch in
2088 i386|x86_64)
2089 if $target_cc --version | grep -qi "clang"; then
2090 continue
2091 fi
2092 ;;
2093 esac
2094 elif test -n "$target_as" && test -n "$target_ld"; then
2095 # Special handling for assembler only targets
2096 case $target in
2097 tricore-softmmu)
2098 build_static=
2099 got_cross_cc=yes
2100 break
2101 ;;
2102 *)
2103 continue
2104 ;;
2105 esac
2106 else
2107 continue
2108 fi
2109
2110 write_c_skeleton
2111 case $1 in
2112 *-softmmu)
2113 if do_compiler "$target_cc" $target_cflags -o $TMPO -c $TMPC &&
2114 do_compiler "$target_cc" $target_cflags -r -nostdlib -o "${TMPDIR1}/${TMPB}2.o" "$TMPO" -lgcc; then
2115 got_cross_cc=yes
2116 break
2117 fi
2118 ;;
2119 *)
2120 if do_compiler "$target_cc" $target_cflags -o $TMPE $TMPC -static ; then
2121 build_static=y
2122 got_cross_cc=yes
2123 break
2124 fi
2125 if do_compiler "$target_cc" $target_cflags -o $TMPE $TMPC ; then
2126 build_static=
2127 got_cross_cc=yes
2128 break
Paolo Bonzini2ad60f62022-05-27 16:35:50 +01002129 fi
2130 ;;
2131 esac
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002132 done
2133 if test $got_cross_cc != yes; then
2134 build_static=
2135 target_cc=
2136 target_ccas=
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002137 target_ar=
2138 target_as=
2139 target_ld=
2140 target_nm=
2141 target_objcopy=
2142 target_ranlib=
2143 target_strip=
Paolo Bonzini2ad60f62022-05-27 16:35:50 +01002144 fi
Alex Bennéefde10962022-10-11 12:34:16 +01002145 test -n "$target_cc"
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002146}
2147
2148write_target_makefile() {
Paolo Bonzinie81785a2022-06-15 11:45:55 +02002149 echo "EXTRA_CFLAGS=$target_cflags"
Paolo Bonzini0825cae2022-09-29 12:42:06 +01002150 if test -z "$target_cc" && test -z "$target_as"; then
2151 test -z "$container_image" && error_exit "Internal error: could not find cross compiler for $1?"
2152 echo "$1: docker-image-$container_image" >> Makefile.prereqs
2153 if test -n "$container_cross_cc"; then
2154 echo "CC=$docker_py cc --cc $container_cross_cc -i qemu/$container_image -s $source_path --"
2155 echo "CCAS=$docker_py cc --cc $container_cross_cc -i qemu/$container_image -s $source_path --"
2156 fi
2157 echo "AR=$docker_py cc --cc $container_cross_ar -i qemu/$container_image -s $source_path --"
2158 echo "AS=$docker_py cc --cc $container_cross_as -i qemu/$container_image -s $source_path --"
2159 echo "LD=$docker_py cc --cc $container_cross_ld -i qemu/$container_image -s $source_path --"
2160 echo "NM=$docker_py cc --cc $container_cross_nm -i qemu/$container_image -s $source_path --"
2161 echo "OBJCOPY=$docker_py cc --cc $container_cross_objcopy -i qemu/$container_image -s $source_path --"
2162 echo "RANLIB=$docker_py cc --cc $container_cross_ranlib -i qemu/$container_image -s $source_path --"
2163 echo "STRIP=$docker_py cc --cc $container_cross_strip -i qemu/$container_image -s $source_path --"
2164 else
2165 if test -n "$target_cc"; then
2166 echo "CC=$target_cc"
2167 echo "CCAS=$target_ccas"
2168 fi
2169 if test -n "$target_ar"; then
2170 echo "AR=$target_ar"
2171 fi
2172 if test -n "$target_as"; then
2173 echo "AS=$target_as"
2174 fi
2175 if test -n "$target_ld"; then
2176 echo "LD=$target_ld"
2177 fi
2178 if test -n "$target_nm"; then
2179 echo "NM=$target_nm"
2180 fi
2181 if test -n "$target_objcopy"; then
2182 echo "OBJCOPY=$target_objcopy"
2183 fi
2184 if test -n "$target_ranlib"; then
2185 echo "RANLIB=$target_ranlib"
2186 fi
2187 if test -n "$target_strip"; then
2188 echo "STRIP=$target_strip"
2189 fi
Paolo Bonzini87eb0142022-05-27 16:35:52 +01002190 fi
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002191}
2192
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002193##########################################
Jagannathan Raman55116962022-06-13 16:26:24 -04002194# check for vfio_user_server
2195
2196case "$vfio_user_server" in
2197 enabled )
2198 if test "$git_submodules_action" != "ignore"; then
2199 git_submodules="${git_submodules} subprojects/libvfio-user"
2200 fi
2201 ;;
2202esac
2203
2204##########################################
Juan Quintelae86ecd42009-08-03 14:45:59 +02002205# End of CC checks
2206# After here, no more $cc or $ld runs
2207
Marc-André Lureaud83414e2018-01-16 16:11:52 +01002208write_c_skeleton
2209
Paolo Bonzinidf42fa72022-04-20 17:33:38 +02002210if test "$fortify_source" = "yes" ; then
Paolo Bonzini086d5f72020-02-03 15:22:17 +01002211 QEMU_CFLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
Paolo Bonzini086d5f72020-02-03 15:22:17 +01002212fi
Paolo Bonzini086d5f72020-02-03 15:22:17 +01002213
Marc-André Lureau247724c2018-01-16 16:11:51 +01002214if test "$have_asan" = "yes"; then
Paolo Bonzinidb5adea2019-12-11 15:34:27 +01002215 QEMU_CFLAGS="-fsanitize=address $QEMU_CFLAGS"
2216 QEMU_LDFLAGS="-fsanitize=address $QEMU_LDFLAGS"
Marc-André Lureaud83414e2018-01-16 16:11:52 +01002217 if test "$have_asan_iface_h" = "no" ; then
2218 echo "ASAN build enabled, but ASAN header missing." \
2219 "Without code annotation, the report may be inferior."
2220 elif test "$have_asan_iface_fiber" = "no" ; then
2221 echo "ASAN build enabled, but ASAN header is too old." \
2222 "Without code annotation, the report may be inferior."
2223 fi
Marc-André Lureau247724c2018-01-16 16:11:51 +01002224fi
Lingfeng Yang0aebab02020-06-12 20:02:23 +01002225if test "$have_tsan" = "yes" ; then
2226 if test "$have_tsan_iface_fiber" = "yes" ; then
2227 QEMU_CFLAGS="-fsanitize=thread $QEMU_CFLAGS"
2228 QEMU_LDFLAGS="-fsanitize=thread $QEMU_LDFLAGS"
2229 else
2230 error_exit "Cannot enable TSAN due to missing fiber annotation interface."
2231 fi
2232elif test "$tsan" = "yes" ; then
2233 error_exit "Cannot enable TSAN due to missing sanitize thread interface."
2234fi
Marc-André Lureau247724c2018-01-16 16:11:51 +01002235if test "$have_ubsan" = "yes"; then
Paolo Bonzinidb5adea2019-12-11 15:34:27 +01002236 QEMU_CFLAGS="-fsanitize=undefined $QEMU_CFLAGS"
2237 QEMU_LDFLAGS="-fsanitize=undefined $QEMU_LDFLAGS"
Marc-André Lureau247724c2018-01-16 16:11:51 +01002238fi
2239
Peter Lieven6542aa92014-02-03 10:26:13 +01002240##########################################
Paolo Bonzinib846ab72021-01-21 11:49:04 +01002241# Guest agent Windows MSI package
Michael Roth9d6bc272015-08-26 10:49:13 -05002242
Paolo Bonzinib846ab72021-01-21 11:49:04 +01002243if test "$QEMU_GA_MANUFACTURER" = ""; then
2244 QEMU_GA_MANUFACTURER=QEMU
2245fi
2246if test "$QEMU_GA_DISTRO" = ""; then
2247 QEMU_GA_DISTRO=Linux
2248fi
2249if test "$QEMU_GA_VERSION" = ""; then
Peter Maydell64708612022-08-25 16:06:59 +01002250 QEMU_GA_VERSION=$(cat "$source_path"/VERSION)
Michael Roth9d6bc272015-08-26 10:49:13 -05002251fi
2252
Paolo Bonzini33ab4782022-05-27 16:35:55 +01002253
2254#######################################
2255# cross-compiled firmware targets
2256
Paolo Bonziniad388842022-05-27 16:35:53 +01002257# Set up build tree symlinks that point back into the source tree
2258# (these can be both files and directories).
2259# Caution: avoid adding files or directories here using wildcards. This
2260# will result in problems later if a new file matching the wildcard is
2261# added to the source tree -- nothing will cause configure to be rerun
2262# so the build tree will be missing the link back to the new file, and
2263# tests might fail. Prefer to keep the relevant files in their own
2264# directory and symlink the directory instead.
2265LINKS="Makefile"
Paolo Bonziniad388842022-05-27 16:35:53 +01002266LINKS="$LINKS pc-bios/optionrom/Makefile"
2267LINKS="$LINKS pc-bios/s390-ccw/Makefile"
Paolo Bonzinid6959182022-05-27 16:35:56 +01002268LINKS="$LINKS pc-bios/vof/Makefile"
Paolo Bonziniad388842022-05-27 16:35:53 +01002269LINKS="$LINKS .gdbinit scripts" # scripts needed by relative path in .gdbinit
2270LINKS="$LINKS tests/avocado tests/data"
2271LINKS="$LINKS tests/qemu-iotests/check"
2272LINKS="$LINKS python"
2273LINKS="$LINKS contrib/plugins/Makefile "
2274for f in $LINKS ; do
2275 if [ -e "$source_path/$f" ]; then
Peter Maydellcc3c71e2022-08-25 16:07:01 +01002276 mkdir -p "$(dirname ./"$f")"
Paolo Bonziniad388842022-05-27 16:35:53 +01002277 symlink "$source_path/$f" "$f"
2278 fi
2279done
2280
Paolo Bonzinib898bf22022-09-29 12:42:05 +01002281echo "# Automatically generated by configure - do not modify" > Makefile.prereqs
2282
Paolo Bonzinica35f782010-05-26 16:08:29 +02002283# Mac OS X ships with a broken assembler
2284roms=
Paolo Bonzini35fd22b2022-10-12 16:33:03 +02002285if have_target i386-softmmu x86_64-softmmu && \
2286 test "$targetos" != "darwin" && test "$targetos" != "sunos" && \
2287 test "$targetos" != "haiku" && \
Paolo Bonzini61cbb352022-09-29 12:41:57 +01002288 probe_target_compiler i386-softmmu; then
Paolo Bonzini70899772022-06-06 11:35:41 +02002289 roms="pc-bios/optionrom"
2290 config_mak=pc-bios/optionrom/config.mak
2291 echo "# Automatically generated by configure - do not modify" > $config_mak
2292 echo "TOPSRC_DIR=$source_path" >> $config_mak
Alex Bennéefde10962022-10-11 12:34:16 +01002293 write_target_makefile >> $config_mak
Paolo Bonzinica35f782010-05-26 16:08:29 +02002294fi
Paolo Bonzinica35f782010-05-26 16:08:29 +02002295
Paolo Bonzini35fd22b2022-10-12 16:33:03 +02002296if have_target ppc-softmmu ppc64-softmmu && \
2297 probe_target_compiler ppc-softmmu; then
Paolo Bonzini76ca98b2022-04-13 15:22:01 +02002298 roms="$roms pc-bios/vof"
Paolo Bonzinid6959182022-05-27 16:35:56 +01002299 config_mak=pc-bios/vof/config.mak
2300 echo "# Automatically generated by configure - do not modify" > $config_mak
2301 echo "SRC_DIR=$source_path/pc-bios/vof" >> $config_mak
Alex Bennéefde10962022-10-11 12:34:16 +01002302 write_target_makefile >> $config_mak
Paolo Bonzinid6959182022-05-27 16:35:56 +01002303fi
2304
Paolo Bonzini9ffed422022-05-27 16:35:54 +01002305# Only build s390-ccw bios if the compiler has -march=z900 or -march=z10
2306# (which is the lowest architecture level that Clang supports)
Paolo Bonzini35fd22b2022-10-12 16:33:03 +02002307if have_target s390x-softmmu && probe_target_compiler s390x-softmmu; then
Alex Bennéefde10962022-10-11 12:34:16 +01002308 write_c_skeleton
2309 do_compiler "$target_cc" $target_cc_cflags -march=z900 -o $TMPO -c $TMPC
2310 has_z900=$?
2311 if [ $has_z900 = 0 ] || do_compiler "$target_cc" $target_cc_cflags -march=z10 -msoft-float -Werror -o $TMPO -c $TMPC; then
2312 if [ $has_z900 != 0 ]; then
2313 echo "WARNING: Your compiler does not support the z900!"
2314 echo " The s390-ccw bios will only work with guest CPUs >= z10."
Thomas Hutha5b2afd2021-05-02 13:22:21 +02002315 fi
Paolo Bonzini76ca98b2022-04-13 15:22:01 +02002316 roms="$roms pc-bios/s390-ccw"
Paolo Bonzini9ffed422022-05-27 16:35:54 +01002317 config_mak=pc-bios/s390-ccw/config-host.mak
2318 echo "# Automatically generated by configure - do not modify" > $config_mak
2319 echo "SRC_PATH=$source_path/pc-bios/s390-ccw" >> $config_mak
Alex Bennéefde10962022-10-11 12:34:16 +01002320 write_target_makefile >> $config_mak
Philippe Mathieu-Daudé1ef6bfc2020-06-15 09:49:19 +02002321 # SLOF is required for building the s390-ccw firmware on s390x,
2322 # since it is using the libnet code from SLOF for network booting.
Paolo Bonzini2d652f22021-05-12 09:21:56 +02002323 git_submodules="${git_submodules} roms/SLOF"
Thomas Huth2e33c3f2019-01-14 13:52:26 +01002324 fi
Christian Borntraeger9933c302013-04-23 01:23:03 +00002325fi
2326
Paolo Bonzini9ffed422022-05-27 16:35:54 +01002327#######################################
2328# generate config-host.mak
2329
Peter Maydell35a7a6f2022-07-20 16:26:27 +01002330if ! (GIT="$git" "$source_path/scripts/git-submodule.sh" "$git_submodules_action" "$git_submodules"); then
Dan Streetman7d7dbf92021-01-19 12:20:46 -05002331 exit 1
Yonggang Luo5d91a2e2020-09-03 01:00:49 +08002332fi
Yonggang Luo5d91a2e2020-09-03 01:00:49 +08002333
Juan Quintela98ec69a2009-07-16 18:34:18 +02002334config_host_mak="config-host.mak"
bellard97a847b2003-08-10 21:36:04 +00002335
Juan Quintela98ec69a2009-07-16 18:34:18 +02002336echo "# Automatically generated by configure - do not modify" > $config_host_mak
Juan Quintela98ec69a2009-07-16 18:34:18 +02002337echo >> $config_host_mak
Juan Quintela98ec69a2009-07-16 18:34:18 +02002338
Paolo Bonzinie6c3b0f2010-10-21 10:18:35 +02002339echo all: >> $config_host_mak
Daniel P. Berrangecc84d632017-10-20 15:02:43 +01002340echo "GIT=$git" >> $config_host_mak
Daniel P. Berrangeaef45d52017-09-29 11:11:56 +01002341echo "GIT_SUBMODULES=$git_submodules" >> $config_host_mak
Dan Streetman7d7dbf92021-01-19 12:20:46 -05002342echo "GIT_SUBMODULES_ACTION=$git_submodules_action" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002343
aurel32f8393942009-04-13 18:45:38 +00002344if test "$debug_tcg" = "yes" ; then
Juan Quintela2358a492009-07-27 16:13:25 +02002345 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
aurel32f8393942009-04-13 18:45:38 +00002346fi
bellard67b915a2004-03-31 23:37:16 +00002347if test "$mingw32" = "yes" ; then
Juan Quintela98ec69a2009-07-16 18:34:18 +02002348 echo "CONFIG_WIN32=y" >> $config_host_mak
Paolo Bonzinib846ab72021-01-21 11:49:04 +01002349 echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER}" >> $config_host_mak
2350 echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO}" >> $config_host_mak
2351 echo "QEMU_GA_VERSION=${QEMU_GA_VERSION}" >> $config_host_mak
pbrook210fa552007-02-27 21:04:49 +00002352else
Juan Quintela35f4df22009-07-27 16:13:07 +02002353 echo "CONFIG_POSIX=y" >> $config_host_mak
bellard67b915a2004-03-31 23:37:16 +00002354fi
blueswir1128ab2f2008-08-15 18:33:42 +00002355
Mark McLoughlindffcb712009-10-22 17:49:11 +01002356if test "$linux" = "yes" ; then
2357 echo "CONFIG_LINUX=y" >> $config_host_mak
2358fi
2359
bellard83fb7ad2004-07-05 21:25:26 +00002360if test "$darwin" = "yes" ; then
Juan Quintela98ec69a2009-07-16 18:34:18 +02002361 echo "CONFIG_DARWIN=y" >> $config_host_mak
bellard83fb7ad2004-07-05 21:25:26 +00002362fi
malcb29fe3e2008-11-18 01:42:22 +00002363
bellardec530c82006-04-25 22:36:06 +00002364if test "$solaris" = "yes" ; then
Juan Quintela98ec69a2009-07-16 18:34:18 +02002365 echo "CONFIG_SOLARIS=y" >> $config_host_mak
bellardec530c82006-04-25 22:36:06 +00002366fi
bellard97a847b2003-08-10 21:36:04 +00002367if test "$static" = "yes" ; then
Juan Quintela98ec69a2009-07-16 18:34:18 +02002368 echo "CONFIG_STATIC=y" >> $config_host_mak
bellard97a847b2003-08-10 21:36:04 +00002369fi
Juan Quintela98ec69a2009-07-16 18:34:18 +02002370echo "SRC_PATH=$source_path" >> $config_host_mak
Alex Bennée2b1f35b2018-07-04 07:30:11 +01002371echo "TARGET_DIRS=$target_list" >> $config_host_mak
Fam Zheng17969262014-02-10 14:48:56 +08002372if test "$modules" = "yes"; then
2373 echo "CONFIG_MODULES=y" >> $config_host_mak
2374fi
Jan Vesely277abf12016-04-29 13:15:23 -04002375
bellard83fb7ad2004-07-05 21:25:26 +00002376# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +00002377if [ "$bsd" = "yes" ] ; then
Juan Quintela2358a492009-07-27 16:13:25 +02002378 echo "CONFIG_BSD=y" >> $config_host_mak
bellard7d3505c2004-05-12 19:32:15 +00002379fi
2380
Peter Maydell7c2acc72013-04-08 12:11:27 +01002381echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak
Peter Lieven7d992e42016-09-27 11:58:45 +02002382
Marc-André Lureaud83414e2018-01-16 16:11:52 +01002383if test "$have_asan_iface_fiber" = "yes" ; then
2384 echo "CONFIG_ASAN_IFACE_FIBER=y" >> $config_host_mak
2385fi
2386
Lingfeng Yang0aebab02020-06-12 20:02:23 +01002387if test "$have_tsan" = "yes" && test "$have_tsan_iface_fiber" = "yes" ; then
2388 echo "CONFIG_TSAN=y" >> $config_host_mak
2389fi
2390
Alex Bennée40e8c6f2019-06-13 14:52:25 +01002391if test "$plugins" = "yes" ; then
2392 echo "CONFIG_PLUGIN=y" >> $config_host_mak
Alex Bennée40e8c6f2019-06-13 14:52:25 +01002393fi
2394
Alex Bennéeb1863cc2021-01-08 22:42:39 +00002395if test -n "$gdb_bin"; then
2396 gdb_version=$($gdb_bin --version | head -n 1)
Alex Bennéed6a66c82021-02-02 13:39:53 +00002397 if version_ge ${gdb_version##* } 9.1; then
Alex Bennéeb1863cc2021-01-08 22:42:39 +00002398 echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
Alex Bennée48543dd2022-09-29 12:41:45 +01002399 else
2400 gdb_bin=""
Alex Bennéeb1863cc2021-01-08 22:42:39 +00002401 fi
Alex Bennéef48e5902020-03-16 17:21:48 +00002402fi
2403
Paolo Bonzinic4575b52022-09-29 12:41:58 +01002404if test "$container" != no; then
2405 echo "ENGINE=$container" >> $config_host_mak
2406fi
Juan Quintela98ec69a2009-07-16 18:34:18 +02002407echo "ROMS=$roms" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002408echo "MAKE=$make" >> $config_host_mak
Blue Swirlc886edf2011-07-22 21:08:09 +00002409echo "PYTHON=$python" >> $config_host_mak
Alex Bennée39d87c82020-03-03 15:06:20 +00002410echo "GENISOIMAGE=$genisoimage" >> $config_host_mak
Paolo Bonzinia5665052019-06-10 12:05:14 +02002411echo "MESON=$meson" >> $config_host_mak
Paolo Bonzini09e93322020-08-13 09:28:11 -04002412echo "NINJA=$ninja" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002413echo "CC=$cc" >> $config_host_mak
Juan Quintelaa558ee12009-08-03 14:46:21 +02002414echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +01002415echo "QEMU_OBJCFLAGS=$QEMU_OBJCFLAGS" >> $config_host_mak
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002416echo "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak
2417echo "GLIB_LIBS=$glib_libs" >> $config_host_mak
Marc-André Lureau5b9e7d02022-05-25 16:41:39 +02002418echo "GLIB_BINDIR=$glib_bindir" >> $config_host_mak
Marc-André Lureaud83acfd2021-10-09 17:37:40 +04002419echo "GLIB_VERSION=$(pkg-config --modversion glib-2.0)" >> $config_host_mak
Philippe Mathieu-Daudé8a99e9a2018-04-15 20:05:19 -03002420echo "QEMU_LDFLAGS=$QEMU_LDFLAGS" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002421echo "EXESUF=$EXESUF" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002422
Peter Maydell6efd7512011-11-30 11:59:04 +00002423# use included Linux headers
2424if test "$linux" = "yes" ; then
Andreas Färbera307beb2012-06-14 15:14:33 +00002425 mkdir -p linux-headers
Peter Maydell6efd7512011-11-30 11:59:04 +00002426 case "$cpu" in
Paolo Bonzini4da270b2021-11-09 09:36:10 +01002427 i386|x86_64)
Peter Maydell08312a62012-08-03 13:51:25 +01002428 linux_arch=x86
Peter Maydell6efd7512011-11-30 11:59:04 +00002429 ;;
Paolo Bonzinid8ff8922021-11-09 09:18:20 +01002430 ppc|ppc64)
Peter Maydell08312a62012-08-03 13:51:25 +01002431 linux_arch=powerpc
Peter Maydell6efd7512011-11-30 11:59:04 +00002432 ;;
2433 s390x)
Peter Maydell08312a62012-08-03 13:51:25 +01002434 linux_arch=s390
2435 ;;
Claudio Fontana1f080312013-06-12 16:20:23 +01002436 aarch64)
2437 linux_arch=arm64
2438 ;;
WANG Xueruidfcf9002021-12-21 13:41:04 +08002439 loongarch*)
2440 linux_arch=loongarch
2441 ;;
Sanjay Lal222e7d12014-06-17 23:10:36 +01002442 mips64)
2443 linux_arch=mips
2444 ;;
Peter Maydell08312a62012-08-03 13:51:25 +01002445 *)
2446 # For most CPUs the kernel architecture name and QEMU CPU name match.
2447 linux_arch="$cpu"
Peter Maydell6efd7512011-11-30 11:59:04 +00002448 ;;
2449 esac
Peter Maydell08312a62012-08-03 13:51:25 +01002450 # For non-KVM architectures we will not have asm headers
2451 if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then
2452 symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm
2453 fi
Peter Maydell6efd7512011-11-30 11:59:04 +00002454fi
2455
bellard1d14ffa2005-10-30 18:58:22 +00002456for target in $target_list; do
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04002457 target_dir="$target"
Philippe Mathieu-Daudé57a93f12021-11-09 15:45:04 +01002458 target_name=$(echo $target | cut -d '-' -f 1)$EXESUF
Peter Maydell64708612022-08-25 16:06:59 +01002459 mkdir -p "$target_dir"
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04002460 case $target in
2461 *-user) symlink "../qemu-$target_name" "$target_dir/qemu-$target_name" ;;
2462 *) symlink "../qemu-system-$target_name" "$target_dir/qemu-system-$target_name" ;;
2463 esac
2464done
bellard7d132992003-03-06 23:23:54 +00002465
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04002466if test "$default_targets" = "yes"; then
2467 echo "CONFIG_DEFAULT_TARGETS=y" >> $config_host_mak
2468fi
Peter Crosthwaitea540f152013-04-18 14:47:31 +10002469
John Snowfd0e6052015-03-25 18:57:39 -04002470if test "$ccache_cpp2" = "yes"; then
2471 echo "export CCACHE_CPP2=y" >> $config_host_mak
2472fi
2473
Daniele Buono1e4f6062020-05-29 16:51:21 -04002474if test "$safe_stack" = "yes"; then
2475 echo "CONFIG_SAFESTACK=y" >> $config_host_mak
2476fi
2477
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002478# tests/tcg configuration
Paolo Bonzinib898bf22022-09-29 12:42:05 +01002479(config_host_mak=tests/tcg/config-host.mak
Paolo Bonzinid6743422022-09-29 12:42:00 +01002480mkdir -p tests/tcg
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002481echo "# Automatically generated by configure - do not modify" > $config_host_mak
2482echo "SRC_PATH=$source_path" >> $config_host_mak
2483echo "HOST_CC=$host_cc" >> $config_host_mak
2484
Alex Bennée48543dd2022-09-29 12:41:45 +01002485# versioned checked in the main config_host.mak above
2486if test -n "$gdb_bin"; then
2487 echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
2488fi
Paolo Bonzinid1d94d92022-10-27 19:36:32 +01002489if test "$plugins" = "yes" ; then
2490 echo "CONFIG_PLUGIN=y" >> $config_host_mak
2491fi
Alex Bennée48543dd2022-09-29 12:41:45 +01002492
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002493tcg_tests_targets=
2494for target in $target_list; do
2495 arch=${target%%-*}
2496
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002497 case $target in
Paolo Bonzinic48a5c42022-06-13 18:12:56 +01002498 xtensa*-linux-user)
2499 # the toolchain is not complete with headers, only build softmmu tests
2500 continue
2501 ;;
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002502 *-softmmu)
Peter Maydell64708612022-08-25 16:06:59 +01002503 test -f "$source_path/tests/tcg/$arch/Makefile.softmmu-target" || continue
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002504 qemu="qemu-system-$arch"
2505 ;;
2506 *-linux-user|*-bsd-user)
2507 qemu="qemu-$arch"
2508 ;;
2509 esac
2510
Alex Bennéefde10962022-10-11 12:34:16 +01002511 if probe_target_compiler $target || test -n "$container_image"; then
Paolo Bonzini0825cae2022-09-29 12:42:06 +01002512 test -n "$container_image" && build_static=y
Paolo Bonzinid6743422022-09-29 12:42:00 +01002513 mkdir -p "tests/tcg/$target"
Paolo Bonzinic7022a72022-09-29 12:42:07 +01002514 config_target_mak=tests/tcg/$target/config-target.mak
Paolo Bonzinid6743422022-09-29 12:42:00 +01002515 ln -sf "$source_path/tests/tcg/Makefile.target" "tests/tcg/$target/Makefile"
Paolo Bonzinic7022a72022-09-29 12:42:07 +01002516 echo "# Automatically generated by configure - do not modify" > "$config_target_mak"
2517 echo "TARGET_NAME=$arch" >> "$config_target_mak"
Paolo Bonzinia3e28f82022-09-29 12:41:59 +01002518 echo "TARGET=$target" >> "$config_target_mak"
Paolo Bonzinic7022a72022-09-29 12:42:07 +01002519 write_target_makefile "build-tcg-tests-$target" >> "$config_target_mak"
Paolo Bonzini15b273f2022-09-29 12:42:04 +01002520 echo "BUILD_STATIC=$build_static" >> "$config_target_mak"
Paolo Bonzinic7022a72022-09-29 12:42:07 +01002521 echo "QEMU=$PWD/$qemu" >> "$config_target_mak"
Paolo Bonzinib898bf22022-09-29 12:42:05 +01002522 echo "run-tcg-tests-$target: $qemu\$(EXESUF)" >> Makefile.prereqs
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002523 tcg_tests_targets="$tcg_tests_targets $target"
2524 fi
Paolo Bonzini2038f8c2019-08-07 16:35:23 +02002525done
Paolo Bonzinib898bf22022-09-29 12:42:05 +01002526echo "TCG_TESTS_TARGETS=$tcg_tests_targets" >> config-host.mak)
Paolo Bonzini2038f8c2019-08-07 16:35:23 +02002527
Paolo Bonzinia5665052019-06-10 12:05:14 +02002528if test "$skip_meson" = no; then
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002529 cross="config-meson.cross.new"
2530 meson_quote() {
Paolo Bonziniac7ebcc2021-11-05 10:07:37 +01002531 test $# = 0 && return
Paolo Bonzini47b30832020-09-23 05:26:17 -04002532 echo "'$(echo $* | sed "s/ /','/g")'"
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002533 }
Marc-André Lureaufc929892019-07-13 01:47:54 +04002534
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002535 echo "# Automatically generated by configure - do not modify" > $cross
2536 echo "[properties]" >> $cross
Alex Bennéed1d5e9e2021-07-07 14:17:44 +01002537
2538 # unroll any custom device configs
Alex Bennée11bdcfc2021-07-21 00:26:38 +01002539 for a in $device_archs; do
2540 eval "c=\$devices_${a}"
2541 echo "${a}-softmmu = '$c'" >> $cross
2542 done
Alex Bennéed1d5e9e2021-07-07 14:17:44 +01002543
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002544 echo "[built-in options]" >> $cross
Paolo Bonzinia2866662021-11-05 10:09:26 +01002545 echo "c_args = [$(meson_quote $CFLAGS $EXTRA_CFLAGS)]" >> $cross
2546 echo "cpp_args = [$(meson_quote $CXXFLAGS $EXTRA_CXXFLAGS)]" >> $cross
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +01002547 test -n "$objcc" && echo "objc_args = [$(meson_quote $OBJCFLAGS $EXTRA_OBJCFLAGS)]" >> $cross
Paolo Bonzinia2866662021-11-05 10:09:26 +01002548 echo "c_link_args = [$(meson_quote $CFLAGS $LDFLAGS $EXTRA_CFLAGS $EXTRA_LDFLAGS)]" >> $cross
2549 echo "cpp_link_args = [$(meson_quote $CXXFLAGS $LDFLAGS $EXTRA_CXXFLAGS $EXTRA_LDFLAGS)]" >> $cross
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002550 echo "[binaries]" >> $cross
Paolo Bonzini4dba2782021-09-29 17:14:43 +02002551 echo "c = [$(meson_quote $cc $CPU_CFLAGS)]" >> $cross
2552 test -n "$cxx" && echo "cpp = [$(meson_quote $cxx $CPU_CFLAGS)]" >> $cross
2553 test -n "$objcc" && echo "objc = [$(meson_quote $objcc $CPU_CFLAGS)]" >> $cross
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002554 echo "ar = [$(meson_quote $ar)]" >> $cross
2555 echo "nm = [$(meson_quote $nm)]" >> $cross
2556 echo "pkgconfig = [$(meson_quote $pkg_config_exe)]" >> $cross
2557 echo "ranlib = [$(meson_quote $ranlib)]" >> $cross
2558 if has $sdl2_config; then
2559 echo "sdl2-config = [$(meson_quote $sdl2_config)]" >> $cross
2560 fi
2561 echo "strip = [$(meson_quote $strip)]" >> $cross
Konstantin Kostiuk158bb222022-04-28 21:15:25 +03002562 echo "widl = [$(meson_quote $widl)]" >> $cross
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002563 echo "windres = [$(meson_quote $windres)]" >> $cross
2564 if test "$cross_compile" = "yes"; then
Marc-André Lureaufc929892019-07-13 01:47:54 +04002565 cross_arg="--cross-file config-meson.cross"
Marc-André Lureaufc929892019-07-13 01:47:54 +04002566 echo "[host_machine]" >> $cross
Paolo Bonziniba7c60c2021-11-08 14:47:54 +01002567 echo "system = '$targetos'" >> $cross
Paolo Bonzini823eb012021-11-08 14:18:17 +01002568 case "$cpu" in
Joelle van Dynef6bca9d2021-01-25 17:24:54 -08002569 i386)
Marc-André Lureaufc929892019-07-13 01:47:54 +04002570 echo "cpu_family = 'x86'" >> $cross
2571 ;;
Marc-André Lureaufc929892019-07-13 01:47:54 +04002572 *)
Paolo Bonzini823eb012021-11-08 14:18:17 +01002573 echo "cpu_family = '$cpu'" >> $cross
Marc-André Lureaufc929892019-07-13 01:47:54 +04002574 ;;
2575 esac
2576 echo "cpu = '$cpu'" >> $cross
2577 if test "$bigendian" = "yes" ; then
2578 echo "endian = 'big'" >> $cross
2579 else
2580 echo "endian = 'little'" >> $cross
2581 fi
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002582 else
Marc-André Lureaufc929892019-07-13 01:47:54 +04002583 cross_arg="--native-file config-meson.cross"
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002584 fi
2585 mv $cross config-meson.cross
Marc-André Lureaufc929892019-07-13 01:47:54 +04002586
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002587 rm -rf meson-private meson-info meson-logs
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002588
2589 # Built-in options
2590 test "$bindir" != "bin" && meson_option_add "-Dbindir=$bindir"
2591 test "$default_feature" = no && meson_option_add -Dauto_features=disabled
2592 test "$pie" = no && meson_option_add -Db_pie=false
2593 test "$werror" = yes && meson_option_add -Dwerror=true
2594
2595 # QEMU options
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002596 test "$cfi" != false && meson_option_add "-Dcfi=$cfi"
2597 test "$fdt" != auto && meson_option_add "-Dfdt=$fdt"
2598 test -n "${LIB_FUZZING_ENGINE+xxx}" && meson_option_add "-Dfuzzing_engine=$LIB_FUZZING_ENGINE"
2599 test "$qemu_suffix" != qemu && meson_option_add "-Dqemu_suffix=$qemu_suffix"
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002600 test "$smbd" != '' && meson_option_add "-Dsmbd=$smbd"
2601 test "$tcg" != enabled && meson_option_add "-Dtcg=$tcg"
Jagannathan Raman55116962022-06-13 16:26:24 -04002602 test "$vfio_user_server" != auto && meson_option_add "-Dvfio_user_server=$vfio_user_server"
Paolo Bonzini61d63092021-10-07 15:08:28 +02002603 run_meson() {
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002604 NINJA=$ninja $meson setup --prefix "$prefix" "$@" $cross_arg "$PWD" "$source_path"
Paolo Bonzini61d63092021-10-07 15:08:28 +02002605 }
2606 eval run_meson $meson_options
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002607 if test "$?" -ne 0 ; then
2608 error_exit "meson setup failed"
2609 fi
Paolo Bonzini699d3882021-03-16 08:27:40 +01002610else
2611 if test -f meson-private/cmd_line.txt; then
2612 # Adjust old command line options whose type was changed
2613 # Avoids having to use "setup --wipe" when Meson is upgraded
2614 perl -i -ne '
2615 s/^gettext = true$/gettext = auto/;
2616 s/^gettext = false$/gettext = disabled/;
Paolo Bonzini654d6b02021-02-09 14:59:26 +01002617 /^b_staticpic/ && next;
Paolo Bonzini699d3882021-03-16 08:27:40 +01002618 print;' meson-private/cmd_line.txt
2619 fi
Paolo Bonzinia5665052019-06-10 12:05:14 +02002620fi
2621
Michael S. Tsirkindc655402014-03-09 17:37:49 +02002622# Save the configure command line for later reuse.
2623cat <<EOD >config.status
2624#!/bin/sh
2625# Generated by configure.
2626# Run this file to recreate the current configuration.
2627# Compiler output produced by configure, useful for debugging
2628# configure, is in config.log if it exists.
2629EOD
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002630
2631preserve_env() {
2632 envname=$1
2633
2634 eval envval=\$$envname
2635
2636 if test -n "$envval"
2637 then
2638 echo "$envname='$envval'" >> config.status
2639 echo "export $envname" >> config.status
2640 else
2641 echo "unset $envname" >> config.status
2642 fi
2643}
2644
2645# Preserve various env variables that influence what
2646# features/build target configure will detect
2647preserve_env AR
2648preserve_env AS
2649preserve_env CC
Paolo Bonzini8009da02021-11-05 10:08:43 +01002650preserve_env CFLAGS
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002651preserve_env CXX
Paolo Bonzini8009da02021-11-05 10:08:43 +01002652preserve_env CXXFLAGS
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002653preserve_env LD
Paolo Bonzini8009da02021-11-05 10:08:43 +01002654preserve_env LDFLAGS
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002655preserve_env LD_LIBRARY_PATH
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002656preserve_env MAKE
2657preserve_env NM
Paolo Bonzinib5569e52022-06-07 12:14:47 +02002658preserve_env OBJCFLAGS
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002659preserve_env OBJCOPY
2660preserve_env PATH
2661preserve_env PKG_CONFIG
2662preserve_env PKG_CONFIG_LIBDIR
2663preserve_env PKG_CONFIG_PATH
2664preserve_env PYTHON
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002665preserve_env SDL2_CONFIG
2666preserve_env SMBD
2667preserve_env STRIP
Konstantin Kostiuk158bb222022-04-28 21:15:25 +03002668preserve_env WIDL
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002669preserve_env WINDRES
2670
Michael S. Tsirkindc655402014-03-09 17:37:49 +02002671printf "exec" >>config.status
Paolo Bonzinia5665052019-06-10 12:05:14 +02002672for i in "$0" "$@"; do
Paolo Bonzini835af892020-09-08 13:20:45 +02002673 test "$i" = --skip-meson || printf " %s" "$(quote_sh "$i")" >>config.status
Paolo Bonzinia5665052019-06-10 12:05:14 +02002674done
Dr. David Alan Gilbertcf7cc922016-01-12 11:58:48 +00002675echo ' "$@"' >>config.status
Michael S. Tsirkindc655402014-03-09 17:37:49 +02002676chmod +x config.status
2677
Peter Maydell8cd05ab2014-05-23 17:07:24 +01002678rm -r "$TMPDIR1"