blob: 77c03315f820365d5b17bea17257870f61d5e9ae [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"
Miroslav Rezaninac7328272021-03-31 10:18:45 +0200282EXESUF=""
Fam Zheng17969262014-02-10 14:48:56 +0800283modules="no"
Paolo Bonzini377529c2010-12-23 11:43:50 +0100284prefix="/usr/local"
Marc-André Lureau10ff82d2020-08-26 15:04:13 +0400285qemu_suffix="qemu"
Paolo Bonzini377529c2010-12-23 11:43:50 +0100286softmmu="yes"
Paolo Bonzinib915a2f2021-11-09 10:10:41 +0100287linux_user=""
288bsd_user=""
Avi Kivity40d64442011-11-15 20:12:17 +0200289pie=""
Alex Barcelo519175a2012-02-28 12:25:50 +0100290coroutine=""
Alex Bennéeba4dd2a2021-07-09 15:29:57 +0100291plugins="$default_feature"
Paolo Bonzinia5665052019-06-10 12:05:14 +0200292meson=""
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
628 explicit_python=no
629 # A bare 'python' is traditionally python 2.x, but some distros
630 # have it as python 3.x, so check in both places.
631 for binary in python3 python python3.11 python3.10 python3.9 python3.8 python3.7 python3.6; do
632 if has "$binary"; then
633 python=$(command -v "$binary")
634 if check_py_version "$python"; then
635 # This one is good.
636 first_python=
637 break
638 else
639 first_python=$python
640 fi
641 fi
642 done
643else
644 # Same as above, but only check the environment variable.
645 has "${PYTHON}" || error_exit "The PYTHON environment variable does not point to an executable"
646 python=$(command -v "$PYTHON")
647 explicit_python=yes
648 if check_py_version "$python"; then
649 # This one is good.
650 first_python=
651 else
652 first_python=$first_python
653 fi
654fi
Markus Armbruster903458c2020-02-14 18:18:41 +0100655
Alex Bennée39d87c82020-03-03 15:06:20 +0000656# Check for ancillary tools used in testing
657genisoimage=
Alex Bennée3df437c2020-05-19 09:22:48 -0400658for binary in genisoimage mkisofs
Alex Bennée39d87c82020-03-03 15:06:20 +0000659do
660 if has $binary
661 then
662 genisoimage=$(command -v "$binary")
663 break
664 fi
665done
666
Juan Quintela3457a3f2009-08-03 14:46:07 +0200667if test "$mingw32" = "yes" ; then
Juan Quintela3457a3f2009-08-03 14:46:07 +0200668 EXESUF=".exe"
Stefan Weil78e9d4a2015-11-26 12:13:12 +0100669 # MinGW needs -mthreads for TLS and macro _MT.
Paolo Bonzini5770e8a2020-09-23 05:26:15 -0400670 CONFIGURE_CFLAGS="-mthreads $CONFIGURE_CFLAGS"
Paolo Bonzinid17f3052020-08-18 12:17:01 +0200671 prefix="/qemu"
Paolo Bonzinic09c1ce2022-04-20 17:33:57 +0200672 bindir=""
Marc-André Lureau77433a52020-08-26 15:04:12 +0400673 qemu_suffix=""
Juan Quintela3457a3f2009-08-03 14:46:07 +0200674fi
675
Anthony Liguori487fefd2009-06-11 13:28:25 -0500676werror=""
bellard85aa5182007-11-11 20:17:03 +0000677
Akihiko Odaki8154f5e2022-06-25 00:40:42 +0900678meson_option_build_array() {
679 printf '['
Peter Maydellc5cfdab2022-07-20 16:26:31 +0100680 (if test "$targetos" = windows; then
Akihiko Odaki8154f5e2022-06-25 00:40:42 +0900681 IFS=\;
682 else
683 IFS=:
684 fi
685 for e in $1; do
Peter Maydell65842b02022-07-20 16:26:29 +0100686 printf '"""'
687 # backslash escape any '\' and '"' characters
688 printf "%s" "$e" | sed -e 's/\([\"]\)/\\\1/g'
689 printf '""",'
Akihiko Odaki8154f5e2022-06-25 00:40:42 +0900690 done)
691 printf ']\n'
692}
693
Peter Maydell64708612022-08-25 16:06:59 +0100694. "$source_path/scripts/meson-buildoptions.sh"
Paolo Bonzini61d63092021-10-07 15:08:28 +0200695
696meson_options=
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200697meson_option_add() {
698 meson_options="$meson_options $(quote_sh "$1")"
699}
Paolo Bonzini61d63092021-10-07 15:08:28 +0200700meson_option_parse() {
701 meson_options="$meson_options $(_meson_option_parse "$@")"
702 if test $? -eq 1; then
703 echo "ERROR: unknown option $1"
704 echo "Try '$0 --help' for more information"
705 exit 1
706 fi
707}
708
bellard7d132992003-03-06 23:23:54 +0000709for opt do
Stefan Weil89138852016-05-16 15:10:20 +0200710 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
bellard7d132992003-03-06 23:23:54 +0000711 case "$opt" in
bellard2efc3262005-12-18 19:14:49 +0000712 --help|-h) show_help=yes
713 ;;
Peter Maydell64708612022-08-25 16:06:59 +0100714 --version|-V) exec cat "$source_path/VERSION"
Mike Frysinger99123e12011-04-07 01:12:28 -0400715 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000716 --prefix=*) prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000717 ;;
aliguoriac0df512008-12-29 17:14:15 +0000718 --cross-prefix=*)
bellard7d132992003-03-06 23:23:54 +0000719 ;;
aliguoriac0df512008-12-29 17:14:15 +0000720 --cc=*)
bellard7d132992003-03-06 23:23:54 +0000721 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000722 --host-cc=*) host_cc="$optarg"
bellard83469012005-07-23 14:27:54 +0000723 ;;
Tomoki Sekiyama83f73fc2013-08-07 11:39:36 -0400724 --cxx=*)
725 ;;
Peter Maydellc0c34c92023-04-18 17:15:54 +0100726 --objcc=*)
Peter Maydell3c4a4d02012-08-11 22:34:40 +0100727 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000728 --make=*) make="$optarg"
bellard7d132992003-03-06 23:23:54 +0000729 ;;
Paolo Bonzinib6daf4d2020-09-01 06:38:04 -0400730 --install=*)
pbrook6a882642006-04-17 13:57:12 +0000731 ;;
Marc-André Lureau0a01d762019-08-21 11:21:16 +0400732 --python=*) python="$optarg" ; explicit_python=yes
Blue Swirlc886edf2011-07-22 21:08:09 +0000733 ;;
Paolo Bonzinia5665052019-06-10 12:05:14 +0200734 --skip-meson) skip_meson=yes
735 ;;
736 --meson=*) meson="$optarg"
737 ;;
Paolo Bonzini48328882020-08-26 08:04:15 +0200738 --ninja=*) ninja="$optarg"
739 ;;
Brade2d88302011-09-02 16:53:28 -0400740 --smbd=*) smbd="$optarg"
741 ;;
Juan Quintelae2a2ed02009-08-03 14:46:02 +0200742 --extra-cflags=*)
bellard7d132992003-03-06 23:23:54 +0000743 ;;
Bruno Dominguez11cde1c2017-06-06 14:07:47 +0100744 --extra-cxxflags=*)
745 ;;
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +0100746 --extra-objcflags=*)
747 ;;
Juan Quintelae2a2ed02009-08-03 14:46:02 +0200748 --extra-ldflags=*)
bellard7d132992003-03-06 23:23:54 +0000749 ;;
Alex Bennéed75402b2018-04-04 20:27:05 +0100750 --cross-cc-*)
751 ;;
Paolo Bonzini5adb43b2022-05-27 16:35:51 +0100752 --cross-prefix-*)
753 ;;
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200754 --enable-debug-info) meson_option_add -Ddebug=true
Paolo Bonzini28609742022-04-20 17:33:39 +0200755 ;;
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200756 --disable-debug-info) meson_option_add -Ddebug=false
Paolo Bonzini28609742022-04-20 17:33:39 +0200757 ;;
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"
Paolo Bonzinic55cf6a2021-10-13 11:46:09 +0200819 meson_option_parse --enable-debug-mutex ""
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200820 meson_option_add -Doptimization=0
John Snowb553a042015-11-03 15:43:42 -0500821 fortify_source="no"
Paul Brookf3d08ee2009-06-04 11:39:04 +0100822 ;;
Marc-André Lureau247724c2018-01-16 16:11:51 +0100823 --enable-sanitizers) sanitizers="yes"
824 ;;
825 --disable-sanitizers) sanitizers="no"
826 ;;
Lingfeng Yang0aebab02020-06-12 20:02:23 +0100827 --enable-tsan) tsan="yes"
828 ;;
829 --disable-tsan) tsan="no"
830 ;;
Paolo Bonzini1badb702020-09-18 04:57:25 -0400831 --disable-tcg) tcg="disabled"
Alex Bennéed1a14252021-07-09 15:29:54 +0100832 plugins="no"
Paolo Bonzinib3f6ea72017-07-03 16:59:07 +0200833 ;;
Paolo Bonzini1badb702020-09-18 04:57:25 -0400834 --enable-tcg) tcg="enabled"
Paolo Bonzinib3f6ea72017-07-03 16:59:07 +0200835 ;;
pbrookcad25d62006-03-19 16:31:11 +0000836 --disable-system) softmmu="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000837 ;;
pbrookcad25d62006-03-19 16:31:11 +0000838 --enable-system) softmmu="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000839 ;;
Zachary Amsden0953a802009-07-30 00:14:59 -1000840 --disable-user)
841 linux_user="no" ;
842 bsd_user="no" ;
Zachary Amsden0953a802009-07-30 00:14:59 -1000843 ;;
844 --enable-user) ;;
ths831b7822007-01-18 20:06:33 +0000845 --disable-linux-user) linux_user="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000846 ;;
ths831b7822007-01-18 20:06:33 +0000847 --enable-linux-user) linux_user="yes"
848 ;;
blueswir184778502008-10-26 20:33:16 +0000849 --disable-bsd-user) bsd_user="no"
850 ;;
851 --enable-bsd-user) bsd_user="yes"
852 ;;
Avi Kivity40d64442011-11-15 20:12:17 +0200853 --enable-pie) pie="yes"
Kirill A. Shutemov34005a02009-09-12 02:17:55 +0300854 ;;
Avi Kivity40d64442011-11-15 20:12:17 +0200855 --disable-pie) pie="no"
Kirill A. Shutemov34005a02009-09-12 02:17:55 +0300856 ;;
bellard85aa5182007-11-11 20:17:03 +0000857 --enable-werror) werror="yes"
858 ;;
859 --disable-werror) werror="no"
860 ;;
Steven Noonan63678e12014-03-28 17:19:02 +0100861 --enable-stack-protector) stack_protector="yes"
862 ;;
863 --disable-stack-protector) stack_protector="no"
864 ;;
Daniele Buono1e4f6062020-05-29 16:51:21 -0400865 --enable-safe-stack) safe_stack="yes"
866 ;;
867 --disable-safe-stack) safe_stack="no"
868 ;;
Daniele Buono9e62ba42020-12-04 18:06:14 -0500869 --enable-cfi)
870 cfi="true";
Paolo Bonzinic54b59e2022-04-20 17:33:58 +0200871 meson_option_add -Db_lto=true
Daniele Buono9e62ba42020-12-04 18:06:14 -0500872 ;;
873 --disable-cfi) cfi="false"
874 ;;
Paolo Bonzinifbb41212020-10-05 11:31:15 +0200875 --disable-fdt) fdt="disabled"
Juan Quintela2df87df2009-08-12 18:29:54 +0200876 ;;
Paolo Bonzinifbb41212020-10-05 11:31:15 +0200877 --enable-fdt) fdt="enabled"
878 ;;
879 --enable-fdt=git) fdt="internal"
880 ;;
Paolo Bonzini03a3c0b2021-10-07 15:08:27 +0200881 --enable-fdt=*) fdt="$optarg"
Juan Quintela2df87df2009-08-12 18:29:54 +0200882 ;;
Alex Barcelo519175a2012-02-28 12:25:50 +0100883 --with-coroutine=*) coroutine="$optarg"
884 ;;
Daniel P. Berrangecc84d632017-10-20 15:02:43 +0100885 --with-git=*) git="$optarg"
886 ;;
Dan Streetman7d7dbf92021-01-19 12:20:46 -0500887 --with-git-submodules=*)
888 git_submodules_action="$optarg"
Daniel P. Berrangef62bbee2017-10-26 13:52:26 +0100889 ;;
Alex Bennée9b8e4292021-07-09 15:29:56 +0100890 --enable-plugins) if test "$mingw32" = "yes"; then
891 error_exit "TCG plugins not currently supported on Windows platforms"
892 else
893 plugins="yes"
894 fi
Alex Bennée40e8c6f2019-06-13 14:52:25 +0100895 ;;
896 --disable-plugins) plugins="no"
897 ;;
Alex Bennéeafc3a8f2019-11-28 16:35:24 +0100898 --enable-containers) use_containers="yes"
899 ;;
900 --disable-containers) use_containers="no"
901 ;;
Alex Bennéef48e5902020-03-16 17:21:48 +0000902 --gdb=*) gdb_bin="$optarg"
903 ;;
Jagannathan Raman55116962022-06-13 16:26:24 -0400904 --enable-vfio-user-server) vfio_user_server="enabled"
905 ;;
906 --disable-vfio-user-server) vfio_user_server="disabled"
907 ;;
Paolo Bonzini3b4da132021-10-07 15:08:29 +0200908 # everything else has the same name in configure and meson
Paolo Bonzini4fda6012022-04-20 17:33:51 +0200909 --*) meson_option_parse "$opt" "$optarg"
balrog7f1559c2007-11-17 10:24:32 +0000910 ;;
bellard7d132992003-03-06 23:23:54 +0000911 esac
912done
913
Alex Bennéed1a14252021-07-09 15:29:54 +0100914# test for any invalid configuration combinations
915if test "$plugins" = "yes" -a "$tcg" = "disabled"; then
916 error_exit "Can't enable plugins on non-TCG builds"
917fi
918
Dan Streetman7d7dbf92021-01-19 12:20:46 -0500919case $git_submodules_action in
920 update|validate)
921 if test ! -e "$source_path/.git"; then
922 echo "ERROR: cannot $git_submodules_action git submodules without .git"
923 exit 1
924 fi
925 ;;
926 ignore)
Paolo Bonzinib80fd282021-05-12 09:18:55 +0200927 if ! test -f "$source_path/ui/keycodemapdb/README"
928 then
929 echo
930 echo "ERROR: missing GIT submodules"
931 echo
932 if test -e "$source_path/.git"; then
933 echo "--with-git-submodules=ignore specified but submodules were not"
934 echo "checked out. Please initialize and update submodules."
935 else
936 echo "This is not a GIT checkout but module content appears to"
937 echo "be missing. Do not use 'git archive' or GitHub download links"
938 echo "to acquire QEMU source archives. Non-GIT builds are only"
939 echo "supported with source archives linked from:"
940 echo
941 echo " https://www.qemu.org/download/#source"
942 echo
943 echo "Developers working with GIT can use scripts/archive-source.sh"
944 echo "if they need to create valid source archives."
945 fi
946 echo
947 exit 1
948 fi
Dan Streetman7d7dbf92021-01-19 12:20:46 -0500949 ;;
950 *)
951 echo "ERROR: invalid --with-git-submodules= value '$git_submodules_action'"
952 exit 1
953 ;;
954esac
955
Peter Maydell60e0df22011-05-03 14:50:13 +0100956default_target_list=""
Peter Maydell6e92f822013-05-20 16:16:15 +0100957mak_wilds=""
958
Paolo Bonzinib915a2f2021-11-09 10:10:41 +0100959if [ "$linux_user" != no ]; then
Peter Maydell64708612022-08-25 16:06:59 +0100960 if [ "$targetos" = linux ] && [ -d "$source_path/linux-user/include/host/$cpu" ]; then
Paolo Bonzinib915a2f2021-11-09 10:10:41 +0100961 linux_user=yes
962 elif [ "$linux_user" = yes ]; then
963 error_exit "linux-user not supported on this architecture"
964 fi
965fi
966if [ "$bsd_user" != no ]; then
967 if [ "$bsd_user" = "" ]; then
968 test $targetos = freebsd && bsd_user=yes
969 fi
Peter Maydell64708612022-08-25 16:06:59 +0100970 if [ "$bsd_user" = yes ] && ! [ -d "$source_path/bsd-user/$targetos" ]; then
Paolo Bonzinib915a2f2021-11-09 10:10:41 +0100971 error_exit "bsd-user not supported on this host OS"
972 fi
973fi
Peter Maydell6e92f822013-05-20 16:16:15 +0100974if [ "$softmmu" = "yes" ]; then
Alex Bennée812b31d2021-07-07 14:17:43 +0100975 mak_wilds="${mak_wilds} $source_path/configs/targets/*-softmmu.mak"
Peter Maydell60e0df22011-05-03 14:50:13 +0100976fi
Peter Maydell6e92f822013-05-20 16:16:15 +0100977if [ "$linux_user" = "yes" ]; then
Alex Bennée812b31d2021-07-07 14:17:43 +0100978 mak_wilds="${mak_wilds} $source_path/configs/targets/*-linux-user.mak"
Peter Maydell60e0df22011-05-03 14:50:13 +0100979fi
Peter Maydell6e92f822013-05-20 16:16:15 +0100980if [ "$bsd_user" = "yes" ]; then
Alex Bennée812b31d2021-07-07 14:17:43 +0100981 mak_wilds="${mak_wilds} $source_path/configs/targets/*-bsd-user.mak"
Peter Maydell60e0df22011-05-03 14:50:13 +0100982fi
983
Alex Bennée2d838d92020-09-09 12:27:37 +0100984for config in $mak_wilds; do
985 target="$(basename "$config" .mak)"
Alex Bennée98db9a02020-09-15 14:43:14 +0100986 if echo "$target_list_exclude" | grep -vq "$target"; then
Alex Bennée2d838d92020-09-09 12:27:37 +0100987 default_target_list="${default_target_list} $target"
988 fi
989done
Peter Maydell6e92f822013-05-20 16:16:15 +0100990
pbrookaf5db582006-04-08 14:26:41 +0000991if test x"$show_help" = x"yes" ; then
992cat << EOF
993
994Usage: configure [options]
995Options: [defaults in brackets after descriptions]
996
Stefan Weil08fb77e2013-12-18 22:09:39 +0100997Standard options:
998 --help print this message
999 --prefix=PREFIX install in PREFIX [$prefix]
Thomas Huth74154d72022-01-12 11:27:22 +00001000 --target-list=LIST set target list (default: build all)
Stefan Weil08fb77e2013-12-18 22:09:39 +01001001$(echo Available targets: $default_target_list | \
1002 fold -s -w 53 | sed -e 's/^/ /')
Alex Bennée447e1332019-03-19 11:59:12 +00001003 --target-list-exclude=LIST exclude a set of targets from the default target-list
Stefan Weil08fb77e2013-12-18 22:09:39 +01001004
1005Advanced options (experts only):
Joelle van Dyne3812c0c2021-01-25 17:24:48 -08001006 --cross-prefix=PREFIX use PREFIX for compile tools, PREFIX can be blank [$cross_prefix]
Stefan Weil08fb77e2013-12-18 22:09:39 +01001007 --cc=CC use C compiler CC [$cc]
Stefan Weil08fb77e2013-12-18 22:09:39 +01001008 --host-cc=CC use C compiler CC [$host_cc] for code run at
1009 build time
1010 --cxx=CXX use C++ compiler CXX [$cxx]
1011 --objcc=OBJCC use Objective-C compiler OBJCC [$objcc]
Paolo Bonzinia2866662021-11-05 10:09:26 +01001012 --extra-cflags=CFLAGS append extra C compiler flags CFLAGS
1013 --extra-cxxflags=CXXFLAGS append extra C++ compiler flags CXXFLAGS
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +01001014 --extra-objcflags=OBJCFLAGS append extra Objective C compiler flags OBJCFLAGS
Stefan Weil08fb77e2013-12-18 22:09:39 +01001015 --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS
Alex Bennéed75402b2018-04-04 20:27:05 +01001016 --cross-cc-ARCH=CC use compiler when building ARCH guest test cases
Matheus Ferst479ca4c2022-01-20 14:31:41 -03001017 --cross-cc-cflags-ARCH= use compiler flags when building ARCH guest tests
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001018 --cross-prefix-ARCH=PREFIX cross compiler prefix when building ARCH guest test cases
Stefan Weil08fb77e2013-12-18 22:09:39 +01001019 --make=MAKE use specified make [$make]
Stefan Weil08fb77e2013-12-18 22:09:39 +01001020 --python=PYTHON use specified python [$python]
Paolo Bonzinia5665052019-06-10 12:05:14 +02001021 --meson=MESON use specified meson [$meson]
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
Paolo Bonzini462a6562023-02-10 17:18:54 +01001092# Resolve PATH + suppress writing compiled files
1093python="$(command -v "$python") -B"
1094
1095has_meson() {
1096 local python_dir=$(dirname "$python")
1097 # PEP405: pyvenv.cfg is either adjacent to the Python executable
1098 # or one directory above
1099 if test -f $python_dir/pyvenv.cfg || test -f $python_dir/../pyvenv.cfg; then
1100 # Ensure that Meson and Python come from the same virtual environment
1101 test -x "$python_dir/meson" &&
1102 test "$(command -v meson)" -ef "$python_dir/meson"
1103 else
1104 has meson
1105 fi
1106}
Stefan Hajnoczic53eeaf2017-03-28 14:44:18 +01001107
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001108if test -z "$meson"; then
Paolo Bonzini462a6562023-02-10 17:18:54 +01001109 if test "$explicit_python" = no && has_meson && version_ge "$(meson --version)" 0.61.5; then
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001110 meson=meson
Peter Maydell64708612022-08-25 16:06:59 +01001111 elif test "$git_submodules_action" != 'ignore' ; then
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001112 meson=git
1113 elif test -e "${source_path}/meson/meson.py" ; then
1114 meson=internal
1115 else
1116 if test "$explicit_python" = yes; then
1117 error_exit "--python requires using QEMU's embedded Meson distribution, but it was not found."
1118 else
1119 error_exit "Meson not found. Use --meson=/path/to/meson"
1120 fi
1121 fi
1122else
1123 # Meson uses its own Python interpreter to invoke other Python scripts,
1124 # but the user wants to use the one they specified with --python.
1125 #
1126 # We do not want to override the distro Python interpreter (and sometimes
1127 # cannot: for example in Homebrew /usr/bin/meson is a bash script), so
1128 # just require --meson=git|internal together with --python.
1129 if test "$explicit_python" = yes; then
1130 case "$meson" in
1131 git | internal) ;;
1132 *) error_exit "--python requires using QEMU's embedded Meson distribution." ;;
1133 esac
1134 fi
Paolo Bonzinia5665052019-06-10 12:05:14 +02001135fi
Paolo Bonzinia5665052019-06-10 12:05:14 +02001136
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001137if test "$meson" = git; then
1138 git_submodules="${git_submodules} meson"
Paolo Bonzinia5665052019-06-10 12:05:14 +02001139fi
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001140
1141case "$meson" in
1142 git | internal)
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001143 meson="$python ${source_path}/meson/meson.py"
1144 ;;
Paolo Bonzini84ec0c22020-09-04 10:00:26 -04001145 *) meson=$(command -v "$meson") ;;
Marc-André Lureau0a01d762019-08-21 11:21:16 +04001146esac
1147
Paolo Bonzini09e93322020-08-13 09:28:11 -04001148# Probe for ninja
Paolo Bonzini48328882020-08-26 08:04:15 +02001149
1150if test -z "$ninja"; then
1151 for c in ninja ninja-build samu; do
1152 if has $c; then
1153 ninja=$(command -v "$c")
1154 break
1155 fi
1156 done
Paolo Bonzini09e93322020-08-13 09:28:11 -04001157 if test -z "$ninja"; then
1158 error_exit "Cannot find Ninja"
1159 fi
Paolo Bonzini48328882020-08-26 08:04:15 +02001160fi
Paolo Bonzinia5665052019-06-10 12:05:14 +02001161
Daniel Henrique Barboza9aae6e52017-11-02 07:09:06 -02001162# Check that the C compiler works. Doing this here before testing
1163# the host CPU ensures that we had a valid CC to autodetect the
1164# $cpu var (and we should bail right here if that's not the case).
1165# It also allows the help message to be printed without a CC.
1166write_c_skeleton;
1167if compile_object ; then
1168 : C compiler works ok
1169else
1170 error_exit "\"$cc\" either does not exist or does not work"
1171fi
1172if ! compile_prog ; then
1173 error_exit "\"$cc\" cannot build an executable (is your linker broken?)"
1174fi
1175
Peter Maydell9c83ffd2014-02-25 18:27:49 +00001176# Consult white-list to determine whether to enable werror
1177# by default. Only enable by default for git builds
Peter Maydell9c83ffd2014-02-25 18:27:49 +00001178if test -z "$werror" ; then
Dan Streetman7d7dbf92021-01-19 12:20:46 -05001179 if test "$git_submodules_action" != "ignore" && \
Eric Blakee633a5c2019-02-04 20:39:37 -06001180 { test "$linux" = "yes" || test "$mingw32" = "yes"; }; then
Peter Maydell9c83ffd2014-02-25 18:27:49 +00001181 werror="yes"
1182 else
1183 werror="no"
1184 fi
1185fi
1186
Paolo Bonzini975ff032020-11-20 10:34:10 +01001187if test "$targetos" = "bogus"; then
Peter Maydellfb59dab2017-03-28 14:01:52 +01001188 # Now that we know that we're not printing the help and that
1189 # the compiler works (so the results of the check_defines we used
1190 # to identify the OS are reliable), if we didn't recognize the
1191 # host OS we should stop now.
Peter Maydell951fedf2017-07-13 16:15:32 +01001192 error_exit "Unrecognized host OS (uname -s reports '$(uname -s)')"
Peter Maydellfb59dab2017-03-28 14:01:52 +01001193fi
1194
Thomas Huthefc6c072018-12-03 10:12:32 +01001195# Check whether the compiler matches our minimum requirements:
1196cat > $TMPC << EOF
1197#if defined(__clang_major__) && defined(__clang_minor__)
1198# ifdef __apple_build_version__
Thomas Huth74a1b252023-01-31 19:02:39 +01001199# if __clang_major__ < 12 || (__clang_major__ == 12 && __clang_minor__ < 0)
1200# error You need at least XCode Clang v12.0 to compile QEMU
Thomas Huthefc6c072018-12-03 10:12:32 +01001201# endif
1202# else
Thomas Huth74a1b252023-01-31 19:02:39 +01001203# if __clang_major__ < 10 || (__clang_major__ == 10 && __clang_minor__ < 0)
1204# error You need at least Clang v10.0 to compile QEMU
Thomas Huthefc6c072018-12-03 10:12:32 +01001205# endif
1206# endif
1207#elif defined(__GNUC__) && defined(__GNUC_MINOR__)
nia3830df52021-10-01 15:30:03 +00001208# if __GNUC__ < 7 || (__GNUC__ == 7 && __GNUC_MINOR__ < 4)
1209# error You need at least GCC v7.4.0 to compile QEMU
Thomas Huthefc6c072018-12-03 10:12:32 +01001210# endif
1211#else
1212# error You either need GCC or Clang to compiler QEMU
1213#endif
1214int main (void) { return 0; }
1215EOF
1216if ! compile_prog "" "" ; then
Thomas Huth74a1b252023-01-31 19:02:39 +01001217 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 +01001218fi
1219
Richard Henderson00849b92020-06-17 13:13:06 -07001220# Accumulate -Wfoo and -Wno-bar separately.
1221# We will list all of the enable flags first, and the disable flags second.
1222# Note that we do not add -Werror, because that would enable it for all
1223# configure tests. If a configure test failed due to -Werror this would
1224# just silently disable some features, so it's too error prone.
1225
1226warn_flags=
Paolo Bonzinica9b5c22022-10-12 14:21:22 +02001227add_to warn_flags -Wundef
1228add_to warn_flags -Wwrite-strings
1229add_to warn_flags -Wmissing-prototypes
1230add_to warn_flags -Wstrict-prototypes
1231add_to warn_flags -Wredundant-decls
Richard Henderson00849b92020-06-17 13:13:06 -07001232add_to warn_flags -Wold-style-declaration
1233add_to warn_flags -Wold-style-definition
1234add_to warn_flags -Wtype-limits
1235add_to warn_flags -Wformat-security
1236add_to warn_flags -Wformat-y2k
1237add_to warn_flags -Winit-self
1238add_to warn_flags -Wignored-qualifiers
1239add_to warn_flags -Wempty-body
1240add_to warn_flags -Wnested-externs
1241add_to warn_flags -Wendif-labels
1242add_to warn_flags -Wexpansion-to-defined
Thomas Huth0a2ebce2020-12-11 16:24:26 +01001243add_to warn_flags -Wimplicit-fallthrough=2
Daniel P. Berrangé88a0ef02022-12-19 08:02:05 -05001244add_to warn_flags -Wmissing-format-attribute
Thomas Huth2946e1a2023-03-01 12:34:25 +01001245
1246if test "$targetos" != "darwin"; then
1247 add_to warn_flags -Wthread-safety
1248fi
Richard Henderson00849b92020-06-17 13:13:06 -07001249
1250nowarn_flags=
1251add_to nowarn_flags -Wno-initializer-overrides
1252add_to nowarn_flags -Wno-missing-include-dirs
1253add_to nowarn_flags -Wno-shift-negative-value
1254add_to nowarn_flags -Wno-string-plus-int
1255add_to nowarn_flags -Wno-typedef-redefinition
Richard Hendersonaabab962020-06-17 13:13:07 -07001256add_to nowarn_flags -Wno-tautological-type-limit-compare
Richard Hendersonbac8d222020-06-17 13:13:08 -07001257add_to nowarn_flags -Wno-psabi
Chenyi Qiang28d01b12022-09-15 17:10:34 +08001258add_to nowarn_flags -Wno-gnu-variable-sized-type-not-at-end
Richard Henderson00849b92020-06-17 13:13:06 -07001259
1260gcc_flags="$warn_flags $nowarn_flags"
John Snow93b25862015-03-25 18:57:37 -04001261
1262cc_has_warning_flag() {
1263 write_c_skeleton;
1264
Peter Maydella1d29d62012-10-27 22:19:07 +01001265 # Use the positive sense of the flag when testing for -Wno-wombat
1266 # support (gcc will happily accept the -Wno- form of unknown
1267 # warning options).
John Snow93b25862015-03-25 18:57:37 -04001268 optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')"
1269 compile_prog "-Werror $optflag" ""
1270}
1271
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +01001272objcc_has_warning_flag() {
1273 cat > $TMPM <<EOF
1274int main(void) { return 0; }
1275EOF
1276
1277 # Use the positive sense of the flag when testing for -Wno-wombat
1278 # support (gcc will happily accept the -Wno- form of unknown
1279 # warning options).
1280 optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')"
1281 do_objc -Werror $optflag \
1282 $OBJCFLAGS $EXTRA_OBJCFLAGS $CONFIGURE_OBJCFLAGS $QEMU_OBJCFLAGS \
1283 -o $TMPE $TMPM $QEMU_LDFLAGS
1284}
1285
John Snow93b25862015-03-25 18:57:37 -04001286for flag in $gcc_flags; do
1287 if cc_has_warning_flag $flag ; then
1288 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
Paolo Bonzini8d050952010-12-23 11:43:52 +01001289 fi
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +01001290 if objcc_has_warning_flag $flag ; then
1291 QEMU_OBJCFLAGS="$QEMU_OBJCFLAGS $flag"
1292 fi
Paolo Bonzini8d050952010-12-23 11:43:52 +01001293done
1294
Miroslav Rezanina3b463a32014-07-02 10:05:24 +02001295if test "$stack_protector" != "no"; then
Rodrigo Rebellofccd35a2015-11-12 12:04:28 -02001296 cat > $TMPC << EOF
1297int main(int argc, char *argv[])
1298{
Stefan Weil8a0afbb2022-11-02 21:22:58 +01001299 char arr[64], *p = arr, *c = argv[argc - 1];
Rodrigo Rebellofccd35a2015-11-12 12:04:28 -02001300 while (*c) {
1301 *p++ = *c++;
1302 }
1303 return 0;
1304}
1305EOF
Steven Noonan63678e12014-03-28 17:19:02 +01001306 gcc_flags="-fstack-protector-strong -fstack-protector-all"
Miroslav Rezanina3b463a32014-07-02 10:05:24 +02001307 sp_on=0
Steven Noonan63678e12014-03-28 17:19:02 +01001308 for flag in $gcc_flags; do
Peter Maydell590e5dd2014-04-11 17:13:52 +01001309 # We need to check both a compile and a link, since some compiler
1310 # setups fail only on a .c->.o compile and some only at link time
Paolo Bonzini086d5f72020-02-03 15:22:17 +01001311 if compile_object "-Werror $flag" &&
Peter Maydell590e5dd2014-04-11 17:13:52 +01001312 compile_prog "-Werror $flag" ""; then
Steven Noonan63678e12014-03-28 17:19:02 +01001313 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
Paolo Bonzinidb5adea2019-12-11 15:34:27 +01001314 QEMU_LDFLAGS="$QEMU_LDFLAGS $flag"
Miroslav Rezanina3b463a32014-07-02 10:05:24 +02001315 sp_on=1
Steven Noonan63678e12014-03-28 17:19:02 +01001316 break
1317 fi
1318 done
Miroslav Rezanina3b463a32014-07-02 10:05:24 +02001319 if test "$stack_protector" = yes; then
1320 if test $sp_on = 0; then
1321 error_exit "Stack protector not supported"
1322 fi
1323 fi
Marc-André Lureau37746c52013-02-25 23:31:12 +01001324fi
1325
Marc-André Lureau21e709a2019-07-18 16:04:13 +04001326# Our module code doesn't support Windows
1327if test "$modules" = "yes" && test "$mingw32" = "yes" ; then
1328 error_exit "Modules are not available for Windows"
1329fi
1330
Alex Bennée5f2453a2021-07-09 15:29:55 +01001331# Static linking is not possible with plugins, modules or PIE
Avi Kivity40d64442011-11-15 20:12:17 +02001332if test "$static" = "yes" ; then
Paolo Bonziniaa0d1f42014-02-25 17:36:55 +01001333 if test "$modules" = "yes" ; then
1334 error_exit "static and modules are mutually incompatible"
1335 fi
Alex Bennée5f2453a2021-07-09 15:29:55 +01001336 if test "$plugins" = "yes"; then
1337 error_exit "static and plugins are mutually incompatible"
Alex Bennéeba4dd2a2021-07-09 15:29:57 +01001338 else
1339 plugins="no"
Alex Bennée5f2453a2021-07-09 15:29:55 +01001340 fi
Avi Kivity40d64442011-11-15 20:12:17 +02001341fi
Paolo Bonzini37650682021-12-10 09:55:15 +01001342test "$plugins" = "" && plugins=yes
Avi Kivity40d64442011-11-15 20:12:17 +02001343
Richard Hendersonb2634122019-12-17 13:54:56 -10001344cat > $TMPC << EOF
Avi Kivity21d4a792011-11-23 11:24:25 +02001345
1346#ifdef __linux__
1347# define THREAD __thread
1348#else
1349# define THREAD
1350#endif
Avi Kivity21d4a792011-11-23 11:24:25 +02001351static THREAD int tls_var;
Avi Kivity21d4a792011-11-23 11:24:25 +02001352int main(void) { return tls_var; }
Avi Kivity40d64442011-11-15 20:12:17 +02001353EOF
Alex Bennée412aeac2019-08-15 19:41:51 +00001354
Alex Bennée977cccb2022-10-27 19:36:11 +01001355# Meson currently only handles pie as a boolean for now so if we have
1356# explicitly disabled PIE we need to extend our cflags because it wont.
Richard Henderson12781462019-12-17 15:30:14 -10001357if test "$static" = "yes"; then
Richard Hendersoneca7a8e2020-04-03 20:11:50 +01001358 if test "$pie" != "no" && compile_prog "-Werror -fPIE -DPIE" "-static-pie"; then
Paolo Bonzini5770e8a2020-09-23 05:26:15 -04001359 CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS"
Richard Henderson12781462019-12-17 15:30:14 -10001360 pie="yes"
1361 elif test "$pie" = "yes"; then
1362 error_exit "-static-pie not available due to missing toolchain support"
1363 else
Richard Henderson12781462019-12-17 15:30:14 -10001364 pie="no"
Warner Losha3656892023-02-10 11:12:46 -07001365 QEMU_CFLAGS="-fno-pie $QEMU_CFLAGS"
Richard Henderson12781462019-12-17 15:30:14 -10001366 fi
1367elif test "$pie" = "no"; then
Paolo Bonzinib9eae9e2022-03-29 13:07:25 +02001368 if compile_prog "-Werror -fno-pie" "-no-pie"; then
1369 CONFIGURE_CFLAGS="-fno-pie $CONFIGURE_CFLAGS"
1370 CONFIGURE_LDFLAGS="-no-pie $CONFIGURE_LDFLAGS"
Alex Bennéeabafb642022-09-14 16:59:38 +01001371 QEMU_CFLAGS="-fno-pie -no-pie $QEMU_CFLAGS"
Paolo Bonzinib9eae9e2022-03-29 13:07:25 +02001372 fi
Richard Hendersoneca7a8e2020-04-03 20:11:50 +01001373elif compile_prog "-Werror -fPIE -DPIE" "-pie"; then
Paolo Bonzini5770e8a2020-09-23 05:26:15 -04001374 CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS"
1375 CONFIGURE_LDFLAGS="-pie $CONFIGURE_LDFLAGS"
Richard Henderson2c674102019-12-17 15:15:01 -10001376 pie="yes"
1377elif test "$pie" = "yes"; then
1378 error_exit "PIE not available due to missing toolchain support"
1379else
1380 echo "Disabling PIE due to missing toolchain support"
1381 pie="no"
Avi Kivity40d64442011-11-15 20:12:17 +02001382fi
1383
Paolo Bonzini09dada42013-04-17 16:26:47 +02001384##########################################
1385# __sync_fetch_and_and requires at least -march=i486. Many toolchains
1386# use i686 as default anyway, but for those that don't, an explicit
1387# specification is necessary
1388
1389if test "$cpu" = "i386"; then
1390 cat > $TMPC << EOF
1391static int sfaa(int *ptr)
1392{
1393 return __sync_fetch_and_and(ptr, 0);
1394}
1395
1396int main(void)
1397{
1398 int val = 42;
Stefan Weil1405b622013-05-11 21:46:58 +02001399 val = __sync_val_compare_and_swap(&val, 0, 1);
Paolo Bonzini09dada42013-04-17 16:26:47 +02001400 sfaa(&val);
1401 return val;
1402}
1403EOF
1404 if ! compile_prog "" "" ; then
1405 QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS"
1406 fi
1407fi
1408
Stefan Weilafb63eb2012-09-26 22:04:38 +02001409if test -z "${target_list+xxx}" ; then
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001410 default_targets=yes
Paolo Bonzinid880a3b2017-07-03 16:58:28 +02001411 for target in $default_target_list; do
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001412 target_list="$target_list $target"
Paolo Bonzinid880a3b2017-07-03 16:58:28 +02001413 done
1414 target_list="${target_list# }"
Anthony Liguori121afa92012-09-14 08:17:03 -05001415else
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04001416 default_targets=no
Stefan Weil89138852016-05-16 15:10:20 +02001417 target_list=$(echo "$target_list" | sed -e 's/,/ /g')
Paolo Bonzinid880a3b2017-07-03 16:58:28 +02001418 for target in $target_list; do
1419 # Check that we recognised the target name; this allows a more
1420 # friendly error message than if we let it fall through.
1421 case " $default_target_list " in
1422 *" $target "*)
1423 ;;
1424 *)
1425 error_exit "Unknown target name '$target'"
1426 ;;
1427 esac
Paolo Bonzinid880a3b2017-07-03 16:58:28 +02001428 done
bellard5327cf42005-01-10 23:18:50 +00001429fi
Peter Maydell25b48332013-05-20 16:16:16 +01001430
Paolo Bonzinif55fe272010-05-26 16:08:17 +02001431# see if system emulation was really requested
1432case " $target_list " in
1433 *"-softmmu "*) softmmu=yes
1434 ;;
1435 *) softmmu=no
1436 ;;
1437esac
bellard5327cf42005-01-10 23:18:50 +00001438
Philippe Mathieu-Daudé76301562022-02-04 15:54:47 +01001439if test "$tcg" = "auto"; then
1440 if test -z "$target_list"; then
1441 tcg="disabled"
1442 else
1443 tcg="enabled"
1444 fi
1445fi
1446
1447if test "$tcg" = "enabled"; then
1448 git_submodules="$git_submodules tests/fp/berkeley-testfloat-3"
1449 git_submodules="$git_submodules tests/fp/berkeley-softfloat-3"
1450fi
1451
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001452##########################################
bellard7d132992003-03-06 23:23:54 +00001453# big/little endian test
1454cat > $TMPC << EOF
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001455#if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
1456# error LITTLE
1457#endif
1458int main(void) { return 0; }
bellard7d132992003-03-06 23:23:54 +00001459EOF
1460
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001461if ! compile_prog ; then
1462 bigendian="no"
Mike Frysinger61cc9192013-06-30 23:30:18 -04001463else
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001464 cat > $TMPC << EOF
1465#if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
1466# error BIG
1467#endif
1468int main(void) { return 0; }
1469EOF
1470
1471 if ! compile_prog ; then
1472 bigendian="yes"
1473 else
Mike Frysinger61cc9192013-06-30 23:30:18 -04001474 echo big/little test failed
Thomas Huth659eb152021-07-15 10:39:28 +02001475 exit 1
Michal Privoznik33ab5f22022-10-14 09:30:15 +02001476 fi
bellard7d132992003-03-06 23:23:54 +00001477fi
1478
Gonglei015a33b2014-07-01 20:58:08 +08001479##########################################
Stefan Weil779ab5e2012-12-16 11:29:45 +01001480# pkg-config probe
1481
1482if ! has "$pkg_config_exe"; then
Peter Maydell76ad07a2013-04-08 12:11:26 +01001483 error_exit "pkg-config binary '$pkg_config_exe' not found"
Stefan Weil779ab5e2012-12-16 11:29:45 +01001484fi
1485
1486##########################################
Anthony Liguorie18df142011-07-19 14:50:29 -05001487# glib support probe
Paolo Bonzinia52d28a2012-04-05 13:01:54 +02001488
Thomas Huth0ce9b082022-05-13 08:39:58 +02001489# When bumping glib_req_ver, please check also whether we should increase
1490# the _WIN32_WINNT setting in osdep.h according to the value from glib
Daniel P. Berrangéb4c60362021-05-14 13:04:13 +01001491glib_req_ver=2.56
Paolo Bonziniaa0d1f42014-02-25 17:36:55 +01001492glib_modules=gthread-2.0
1493if test "$modules" = yes; then
Gerd Hoffmanna88afc62018-03-08 09:53:00 +01001494 glib_modules="$glib_modules gmodule-export-2.0"
Paolo Bonzinib906aca2021-08-11 12:05:50 +02001495elif test "$plugins" = "yes"; then
1496 glib_modules="$glib_modules gmodule-no-export-2.0"
Emilio G. Cota54cb65d2017-08-30 18:39:53 -04001497fi
Fam Zhenge26110c2014-02-10 14:48:57 +08001498
Paolo Bonziniaa0d1f42014-02-25 17:36:55 +01001499for i in $glib_modules; do
Fam Zhenge26110c2014-02-10 14:48:57 +08001500 if $pkg_config --atleast-version=$glib_req_ver $i; then
Stefan Weil89138852016-05-16 15:10:20 +02001501 glib_cflags=$($pkg_config --cflags $i)
1502 glib_libs=$($pkg_config --libs $i)
Fam Zhenge26110c2014-02-10 14:48:57 +08001503 else
1504 error_exit "glib-$glib_req_ver $i is required to compile QEMU"
1505 fi
1506done
1507
Emilio Cotae3feb2c2023-02-05 11:37:57 -05001508# Check whether glib has gslice, which we have to avoid for correctness.
1509# TODO: remove this check and the corresponding workaround (qtree) when
1510# the minimum supported glib is >= $glib_dropped_gslice_version.
1511glib_dropped_gslice_version=2.75.3
1512for i in $glib_modules; do
1513 if ! $pkg_config --atleast-version=$glib_dropped_gslice_version $i; then
1514 glib_has_gslice="yes"
1515 break
1516 fi
1517done
1518
Marc-André Lureau5b9e7d02022-05-25 16:41:39 +02001519glib_bindir="$($pkg_config --variable=bindir glib-2.0)"
1520if test -z "$glib_bindir" ; then
1521 glib_bindir="$($pkg_config --variable=prefix glib-2.0)"/bin
1522fi
1523
Paolo Bonzini215b0c22020-09-01 08:41:17 -04001524# This workaround is required due to a bug in pkg-config file for glib as it
1525# doesn't define GLIB_STATIC_COMPILATION for pkg-config --static
1526
1527if test "$static" = yes && test "$mingw32" = yes; then
1528 glib_cflags="-DGLIB_STATIC_COMPILATION $glib_cflags"
1529fi
1530
Daniel P. Berrange977a82a2016-01-27 09:00:45 +00001531# Sanity check that the current size_t matches the
1532# size that glib thinks it should be. This catches
1533# problems on multi-arch where people try to build
1534# 32-bit QEMU while pointing at 64-bit glib headers
1535cat > $TMPC <<EOF
1536#include <glib.h>
1537#include <unistd.h>
1538
1539#define QEMU_BUILD_BUG_ON(x) \
1540 typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused));
1541
1542int main(void) {
1543 QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T);
1544 return 0;
1545}
1546EOF
1547
Paolo Bonzini215b0c22020-09-01 08:41:17 -04001548if ! compile_prog "$glib_cflags" "$glib_libs" ; then
Daniel P. Berrange977a82a2016-01-27 09:00:45 +00001549 error_exit "sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T."\
1550 "You probably need to set PKG_CONFIG_LIBDIR"\
1551 "to point to the right pkg-config files for your"\
1552 "build target"
1553fi
1554
Eric Blake9bda6002020-03-17 12:55:34 -05001555# Silence clang warnings triggered by glib < 2.57.2
1556cat > $TMPC << EOF
1557#include <glib.h>
1558typedef struct Foo {
1559 int i;
1560} Foo;
1561static void foo_free(Foo *f)
1562{
1563 g_free(f);
1564}
Marc-André Lureaue0e7fe02022-03-12 02:22:02 +04001565G_DEFINE_AUTOPTR_CLEANUP_FUNC(Foo, foo_free)
Eric Blake9bda6002020-03-17 12:55:34 -05001566int main(void) { return 0; }
1567EOF
1568if ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then
1569 if cc_has_warning_flag "-Wno-unused-function"; then
1570 glib_cflags="$glib_cflags -Wno-unused-function"
Paolo Bonzini5770e8a2020-09-23 05:26:15 -04001571 CONFIGURE_CFLAGS="$CONFIGURE_CFLAGS -Wno-unused-function"
Eric Blake9bda6002020-03-17 12:55:34 -05001572 fi
1573fi
1574
Fam Zhenge26110c2014-02-10 14:48:57 +08001575##########################################
aurel32f652e6a2008-12-16 10:43:48 +00001576# fdt probe
Paolo Bonzinifbb41212020-10-05 11:31:15 +02001577
1578case "$fdt" in
1579 auto | enabled | internal)
1580 # Simpler to always update submodule, even if not needed.
Paolo Bonzini2d652f22021-05-12 09:21:56 +02001581 git_submodules="${git_submodules} dtc"
Peter Maydelle169e1e2013-05-24 16:26:54 +01001582 ;;
Paolo Bonzinifbb41212020-10-05 11:31:15 +02001583esac
aurel32f652e6a2008-12-16 10:43:48 +00001584
Michael Walle20ff0752011-03-07 23:32:39 +01001585##########################################
Alex Barcelo519175a2012-02-28 12:25:50 +01001586# check and set a backend for coroutine
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301587
Peter Maydell7c2acc72013-04-08 12:11:27 +01001588# We prefer ucontext, but it's not always possible. The fallback
Daniel P. Berrange33c53c52017-04-28 13:24:44 +01001589# is sigcontext. On Windows the only valid backend is the Windows
1590# specific one.
Peter Maydell7c2acc72013-04-08 12:11:27 +01001591
1592ucontext_works=no
1593if test "$darwin" != "yes"; then
1594 cat > $TMPC << EOF
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301595#include <ucontext.h>
Peter Maydellcdf84802012-02-23 16:20:05 +00001596#ifdef __stub_makecontext
1597#error Ignoring glibc stub makecontext which will always fail
1598#endif
Stefan Weil75cafad2011-12-17 09:27:29 +01001599int main(void) { makecontext(0, 0, 0); return 0; }
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301600EOF
Peter Maydell7c2acc72013-04-08 12:11:27 +01001601 if compile_prog "" "" ; then
1602 ucontext_works=yes
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301603 fi
Peter Maydell7c2acc72013-04-08 12:11:27 +01001604fi
1605
1606if test "$coroutine" = ""; then
1607 if test "$mingw32" = "yes"; then
1608 coroutine=win32
1609 elif test "$ucontext_works" = "yes"; then
1610 coroutine=ucontext
1611 else
1612 coroutine=sigaltstack
1613 fi
Alex Barcelo519175a2012-02-28 12:25:50 +01001614else
Peter Maydell7c2acc72013-04-08 12:11:27 +01001615 case $coroutine in
1616 windows)
1617 if test "$mingw32" != "yes"; then
1618 error_exit "'windows' coroutine backend only valid for Windows"
1619 fi
1620 # Unfortunately the user visible backend name doesn't match the
1621 # coroutine-*.c filename for this case, so we have to adjust it here.
1622 coroutine=win32
1623 ;;
1624 ucontext)
1625 if test "$ucontext_works" != "yes"; then
Paolo Bonzini7cb58442022-08-19 18:40:46 +02001626 error_exit "'ucontext' backend requested but makecontext not available"
Peter Maydell7c2acc72013-04-08 12:11:27 +01001627 fi
1628 ;;
Daniel P. Berrange33c53c52017-04-28 13:24:44 +01001629 sigaltstack)
Peter Maydell7c2acc72013-04-08 12:11:27 +01001630 if test "$mingw32" = "yes"; then
1631 error_exit "only the 'windows' coroutine backend is valid for Windows"
1632 fi
1633 ;;
1634 *)
1635 error_exit "unknown coroutine backend $coroutine"
1636 ;;
1637 esac
Aneesh Kumar K.Vd0e2fce2011-06-09 23:11:06 +05301638fi
1639
Daniele Buono1e4f6062020-05-29 16:51:21 -04001640##################################################
1641# SafeStack
1642
1643
1644if test "$safe_stack" = "yes"; then
1645cat > $TMPC << EOF
Stefan Weil8a0afbb2022-11-02 21:22:58 +01001646int main(void)
Daniele Buono1e4f6062020-05-29 16:51:21 -04001647{
1648#if ! __has_feature(safe_stack)
1649#error SafeStack Disabled
1650#endif
1651 return 0;
1652}
1653EOF
1654 flag="-fsanitize=safe-stack"
1655 # Check that safe-stack is supported and enabled.
1656 if compile_prog "-Werror $flag" "$flag"; then
1657 # Flag needed both at compilation and at linking
1658 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
1659 QEMU_LDFLAGS="$QEMU_LDFLAGS $flag"
1660 else
1661 error_exit "SafeStack not supported by your compiler"
1662 fi
1663 if test "$coroutine" != "ucontext"; then
1664 error_exit "SafeStack is only supported by the coroutine backend ucontext"
1665 fi
1666else
1667cat > $TMPC << EOF
Stefan Weil8a0afbb2022-11-02 21:22:58 +01001668int main(void)
Daniele Buono1e4f6062020-05-29 16:51:21 -04001669{
1670#if defined(__has_feature)
1671#if __has_feature(safe_stack)
1672#error SafeStack Enabled
1673#endif
1674#endif
1675 return 0;
1676}
1677EOF
1678if test "$safe_stack" = "no"; then
1679 # Make sure that safe-stack is disabled
1680 if ! compile_prog "-Werror" ""; then
1681 # SafeStack was already enabled, try to explicitly remove the feature
1682 flag="-fno-sanitize=safe-stack"
1683 if ! compile_prog "-Werror $flag" "$flag"; then
1684 error_exit "Configure cannot disable SafeStack"
1685 fi
1686 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
1687 QEMU_LDFLAGS="$QEMU_LDFLAGS $flag"
1688 fi
1689else # "$safe_stack" = ""
1690 # Set safe_stack to yes or no based on pre-existing flags
1691 if compile_prog "-Werror" ""; then
1692 safe_stack="no"
1693 else
1694 safe_stack="yes"
1695 if test "$coroutine" != "ucontext"; then
1696 error_exit "SafeStack is only supported by the coroutine backend ucontext"
1697 fi
1698 fi
1699fi
1700fi
Peter Lieven7d992e42016-09-27 11:58:45 +02001701
Richard Henderson76a347e2012-12-28 14:17:02 -08001702########################################
John Snowfd0e6052015-03-25 18:57:39 -04001703# check if ccache is interfering with
1704# semantic analysis of macros
1705
John Snow5e4dfd32015-10-28 13:56:40 -04001706unset CCACHE_CPP2
John Snowfd0e6052015-03-25 18:57:39 -04001707ccache_cpp2=no
1708cat > $TMPC << EOF
1709static const int Z = 1;
1710#define fn() ({ Z; })
1711#define TAUT(X) ((X) == Z)
1712#define PAREN(X, Y) (X == Y)
1713#define ID(X) (X)
Stefan Weil8a0afbb2022-11-02 21:22:58 +01001714int main(void)
John Snowfd0e6052015-03-25 18:57:39 -04001715{
1716 int x = 0, y = 0;
1717 x = ID(x);
1718 x = fn();
1719 fn();
1720 if (PAREN(x, y)) return 0;
1721 if (TAUT(Z)) return 0;
1722 return 0;
1723}
1724EOF
1725
1726if ! compile_object "-Werror"; then
1727 ccache_cpp2=yes
1728fi
1729
John Snowb553a042015-11-03 15:43:42 -05001730#################################################
1731# clang does not support glibc + FORTIFY_SOURCE.
1732
1733if test "$fortify_source" != "no"; then
1734 if echo | $cc -dM -E - | grep __clang__ > /dev/null 2>&1 ; then
1735 fortify_source="no";
Peter Maydelle1890912017-06-26 16:25:24 +01001736 elif test -n "$cxx" && has $cxx &&
John Snowcfcc7c12015-11-12 11:29:49 -05001737 echo | $cxx -dM -E - | grep __clang__ >/dev/null 2>&1 ; then
John Snowb553a042015-11-03 15:43:42 -05001738 fortify_source="no";
1739 else
1740 fortify_source="yes"
1741 fi
1742fi
1743
Aneesh Kumar K.Vd2042372011-10-12 19:11:24 +05301744##########################################
Marc-André Lureau247724c2018-01-16 16:11:51 +01001745# checks for sanitizers
1746
Marc-André Lureau247724c2018-01-16 16:11:51 +01001747have_asan=no
1748have_ubsan=no
Marc-André Lureaud83414e2018-01-16 16:11:52 +01001749have_asan_iface_h=no
1750have_asan_iface_fiber=no
Marc-André Lureau247724c2018-01-16 16:11:51 +01001751
1752if test "$sanitizers" = "yes" ; then
Marc-André Lureaub9f44da2018-02-15 22:25:47 +01001753 write_c_skeleton
Marc-André Lureau247724c2018-01-16 16:11:51 +01001754 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" ""; then
1755 have_asan=yes
1756 fi
Marc-André Lureaub9f44da2018-02-15 22:25:47 +01001757
1758 # we could use a simple skeleton for flags checks, but this also
1759 # detect the static linking issue of ubsan, see also:
1760 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84285
1761 cat > $TMPC << EOF
Akihiko Odaki8041e9e2023-04-05 16:00:30 +09001762int main(int argc, char **argv)
1763{
1764 return argc + 1;
Marc-André Lureaub9f44da2018-02-15 22:25:47 +01001765}
1766EOF
Marc-André Lureau247724c2018-01-16 16:11:51 +01001767 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=undefined" ""; then
1768 have_ubsan=yes
1769 fi
Marc-André Lureaud83414e2018-01-16 16:11:52 +01001770
1771 if check_include "sanitizer/asan_interface.h" ; then
1772 have_asan_iface_h=yes
1773 fi
1774
1775 cat > $TMPC << EOF
1776#include <sanitizer/asan_interface.h>
1777int main(void) {
1778 __sanitizer_start_switch_fiber(0, 0, 0);
1779 return 0;
1780}
1781EOF
1782 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" "" ; then
1783 have_asan_iface_fiber=yes
1784 fi
Marc-André Lureau247724c2018-01-16 16:11:51 +01001785fi
1786
Lingfeng Yang0aebab02020-06-12 20:02:23 +01001787# Thread sanitizer is, for now, much noisier than the other sanitizers;
1788# keep it separate until that is not the case.
1789if test "$tsan" = "yes" && test "$sanitizers" = "yes"; then
1790 error_exit "TSAN is not supported with other sanitiziers."
1791fi
1792have_tsan=no
1793have_tsan_iface_fiber=no
1794if test "$tsan" = "yes" ; then
1795 write_c_skeleton
1796 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then
1797 have_tsan=yes
1798 fi
1799 cat > $TMPC << EOF
1800#include <sanitizer/tsan_interface.h>
1801int main(void) {
1802 __tsan_create_fiber(0);
1803 return 0;
1804}
1805EOF
1806 if compile_prog "$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then
1807 have_tsan_iface_fiber=yes
1808 fi
1809fi
1810
Alexander Bulekovadc28022020-02-19 23:11:14 -05001811##########################################
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001812# functions to probe cross compilers
1813
1814container="no"
Alex Bennée60f999b2023-02-28 19:06:46 +00001815runc=""
Stefan Weil47fdc8f2022-11-17 17:25:20 +00001816if test $use_containers = "yes" && (has "docker" || has "podman"); then
Paolo Bonzinic4575b52022-09-29 12:41:58 +01001817 case $($python "$source_path"/tests/docker/docker.py probe) in
1818 *docker) container=docker ;;
1819 podman) container=podman ;;
1820 no) container=no ;;
1821 esac
Paolo Bonzinia3e28f82022-09-29 12:41:59 +01001822 if test "$container" != "no"; then
1823 docker_py="$python $source_path/tests/docker/docker.py --engine $container"
Alex Bennée60f999b2023-02-28 19:06:46 +00001824 runc=$($python "$source_path"/tests/docker/docker.py probe)
Paolo Bonzinia3e28f82022-09-29 12:41:59 +01001825 fi
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001826fi
1827
1828# cross compilers defaults, can be overridden with --cross-cc-ARCH
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001829: ${cross_prefix_aarch64="aarch64-linux-gnu-"}
1830: ${cross_prefix_aarch64_be="$cross_prefix_aarch64"}
1831: ${cross_prefix_alpha="alpha-linux-gnu-"}
1832: ${cross_prefix_arm="arm-linux-gnueabihf-"}
1833: ${cross_prefix_armeb="$cross_prefix_arm"}
1834: ${cross_prefix_hexagon="hexagon-unknown-linux-musl-"}
Song Gao34bb43b2022-06-06 20:43:33 +08001835: ${cross_prefix_loongarch64="loongarch64-unknown-linux-gnu-"}
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001836: ${cross_prefix_hppa="hppa-linux-gnu-"}
1837: ${cross_prefix_i386="i686-linux-gnu-"}
1838: ${cross_prefix_m68k="m68k-linux-gnu-"}
1839: ${cross_prefix_microblaze="microblaze-linux-musl-"}
1840: ${cross_prefix_mips64el="mips64el-linux-gnuabi64-"}
1841: ${cross_prefix_mips64="mips64-linux-gnuabi64-"}
1842: ${cross_prefix_mipsel="mipsel-linux-gnu-"}
1843: ${cross_prefix_mips="mips-linux-gnu-"}
1844: ${cross_prefix_nios2="nios2-linux-gnu-"}
1845: ${cross_prefix_ppc="powerpc-linux-gnu-"}
1846: ${cross_prefix_ppc64="powerpc64-linux-gnu-"}
1847: ${cross_prefix_ppc64le="$cross_prefix_ppc64"}
1848: ${cross_prefix_riscv64="riscv64-linux-gnu-"}
1849: ${cross_prefix_s390x="s390x-linux-gnu-"}
1850: ${cross_prefix_sh4="sh4-linux-gnu-"}
1851: ${cross_prefix_sparc64="sparc64-linux-gnu-"}
1852: ${cross_prefix_sparc="$cross_prefix_sparc64"}
1853: ${cross_prefix_x86_64="x86_64-linux-gnu-"}
1854
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001855: ${cross_cc_aarch64_be="$cross_cc_aarch64"}
1856: ${cross_cc_cflags_aarch64_be="-mbig-endian"}
Paolo Bonzini46af66e2022-05-27 16:35:49 +01001857: ${cross_cc_armeb="$cross_cc_arm"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001858: ${cross_cc_cflags_armeb="-mbig-endian"}
1859: ${cross_cc_hexagon="hexagon-unknown-linux-musl-clang"}
1860: ${cross_cc_cflags_hexagon="-mv67 -O2 -static"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001861: ${cross_cc_cflags_i386="-m32"}
Paolo Bonzinid44f2f92022-06-15 11:42:01 +02001862: ${cross_cc_cflags_ppc="-m32 -mbig-endian"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001863: ${cross_cc_cflags_ppc64="-m64 -mbig-endian"}
1864: ${cross_cc_ppc64le="$cross_cc_ppc64"}
1865: ${cross_cc_cflags_ppc64le="-m64 -mlittle-endian"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001866: ${cross_cc_cflags_sparc64="-m64 -mcpu=ultrasparc"}
Paolo Bonzini46af66e2022-05-27 16:35:49 +01001867: ${cross_cc_sparc="$cross_cc_sparc64"}
1868: ${cross_cc_cflags_sparc="-m32 -mcpu=supersparc"}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001869: ${cross_cc_cflags_x86_64="-m64"}
1870
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001871compute_target_variable() {
Paolo Bonzini92e288f2022-06-22 10:42:58 +02001872 eval "$2="
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001873 if eval test -n "\"\${cross_prefix_$1}\""; then
1874 if eval has "\"\${cross_prefix_$1}\$3\""; then
1875 eval "$2=\"\${cross_prefix_$1}\$3\""
1876 fi
1877 fi
1878}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001879
Paolo Bonzini35fd22b2022-10-12 16:33:03 +02001880have_target() {
1881 for i; do
1882 case " $target_list " in
1883 *" $i "*) return 0;;
1884 *) ;;
1885 esac
1886 done
1887 return 1
1888}
1889
Paolo Bonzini52f08de2022-07-02 15:59:02 +02001890# probe_target_compiler TARGET
1891#
1892# Look for a compiler for the given target, either native or cross.
1893# Set variables target_* if a compiler is found, and container_cross_*
1894# if a Docker-based cross-compiler image is known for the target.
1895# Set got_cross_cc to yes/no depending on whether a non-container-based
1896# compiler was found.
1897#
1898# If TARGET is a user-mode emulation target, also set build_static to
1899# "y" if static linking is possible.
1900#
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001901probe_target_compiler() {
1902 # reset all output variables
Paolo Bonzini92e288f2022-06-22 10:42:58 +02001903 got_cross_cc=no
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001904 container_image=
1905 container_hosts=
1906 container_cross_cc=
Paolo Bonzini87eb0142022-05-27 16:35:52 +01001907 container_cross_ar=
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001908 container_cross_as=
1909 container_cross_ld=
Paolo Bonzini87eb0142022-05-27 16:35:52 +01001910 container_cross_nm=
1911 container_cross_objcopy=
1912 container_cross_ranlib=
1913 container_cross_strip=
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001914
Alex Bennéec3b570b2022-10-27 19:36:10 +01001915 # We shall skip configuring the target compiler if the user didn't
1916 # bother enabling an appropriate guest. This avoids building
1917 # extraneous firmware images and tests.
Mukilan Thiyagarajan73acb872022-12-21 09:04:06 +00001918 if test "${target_list#*$1}" = "$1"; then
Alex Bennéec3b570b2022-10-27 19:36:10 +01001919 return 1
1920 fi
1921
Paolo Bonzini52f08de2022-07-02 15:59:02 +02001922 target_arch=${1%%-*}
1923 case $target_arch in
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001924 aarch64) container_hosts="x86_64 aarch64" ;;
1925 alpha) container_hosts=x86_64 ;;
1926 arm) container_hosts="x86_64 aarch64" ;;
1927 cris) container_hosts=x86_64 ;;
1928 hexagon) container_hosts=x86_64 ;;
1929 hppa) container_hosts=x86_64 ;;
1930 i386) container_hosts=x86_64 ;;
Richard Hendersonb70ec502022-07-04 12:36:29 +05301931 loongarch64) container_hosts=x86_64 ;;
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001932 m68k) container_hosts=x86_64 ;;
1933 microblaze) container_hosts=x86_64 ;;
1934 mips64el) container_hosts=x86_64 ;;
1935 mips64) container_hosts=x86_64 ;;
1936 mipsel) container_hosts=x86_64 ;;
1937 mips) container_hosts=x86_64 ;;
1938 nios2) container_hosts=x86_64 ;;
1939 ppc) container_hosts=x86_64 ;;
1940 ppc64|ppc64le) container_hosts=x86_64 ;;
1941 riscv64) container_hosts=x86_64 ;;
1942 s390x) container_hosts=x86_64 ;;
1943 sh4) container_hosts=x86_64 ;;
1944 sparc64) container_hosts=x86_64 ;;
1945 tricore) container_hosts=x86_64 ;;
1946 x86_64) container_hosts="aarch64 ppc64el x86_64" ;;
1947 xtensa*) container_hosts=x86_64 ;;
1948 esac
1949
1950 for host in $container_hosts; do
1951 test "$container" != no || continue
1952 test "$host" = "$cpu" || continue
Paolo Bonzini52f08de2022-07-02 15:59:02 +02001953 case $target_arch in
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001954 aarch64)
1955 # We don't have any bigendian build tools so we only use this for AArch64
1956 container_image=debian-arm64-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001957 container_cross_prefix=aarch64-linux-gnu-
1958 container_cross_cc=${container_cross_prefix}gcc-10
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001959 ;;
1960 alpha)
1961 container_image=debian-alpha-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001962 container_cross_prefix=alpha-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001963 ;;
1964 arm)
1965 # We don't have any bigendian build tools so we only use this for ARM
1966 container_image=debian-armhf-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001967 container_cross_prefix=arm-linux-gnueabihf-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001968 ;;
1969 cris)
1970 container_image=fedora-cris-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001971 container_cross_prefix=cris-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001972 ;;
1973 hexagon)
1974 container_image=debian-hexagon-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001975 container_cross_prefix=hexagon-unknown-linux-musl-
1976 container_cross_cc=${container_cross_prefix}clang
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001977 ;;
1978 hppa)
1979 container_image=debian-hppa-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001980 container_cross_prefix=hppa-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001981 ;;
1982 i386)
1983 container_image=fedora-i386-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001984 container_cross_prefix=
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001985 ;;
Richard Hendersonb70ec502022-07-04 12:36:29 +05301986 loongarch64)
1987 container_image=debian-loongarch-cross
1988 container_cross_prefix=loongarch64-unknown-linux-gnu-
1989 ;;
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001990 m68k)
1991 container_image=debian-m68k-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001992 container_cross_prefix=m68k-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001993 ;;
1994 microblaze)
1995 container_image=debian-microblaze-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01001996 container_cross_prefix=microblaze-linux-musl-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01001997 ;;
1998 mips64el)
1999 container_image=debian-mips64el-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002000 container_cross_prefix=mips64el-linux-gnuabi64-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002001 ;;
2002 mips64)
2003 container_image=debian-mips64-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002004 container_cross_prefix=mips64-linux-gnuabi64-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002005 ;;
2006 mipsel)
2007 container_image=debian-mipsel-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002008 container_cross_prefix=mipsel-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002009 ;;
2010 mips)
2011 container_image=debian-mips-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002012 container_cross_prefix=mips-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002013 ;;
2014 nios2)
2015 container_image=debian-nios2-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002016 container_cross_prefix=nios2-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002017 ;;
2018 ppc)
2019 container_image=debian-powerpc-test-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002020 container_cross_prefix=powerpc-linux-gnu-
2021 container_cross_cc=${container_cross_prefix}gcc-10
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002022 ;;
2023 ppc64|ppc64le)
2024 container_image=debian-powerpc-test-cross
Richard Henderson705c8812022-07-28 11:39:01 -07002025 container_cross_prefix=powerpc${target_arch#ppc}-linux-gnu-
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002026 container_cross_cc=${container_cross_prefix}gcc-10
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002027 ;;
2028 riscv64)
2029 container_image=debian-riscv64-test-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002030 container_cross_prefix=riscv64-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002031 ;;
2032 s390x)
2033 container_image=debian-s390x-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002034 container_cross_prefix=s390x-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002035 ;;
2036 sh4)
2037 container_image=debian-sh4-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002038 container_cross_prefix=sh4-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002039 ;;
2040 sparc64)
2041 container_image=debian-sparc64-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002042 container_cross_prefix=sparc64-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002043 ;;
2044 tricore)
2045 container_image=debian-tricore-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002046 container_cross_prefix=tricore-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002047 container_cross_as=tricore-as
2048 container_cross_ld=tricore-ld
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002049 break
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002050 ;;
2051 x86_64)
2052 container_image=debian-amd64-cross
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002053 container_cross_prefix=x86_64-linux-gnu-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002054 ;;
2055 xtensa*)
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002056 container_hosts=x86_64
2057 container_image=debian-xtensa-cross
2058
2059 # default to the dc232b cpu
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002060 container_cross_prefix=/opt/2020.07/xtensa-dc232b-elf/bin/xtensa-dc232b-elf-
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002061 ;;
2062 esac
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002063 : ${container_cross_cc:=${container_cross_prefix}gcc}
Paolo Bonzini87eb0142022-05-27 16:35:52 +01002064 : ${container_cross_ar:=${container_cross_prefix}ar}
Paolo Bonzini5adb43b2022-05-27 16:35:51 +01002065 : ${container_cross_as:=${container_cross_prefix}as}
2066 : ${container_cross_ld:=${container_cross_prefix}ld}
Paolo Bonzini87eb0142022-05-27 16:35:52 +01002067 : ${container_cross_nm:=${container_cross_prefix}nm}
2068 : ${container_cross_objcopy:=${container_cross_prefix}objcopy}
2069 : ${container_cross_ranlib:=${container_cross_prefix}ranlib}
2070 : ${container_cross_strip:=${container_cross_prefix}strip}
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002071 done
2072
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002073 try=cross
Paolo Bonzini52f08de2022-07-02 15:59:02 +02002074 case "$target_arch:$cpu" in
Paolo Bonzini26e72532022-06-06 10:47:45 +02002075 aarch64_be:aarch64 | \
2076 armeb:arm | \
Paolo Bonzini640aabc2022-06-15 11:42:01 +02002077 i386:x86_64 | \
Paolo Bonzini26e72532022-06-06 10:47:45 +02002078 mips*:mips64 | \
Paolo Bonzinid44f2f92022-06-15 11:42:01 +02002079 ppc*:ppc64 | \
Paolo Bonzini26e72532022-06-06 10:47:45 +02002080 sparc:sparc64 | \
Paolo Bonzini640aabc2022-06-15 11:42:01 +02002081 "$cpu:$cpu")
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002082 try='native cross' ;;
Paolo Bonzini640aabc2022-06-15 11:42:01 +02002083 esac
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002084 eval "target_cflags=\${cross_cc_cflags_$target_arch}"
Peter Maydellb3b54722022-08-25 16:07:03 +01002085 for thistry in $try; do
2086 case $thistry in
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002087 native)
2088 target_cc=$cc
2089 target_ccas=$ccas
2090 target_ar=$ar
2091 target_as=$as
2092 target_ld=$ld
2093 target_nm=$nm
2094 target_objcopy=$objcopy
2095 target_ranlib=$ranlib
2096 target_strip=$strip
2097 ;;
2098 cross)
2099 target_cc=
2100 if eval test -n "\"\${cross_cc_$target_arch}\""; then
2101 if eval has "\"\${cross_cc_$target_arch}\""; then
2102 eval "target_cc=\"\${cross_cc_$target_arch}\""
2103 fi
2104 else
2105 compute_target_variable $target_arch target_cc gcc
2106 fi
2107 target_ccas=$target_cc
2108 compute_target_variable $target_arch target_ar ar
2109 compute_target_variable $target_arch target_as as
2110 compute_target_variable $target_arch target_ld ld
2111 compute_target_variable $target_arch target_nm nm
2112 compute_target_variable $target_arch target_objcopy objcopy
2113 compute_target_variable $target_arch target_ranlib ranlib
2114 compute_target_variable $target_arch target_strip strip
2115 ;;
2116 esac
2117
2118 if test -n "$target_cc"; then
2119 case $target_arch in
2120 i386|x86_64)
2121 if $target_cc --version | grep -qi "clang"; then
2122 continue
2123 fi
2124 ;;
2125 esac
2126 elif test -n "$target_as" && test -n "$target_ld"; then
2127 # Special handling for assembler only targets
2128 case $target in
2129 tricore-softmmu)
2130 build_static=
2131 got_cross_cc=yes
2132 break
2133 ;;
2134 *)
2135 continue
2136 ;;
2137 esac
2138 else
2139 continue
2140 fi
2141
2142 write_c_skeleton
2143 case $1 in
2144 *-softmmu)
2145 if do_compiler "$target_cc" $target_cflags -o $TMPO -c $TMPC &&
2146 do_compiler "$target_cc" $target_cflags -r -nostdlib -o "${TMPDIR1}/${TMPB}2.o" "$TMPO" -lgcc; then
2147 got_cross_cc=yes
2148 break
2149 fi
2150 ;;
2151 *)
2152 if do_compiler "$target_cc" $target_cflags -o $TMPE $TMPC -static ; then
2153 build_static=y
2154 got_cross_cc=yes
2155 break
2156 fi
2157 if do_compiler "$target_cc" $target_cflags -o $TMPE $TMPC ; then
2158 build_static=
2159 got_cross_cc=yes
2160 break
Paolo Bonzini2ad60f62022-05-27 16:35:50 +01002161 fi
2162 ;;
2163 esac
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002164 done
2165 if test $got_cross_cc != yes; then
2166 build_static=
2167 target_cc=
2168 target_ccas=
Paolo Bonzini92e288f2022-06-22 10:42:58 +02002169 target_ar=
2170 target_as=
2171 target_ld=
2172 target_nm=
2173 target_objcopy=
2174 target_ranlib=
2175 target_strip=
Paolo Bonzini2ad60f62022-05-27 16:35:50 +01002176 fi
Alex Bennéefde10962022-10-11 12:34:16 +01002177 test -n "$target_cc"
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002178}
2179
2180write_target_makefile() {
Paolo Bonzinie81785a2022-06-15 11:45:55 +02002181 echo "EXTRA_CFLAGS=$target_cflags"
Paolo Bonzini0825cae2022-09-29 12:42:06 +01002182 if test -z "$target_cc" && test -z "$target_as"; then
2183 test -z "$container_image" && error_exit "Internal error: could not find cross compiler for $1?"
2184 echo "$1: docker-image-$container_image" >> Makefile.prereqs
2185 if test -n "$container_cross_cc"; then
2186 echo "CC=$docker_py cc --cc $container_cross_cc -i qemu/$container_image -s $source_path --"
2187 echo "CCAS=$docker_py cc --cc $container_cross_cc -i qemu/$container_image -s $source_path --"
2188 fi
2189 echo "AR=$docker_py cc --cc $container_cross_ar -i qemu/$container_image -s $source_path --"
2190 echo "AS=$docker_py cc --cc $container_cross_as -i qemu/$container_image -s $source_path --"
2191 echo "LD=$docker_py cc --cc $container_cross_ld -i qemu/$container_image -s $source_path --"
2192 echo "NM=$docker_py cc --cc $container_cross_nm -i qemu/$container_image -s $source_path --"
2193 echo "OBJCOPY=$docker_py cc --cc $container_cross_objcopy -i qemu/$container_image -s $source_path --"
2194 echo "RANLIB=$docker_py cc --cc $container_cross_ranlib -i qemu/$container_image -s $source_path --"
2195 echo "STRIP=$docker_py cc --cc $container_cross_strip -i qemu/$container_image -s $source_path --"
2196 else
2197 if test -n "$target_cc"; then
2198 echo "CC=$target_cc"
2199 echo "CCAS=$target_ccas"
2200 fi
2201 if test -n "$target_ar"; then
2202 echo "AR=$target_ar"
2203 fi
2204 if test -n "$target_as"; then
2205 echo "AS=$target_as"
2206 fi
2207 if test -n "$target_ld"; then
2208 echo "LD=$target_ld"
2209 fi
2210 if test -n "$target_nm"; then
2211 echo "NM=$target_nm"
2212 fi
2213 if test -n "$target_objcopy"; then
2214 echo "OBJCOPY=$target_objcopy"
2215 fi
2216 if test -n "$target_ranlib"; then
2217 echo "RANLIB=$target_ranlib"
2218 fi
2219 if test -n "$target_strip"; then
2220 echo "STRIP=$target_strip"
2221 fi
Paolo Bonzini87eb0142022-05-27 16:35:52 +01002222 fi
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002223}
2224
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002225##########################################
Jagannathan Raman55116962022-06-13 16:26:24 -04002226# check for vfio_user_server
2227
2228case "$vfio_user_server" in
2229 enabled )
2230 if test "$git_submodules_action" != "ignore"; then
2231 git_submodules="${git_submodules} subprojects/libvfio-user"
2232 fi
2233 ;;
2234esac
2235
2236##########################################
Juan Quintelae86ecd42009-08-03 14:45:59 +02002237# End of CC checks
2238# After here, no more $cc or $ld runs
2239
Marc-André Lureaud83414e2018-01-16 16:11:52 +01002240write_c_skeleton
2241
Paolo Bonzinidf42fa72022-04-20 17:33:38 +02002242if test "$fortify_source" = "yes" ; then
Paolo Bonzini086d5f72020-02-03 15:22:17 +01002243 QEMU_CFLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
Paolo Bonzini086d5f72020-02-03 15:22:17 +01002244fi
Paolo Bonzini086d5f72020-02-03 15:22:17 +01002245
Marc-André Lureau247724c2018-01-16 16:11:51 +01002246if test "$have_asan" = "yes"; then
Paolo Bonzinidb5adea2019-12-11 15:34:27 +01002247 QEMU_CFLAGS="-fsanitize=address $QEMU_CFLAGS"
2248 QEMU_LDFLAGS="-fsanitize=address $QEMU_LDFLAGS"
Marc-André Lureaud83414e2018-01-16 16:11:52 +01002249 if test "$have_asan_iface_h" = "no" ; then
2250 echo "ASAN build enabled, but ASAN header missing." \
2251 "Without code annotation, the report may be inferior."
2252 elif test "$have_asan_iface_fiber" = "no" ; then
2253 echo "ASAN build enabled, but ASAN header is too old." \
2254 "Without code annotation, the report may be inferior."
2255 fi
Marc-André Lureau247724c2018-01-16 16:11:51 +01002256fi
Lingfeng Yang0aebab02020-06-12 20:02:23 +01002257if test "$have_tsan" = "yes" ; then
2258 if test "$have_tsan_iface_fiber" = "yes" ; then
2259 QEMU_CFLAGS="-fsanitize=thread $QEMU_CFLAGS"
2260 QEMU_LDFLAGS="-fsanitize=thread $QEMU_LDFLAGS"
2261 else
2262 error_exit "Cannot enable TSAN due to missing fiber annotation interface."
2263 fi
2264elif test "$tsan" = "yes" ; then
2265 error_exit "Cannot enable TSAN due to missing sanitize thread interface."
2266fi
Marc-André Lureau247724c2018-01-16 16:11:51 +01002267if test "$have_ubsan" = "yes"; then
Paolo Bonzinidb5adea2019-12-11 15:34:27 +01002268 QEMU_CFLAGS="-fsanitize=undefined $QEMU_CFLAGS"
2269 QEMU_LDFLAGS="-fsanitize=undefined $QEMU_LDFLAGS"
Marc-André Lureau247724c2018-01-16 16:11:51 +01002270fi
2271
Paolo Bonzini33ab4782022-05-27 16:35:55 +01002272#######################################
2273# cross-compiled firmware targets
2274
Paolo Bonziniad388842022-05-27 16:35:53 +01002275# Set up build tree symlinks that point back into the source tree
2276# (these can be both files and directories).
2277# Caution: avoid adding files or directories here using wildcards. This
2278# will result in problems later if a new file matching the wildcard is
2279# added to the source tree -- nothing will cause configure to be rerun
2280# so the build tree will be missing the link back to the new file, and
2281# tests might fail. Prefer to keep the relevant files in their own
2282# directory and symlink the directory instead.
2283LINKS="Makefile"
Thomas Huth201aa172023-02-28 22:15:29 +01002284LINKS="$LINKS docs/config"
Paolo Bonziniad388842022-05-27 16:35:53 +01002285LINKS="$LINKS pc-bios/optionrom/Makefile"
2286LINKS="$LINKS pc-bios/s390-ccw/Makefile"
Paolo Bonzinid6959182022-05-27 16:35:56 +01002287LINKS="$LINKS pc-bios/vof/Makefile"
Paolo Bonziniad388842022-05-27 16:35:53 +01002288LINKS="$LINKS .gdbinit scripts" # scripts needed by relative path in .gdbinit
2289LINKS="$LINKS tests/avocado tests/data"
2290LINKS="$LINKS tests/qemu-iotests/check"
2291LINKS="$LINKS python"
2292LINKS="$LINKS contrib/plugins/Makefile "
2293for f in $LINKS ; do
2294 if [ -e "$source_path/$f" ]; then
Peter Maydellcc3c71e2022-08-25 16:07:01 +01002295 mkdir -p "$(dirname ./"$f")"
Paolo Bonziniad388842022-05-27 16:35:53 +01002296 symlink "$source_path/$f" "$f"
2297 fi
2298done
2299
Paolo Bonzinib898bf22022-09-29 12:42:05 +01002300echo "# Automatically generated by configure - do not modify" > Makefile.prereqs
2301
Paolo Bonzinica35f782010-05-26 16:08:29 +02002302# Mac OS X ships with a broken assembler
2303roms=
Paolo Bonzini35fd22b2022-10-12 16:33:03 +02002304if have_target i386-softmmu x86_64-softmmu && \
2305 test "$targetos" != "darwin" && test "$targetos" != "sunos" && \
2306 test "$targetos" != "haiku" && \
Paolo Bonzini61cbb352022-09-29 12:41:57 +01002307 probe_target_compiler i386-softmmu; then
Paolo Bonzini70899772022-06-06 11:35:41 +02002308 roms="pc-bios/optionrom"
2309 config_mak=pc-bios/optionrom/config.mak
2310 echo "# Automatically generated by configure - do not modify" > $config_mak
2311 echo "TOPSRC_DIR=$source_path" >> $config_mak
Alex Bennéefde10962022-10-11 12:34:16 +01002312 write_target_makefile >> $config_mak
Paolo Bonzinica35f782010-05-26 16:08:29 +02002313fi
Paolo Bonzinica35f782010-05-26 16:08:29 +02002314
Paolo Bonzini35fd22b2022-10-12 16:33:03 +02002315if have_target ppc-softmmu ppc64-softmmu && \
2316 probe_target_compiler ppc-softmmu; then
Paolo Bonzini76ca98b2022-04-13 15:22:01 +02002317 roms="$roms pc-bios/vof"
Paolo Bonzinid6959182022-05-27 16:35:56 +01002318 config_mak=pc-bios/vof/config.mak
2319 echo "# Automatically generated by configure - do not modify" > $config_mak
2320 echo "SRC_DIR=$source_path/pc-bios/vof" >> $config_mak
Alex Bennéefde10962022-10-11 12:34:16 +01002321 write_target_makefile >> $config_mak
Paolo Bonzinid6959182022-05-27 16:35:56 +01002322fi
2323
Paolo Bonzini9ffed422022-05-27 16:35:54 +01002324# Only build s390-ccw bios if the compiler has -march=z900 or -march=z10
2325# (which is the lowest architecture level that Clang supports)
Paolo Bonzini35fd22b2022-10-12 16:33:03 +02002326if have_target s390x-softmmu && probe_target_compiler s390x-softmmu; then
Alex Bennéefde10962022-10-11 12:34:16 +01002327 write_c_skeleton
2328 do_compiler "$target_cc" $target_cc_cflags -march=z900 -o $TMPO -c $TMPC
2329 has_z900=$?
2330 if [ $has_z900 = 0 ] || do_compiler "$target_cc" $target_cc_cflags -march=z10 -msoft-float -Werror -o $TMPO -c $TMPC; then
2331 if [ $has_z900 != 0 ]; then
2332 echo "WARNING: Your compiler does not support the z900!"
2333 echo " The s390-ccw bios will only work with guest CPUs >= z10."
Thomas Hutha5b2afd2021-05-02 13:22:21 +02002334 fi
Paolo Bonzini76ca98b2022-04-13 15:22:01 +02002335 roms="$roms pc-bios/s390-ccw"
Paolo Bonzini9ffed422022-05-27 16:35:54 +01002336 config_mak=pc-bios/s390-ccw/config-host.mak
2337 echo "# Automatically generated by configure - do not modify" > $config_mak
2338 echo "SRC_PATH=$source_path/pc-bios/s390-ccw" >> $config_mak
Alex Bennéefde10962022-10-11 12:34:16 +01002339 write_target_makefile >> $config_mak
Philippe Mathieu-Daudé1ef6bfc2020-06-15 09:49:19 +02002340 # SLOF is required for building the s390-ccw firmware on s390x,
2341 # since it is using the libnet code from SLOF for network booting.
Paolo Bonzini2d652f22021-05-12 09:21:56 +02002342 git_submodules="${git_submodules} roms/SLOF"
Thomas Huth2e33c3f2019-01-14 13:52:26 +01002343 fi
Christian Borntraeger9933c302013-04-23 01:23:03 +00002344fi
2345
Paolo Bonzini9ffed422022-05-27 16:35:54 +01002346#######################################
2347# generate config-host.mak
2348
Peter Maydell35a7a6f2022-07-20 16:26:27 +01002349if ! (GIT="$git" "$source_path/scripts/git-submodule.sh" "$git_submodules_action" "$git_submodules"); then
Dan Streetman7d7dbf92021-01-19 12:20:46 -05002350 exit 1
Yonggang Luo5d91a2e2020-09-03 01:00:49 +08002351fi
Yonggang Luo5d91a2e2020-09-03 01:00:49 +08002352
Juan Quintela98ec69a2009-07-16 18:34:18 +02002353config_host_mak="config-host.mak"
bellard97a847b2003-08-10 21:36:04 +00002354
Juan Quintela98ec69a2009-07-16 18:34:18 +02002355echo "# Automatically generated by configure - do not modify" > $config_host_mak
Juan Quintela98ec69a2009-07-16 18:34:18 +02002356echo >> $config_host_mak
Juan Quintela98ec69a2009-07-16 18:34:18 +02002357
Paolo Bonzinie6c3b0f2010-10-21 10:18:35 +02002358echo all: >> $config_host_mak
Daniel P. Berrangecc84d632017-10-20 15:02:43 +01002359echo "GIT=$git" >> $config_host_mak
Daniel P. Berrangeaef45d52017-09-29 11:11:56 +01002360echo "GIT_SUBMODULES=$git_submodules" >> $config_host_mak
Dan Streetman7d7dbf92021-01-19 12:20:46 -05002361echo "GIT_SUBMODULES_ACTION=$git_submodules_action" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002362
aurel32f8393942009-04-13 18:45:38 +00002363if test "$debug_tcg" = "yes" ; then
Juan Quintela2358a492009-07-27 16:13:25 +02002364 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
aurel32f8393942009-04-13 18:45:38 +00002365fi
bellard67b915a2004-03-31 23:37:16 +00002366if test "$mingw32" = "yes" ; then
Juan Quintela98ec69a2009-07-16 18:34:18 +02002367 echo "CONFIG_WIN32=y" >> $config_host_mak
Paolo Bonzini954ed682022-10-12 11:35:17 +02002368 echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER-QEMU}" >> $config_host_mak
2369 echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO-Linux}" >> $config_host_mak
2370 echo "QEMU_GA_VERSION=${QEMU_GA_VERSION-$(cat "$source_path"/VERSION)}" >> $config_host_mak
pbrook210fa552007-02-27 21:04:49 +00002371else
Juan Quintela35f4df22009-07-27 16:13:07 +02002372 echo "CONFIG_POSIX=y" >> $config_host_mak
bellard67b915a2004-03-31 23:37:16 +00002373fi
blueswir1128ab2f2008-08-15 18:33:42 +00002374
Mark McLoughlindffcb712009-10-22 17:49:11 +01002375if test "$linux" = "yes" ; then
2376 echo "CONFIG_LINUX=y" >> $config_host_mak
2377fi
2378
bellard83fb7ad2004-07-05 21:25:26 +00002379if test "$darwin" = "yes" ; then
Juan Quintela98ec69a2009-07-16 18:34:18 +02002380 echo "CONFIG_DARWIN=y" >> $config_host_mak
bellard83fb7ad2004-07-05 21:25:26 +00002381fi
malcb29fe3e2008-11-18 01:42:22 +00002382
bellardec530c82006-04-25 22:36:06 +00002383if test "$solaris" = "yes" ; then
Juan Quintela98ec69a2009-07-16 18:34:18 +02002384 echo "CONFIG_SOLARIS=y" >> $config_host_mak
bellardec530c82006-04-25 22:36:06 +00002385fi
bellard97a847b2003-08-10 21:36:04 +00002386if test "$static" = "yes" ; then
Juan Quintela98ec69a2009-07-16 18:34:18 +02002387 echo "CONFIG_STATIC=y" >> $config_host_mak
bellard97a847b2003-08-10 21:36:04 +00002388fi
Juan Quintela98ec69a2009-07-16 18:34:18 +02002389echo "SRC_PATH=$source_path" >> $config_host_mak
Alex Bennée2b1f35b2018-07-04 07:30:11 +01002390echo "TARGET_DIRS=$target_list" >> $config_host_mak
Fam Zheng17969262014-02-10 14:48:56 +08002391if test "$modules" = "yes"; then
2392 echo "CONFIG_MODULES=y" >> $config_host_mak
2393fi
Jan Vesely277abf12016-04-29 13:15:23 -04002394
bellard83fb7ad2004-07-05 21:25:26 +00002395# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +00002396if [ "$bsd" = "yes" ] ; then
Juan Quintela2358a492009-07-27 16:13:25 +02002397 echo "CONFIG_BSD=y" >> $config_host_mak
bellard7d3505c2004-05-12 19:32:15 +00002398fi
2399
Peter Maydell7c2acc72013-04-08 12:11:27 +01002400echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak
Peter Lieven7d992e42016-09-27 11:58:45 +02002401
Marc-André Lureaud83414e2018-01-16 16:11:52 +01002402if test "$have_asan_iface_fiber" = "yes" ; then
2403 echo "CONFIG_ASAN_IFACE_FIBER=y" >> $config_host_mak
2404fi
2405
Lingfeng Yang0aebab02020-06-12 20:02:23 +01002406if test "$have_tsan" = "yes" && test "$have_tsan_iface_fiber" = "yes" ; then
2407 echo "CONFIG_TSAN=y" >> $config_host_mak
2408fi
2409
Alex Bennée40e8c6f2019-06-13 14:52:25 +01002410if test "$plugins" = "yes" ; then
2411 echo "CONFIG_PLUGIN=y" >> $config_host_mak
Alex Bennée40e8c6f2019-06-13 14:52:25 +01002412fi
2413
Alex Bennéeb1863cc2021-01-08 22:42:39 +00002414if test -n "$gdb_bin"; then
2415 gdb_version=$($gdb_bin --version | head -n 1)
Alex Bennéed6a66c82021-02-02 13:39:53 +00002416 if version_ge ${gdb_version##* } 9.1; then
Alex Bennéeb1863cc2021-01-08 22:42:39 +00002417 echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
Alex Bennéebcbc36a2023-03-02 18:57:59 -08002418 gdb_arches=$("$source_path/scripts/probe-gdb-support.py" $gdb_bin)
Alex Bennée48543dd2022-09-29 12:41:45 +01002419 else
2420 gdb_bin=""
Alex Bennéeb1863cc2021-01-08 22:42:39 +00002421 fi
Alex Bennéef48e5902020-03-16 17:21:48 +00002422fi
2423
Paolo Bonzinic4575b52022-09-29 12:41:58 +01002424if test "$container" != no; then
2425 echo "ENGINE=$container" >> $config_host_mak
Alex Bennée60f999b2023-02-28 19:06:46 +00002426 echo "RUNC=$runc" >> $config_host_mak
Paolo Bonzinic4575b52022-09-29 12:41:58 +01002427fi
Juan Quintela98ec69a2009-07-16 18:34:18 +02002428echo "ROMS=$roms" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002429echo "MAKE=$make" >> $config_host_mak
Blue Swirlc886edf2011-07-22 21:08:09 +00002430echo "PYTHON=$python" >> $config_host_mak
Alex Bennée39d87c82020-03-03 15:06:20 +00002431echo "GENISOIMAGE=$genisoimage" >> $config_host_mak
Paolo Bonzinia5665052019-06-10 12:05:14 +02002432echo "MESON=$meson" >> $config_host_mak
Paolo Bonzini09e93322020-08-13 09:28:11 -04002433echo "NINJA=$ninja" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002434echo "CC=$cc" >> $config_host_mak
Juan Quintelaa558ee12009-08-03 14:46:21 +02002435echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
Philippe Mathieu-Daudé4cb37d12022-02-15 16:15:13 +01002436echo "QEMU_OBJCFLAGS=$QEMU_OBJCFLAGS" >> $config_host_mak
Paolo Bonzinia81df1b2020-08-19 08:44:56 -04002437echo "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak
2438echo "GLIB_LIBS=$glib_libs" >> $config_host_mak
Marc-André Lureau5b9e7d02022-05-25 16:41:39 +02002439echo "GLIB_BINDIR=$glib_bindir" >> $config_host_mak
Paolo Bonziniacedc9a2023-01-07 14:32:41 +01002440echo "GLIB_VERSION=$($pkg_config --modversion glib-2.0)" >> $config_host_mak
Emilio Cotae3feb2c2023-02-05 11:37:57 -05002441if test "$glib_has_gslice" = "yes" ; then
2442 echo "HAVE_GLIB_WITH_SLICE_ALLOCATOR=y" >> $config_host_mak
2443fi
Philippe Mathieu-Daudé8a99e9a2018-04-15 20:05:19 -03002444echo "QEMU_LDFLAGS=$QEMU_LDFLAGS" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002445echo "EXESUF=$EXESUF" >> $config_host_mak
Juan Quintela804edf22009-07-27 16:12:49 +02002446
Peter Maydell6efd7512011-11-30 11:59:04 +00002447# use included Linux headers
2448if test "$linux" = "yes" ; then
Andreas Färbera307beb2012-06-14 15:14:33 +00002449 mkdir -p linux-headers
Peter Maydell6efd7512011-11-30 11:59:04 +00002450 case "$cpu" in
Paolo Bonzini4da270b2021-11-09 09:36:10 +01002451 i386|x86_64)
Peter Maydell08312a62012-08-03 13:51:25 +01002452 linux_arch=x86
Peter Maydell6efd7512011-11-30 11:59:04 +00002453 ;;
Paolo Bonzinid8ff8922021-11-09 09:18:20 +01002454 ppc|ppc64)
Peter Maydell08312a62012-08-03 13:51:25 +01002455 linux_arch=powerpc
Peter Maydell6efd7512011-11-30 11:59:04 +00002456 ;;
2457 s390x)
Peter Maydell08312a62012-08-03 13:51:25 +01002458 linux_arch=s390
2459 ;;
Claudio Fontana1f080312013-06-12 16:20:23 +01002460 aarch64)
2461 linux_arch=arm64
2462 ;;
WANG Xueruidfcf9002021-12-21 13:41:04 +08002463 loongarch*)
2464 linux_arch=loongarch
2465 ;;
Sanjay Lal222e7d12014-06-17 23:10:36 +01002466 mips64)
2467 linux_arch=mips
2468 ;;
Peter Maydell08312a62012-08-03 13:51:25 +01002469 *)
2470 # For most CPUs the kernel architecture name and QEMU CPU name match.
2471 linux_arch="$cpu"
Peter Maydell6efd7512011-11-30 11:59:04 +00002472 ;;
2473 esac
Peter Maydell08312a62012-08-03 13:51:25 +01002474 # For non-KVM architectures we will not have asm headers
2475 if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then
2476 symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm
2477 fi
Peter Maydell6efd7512011-11-30 11:59:04 +00002478fi
2479
bellard1d14ffa2005-10-30 18:58:22 +00002480for target in $target_list; do
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04002481 target_dir="$target"
Philippe Mathieu-Daudé57a93f12021-11-09 15:45:04 +01002482 target_name=$(echo $target | cut -d '-' -f 1)$EXESUF
Peter Maydell64708612022-08-25 16:06:59 +01002483 mkdir -p "$target_dir"
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04002484 case $target in
2485 *-user) symlink "../qemu-$target_name" "$target_dir/qemu-$target_name" ;;
2486 *) symlink "../qemu-system-$target_name" "$target_dir/qemu-system-$target_name" ;;
2487 esac
2488done
bellard7d132992003-03-06 23:23:54 +00002489
Paolo Bonzinifdb75ae2020-09-21 04:37:49 -04002490if test "$default_targets" = "yes"; then
2491 echo "CONFIG_DEFAULT_TARGETS=y" >> $config_host_mak
2492fi
Peter Crosthwaitea540f152013-04-18 14:47:31 +10002493
John Snowfd0e6052015-03-25 18:57:39 -04002494if test "$ccache_cpp2" = "yes"; then
2495 echo "export CCACHE_CPP2=y" >> $config_host_mak
2496fi
2497
Daniele Buono1e4f6062020-05-29 16:51:21 -04002498if test "$safe_stack" = "yes"; then
2499 echo "CONFIG_SAFESTACK=y" >> $config_host_mak
2500fi
2501
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002502# tests/tcg configuration
Paolo Bonzinib898bf22022-09-29 12:42:05 +01002503(config_host_mak=tests/tcg/config-host.mak
Paolo Bonzinid6743422022-09-29 12:42:00 +01002504mkdir -p tests/tcg
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002505echo "# Automatically generated by configure - do not modify" > $config_host_mak
2506echo "SRC_PATH=$source_path" >> $config_host_mak
2507echo "HOST_CC=$host_cc" >> $config_host_mak
2508
Alex Bennée48543dd2022-09-29 12:41:45 +01002509# versioned checked in the main config_host.mak above
2510if test -n "$gdb_bin"; then
2511 echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
2512fi
Paolo Bonzinid1d94d92022-10-27 19:36:32 +01002513if test "$plugins" = "yes" ; then
2514 echo "CONFIG_PLUGIN=y" >> $config_host_mak
2515fi
Alex Bennée48543dd2022-09-29 12:41:45 +01002516
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002517tcg_tests_targets=
2518for target in $target_list; do
2519 arch=${target%%-*}
2520
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002521 case $target in
Paolo Bonzinic48a5c42022-06-13 18:12:56 +01002522 xtensa*-linux-user)
2523 # the toolchain is not complete with headers, only build softmmu tests
2524 continue
2525 ;;
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002526 *-softmmu)
Peter Maydell64708612022-08-25 16:06:59 +01002527 test -f "$source_path/tests/tcg/$arch/Makefile.softmmu-target" || continue
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002528 qemu="qemu-system-$arch"
2529 ;;
2530 *-linux-user|*-bsd-user)
2531 qemu="qemu-$arch"
2532 ;;
2533 esac
2534
Alex Bennéefde10962022-10-11 12:34:16 +01002535 if probe_target_compiler $target || test -n "$container_image"; then
Paolo Bonzini0825cae2022-09-29 12:42:06 +01002536 test -n "$container_image" && build_static=y
Paolo Bonzinid6743422022-09-29 12:42:00 +01002537 mkdir -p "tests/tcg/$target"
Paolo Bonzinic7022a72022-09-29 12:42:07 +01002538 config_target_mak=tests/tcg/$target/config-target.mak
Paolo Bonzinid6743422022-09-29 12:42:00 +01002539 ln -sf "$source_path/tests/tcg/Makefile.target" "tests/tcg/$target/Makefile"
Paolo Bonzinic7022a72022-09-29 12:42:07 +01002540 echo "# Automatically generated by configure - do not modify" > "$config_target_mak"
2541 echo "TARGET_NAME=$arch" >> "$config_target_mak"
Paolo Bonzinia3e28f82022-09-29 12:41:59 +01002542 echo "TARGET=$target" >> "$config_target_mak"
Paolo Bonzinic7022a72022-09-29 12:42:07 +01002543 write_target_makefile "build-tcg-tests-$target" >> "$config_target_mak"
Paolo Bonzini15b273f2022-09-29 12:42:04 +01002544 echo "BUILD_STATIC=$build_static" >> "$config_target_mak"
Paolo Bonzinic7022a72022-09-29 12:42:07 +01002545 echo "QEMU=$PWD/$qemu" >> "$config_target_mak"
Alex Bennéebcbc36a2023-03-02 18:57:59 -08002546
2547 # will GDB work with these binaries?
2548 if test "${gdb_arches#*$arch}" != "$gdb_arches"; then
2549 echo "HOST_GDB_SUPPORTS_ARCH=y" >> "$config_target_mak"
2550 fi
2551
Paolo Bonzinib898bf22022-09-29 12:42:05 +01002552 echo "run-tcg-tests-$target: $qemu\$(EXESUF)" >> Makefile.prereqs
Paolo Bonzinicd362de2022-05-27 16:35:48 +01002553 tcg_tests_targets="$tcg_tests_targets $target"
2554 fi
Paolo Bonzini2038f8c2019-08-07 16:35:23 +02002555done
Fabiano Rosasc0031d32023-01-20 15:48:22 -03002556
2557if test "$tcg" = "enabled"; then
2558 echo "TCG_TESTS_TARGETS=$tcg_tests_targets" >> config-host.mak
2559fi
2560)
Paolo Bonzini2038f8c2019-08-07 16:35:23 +02002561
Paolo Bonzinia5665052019-06-10 12:05:14 +02002562if test "$skip_meson" = no; then
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002563 cross="config-meson.cross.new"
2564 meson_quote() {
Paolo Bonziniac7ebcc2021-11-05 10:07:37 +01002565 test $# = 0 && return
Paolo Bonzini47b30832020-09-23 05:26:17 -04002566 echo "'$(echo $* | sed "s/ /','/g")'"
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002567 }
Marc-André Lureaufc929892019-07-13 01:47:54 +04002568
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002569 echo "# Automatically generated by configure - do not modify" > $cross
2570 echo "[properties]" >> $cross
Alex Bennéed1d5e9e2021-07-07 14:17:44 +01002571
2572 # unroll any custom device configs
Alex Bennée11bdcfc2021-07-21 00:26:38 +01002573 for a in $device_archs; do
2574 eval "c=\$devices_${a}"
2575 echo "${a}-softmmu = '$c'" >> $cross
2576 done
Alex Bennéed1d5e9e2021-07-07 14:17:44 +01002577
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002578 echo "[built-in options]" >> $cross
Paolo Bonzinia2866662021-11-05 10:09:26 +01002579 echo "c_args = [$(meson_quote $CFLAGS $EXTRA_CFLAGS)]" >> $cross
2580 echo "cpp_args = [$(meson_quote $CXXFLAGS $EXTRA_CXXFLAGS)]" >> $cross
Philippe Mathieu-Daudée910c7d2022-01-08 22:38:55 +01002581 test -n "$objcc" && echo "objc_args = [$(meson_quote $OBJCFLAGS $EXTRA_OBJCFLAGS)]" >> $cross
Paolo Bonzinia2866662021-11-05 10:09:26 +01002582 echo "c_link_args = [$(meson_quote $CFLAGS $LDFLAGS $EXTRA_CFLAGS $EXTRA_LDFLAGS)]" >> $cross
2583 echo "cpp_link_args = [$(meson_quote $CXXFLAGS $LDFLAGS $EXTRA_CXXFLAGS $EXTRA_LDFLAGS)]" >> $cross
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002584 echo "[binaries]" >> $cross
Paolo Bonzini4dba2782021-09-29 17:14:43 +02002585 echo "c = [$(meson_quote $cc $CPU_CFLAGS)]" >> $cross
2586 test -n "$cxx" && echo "cpp = [$(meson_quote $cxx $CPU_CFLAGS)]" >> $cross
2587 test -n "$objcc" && echo "objc = [$(meson_quote $objcc $CPU_CFLAGS)]" >> $cross
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002588 echo "ar = [$(meson_quote $ar)]" >> $cross
2589 echo "nm = [$(meson_quote $nm)]" >> $cross
2590 echo "pkgconfig = [$(meson_quote $pkg_config_exe)]" >> $cross
2591 echo "ranlib = [$(meson_quote $ranlib)]" >> $cross
2592 if has $sdl2_config; then
2593 echo "sdl2-config = [$(meson_quote $sdl2_config)]" >> $cross
2594 fi
2595 echo "strip = [$(meson_quote $strip)]" >> $cross
Konstantin Kostiuk158bb222022-04-28 21:15:25 +03002596 echo "widl = [$(meson_quote $widl)]" >> $cross
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002597 echo "windres = [$(meson_quote $windres)]" >> $cross
Andrey Drobyshevf9f0e612022-11-29 19:38:08 +02002598 echo "windmc = [$(meson_quote $windmc)]" >> $cross
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002599 if test "$cross_compile" = "yes"; then
Marc-André Lureaufc929892019-07-13 01:47:54 +04002600 cross_arg="--cross-file config-meson.cross"
Marc-André Lureaufc929892019-07-13 01:47:54 +04002601 echo "[host_machine]" >> $cross
Paolo Bonziniba7c60c2021-11-08 14:47:54 +01002602 echo "system = '$targetos'" >> $cross
Paolo Bonzini823eb012021-11-08 14:18:17 +01002603 case "$cpu" in
Joelle van Dynef6bca9d2021-01-25 17:24:54 -08002604 i386)
Marc-André Lureaufc929892019-07-13 01:47:54 +04002605 echo "cpu_family = 'x86'" >> $cross
2606 ;;
Marc-André Lureaufc929892019-07-13 01:47:54 +04002607 *)
Paolo Bonzini823eb012021-11-08 14:18:17 +01002608 echo "cpu_family = '$cpu'" >> $cross
Marc-André Lureaufc929892019-07-13 01:47:54 +04002609 ;;
2610 esac
2611 echo "cpu = '$cpu'" >> $cross
2612 if test "$bigendian" = "yes" ; then
2613 echo "endian = 'big'" >> $cross
2614 else
2615 echo "endian = 'little'" >> $cross
2616 fi
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002617 else
Marc-André Lureaufc929892019-07-13 01:47:54 +04002618 cross_arg="--native-file config-meson.cross"
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002619 fi
2620 mv $cross config-meson.cross
Marc-André Lureaufc929892019-07-13 01:47:54 +04002621
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002622 rm -rf meson-private meson-info meson-logs
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002623
Marc-André Lureau5a347a72023-03-02 17:18:46 +04002624 # Prevent meson from automatically downloading wrapped subprojects when missing.
2625 # You can use 'meson subprojects download' before running configure.
2626 meson_option_add "--wrap-mode=nodownload"
2627
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002628 # Built-in options
2629 test "$bindir" != "bin" && meson_option_add "-Dbindir=$bindir"
2630 test "$default_feature" = no && meson_option_add -Dauto_features=disabled
2631 test "$pie" = no && meson_option_add -Db_pie=false
2632 test "$werror" = yes && meson_option_add -Dwerror=true
2633
2634 # QEMU options
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002635 test "$cfi" != false && meson_option_add "-Dcfi=$cfi"
2636 test "$fdt" != auto && meson_option_add "-Dfdt=$fdt"
2637 test -n "${LIB_FUZZING_ENGINE+xxx}" && meson_option_add "-Dfuzzing_engine=$LIB_FUZZING_ENGINE"
2638 test "$qemu_suffix" != qemu && meson_option_add "-Dqemu_suffix=$qemu_suffix"
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002639 test "$smbd" != '' && meson_option_add "-Dsmbd=$smbd"
2640 test "$tcg" != enabled && meson_option_add "-Dtcg=$tcg"
Jagannathan Raman55116962022-06-13 16:26:24 -04002641 test "$vfio_user_server" != auto && meson_option_add "-Dvfio_user_server=$vfio_user_server"
Paolo Bonzini61d63092021-10-07 15:08:28 +02002642 run_meson() {
Paolo Bonzini0a31e3a2022-04-20 17:33:59 +02002643 NINJA=$ninja $meson setup --prefix "$prefix" "$@" $cross_arg "$PWD" "$source_path"
Paolo Bonzini61d63092021-10-07 15:08:28 +02002644 }
2645 eval run_meson $meson_options
Paolo Bonzinid77e90f2021-03-16 08:19:34 +01002646 if test "$?" -ne 0 ; then
2647 error_exit "meson setup failed"
2648 fi
Paolo Bonzinia5665052019-06-10 12:05:14 +02002649fi
2650
Michael S. Tsirkindc655402014-03-09 17:37:49 +02002651# Save the configure command line for later reuse.
2652cat <<EOD >config.status
2653#!/bin/sh
2654# Generated by configure.
2655# Run this file to recreate the current configuration.
2656# Compiler output produced by configure, useful for debugging
2657# configure, is in config.log if it exists.
2658EOD
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002659
2660preserve_env() {
2661 envname=$1
2662
2663 eval envval=\$$envname
2664
2665 if test -n "$envval"
2666 then
2667 echo "$envname='$envval'" >> config.status
2668 echo "export $envname" >> config.status
2669 else
2670 echo "unset $envname" >> config.status
2671 fi
2672}
2673
2674# Preserve various env variables that influence what
2675# features/build target configure will detect
2676preserve_env AR
2677preserve_env AS
2678preserve_env CC
Paolo Bonzini8009da02021-11-05 10:08:43 +01002679preserve_env CFLAGS
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002680preserve_env CXX
Paolo Bonzini8009da02021-11-05 10:08:43 +01002681preserve_env CXXFLAGS
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002682preserve_env LD
Paolo Bonzini8009da02021-11-05 10:08:43 +01002683preserve_env LDFLAGS
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002684preserve_env LD_LIBRARY_PATH
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002685preserve_env MAKE
2686preserve_env NM
Paolo Bonzinib5569e52022-06-07 12:14:47 +02002687preserve_env OBJCFLAGS
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002688preserve_env OBJCOPY
2689preserve_env PATH
2690preserve_env PKG_CONFIG
2691preserve_env PKG_CONFIG_LIBDIR
2692preserve_env PKG_CONFIG_PATH
2693preserve_env PYTHON
Paolo Bonzini954ed682022-10-12 11:35:17 +02002694preserve_env QEMU_GA_MANUFACTURER
2695preserve_env QEMU_GA_DISTRO
2696preserve_env QEMU_GA_VERSION
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002697preserve_env SDL2_CONFIG
2698preserve_env SMBD
2699preserve_env STRIP
Konstantin Kostiuk158bb222022-04-28 21:15:25 +03002700preserve_env WIDL
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002701preserve_env WINDRES
Andrey Drobyshevf9f0e612022-11-29 19:38:08 +02002702preserve_env WINDMC
Daniel P. Berrangée811da72018-09-04 13:36:03 +01002703
Michael S. Tsirkindc655402014-03-09 17:37:49 +02002704printf "exec" >>config.status
Paolo Bonzinia5665052019-06-10 12:05:14 +02002705for i in "$0" "$@"; do
Paolo Bonzini835af892020-09-08 13:20:45 +02002706 test "$i" = --skip-meson || printf " %s" "$(quote_sh "$i")" >>config.status
Paolo Bonzinia5665052019-06-10 12:05:14 +02002707done
Dr. David Alan Gilbertcf7cc922016-01-12 11:58:48 +00002708echo ' "$@"' >>config.status
Michael S. Tsirkindc655402014-03-09 17:37:49 +02002709chmod +x config.status
2710
Peter Maydell8cd05ab2014-05-23 17:07:24 +01002711rm -r "$TMPDIR1"