blob: f8308926bbc6b99f5984f97f3cee5d4fb745ba8f [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
Dinah Baumf160a5b2023-02-21 06:06:30 -050034 if ! mkdir build || ! touch $MARKER
35 then
36 echo "ERROR: Could not create ./build directory. Check the permissions on"
37 echo "your source directory, or try doing an out-of-tree build."
38 exit 1
39 fi
Daniel P. Berrangédedad022020-08-21 12:22:04 +020040
41 cat > GNUmakefile <<'EOF'
42# This file is auto-generated by configure to support in-source tree
43# 'make' command invocation
44
45ifeq ($(MAKECMDGOALS),)
46recurse: all
47endif
48
49.NOTPARALLEL: %
50%: force
51 @echo 'changing dir to build for $(MAKE) "$(MAKECMDGOALS)"...'
52 @$(MAKE) -C build -f Makefile $(MAKECMDGOALS)
53 @if test "$(MAKECMDGOALS)" = "distclean" && \
54 test -e build/auto-created-by-configure ; \
55 then \
56 rm -rf build GNUmakefile ; \
57 fi
58force: ;
59.PHONY: force
60GNUmakefile: ;
61
62EOF
63 cd build
Peter Maydell64708612022-08-25 16:06:59 +010064 exec "$source_path/configure" "$@"
Daniel P. Berrangédedad022020-08-21 12:22:04 +020065fi
66
Peter Maydell8cd05ab2014-05-23 17:07:24 +010067# Temporary directory used for files created while
68# configure runs. Since it is in the build directory
69# we can safely blow away any previous version of it
70# (and we need not jump through hoops to try to delete
71# it when configure exits.)
72TMPDIR1="config-temp"
73rm -rf "${TMPDIR1}"
Peter Maydell563661c2022-08-25 16:07:02 +010074if ! mkdir -p "${TMPDIR1}"; then
Peter Maydell8cd05ab2014-05-23 17:07:24 +010075 echo "ERROR: failed to create temporary directory"
76 exit 1
bellard7d132992003-03-06 23:23:54 +000077fi
78
Peter Maydell8cd05ab2014-05-23 17:07:24 +010079TMPB="qemu-conf"
80TMPC="${TMPDIR1}/${TMPB}.c"
Don Slutz66518bf2014-01-02 21:12:46 -050081TMPO="${TMPDIR1}/${TMPB}.o"
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +010082TMPM="${TMPDIR1}/${TMPB}.m"
Peter Maydell8cd05ab2014-05-23 17:07:24 +010083TMPE="${TMPDIR1}/${TMPB}.exe"
bellard7d132992003-03-06 23:23:54 +000084
Gerd Hoffmannda1d85e2010-04-23 13:44:10 +020085rm -f config.log
malc9ac81bb2008-11-29 20:09:56 +000086
Peter Maydellb48e3612011-11-23 17:26:44 +000087# Print a helpful header at the top of config.log
88echo "# QEMU configure log $(date)" >> config.log
Peter Maydell979ae162012-03-07 12:16:29 +000089printf "# Configured with:" >> config.log
Alex Bennée7f788772022-12-21 09:04:08 +000090# repeat the invocation to log and stdout for CI
91invoke=$(printf " '%s'" "$0" "$@")
92test -n "$GITLAB_CI" && echo "configuring with: $invoke"
93{ echo "$invoke"; echo; echo "#"; } >> config.log
Peter Maydellb48e3612011-11-23 17:26:44 +000094
Paolo Bonzini835af892020-09-08 13:20:45 +020095quote_sh() {
96 printf "%s" "$1" | sed "s,','\\\\'',g; s,.*,'&',"
97}
98
Paolo Bonzinid880a3b2017-07-03 16:58:28 +020099print_error() {
100 (echo
Peter Maydell76ad07a2013-04-08 12:11:26 +0100101 echo "ERROR: $1"
102 while test -n "$2"; do
103 echo " $2"
104 shift
105 done
Paolo Bonzinid880a3b2017-07-03 16:58:28 +0200106 echo) >&2
107}
108
109error_exit() {
110 print_error "$@"
Peter Maydell76ad07a2013-04-08 12:11:26 +0100111 exit 1
112}
113
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000114do_compiler() {
Paolo Bonzinicd362de2022-05-27 16:35:48 +0100115 # Run the compiler, capturing its output to the log. First argument
116 # is compiler binary to execute.
Peter Maydellb3b54722022-08-25 16:07:03 +0100117 compiler="$1"
Paolo Bonzinicd362de2022-05-27 16:35:48 +0100118 shift
119 if test -n "$BASH_VERSION"; then eval '
120 echo >>config.log "
121funcs: ${FUNCNAME[*]}
122lines: ${BASH_LINENO[*]}"
123 '; fi
124 echo $compiler "$@" >> config.log
125 $compiler "$@" >> config.log 2>&1 || return $?
126}
127
128do_compiler_werror() {
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000129 # Run the compiler, capturing its output to the log. First argument
130 # is compiler binary to execute.
David CARLIER630d86b2020-07-18 14:19:10 +0100131 compiler="$1"
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000132 shift
Ian Jackson8bbe05d2017-09-25 16:41:03 +0100133 if test -n "$BASH_VERSION"; then eval '
134 echo >>config.log "
135funcs: ${FUNCNAME[*]}
136lines: ${BASH_LINENO[*]}"
137 '; fi
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000138 echo $compiler "$@" >> config.log
139 $compiler "$@" >> config.log 2>&1 || return $?
Peter Maydell8dc38a72012-07-18 15:10:28 +0100140 # Test passed. If this is an --enable-werror build, rerun
141 # the test with -Werror and bail out if it fails. This
142 # makes warning-generating-errors in configure test code
143 # obvious to developers.
144 if test "$werror" != "yes"; then
145 return 0
146 fi
147 # Don't bother rerunning the compile if we were already using -Werror
148 case "$*" in
149 *-Werror*)
150 return 0
151 ;;
152 esac
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000153 echo $compiler -Werror "$@" >> config.log
154 $compiler -Werror "$@" >> config.log 2>&1 && return $?
Peter Maydell76ad07a2013-04-08 12:11:26 +0100155 error_exit "configure test passed without -Werror but failed with -Werror." \
156 "This is probably a bug in the configure script. The failing command" \
157 "will be at the bottom of config.log." \
158 "You can run configure with --disable-werror to bypass this check."
Peter Maydell8dc38a72012-07-18 15:10:28 +0100159}
160
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000161do_cc() {
Paolo Bonzinicd362de2022-05-27 16:35:48 +0100162 do_compiler_werror "$cc" $CPU_CFLAGS "$@"
Peter Maydell9c83ffd2014-02-25 18:27:49 +0000163}
164
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +0100165do_objc() {
Paolo Bonzinicd362de2022-05-27 16:35:48 +0100166 do_compiler_werror "$objcc" $CPU_CFLAGS "$@"
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +0100167}
168
Richard Henderson00849b92020-06-17 13:13:06 -0700169# Append $2 to the variable named $1, with space separation
170add_to() {
171 eval $1=\${$1:+\"\$$1 \"}\$2
172}
173
Juan Quintela52166aa2009-08-03 14:46:03 +0200174compile_object() {
John Snowfd0e6052015-03-25 18:57:39 -0400175 local_cflags="$1"
Paolo Bonzinia2866662021-11-05 10:09:26 +0100176 do_cc $CFLAGS $EXTRA_CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -c -o $TMPO $TMPC
Juan Quintela52166aa2009-08-03 14:46:03 +0200177}
178
179compile_prog() {
180 local_cflags="$1"
181 local_ldflags="$2"
Paolo Bonzinia2866662021-11-05 10:09:26 +0100182 do_cc $CFLAGS $EXTRA_CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC \
183 $LDFLAGS $EXTRA_LDFLAGS $CONFIGURE_LDFLAGS $QEMU_LDFLAGS $local_ldflags
Juan Quintela52166aa2009-08-03 14:46:03 +0200184}
185
Paolo Bonzini11568d62010-12-23 11:43:58 +0100186# symbolically link $1 to $2. Portable version of "ln -sf".
187symlink() {
Stefan Weil72b8b5a2012-03-19 13:20:47 +0100188 rm -rf "$2"
Anthony Liguoriec5b06d2012-06-06 16:57:00 +0800189 mkdir -p "$(dirname "$2")"
Stefan Weil72b8b5a2012-03-19 13:20:47 +0100190 ln -s "$1" "$2"
Paolo Bonzini11568d62010-12-23 11:43:58 +0100191}
192
Loïc Minier0dba6192010-01-28 21:26:51 +0000193# check whether a command is available to this shell (may be either an
194# executable or a builtin)
195has() {
196 type "$1" >/dev/null 2>&1
197}
198
Marc-André Lureau0a01d762019-08-21 11:21:16 +0400199version_ge () {
Alex Bennée2df52b92021-02-02 13:39:52 +0000200 local_ver1=$(expr "$1" : '\([0-9.]*\)' | tr . ' ')
201 local_ver2=$(echo "$2" | tr . ' ')
Marc-André Lureau0a01d762019-08-21 11:21:16 +0400202 while true; do
203 set x $local_ver1
204 local_first=${2-0}
Stefano Garzarellac44a33e2020-08-21 22:35:58 +0200205 # 'shift 2' if $2 is set, or 'shift' if $2 is not set
206 shift ${2:+2}
Marc-André Lureau0a01d762019-08-21 11:21:16 +0400207 local_ver1=$*
208 set x $local_ver2
209 # the second argument finished, the first must be greater or equal
210 test $# = 1 && return 0
211 test $local_first -lt $2 && return 1
212 test $local_first -gt $2 && return 0
Stefano Garzarellac44a33e2020-08-21 22:35:58 +0200213 shift ${2:+2}
Marc-André Lureau0a01d762019-08-21 11:21:16 +0400214 local_ver2=$*
215 done
216}
217
Antonio Ospite4ace32e2019-05-26 16:47:47 +0200218if printf %s\\n "$source_path" "$PWD" | grep -q "[[:space:]:]";
219then
220 error_exit "main directory cannot contain spaces nor colons"
221fi
222
Antonio Ospite14211822019-05-26 16:47:46 +0200223# default parameters
Juan Quintela2ff6b912009-08-03 14:45:55 +0200224cpu=""
bellard43ce4df2003-06-09 19:53:12 +0000225static="no"
Joelle van Dyne3812c0c2021-01-25 17:24:48 -0800226cross_compile="no"
bellard7d132992003-03-06 23:23:54 +0000227cross_prefix=""
Peter Maydelle49d0212012-12-07 15:39:13 +0000228host_cc="cc"
Steven Noonan63678e12014-03-28 17:19:02 +0100229stack_protector=""
Daniele Buono1e4f6062020-05-29 16:51:21 -0400230safe_stack=""
Alex Bennéeafc3a8f2019-11-28 16:35:24 +0100231use_containers="yes"
Alex Bennéef2385392020-04-30 20:01:14 +0100232gdb_bin=$(command -v "gdb-multiarch" || command -v "gdb")
Alex Bennéebcbc36a2023-03-02 18:57:59 -0800233gdb_arches=""
Emilio Cotae3feb2c2023-02-05 11:37:57 -0500234glib_has_gslice="no"
aliguoriac0df512008-12-29 17:14:15 +0000235
Daniel P. Berrange92712822017-09-29 11:11:58 +0100236if test -e "$source_path/.git"
237then
Dan Streetman7d7dbf92021-01-19 12:20:46 -0500238 git_submodules_action="update"
Daniel P. Berrange92712822017-09-29 11:11:58 +0100239else
Dan Streetman7d7dbf92021-01-19 12:20:46 -0500240 git_submodules_action="ignore"
Daniel P. Berrange92712822017-09-29 11:11:58 +0100241fi
Paolo Bonzini2d652f22021-05-12 09:21:56 +0200242
243git_submodules="ui/keycodemapdb"
Daniel P. Berrangecc84d632017-10-20 15:02:43 +0100244git="git"
aliguoriac0df512008-12-29 17:14:15 +0000245
Stefan Weilafb63eb2012-09-26 22:04:38 +0200246# Don't accept a target_list environment variable.
247unset target_list
Alex Bennée447e1332019-03-19 11:59:12 +0000248unset target_list_exclude
Paolo Bonzini377529c2010-12-23 11:43:50 +0100249
250# Default value for a variable defining feature "foo".
251# * foo="no" feature will only be used if --enable-foo arg is given
252# * foo="" feature will be searched for, and if found, will be used
253# unless --disable-foo is given
254# * foo="yes" this value will only be set by --enable-foo flag.
255# feature will searched for,
256# if not found, configure exits with error
257#
258# Always add --enable-foo and --disable-foo command line args.
259# Distributions want to ensure that several features are compiled in, and it
260# is impossible without a --enable-foo that exits if a feature is not found.
261
Alex Bennéec87ea112020-12-10 19:04:13 +0000262default_feature=""
263# parse CC options second
264for opt do
265 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
266 case "$opt" in
267 --without-default-features)
268 default_feature="no"
269 ;;
270 esac
271done
272
Paolo Bonzinia2866662021-11-05 10:09:26 +0100273EXTRA_CFLAGS=""
274EXTRA_CXXFLAGS=""
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +0100275EXTRA_OBJCFLAGS=""
Paolo Bonzinia2866662021-11-05 10:09:26 +0100276EXTRA_LDFLAGS=""
277
Paolo Bonzini377529c2010-12-23 11:43:50 +0100278debug_tcg="no"
Marc-André Lureau247724c2018-01-16 16:11:51 +0100279sanitizers="no"
Lingfeng Yang0aebab02020-06-12 20:02:23 +0100280tsan="no"
Michael Tokarev1f3f2bf2022-04-22 13:08:25 +0300281fortify_source="yes"
John Snow6b0cedc2023-05-10 23:54:28 -0400282docs="auto"
Miroslav Rezaninac7328272021-03-31 10:18:45 +0200283EXESUF=""
Fam Zheng17969262014-02-10 14:48:56 +0800284modules="no"
Paolo Bonzini377529c2010-12-23 11:43:50 +0100285prefix="/usr/local"
Marc-André Lureau10ff82d2020-08-26 15:04:13 +0400286qemu_suffix="qemu"
Paolo Bonzini377529c2010-12-23 11:43:50 +0100287softmmu="yes"
Paolo Bonzinib915a2f2021-11-09 10:10:41 +0100288linux_user=""
289bsd_user=""
Avi Kivity40d64442011-11-15 20:12:17 +0200290pie=""
Alex Barcelo519175a2012-02-28 12:25:50 +0100291coroutine=""
Alex Bennéeba4dd2a2021-07-09 15:29:57 +0100292plugins="$default_feature"
Paolo Bonzini48328882020-08-26 08:04:15 +0200293ninja=""
Paolo Bonzinic09c1ce2022-04-20 17:33:57 +0200294bindir="bin"
Paolo Bonzinia5665052019-06-10 12:05:14 +0200295skip_meson=no
Jagannathan Raman55116962022-06-13 16:26:24 -0400296vfio_user_server="disabled"
Paolo Bonzini377529c2010-12-23 11:43:50 +0100297
Paolo Bonzini3b4da132021-10-07 15:08:29 +0200298# The following Meson options are handled manually (still they
299# are included in the automatically generated help message)
300
301# 1. Track which submodules are needed
Paolo Bonzini3b4da132021-10-07 15:08:29 +0200302fdt="auto"
Paolo Bonzini3b4da132021-10-07 15:08:29 +0200303
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200304# 2. Automatically enable/disable other options
Philippe Mathieu-Daudé76301562022-02-04 15:54:47 +0100305tcg="auto"
Paolo Bonzini3b4da132021-10-07 15:08:29 +0200306cfi="false"
307
Alex Bennéec87ea112020-12-10 19:04:13 +0000308# parse CC options second
aliguoriac0df512008-12-29 17:14:15 +0000309for opt do
Stefan Weil89138852016-05-16 15:10:20 +0200310 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
aliguoriac0df512008-12-29 17:14:15 +0000311 case "$opt" in
312 --cross-prefix=*) cross_prefix="$optarg"
Joelle van Dyne3812c0c2021-01-25 17:24:48 -0800313 cross_compile="yes"
aliguoriac0df512008-12-29 17:14:15 +0000314 ;;
Paolo Bonzini3d8df642010-12-23 11:43:48 +0100315 --cc=*) CC="$optarg"
aliguoriac0df512008-12-29 17:14:15 +0000316 ;;
Tomoki Sekiyama83f73fc2013-08-07 11:39:36 -0400317 --cxx=*) CXX="$optarg"
318 ;;
Peter Maydellc0c34c92023-04-18 17:15:54 +0100319 --objcc=*) objcc="$optarg"
320 ;;
Juan Quintela2ff6b912009-08-03 14:45:55 +0200321 --cpu=*) cpu="$optarg"
322 ;;
Paolo Bonzinia2866662021-11-05 10:09:26 +0100323 --extra-cflags=*)
324 EXTRA_CFLAGS="$EXTRA_CFLAGS $optarg"
325 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS $optarg"
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +0100326 EXTRA_OBJCFLAGS="$EXTRA_OBJCFLAGS $optarg"
Paolo Bonzinia2866662021-11-05 10:09:26 +0100327 ;;
328 --extra-cxxflags=*) EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS $optarg"
Juan Quintelae2a2ed02009-08-03 14:46:02 +0200329 ;;
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +0100330 --extra-objcflags=*) EXTRA_OBJCFLAGS="$EXTRA_OBJCFLAGS $optarg"
331 ;;
Paolo Bonzinia2866662021-11-05 10:09:26 +0100332 --extra-ldflags=*) EXTRA_LDFLAGS="$EXTRA_LDFLAGS $optarg"
Juan Quintelae2a2ed02009-08-03 14:46:02 +0200333 ;;
Alex Bennéed75402b2018-04-04 20:27:05 +0100334 --cross-cc-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-cc-FOO option"
335 ;;
Matheus Ferst479ca4c2022-01-20 14:31:41 -0300336 --cross-cc-cflags-*) cc_arch=${opt#--cross-cc-cflags-}; cc_arch=${cc_arch%%=*}
Alex Bennéed422b2b2018-04-13 11:07:58 +0100337 eval "cross_cc_cflags_${cc_arch}=\$optarg"
338 ;;
Alex Bennéed75402b2018-04-04 20:27:05 +0100339 --cross-cc-*) cc_arch=${opt#--cross-cc-}; cc_arch=${cc_arch%%=*}
340 eval "cross_cc_${cc_arch}=\$optarg"
341 ;;
Paolo Bonzini5adb43b2022-05-27 16:35:51 +0100342 --cross-prefix-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-prefix-FOO option"
343 ;;
344 --cross-prefix-*) cc_arch=${opt#--cross-prefix-}; cc_arch=${cc_arch%%=*}
345 eval "cross_prefix_${cc_arch}=\$optarg"
346 ;;
aliguoriac0df512008-12-29 17:14:15 +0000347 esac
348done
aliguoriac0df512008-12-29 17:14:15 +0000349
Peter Maydelle49d0212012-12-07 15:39:13 +0000350# Preferred compiler:
351# ${CC} (if set)
352# ${cross_prefix}gcc (if cross-prefix specified)
353# system compiler
354if test -z "${CC}${cross_prefix}"; then
355 cc="$host_cc"
356else
357 cc="${CC-${cross_prefix}gcc}"
358fi
359
Tomoki Sekiyama83f73fc2013-08-07 11:39:36 -0400360if test -z "${CXX}${cross_prefix}"; then
361 cxx="c++"
362else
363 cxx="${CXX-${cross_prefix}g++}"
364fi
365
Peter Maydellc0c34c92023-04-18 17:15:54 +0100366# Preferred ObjC compiler:
367# $objcc (if set, i.e. via --objcc option)
368# ${cross_prefix}clang (if cross-prefix specified)
369# clang (if available)
370# $cc
371if test -z "${objcc}${cross_prefix}"; then
372 if has clang; then
373 objcc=clang
374 else
375 objcc="$cc"
376 fi
377else
378 objcc="${objcc-${cross_prefix}clang}"
379fi
380
Stuart Yoderb3198cc2011-08-04 17:10:08 -0500381ar="${AR-${cross_prefix}ar}"
Richard Hendersoncdbd7272016-07-07 21:49:36 -0700382as="${AS-${cross_prefix}as}"
Richard Henderson5f6f0e22016-06-23 10:39:18 -0700383ccas="${CCAS-$cc}"
Stuart Yoderb3198cc2011-08-04 17:10:08 -0500384objcopy="${OBJCOPY-${cross_prefix}objcopy}"
385ld="${LD-${cross_prefix}ld}"
Alistair Francis9f81aeb2017-11-07 17:10:46 -0800386ranlib="${RANLIB-${cross_prefix}ranlib}"
Stefan Weil4852ee92014-09-18 21:55:08 +0200387nm="${NM-${cross_prefix}nm}"
Paolo Bonzini35acbb32021-10-13 13:43:36 +0200388smbd="$SMBD"
Stuart Yoderb3198cc2011-08-04 17:10:08 -0500389strip="${STRIP-${cross_prefix}strip}"
Konstantin Kostiuk158bb222022-04-28 21:15:25 +0300390widl="${WIDL-${cross_prefix}widl}"
Stuart Yoderb3198cc2011-08-04 17:10:08 -0500391windres="${WINDRES-${cross_prefix}windres}"
Andrey Drobyshevf9f0e612022-11-29 19:38:08 +0200392windmc="${WINDMC-${cross_prefix}windmc}"
Sergei Trofimovich17884d72012-01-31 22:03:45 +0300393pkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}"
394query_pkg_config() {
395 "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@"
396}
397pkg_config=query_pkg_config
Dave Airlie47c03742013-12-10 14:05:51 +1000398sdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}"
aliguoriac0df512008-12-29 17:14:15 +0000399
Michael S. Tsirkinbe17dc92009-11-11 13:50:09 +0200400# default flags for all hosts
Peter Maydell2d315152016-09-12 14:10:08 +0100401# We use -fwrapv to tell the compiler that we require a C dialect where
402# left shift of signed integers is well defined and has the expected
403# 2s-complement style results. (Both clang and gcc agree that it
404# provides these semantics.)
Paolo Bonzinide38c0c2021-11-08 08:58:23 +0100405QEMU_CFLAGS="-fno-strict-aliasing -fno-common -fwrapv"
Michael S. Tsirkinbe17dc92009-11-11 13:50:09 +0200406QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
Paolo Bonzini5770e8a2020-09-23 05:26:15 -0400407
Paolo Bonzinide38c0c2021-11-08 08:58:23 +0100408QEMU_LDFLAGS=
409
Paolo Bonzini5770e8a2020-09-23 05:26:15 -0400410# Flags that are needed during configure but later taken care of by Meson
Richard Henderson8a9d3d52021-06-14 16:31:36 -0700411CONFIGURE_CFLAGS="-std=gnu11 -Wall"
Paolo Bonzini5770e8a2020-09-23 05:26:15 -0400412CONFIGURE_LDFLAGS=
Paolo Bonzini086d5f72020-02-03 15:22:17 +0100413
Michael S. Tsirkinbe17dc92009-11-11 13:50:09 +0200414
aliguoriac0df512008-12-29 17:14:15 +0000415check_define() {
416cat > $TMPC <<EOF
417#if !defined($1)
Peter Maydellfd786e12011-11-23 17:26:43 +0000418#error $1 not defined
aliguoriac0df512008-12-29 17:14:15 +0000419#endif
420int main(void) { return 0; }
421EOF
Juan Quintela52166aa2009-08-03 14:46:03 +0200422 compile_object
aliguoriac0df512008-12-29 17:14:15 +0000423}
424
Gerd Hoffmann307119e2015-06-10 09:07:35 +0200425check_include() {
426cat > $TMPC <<EOF
427#include <$1>
428int main(void) { return 0; }
429EOF
430 compile_object
431}
432
John Snow93b25862015-03-25 18:57:37 -0400433write_c_skeleton() {
434 cat > $TMPC <<EOF
435int main(void) { return 0; }
436EOF
437}
438
Peter Maydellbbea4052012-08-14 15:35:34 +0100439if check_define __linux__ ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100440 targetos=linux
Peter Maydellbbea4052012-08-14 15:35:34 +0100441elif check_define _WIN32 ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100442 targetos=windows
Peter Maydellbbea4052012-08-14 15:35:34 +0100443elif check_define __OpenBSD__ ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100444 targetos=openbsd
Peter Maydellbbea4052012-08-14 15:35:34 +0100445elif check_define __sun__ ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100446 targetos=sunos
Peter Maydellbbea4052012-08-14 15:35:34 +0100447elif check_define __HAIKU__ ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100448 targetos=haiku
Peter Maydell951fedf2017-07-13 16:15:32 +0100449elif check_define __FreeBSD__ ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100450 targetos=freebsd
Peter Maydell951fedf2017-07-13 16:15:32 +0100451elif check_define __FreeBSD_kernel__ && check_define __GLIBC__; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100452 targetos=gnu/kfreebsd
Peter Maydell951fedf2017-07-13 16:15:32 +0100453elif check_define __DragonFly__ ; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100454 targetos=dragonfly
Peter Maydell951fedf2017-07-13 16:15:32 +0100455elif check_define __NetBSD__; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100456 targetos=netbsd
Peter Maydell951fedf2017-07-13 16:15:32 +0100457elif check_define __APPLE__; then
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100458 targetos=darwin
Peter Maydellbbea4052012-08-14 15:35:34 +0100459else
Peter Maydell951fedf2017-07-13 16:15:32 +0100460 # This is a fatal error, but don't report it yet, because we
461 # might be going to just print the --help text, or it might
462 # be the result of a missing compiler.
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100463 targetos=bogus
Peter Maydellbbea4052012-08-14 15:35:34 +0100464fi
465
Paolo Bonzini65eff012021-11-08 22:52:35 +0100466# OS specific
467
Paolo Bonzini3b0d8642021-10-13 14:14:53 +0200468mingw32="no"
469bsd="no"
470linux="no"
471solaris="no"
Peter Maydellbbea4052012-08-14 15:35:34 +0100472case $targetos in
Paolo Bonzini65eff012021-11-08 22:52:35 +0100473windows)
474 mingw32="yes"
475 plugins="no"
476 pie="no"
477;;
478gnu/kfreebsd)
479 bsd="yes"
480;;
481freebsd)
482 bsd="yes"
Paolo Bonzini65eff012021-11-08 22:52:35 +0100483 make="${MAKE-gmake}"
484 # needed for kinfo_getvmmap(3) in libutil.h
485;;
486dragonfly)
487 bsd="yes"
488 make="${MAKE-gmake}"
489;;
490netbsd)
491 bsd="yes"
492 make="${MAKE-gmake}"
493;;
494openbsd)
495 bsd="yes"
496 make="${MAKE-gmake}"
497;;
498darwin)
499 bsd="yes"
500 darwin="yes"
501 # Disable attempts to use ObjectiveC features in os/object.h since they
502 # won't work when we're compiling with gcc as a C compiler.
503 QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS"
504;;
Paolo Bonziniba7c60c2021-11-08 14:47:54 +0100505sunos)
Paolo Bonzini65eff012021-11-08 22:52:35 +0100506 solaris="yes"
507 make="${MAKE-gmake}"
Paolo Bonzini65eff012021-11-08 22:52:35 +0100508# needed for CMSG_ macros in sys/socket.h
509 QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
510# needed for TIOCWIN* defines in termios.h
511 QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
Paolo Bonzini65eff012021-11-08 22:52:35 +0100512;;
513haiku)
514 pie="no"
515 QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS -D_BSD_SOURCE -fPIC $QEMU_CFLAGS"
516;;
517linux)
518 linux="yes"
Paolo Bonzini65eff012021-11-08 22:52:35 +0100519;;
Peter Maydellbbea4052012-08-14 15:35:34 +0100520esac
521
Juan Quintela2ff6b912009-08-03 14:45:55 +0200522if test ! -z "$cpu" ; then
523 # command line argument
524 :
525elif check_define __i386__ ; then
aliguoriac0df512008-12-29 17:14:15 +0000526 cpu="i386"
527elif check_define __x86_64__ ; then
Richard Hendersonc72b26e2013-08-20 12:20:05 -0700528 if check_define __ILP32__ ; then
529 cpu="x32"
530 else
531 cpu="x86_64"
532 fi
blueswir13aa9bd62008-12-31 16:55:26 +0000533elif check_define __sparc__ ; then
blueswir13aa9bd62008-12-31 16:55:26 +0000534 if check_define __arch64__ ; then
535 cpu="sparc64"
536 else
537 cpu="sparc"
538 fi
malcfdf7ed92009-01-14 18:39:52 +0000539elif check_define _ARCH_PPC ; then
540 if check_define _ARCH_PPC64 ; then
Richard Hendersonf8378ac2019-05-01 15:38:18 -0700541 if check_define _LITTLE_ENDIAN ; then
542 cpu="ppc64le"
543 else
544 cpu="ppc64"
545 fi
malcfdf7ed92009-01-14 18:39:52 +0000546 else
547 cpu="ppc"
548 fi
Aurelien Jarnoafa05232009-10-17 14:17:47 +0200549elif check_define __mips__ ; then
550 cpu="mips"
Aurelien Jarnod66ed0e2010-06-13 12:28:21 +0200551elif check_define __s390__ ; then
552 if check_define __s390x__ ; then
553 cpu="s390x"
554 else
555 cpu="s390"
556 fi
Alistair Francisc4f80542018-12-19 19:20:19 +0000557elif check_define __riscv ; then
Richard Hendersonba0e7332021-09-17 11:08:09 -0700558 cpu="riscv"
Peter Maydell21d89f82011-11-30 10:57:48 +0100559elif check_define __arm__ ; then
560 cpu="arm"
Claudio Fontana1f080312013-06-12 16:20:23 +0100561elif check_define __aarch64__ ; then
562 cpu="aarch64"
WANG Xueruidfcf9002021-12-21 13:41:04 +0800563elif check_define __loongarch64 ; then
564 cpu="loongarch64"
aliguoriac0df512008-12-29 17:14:15 +0000565else
Paolo Bonzinif9c77802022-10-12 15:27:03 +0200566 # Using uname is really broken, but it is just a fallback for architectures
567 # that are going to use TCI anyway
Stefan Weil89138852016-05-16 15:10:20 +0200568 cpu=$(uname -m)
Paolo Bonzinif9c77802022-10-12 15:27:03 +0200569 echo "WARNING: unrecognized host CPU, proceeding with 'uname -m' output '$cpu'"
aliguoriac0df512008-12-29 17:14:15 +0000570fi
571
Paolo Bonzinif9c77802022-10-12 15:27:03 +0200572# Normalise host CPU name and set multilib cflags. The canonicalization
573# isn't really necessary, because the architectures that we check for
574# should not hit the 'uname -m' case, but better safe than sorry.
Peter Maydell359bc952011-12-24 13:07:25 +0000575# Note that this case should only have supported host CPUs, not guests.
bellard7d132992003-03-06 23:23:54 +0000576case "$cpu" in
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100577 armv*b|armv*l|arm)
578 cpu="arm" ;;
579
Paolo Bonzinif9c77802022-10-12 15:27:03 +0200580 i386|i486|i586|i686)
bellard97a847b2003-08-10 21:36:04 +0000581 cpu="i386"
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100582 CPU_CFLAGS="-m32" ;;
583 x32)
Paolo Bonzini4da270b2021-11-09 09:36:10 +0100584 cpu="x86_64"
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100585 CPU_CFLAGS="-mx32" ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000586 x86_64|amd64)
587 cpu="x86_64"
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100588 # ??? Only extremely old AMD cpus do not have cmpxchg16b.
589 # If we truly care, we should simply detect this case at
590 # runtime and generate the fallback to serial emulation.
591 CPU_CFLAGS="-m64 -mcx16" ;;
592
Aurelien Jarnoafa05232009-10-17 14:17:47 +0200593 mips*)
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100594 cpu="mips" ;;
595
596 ppc)
597 CPU_CFLAGS="-m32" ;;
598 ppc64)
Miroslav Rezaninaced5cff2022-03-05 07:16:46 +0100599 CPU_CFLAGS="-m64 -mbig-endian" ;;
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100600 ppc64le)
Paolo Bonzinid8ff8922021-11-09 09:18:20 +0100601 cpu="ppc64"
Miroslav Rezaninaced5cff2022-03-05 07:16:46 +0100602 CPU_CFLAGS="-m64 -mlittle-endian" ;;
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100603
604 s390)
Paolo Bonzini823eb012021-11-08 14:18:17 +0100605 CPU_CFLAGS="-m31" ;;
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100606 s390x)
607 CPU_CFLAGS="-m64" ;;
608
blueswir131422552007-04-16 18:27:06 +0000609 sparc|sun4[cdmuv])
bellardae228532003-05-13 18:59:59 +0000610 cpu="sparc"
Paolo Bonzinie4da0e32021-11-09 09:23:56 +0100611 CPU_CFLAGS="-m32 -mv8plus -mcpu=ultrasparc" ;;
612 sparc64)
613 CPU_CFLAGS="-m64 -mcpu=ultrasparc" ;;
bellard7d132992003-03-06 23:23:54 +0000614esac
Juan Quintelae2d52ad2009-08-12 18:20:24 +0200615
Paolo Bonzini0db4a062010-12-23 11:43:49 +0100616: ${make=${MAKE-make}}
Paolo Bonzinib6daf4d2020-09-01 06:38:04 -0400617
Markus Armbruster903458c2020-02-14 18:18:41 +0100618
John Snowfee6d412023-02-10 01:31:43 +0100619check_py_version() {
620 # We require python >= 3.6.
621 # NB: a True python conditional creates a non-zero return code (Failure)
622 "$1" -c 'import sys; sys.exit(sys.version_info < (3,6))'
623}
624
625python=
626first_python=
627if test -z "${PYTHON}"; then
John Snowfee6d412023-02-10 01:31:43 +0100628 # A bare 'python' is traditionally python 2.x, but some distros
629 # have it as python 3.x, so check in both places.
630 for binary in python3 python python3.11 python3.10 python3.9 python3.8 python3.7 python3.6; do
631 if has "$binary"; then
632 python=$(command -v "$binary")
633 if check_py_version "$python"; then
634 # This one is good.
635 first_python=
636 break
637 else
638 first_python=$python
639 fi
640 fi
641 done
642else
643 # Same as above, but only check the environment variable.
644 has "${PYTHON}" || error_exit "The PYTHON environment variable does not point to an executable"
645 python=$(command -v "$PYTHON")
John Snowfee6d412023-02-10 01:31:43 +0100646 if check_py_version "$python"; then
647 # This one is good.
648 first_python=
649 else
650 first_python=$first_python
651 fi
652fi
Markus Armbruster903458c2020-02-14 18:18:41 +0100653
Alex Bennée39d87c82020-03-03 15:06:20 +0000654# Check for ancillary tools used in testing
655genisoimage=
Alex Bennée3df437c2020-05-19 09:22:48 -0400656for binary in genisoimage mkisofs
Alex Bennée39d87c82020-03-03 15:06:20 +0000657do
658 if has $binary
659 then
660 genisoimage=$(command -v "$binary")
661 break
662 fi
663done
664
Juan Quintela3457a3f2009-08-03 14:46:07 +0200665if test "$mingw32" = "yes" ; then
Juan Quintela3457a3f2009-08-03 14:46:07 +0200666 EXESUF=".exe"
Stefan Weil78e9d4a2015-11-26 12:13:12 +0100667 # MinGW needs -mthreads for TLS and macro _MT.
Paolo Bonzini5770e8a2020-09-23 05:26:15 -0400668 CONFIGURE_CFLAGS="-mthreads $CONFIGURE_CFLAGS"
Paolo Bonzinid17f3052020-08-18 12:17:01 +0200669 prefix="/qemu"
Paolo Bonzinic09c1ce2022-04-20 17:33:57 +0200670 bindir=""
Marc-André Lureau77433a52020-08-26 15:04:12 +0400671 qemu_suffix=""
Juan Quintela3457a3f2009-08-03 14:46:07 +0200672fi
673
Anthony Liguori487fefd2009-06-11 13:28:25 -0500674werror=""
bellard85aa5182007-11-11 20:17:03 +0000675
Akihiko Odaki8154f5e2022-06-25 00:40:42 +0900676meson_option_build_array() {
677 printf '['
Peter Maydellc5cfdab2022-07-20 16:26:31 +0100678 (if test "$targetos" = windows; then
Akihiko Odaki8154f5e2022-06-25 00:40:42 +0900679 IFS=\;
680 else
681 IFS=:
682 fi
683 for e in $1; do
Peter Maydell65842b02022-07-20 16:26:29 +0100684 printf '"""'
685 # backslash escape any '\' and '"' characters
686 printf "%s" "$e" | sed -e 's/\([\"]\)/\\\1/g'
687 printf '""",'
Akihiko Odaki8154f5e2022-06-25 00:40:42 +0900688 done)
689 printf ']\n'
690}
691
Peter Maydell64708612022-08-25 16:06:59 +0100692. "$source_path/scripts/meson-buildoptions.sh"
Paolo Bonzini61d63092021-10-07 15:08:28 +0200693
694meson_options=
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200695meson_option_add() {
696 meson_options="$meson_options $(quote_sh "$1")"
697}
Paolo Bonzini61d63092021-10-07 15:08:28 +0200698meson_option_parse() {
699 meson_options="$meson_options $(_meson_option_parse "$@")"
700 if test $? -eq 1; then
701 echo "ERROR: unknown option $1"
702 echo "Try '$0 --help' for more information"
703 exit 1
704 fi
705}
706
bellard7d132992003-03-06 23:23:54 +0000707for opt do
Stefan Weil89138852016-05-16 15:10:20 +0200708 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
bellard7d132992003-03-06 23:23:54 +0000709 case "$opt" in
bellard2efc3262005-12-18 19:14:49 +0000710 --help|-h) show_help=yes
711 ;;
Peter Maydell64708612022-08-25 16:06:59 +0100712 --version|-V) exec cat "$source_path/VERSION"
Mike Frysinger99123e12011-04-07 01:12:28 -0400713 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000714 --prefix=*) prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000715 ;;
aliguoriac0df512008-12-29 17:14:15 +0000716 --cross-prefix=*)
bellard7d132992003-03-06 23:23:54 +0000717 ;;
aliguoriac0df512008-12-29 17:14:15 +0000718 --cc=*)
bellard7d132992003-03-06 23:23:54 +0000719 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000720 --host-cc=*) host_cc="$optarg"
bellard83469012005-07-23 14:27:54 +0000721 ;;
Tomoki Sekiyama83f73fc2013-08-07 11:39:36 -0400722 --cxx=*)
723 ;;
Peter Maydellc0c34c92023-04-18 17:15:54 +0100724 --objcc=*)
Peter Maydell3c4a4d02012-08-11 22:34:40 +0100725 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000726 --make=*) make="$optarg"
bellard7d132992003-03-06 23:23:54 +0000727 ;;
Paolo Bonzinib6daf4d2020-09-01 06:38:04 -0400728 --install=*)
pbrook6a882642006-04-17 13:57:12 +0000729 ;;
John Snow81e2b192023-05-10 23:54:23 -0400730 --python=*) python="$optarg"
Blue Swirlc886edf2011-07-22 21:08:09 +0000731 ;;
Paolo Bonzinia5665052019-06-10 12:05:14 +0200732 --skip-meson) skip_meson=yes
733 ;;
Paolo Bonzini48328882020-08-26 08:04:15 +0200734 --ninja=*) ninja="$optarg"
735 ;;
Brade2d88302011-09-02 16:53:28 -0400736 --smbd=*) smbd="$optarg"
737 ;;
Juan Quintelae2a2ed02009-08-03 14:46:02 +0200738 --extra-cflags=*)
bellard7d132992003-03-06 23:23:54 +0000739 ;;
Bruno Dominguez11cde1c2017-06-06 14:07:47 +0100740 --extra-cxxflags=*)
741 ;;
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +0100742 --extra-objcflags=*)
743 ;;
Juan Quintelae2a2ed02009-08-03 14:46:02 +0200744 --extra-ldflags=*)
bellard7d132992003-03-06 23:23:54 +0000745 ;;
Alex Bennéed75402b2018-04-04 20:27:05 +0100746 --cross-cc-*)
747 ;;
Paolo Bonzini5adb43b2022-05-27 16:35:51 +0100748 --cross-prefix-*)
749 ;;
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200750 --enable-debug-info) meson_option_add -Ddebug=true
Paolo Bonzini28609742022-04-20 17:33:39 +0200751 ;;
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200752 --disable-debug-info) meson_option_add -Ddebug=false
Paolo Bonzini28609742022-04-20 17:33:39 +0200753 ;;
John Snow6b0cedc2023-05-10 23:54:28 -0400754 --enable-docs) docs=enabled
755 ;;
756 --disable-docs) docs=disabled
757 ;;
Fam Zheng17969262014-02-10 14:48:56 +0800758 --enable-modules)
759 modules="yes"
760 ;;
Stefan Hajnoczi3aa88b32015-11-02 14:06:23 +0000761 --disable-modules)
762 modules="no"
763 ;;
Juan Quintela2ff6b912009-08-03 14:45:55 +0200764 --cpu=*)
bellard7d132992003-03-06 23:23:54 +0000765 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000766 --target-list=*) target_list="$optarg"
Alex Bennée447e1332019-03-19 11:59:12 +0000767 if test "$target_list_exclude"; then
768 error_exit "Can't mix --target-list with --target-list-exclude"
769 fi
770 ;;
771 --target-list-exclude=*) target_list_exclude="$optarg"
772 if test "$target_list"; then
773 error_exit "Can't mix --target-list-exclude with --target-list"
774 fi
bellardde83cd02003-06-15 20:25:43 +0000775 ;;
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200776 --with-default-devices) meson_option_add -Ddefault_devices=true
Paolo Bonzinif3494742019-01-23 14:56:17 +0800777 ;;
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200778 --without-default-devices) meson_option_add -Ddefault_devices=false
Paolo Bonzinif3494742019-01-23 14:56:17 +0800779 ;;
Alex Bennéed1d5e9e2021-07-07 14:17:44 +0100780 --with-devices-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --with-devices-FOO option"
781 ;;
782 --with-devices-*) device_arch=${opt#--with-devices-};
783 device_arch=${device_arch%%=*}
784 cf=$source_path/configs/devices/$device_arch-softmmu/$optarg.mak
785 if test -f "$cf"; then
786 device_archs="$device_archs $device_arch"
787 eval "devices_${device_arch}=\$optarg"
788 else
789 error_exit "File $cf does not exist"
790 fi
791 ;;
Alex Bennéec87ea112020-12-10 19:04:13 +0000792 --without-default-features) # processed above
793 ;;
Loïc Minier79427692010-01-31 12:23:45 +0100794 --static)
795 static="yes"
Sergei Trofimovich17884d72012-01-31 22:03:45 +0300796 QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS"
bellard43ce4df2003-06-09 19:53:12 +0000797 ;;
Paolo Bonzini0b24e752010-05-26 16:08:26 +0200798 --bindir=*) bindir="$optarg"
799 ;;
Marc-André Lureau77433a52020-08-26 15:04:12 +0400800 --with-suffix=*) qemu_suffix="$optarg"
Eduardo Habkost023d3d62012-04-18 16:55:50 -0300801 ;;
Olaf Hering181ce1d2018-04-18 09:50:44 +0200802 --host=*|--build=*|\
803 --disable-dependency-tracking|\
Luiz Capitulino785c23a2012-10-03 18:35:57 -0300804 --sbindir=*|--sharedstatedir=*|\
Paolo Bonzinife0038b2020-10-16 04:35:10 -0400805 --oldincludedir=*|--datarootdir=*|--infodir=*|\
Max Filippov023ddd72011-11-24 16:11:31 +0400806 --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*)
807 # These switches are silently ignored, for compatibility with
808 # autoconf-generated configure scripts. This allows QEMU's
809 # configure to be used by RPM and similar macros that set
810 # lots of directory switches by default.
811 ;;
aurel32f8393942009-04-13 18:45:38 +0000812 --enable-debug-tcg) debug_tcg="yes"
813 ;;
814 --disable-debug-tcg) debug_tcg="no"
815 ;;
Paul Brookf3d08ee2009-06-04 11:39:04 +0100816 --enable-debug)
817 # Enable debugging options that aren't excessively noisy
818 debug_tcg="yes"
Stefan Hajnoczi58a2e3f2023-05-01 13:34:43 -0400819 meson_option_parse --enable-debug-graph-lock ""
Paolo Bonzinic55cf6a2021-10-13 11:46:09 +0200820 meson_option_parse --enable-debug-mutex ""
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200821 meson_option_add -Doptimization=0
John Snowb553a042015-11-03 15:43:42 -0500822 fortify_source="no"
Paul Brookf3d08ee2009-06-04 11:39:04 +0100823 ;;
Marc-André Lureau247724c2018-01-16 16:11:51 +0100824 --enable-sanitizers) sanitizers="yes"
825 ;;
826 --disable-sanitizers) sanitizers="no"
827 ;;
Lingfeng Yang0aebab02020-06-12 20:02:23 +0100828 --enable-tsan) tsan="yes"
829 ;;
830 --disable-tsan) tsan="no"
831 ;;
Paolo Bonzini1badb702020-09-18 04:57:25 -0400832 --disable-tcg) tcg="disabled"
Alex Bennéed1a14252021-07-09 15:29:54 +0100833 plugins="no"
Paolo Bonzinib3f6ea72017-07-03 16:59:07 +0200834 ;;
Paolo Bonzini1badb702020-09-18 04:57:25 -0400835 --enable-tcg) tcg="enabled"
Paolo Bonzinib3f6ea72017-07-03 16:59:07 +0200836 ;;
pbrookcad25d62006-03-19 16:31:11 +0000837 --disable-system) softmmu="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000838 ;;
pbrookcad25d62006-03-19 16:31:11 +0000839 --enable-system) softmmu="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000840 ;;
Zachary Amsden0953a802009-07-30 00:14:59 -1000841 --disable-user)
842 linux_user="no" ;
843 bsd_user="no" ;
Zachary Amsden0953a802009-07-30 00:14:59 -1000844 ;;
845 --enable-user) ;;
ths831b7822007-01-18 20:06:33 +0000846 --disable-linux-user) linux_user="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000847 ;;
ths831b7822007-01-18 20:06:33 +0000848 --enable-linux-user) linux_user="yes"
849 ;;
blueswir184778502008-10-26 20:33:16 +0000850 --disable-bsd-user) bsd_user="no"
851 ;;
852 --enable-bsd-user) bsd_user="yes"
853 ;;
Avi Kivity40d64442011-11-15 20:12:17 +0200854 --enable-pie) pie="yes"
Kirill A. Shutemov34005a02009-09-12 02:17:55 +0300855 ;;
Avi Kivity40d64442011-11-15 20:12:17 +0200856 --disable-pie) pie="no"
Kirill A. Shutemov34005a02009-09-12 02:17:55 +0300857 ;;
bellard85aa5182007-11-11 20:17:03 +0000858 --enable-werror) werror="yes"
859 ;;
860 --disable-werror) werror="no"
861 ;;
Steven Noonan63678e12014-03-28 17:19:02 +0100862 --enable-stack-protector) stack_protector="yes"
863 ;;
864 --disable-stack-protector) stack_protector="no"
865 ;;
Daniele Buono1e4f6062020-05-29 16:51:21 -0400866 --enable-safe-stack) safe_stack="yes"
867 ;;
868 --disable-safe-stack) safe_stack="no"
869 ;;
Daniele Buono9e62ba42020-12-04 18:06:14 -0500870 --enable-cfi)
871 cfi="true";
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200872 meson_option_add -Db_lto=true
Daniele Buono9e62ba42020-12-04 18:06:14 -0500873 ;;
874 --disable-cfi) cfi="false"
875 ;;
Paolo Bonzinifbb41212020-10-05 11:31:15 +0200876 --disable-fdt) fdt="disabled"
Juan Quintela2df87df2009-08-12 18:29:54 +0200877 ;;
Paolo Bonzinifbb41212020-10-05 11:31:15 +0200878 --enable-fdt) fdt="enabled"
879 ;;
880 --enable-fdt=git) fdt="internal"
881 ;;
Paolo Bonzini03a3c0b2021-10-07 15:08:27 +0200882 --enable-fdt=*) fdt="$optarg"
Juan Quintela2df87df2009-08-12 18:29:54 +0200883 ;;
Alex Barcelo519175a2012-02-28 12:25:50 +0100884 --with-coroutine=*) coroutine="$optarg"
885 ;;
Daniel P. Berrangecc84d632017-10-20 15:02:43 +0100886 --with-git=*) git="$optarg"
887 ;;
Dan Streetman7d7dbf92021-01-19 12:20:46 -0500888 --with-git-submodules=*)
889 git_submodules_action="$optarg"
Daniel P. Berrangef62bbee2017-10-26 13:52:26 +0100890 ;;
Alex Bennée9b8e4292021-07-09 15:29:56 +0100891 --enable-plugins) if test "$mingw32" = "yes"; then
892 error_exit "TCG plugins not currently supported on Windows platforms"
893 else
894 plugins="yes"
895 fi
Alex Bennée40e8c6f2019-06-13 14:52:25 +0100896 ;;
897 --disable-plugins) plugins="no"
898 ;;
Alex Bennéeafc3a8f2019-11-28 16:35:24 +0100899 --enable-containers) use_containers="yes"
900 ;;
901 --disable-containers) use_containers="no"
902 ;;
Alex Bennéef48e5902020-03-16 17:21:48 +0000903 --gdb=*) gdb_bin="$optarg"
904 ;;
Jagannathan Raman55116962022-06-13 16:26:24 -0400905 --enable-vfio-user-server) vfio_user_server="enabled"
906 ;;
907 --disable-vfio-user-server) vfio_user_server="disabled"
908 ;;
Paolo Bonzini3b4da132021-10-07 15:08:29 +0200909 # everything else has the same name in configure and meson
Paolo Bonzini4fda6012022-04-20 17:33:51 +0200910 --*) meson_option_parse "$opt" "$optarg"
balrog7f1559c2007-11-17 10:24:32 +0000911 ;;
bellard7d132992003-03-06 23:23:54 +0000912 esac
913done
914
Alex Bennéed1a14252021-07-09 15:29:54 +0100915# test for any invalid configuration combinations
916if test "$plugins" = "yes" -a "$tcg" = "disabled"; then
917 error_exit "Can't enable plugins on non-TCG builds"
918fi
919
Dan Streetman7d7dbf92021-01-19 12:20:46 -0500920case $git_submodules_action in
921 update|validate)
922 if test ! -e "$source_path/.git"; then
923 echo "ERROR: cannot $git_submodules_action git submodules without .git"
924 exit 1
925 fi
926 ;;
927 ignore)
Paolo Bonzinib80fd282021-05-12 09:18:55 +0200928 if ! test -f "$source_path/ui/keycodemapdb/README"
929 then
930 echo
931 echo "ERROR: missing GIT submodules"
932 echo
933 if test -e "$source_path/.git"; then
934 echo "--with-git-submodules=ignore specified but submodules were not"
935 echo "checked out. Please initialize and update submodules."
936 else
937 echo "This is not a GIT checkout but module content appears to"
938 echo "be missing. Do not use 'git archive' or GitHub download links"
939 echo "to acquire QEMU source archives. Non-GIT builds are only"
940 echo "supported with source archives linked from:"
941 echo
942 echo " https://www.qemu.org/download/#source"
943 echo
944 echo "Developers working with GIT can use scripts/archive-source.sh"
945 echo "if they need to create valid source archives."
946 fi
947 echo
948 exit 1
949 fi
Dan Streetman7d7dbf92021-01-19 12:20:46 -0500950 ;;
951 *)
952 echo "ERROR: invalid --with-git-submodules= value '$git_submodules_action'"
953 exit 1
954 ;;
955esac
956
Peter Maydell60e0df22011-05-03 14:50:13 +0100957default_target_list=""
Peter Maydell6e92f822013-05-20 16:16:15 +0100958mak_wilds=""
959
Paolo Bonzinib915a2f2021-11-09 10:10:41 +0100960if [ "$linux_user" != no ]; then
Peter Maydell64708612022-08-25 16:06:59 +0100961 if [ "$targetos" = linux ] && [ -d "$source_path/linux-user/include/host/$cpu" ]; then
Paolo Bonzinib915a2f2021-11-09 10:10:41 +0100962 linux_user=yes
963 elif [ "$linux_user" = yes ]; then
964 error_exit "linux-user not supported on this architecture"
965 fi
966fi
967if [ "$bsd_user" != no ]; then
968 if [ "$bsd_user" = "" ]; then
969 test $targetos = freebsd && bsd_user=yes
970 fi
Peter Maydell64708612022-08-25 16:06:59 +0100971 if [ "$bsd_user" = yes ] && ! [ -d "$source_path/bsd-user/$targetos" ]; then
Paolo Bonzinib915a2f2021-11-09 10:10:41 +0100972 error_exit "bsd-user not supported on this host OS"
973 fi
974fi
Peter Maydell6e92f822013-05-20 16:16:15 +0100975if [ "$softmmu" = "yes" ]; then
Alex Bennée812b31d2021-07-07 14:17:43 +0100976 mak_wilds="${mak_wilds} $source_path/configs/targets/*-softmmu.mak"
Peter Maydell60e0df22011-05-03 14:50:13 +0100977fi
Peter Maydell6e92f822013-05-20 16:16:15 +0100978if [ "$linux_user" = "yes" ]; then
Alex Bennée812b31d2021-07-07 14:17:43 +0100979 mak_wilds="${mak_wilds} $source_path/configs/targets/*-linux-user.mak"
Peter Maydell60e0df22011-05-03 14:50:13 +0100980fi
Peter Maydell6e92f822013-05-20 16:16:15 +0100981if [ "$bsd_user" = "yes" ]; then
Alex Bennée812b31d2021-07-07 14:17:43 +0100982 mak_wilds="${mak_wilds} $source_path/configs/targets/*-bsd-user.mak"
Peter Maydell60e0df22011-05-03 14:50:13 +0100983fi
984
Alex Bennée2d838d92020-09-09 12:27:37 +0100985for config in $mak_wilds; do
986 target="$(basename "$config" .mak)"
Alex Bennée98db9a02020-09-15 14:43:14 +0100987 if echo "$target_list_exclude" | grep -vq "$target"; then
Alex Bennée2d838d92020-09-09 12:27:37 +0100988 default_target_list="${default_target_list} $target"
989 fi
990done
Peter Maydell6e92f822013-05-20 16:16:15 +0100991
pbrookaf5db582006-04-08 14:26:41 +0000992if test x"$show_help" = x"yes" ; then
993cat << EOF
994
995Usage: configure [options]
996Options: [defaults in brackets after descriptions]
997
Stefan Weil08fb77e2013-12-18 22:09:39 +0100998Standard options:
999 --help print this message
1000 --prefix=PREFIX install in PREFIX [$prefix]
Thomas Huth74154d72022-01-12 11:27:22 +00001001 --target-list=LIST set target list (default: build all)
Stefan Weil08fb77e2013-12-18 22:09:39 +01001002$(echo Available targets: $default_target_list | \
1003 fold -s -w 53 | sed -e 's/^/ /')
Alex Bennée447e1332019-03-19 11:59:12 +00001004 --target-list-exclude=LIST exclude a set of targets from the default target-list
Stefan Weil08fb77e2013-12-18 22:09:39 +01001005
1006Advanced options (experts only):
Joelle van Dyne3812c0c2021-01-25 17:24:48 -08001007 --cross-prefix=PREFIX use PREFIX for compile tools, PREFIX can be blank [$cross_prefix]
Stefan Weil08fb77e2013-12-18 22:09:39 +01001008 --cc=CC use C compiler CC [$cc]
Stefan Weil08fb77e2013-12-18 22:09:39 +01001009 --host-cc=CC use C compiler CC [$host_cc] for code run at
1010 build time
1011 --cxx=CXX use C++ compiler CXX [$cxx]
1012 --objcc=OBJCC use Objective-C compiler OBJCC [$objcc]
Paolo Bonzinia2866662021-11-05 10:09:26 +01001013 --extra-cflags=CFLAGS append extra C compiler flags CFLAGS
1014 --extra-cxxflags=CXXFLAGS append extra C++ compiler flags CXXFLAGS
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +01001015 --extra-objcflags=OBJCFLAGS append extra Objective C compiler flags OBJCFLAGS
Stefan Weil08fb77e2013-12-18 22:09:39 +01001016 --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS
Alex Bennéed75402b2018-04-04 20:27:05 +01001017 --cross-cc-ARCH=CC use compiler when building ARCH guest test cases
Matheus Ferst479ca4c2022-01-20 14:31:41 -03001018 --cross-cc-cflags-ARCH= use compiler flags when building ARCH guest tests
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001019 --cross-prefix-ARCH=PREFIX cross compiler prefix when building ARCH guest test cases
Stefan Weil08fb77e2013-12-18 22:09:39 +01001020 --make=MAKE use specified make [$make]
Stefan Weil08fb77e2013-12-18 22:09:39 +01001021 --python=PYTHON use specified python [$python]
Paolo Bonzini48328882020-08-26 08:04:15 +02001022 --ninja=NINJA use specified ninja [$ninja]
Stefan Weil08fb77e2013-12-18 22:09:39 +01001023 --smbd=SMBD use specified smbd [$smbd]
Thomas Huthdb1b5f12018-03-27 17:09:30 +02001024 --with-git=GIT use specified git [$git]
Dan Streetman7d7dbf92021-01-19 12:20:46 -05001025 --with-git-submodules=update update git submodules (default if .git dir exists)
1026 --with-git-submodules=validate fail if git submodules are not up to date
1027 --with-git-submodules=ignore do not update or check git submodules (default if no .git dir)
Stefan Weil08fb77e2013-12-18 22:09:39 +01001028 --static enable static build [$static]
Stefan Weil08fb77e2013-12-18 22:09:39 +01001029 --bindir=PATH install binaries in PATH
Marc-André Lureauca8c0902020-08-26 15:04:14 +04001030 --with-suffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir/docdir [$qemu_suffix]
Paolo Bonzinic035c8d2020-12-14 11:34:47 +01001031 --without-default-features default all --enable-* options to "disabled"
1032 --without-default-devices do not include any device that is not needed to
1033 start the emulator (only use if you are including
Alex Bennéed1d5e9e2021-07-07 14:17:44 +01001034 desired devices in configs/devices/)
1035 --with-devices-ARCH=NAME override default configs/devices
Stefan Weil08fb77e2013-12-18 22:09:39 +01001036 --enable-debug enable common debug build options
Marc-André Lureau247724c2018-01-16 16:11:51 +01001037 --enable-sanitizers enable default sanitizers
Lingfeng Yang0aebab02020-06-12 20:02:23 +01001038 --enable-tsan enable thread sanitizer
Stefan Weil08fb77e2013-12-18 22:09:39 +01001039 --disable-werror disable compilation abort on warning
Steven Noonan63678e12014-03-28 17:19:02 +01001040 --disable-stack-protector disable compiler-provided stack protection
Michael Tokarevc23f23b2015-06-17 22:19:26 +03001041 --cpu=CPU Build for host CPU [$cpu]
Stefan Weil08fb77e2013-12-18 22:09:39 +01001042 --with-coroutine=BACKEND coroutine backend. Supported options:
Daniel P. Berrange33c53c52017-04-28 13:24:44 +01001043 ucontext, sigaltstack, windows
Alex Bennée40e8c6f2019-06-13 14:52:25 +01001044 --enable-plugins
1045 enable plugins via shared library loading
Alex Bennéeafc3a8f2019-11-28 16:35:24 +01001046 --disable-containers don't use containers for cross-building
Alex Bennéef48e5902020-03-16 17:21:48 +00001047 --gdb=GDB-path gdb to use for gdbstub tests [$gdb_bin]
Paolo Bonzini61d63092021-10-07 15:08:28 +02001048EOF
1049 meson_options_help
1050cat << EOF
Michael Tokarevc23f23b2015-06-17 22:19:26 +03001051 system all system emulation targets
1052 user supported user emulation targets
1053 linux-user all linux usermode emulation targets
1054 bsd-user all BSD usermode emulation targets
Michael Tokarevc23f23b2015-06-17 22:19:26 +03001055 pie Position Independent Executables
Marc-André Lureau21e709a2019-07-18 16:04:13 +04001056 modules modules support (non-Windows)
Michael Tokarevc23f23b2015-06-17 22:19:26 +03001057 debug-tcg TCG debugging (default is disabled)
1058 debug-info debugging information
Daniele Buono1e4f6062020-05-29 16:51:21 -04001059 safe-stack SafeStack Stack Smash Protection. Depends on
Thomas Huth74a1b252023-01-31 19:02:39 +01001060 clang/llvm and requires coroutine backend ucontext.
Stefan Weil08fb77e2013-12-18 22:09:39 +01001061
1062NOTE: The object files are built at the place where configure is launched
pbrookaf5db582006-04-08 14:26:41 +00001063EOF
Fam Zheng2d2ad6d2014-04-18 14:55:36 +08001064exit 0
pbrookaf5db582006-04-08 14:26:41 +00001065fi
1066
Thomas Huth9c790242019-03-11 11:20:34 +01001067# Remove old dependency files to make sure that they get properly regenerated
Peter Maydell002d8c12022-08-25 16:07:00 +01001068rm -f ./*/config-devices.mak.d
Thomas Huth9c790242019-03-11 11:20:34 +01001069
Daniel P. Berrangéfaf44142019-03-27 17:07:01 +00001070if test -z "$python"
1071then
John Snowfee6d412023-02-10 01:31:43 +01001072 # If first_python is set, there was a binary somewhere even though
1073 # it was not suitable. Use it for the error message.
1074 if test -n "$first_python"; then
1075 error_exit "Cannot use '$first_python', Python >= 3.6 is required." \
1076 "Use --python=/path/to/python to specify a supported Python."
1077 else
1078 error_exit "Python not found. Use --python=/path/to/python"
1079 fi
Stefan Hajnoczic53eeaf2017-03-28 14:44:18 +01001080fi
John Snowfee6d412023-02-10 01:31:43 +01001081
Roman Bolshakov8e2c76b2020-08-25 23:27:55 +03001082if ! has "$make"
1083then
1084 error_exit "GNU make ($make) not found"
1085fi
Stefan Hajnoczic53eeaf2017-03-28 14:44:18 +01001086
John Snowfee6d412023-02-10 01:31:43 +01001087if ! check_py_version "$python"; then
Thomas Huth1b11f282020-09-25 16:40:27 +01001088 error_exit "Cannot use '$python', Python >= 3.6 is required." \
Stefan Hajnoczic53eeaf2017-03-28 14:44:18 +01001089 "Use --python=/path/to/python to specify a supported Python."
1090fi
1091
John Snow81e2b192023-05-10 23:54:23 -04001092# Resolve PATH
1093python="$(command -v "$python")"
John Snow81e2b192023-05-10 23:54:23 -04001094
1095# Create a Python virtual environment using our configured python.
1096# The stdout of this script will be the location of a symlink that
1097# points to the configured Python.
1098# Entry point scripts for pip, meson, and sphinx are generated if those
1099# packages are present.
1100
1101# Defaults assumed for now:
1102# - venv is cleared if it exists already;
1103# - venv is allowed to use system packages;
1104# - all setup is performed **offline**;
John Snow81e2b192023-05-10 23:54:23 -04001105# - pip is not installed into the venv when possible,
1106# but ensurepip is called as a fallback when necessary.
1107
1108echo "python determined to be '$python'"
1109echo "python version: $($python --version)"
1110
1111python="$($python -B "${source_path}/python/scripts/mkvenv.py" create pyvenv)"
1112if test "$?" -ne 0 ; then
1113 error_exit "python venv creation failed"
1114fi
1115
1116# Suppress writing compiled files
1117python="$python -B"
Paolo Bonzini462a6562023-02-10 17:18:54 +01001118
Stefan Hajnoczic53eeaf2017-03-28 14:44:18 +01001119
John Snow66e2c6c2023-05-10 23:54:25 -04001120if ! $python "${source_path}/python/scripts/mkvenv.py" ensure \
1121 --dir "${source_path}/python/wheels" \
1122 --diagnose "meson" \
1123 "meson>=0.61.5" ;
1124then
1125 exit 1
Paolo Bonzinia5665052019-06-10 12:05:14 +02001126fi
Paolo Bonzinia5665052019-06-10 12:05:14 +02001127
John Snow66e2c6c2023-05-10 23:54:25 -04001128# At this point, we expect Meson to be installed and available.
1129# We expect mkvenv or pip to have created pyvenv/bin/meson for us.
1130# We ignore PATH completely here: we want to use the venv's Meson
1131# *exclusively*.
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001132
John Snow66e2c6c2023-05-10 23:54:25 -04001133meson="$(cd pyvenv/bin; pwd)/meson"
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001134
Paolo Bonzini09e93322020-08-13 09:28:11 -04001135# Probe for ninja
Paolo Bonzini48328882020-08-26 08:04:15 +02001136
1137if test -z "$ninja"; then
1138 for c in ninja ninja-build samu; do
1139 if has $c; then
1140 ninja=$(command -v "$c")
1141 break
1142 fi
1143 done
Paolo Bonzini09e93322020-08-13 09:28:11 -04001144 if test -z "$ninja"; then
1145 error_exit "Cannot find Ninja"
1146 fi
Paolo Bonzini48328882020-08-26 08:04:15 +02001147fi
Paolo Bonzinia5665052019-06-10 12:05:14 +02001148
Daniel Henrique Barboza9aae6e52017-11-02 07:09:06 -02001149# Check that the C compiler works. Doing this here before testing
1150# the host CPU ensures that we had a valid CC to autodetect the
1151# $cpu var (and we should bail right here if that's not the case).
1152# It also allows the help message to be printed without a CC.
1153write_c_skeleton;
1154if compile_object ; then
1155 : C compiler works ok
1156else
1157 error_exit "\"$cc\" either does not exist or does not work"
1158fi
1159if ! compile_prog ; then
1160 error_exit "\"$cc\" cannot build an executable (is your linker broken?)"
1161fi
1162
Peter Maydell9c83ffd2014-02-25 18:27:49 +00001163# Consult white-list to determine whether to enable werror
1164# by default. Only enable by default for git builds
Peter Maydell9c83ffd2014-02-25 18:27:49 +00001165if test -z "$werror" ; then
Dan Streetman7d7dbf92021-01-19 12:20:46 -05001166 if test "$git_submodules_action" != "ignore" && \
Eric Blakee633a5c2019-02-04 20:39:37 -06001167 { test "$linux" = "yes" || test "$mingw32" = "yes"; }; then
Peter Maydell9c83ffd2014-02-25 18:27:49 +00001168 werror="yes"
1169 else
1170 werror="no"
1171 fi
1172fi
1173
Paolo Bonzini975ff032020-11-20 10:34:10 +01001174if test "$targetos" = "bogus"; then
Peter Maydellfb59dab2017-03-28 14:01:52 +01001175 # Now that we know that we're not printing the help and that
1176 # the compiler works (so the results of the check_defines we used
1177 # to identify the OS are reliable), if we didn't recognize the
1178 # host OS we should stop now.
Peter Maydell951fedf2017-07-13 16:15:32 +01001179 error_exit "Unrecognized host OS (uname -s reports '$(uname -s)')"
Peter Maydellfb59dab2017-03-28 14:01:52 +01001180fi
1181
Thomas Huthefc6c072018-12-03 10:12:32 +01001182# Check whether the compiler matches our minimum requirements:
1183cat > $TMPC << EOF
1184#if defined(__clang_major__) && defined(__clang_minor__)
1185# ifdef __apple_build_version__
Thomas Huth74a1b252023-01-31 19:02:39 +01001186# if __clang_major__ < 12 || (__clang_major__ == 12 && __clang_minor__ < 0)
1187# error You need at least XCode Clang v12.0 to compile QEMU
Thomas Huthefc6c072018-12-03 10:12:32 +01001188# endif
1189# else
Thomas Huth74a1b252023-01-31 19:02:39 +01001190# if __clang_major__ < 10 || (__clang_major__ == 10 && __clang_minor__ < 0)
1191# error You need at least Clang v10.0 to compile QEMU
Thomas Huthefc6c072018-12-03 10:12:32 +01001192# endif
1193# endif
1194#elif defined(__GNUC__) && defined(__GNUC_MINOR__)
nia3830df52021-10-01 15:30:03 +00001195# if __GNUC__ < 7 || (__GNUC__ == 7 && __GNUC_MINOR__ < 4)
1196# error You need at least GCC v7.4.0 to compile QEMU
Thomas Huthefc6c072018-12-03 10:12:32 +01001197# endif
1198#else
1199# error You either need GCC or Clang to compiler QEMU
1200#endif
1201int main (void) { return 0; }
1202EOF
1203if ! compile_prog "" "" ; then
Thomas Huth74a1b252023-01-31 19:02:39 +01001204 error_exit "You need at least GCC v7.4 or Clang v10.0 (or XCode Clang v12.0)"
Thomas Huthefc6c072018-12-03 10:12:32 +01001205fi
1206
Richard Henderson00849b92020-06-17 13:13:06 -07001207# Accumulate -Wfoo and -Wno-bar separately.
1208# We will list all of the enable flags first, and the disable flags second.
1209# Note that we do not add -Werror, because that would enable it for all
1210# configure tests. If a configure test failed due to -Werror this would
1211# just silently disable some features, so it's too error prone.
1212
1213warn_flags=
Paolo Bonzinica9b5c22022-10-12 14:21:22 +02001214add_to warn_flags -Wundef
1215add_to warn_flags -Wwrite-strings
1216add_to warn_flags -Wmissing-prototypes
1217add_to warn_flags -Wstrict-prototypes
1218add_to warn_flags -Wredundant-decls
Richard Henderson00849b92020-06-17 13:13:06 -07001219add_to warn_flags -Wold-style-declaration
1220add_to warn_flags -Wold-style-definition
1221add_to warn_flags -Wtype-limits
1222add_to warn_flags -Wformat-security
1223add_to warn_flags -Wformat-y2k
1224add_to warn_flags -Winit-self
1225add_to warn_flags -Wignored-qualifiers
1226add_to warn_flags -Wempty-body
1227add_to warn_flags -Wnested-externs
1228add_to warn_flags -Wendif-labels
1229add_to warn_flags -Wexpansion-to-defined
Thomas Huth0a2ebce2020-12-11 16:24:26 +01001230add_to warn_flags -Wimplicit-fallthrough=2
Daniel P. Berrangé88a0ef02022-12-19 08:02:05 -05001231add_to warn_flags -Wmissing-format-attribute
Thomas Huth2946e1a2023-03-01 12:34:25 +01001232
1233if test "$targetos" != "darwin"; then
1234 add_to warn_flags -Wthread-safety
1235fi
Richard Henderson00849b92020-06-17 13:13:06 -07001236
1237nowarn_flags=
1238add_to nowarn_flags -Wno-initializer-overrides
1239add_to nowarn_flags -Wno-missing-include-dirs
1240add_to nowarn_flags -Wno-shift-negative-value
1241add_to nowarn_flags -Wno-string-plus-int
1242add_to nowarn_flags -Wno-typedef-redefinition
Richard Hendersonaabab962020-06-17 13:13:07 -07001243add_to nowarn_flags -Wno-tautological-type-limit-compare
Richard Hendersonbac8d222020-06-17 13:13:08 -07001244add_to nowarn_flags -Wno-psabi
Chenyi Qiang28d01b12022-09-15 17:10:34 +08001245add_to nowarn_flags -Wno-gnu-variable-sized-type-not-at-end
Richard Henderson00849b92020-06-17 13:13:06 -07001246
1247gcc_flags="$warn_flags $nowarn_flags"
John Snow93b25862015-03-25 18:57:37 -04001248
1249cc_has_warning_flag() {
1250 write_c_skeleton;
1251
Peter Maydella1d29d62012-10-27 22:19:07 +01001252 # Use the positive sense of the flag when testing for -Wno-wombat
1253 # support (gcc will happily accept the -Wno- form of unknown
1254 # warning options).
John Snow93b25862015-03-25 18:57:37 -04001255 optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')"
1256 compile_prog "-Werror $optflag" ""
1257}
1258
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +01001259objcc_has_warning_flag() {
1260 cat > $TMPM <<EOF
1261int main(void) { return 0; }
1262EOF
1263
1264 # Use the positive sense of the flag when testing for -Wno-wombat
1265 # support (gcc will happily accept the -Wno- form of unknown
1266 # warning options).
1267 optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')"
1268 do_objc -Werror $optflag \
1269 $OBJCFLAGS $EXTRA_OBJCFLAGS $CONFIGURE_OBJCFLAGS $QEMU_OBJCFLAGS \
1270 -o $TMPE $TMPM $QEMU_LDFLAGS
1271}
1272
John Snow93b25862015-03-25 18:57:37 -04001273for flag in $gcc_flags; do
1274 if cc_has_warning_flag $flag ; then
1275 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
Paolo Bonzini8d050952010-12-23 11:43:52 +01001276 fi
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +01001277 if objcc_has_warning_flag $flag ; then
1278 QEMU_OBJCFLAGS="$QEMU_OBJCFLAGS $flag"
1279 fi
Paolo Bonzini8d050952010-12-23 11:43:52 +01001280done
1281
Miroslav Rezanina3b463a32014-07-02 10:05:24 +02001282if test "$stack_protector" != "no"; then
Rodrigo Rebellofccd35a2015-11-12 12:04:28 -02001283 cat > $TMPC << EOF
1284int main(int argc, char *argv[])
1285{
Stefan Weil8a0afbb2022-11-02 21:22:58 +01001286 char arr[64], *p = arr, *c = argv[argc - 1];
Rodrigo Rebellofccd35a2015-11-12 12:04:28 -02001287 while (*c) {
1288 *p++ = *c++;
1289 }
1290 return 0;
1291}
1292EOF
Steven Noonan63678e12014-03-28 17:19:02 +01001293 gcc_flags="-fstack-protector-strong -fstack-protector-all"
Miroslav Rezanina3b463a32014-07-02 10:05:24 +02001294 sp_on=0
Steven Noonan63678e12014-03-28 17:19:02 +01001295 for flag in $gcc_flags; do
Peter Maydell590e5dd2014-04-11 17:13:52 +01001296 # We need to check both a compile and a link, since some compiler
1297 # setups fail only on a .c->.o compile and some only at link time
Paolo Bonzini086d5f72020-02-03 15:22:17 +01001298 if compile_object "-Werror $flag" &&
Peter Maydell590e5dd2014-04-11 17:13:52 +01001299 compile_prog "-Werror $flag" ""; then
Steven Noonan63678e12014-03-28 17:19:02 +01001300 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
Paolo Bonzinidb5adea2019-12-11 15:34:27 +01001301 QEMU_LDFLAGS="$QEMU_LDFLAGS $flag"
Miroslav Rezanina3b463a32014-07-02 10:05:24 +02001302 sp_on=1
Steven Noonan63678e12014-03-28 17:19:02 +01001303 break
1304 fi
1305 done
Miroslav Rezanina3b463a32014-07-02 10:05:24 +02001306 if test "$stack_protector" = yes; then
1307 if test $sp_on = 0; then
1308 error_exit "Stack protector not supported"
1309 fi
1310 fi
Marc-André Lureau37746c52013-02-25 23:31:12 +01001311fi
1312
Marc-André Lureau21e709a2019-07-18 16:04:13 +04001313# Our module code doesn't support Windows
1314if test "$modules" = "yes" && test "$mingw32" = "yes" ; then
1315 error_exit "Modules are not available for Windows"
1316fi
1317
Alex Bennée5f2453a2021-07-09 15:29:55 +01001318# Static linking is not possible with plugins, modules or PIE
Avi Kivity40d64442011-11-15 20:12:17 +02001319if test "$static" = "yes" ; then
Paolo Bonziniaa0d1f42014-02-25 17:36:55 +01001320 if test "$modules" = "yes" ; then
1321 error_exit "static and modules are mutually incompatible"
1322 fi
Alex Bennée5f2453a2021-07-09 15:29:55 +01001323 if test "$plugins" = "yes"; then
1324 error_exit "static and plugins are mutually incompatible"
Alex Bennéeba4dd2a2021-07-09 15:29:57 +01001325 else
1326 plugins="no"
Alex Bennée5f2453a2021-07-09 15:29:55 +01001327 fi
Avi Kivity40d64442011-11-15 20:12:17 +02001328fi
Paolo Bonzini37650682021-12-10 09:55:15 +01001329test "$plugins" = "" && plugins=yes
Avi Kivity40d64442011-11-15 20:12:17 +02001330
Richard Hendersonb2634122019-12-17 13:54:56 -10001331cat > $TMPC << EOF
Avi Kivity21d4a792011-11-23 11:24:25 +02001332
1333#ifdef __linux__
1334# define THREAD __thread
1335#else
1336# define THREAD
1337#endif
Avi Kivity21d4a792011-11-23 11:24:25 +02001338static THREAD int tls_var;
Avi Kivity21d4a792011-11-23 11:24:25 +02001339int main(void) { return tls_var; }
Avi Kivity40d64442011-11-15 20:12:17 +02001340EOF
Alex Bennée412aeac2019-08-15 19:41:51 +00001341
Alex Bennée977cccb2022-10-27 19:36:11 +01001342# Meson currently only handles pie as a boolean for now so if we have
1343# explicitly disabled PIE we need to extend our cflags because it wont.
Richard Henderson12781462019-12-17 15:30:14 -10001344if test "$static" = "yes"; then
Richard Hendersoneca7a8e2020-04-03 20:11:50 +01001345 if test "$pie" != "no" && compile_prog "-Werror -fPIE -DPIE" "-static-pie"; then
Paolo Bonzini5770e8a2020-09-23 05:26:15 -04001346 CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS"
Richard Henderson12781462019-12-17 15:30:14 -10001347 pie="yes"
1348 elif test "$pie" = "yes"; then
1349 error_exit "-static-pie not available due to missing toolchain support"
1350 else
Richard Henderson12781462019-12-17 15:30:14 -10001351 pie="no"
Warner Losha3656892023-02-10 11:12:46 -07001352 QEMU_CFLAGS="-fno-pie $QEMU_CFLAGS"
Richard Henderson12781462019-12-17 15:30:14 -10001353 fi
1354elif test "$pie" = "no"; then
Paolo Bonzinib9eae9e2022-03-29 13:07:25 +02001355 if compile_prog "-Werror -fno-pie" "-no-pie"; then
1356 CONFIGURE_CFLAGS="-fno-pie $CONFIGURE_CFLAGS"
1357 CONFIGURE_LDFLAGS="-no-pie $CONFIGURE_LDFLAGS"
Alex Bennéeabafb642022-09-14 16:59:38 +01001358 QEMU_CFLAGS="-fno-pie -no-pie $QEMU_CFLAGS"
Paolo Bonzinib9eae9e2022-03-29 13:07:25 +02001359 fi
Richard Hendersoneca7a8e2020-04-03 20:11:50 +01001360elif compile_prog "-Werror -fPIE -DPIE" "-pie"; then
Paolo Bonzini5770e8a2020-09-23 05:26:15 -04001361 CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS"
1362 CONFIGURE_LDFLAGS="-pie $CONFIGURE_LDFLAGS"
Richard Henderson2c674102019-12-17 15:15:01 -10001363 pie="yes"
1364elif test "$pie" = "yes"; then
1365 error_exit "PIE not available due to missing toolchain support"
1366else
1367 echo "Disabling PIE due to missing toolchain support"
1368 pie="no"
Avi Kivity40d64442011-11-15 20:12:17 +02001369fi
1370
Paolo Bonzini09dada42013-04-17 16:26:47 +02001371##########################################
1372# __sync_fetch_and_and requires at least -march=i486. Many toolchains
1373# use i686 as default anyway, but for those that don't, an explicit
1374# specification is necessary
1375
1376if test "$cpu" = "i386"; then
1377 cat > $TMPC << EOF
1378static int sfaa(int *ptr)
1379{
1380 return __sync_fetch_and_and(ptr, 0);
1381}
1382
1383int main(void)
1384{
1385 int val = 42;
Stefan Weil1405b622013-05-11 21:46:58 +02001386 val = __sync_val_compare_and_swap(&val, 0, 1);
Paolo Bonzini09dada42013-04-17 16:26:47 +02001387 sfaa(&val);
1388 return val;
1389}
1390EOF
1391 if ! compile_prog "" "" ; then
1392 QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS"
1393 fi
1394fi
1395
Stefan Weilafb63eb2012-09-26 22:04:38 +02001396if test -z "${target_list+xxx}" ; then
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001397 default_targets=yes
Paolo Bonzinid880a3b2017-07-03 16:58:28 +02001398 for target in $default_target_list; do
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001399 target_list="$target_list $target"
Paolo Bonzinid880a3b2017-07-03 16:58:28 +02001400 done
1401 target_list="${target_list# }"
Anthony Liguori121afa92012-09-14 08:17:03 -05001402else
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001403 default_targets=no
Stefan Weil89138852016-05-16 15:10:20 +02001404 target_list=$(echo "$target_list" | sed -e 's/,/ /g')
Paolo Bonzinid880a3b2017-07-03 16:58:28 +02001405 for target in $target_list; do
1406 # Check that we recognised the target name; this allows a more
1407 # friendly error message than if we let it fall through.
1408 case " $default_target_list " in
1409 *" $target "*)
1410 ;;
1411 *)
1412 error_exit "Unknown target name '$target'"
1413 ;;
1414 esac
Paolo Bonzinid880a3b2017-07-03 16:58:28 +02001415 done
bellard5327cf42005-01-10 23:18:50 +00001416fi
Peter Maydell25b48332013-05-20 16:16:16 +01001417
Paolo Bonzinif55fe272010-05-26 16:08:17 +02001418# see if system emulation was really requested
1419case " $target_list " in
1420 *"-softmmu "*) softmmu=yes
1421 ;;
1422 *) softmmu=no
1423 ;;
1424esac
bellard5327cf42005-01-10 23:18:50 +00001425
Philippe Mathieu-Daudé76301562022-02-04 15:54:47 +01001426if test "$tcg" = "auto"; then
1427 if test -z "$target_list"; then
1428 tcg="disabled"
1429 else
1430 tcg="enabled"
1431 fi
1432fi
1433
1434if test "$tcg" = "enabled"; then
1435 git_submodules="$git_submodules tests/fp/berkeley-testfloat-3"
1436 git_submodules="$git_submodules tests/fp/berkeley-softfloat-3"
1437fi
1438
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001439##########################################
bellard7d132992003-03-06 23:23:54 +00001440# big/little endian test
1441cat > $TMPC << EOF
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001442#if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
1443# error LITTLE
1444#endif
1445int main(void) { return 0; }
bellard7d132992003-03-06 23:23:54 +00001446EOF
1447
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001448if ! compile_prog ; then
1449 bigendian="no"
Mike Frysinger61cc9192013-06-30 23:30:18 -04001450else
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001451 cat > $TMPC << EOF
1452#if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
1453# error BIG
1454#endif
1455int main(void) { return 0; }
1456EOF
1457
1458 if ! compile_prog ; then
1459 bigendian="yes"
1460 else
Mike Frysinger61cc9192013-06-30 23:30:18 -04001461 echo big/little test failed
Thomas Huth659eb152021-07-15 10:39:28 +02001462 exit 1
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001463 fi
bellard7d132992003-03-06 23:23:54 +00001464fi
1465
Gonglei015a33b2014-07-01 20:58:08 +08001466##########################################
Stefan Weil779ab5e2012-12-16 11:29:45 +01001467# pkg-config probe
1468
1469if ! has "$pkg_config_exe"; then
Peter Maydell76ad07a2013-04-08 12:11:26 +01001470 error_exit "pkg-config binary '$pkg_config_exe' not found"
Stefan Weil779ab5e2012-12-16 11:29:45 +01001471fi
1472
1473##########################################
Anthony Liguorie18df142011-07-19 14:50:29 -05001474# glib support probe
Paolo Bonzinia52d28a2012-04-05 13:01:54 +02001475
Thomas Huth0ce9b082022-05-13 08:39:58 +02001476# When bumping glib_req_ver, please check also whether we should increase
1477# the _WIN32_WINNT setting in osdep.h according to the value from glib
Daniel P. Berrangéb4c60362021-05-14 13:04:13 +01001478glib_req_ver=2.56
Paolo Bonziniaa0d1f42014-02-25 17:36:55 +01001479glib_modules=gthread-2.0
1480if test "$modules" = yes; then
Gerd Hoffmanna88afc62018-03-08 09:53:00 +01001481 glib_modules="$glib_modules gmodule-export-2.0"
Paolo Bonzinib906aca2021-08-11 12:05:50 +02001482elif test "$plugins" = "yes"; then
1483 glib_modules="$glib_modules gmodule-no-export-2.0"
Emilio G. Cota54cb65d2017-08-30 18:39:53 -04001484fi
Fam Zhenge26110c2014-02-10 14:48:57 +08001485
Paolo Bonziniaa0d1f42014-02-25 17:36:55 +01001486for i in $glib_modules; do
Fam Zhenge26110c2014-02-10 14:48:57 +08001487 if $pkg_config --atleast-version=$glib_req_ver $i; then
Stefan Weil89138852016-05-16 15:10:20 +02001488 glib_cflags=$($pkg_config --cflags $i)
1489 glib_libs=$($pkg_config --libs $i)
Fam Zhenge26110c2014-02-10 14:48:57 +08001490 else
1491 error_exit "glib-$glib_req_ver $i is required to compile QEMU"
1492 fi
1493done
1494
Emilio Cotae3feb2c2023-02-05 11:37:57 -05001495# Check whether glib has gslice, which we have to avoid for correctness.
1496# TODO: remove this check and the corresponding workaround (qtree) when
1497# the minimum supported glib is >= $glib_dropped_gslice_version.
1498glib_dropped_gslice_version=2.75.3
1499for i in $glib_modules; do
1500 if ! $pkg_config --atleast-version=$glib_dropped_gslice_version $i; then
1501 glib_has_gslice="yes"
1502 break
1503 fi
1504done
1505
Marc-André Lureau5b9e7d02022-05-25 16:41:39 +02001506glib_bindir="$($pkg_config --variable=bindir glib-2.0)"
1507if test -z "$glib_bindir" ; then
1508 glib_bindir="$($pkg_config --variable=prefix glib-2.0)"/bin
1509fi
1510
Paolo Bonzini215b0c22020-09-01 08:41:17 -04001511# This workaround is required due to a bug in pkg-config file for glib as it
1512# doesn't define GLIB_STATIC_COMPILATION for pkg-config --static
1513
1514if test "$static" = yes && test "$mingw32" = yes; then
1515 glib_cflags="-DGLIB_STATIC_COMPILATION $glib_cflags"
1516fi
1517
Daniel P. Berrange977a82a2016-01-27 09:00:45 +00001518# Sanity check that the current size_t matches the
1519# size that glib thinks it should be. This catches
1520# problems on multi-arch where people try to build
1521# 32-bit QEMU while pointing at 64-bit glib headers
1522cat > $TMPC <<EOF
1523#include <glib.h>
1524#include <unistd.h>
1525
1526#define QEMU_BUILD_BUG_ON(x) \
1527 typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused));
1528
1529int main(void) {
1530 QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T);
1531 return 0;
1532}
1533EOF
1534
Paolo Bonzini215b0c22020-09-01 08:41:17 -04001535if ! compile_prog "$glib_cflags" "$glib_libs" ; then
Daniel P. Berrange977a82a2016-01-27 09:00:45 +00001536 error_exit "sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T."\
1537 "You probably need to set PKG_CONFIG_LIBDIR"\
1538 "to point to the right pkg-config files for your"\
1539 "build target"
1540fi
1541
Eric Blake9bda6002020-03-17 12:55:34 -05001542# Silence clang warnings triggered by glib < 2.57.2
1543cat > $TMPC << EOF
1544#include <glib.h>
1545typedef struct Foo {
1546 int i;
1547} Foo;
1548static void foo_free(Foo *f)
1549{
1550 g_free(f);
1551}
Marc-André Lureaue0e7fe02022-03-12 02:22:02 +04001552G_DEFINE_AUTOPTR_CLEANUP_FUNC(Foo, foo_free)
Eric Blake9bda6002020-03-17 12:55:34 -05001553int main(void) { return 0; }
1554EOF
1555if ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then
1556 if cc_has_warning_flag "-Wno-unused-function"; then
1557 glib_cflags="$glib_cflags -Wno-unused-function"
Paolo Bonzini5770e8a2020-09-23 05:26:15 -04001558 CONFIGURE_CFLAGS="$CONFIGURE_CFLAGS -Wno-unused-function"
Eric Blake9bda6002020-03-17 12:55:34 -05001559 fi
1560fi
1561
Fam Zhenge26110c2014-02-10 14:48:57 +08001562##########################################
aurel32f652e6a2008-12-16 10:43:48 +00001563# fdt probe
Paolo Bonzinifbb41212020-10-05 11:31:15 +02001564
1565case "$fdt" in
1566 auto | enabled | internal)
1567 # Simpler to always update submodule, even if not needed.
Paolo Bonzini2d652f22021-05-12 09:21:56 +02001568 git_submodules="${git_submodules} dtc"
Peter Maydelle169e1e2013-05-24 16:26:54 +01001569 ;;
Paolo Bonzinifbb41212020-10-05 11:31:15 +02001570esac
aurel32f652e6a2008-12-16 10:43:48 +00001571
Michael Walle20ff0752011-03-07 23:32:39 +01001572##########################################
Alex Barcelo519175a2012-02-28 12:25:50 +01001573# check and set a backend for coroutine
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301574
Peter Maydell7c2acc72013-04-08 12:11:27 +01001575# We prefer ucontext, but it's not always possible. The fallback
Daniel P. Berrange33c53c52017-04-28 13:24:44 +01001576# is sigcontext. On Windows the only valid backend is the Windows
1577# specific one.
Peter Maydell7c2acc72013-04-08 12:11:27 +01001578
1579ucontext_works=no
1580if test "$darwin" != "yes"; then
1581 cat > $TMPC << EOF
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301582#include <ucontext.h>
Peter Maydellcdf84802012-02-23 16:20:05 +00001583#ifdef __stub_makecontext
1584#error Ignoring glibc stub makecontext which will always fail
1585#endif
Stefan Weil75cafad2011-12-17 09:27:29 +01001586int main(void) { makecontext(0, 0, 0); return 0; }
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301587EOF
Peter Maydell7c2acc72013-04-08 12:11:27 +01001588 if compile_prog "" "" ; then
1589 ucontext_works=yes
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301590 fi
Peter Maydell7c2acc72013-04-08 12:11:27 +01001591fi
1592
1593if test "$coroutine" = ""; then
1594 if test "$mingw32" = "yes"; then
1595 coroutine=win32
1596 elif test "$ucontext_works" = "yes"; then
1597 coroutine=ucontext
1598 else
1599 coroutine=sigaltstack
1600 fi
Alex Barcelo519175a2012-02-28 12:25:50 +01001601else
Peter Maydell7c2acc72013-04-08 12:11:27 +01001602 case $coroutine in
1603 windows)
1604 if test "$mingw32" != "yes"; then
1605 error_exit "'windows' coroutine backend only valid for Windows"
1606 fi
1607 # Unfortunately the user visible backend name doesn't match the
1608 # coroutine-*.c filename for this case, so we have to adjust it here.
1609 coroutine=win32
1610 ;;
1611 ucontext)
1612 if test "$ucontext_works" != "yes"; then
Paolo Bonzini7cb58442022-08-19 18:40:46 +02001613 error_exit "'ucontext' backend requested but makecontext not available"
Peter Maydell7c2acc72013-04-08 12:11:27 +01001614 fi
1615 ;;
Daniel P. Berrange33c53c52017-04-28 13:24:44 +01001616 sigaltstack)
Peter Maydell7c2acc72013-04-08 12:11:27 +01001617 if test "$mingw32" = "yes"; then
1618 error_exit "only the 'windows' coroutine backend is valid for Windows"
1619 fi
1620 ;;
1621 *)
1622 error_exit "unknown coroutine backend $coroutine"
1623 ;;
1624 esac
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301625fi
1626
Daniele Buono1e4f6062020-05-29 16:51:21 -04001627##################################################
1628# SafeStack
1629
1630
1631if test "$safe_stack" = "yes"; then
1632cat > $TMPC << EOF
Stefan Weil8a0afbb2022-11-02 21:22:58 +01001633int main(void)
Daniele Buono1e4f6062020-05-29 16:51:21 -04001634{
1635#if ! __has_feature(safe_stack)
1636#error SafeStack Disabled
1637#endif
1638 return 0;
1639}
1640EOF
1641 flag="-fsanitize=safe-stack"
1642 # Check that safe-stack is supported and enabled.
1643 if compile_prog "-Werror $flag" "$flag"; then
1644 # Flag needed both at compilation and at linking
1645 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
1646 QEMU_LDFLAGS="$QEMU_LDFLAGS $flag"
1647 else
1648 error_exit "SafeStack not supported by your compiler"
1649 fi
1650 if test "$coroutine" != "ucontext"; then
1651 error_exit "SafeStack is only supported by the coroutine backend ucontext"
1652 fi
1653else
1654cat > $TMPC << EOF
Stefan Weil8a0afbb2022-11-02 21:22:58 +01001655int main(void)
Daniele Buono1e4f6062020-05-29 16:51:21 -04001656{
1657#if defined(__has_feature)
1658#if __has_feature(safe_stack)
1659#error SafeStack Enabled
1660#endif
1661#endif
1662 return 0;
1663}
1664EOF
1665if test "$safe_stack" = "no"; then
1666 # Make sure that safe-stack is disabled
1667 if ! compile_prog "-Werror" ""; then
1668 # SafeStack was already enabled, try to explicitly remove the feature
1669 flag="-fno-sanitize=safe-stack"
1670 if ! compile_prog "-Werror $flag" "$flag"; then
1671 error_exit "Configure cannot disable SafeStack"
1672 fi
1673 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
1674 QEMU_LDFLAGS="$QEMU_LDFLAGS $flag"
1675 fi
1676else # "$safe_stack" = ""
1677 # Set safe_stack to yes or no based on pre-existing flags
1678 if compile_prog "-Werror" ""; then
1679 safe_stack="no"
1680 else
1681 safe_stack="yes"
1682 if test "$coroutine" != "ucontext"; then
1683 error_exit "SafeStack is only supported by the coroutine backend ucontext"
1684 fi
1685 fi
1686fi
1687fi
Peter Lieven7d992e42016-09-27 11:58:45 +02001688
Richard Henderson76a347e2012-12-28 14:17:02 -08001689########################################
John Snowfd0e6052015-03-25 18:57:39 -04001690# check if ccache is interfering with
1691# semantic analysis of macros
1692
John Snow5e4dfd32015-10-28 13:56:40 -04001693unset CCACHE_CPP2
John Snowfd0e6052015-03-25 18:57:39 -04001694ccache_cpp2=no
1695cat > $TMPC << EOF
1696static const int Z = 1;
1697#define fn() ({ Z; })
1698#define TAUT(X) ((X) == Z)
1699#define PAREN(X, Y) (X == Y)
1700#define ID(X) (X)
Stefan Weil8a0afbb2022-11-02 21:22:58 +01001701int main(void)
John Snowfd0e6052015-03-25 18:57:39 -04001702{
1703 int x = 0, y = 0;
1704 x = ID(x);
1705 x = fn();
1706 fn();
1707 if (PAREN(x, y)) return 0;
1708 if (TAUT(Z)) return 0;
1709 return 0;
1710}
1711EOF
1712
1713if ! compile_object "-Werror"; then
1714 ccache_cpp2=yes
1715fi
1716
John Snowb553a042015-11-03 15:43:42 -05001717#################################################
1718# clang does not support glibc + FORTIFY_SOURCE.
1719
1720if test "$fortify_source" != "no"; then
1721 if echo | $cc -dM -E - | grep __clang__ > /dev/null 2>&1 ; then
1722 fortify_source="no";
Peter Maydelle1890912017-06-26 16:25:24 +01001723 elif test -n "$cxx" && has $cxx &&
John Snowcfcc7c12015-11-12 11:29:49 -05001724 echo | $cxx -dM -E - | grep __clang__ >/dev/null 2>&1 ; then
John Snowb553a042015-11-03 15:43:42 -05001725 fortify_source="no";
1726 else
1727 fortify_source="yes"
1728 fi
1729fi
1730
Aneesh Kumar K.Vd2042372011-10-12 19:11:24 +05301731##########################################
Marc-André Lureau247724c2018-01-16 16:11:51 +01001732# checks for sanitizers
1733
Marc-André Lureau247724c2018-01-16 16:11:51 +01001734have_asan=no
1735have_ubsan=no
Marc-André Lureaud83414e2018-01-16 16:11:52 +01001736have_asan_iface_h=no
1737have_asan_iface_fiber=no
Marc-André Lureau247724c2018-01-16 16:11:51 +01001738
1739if test "$sanitizers" = "yes" ; then
Marc-André Lureaub9f44da2018-02-15 22:25:47 +01001740 write_c_skeleton
Marc-André Lureau247724c2018-01-16 16:11:51 +01001741 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" ""; then
1742 have_asan=yes
1743 fi
Marc-André Lureaub9f44da2018-02-15 22:25:47 +01001744
1745 # we could use a simple skeleton for flags checks, but this also
1746 # detect the static linking issue of ubsan, see also:
1747 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84285
1748 cat > $TMPC << EOF
Akihiko Odaki8041e9e2023-04-05 16:00:30 +09001749int main(int argc, char **argv)
1750{
1751 return argc + 1;
Marc-André Lureaub9f44da2018-02-15 22:25:47 +01001752}
1753EOF
Marc-André Lureau247724c2018-01-16 16:11:51 +01001754 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=undefined" ""; then
1755 have_ubsan=yes
1756 fi
Marc-André Lureaud83414e2018-01-16 16:11:52 +01001757
1758 if check_include "sanitizer/asan_interface.h" ; then
1759 have_asan_iface_h=yes
1760 fi
1761
1762 cat > $TMPC << EOF
1763#include <sanitizer/asan_interface.h>
1764int main(void) {
1765 __sanitizer_start_switch_fiber(0, 0, 0);
1766 return 0;
1767}
1768EOF
1769 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" "" ; then
1770 have_asan_iface_fiber=yes
1771 fi
Marc-André Lureau247724c2018-01-16 16:11:51 +01001772fi
1773
Lingfeng Yang0aebab02020-06-12 20:02:23 +01001774# Thread sanitizer is, for now, much noisier than the other sanitizers;
1775# keep it separate until that is not the case.
1776if test "$tsan" = "yes" && test "$sanitizers" = "yes"; then
1777 error_exit "TSAN is not supported with other sanitiziers."
1778fi
1779have_tsan=no
1780have_tsan_iface_fiber=no
1781if test "$tsan" = "yes" ; then
1782 write_c_skeleton
1783 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then
1784 have_tsan=yes
1785 fi
1786 cat > $TMPC << EOF
1787#include <sanitizer/tsan_interface.h>
1788int main(void) {
1789 __tsan_create_fiber(0);
1790 return 0;
1791}
1792EOF
1793 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then
1794 have_tsan_iface_fiber=yes
1795 fi
1796fi
1797
Alexander Bulekovadc28022020-02-19 23:11:14 -05001798##########################################
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001799# functions to probe cross compilers
1800
1801container="no"
Alex Bennée60f999b2023-02-28 19:06:46 +00001802runc=""
Stefan Weil47fdc8f2022-11-17 17:25:20 +00001803if test $use_containers = "yes" && (has "docker" || has "podman"); then
Paolo Bonzinic4575b52022-09-29 12:41:58 +01001804 case $($python "$source_path"/tests/docker/docker.py probe) in
1805 *docker) container=docker ;;
1806 podman) container=podman ;;
1807 no) container=no ;;
1808 esac
Paolo Bonzinia3e28f82022-09-29 12:41:59 +01001809 if test "$container" != "no"; then
1810 docker_py="$python $source_path/tests/docker/docker.py --engine $container"
Alex Bennée60f999b2023-02-28 19:06:46 +00001811 runc=$($python "$source_path"/tests/docker/docker.py probe)
Paolo Bonzinia3e28f82022-09-29 12:41:59 +01001812 fi
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001813fi
1814
1815# cross compilers defaults, can be overridden with --cross-cc-ARCH
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001816: ${cross_prefix_aarch64="aarch64-linux-gnu-"}
1817: ${cross_prefix_aarch64_be="$cross_prefix_aarch64"}
1818: ${cross_prefix_alpha="alpha-linux-gnu-"}
1819: ${cross_prefix_arm="arm-linux-gnueabihf-"}
1820: ${cross_prefix_armeb="$cross_prefix_arm"}
1821: ${cross_prefix_hexagon="hexagon-unknown-linux-musl-"}
Song Gao34bb43b2022-06-06 20:43:33 +08001822: ${cross_prefix_loongarch64="loongarch64-unknown-linux-gnu-"}
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001823: ${cross_prefix_hppa="hppa-linux-gnu-"}
1824: ${cross_prefix_i386="i686-linux-gnu-"}
1825: ${cross_prefix_m68k="m68k-linux-gnu-"}
1826: ${cross_prefix_microblaze="microblaze-linux-musl-"}
1827: ${cross_prefix_mips64el="mips64el-linux-gnuabi64-"}
1828: ${cross_prefix_mips64="mips64-linux-gnuabi64-"}
1829: ${cross_prefix_mipsel="mipsel-linux-gnu-"}
1830: ${cross_prefix_mips="mips-linux-gnu-"}
1831: ${cross_prefix_nios2="nios2-linux-gnu-"}
1832: ${cross_prefix_ppc="powerpc-linux-gnu-"}
1833: ${cross_prefix_ppc64="powerpc64-linux-gnu-"}
1834: ${cross_prefix_ppc64le="$cross_prefix_ppc64"}
1835: ${cross_prefix_riscv64="riscv64-linux-gnu-"}
1836: ${cross_prefix_s390x="s390x-linux-gnu-"}
1837: ${cross_prefix_sh4="sh4-linux-gnu-"}
1838: ${cross_prefix_sparc64="sparc64-linux-gnu-"}
1839: ${cross_prefix_sparc="$cross_prefix_sparc64"}
1840: ${cross_prefix_x86_64="x86_64-linux-gnu-"}
1841
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001842: ${cross_cc_aarch64_be="$cross_cc_aarch64"}
1843: ${cross_cc_cflags_aarch64_be="-mbig-endian"}
Paolo Bonzini46af66e2022-05-27 16:35:49 +01001844: ${cross_cc_armeb="$cross_cc_arm"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001845: ${cross_cc_cflags_armeb="-mbig-endian"}
1846: ${cross_cc_hexagon="hexagon-unknown-linux-musl-clang"}
1847: ${cross_cc_cflags_hexagon="-mv67 -O2 -static"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001848: ${cross_cc_cflags_i386="-m32"}
Paolo Bonzinid44f2f92022-06-15 11:42:01 +02001849: ${cross_cc_cflags_ppc="-m32 -mbig-endian"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001850: ${cross_cc_cflags_ppc64="-m64 -mbig-endian"}
1851: ${cross_cc_ppc64le="$cross_cc_ppc64"}
1852: ${cross_cc_cflags_ppc64le="-m64 -mlittle-endian"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001853: ${cross_cc_cflags_sparc64="-m64 -mcpu=ultrasparc"}
Paolo Bonzini46af66e2022-05-27 16:35:49 +01001854: ${cross_cc_sparc="$cross_cc_sparc64"}
1855: ${cross_cc_cflags_sparc="-m32 -mcpu=supersparc"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001856: ${cross_cc_cflags_x86_64="-m64"}
1857
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001858compute_target_variable() {
Paolo Bonzini92e288f2022-06-22 10:42:58 +02001859 eval "$2="
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001860 if eval test -n "\"\${cross_prefix_$1}\""; then
1861 if eval has "\"\${cross_prefix_$1}\$3\""; then
1862 eval "$2=\"\${cross_prefix_$1}\$3\""
1863 fi
1864 fi
1865}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001866
Paolo Bonzini35fd22b2022-10-12 16:33:03 +02001867have_target() {
1868 for i; do
1869 case " $target_list " in
1870 *" $i "*) return 0;;
1871 *) ;;
1872 esac
1873 done
1874 return 1
1875}
1876
Paolo Bonzini52f08de2022-07-02 15:59:02 +02001877# probe_target_compiler TARGET
1878#
1879# Look for a compiler for the given target, either native or cross.
1880# Set variables target_* if a compiler is found, and container_cross_*
1881# if a Docker-based cross-compiler image is known for the target.
1882# Set got_cross_cc to yes/no depending on whether a non-container-based
1883# compiler was found.
1884#
1885# If TARGET is a user-mode emulation target, also set build_static to
1886# "y" if static linking is possible.
1887#
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001888probe_target_compiler() {
1889 # reset all output variables
Paolo Bonzini92e288f2022-06-22 10:42:58 +02001890 got_cross_cc=no
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001891 container_image=
1892 container_hosts=
1893 container_cross_cc=
Paolo Bonzini87eb0142022-05-27 16:35:52 +01001894 container_cross_ar=
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001895 container_cross_as=
1896 container_cross_ld=
Paolo Bonzini87eb0142022-05-27 16:35:52 +01001897 container_cross_nm=
1898 container_cross_objcopy=
1899 container_cross_ranlib=
1900 container_cross_strip=
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001901
Alex Bennéec3b570b2022-10-27 19:36:10 +01001902 # We shall skip configuring the target compiler if the user didn't
1903 # bother enabling an appropriate guest. This avoids building
1904 # extraneous firmware images and tests.
Mukilan Thiyagarajan73acb872022-12-21 09:04:06 +00001905 if test "${target_list#*$1}" = "$1"; then
Alex Bennéec3b570b2022-10-27 19:36:10 +01001906 return 1
1907 fi
1908
Paolo Bonzini52f08de2022-07-02 15:59:02 +02001909 target_arch=${1%%-*}
1910 case $target_arch in
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001911 aarch64) container_hosts="x86_64 aarch64" ;;
1912 alpha) container_hosts=x86_64 ;;
1913 arm) container_hosts="x86_64 aarch64" ;;
1914 cris) container_hosts=x86_64 ;;
1915 hexagon) container_hosts=x86_64 ;;
1916 hppa) container_hosts=x86_64 ;;
1917 i386) container_hosts=x86_64 ;;
Richard Hendersonb70ec502022-07-04 12:36:29 +05301918 loongarch64) container_hosts=x86_64 ;;
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001919 m68k) container_hosts=x86_64 ;;
1920 microblaze) container_hosts=x86_64 ;;
1921 mips64el) container_hosts=x86_64 ;;
1922 mips64) container_hosts=x86_64 ;;
1923 mipsel) container_hosts=x86_64 ;;
1924 mips) container_hosts=x86_64 ;;
1925 nios2) container_hosts=x86_64 ;;
1926 ppc) container_hosts=x86_64 ;;
1927 ppc64|ppc64le) container_hosts=x86_64 ;;
1928 riscv64) container_hosts=x86_64 ;;
1929 s390x) container_hosts=x86_64 ;;
1930 sh4) container_hosts=x86_64 ;;
1931 sparc64) container_hosts=x86_64 ;;
1932 tricore) container_hosts=x86_64 ;;
1933 x86_64) container_hosts="aarch64 ppc64el x86_64" ;;
1934 xtensa*) container_hosts=x86_64 ;;
1935 esac
1936
1937 for host in $container_hosts; do
1938 test "$container" != no || continue
1939 test "$host" = "$cpu" || continue
Paolo Bonzini52f08de2022-07-02 15:59:02 +02001940 case $target_arch in
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001941 aarch64)
1942 # We don't have any bigendian build tools so we only use this for AArch64
1943 container_image=debian-arm64-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001944 container_cross_prefix=aarch64-linux-gnu-
1945 container_cross_cc=${container_cross_prefix}gcc-10
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001946 ;;
1947 alpha)
1948 container_image=debian-alpha-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001949 container_cross_prefix=alpha-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001950 ;;
1951 arm)
1952 # We don't have any bigendian build tools so we only use this for ARM
1953 container_image=debian-armhf-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001954 container_cross_prefix=arm-linux-gnueabihf-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001955 ;;
1956 cris)
1957 container_image=fedora-cris-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001958 container_cross_prefix=cris-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001959 ;;
1960 hexagon)
1961 container_image=debian-hexagon-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001962 container_cross_prefix=hexagon-unknown-linux-musl-
1963 container_cross_cc=${container_cross_prefix}clang
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001964 ;;
1965 hppa)
1966 container_image=debian-hppa-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001967 container_cross_prefix=hppa-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001968 ;;
1969 i386)
1970 container_image=fedora-i386-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001971 container_cross_prefix=
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001972 ;;
Richard Hendersonb70ec502022-07-04 12:36:29 +05301973 loongarch64)
1974 container_image=debian-loongarch-cross
1975 container_cross_prefix=loongarch64-unknown-linux-gnu-
1976 ;;
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001977 m68k)
1978 container_image=debian-m68k-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001979 container_cross_prefix=m68k-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001980 ;;
1981 microblaze)
1982 container_image=debian-microblaze-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001983 container_cross_prefix=microblaze-linux-musl-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001984 ;;
1985 mips64el)
1986 container_image=debian-mips64el-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001987 container_cross_prefix=mips64el-linux-gnuabi64-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001988 ;;
1989 mips64)
1990 container_image=debian-mips64-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001991 container_cross_prefix=mips64-linux-gnuabi64-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001992 ;;
1993 mipsel)
1994 container_image=debian-mipsel-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001995 container_cross_prefix=mipsel-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001996 ;;
1997 mips)
1998 container_image=debian-mips-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001999 container_cross_prefix=mips-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002000 ;;
2001 nios2)
2002 container_image=debian-nios2-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002003 container_cross_prefix=nios2-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002004 ;;
2005 ppc)
2006 container_image=debian-powerpc-test-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002007 container_cross_prefix=powerpc-linux-gnu-
2008 container_cross_cc=${container_cross_prefix}gcc-10
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002009 ;;
2010 ppc64|ppc64le)
2011 container_image=debian-powerpc-test-cross
Richard Henderson705c8812022-07-28 11:39:01 -07002012 container_cross_prefix=powerpc${target_arch#ppc}-linux-gnu-
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002013 container_cross_cc=${container_cross_prefix}gcc-10
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002014 ;;
2015 riscv64)
2016 container_image=debian-riscv64-test-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002017 container_cross_prefix=riscv64-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002018 ;;
2019 s390x)
2020 container_image=debian-s390x-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002021 container_cross_prefix=s390x-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002022 ;;
2023 sh4)
2024 container_image=debian-sh4-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002025 container_cross_prefix=sh4-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002026 ;;
2027 sparc64)
2028 container_image=debian-sparc64-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002029 container_cross_prefix=sparc64-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002030 ;;
2031 tricore)
2032 container_image=debian-tricore-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002033 container_cross_prefix=tricore-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002034 container_cross_as=tricore-as
2035 container_cross_ld=tricore-ld
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002036 break
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002037 ;;
2038 x86_64)
2039 container_image=debian-amd64-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002040 container_cross_prefix=x86_64-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002041 ;;
2042 xtensa*)
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002043 container_hosts=x86_64
2044 container_image=debian-xtensa-cross
2045
2046 # default to the dc232b cpu
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002047 container_cross_prefix=/opt/2020.07/xtensa-dc232b-elf/bin/xtensa-dc232b-elf-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002048 ;;
2049 esac
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002050 : ${container_cross_cc:=${container_cross_prefix}gcc}
Paolo Bonzini87eb0142022-05-27 16:35:52 +01002051 : ${container_cross_ar:=${container_cross_prefix}ar}
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002052 : ${container_cross_as:=${container_cross_prefix}as}
2053 : ${container_cross_ld:=${container_cross_prefix}ld}
Paolo Bonzini87eb0142022-05-27 16:35:52 +01002054 : ${container_cross_nm:=${container_cross_prefix}nm}
2055 : ${container_cross_objcopy:=${container_cross_prefix}objcopy}
2056 : ${container_cross_ranlib:=${container_cross_prefix}ranlib}
2057 : ${container_cross_strip:=${container_cross_prefix}strip}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002058 done
2059
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002060 try=cross
Paolo Bonzini52f08de2022-07-02 15:59:02 +02002061 case "$target_arch:$cpu" in
Paolo Bonzini26e72532022-06-06 10:47:45 +02002062 aarch64_be:aarch64 | \
2063 armeb:arm | \
Paolo Bonzini640aabc2022-06-15 11:42:01 +02002064 i386:x86_64 | \
Paolo Bonzini26e72532022-06-06 10:47:45 +02002065 mips*:mips64 | \
Paolo Bonzinid44f2f92022-06-15 11:42:01 +02002066 ppc*:ppc64 | \
Paolo Bonzini26e72532022-06-06 10:47:45 +02002067 sparc:sparc64 | \
Paolo Bonzini640aabc2022-06-15 11:42:01 +02002068 "$cpu:$cpu")
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002069 try='native cross' ;;
Paolo Bonzini640aabc2022-06-15 11:42:01 +02002070 esac
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002071 eval "target_cflags=\${cross_cc_cflags_$target_arch}"
Peter Maydellb3b54722022-08-25 16:07:03 +01002072 for thistry in $try; do
2073 case $thistry in
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002074 native)
2075 target_cc=$cc
2076 target_ccas=$ccas
2077 target_ar=$ar
2078 target_as=$as
2079 target_ld=$ld
2080 target_nm=$nm
2081 target_objcopy=$objcopy
2082 target_ranlib=$ranlib
2083 target_strip=$strip
2084 ;;
2085 cross)
2086 target_cc=
2087 if eval test -n "\"\${cross_cc_$target_arch}\""; then
2088 if eval has "\"\${cross_cc_$target_arch}\""; then
2089 eval "target_cc=\"\${cross_cc_$target_arch}\""
2090 fi
2091 else
2092 compute_target_variable $target_arch target_cc gcc
2093 fi
2094 target_ccas=$target_cc
2095 compute_target_variable $target_arch target_ar ar
2096 compute_target_variable $target_arch target_as as
2097 compute_target_variable $target_arch target_ld ld
2098 compute_target_variable $target_arch target_nm nm
2099 compute_target_variable $target_arch target_objcopy objcopy
2100 compute_target_variable $target_arch target_ranlib ranlib
2101 compute_target_variable $target_arch target_strip strip
2102 ;;
2103 esac
2104
2105 if test -n "$target_cc"; then
2106 case $target_arch in
2107 i386|x86_64)
2108 if $target_cc --version | grep -qi "clang"; then
2109 continue
2110 fi
2111 ;;
2112 esac
2113 elif test -n "$target_as" && test -n "$target_ld"; then
2114 # Special handling for assembler only targets
2115 case $target in
2116 tricore-softmmu)
2117 build_static=
2118 got_cross_cc=yes
2119 break
2120 ;;
2121 *)
2122 continue
2123 ;;
2124 esac
2125 else
2126 continue
2127 fi
2128
2129 write_c_skeleton
2130 case $1 in
2131 *-softmmu)
2132 if do_compiler "$target_cc" $target_cflags -o $TMPO -c $TMPC &&
2133 do_compiler "$target_cc" $target_cflags -r -nostdlib -o "${TMPDIR1}/${TMPB}2.o" "$TMPO" -lgcc; then
2134 got_cross_cc=yes
2135 break
2136 fi
2137 ;;
2138 *)
2139 if do_compiler "$target_cc" $target_cflags -o $TMPE $TMPC -static ; then
2140 build_static=y
2141 got_cross_cc=yes
2142 break
2143 fi
2144 if do_compiler "$target_cc" $target_cflags -o $TMPE $TMPC ; then
2145 build_static=
2146 got_cross_cc=yes
2147 break
Paolo Bonzini2ad60f62022-05-27 16:35:50 +01002148 fi
2149 ;;
2150 esac
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002151 done
2152 if test $got_cross_cc != yes; then
2153 build_static=
2154 target_cc=
2155 target_ccas=
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002156 target_ar=
2157 target_as=
2158 target_ld=
2159 target_nm=
2160 target_objcopy=
2161 target_ranlib=
2162 target_strip=
Paolo Bonzini2ad60f62022-05-27 16:35:50 +01002163 fi
Alex Bennéefde10962022-10-11 12:34:16 +01002164 test -n "$target_cc"
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002165}
2166
2167write_target_makefile() {
Paolo Bonzinie81785a2022-06-15 11:45:55 +02002168 echo "EXTRA_CFLAGS=$target_cflags"
Paolo Bonzini0825cae2022-09-29 12:42:06 +01002169 if test -z "$target_cc" && test -z "$target_as"; then
2170 test -z "$container_image" && error_exit "Internal error: could not find cross compiler for $1?"
2171 echo "$1: docker-image-$container_image" >> Makefile.prereqs
2172 if test -n "$container_cross_cc"; then
2173 echo "CC=$docker_py cc --cc $container_cross_cc -i qemu/$container_image -s $source_path --"
2174 echo "CCAS=$docker_py cc --cc $container_cross_cc -i qemu/$container_image -s $source_path --"
2175 fi
2176 echo "AR=$docker_py cc --cc $container_cross_ar -i qemu/$container_image -s $source_path --"
2177 echo "AS=$docker_py cc --cc $container_cross_as -i qemu/$container_image -s $source_path --"
2178 echo "LD=$docker_py cc --cc $container_cross_ld -i qemu/$container_image -s $source_path --"
2179 echo "NM=$docker_py cc --cc $container_cross_nm -i qemu/$container_image -s $source_path --"
2180 echo "OBJCOPY=$docker_py cc --cc $container_cross_objcopy -i qemu/$container_image -s $source_path --"
2181 echo "RANLIB=$docker_py cc --cc $container_cross_ranlib -i qemu/$container_image -s $source_path --"
2182 echo "STRIP=$docker_py cc --cc $container_cross_strip -i qemu/$container_image -s $source_path --"
2183 else
2184 if test -n "$target_cc"; then
2185 echo "CC=$target_cc"
2186 echo "CCAS=$target_ccas"
2187 fi
2188 if test -n "$target_ar"; then
2189 echo "AR=$target_ar"
2190 fi
2191 if test -n "$target_as"; then
2192 echo "AS=$target_as"
2193 fi
2194 if test -n "$target_ld"; then
2195 echo "LD=$target_ld"
2196 fi
2197 if test -n "$target_nm"; then
2198 echo "NM=$target_nm"
2199 fi
2200 if test -n "$target_objcopy"; then
2201 echo "OBJCOPY=$target_objcopy"
2202 fi
2203 if test -n "$target_ranlib"; then
2204 echo "RANLIB=$target_ranlib"
2205 fi
2206 if test -n "$target_strip"; then
2207 echo "STRIP=$target_strip"
2208 fi
Paolo Bonzini87eb0142022-05-27 16:35:52 +01002209 fi
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002210}
2211
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002212##########################################
Jagannathan Raman55116962022-06-13 16:26:24 -04002213# check for vfio_user_server
2214
2215case "$vfio_user_server" in
2216 enabled )
2217 if test "$git_submodules_action" != "ignore"; then
2218 git_submodules="${git_submodules} subprojects/libvfio-user"
2219 fi
2220 ;;
2221esac
2222
2223##########################################
Juan Quintelae86ecd42009-08-03 14:45:59 +02002224# End of CC checks
2225# After here, no more $cc or $ld runs
2226
Marc-André Lureaud83414e2018-01-16 16:11:52 +01002227write_c_skeleton
2228
Paolo Bonzinidf42fa72022-04-20 17:33:38 +02002229if test "$fortify_source" = "yes" ; then
Paolo Bonzini086d5f72020-02-03 15:22:17 +01002230 QEMU_CFLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
Paolo Bonzini086d5f72020-02-03 15:22:17 +01002231fi
Paolo Bonzini086d5f72020-02-03 15:22:17 +01002232
Marc-André Lureau247724c2018-01-16 16:11:51 +01002233if test "$have_asan" = "yes"; then
Paolo Bonzinidb5adea2019-12-11 15:34:27 +01002234 QEMU_CFLAGS="-fsanitize=address $QEMU_CFLAGS"
2235 QEMU_LDFLAGS="-fsanitize=address $QEMU_LDFLAGS"
Marc-André Lureaud83414e2018-01-16 16:11:52 +01002236 if test "$have_asan_iface_h" = "no" ; then
2237 echo "ASAN build enabled, but ASAN header missing." \
2238 "Without code annotation, the report may be inferior."
2239 elif test "$have_asan_iface_fiber" = "no" ; then
2240 echo "ASAN build enabled, but ASAN header is too old." \
2241 "Without code annotation, the report may be inferior."
2242 fi
Marc-André Lureau247724c2018-01-16 16:11:51 +01002243fi
Lingfeng Yang0aebab02020-06-12 20:02:23 +01002244if test "$have_tsan" = "yes" ; then
2245 if test "$have_tsan_iface_fiber" = "yes" ; then
2246 QEMU_CFLAGS="-fsanitize=thread $QEMU_CFLAGS"
2247 QEMU_LDFLAGS="-fsanitize=thread $QEMU_LDFLAGS"
2248 else
2249 error_exit "Cannot enable TSAN due to missing fiber annotation interface."
2250 fi
2251elif test "$tsan" = "yes" ; then
2252 error_exit "Cannot enable TSAN due to missing sanitize thread interface."
2253fi
Marc-André Lureau247724c2018-01-16 16:11:51 +01002254if test "$have_ubsan" = "yes"; then
Paolo Bonzinidb5adea2019-12-11 15:34:27 +01002255 QEMU_CFLAGS="-fsanitize=undefined $QEMU_CFLAGS"
2256 QEMU_LDFLAGS="-fsanitize=undefined $QEMU_LDFLAGS"
Marc-André Lureau247724c2018-01-16 16:11:51 +01002257fi
2258
Paolo Bonzini33ab4782022-05-27 16:35:55 +01002259#######################################
2260# cross-compiled firmware targets
2261
Paolo Bonziniad388842022-05-27 16:35:53 +01002262# Set up build tree symlinks that point back into the source tree
2263# (these can be both files and directories).
2264# Caution: avoid adding files or directories here using wildcards. This
2265# will result in problems later if a new file matching the wildcard is
2266# added to the source tree -- nothing will cause configure to be rerun
2267# so the build tree will be missing the link back to the new file, and
2268# tests might fail. Prefer to keep the relevant files in their own
2269# directory and symlink the directory instead.
2270LINKS="Makefile"
Thomas Huth201aa172023-02-28 22:15:29 +01002271LINKS="$LINKS docs/config"
Paolo Bonziniad388842022-05-27 16:35:53 +01002272LINKS="$LINKS pc-bios/optionrom/Makefile"
2273LINKS="$LINKS pc-bios/s390-ccw/Makefile"
Paolo Bonzinid6959182022-05-27 16:35:56 +01002274LINKS="$LINKS pc-bios/vof/Makefile"
Paolo Bonziniad388842022-05-27 16:35:53 +01002275LINKS="$LINKS .gdbinit scripts" # scripts needed by relative path in .gdbinit
2276LINKS="$LINKS tests/avocado tests/data"
2277LINKS="$LINKS tests/qemu-iotests/check"
2278LINKS="$LINKS python"
2279LINKS="$LINKS contrib/plugins/Makefile "
2280for f in $LINKS ; do
2281 if [ -e "$source_path/$f" ]; then
Peter Maydellcc3c71e2022-08-25 16:07:01 +01002282 mkdir -p "$(dirname ./"$f")"
Paolo Bonziniad388842022-05-27 16:35:53 +01002283 symlink "$source_path/$f" "$f"
2284 fi
2285done
2286
Paolo Bonzinib898bf22022-09-29 12:42:05 +01002287echo "# Automatically generated by configure - do not modify" > Makefile.prereqs
2288
Paolo Bonzinica35f782010-05-26 16:08:29 +02002289# Mac OS X ships with a broken assembler
2290roms=
Paolo Bonzini35fd22b2022-10-12 16:33:03 +02002291if have_target i386-softmmu x86_64-softmmu && \
2292 test "$targetos" != "darwin" && test "$targetos" != "sunos" && \
2293 test "$targetos" != "haiku" && \
Paolo Bonzini61cbb352022-09-29 12:41:57 +01002294 probe_target_compiler i386-softmmu; then
Paolo Bonzini70899772022-06-06 11:35:41 +02002295 roms="pc-bios/optionrom"
2296 config_mak=pc-bios/optionrom/config.mak
2297 echo "# Automatically generated by configure - do not modify" > $config_mak
2298 echo "TOPSRC_DIR=$source_path" >> $config_mak
Alex Bennéefde10962022-10-11 12:34:16 +01002299 write_target_makefile >> $config_mak
Paolo Bonzinica35f782010-05-26 16:08:29 +02002300fi
Paolo Bonzinica35f782010-05-26 16:08:29 +02002301
Paolo Bonzini35fd22b2022-10-12 16:33:03 +02002302if have_target ppc-softmmu ppc64-softmmu && \
2303 probe_target_compiler ppc-softmmu; then
Paolo Bonzini76ca98b2022-04-13 15:22:01 +02002304 roms="$roms pc-bios/vof"
Paolo Bonzinid6959182022-05-27 16:35:56 +01002305 config_mak=pc-bios/vof/config.mak
2306 echo "# Automatically generated by configure - do not modify" > $config_mak
2307 echo "SRC_DIR=$source_path/pc-bios/vof" >> $config_mak
Alex Bennéefde10962022-10-11 12:34:16 +01002308 write_target_makefile >> $config_mak
Paolo Bonzinid6959182022-05-27 16:35:56 +01002309fi
2310
Paolo Bonzini9ffed422022-05-27 16:35:54 +01002311# Only build s390-ccw bios if the compiler has -march=z900 or -march=z10
2312# (which is the lowest architecture level that Clang supports)
Paolo Bonzini35fd22b2022-10-12 16:33:03 +02002313if have_target s390x-softmmu && probe_target_compiler s390x-softmmu; then
Alex Bennéefde10962022-10-11 12:34:16 +01002314 write_c_skeleton
2315 do_compiler "$target_cc" $target_cc_cflags -march=z900 -o $TMPO -c $TMPC
2316 has_z900=$?
2317 if [ $has_z900 = 0 ] || do_compiler "$target_cc" $target_cc_cflags -march=z10 -msoft-float -Werror -o $TMPO -c $TMPC; then
2318 if [ $has_z900 != 0 ]; then
2319 echo "WARNING: Your compiler does not support the z900!"
2320 echo " The s390-ccw bios will only work with guest CPUs >= z10."
Thomas Hutha5b2afd2021-05-02 13:22:21 +02002321 fi
Paolo Bonzini76ca98b2022-04-13 15:22:01 +02002322 roms="$roms pc-bios/s390-ccw"
Paolo Bonzini9ffed422022-05-27 16:35:54 +01002323 config_mak=pc-bios/s390-ccw/config-host.mak
2324 echo "# Automatically generated by configure - do not modify" > $config_mak
2325 echo "SRC_PATH=$source_path/pc-bios/s390-ccw" >> $config_mak
Alex Bennéefde10962022-10-11 12:34:16 +01002326 write_target_makefile >> $config_mak
Philippe Mathieu-Daudé1ef6bfc2020-06-15 09:49:19 +02002327 # SLOF is required for building the s390-ccw firmware on s390x,
2328 # since it is using the libnet code from SLOF for network booting.
Paolo Bonzini2d652f22021-05-12 09:21:56 +02002329 git_submodules="${git_submodules} roms/SLOF"
Thomas Huth2e33c3f2019-01-14 13:52:26 +01002330 fi
Christian Borntraeger9933c302013-04-23 01:23:03 +00002331fi
2332
Paolo Bonzini9ffed422022-05-27 16:35:54 +01002333#######################################
2334# generate config-host.mak
2335
Peter Maydell35a7a6f2022-07-20 16:26:27 +01002336if ! (GIT="$git" "$source_path/scripts/git-submodule.sh" "$git_submodules_action" "$git_submodules"); then
Dan Streetman7d7dbf92021-01-19 12:20:46 -05002337 exit 1
Yonggang Luo5d91a2e2020-09-03 01:00:49 +08002338fi
Yonggang Luo5d91a2e2020-09-03 01:00:49 +08002339
Juan Quintela98ec69a2009-07-16 18:34:18 +02002340config_host_mak="config-host.mak"
bellard97a847b2003-08-10 21:36:04 +00002341
Juan Quintela98ec69a2009-07-16 18:34:18 +02002342echo "# Automatically generated by configure - do not modify" > $config_host_mak
Juan Quintela98ec69a2009-07-16 18:34:18 +02002343echo >> $config_host_mak
Juan Quintela98ec69a2009-07-16 18:34:18 +02002344
Paolo Bonzinie6c3b0f2010-10-21 10:18:35 +02002345echo all: >> $config_host_mak
Daniel P. Berrangecc84d632017-10-20 15:02:43 +01002346echo "GIT=$git" >> $config_host_mak
Daniel P. Berrangeaef45d52017-09-29 11:11:56 +01002347echo "GIT_SUBMODULES=$git_submodules" >> $config_host_mak
Dan Streetman7d7dbf92021-01-19 12:20:46 -05002348echo "GIT_SUBMODULES_ACTION=$git_submodules_action" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002349
aurel32f8393942009-04-13 18:45:38 +00002350if test "$debug_tcg" = "yes" ; then
Juan Quintela2358a492009-07-27 16:13:25 +02002351 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
aurel32f8393942009-04-13 18:45:38 +00002352fi
bellard67b915a2004-03-31 23:37:16 +00002353if test "$mingw32" = "yes" ; then
Juan Quintela98ec69a2009-07-16 18:34:18 +02002354 echo "CONFIG_WIN32=y" >> $config_host_mak
Paolo Bonzini954ed682022-10-12 11:35:17 +02002355 echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER-QEMU}" >> $config_host_mak
2356 echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO-Linux}" >> $config_host_mak
2357 echo "QEMU_GA_VERSION=${QEMU_GA_VERSION-$(cat "$source_path"/VERSION)}" >> $config_host_mak
pbrook210fa552007-02-27 21:04:49 +00002358else
Juan Quintela35f4df22009-07-27 16:13:07 +02002359 echo "CONFIG_POSIX=y" >> $config_host_mak
bellard67b915a2004-03-31 23:37:16 +00002360fi
blueswir1128ab2f2008-08-15 18:33:42 +00002361
Mark McLoughlindffcb712009-10-22 17:49:11 +01002362if test "$linux" = "yes" ; then
2363 echo "CONFIG_LINUX=y" >> $config_host_mak
2364fi
2365
bellard83fb7ad2004-07-05 21:25:26 +00002366if test "$darwin" = "yes" ; then
Juan Quintela98ec69a2009-07-16 18:34:18 +02002367 echo "CONFIG_DARWIN=y" >> $config_host_mak
bellard83fb7ad2004-07-05 21:25:26 +00002368fi
malcb29fe3e2008-11-18 01:42:22 +00002369
bellardec530c82006-04-25 22:36:06 +00002370if test "$solaris" = "yes" ; then
Juan Quintela98ec69a2009-07-16 18:34:18 +02002371 echo "CONFIG_SOLARIS=y" >> $config_host_mak
bellardec530c82006-04-25 22:36:06 +00002372fi
bellard97a847b2003-08-10 21:36:04 +00002373if test "$static" = "yes" ; then
Juan Quintela98ec69a2009-07-16 18:34:18 +02002374 echo "CONFIG_STATIC=y" >> $config_host_mak
bellard97a847b2003-08-10 21:36:04 +00002375fi
Juan Quintela98ec69a2009-07-16 18:34:18 +02002376echo "SRC_PATH=$source_path" >> $config_host_mak
Alex Bennée2b1f35b2018-07-04 07:30:11 +01002377echo "TARGET_DIRS=$target_list" >> $config_host_mak
Fam Zheng17969262014-02-10 14:48:56 +08002378if test "$modules" = "yes"; then
2379 echo "CONFIG_MODULES=y" >> $config_host_mak
2380fi
Jan Vesely277abf12016-04-29 13:15:23 -04002381
bellard83fb7ad2004-07-05 21:25:26 +00002382# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +00002383if [ "$bsd" = "yes" ] ; then
Juan Quintela2358a492009-07-27 16:13:25 +02002384 echo "CONFIG_BSD=y" >> $config_host_mak
bellard7d3505c2004-05-12 19:32:15 +00002385fi
2386
Peter Maydell7c2acc72013-04-08 12:11:27 +01002387echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak
Peter Lieven7d992e42016-09-27 11:58:45 +02002388
Marc-André Lureaud83414e2018-01-16 16:11:52 +01002389if test "$have_asan_iface_fiber" = "yes" ; then
2390 echo "CONFIG_ASAN_IFACE_FIBER=y" >> $config_host_mak
2391fi
2392
Lingfeng Yang0aebab02020-06-12 20:02:23 +01002393if test "$have_tsan" = "yes" && test "$have_tsan_iface_fiber" = "yes" ; then
2394 echo "CONFIG_TSAN=y" >> $config_host_mak
2395fi
2396
Alex Bennée40e8c6f2019-06-13 14:52:25 +01002397if test "$plugins" = "yes" ; then
2398 echo "CONFIG_PLUGIN=y" >> $config_host_mak
Alex Bennée40e8c6f2019-06-13 14:52:25 +01002399fi
2400
Alex Bennéeb1863cc2021-01-08 22:42:39 +00002401if test -n "$gdb_bin"; then
2402 gdb_version=$($gdb_bin --version | head -n 1)
Alex Bennéed6a66c82021-02-02 13:39:53 +00002403 if version_ge ${gdb_version##* } 9.1; then
Alex Bennéeb1863cc2021-01-08 22:42:39 +00002404 echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
Alex Bennéebcbc36a2023-03-02 18:57:59 -08002405 gdb_arches=$("$source_path/scripts/probe-gdb-support.py" $gdb_bin)
Alex Bennée48543dd2022-09-29 12:41:45 +01002406 else
2407 gdb_bin=""
Alex Bennéeb1863cc2021-01-08 22:42:39 +00002408 fi
Alex Bennéef48e5902020-03-16 17:21:48 +00002409fi
2410
Paolo Bonzinic4575b52022-09-29 12:41:58 +01002411if test "$container" != no; then
2412 echo "ENGINE=$container" >> $config_host_mak
Alex Bennée60f999b2023-02-28 19:06:46 +00002413 echo "RUNC=$runc" >> $config_host_mak
Paolo Bonzinic4575b52022-09-29 12:41:58 +01002414fi
Juan Quintela98ec69a2009-07-16 18:34:18 +02002415echo "ROMS=$roms" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002416echo "MAKE=$make" >> $config_host_mak
Blue Swirlc886edf2011-07-22 21:08:09 +00002417echo "PYTHON=$python" >> $config_host_mak
Alex Bennée39d87c82020-03-03 15:06:20 +00002418echo "GENISOIMAGE=$genisoimage" >> $config_host_mak
Paolo Bonzinia5665052019-06-10 12:05:14 +02002419echo "MESON=$meson" >> $config_host_mak
Paolo Bonzini09e93322020-08-13 09:28:11 -04002420echo "NINJA=$ninja" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002421echo "CC=$cc" >> $config_host_mak
Juan Quintelaa558ee12009-08-03 14:46:21 +02002422echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +01002423echo "QEMU_OBJCFLAGS=$QEMU_OBJCFLAGS" >> $config_host_mak
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002424echo "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak
2425echo "GLIB_LIBS=$glib_libs" >> $config_host_mak
Marc-André Lureau5b9e7d02022-05-25 16:41:39 +02002426echo "GLIB_BINDIR=$glib_bindir" >> $config_host_mak
Paolo Bonziniacedc9a2023-01-07 14:32:41 +01002427echo "GLIB_VERSION=$($pkg_config --modversion glib-2.0)" >> $config_host_mak
Emilio Cotae3feb2c2023-02-05 11:37:57 -05002428if test "$glib_has_gslice" = "yes" ; then
2429 echo "HAVE_GLIB_WITH_SLICE_ALLOCATOR=y" >> $config_host_mak
2430fi
Philippe Mathieu-Daudé8a99e9a2018-04-15 20:05:19 -03002431echo "QEMU_LDFLAGS=$QEMU_LDFLAGS" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002432echo "EXESUF=$EXESUF" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002433
Peter Maydell6efd7512011-11-30 11:59:04 +00002434# use included Linux headers
2435if test "$linux" = "yes" ; then
Andreas Färbera307beb2012-06-14 15:14:33 +00002436 mkdir -p linux-headers
Peter Maydell6efd7512011-11-30 11:59:04 +00002437 case "$cpu" in
Paolo Bonzini4da270b2021-11-09 09:36:10 +01002438 i386|x86_64)
Peter Maydell08312a62012-08-03 13:51:25 +01002439 linux_arch=x86
Peter Maydell6efd7512011-11-30 11:59:04 +00002440 ;;
Paolo Bonzinid8ff8922021-11-09 09:18:20 +01002441 ppc|ppc64)
Peter Maydell08312a62012-08-03 13:51:25 +01002442 linux_arch=powerpc
Peter Maydell6efd7512011-11-30 11:59:04 +00002443 ;;
2444 s390x)
Peter Maydell08312a62012-08-03 13:51:25 +01002445 linux_arch=s390
2446 ;;
Claudio Fontana1f080312013-06-12 16:20:23 +01002447 aarch64)
2448 linux_arch=arm64
2449 ;;
WANG Xueruidfcf9002021-12-21 13:41:04 +08002450 loongarch*)
2451 linux_arch=loongarch
2452 ;;
Sanjay Lal222e7d12014-06-17 23:10:36 +01002453 mips64)
2454 linux_arch=mips
2455 ;;
Peter Maydell08312a62012-08-03 13:51:25 +01002456 *)
2457 # For most CPUs the kernel architecture name and QEMU CPU name match.
2458 linux_arch="$cpu"
Peter Maydell6efd7512011-11-30 11:59:04 +00002459 ;;
2460 esac
Peter Maydell08312a62012-08-03 13:51:25 +01002461 # For non-KVM architectures we will not have asm headers
2462 if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then
2463 symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm
2464 fi
Peter Maydell6efd7512011-11-30 11:59:04 +00002465fi
2466
bellard1d14ffa2005-10-30 18:58:22 +00002467for target in $target_list; do
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04002468 target_dir="$target"
Philippe Mathieu-Daudé57a93f12021-11-09 15:45:04 +01002469 target_name=$(echo $target | cut -d '-' -f 1)$EXESUF
Peter Maydell64708612022-08-25 16:06:59 +01002470 mkdir -p "$target_dir"
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04002471 case $target in
2472 *-user) symlink "../qemu-$target_name" "$target_dir/qemu-$target_name" ;;
2473 *) symlink "../qemu-system-$target_name" "$target_dir/qemu-system-$target_name" ;;
2474 esac
2475done
bellard7d132992003-03-06 23:23:54 +00002476
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04002477if test "$default_targets" = "yes"; then
2478 echo "CONFIG_DEFAULT_TARGETS=y" >> $config_host_mak
2479fi
Peter Crosthwaitea540f152013-04-18 14:47:31 +10002480
John Snowfd0e6052015-03-25 18:57:39 -04002481if test "$ccache_cpp2" = "yes"; then
2482 echo "export CCACHE_CPP2=y" >> $config_host_mak
2483fi
2484
Daniele Buono1e4f6062020-05-29 16:51:21 -04002485if test "$safe_stack" = "yes"; then
2486 echo "CONFIG_SAFESTACK=y" >> $config_host_mak
2487fi
2488
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002489# tests/tcg configuration
Paolo Bonzinib898bf22022-09-29 12:42:05 +01002490(config_host_mak=tests/tcg/config-host.mak
Paolo Bonzinid6743422022-09-29 12:42:00 +01002491mkdir -p tests/tcg
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002492echo "# Automatically generated by configure - do not modify" > $config_host_mak
2493echo "SRC_PATH=$source_path" >> $config_host_mak
2494echo "HOST_CC=$host_cc" >> $config_host_mak
2495
Alex Bennée48543dd2022-09-29 12:41:45 +01002496# versioned checked in the main config_host.mak above
2497if test -n "$gdb_bin"; then
2498 echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
2499fi
Paolo Bonzinid1d94d92022-10-27 19:36:32 +01002500if test "$plugins" = "yes" ; then
2501 echo "CONFIG_PLUGIN=y" >> $config_host_mak
2502fi
Alex Bennée48543dd2022-09-29 12:41:45 +01002503
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002504tcg_tests_targets=
2505for target in $target_list; do
2506 arch=${target%%-*}
2507
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002508 case $target in
Paolo Bonzinic48a5c42022-06-13 18:12:56 +01002509 xtensa*-linux-user)
2510 # the toolchain is not complete with headers, only build softmmu tests
2511 continue
2512 ;;
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002513 *-softmmu)
Peter Maydell64708612022-08-25 16:06:59 +01002514 test -f "$source_path/tests/tcg/$arch/Makefile.softmmu-target" || continue
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002515 qemu="qemu-system-$arch"
2516 ;;
2517 *-linux-user|*-bsd-user)
2518 qemu="qemu-$arch"
2519 ;;
2520 esac
2521
Alex Bennéefde10962022-10-11 12:34:16 +01002522 if probe_target_compiler $target || test -n "$container_image"; then
Paolo Bonzini0825cae2022-09-29 12:42:06 +01002523 test -n "$container_image" && build_static=y
Paolo Bonzinid6743422022-09-29 12:42:00 +01002524 mkdir -p "tests/tcg/$target"
Paolo Bonzinic7022a72022-09-29 12:42:07 +01002525 config_target_mak=tests/tcg/$target/config-target.mak
Paolo Bonzinid6743422022-09-29 12:42:00 +01002526 ln -sf "$source_path/tests/tcg/Makefile.target" "tests/tcg/$target/Makefile"
Paolo Bonzinic7022a72022-09-29 12:42:07 +01002527 echo "# Automatically generated by configure - do not modify" > "$config_target_mak"
2528 echo "TARGET_NAME=$arch" >> "$config_target_mak"
Paolo Bonzinia3e28f82022-09-29 12:41:59 +01002529 echo "TARGET=$target" >> "$config_target_mak"
Paolo Bonzinic7022a72022-09-29 12:42:07 +01002530 write_target_makefile "build-tcg-tests-$target" >> "$config_target_mak"
Paolo Bonzini15b273f2022-09-29 12:42:04 +01002531 echo "BUILD_STATIC=$build_static" >> "$config_target_mak"
Paolo Bonzinic7022a72022-09-29 12:42:07 +01002532 echo "QEMU=$PWD/$qemu" >> "$config_target_mak"
Alex Bennéebcbc36a2023-03-02 18:57:59 -08002533
2534 # will GDB work with these binaries?
2535 if test "${gdb_arches#*$arch}" != "$gdb_arches"; then
2536 echo "HOST_GDB_SUPPORTS_ARCH=y" >> "$config_target_mak"
2537 fi
2538
Paolo Bonzinib898bf22022-09-29 12:42:05 +01002539 echo "run-tcg-tests-$target: $qemu\$(EXESUF)" >> Makefile.prereqs
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002540 tcg_tests_targets="$tcg_tests_targets $target"
2541 fi
Paolo Bonzini2038f8c2019-08-07 16:35:23 +02002542done
Fabiano Rosasc0031d32023-01-20 15:48:22 -03002543
2544if test "$tcg" = "enabled"; then
2545 echo "TCG_TESTS_TARGETS=$tcg_tests_targets" >> config-host.mak
2546fi
2547)
Paolo Bonzini2038f8c2019-08-07 16:35:23 +02002548
Paolo Bonzinia5665052019-06-10 12:05:14 +02002549if test "$skip_meson" = no; then
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002550 cross="config-meson.cross.new"
2551 meson_quote() {
Paolo Bonziniac7ebcc2021-11-05 10:07:37 +01002552 test $# = 0 && return
Paolo Bonzini47b30832020-09-23 05:26:17 -04002553 echo "'$(echo $* | sed "s/ /','/g")'"
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002554 }
Marc-André Lureaufc929892019-07-13 01:47:54 +04002555
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002556 echo "# Automatically generated by configure - do not modify" > $cross
2557 echo "[properties]" >> $cross
Alex Bennéed1d5e9e2021-07-07 14:17:44 +01002558
2559 # unroll any custom device configs
Alex Bennée11bdcfc2021-07-21 00:26:38 +01002560 for a in $device_archs; do
2561 eval "c=\$devices_${a}"
2562 echo "${a}-softmmu = '$c'" >> $cross
2563 done
Alex Bennéed1d5e9e2021-07-07 14:17:44 +01002564
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002565 echo "[built-in options]" >> $cross
Paolo Bonzinia2866662021-11-05 10:09:26 +01002566 echo "c_args = [$(meson_quote $CFLAGS $EXTRA_CFLAGS)]" >> $cross
2567 echo "cpp_args = [$(meson_quote $CXXFLAGS $EXTRA_CXXFLAGS)]" >> $cross
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +01002568 test -n "$objcc" && echo "objc_args = [$(meson_quote $OBJCFLAGS $EXTRA_OBJCFLAGS)]" >> $cross
Paolo Bonzinia2866662021-11-05 10:09:26 +01002569 echo "c_link_args = [$(meson_quote $CFLAGS $LDFLAGS $EXTRA_CFLAGS $EXTRA_LDFLAGS)]" >> $cross
2570 echo "cpp_link_args = [$(meson_quote $CXXFLAGS $LDFLAGS $EXTRA_CXXFLAGS $EXTRA_LDFLAGS)]" >> $cross
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002571 echo "[binaries]" >> $cross
Paolo Bonzini4dba2782021-09-29 17:14:43 +02002572 echo "c = [$(meson_quote $cc $CPU_CFLAGS)]" >> $cross
2573 test -n "$cxx" && echo "cpp = [$(meson_quote $cxx $CPU_CFLAGS)]" >> $cross
2574 test -n "$objcc" && echo "objc = [$(meson_quote $objcc $CPU_CFLAGS)]" >> $cross
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002575 echo "ar = [$(meson_quote $ar)]" >> $cross
2576 echo "nm = [$(meson_quote $nm)]" >> $cross
2577 echo "pkgconfig = [$(meson_quote $pkg_config_exe)]" >> $cross
2578 echo "ranlib = [$(meson_quote $ranlib)]" >> $cross
2579 if has $sdl2_config; then
2580 echo "sdl2-config = [$(meson_quote $sdl2_config)]" >> $cross
2581 fi
2582 echo "strip = [$(meson_quote $strip)]" >> $cross
Konstantin Kostiuk158bb222022-04-28 21:15:25 +03002583 echo "widl = [$(meson_quote $widl)]" >> $cross
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002584 echo "windres = [$(meson_quote $windres)]" >> $cross
Andrey Drobyshevf9f0e612022-11-29 19:38:08 +02002585 echo "windmc = [$(meson_quote $windmc)]" >> $cross
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002586 if test "$cross_compile" = "yes"; then
Marc-André Lureaufc929892019-07-13 01:47:54 +04002587 cross_arg="--cross-file config-meson.cross"
Marc-André Lureaufc929892019-07-13 01:47:54 +04002588 echo "[host_machine]" >> $cross
Paolo Bonziniba7c60c2021-11-08 14:47:54 +01002589 echo "system = '$targetos'" >> $cross
Paolo Bonzini823eb012021-11-08 14:18:17 +01002590 case "$cpu" in
Joelle van Dynef6bca9d2021-01-25 17:24:54 -08002591 i386)
Marc-André Lureaufc929892019-07-13 01:47:54 +04002592 echo "cpu_family = 'x86'" >> $cross
2593 ;;
Marc-André Lureaufc929892019-07-13 01:47:54 +04002594 *)
Paolo Bonzini823eb012021-11-08 14:18:17 +01002595 echo "cpu_family = '$cpu'" >> $cross
Marc-André Lureaufc929892019-07-13 01:47:54 +04002596 ;;
2597 esac
2598 echo "cpu = '$cpu'" >> $cross
2599 if test "$bigendian" = "yes" ; then
2600 echo "endian = 'big'" >> $cross
2601 else
2602 echo "endian = 'little'" >> $cross
2603 fi
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002604 else
Marc-André Lureaufc929892019-07-13 01:47:54 +04002605 cross_arg="--native-file config-meson.cross"
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002606 fi
2607 mv $cross config-meson.cross
Marc-André Lureaufc929892019-07-13 01:47:54 +04002608
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002609 rm -rf meson-private meson-info meson-logs
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002610
Marc-André Lureau5a347a72023-03-02 17:18:46 +04002611 # Prevent meson from automatically downloading wrapped subprojects when missing.
2612 # You can use 'meson subprojects download' before running configure.
2613 meson_option_add "--wrap-mode=nodownload"
2614
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002615 # Built-in options
2616 test "$bindir" != "bin" && meson_option_add "-Dbindir=$bindir"
2617 test "$default_feature" = no && meson_option_add -Dauto_features=disabled
2618 test "$pie" = no && meson_option_add -Db_pie=false
2619 test "$werror" = yes && meson_option_add -Dwerror=true
2620
2621 # QEMU options
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002622 test "$cfi" != false && meson_option_add "-Dcfi=$cfi"
John Snow6b0cedc2023-05-10 23:54:28 -04002623 test "$docs" != auto && meson_option_add "-Ddocs=$docs"
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002624 test "$fdt" != auto && meson_option_add "-Dfdt=$fdt"
2625 test -n "${LIB_FUZZING_ENGINE+xxx}" && meson_option_add "-Dfuzzing_engine=$LIB_FUZZING_ENGINE"
2626 test "$qemu_suffix" != qemu && meson_option_add "-Dqemu_suffix=$qemu_suffix"
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002627 test "$smbd" != '' && meson_option_add "-Dsmbd=$smbd"
2628 test "$tcg" != enabled && meson_option_add "-Dtcg=$tcg"
Jagannathan Raman55116962022-06-13 16:26:24 -04002629 test "$vfio_user_server" != auto && meson_option_add "-Dvfio_user_server=$vfio_user_server"
Paolo Bonzini61d63092021-10-07 15:08:28 +02002630 run_meson() {
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002631 NINJA=$ninja $meson setup --prefix "$prefix" "$@" $cross_arg "$PWD" "$source_path"
Paolo Bonzini61d63092021-10-07 15:08:28 +02002632 }
2633 eval run_meson $meson_options
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002634 if test "$?" -ne 0 ; then
2635 error_exit "meson setup failed"
2636 fi
Paolo Bonzinia5665052019-06-10 12:05:14 +02002637fi
2638
Michael S. Tsirkindc655402014-03-09 17:37:49 +02002639# Save the configure command line for later reuse.
2640cat <<EOD >config.status
2641#!/bin/sh
2642# Generated by configure.
2643# Run this file to recreate the current configuration.
2644# Compiler output produced by configure, useful for debugging
2645# configure, is in config.log if it exists.
2646EOD
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002647
2648preserve_env() {
2649 envname=$1
2650
2651 eval envval=\$$envname
2652
2653 if test -n "$envval"
2654 then
2655 echo "$envname='$envval'" >> config.status
2656 echo "export $envname" >> config.status
2657 else
2658 echo "unset $envname" >> config.status
2659 fi
2660}
2661
2662# Preserve various env variables that influence what
2663# features/build target configure will detect
2664preserve_env AR
2665preserve_env AS
2666preserve_env CC
Paolo Bonzini8009da02021-11-05 10:08:43 +01002667preserve_env CFLAGS
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002668preserve_env CXX
Paolo Bonzini8009da02021-11-05 10:08:43 +01002669preserve_env CXXFLAGS
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002670preserve_env LD
Paolo Bonzini8009da02021-11-05 10:08:43 +01002671preserve_env LDFLAGS
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002672preserve_env LD_LIBRARY_PATH
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002673preserve_env MAKE
2674preserve_env NM
Paolo Bonzinib5569e52022-06-07 12:14:47 +02002675preserve_env OBJCFLAGS
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002676preserve_env OBJCOPY
2677preserve_env PATH
2678preserve_env PKG_CONFIG
2679preserve_env PKG_CONFIG_LIBDIR
2680preserve_env PKG_CONFIG_PATH
2681preserve_env PYTHON
Paolo Bonzini954ed682022-10-12 11:35:17 +02002682preserve_env QEMU_GA_MANUFACTURER
2683preserve_env QEMU_GA_DISTRO
2684preserve_env QEMU_GA_VERSION
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002685preserve_env SDL2_CONFIG
2686preserve_env SMBD
2687preserve_env STRIP
Konstantin Kostiuk158bb222022-04-28 21:15:25 +03002688preserve_env WIDL
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002689preserve_env WINDRES
Andrey Drobyshevf9f0e612022-11-29 19:38:08 +02002690preserve_env WINDMC
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002691
Michael S. Tsirkindc655402014-03-09 17:37:49 +02002692printf "exec" >>config.status
Paolo Bonzinia5665052019-06-10 12:05:14 +02002693for i in "$0" "$@"; do
Paolo Bonzini835af892020-09-08 13:20:45 +02002694 test "$i" = --skip-meson || printf " %s" "$(quote_sh "$i")" >>config.status
Paolo Bonzinia5665052019-06-10 12:05:14 +02002695done
Dr. David Alan Gilbertcf7cc922016-01-12 11:58:48 +00002696echo ' "$@"' >>config.status
Michael S. Tsirkindc655402014-03-09 17:37:49 +02002697chmod +x config.status
2698
Peter Maydell8cd05ab2014-05-23 17:07:24 +01002699rm -r "$TMPDIR1"