bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 3 | # qemu configure script (c) 2003 Fabrice Bellard |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 4 | # |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 5 | |
Cornelia Huck | 99519e6 | 2014-05-28 12:39:17 +0200 | [diff] [blame] | 6 | # Unset some variables known to interfere with behavior of common tools, |
| 7 | # just as autoconf does. |
| 8 | CLICOLOR_FORCE= GREP_OPTIONS= |
| 9 | unset CLICOLOR_FORCE GREP_OPTIONS |
| 10 | |
John Snow | 5e4dfd3 | 2015-10-28 13:56:40 -0400 | [diff] [blame] | 11 | # Don't allow CCACHE, if present, to use cached results of compile tests! |
| 12 | export CCACHE_RECACHE=yes |
| 13 | |
Daniel P. Berrangé | dedad02 | 2020-08-21 12:22:04 +0200 | [diff] [blame] | 14 | # make source path absolute |
| 15 | source_path=$(cd "$(dirname -- "$0")"; pwd) |
| 16 | |
| 17 | if test "$PWD" = "$source_path" |
| 18 | then |
| 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 Baum | f160a5b | 2023-02-21 06:06:30 -0500 | [diff] [blame] | 34 | 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é | dedad02 | 2020-08-21 12:22:04 +0200 | [diff] [blame] | 40 | |
| 41 | cat > GNUmakefile <<'EOF' |
| 42 | # This file is auto-generated by configure to support in-source tree |
| 43 | # 'make' command invocation |
| 44 | |
| 45 | ifeq ($(MAKECMDGOALS),) |
| 46 | recurse: all |
| 47 | endif |
| 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 |
| 58 | force: ; |
| 59 | .PHONY: force |
| 60 | GNUmakefile: ; |
| 61 | |
| 62 | EOF |
| 63 | cd build |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 64 | exec "$source_path/configure" "$@" |
Daniel P. Berrangé | dedad02 | 2020-08-21 12:22:04 +0200 | [diff] [blame] | 65 | fi |
| 66 | |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 67 | # 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.) |
| 72 | TMPDIR1="config-temp" |
| 73 | rm -rf "${TMPDIR1}" |
Peter Maydell | 563661c | 2022-08-25 16:07:02 +0100 | [diff] [blame] | 74 | if ! mkdir -p "${TMPDIR1}"; then |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 75 | echo "ERROR: failed to create temporary directory" |
| 76 | exit 1 |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 77 | fi |
| 78 | |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 79 | TMPB="qemu-conf" |
| 80 | TMPC="${TMPDIR1}/${TMPB}.c" |
Don Slutz | 66518bf | 2014-01-02 21:12:46 -0500 | [diff] [blame] | 81 | TMPO="${TMPDIR1}/${TMPB}.o" |
Philippe Mathieu-Daudé | 4cb37d1 | 2022-02-15 16:15:13 +0100 | [diff] [blame] | 82 | TMPM="${TMPDIR1}/${TMPB}.m" |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 83 | TMPE="${TMPDIR1}/${TMPB}.exe" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 84 | |
Gerd Hoffmann | da1d85e | 2010-04-23 13:44:10 +0200 | [diff] [blame] | 85 | rm -f config.log |
malc | 9ac81bb | 2008-11-29 20:09:56 +0000 | [diff] [blame] | 86 | |
Peter Maydell | b48e361 | 2011-11-23 17:26:44 +0000 | [diff] [blame] | 87 | # Print a helpful header at the top of config.log |
| 88 | echo "# QEMU configure log $(date)" >> config.log |
Peter Maydell | 979ae16 | 2012-03-07 12:16:29 +0000 | [diff] [blame] | 89 | printf "# Configured with:" >> config.log |
Alex Bennée | 7f78877 | 2022-12-21 09:04:08 +0000 | [diff] [blame] | 90 | # repeat the invocation to log and stdout for CI |
| 91 | invoke=$(printf " '%s'" "$0" "$@") |
| 92 | test -n "$GITLAB_CI" && echo "configuring with: $invoke" |
| 93 | { echo "$invoke"; echo; echo "#"; } >> config.log |
Peter Maydell | b48e361 | 2011-11-23 17:26:44 +0000 | [diff] [blame] | 94 | |
Paolo Bonzini | 835af89 | 2020-09-08 13:20:45 +0200 | [diff] [blame] | 95 | quote_sh() { |
| 96 | printf "%s" "$1" | sed "s,','\\\\'',g; s,.*,'&'," |
| 97 | } |
| 98 | |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 99 | print_error() { |
| 100 | (echo |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 101 | echo "ERROR: $1" |
| 102 | while test -n "$2"; do |
| 103 | echo " $2" |
| 104 | shift |
| 105 | done |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 106 | echo) >&2 |
| 107 | } |
| 108 | |
| 109 | error_exit() { |
| 110 | print_error "$@" |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 111 | exit 1 |
| 112 | } |
| 113 | |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 114 | do_compiler() { |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 115 | # Run the compiler, capturing its output to the log. First argument |
| 116 | # is compiler binary to execute. |
Peter Maydell | b3b5472 | 2022-08-25 16:07:03 +0100 | [diff] [blame] | 117 | compiler="$1" |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 118 | shift |
| 119 | if test -n "$BASH_VERSION"; then eval ' |
| 120 | echo >>config.log " |
| 121 | funcs: ${FUNCNAME[*]} |
| 122 | lines: ${BASH_LINENO[*]}" |
| 123 | '; fi |
| 124 | echo $compiler "$@" >> config.log |
| 125 | $compiler "$@" >> config.log 2>&1 || return $? |
| 126 | } |
| 127 | |
| 128 | do_compiler_werror() { |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 129 | # Run the compiler, capturing its output to the log. First argument |
| 130 | # is compiler binary to execute. |
David CARLIER | 630d86b | 2020-07-18 14:19:10 +0100 | [diff] [blame] | 131 | compiler="$1" |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 132 | shift |
Ian Jackson | 8bbe05d | 2017-09-25 16:41:03 +0100 | [diff] [blame] | 133 | if test -n "$BASH_VERSION"; then eval ' |
| 134 | echo >>config.log " |
| 135 | funcs: ${FUNCNAME[*]} |
| 136 | lines: ${BASH_LINENO[*]}" |
| 137 | '; fi |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 138 | echo $compiler "$@" >> config.log |
| 139 | $compiler "$@" >> config.log 2>&1 || return $? |
Peter Maydell | 8dc38a7 | 2012-07-18 15:10:28 +0100 | [diff] [blame] | 140 | # 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 Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 153 | echo $compiler -Werror "$@" >> config.log |
| 154 | $compiler -Werror "$@" >> config.log 2>&1 && return $? |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 155 | 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 Maydell | 8dc38a7 | 2012-07-18 15:10:28 +0100 | [diff] [blame] | 159 | } |
| 160 | |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 161 | do_cc() { |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 162 | do_compiler_werror "$cc" $CPU_CFLAGS "$@" |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Philippe Mathieu-Daudé | 4cb37d1 | 2022-02-15 16:15:13 +0100 | [diff] [blame] | 165 | do_objc() { |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 166 | do_compiler_werror "$objcc" $CPU_CFLAGS "$@" |
Philippe Mathieu-Daudé | 4cb37d1 | 2022-02-15 16:15:13 +0100 | [diff] [blame] | 167 | } |
| 168 | |
Richard Henderson | 00849b9 | 2020-06-17 13:13:06 -0700 | [diff] [blame] | 169 | # Append $2 to the variable named $1, with space separation |
| 170 | add_to() { |
| 171 | eval $1=\${$1:+\"\$$1 \"}\$2 |
| 172 | } |
| 173 | |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 174 | compile_object() { |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 175 | local_cflags="$1" |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 176 | do_cc $CFLAGS $EXTRA_CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -c -o $TMPO $TMPC |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | compile_prog() { |
| 180 | local_cflags="$1" |
| 181 | local_ldflags="$2" |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 182 | 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 Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 184 | } |
| 185 | |
Paolo Bonzini | 11568d6 | 2010-12-23 11:43:58 +0100 | [diff] [blame] | 186 | # symbolically link $1 to $2. Portable version of "ln -sf". |
| 187 | symlink() { |
Stefan Weil | 72b8b5a | 2012-03-19 13:20:47 +0100 | [diff] [blame] | 188 | rm -rf "$2" |
Anthony Liguori | ec5b06d | 2012-06-06 16:57:00 +0800 | [diff] [blame] | 189 | mkdir -p "$(dirname "$2")" |
Stefan Weil | 72b8b5a | 2012-03-19 13:20:47 +0100 | [diff] [blame] | 190 | ln -s "$1" "$2" |
Paolo Bonzini | 11568d6 | 2010-12-23 11:43:58 +0100 | [diff] [blame] | 191 | } |
| 192 | |
Loïc Minier | 0dba619 | 2010-01-28 21:26:51 +0000 | [diff] [blame] | 193 | # check whether a command is available to this shell (may be either an |
| 194 | # executable or a builtin) |
| 195 | has() { |
| 196 | type "$1" >/dev/null 2>&1 |
| 197 | } |
| 198 | |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 199 | version_ge () { |
Alex Bennée | 2df52b9 | 2021-02-02 13:39:52 +0000 | [diff] [blame] | 200 | local_ver1=$(expr "$1" : '\([0-9.]*\)' | tr . ' ') |
| 201 | local_ver2=$(echo "$2" | tr . ' ') |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 202 | while true; do |
| 203 | set x $local_ver1 |
| 204 | local_first=${2-0} |
Stefano Garzarella | c44a33e | 2020-08-21 22:35:58 +0200 | [diff] [blame] | 205 | # 'shift 2' if $2 is set, or 'shift' if $2 is not set |
| 206 | shift ${2:+2} |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 207 | 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 Garzarella | c44a33e | 2020-08-21 22:35:58 +0200 | [diff] [blame] | 213 | shift ${2:+2} |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 214 | local_ver2=$* |
| 215 | done |
| 216 | } |
| 217 | |
Antonio Ospite | 4ace32e | 2019-05-26 16:47:47 +0200 | [diff] [blame] | 218 | if printf %s\\n "$source_path" "$PWD" | grep -q "[[:space:]:]"; |
| 219 | then |
| 220 | error_exit "main directory cannot contain spaces nor colons" |
| 221 | fi |
| 222 | |
Antonio Ospite | 1421182 | 2019-05-26 16:47:46 +0200 | [diff] [blame] | 223 | # default parameters |
Juan Quintela | 2ff6b91 | 2009-08-03 14:45:55 +0200 | [diff] [blame] | 224 | cpu="" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 225 | static="no" |
Joelle van Dyne | 3812c0c | 2021-01-25 17:24:48 -0800 | [diff] [blame] | 226 | cross_compile="no" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 227 | cross_prefix="" |
Peter Maydell | e49d021 | 2012-12-07 15:39:13 +0000 | [diff] [blame] | 228 | host_cc="cc" |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 229 | stack_protector="" |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 230 | safe_stack="" |
Alex Bennée | afc3a8f | 2019-11-28 16:35:24 +0100 | [diff] [blame] | 231 | use_containers="yes" |
Alex Bennée | f238539 | 2020-04-30 20:01:14 +0100 | [diff] [blame] | 232 | gdb_bin=$(command -v "gdb-multiarch" || command -v "gdb") |
Alex Bennée | bcbc36a | 2023-03-02 18:57:59 -0800 | [diff] [blame] | 233 | gdb_arches="" |
Emilio Cota | e3feb2c | 2023-02-05 11:37:57 -0500 | [diff] [blame] | 234 | glib_has_gslice="no" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 235 | |
Daniel P. Berrange | 9271282 | 2017-09-29 11:11:58 +0100 | [diff] [blame] | 236 | if test -e "$source_path/.git" |
| 237 | then |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 238 | git_submodules_action="update" |
Daniel P. Berrange | 9271282 | 2017-09-29 11:11:58 +0100 | [diff] [blame] | 239 | else |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 240 | git_submodules_action="ignore" |
Daniel P. Berrange | 9271282 | 2017-09-29 11:11:58 +0100 | [diff] [blame] | 241 | fi |
Paolo Bonzini | 2d652f2 | 2021-05-12 09:21:56 +0200 | [diff] [blame] | 242 | |
| 243 | git_submodules="ui/keycodemapdb" |
Daniel P. Berrange | cc84d63 | 2017-10-20 15:02:43 +0100 | [diff] [blame] | 244 | git="git" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 245 | |
Stefan Weil | afb63eb | 2012-09-26 22:04:38 +0200 | [diff] [blame] | 246 | # Don't accept a target_list environment variable. |
| 247 | unset target_list |
Alex Bennée | 447e133 | 2019-03-19 11:59:12 +0000 | [diff] [blame] | 248 | unset target_list_exclude |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 249 | |
| 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ée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 262 | default_feature="" |
| 263 | # parse CC options second |
| 264 | for opt do |
| 265 | optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') |
| 266 | case "$opt" in |
| 267 | --without-default-features) |
| 268 | default_feature="no" |
| 269 | ;; |
| 270 | esac |
| 271 | done |
| 272 | |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 273 | EXTRA_CFLAGS="" |
| 274 | EXTRA_CXXFLAGS="" |
Philippe Mathieu-Daudé | e910c7d | 2022-01-08 22:38:55 +0100 | [diff] [blame] | 275 | EXTRA_OBJCFLAGS="" |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 276 | EXTRA_LDFLAGS="" |
| 277 | |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 278 | debug_tcg="no" |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 279 | sanitizers="no" |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 280 | tsan="no" |
Michael Tokarev | 1f3f2bf | 2022-04-22 13:08:25 +0300 | [diff] [blame] | 281 | fortify_source="yes" |
Miroslav Rezanina | c732827 | 2021-03-31 10:18:45 +0200 | [diff] [blame] | 282 | EXESUF="" |
Fam Zheng | 1796926 | 2014-02-10 14:48:56 +0800 | [diff] [blame] | 283 | modules="no" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 284 | prefix="/usr/local" |
Marc-André Lureau | 10ff82d | 2020-08-26 15:04:13 +0400 | [diff] [blame] | 285 | qemu_suffix="qemu" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 286 | softmmu="yes" |
Paolo Bonzini | b915a2f | 2021-11-09 10:10:41 +0100 | [diff] [blame] | 287 | linux_user="" |
| 288 | bsd_user="" |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 289 | pie="" |
Alex Barcelo | 519175a | 2012-02-28 12:25:50 +0100 | [diff] [blame] | 290 | coroutine="" |
Alex Bennée | ba4dd2a | 2021-07-09 15:29:57 +0100 | [diff] [blame] | 291 | plugins="$default_feature" |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 292 | meson="" |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 293 | ninja="" |
Paolo Bonzini | c09c1ce | 2022-04-20 17:33:57 +0200 | [diff] [blame] | 294 | bindir="bin" |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 295 | skip_meson=no |
Jagannathan Raman | 5511696 | 2022-06-13 16:26:24 -0400 | [diff] [blame] | 296 | vfio_user_server="disabled" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 297 | |
Paolo Bonzini | 3b4da13 | 2021-10-07 15:08:29 +0200 | [diff] [blame] | 298 | # 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 Bonzini | 3b4da13 | 2021-10-07 15:08:29 +0200 | [diff] [blame] | 302 | fdt="auto" |
Paolo Bonzini | 3b4da13 | 2021-10-07 15:08:29 +0200 | [diff] [blame] | 303 | |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 304 | # 2. Automatically enable/disable other options |
Philippe Mathieu-Daudé | 7630156 | 2022-02-04 15:54:47 +0100 | [diff] [blame] | 305 | tcg="auto" |
Paolo Bonzini | 3b4da13 | 2021-10-07 15:08:29 +0200 | [diff] [blame] | 306 | cfi="false" |
| 307 | |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 308 | # parse CC options second |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 309 | for opt do |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 310 | optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 311 | case "$opt" in |
| 312 | --cross-prefix=*) cross_prefix="$optarg" |
Joelle van Dyne | 3812c0c | 2021-01-25 17:24:48 -0800 | [diff] [blame] | 313 | cross_compile="yes" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 314 | ;; |
Paolo Bonzini | 3d8df64 | 2010-12-23 11:43:48 +0100 | [diff] [blame] | 315 | --cc=*) CC="$optarg" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 316 | ;; |
Tomoki Sekiyama | 83f73fc | 2013-08-07 11:39:36 -0400 | [diff] [blame] | 317 | --cxx=*) CXX="$optarg" |
| 318 | ;; |
Peter Maydell | c0c34c9 | 2023-04-18 17:15:54 +0100 | [diff] [blame] | 319 | --objcc=*) objcc="$optarg" |
| 320 | ;; |
Juan Quintela | 2ff6b91 | 2009-08-03 14:45:55 +0200 | [diff] [blame] | 321 | --cpu=*) cpu="$optarg" |
| 322 | ;; |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 323 | --extra-cflags=*) |
| 324 | EXTRA_CFLAGS="$EXTRA_CFLAGS $optarg" |
| 325 | EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS $optarg" |
Philippe Mathieu-Daudé | e910c7d | 2022-01-08 22:38:55 +0100 | [diff] [blame] | 326 | EXTRA_OBJCFLAGS="$EXTRA_OBJCFLAGS $optarg" |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 327 | ;; |
| 328 | --extra-cxxflags=*) EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS $optarg" |
Juan Quintela | e2a2ed0 | 2009-08-03 14:46:02 +0200 | [diff] [blame] | 329 | ;; |
Philippe Mathieu-Daudé | e910c7d | 2022-01-08 22:38:55 +0100 | [diff] [blame] | 330 | --extra-objcflags=*) EXTRA_OBJCFLAGS="$EXTRA_OBJCFLAGS $optarg" |
| 331 | ;; |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 332 | --extra-ldflags=*) EXTRA_LDFLAGS="$EXTRA_LDFLAGS $optarg" |
Juan Quintela | e2a2ed0 | 2009-08-03 14:46:02 +0200 | [diff] [blame] | 333 | ;; |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 334 | --cross-cc-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-cc-FOO option" |
| 335 | ;; |
Matheus Ferst | 479ca4c | 2022-01-20 14:31:41 -0300 | [diff] [blame] | 336 | --cross-cc-cflags-*) cc_arch=${opt#--cross-cc-cflags-}; cc_arch=${cc_arch%%=*} |
Alex Bennée | d422b2b | 2018-04-13 11:07:58 +0100 | [diff] [blame] | 337 | eval "cross_cc_cflags_${cc_arch}=\$optarg" |
| 338 | ;; |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 339 | --cross-cc-*) cc_arch=${opt#--cross-cc-}; cc_arch=${cc_arch%%=*} |
| 340 | eval "cross_cc_${cc_arch}=\$optarg" |
| 341 | ;; |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 342 | --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 | ;; |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 347 | esac |
| 348 | done |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 349 | |
Peter Maydell | e49d021 | 2012-12-07 15:39:13 +0000 | [diff] [blame] | 350 | # Preferred compiler: |
| 351 | # ${CC} (if set) |
| 352 | # ${cross_prefix}gcc (if cross-prefix specified) |
| 353 | # system compiler |
| 354 | if test -z "${CC}${cross_prefix}"; then |
| 355 | cc="$host_cc" |
| 356 | else |
| 357 | cc="${CC-${cross_prefix}gcc}" |
| 358 | fi |
| 359 | |
Tomoki Sekiyama | 83f73fc | 2013-08-07 11:39:36 -0400 | [diff] [blame] | 360 | if test -z "${CXX}${cross_prefix}"; then |
| 361 | cxx="c++" |
| 362 | else |
| 363 | cxx="${CXX-${cross_prefix}g++}" |
| 364 | fi |
| 365 | |
Peter Maydell | c0c34c9 | 2023-04-18 17:15:54 +0100 | [diff] [blame] | 366 | # 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 |
| 371 | if test -z "${objcc}${cross_prefix}"; then |
| 372 | if has clang; then |
| 373 | objcc=clang |
| 374 | else |
| 375 | objcc="$cc" |
| 376 | fi |
| 377 | else |
| 378 | objcc="${objcc-${cross_prefix}clang}" |
| 379 | fi |
| 380 | |
Stuart Yoder | b3198cc | 2011-08-04 17:10:08 -0500 | [diff] [blame] | 381 | ar="${AR-${cross_prefix}ar}" |
Richard Henderson | cdbd727 | 2016-07-07 21:49:36 -0700 | [diff] [blame] | 382 | as="${AS-${cross_prefix}as}" |
Richard Henderson | 5f6f0e2 | 2016-06-23 10:39:18 -0700 | [diff] [blame] | 383 | ccas="${CCAS-$cc}" |
Stuart Yoder | b3198cc | 2011-08-04 17:10:08 -0500 | [diff] [blame] | 384 | objcopy="${OBJCOPY-${cross_prefix}objcopy}" |
| 385 | ld="${LD-${cross_prefix}ld}" |
Alistair Francis | 9f81aeb | 2017-11-07 17:10:46 -0800 | [diff] [blame] | 386 | ranlib="${RANLIB-${cross_prefix}ranlib}" |
Stefan Weil | 4852ee9 | 2014-09-18 21:55:08 +0200 | [diff] [blame] | 387 | nm="${NM-${cross_prefix}nm}" |
Paolo Bonzini | 35acbb3 | 2021-10-13 13:43:36 +0200 | [diff] [blame] | 388 | smbd="$SMBD" |
Stuart Yoder | b3198cc | 2011-08-04 17:10:08 -0500 | [diff] [blame] | 389 | strip="${STRIP-${cross_prefix}strip}" |
Konstantin Kostiuk | 158bb22 | 2022-04-28 21:15:25 +0300 | [diff] [blame] | 390 | widl="${WIDL-${cross_prefix}widl}" |
Stuart Yoder | b3198cc | 2011-08-04 17:10:08 -0500 | [diff] [blame] | 391 | windres="${WINDRES-${cross_prefix}windres}" |
Andrey Drobyshev | f9f0e61 | 2022-11-29 19:38:08 +0200 | [diff] [blame] | 392 | windmc="${WINDMC-${cross_prefix}windmc}" |
Sergei Trofimovich | 17884d7 | 2012-01-31 22:03:45 +0300 | [diff] [blame] | 393 | pkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}" |
| 394 | query_pkg_config() { |
| 395 | "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@" |
| 396 | } |
| 397 | pkg_config=query_pkg_config |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 398 | sdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 399 | |
Michael S. Tsirkin | be17dc9 | 2009-11-11 13:50:09 +0200 | [diff] [blame] | 400 | # default flags for all hosts |
Peter Maydell | 2d31515 | 2016-09-12 14:10:08 +0100 | [diff] [blame] | 401 | # 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 Bonzini | de38c0c | 2021-11-08 08:58:23 +0100 | [diff] [blame] | 405 | QEMU_CFLAGS="-fno-strict-aliasing -fno-common -fwrapv" |
Michael S. Tsirkin | be17dc9 | 2009-11-11 13:50:09 +0200 | [diff] [blame] | 406 | QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS" |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 407 | |
Paolo Bonzini | de38c0c | 2021-11-08 08:58:23 +0100 | [diff] [blame] | 408 | QEMU_LDFLAGS= |
| 409 | |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 410 | # Flags that are needed during configure but later taken care of by Meson |
Richard Henderson | 8a9d3d5 | 2021-06-14 16:31:36 -0700 | [diff] [blame] | 411 | CONFIGURE_CFLAGS="-std=gnu11 -Wall" |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 412 | CONFIGURE_LDFLAGS= |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 413 | |
Michael S. Tsirkin | be17dc9 | 2009-11-11 13:50:09 +0200 | [diff] [blame] | 414 | |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 415 | check_define() { |
| 416 | cat > $TMPC <<EOF |
| 417 | #if !defined($1) |
Peter Maydell | fd786e1 | 2011-11-23 17:26:43 +0000 | [diff] [blame] | 418 | #error $1 not defined |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 419 | #endif |
| 420 | int main(void) { return 0; } |
| 421 | EOF |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 422 | compile_object |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 423 | } |
| 424 | |
Gerd Hoffmann | 307119e | 2015-06-10 09:07:35 +0200 | [diff] [blame] | 425 | check_include() { |
| 426 | cat > $TMPC <<EOF |
| 427 | #include <$1> |
| 428 | int main(void) { return 0; } |
| 429 | EOF |
| 430 | compile_object |
| 431 | } |
| 432 | |
John Snow | 93b2586 | 2015-03-25 18:57:37 -0400 | [diff] [blame] | 433 | write_c_skeleton() { |
| 434 | cat > $TMPC <<EOF |
| 435 | int main(void) { return 0; } |
| 436 | EOF |
| 437 | } |
| 438 | |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 439 | if check_define __linux__ ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 440 | targetos=linux |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 441 | elif check_define _WIN32 ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 442 | targetos=windows |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 443 | elif check_define __OpenBSD__ ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 444 | targetos=openbsd |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 445 | elif check_define __sun__ ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 446 | targetos=sunos |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 447 | elif check_define __HAIKU__ ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 448 | targetos=haiku |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 449 | elif check_define __FreeBSD__ ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 450 | targetos=freebsd |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 451 | elif check_define __FreeBSD_kernel__ && check_define __GLIBC__; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 452 | targetos=gnu/kfreebsd |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 453 | elif check_define __DragonFly__ ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 454 | targetos=dragonfly |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 455 | elif check_define __NetBSD__; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 456 | targetos=netbsd |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 457 | elif check_define __APPLE__; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 458 | targetos=darwin |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 459 | else |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 460 | # 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 Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 463 | targetos=bogus |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 464 | fi |
| 465 | |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 466 | # OS specific |
| 467 | |
Paolo Bonzini | 3b0d864 | 2021-10-13 14:14:53 +0200 | [diff] [blame] | 468 | mingw32="no" |
| 469 | bsd="no" |
| 470 | linux="no" |
| 471 | solaris="no" |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 472 | case $targetos in |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 473 | windows) |
| 474 | mingw32="yes" |
| 475 | plugins="no" |
| 476 | pie="no" |
| 477 | ;; |
| 478 | gnu/kfreebsd) |
| 479 | bsd="yes" |
| 480 | ;; |
| 481 | freebsd) |
| 482 | bsd="yes" |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 483 | make="${MAKE-gmake}" |
| 484 | # needed for kinfo_getvmmap(3) in libutil.h |
| 485 | ;; |
| 486 | dragonfly) |
| 487 | bsd="yes" |
| 488 | make="${MAKE-gmake}" |
| 489 | ;; |
| 490 | netbsd) |
| 491 | bsd="yes" |
| 492 | make="${MAKE-gmake}" |
| 493 | ;; |
| 494 | openbsd) |
| 495 | bsd="yes" |
| 496 | make="${MAKE-gmake}" |
| 497 | ;; |
| 498 | darwin) |
| 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 Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 505 | sunos) |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 506 | solaris="yes" |
| 507 | make="${MAKE-gmake}" |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 508 | # 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 Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 512 | ;; |
| 513 | haiku) |
| 514 | pie="no" |
| 515 | QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS -D_BSD_SOURCE -fPIC $QEMU_CFLAGS" |
| 516 | ;; |
| 517 | linux) |
| 518 | linux="yes" |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 519 | ;; |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 520 | esac |
| 521 | |
Juan Quintela | 2ff6b91 | 2009-08-03 14:45:55 +0200 | [diff] [blame] | 522 | if test ! -z "$cpu" ; then |
| 523 | # command line argument |
| 524 | : |
| 525 | elif check_define __i386__ ; then |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 526 | cpu="i386" |
| 527 | elif check_define __x86_64__ ; then |
Richard Henderson | c72b26e | 2013-08-20 12:20:05 -0700 | [diff] [blame] | 528 | if check_define __ILP32__ ; then |
| 529 | cpu="x32" |
| 530 | else |
| 531 | cpu="x86_64" |
| 532 | fi |
blueswir1 | 3aa9bd6 | 2008-12-31 16:55:26 +0000 | [diff] [blame] | 533 | elif check_define __sparc__ ; then |
blueswir1 | 3aa9bd6 | 2008-12-31 16:55:26 +0000 | [diff] [blame] | 534 | if check_define __arch64__ ; then |
| 535 | cpu="sparc64" |
| 536 | else |
| 537 | cpu="sparc" |
| 538 | fi |
malc | fdf7ed9 | 2009-01-14 18:39:52 +0000 | [diff] [blame] | 539 | elif check_define _ARCH_PPC ; then |
| 540 | if check_define _ARCH_PPC64 ; then |
Richard Henderson | f8378ac | 2019-05-01 15:38:18 -0700 | [diff] [blame] | 541 | if check_define _LITTLE_ENDIAN ; then |
| 542 | cpu="ppc64le" |
| 543 | else |
| 544 | cpu="ppc64" |
| 545 | fi |
malc | fdf7ed9 | 2009-01-14 18:39:52 +0000 | [diff] [blame] | 546 | else |
| 547 | cpu="ppc" |
| 548 | fi |
Aurelien Jarno | afa0523 | 2009-10-17 14:17:47 +0200 | [diff] [blame] | 549 | elif check_define __mips__ ; then |
| 550 | cpu="mips" |
Aurelien Jarno | d66ed0e | 2010-06-13 12:28:21 +0200 | [diff] [blame] | 551 | elif check_define __s390__ ; then |
| 552 | if check_define __s390x__ ; then |
| 553 | cpu="s390x" |
| 554 | else |
| 555 | cpu="s390" |
| 556 | fi |
Alistair Francis | c4f8054 | 2018-12-19 19:20:19 +0000 | [diff] [blame] | 557 | elif check_define __riscv ; then |
Richard Henderson | ba0e733 | 2021-09-17 11:08:09 -0700 | [diff] [blame] | 558 | cpu="riscv" |
Peter Maydell | 21d89f8 | 2011-11-30 10:57:48 +0100 | [diff] [blame] | 559 | elif check_define __arm__ ; then |
| 560 | cpu="arm" |
Claudio Fontana | 1f08031 | 2013-06-12 16:20:23 +0100 | [diff] [blame] | 561 | elif check_define __aarch64__ ; then |
| 562 | cpu="aarch64" |
WANG Xuerui | dfcf900 | 2021-12-21 13:41:04 +0800 | [diff] [blame] | 563 | elif check_define __loongarch64 ; then |
| 564 | cpu="loongarch64" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 565 | else |
Paolo Bonzini | f9c7780 | 2022-10-12 15:27:03 +0200 | [diff] [blame] | 566 | # Using uname is really broken, but it is just a fallback for architectures |
| 567 | # that are going to use TCI anyway |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 568 | cpu=$(uname -m) |
Paolo Bonzini | f9c7780 | 2022-10-12 15:27:03 +0200 | [diff] [blame] | 569 | echo "WARNING: unrecognized host CPU, proceeding with 'uname -m' output '$cpu'" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 570 | fi |
| 571 | |
Paolo Bonzini | f9c7780 | 2022-10-12 15:27:03 +0200 | [diff] [blame] | 572 | # 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 Maydell | 359bc95 | 2011-12-24 13:07:25 +0000 | [diff] [blame] | 575 | # Note that this case should only have supported host CPUs, not guests. |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 576 | case "$cpu" in |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 577 | armv*b|armv*l|arm) |
| 578 | cpu="arm" ;; |
| 579 | |
Paolo Bonzini | f9c7780 | 2022-10-12 15:27:03 +0200 | [diff] [blame] | 580 | i386|i486|i586|i686) |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 581 | cpu="i386" |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 582 | CPU_CFLAGS="-m32" ;; |
| 583 | x32) |
Paolo Bonzini | 4da270b | 2021-11-09 09:36:10 +0100 | [diff] [blame] | 584 | cpu="x86_64" |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 585 | CPU_CFLAGS="-mx32" ;; |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 586 | x86_64|amd64) |
| 587 | cpu="x86_64" |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 588 | # ??? 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 Jarno | afa0523 | 2009-10-17 14:17:47 +0200 | [diff] [blame] | 593 | mips*) |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 594 | cpu="mips" ;; |
| 595 | |
| 596 | ppc) |
| 597 | CPU_CFLAGS="-m32" ;; |
| 598 | ppc64) |
Miroslav Rezanina | ced5cff | 2022-03-05 07:16:46 +0100 | [diff] [blame] | 599 | CPU_CFLAGS="-m64 -mbig-endian" ;; |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 600 | ppc64le) |
Paolo Bonzini | d8ff892 | 2021-11-09 09:18:20 +0100 | [diff] [blame] | 601 | cpu="ppc64" |
Miroslav Rezanina | ced5cff | 2022-03-05 07:16:46 +0100 | [diff] [blame] | 602 | CPU_CFLAGS="-m64 -mlittle-endian" ;; |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 603 | |
| 604 | s390) |
Paolo Bonzini | 823eb01 | 2021-11-08 14:18:17 +0100 | [diff] [blame] | 605 | CPU_CFLAGS="-m31" ;; |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 606 | s390x) |
| 607 | CPU_CFLAGS="-m64" ;; |
| 608 | |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 609 | sparc|sun4[cdmuv]) |
bellard | ae22853 | 2003-05-13 18:59:59 +0000 | [diff] [blame] | 610 | cpu="sparc" |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 611 | CPU_CFLAGS="-m32 -mv8plus -mcpu=ultrasparc" ;; |
| 612 | sparc64) |
| 613 | CPU_CFLAGS="-m64 -mcpu=ultrasparc" ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 614 | esac |
Juan Quintela | e2d52ad | 2009-08-12 18:20:24 +0200 | [diff] [blame] | 615 | |
Paolo Bonzini | 0db4a06 | 2010-12-23 11:43:49 +0100 | [diff] [blame] | 616 | : ${make=${MAKE-make}} |
Paolo Bonzini | b6daf4d | 2020-09-01 06:38:04 -0400 | [diff] [blame] | 617 | |
Markus Armbruster | 903458c | 2020-02-14 18:18:41 +0100 | [diff] [blame] | 618 | |
John Snow | fee6d41 | 2023-02-10 01:31:43 +0100 | [diff] [blame] | 619 | check_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 | |
| 625 | python= |
| 626 | first_python= |
| 627 | if 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 |
| 643 | else |
| 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 |
| 654 | fi |
Markus Armbruster | 903458c | 2020-02-14 18:18:41 +0100 | [diff] [blame] | 655 | |
Alex Bennée | 39d87c8 | 2020-03-03 15:06:20 +0000 | [diff] [blame] | 656 | # Check for ancillary tools used in testing |
| 657 | genisoimage= |
Alex Bennée | 3df437c | 2020-05-19 09:22:48 -0400 | [diff] [blame] | 658 | for binary in genisoimage mkisofs |
Alex Bennée | 39d87c8 | 2020-03-03 15:06:20 +0000 | [diff] [blame] | 659 | do |
| 660 | if has $binary |
| 661 | then |
| 662 | genisoimage=$(command -v "$binary") |
| 663 | break |
| 664 | fi |
| 665 | done |
| 666 | |
Juan Quintela | 3457a3f | 2009-08-03 14:46:07 +0200 | [diff] [blame] | 667 | if test "$mingw32" = "yes" ; then |
Juan Quintela | 3457a3f | 2009-08-03 14:46:07 +0200 | [diff] [blame] | 668 | EXESUF=".exe" |
Stefan Weil | 78e9d4a | 2015-11-26 12:13:12 +0100 | [diff] [blame] | 669 | # MinGW needs -mthreads for TLS and macro _MT. |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 670 | CONFIGURE_CFLAGS="-mthreads $CONFIGURE_CFLAGS" |
Paolo Bonzini | d17f305 | 2020-08-18 12:17:01 +0200 | [diff] [blame] | 671 | prefix="/qemu" |
Paolo Bonzini | c09c1ce | 2022-04-20 17:33:57 +0200 | [diff] [blame] | 672 | bindir="" |
Marc-André Lureau | 77433a5 | 2020-08-26 15:04:12 +0400 | [diff] [blame] | 673 | qemu_suffix="" |
Juan Quintela | 3457a3f | 2009-08-03 14:46:07 +0200 | [diff] [blame] | 674 | fi |
| 675 | |
Anthony Liguori | 487fefd | 2009-06-11 13:28:25 -0500 | [diff] [blame] | 676 | werror="" |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 677 | |
Akihiko Odaki | 8154f5e | 2022-06-25 00:40:42 +0900 | [diff] [blame] | 678 | meson_option_build_array() { |
| 679 | printf '[' |
Peter Maydell | c5cfdab | 2022-07-20 16:26:31 +0100 | [diff] [blame] | 680 | (if test "$targetos" = windows; then |
Akihiko Odaki | 8154f5e | 2022-06-25 00:40:42 +0900 | [diff] [blame] | 681 | IFS=\; |
| 682 | else |
| 683 | IFS=: |
| 684 | fi |
| 685 | for e in $1; do |
Peter Maydell | 65842b0 | 2022-07-20 16:26:29 +0100 | [diff] [blame] | 686 | printf '"""' |
| 687 | # backslash escape any '\' and '"' characters |
| 688 | printf "%s" "$e" | sed -e 's/\([\"]\)/\\\1/g' |
| 689 | printf '""",' |
Akihiko Odaki | 8154f5e | 2022-06-25 00:40:42 +0900 | [diff] [blame] | 690 | done) |
| 691 | printf ']\n' |
| 692 | } |
| 693 | |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 694 | . "$source_path/scripts/meson-buildoptions.sh" |
Paolo Bonzini | 61d6309 | 2021-10-07 15:08:28 +0200 | [diff] [blame] | 695 | |
| 696 | meson_options= |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 697 | meson_option_add() { |
| 698 | meson_options="$meson_options $(quote_sh "$1")" |
| 699 | } |
Paolo Bonzini | 61d6309 | 2021-10-07 15:08:28 +0200 | [diff] [blame] | 700 | meson_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 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 709 | for opt do |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 710 | optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 711 | case "$opt" in |
bellard | 2efc326 | 2005-12-18 19:14:49 +0000 | [diff] [blame] | 712 | --help|-h) show_help=yes |
| 713 | ;; |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 714 | --version|-V) exec cat "$source_path/VERSION" |
Mike Frysinger | 99123e1 | 2011-04-07 01:12:28 -0400 | [diff] [blame] | 715 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 716 | --prefix=*) prefix="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 717 | ;; |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 718 | --cross-prefix=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 719 | ;; |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 720 | --cc=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 721 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 722 | --host-cc=*) host_cc="$optarg" |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 723 | ;; |
Tomoki Sekiyama | 83f73fc | 2013-08-07 11:39:36 -0400 | [diff] [blame] | 724 | --cxx=*) |
| 725 | ;; |
Peter Maydell | c0c34c9 | 2023-04-18 17:15:54 +0100 | [diff] [blame] | 726 | --objcc=*) |
Peter Maydell | 3c4a4d0 | 2012-08-11 22:34:40 +0100 | [diff] [blame] | 727 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 728 | --make=*) make="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 729 | ;; |
Paolo Bonzini | b6daf4d | 2020-09-01 06:38:04 -0400 | [diff] [blame] | 730 | --install=*) |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 731 | ;; |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 732 | --python=*) python="$optarg" ; explicit_python=yes |
Blue Swirl | c886edf | 2011-07-22 21:08:09 +0000 | [diff] [blame] | 733 | ;; |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 734 | --skip-meson) skip_meson=yes |
| 735 | ;; |
| 736 | --meson=*) meson="$optarg" |
| 737 | ;; |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 738 | --ninja=*) ninja="$optarg" |
| 739 | ;; |
Brad | e2d8830 | 2011-09-02 16:53:28 -0400 | [diff] [blame] | 740 | --smbd=*) smbd="$optarg" |
| 741 | ;; |
Juan Quintela | e2a2ed0 | 2009-08-03 14:46:02 +0200 | [diff] [blame] | 742 | --extra-cflags=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 743 | ;; |
Bruno Dominguez | 11cde1c | 2017-06-06 14:07:47 +0100 | [diff] [blame] | 744 | --extra-cxxflags=*) |
| 745 | ;; |
Philippe Mathieu-Daudé | e910c7d | 2022-01-08 22:38:55 +0100 | [diff] [blame] | 746 | --extra-objcflags=*) |
| 747 | ;; |
Juan Quintela | e2a2ed0 | 2009-08-03 14:46:02 +0200 | [diff] [blame] | 748 | --extra-ldflags=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 749 | ;; |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 750 | --cross-cc-*) |
| 751 | ;; |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 752 | --cross-prefix-*) |
| 753 | ;; |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 754 | --enable-debug-info) meson_option_add -Ddebug=true |
Paolo Bonzini | 2860974 | 2022-04-20 17:33:39 +0200 | [diff] [blame] | 755 | ;; |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 756 | --disable-debug-info) meson_option_add -Ddebug=false |
Paolo Bonzini | 2860974 | 2022-04-20 17:33:39 +0200 | [diff] [blame] | 757 | ;; |
Fam Zheng | 1796926 | 2014-02-10 14:48:56 +0800 | [diff] [blame] | 758 | --enable-modules) |
| 759 | modules="yes" |
| 760 | ;; |
Stefan Hajnoczi | 3aa88b3 | 2015-11-02 14:06:23 +0000 | [diff] [blame] | 761 | --disable-modules) |
| 762 | modules="no" |
| 763 | ;; |
Juan Quintela | 2ff6b91 | 2009-08-03 14:45:55 +0200 | [diff] [blame] | 764 | --cpu=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 765 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 766 | --target-list=*) target_list="$optarg" |
Alex Bennée | 447e133 | 2019-03-19 11:59:12 +0000 | [diff] [blame] | 767 | 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 |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 775 | ;; |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 776 | --with-default-devices) meson_option_add -Ddefault_devices=true |
Paolo Bonzini | f349474 | 2019-01-23 14:56:17 +0800 | [diff] [blame] | 777 | ;; |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 778 | --without-default-devices) meson_option_add -Ddefault_devices=false |
Paolo Bonzini | f349474 | 2019-01-23 14:56:17 +0800 | [diff] [blame] | 779 | ;; |
Alex Bennée | d1d5e9e | 2021-07-07 14:17:44 +0100 | [diff] [blame] | 780 | --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ée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 792 | --without-default-features) # processed above |
| 793 | ;; |
Loïc Minier | 7942769 | 2010-01-31 12:23:45 +0100 | [diff] [blame] | 794 | --static) |
| 795 | static="yes" |
Sergei Trofimovich | 17884d7 | 2012-01-31 22:03:45 +0300 | [diff] [blame] | 796 | QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 797 | ;; |
Paolo Bonzini | 0b24e75 | 2010-05-26 16:08:26 +0200 | [diff] [blame] | 798 | --bindir=*) bindir="$optarg" |
| 799 | ;; |
Marc-André Lureau | 77433a5 | 2020-08-26 15:04:12 +0400 | [diff] [blame] | 800 | --with-suffix=*) qemu_suffix="$optarg" |
Eduardo Habkost | 023d3d6 | 2012-04-18 16:55:50 -0300 | [diff] [blame] | 801 | ;; |
Olaf Hering | 181ce1d | 2018-04-18 09:50:44 +0200 | [diff] [blame] | 802 | --host=*|--build=*|\ |
| 803 | --disable-dependency-tracking|\ |
Luiz Capitulino | 785c23a | 2012-10-03 18:35:57 -0300 | [diff] [blame] | 804 | --sbindir=*|--sharedstatedir=*|\ |
Paolo Bonzini | fe0038b | 2020-10-16 04:35:10 -0400 | [diff] [blame] | 805 | --oldincludedir=*|--datarootdir=*|--infodir=*|\ |
Max Filippov | 023ddd7 | 2011-11-24 16:11:31 +0400 | [diff] [blame] | 806 | --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 | ;; |
aurel32 | f839394 | 2009-04-13 18:45:38 +0000 | [diff] [blame] | 812 | --enable-debug-tcg) debug_tcg="yes" |
| 813 | ;; |
| 814 | --disable-debug-tcg) debug_tcg="no" |
| 815 | ;; |
Paul Brook | f3d08ee | 2009-06-04 11:39:04 +0100 | [diff] [blame] | 816 | --enable-debug) |
| 817 | # Enable debugging options that aren't excessively noisy |
| 818 | debug_tcg="yes" |
Paolo Bonzini | c55cf6a | 2021-10-13 11:46:09 +0200 | [diff] [blame] | 819 | meson_option_parse --enable-debug-mutex "" |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 820 | meson_option_add -Doptimization=0 |
John Snow | b553a04 | 2015-11-03 15:43:42 -0500 | [diff] [blame] | 821 | fortify_source="no" |
Paul Brook | f3d08ee | 2009-06-04 11:39:04 +0100 | [diff] [blame] | 822 | ;; |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 823 | --enable-sanitizers) sanitizers="yes" |
| 824 | ;; |
| 825 | --disable-sanitizers) sanitizers="no" |
| 826 | ;; |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 827 | --enable-tsan) tsan="yes" |
| 828 | ;; |
| 829 | --disable-tsan) tsan="no" |
| 830 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 831 | --disable-tcg) tcg="disabled" |
Alex Bennée | d1a1425 | 2021-07-09 15:29:54 +0100 | [diff] [blame] | 832 | plugins="no" |
Paolo Bonzini | b3f6ea7 | 2017-07-03 16:59:07 +0200 | [diff] [blame] | 833 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 834 | --enable-tcg) tcg="enabled" |
Paolo Bonzini | b3f6ea7 | 2017-07-03 16:59:07 +0200 | [diff] [blame] | 835 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 836 | --disable-system) softmmu="no" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 837 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 838 | --enable-system) softmmu="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 839 | ;; |
Zachary Amsden | 0953a80 | 2009-07-30 00:14:59 -1000 | [diff] [blame] | 840 | --disable-user) |
| 841 | linux_user="no" ; |
| 842 | bsd_user="no" ; |
Zachary Amsden | 0953a80 | 2009-07-30 00:14:59 -1000 | [diff] [blame] | 843 | ;; |
| 844 | --enable-user) ;; |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 845 | --disable-linux-user) linux_user="no" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 846 | ;; |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 847 | --enable-linux-user) linux_user="yes" |
| 848 | ;; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 849 | --disable-bsd-user) bsd_user="no" |
| 850 | ;; |
| 851 | --enable-bsd-user) bsd_user="yes" |
| 852 | ;; |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 853 | --enable-pie) pie="yes" |
Kirill A. Shutemov | 34005a0 | 2009-09-12 02:17:55 +0300 | [diff] [blame] | 854 | ;; |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 855 | --disable-pie) pie="no" |
Kirill A. Shutemov | 34005a0 | 2009-09-12 02:17:55 +0300 | [diff] [blame] | 856 | ;; |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 857 | --enable-werror) werror="yes" |
| 858 | ;; |
| 859 | --disable-werror) werror="no" |
| 860 | ;; |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 861 | --enable-stack-protector) stack_protector="yes" |
| 862 | ;; |
| 863 | --disable-stack-protector) stack_protector="no" |
| 864 | ;; |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 865 | --enable-safe-stack) safe_stack="yes" |
| 866 | ;; |
| 867 | --disable-safe-stack) safe_stack="no" |
| 868 | ;; |
Daniele Buono | 9e62ba4 | 2020-12-04 18:06:14 -0500 | [diff] [blame] | 869 | --enable-cfi) |
| 870 | cfi="true"; |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 871 | meson_option_add -Db_lto=true |
Daniele Buono | 9e62ba4 | 2020-12-04 18:06:14 -0500 | [diff] [blame] | 872 | ;; |
| 873 | --disable-cfi) cfi="false" |
| 874 | ;; |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 875 | --disable-fdt) fdt="disabled" |
Juan Quintela | 2df87df | 2009-08-12 18:29:54 +0200 | [diff] [blame] | 876 | ;; |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 877 | --enable-fdt) fdt="enabled" |
| 878 | ;; |
| 879 | --enable-fdt=git) fdt="internal" |
| 880 | ;; |
Paolo Bonzini | 03a3c0b | 2021-10-07 15:08:27 +0200 | [diff] [blame] | 881 | --enable-fdt=*) fdt="$optarg" |
Juan Quintela | 2df87df | 2009-08-12 18:29:54 +0200 | [diff] [blame] | 882 | ;; |
Alex Barcelo | 519175a | 2012-02-28 12:25:50 +0100 | [diff] [blame] | 883 | --with-coroutine=*) coroutine="$optarg" |
| 884 | ;; |
Daniel P. Berrange | cc84d63 | 2017-10-20 15:02:43 +0100 | [diff] [blame] | 885 | --with-git=*) git="$optarg" |
| 886 | ;; |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 887 | --with-git-submodules=*) |
| 888 | git_submodules_action="$optarg" |
Daniel P. Berrange | f62bbee | 2017-10-26 13:52:26 +0100 | [diff] [blame] | 889 | ;; |
Alex Bennée | 9b8e429 | 2021-07-09 15:29:56 +0100 | [diff] [blame] | 890 | --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ée | 40e8c6f | 2019-06-13 14:52:25 +0100 | [diff] [blame] | 895 | ;; |
| 896 | --disable-plugins) plugins="no" |
| 897 | ;; |
Alex Bennée | afc3a8f | 2019-11-28 16:35:24 +0100 | [diff] [blame] | 898 | --enable-containers) use_containers="yes" |
| 899 | ;; |
| 900 | --disable-containers) use_containers="no" |
| 901 | ;; |
Alex Bennée | f48e590 | 2020-03-16 17:21:48 +0000 | [diff] [blame] | 902 | --gdb=*) gdb_bin="$optarg" |
| 903 | ;; |
Jagannathan Raman | 5511696 | 2022-06-13 16:26:24 -0400 | [diff] [blame] | 904 | --enable-vfio-user-server) vfio_user_server="enabled" |
| 905 | ;; |
| 906 | --disable-vfio-user-server) vfio_user_server="disabled" |
| 907 | ;; |
Paolo Bonzini | 3b4da13 | 2021-10-07 15:08:29 +0200 | [diff] [blame] | 908 | # everything else has the same name in configure and meson |
Paolo Bonzini | 4fda601 | 2022-04-20 17:33:51 +0200 | [diff] [blame] | 909 | --*) meson_option_parse "$opt" "$optarg" |
balrog | 7f1559c | 2007-11-17 10:24:32 +0000 | [diff] [blame] | 910 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 911 | esac |
| 912 | done |
| 913 | |
Alex Bennée | d1a1425 | 2021-07-09 15:29:54 +0100 | [diff] [blame] | 914 | # test for any invalid configuration combinations |
| 915 | if test "$plugins" = "yes" -a "$tcg" = "disabled"; then |
| 916 | error_exit "Can't enable plugins on non-TCG builds" |
| 917 | fi |
| 918 | |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 919 | case $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 Bonzini | b80fd28 | 2021-05-12 09:18:55 +0200 | [diff] [blame] | 927 | 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 Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 949 | ;; |
| 950 | *) |
| 951 | echo "ERROR: invalid --with-git-submodules= value '$git_submodules_action'" |
| 952 | exit 1 |
| 953 | ;; |
| 954 | esac |
| 955 | |
Peter Maydell | 60e0df2 | 2011-05-03 14:50:13 +0100 | [diff] [blame] | 956 | default_target_list="" |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 957 | mak_wilds="" |
| 958 | |
Paolo Bonzini | b915a2f | 2021-11-09 10:10:41 +0100 | [diff] [blame] | 959 | if [ "$linux_user" != no ]; then |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 960 | if [ "$targetos" = linux ] && [ -d "$source_path/linux-user/include/host/$cpu" ]; then |
Paolo Bonzini | b915a2f | 2021-11-09 10:10:41 +0100 | [diff] [blame] | 961 | linux_user=yes |
| 962 | elif [ "$linux_user" = yes ]; then |
| 963 | error_exit "linux-user not supported on this architecture" |
| 964 | fi |
| 965 | fi |
| 966 | if [ "$bsd_user" != no ]; then |
| 967 | if [ "$bsd_user" = "" ]; then |
| 968 | test $targetos = freebsd && bsd_user=yes |
| 969 | fi |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 970 | if [ "$bsd_user" = yes ] && ! [ -d "$source_path/bsd-user/$targetos" ]; then |
Paolo Bonzini | b915a2f | 2021-11-09 10:10:41 +0100 | [diff] [blame] | 971 | error_exit "bsd-user not supported on this host OS" |
| 972 | fi |
| 973 | fi |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 974 | if [ "$softmmu" = "yes" ]; then |
Alex Bennée | 812b31d | 2021-07-07 14:17:43 +0100 | [diff] [blame] | 975 | mak_wilds="${mak_wilds} $source_path/configs/targets/*-softmmu.mak" |
Peter Maydell | 60e0df2 | 2011-05-03 14:50:13 +0100 | [diff] [blame] | 976 | fi |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 977 | if [ "$linux_user" = "yes" ]; then |
Alex Bennée | 812b31d | 2021-07-07 14:17:43 +0100 | [diff] [blame] | 978 | mak_wilds="${mak_wilds} $source_path/configs/targets/*-linux-user.mak" |
Peter Maydell | 60e0df2 | 2011-05-03 14:50:13 +0100 | [diff] [blame] | 979 | fi |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 980 | if [ "$bsd_user" = "yes" ]; then |
Alex Bennée | 812b31d | 2021-07-07 14:17:43 +0100 | [diff] [blame] | 981 | mak_wilds="${mak_wilds} $source_path/configs/targets/*-bsd-user.mak" |
Peter Maydell | 60e0df2 | 2011-05-03 14:50:13 +0100 | [diff] [blame] | 982 | fi |
| 983 | |
Alex Bennée | 2d838d9 | 2020-09-09 12:27:37 +0100 | [diff] [blame] | 984 | for config in $mak_wilds; do |
| 985 | target="$(basename "$config" .mak)" |
Alex Bennée | 98db9a0 | 2020-09-15 14:43:14 +0100 | [diff] [blame] | 986 | if echo "$target_list_exclude" | grep -vq "$target"; then |
Alex Bennée | 2d838d9 | 2020-09-09 12:27:37 +0100 | [diff] [blame] | 987 | default_target_list="${default_target_list} $target" |
| 988 | fi |
| 989 | done |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 990 | |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 991 | if test x"$show_help" = x"yes" ; then |
| 992 | cat << EOF |
| 993 | |
| 994 | Usage: configure [options] |
| 995 | Options: [defaults in brackets after descriptions] |
| 996 | |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 997 | Standard options: |
| 998 | --help print this message |
| 999 | --prefix=PREFIX install in PREFIX [$prefix] |
Thomas Huth | 74154d7 | 2022-01-12 11:27:22 +0000 | [diff] [blame] | 1000 | --target-list=LIST set target list (default: build all) |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1001 | $(echo Available targets: $default_target_list | \ |
| 1002 | fold -s -w 53 | sed -e 's/^/ /') |
Alex Bennée | 447e133 | 2019-03-19 11:59:12 +0000 | [diff] [blame] | 1003 | --target-list-exclude=LIST exclude a set of targets from the default target-list |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1004 | |
| 1005 | Advanced options (experts only): |
Joelle van Dyne | 3812c0c | 2021-01-25 17:24:48 -0800 | [diff] [blame] | 1006 | --cross-prefix=PREFIX use PREFIX for compile tools, PREFIX can be blank [$cross_prefix] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1007 | --cc=CC use C compiler CC [$cc] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1008 | --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 Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 1012 | --extra-cflags=CFLAGS append extra C compiler flags CFLAGS |
| 1013 | --extra-cxxflags=CXXFLAGS append extra C++ compiler flags CXXFLAGS |
Philippe Mathieu-Daudé | e910c7d | 2022-01-08 22:38:55 +0100 | [diff] [blame] | 1014 | --extra-objcflags=OBJCFLAGS append extra Objective C compiler flags OBJCFLAGS |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1015 | --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 1016 | --cross-cc-ARCH=CC use compiler when building ARCH guest test cases |
Matheus Ferst | 479ca4c | 2022-01-20 14:31:41 -0300 | [diff] [blame] | 1017 | --cross-cc-cflags-ARCH= use compiler flags when building ARCH guest tests |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1018 | --cross-prefix-ARCH=PREFIX cross compiler prefix when building ARCH guest test cases |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1019 | --make=MAKE use specified make [$make] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1020 | --python=PYTHON use specified python [$python] |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1021 | --meson=MESON use specified meson [$meson] |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 1022 | --ninja=NINJA use specified ninja [$ninja] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1023 | --smbd=SMBD use specified smbd [$smbd] |
Thomas Huth | db1b5f1 | 2018-03-27 17:09:30 +0200 | [diff] [blame] | 1024 | --with-git=GIT use specified git [$git] |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 1025 | --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 Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1028 | --static enable static build [$static] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1029 | --bindir=PATH install binaries in PATH |
Marc-André Lureau | ca8c090 | 2020-08-26 15:04:14 +0400 | [diff] [blame] | 1030 | --with-suffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir/docdir [$qemu_suffix] |
Paolo Bonzini | c035c8d | 2020-12-14 11:34:47 +0100 | [diff] [blame] | 1031 | --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ée | d1d5e9e | 2021-07-07 14:17:44 +0100 | [diff] [blame] | 1034 | desired devices in configs/devices/) |
| 1035 | --with-devices-ARCH=NAME override default configs/devices |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1036 | --enable-debug enable common debug build options |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1037 | --enable-sanitizers enable default sanitizers |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 1038 | --enable-tsan enable thread sanitizer |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1039 | --disable-werror disable compilation abort on warning |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 1040 | --disable-stack-protector disable compiler-provided stack protection |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1041 | --cpu=CPU Build for host CPU [$cpu] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1042 | --with-coroutine=BACKEND coroutine backend. Supported options: |
Daniel P. Berrange | 33c53c5 | 2017-04-28 13:24:44 +0100 | [diff] [blame] | 1043 | ucontext, sigaltstack, windows |
Alex Bennée | 40e8c6f | 2019-06-13 14:52:25 +0100 | [diff] [blame] | 1044 | --enable-plugins |
| 1045 | enable plugins via shared library loading |
Alex Bennée | afc3a8f | 2019-11-28 16:35:24 +0100 | [diff] [blame] | 1046 | --disable-containers don't use containers for cross-building |
Alex Bennée | f48e590 | 2020-03-16 17:21:48 +0000 | [diff] [blame] | 1047 | --gdb=GDB-path gdb to use for gdbstub tests [$gdb_bin] |
Paolo Bonzini | 61d6309 | 2021-10-07 15:08:28 +0200 | [diff] [blame] | 1048 | EOF |
| 1049 | meson_options_help |
| 1050 | cat << EOF |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1051 | 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 Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1055 | pie Position Independent Executables |
Marc-André Lureau | 21e709a | 2019-07-18 16:04:13 +0400 | [diff] [blame] | 1056 | modules modules support (non-Windows) |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1057 | debug-tcg TCG debugging (default is disabled) |
| 1058 | debug-info debugging information |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 1059 | safe-stack SafeStack Stack Smash Protection. Depends on |
Thomas Huth | 74a1b25 | 2023-01-31 19:02:39 +0100 | [diff] [blame] | 1060 | clang/llvm and requires coroutine backend ucontext. |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1061 | |
| 1062 | NOTE: The object files are built at the place where configure is launched |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 1063 | EOF |
Fam Zheng | 2d2ad6d | 2014-04-18 14:55:36 +0800 | [diff] [blame] | 1064 | exit 0 |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 1065 | fi |
| 1066 | |
Thomas Huth | 9c79024 | 2019-03-11 11:20:34 +0100 | [diff] [blame] | 1067 | # Remove old dependency files to make sure that they get properly regenerated |
Peter Maydell | 002d8c1 | 2022-08-25 16:07:00 +0100 | [diff] [blame] | 1068 | rm -f ./*/config-devices.mak.d |
Thomas Huth | 9c79024 | 2019-03-11 11:20:34 +0100 | [diff] [blame] | 1069 | |
Daniel P. Berrangé | faf4414 | 2019-03-27 17:07:01 +0000 | [diff] [blame] | 1070 | if test -z "$python" |
| 1071 | then |
John Snow | fee6d41 | 2023-02-10 01:31:43 +0100 | [diff] [blame] | 1072 | # 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 Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1080 | fi |
John Snow | fee6d41 | 2023-02-10 01:31:43 +0100 | [diff] [blame] | 1081 | |
Roman Bolshakov | 8e2c76b | 2020-08-25 23:27:55 +0300 | [diff] [blame] | 1082 | if ! has "$make" |
| 1083 | then |
| 1084 | error_exit "GNU make ($make) not found" |
| 1085 | fi |
Stefan Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1086 | |
John Snow | fee6d41 | 2023-02-10 01:31:43 +0100 | [diff] [blame] | 1087 | if ! check_py_version "$python"; then |
Thomas Huth | 1b11f28 | 2020-09-25 16:40:27 +0100 | [diff] [blame] | 1088 | error_exit "Cannot use '$python', Python >= 3.6 is required." \ |
Stefan Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1089 | "Use --python=/path/to/python to specify a supported Python." |
| 1090 | fi |
| 1091 | |
Paolo Bonzini | 462a656 | 2023-02-10 17:18:54 +0100 | [diff] [blame] | 1092 | # Resolve PATH + suppress writing compiled files |
| 1093 | python="$(command -v "$python") -B" |
| 1094 | |
| 1095 | has_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 Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1107 | |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1108 | if test -z "$meson"; then |
Paolo Bonzini | 462a656 | 2023-02-10 17:18:54 +0100 | [diff] [blame] | 1109 | if test "$explicit_python" = no && has_meson && version_ge "$(meson --version)" 0.61.5; then |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1110 | meson=meson |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 1111 | elif test "$git_submodules_action" != 'ignore' ; then |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1112 | 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 |
| 1122 | else |
| 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 Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1135 | fi |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1136 | |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1137 | if test "$meson" = git; then |
| 1138 | git_submodules="${git_submodules} meson" |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1139 | fi |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1140 | |
| 1141 | case "$meson" in |
| 1142 | git | internal) |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1143 | meson="$python ${source_path}/meson/meson.py" |
| 1144 | ;; |
Paolo Bonzini | 84ec0c2 | 2020-09-04 10:00:26 -0400 | [diff] [blame] | 1145 | *) meson=$(command -v "$meson") ;; |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1146 | esac |
| 1147 | |
Paolo Bonzini | 09e9332 | 2020-08-13 09:28:11 -0400 | [diff] [blame] | 1148 | # Probe for ninja |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 1149 | |
| 1150 | if 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 Bonzini | 09e9332 | 2020-08-13 09:28:11 -0400 | [diff] [blame] | 1157 | if test -z "$ninja"; then |
| 1158 | error_exit "Cannot find Ninja" |
| 1159 | fi |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 1160 | fi |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1161 | |
Daniel Henrique Barboza | 9aae6e5 | 2017-11-02 07:09:06 -0200 | [diff] [blame] | 1162 | # 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. |
| 1166 | write_c_skeleton; |
| 1167 | if compile_object ; then |
| 1168 | : C compiler works ok |
| 1169 | else |
| 1170 | error_exit "\"$cc\" either does not exist or does not work" |
| 1171 | fi |
| 1172 | if ! compile_prog ; then |
| 1173 | error_exit "\"$cc\" cannot build an executable (is your linker broken?)" |
| 1174 | fi |
| 1175 | |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 1176 | # Consult white-list to determine whether to enable werror |
| 1177 | # by default. Only enable by default for git builds |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 1178 | if test -z "$werror" ; then |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 1179 | if test "$git_submodules_action" != "ignore" && \ |
Eric Blake | e633a5c | 2019-02-04 20:39:37 -0600 | [diff] [blame] | 1180 | { test "$linux" = "yes" || test "$mingw32" = "yes"; }; then |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 1181 | werror="yes" |
| 1182 | else |
| 1183 | werror="no" |
| 1184 | fi |
| 1185 | fi |
| 1186 | |
Paolo Bonzini | 975ff03 | 2020-11-20 10:34:10 +0100 | [diff] [blame] | 1187 | if test "$targetos" = "bogus"; then |
Peter Maydell | fb59dab | 2017-03-28 14:01:52 +0100 | [diff] [blame] | 1188 | # 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 Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 1192 | error_exit "Unrecognized host OS (uname -s reports '$(uname -s)')" |
Peter Maydell | fb59dab | 2017-03-28 14:01:52 +0100 | [diff] [blame] | 1193 | fi |
| 1194 | |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 1195 | # Check whether the compiler matches our minimum requirements: |
| 1196 | cat > $TMPC << EOF |
| 1197 | #if defined(__clang_major__) && defined(__clang_minor__) |
| 1198 | # ifdef __apple_build_version__ |
Thomas Huth | 74a1b25 | 2023-01-31 19:02:39 +0100 | [diff] [blame] | 1199 | # if __clang_major__ < 12 || (__clang_major__ == 12 && __clang_minor__ < 0) |
| 1200 | # error You need at least XCode Clang v12.0 to compile QEMU |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 1201 | # endif |
| 1202 | # else |
Thomas Huth | 74a1b25 | 2023-01-31 19:02:39 +0100 | [diff] [blame] | 1203 | # if __clang_major__ < 10 || (__clang_major__ == 10 && __clang_minor__ < 0) |
| 1204 | # error You need at least Clang v10.0 to compile QEMU |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 1205 | # endif |
| 1206 | # endif |
| 1207 | #elif defined(__GNUC__) && defined(__GNUC_MINOR__) |
nia | 3830df5 | 2021-10-01 15:30:03 +0000 | [diff] [blame] | 1208 | # if __GNUC__ < 7 || (__GNUC__ == 7 && __GNUC_MINOR__ < 4) |
| 1209 | # error You need at least GCC v7.4.0 to compile QEMU |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 1210 | # endif |
| 1211 | #else |
| 1212 | # error You either need GCC or Clang to compiler QEMU |
| 1213 | #endif |
| 1214 | int main (void) { return 0; } |
| 1215 | EOF |
| 1216 | if ! compile_prog "" "" ; then |
Thomas Huth | 74a1b25 | 2023-01-31 19:02:39 +0100 | [diff] [blame] | 1217 | error_exit "You need at least GCC v7.4 or Clang v10.0 (or XCode Clang v12.0)" |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 1218 | fi |
| 1219 | |
Richard Henderson | 00849b9 | 2020-06-17 13:13:06 -0700 | [diff] [blame] | 1220 | # 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 | |
| 1226 | warn_flags= |
Paolo Bonzini | ca9b5c2 | 2022-10-12 14:21:22 +0200 | [diff] [blame] | 1227 | add_to warn_flags -Wundef |
| 1228 | add_to warn_flags -Wwrite-strings |
| 1229 | add_to warn_flags -Wmissing-prototypes |
| 1230 | add_to warn_flags -Wstrict-prototypes |
| 1231 | add_to warn_flags -Wredundant-decls |
Richard Henderson | 00849b9 | 2020-06-17 13:13:06 -0700 | [diff] [blame] | 1232 | add_to warn_flags -Wold-style-declaration |
| 1233 | add_to warn_flags -Wold-style-definition |
| 1234 | add_to warn_flags -Wtype-limits |
| 1235 | add_to warn_flags -Wformat-security |
| 1236 | add_to warn_flags -Wformat-y2k |
| 1237 | add_to warn_flags -Winit-self |
| 1238 | add_to warn_flags -Wignored-qualifiers |
| 1239 | add_to warn_flags -Wempty-body |
| 1240 | add_to warn_flags -Wnested-externs |
| 1241 | add_to warn_flags -Wendif-labels |
| 1242 | add_to warn_flags -Wexpansion-to-defined |
Thomas Huth | 0a2ebce | 2020-12-11 16:24:26 +0100 | [diff] [blame] | 1243 | add_to warn_flags -Wimplicit-fallthrough=2 |
Daniel P. Berrangé | 88a0ef0 | 2022-12-19 08:02:05 -0500 | [diff] [blame] | 1244 | add_to warn_flags -Wmissing-format-attribute |
Thomas Huth | 2946e1a | 2023-03-01 12:34:25 +0100 | [diff] [blame] | 1245 | |
| 1246 | if test "$targetos" != "darwin"; then |
| 1247 | add_to warn_flags -Wthread-safety |
| 1248 | fi |
Richard Henderson | 00849b9 | 2020-06-17 13:13:06 -0700 | [diff] [blame] | 1249 | |
| 1250 | nowarn_flags= |
| 1251 | add_to nowarn_flags -Wno-initializer-overrides |
| 1252 | add_to nowarn_flags -Wno-missing-include-dirs |
| 1253 | add_to nowarn_flags -Wno-shift-negative-value |
| 1254 | add_to nowarn_flags -Wno-string-plus-int |
| 1255 | add_to nowarn_flags -Wno-typedef-redefinition |
Richard Henderson | aabab96 | 2020-06-17 13:13:07 -0700 | [diff] [blame] | 1256 | add_to nowarn_flags -Wno-tautological-type-limit-compare |
Richard Henderson | bac8d22 | 2020-06-17 13:13:08 -0700 | [diff] [blame] | 1257 | add_to nowarn_flags -Wno-psabi |
Chenyi Qiang | 28d01b1 | 2022-09-15 17:10:34 +0800 | [diff] [blame] | 1258 | add_to nowarn_flags -Wno-gnu-variable-sized-type-not-at-end |
Richard Henderson | 00849b9 | 2020-06-17 13:13:06 -0700 | [diff] [blame] | 1259 | |
| 1260 | gcc_flags="$warn_flags $nowarn_flags" |
John Snow | 93b2586 | 2015-03-25 18:57:37 -0400 | [diff] [blame] | 1261 | |
| 1262 | cc_has_warning_flag() { |
| 1263 | write_c_skeleton; |
| 1264 | |
Peter Maydell | a1d29d6 | 2012-10-27 22:19:07 +0100 | [diff] [blame] | 1265 | # 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 Snow | 93b2586 | 2015-03-25 18:57:37 -0400 | [diff] [blame] | 1268 | optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')" |
| 1269 | compile_prog "-Werror $optflag" "" |
| 1270 | } |
| 1271 | |
Philippe Mathieu-Daudé | 4cb37d1 | 2022-02-15 16:15:13 +0100 | [diff] [blame] | 1272 | objcc_has_warning_flag() { |
| 1273 | cat > $TMPM <<EOF |
| 1274 | int main(void) { return 0; } |
| 1275 | EOF |
| 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 Snow | 93b2586 | 2015-03-25 18:57:37 -0400 | [diff] [blame] | 1286 | for flag in $gcc_flags; do |
| 1287 | if cc_has_warning_flag $flag ; then |
| 1288 | QEMU_CFLAGS="$QEMU_CFLAGS $flag" |
Paolo Bonzini | 8d05095 | 2010-12-23 11:43:52 +0100 | [diff] [blame] | 1289 | fi |
Philippe Mathieu-Daudé | 4cb37d1 | 2022-02-15 16:15:13 +0100 | [diff] [blame] | 1290 | if objcc_has_warning_flag $flag ; then |
| 1291 | QEMU_OBJCFLAGS="$QEMU_OBJCFLAGS $flag" |
| 1292 | fi |
Paolo Bonzini | 8d05095 | 2010-12-23 11:43:52 +0100 | [diff] [blame] | 1293 | done |
| 1294 | |
Miroslav Rezanina | 3b463a3 | 2014-07-02 10:05:24 +0200 | [diff] [blame] | 1295 | if test "$stack_protector" != "no"; then |
Rodrigo Rebello | fccd35a | 2015-11-12 12:04:28 -0200 | [diff] [blame] | 1296 | cat > $TMPC << EOF |
| 1297 | int main(int argc, char *argv[]) |
| 1298 | { |
Stefan Weil | 8a0afbb | 2022-11-02 21:22:58 +0100 | [diff] [blame] | 1299 | char arr[64], *p = arr, *c = argv[argc - 1]; |
Rodrigo Rebello | fccd35a | 2015-11-12 12:04:28 -0200 | [diff] [blame] | 1300 | while (*c) { |
| 1301 | *p++ = *c++; |
| 1302 | } |
| 1303 | return 0; |
| 1304 | } |
| 1305 | EOF |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 1306 | gcc_flags="-fstack-protector-strong -fstack-protector-all" |
Miroslav Rezanina | 3b463a3 | 2014-07-02 10:05:24 +0200 | [diff] [blame] | 1307 | sp_on=0 |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 1308 | for flag in $gcc_flags; do |
Peter Maydell | 590e5dd | 2014-04-11 17:13:52 +0100 | [diff] [blame] | 1309 | # 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 Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 1311 | if compile_object "-Werror $flag" && |
Peter Maydell | 590e5dd | 2014-04-11 17:13:52 +0100 | [diff] [blame] | 1312 | compile_prog "-Werror $flag" ""; then |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 1313 | QEMU_CFLAGS="$QEMU_CFLAGS $flag" |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 1314 | QEMU_LDFLAGS="$QEMU_LDFLAGS $flag" |
Miroslav Rezanina | 3b463a3 | 2014-07-02 10:05:24 +0200 | [diff] [blame] | 1315 | sp_on=1 |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 1316 | break |
| 1317 | fi |
| 1318 | done |
Miroslav Rezanina | 3b463a3 | 2014-07-02 10:05:24 +0200 | [diff] [blame] | 1319 | 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é Lureau | 37746c5 | 2013-02-25 23:31:12 +0100 | [diff] [blame] | 1324 | fi |
| 1325 | |
Marc-André Lureau | 21e709a | 2019-07-18 16:04:13 +0400 | [diff] [blame] | 1326 | # Our module code doesn't support Windows |
| 1327 | if test "$modules" = "yes" && test "$mingw32" = "yes" ; then |
| 1328 | error_exit "Modules are not available for Windows" |
| 1329 | fi |
| 1330 | |
Alex Bennée | 5f2453a | 2021-07-09 15:29:55 +0100 | [diff] [blame] | 1331 | # Static linking is not possible with plugins, modules or PIE |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 1332 | if test "$static" = "yes" ; then |
Paolo Bonzini | aa0d1f4 | 2014-02-25 17:36:55 +0100 | [diff] [blame] | 1333 | if test "$modules" = "yes" ; then |
| 1334 | error_exit "static and modules are mutually incompatible" |
| 1335 | fi |
Alex Bennée | 5f2453a | 2021-07-09 15:29:55 +0100 | [diff] [blame] | 1336 | if test "$plugins" = "yes"; then |
| 1337 | error_exit "static and plugins are mutually incompatible" |
Alex Bennée | ba4dd2a | 2021-07-09 15:29:57 +0100 | [diff] [blame] | 1338 | else |
| 1339 | plugins="no" |
Alex Bennée | 5f2453a | 2021-07-09 15:29:55 +0100 | [diff] [blame] | 1340 | fi |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 1341 | fi |
Paolo Bonzini | 3765068 | 2021-12-10 09:55:15 +0100 | [diff] [blame] | 1342 | test "$plugins" = "" && plugins=yes |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 1343 | |
Richard Henderson | b263412 | 2019-12-17 13:54:56 -1000 | [diff] [blame] | 1344 | cat > $TMPC << EOF |
Avi Kivity | 21d4a79 | 2011-11-23 11:24:25 +0200 | [diff] [blame] | 1345 | |
| 1346 | #ifdef __linux__ |
| 1347 | # define THREAD __thread |
| 1348 | #else |
| 1349 | # define THREAD |
| 1350 | #endif |
Avi Kivity | 21d4a79 | 2011-11-23 11:24:25 +0200 | [diff] [blame] | 1351 | static THREAD int tls_var; |
Avi Kivity | 21d4a79 | 2011-11-23 11:24:25 +0200 | [diff] [blame] | 1352 | int main(void) { return tls_var; } |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 1353 | EOF |
Alex Bennée | 412aeac | 2019-08-15 19:41:51 +0000 | [diff] [blame] | 1354 | |
Alex Bennée | 977cccb | 2022-10-27 19:36:11 +0100 | [diff] [blame] | 1355 | # 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 Henderson | 1278146 | 2019-12-17 15:30:14 -1000 | [diff] [blame] | 1357 | if test "$static" = "yes"; then |
Richard Henderson | eca7a8e | 2020-04-03 20:11:50 +0100 | [diff] [blame] | 1358 | if test "$pie" != "no" && compile_prog "-Werror -fPIE -DPIE" "-static-pie"; then |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 1359 | CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS" |
Richard Henderson | 1278146 | 2019-12-17 15:30:14 -1000 | [diff] [blame] | 1360 | pie="yes" |
| 1361 | elif test "$pie" = "yes"; then |
| 1362 | error_exit "-static-pie not available due to missing toolchain support" |
| 1363 | else |
Richard Henderson | 1278146 | 2019-12-17 15:30:14 -1000 | [diff] [blame] | 1364 | pie="no" |
Warner Losh | a365689 | 2023-02-10 11:12:46 -0700 | [diff] [blame] | 1365 | QEMU_CFLAGS="-fno-pie $QEMU_CFLAGS" |
Richard Henderson | 1278146 | 2019-12-17 15:30:14 -1000 | [diff] [blame] | 1366 | fi |
| 1367 | elif test "$pie" = "no"; then |
Paolo Bonzini | b9eae9e | 2022-03-29 13:07:25 +0200 | [diff] [blame] | 1368 | 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ée | abafb64 | 2022-09-14 16:59:38 +0100 | [diff] [blame] | 1371 | QEMU_CFLAGS="-fno-pie -no-pie $QEMU_CFLAGS" |
Paolo Bonzini | b9eae9e | 2022-03-29 13:07:25 +0200 | [diff] [blame] | 1372 | fi |
Richard Henderson | eca7a8e | 2020-04-03 20:11:50 +0100 | [diff] [blame] | 1373 | elif compile_prog "-Werror -fPIE -DPIE" "-pie"; then |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 1374 | CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS" |
| 1375 | CONFIGURE_LDFLAGS="-pie $CONFIGURE_LDFLAGS" |
Richard Henderson | 2c67410 | 2019-12-17 15:15:01 -1000 | [diff] [blame] | 1376 | pie="yes" |
| 1377 | elif test "$pie" = "yes"; then |
| 1378 | error_exit "PIE not available due to missing toolchain support" |
| 1379 | else |
| 1380 | echo "Disabling PIE due to missing toolchain support" |
| 1381 | pie="no" |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 1382 | fi |
| 1383 | |
Paolo Bonzini | 09dada4 | 2013-04-17 16:26:47 +0200 | [diff] [blame] | 1384 | ########################################## |
| 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 | |
| 1389 | if test "$cpu" = "i386"; then |
| 1390 | cat > $TMPC << EOF |
| 1391 | static int sfaa(int *ptr) |
| 1392 | { |
| 1393 | return __sync_fetch_and_and(ptr, 0); |
| 1394 | } |
| 1395 | |
| 1396 | int main(void) |
| 1397 | { |
| 1398 | int val = 42; |
Stefan Weil | 1405b62 | 2013-05-11 21:46:58 +0200 | [diff] [blame] | 1399 | val = __sync_val_compare_and_swap(&val, 0, 1); |
Paolo Bonzini | 09dada4 | 2013-04-17 16:26:47 +0200 | [diff] [blame] | 1400 | sfaa(&val); |
| 1401 | return val; |
| 1402 | } |
| 1403 | EOF |
| 1404 | if ! compile_prog "" "" ; then |
| 1405 | QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS" |
| 1406 | fi |
| 1407 | fi |
| 1408 | |
Stefan Weil | afb63eb | 2012-09-26 22:04:38 +0200 | [diff] [blame] | 1409 | if test -z "${target_list+xxx}" ; then |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1410 | default_targets=yes |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 1411 | for target in $default_target_list; do |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1412 | target_list="$target_list $target" |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 1413 | done |
| 1414 | target_list="${target_list# }" |
Anthony Liguori | 121afa9 | 2012-09-14 08:17:03 -0500 | [diff] [blame] | 1415 | else |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1416 | default_targets=no |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 1417 | target_list=$(echo "$target_list" | sed -e 's/,/ /g') |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 1418 | 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 Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 1428 | done |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 1429 | fi |
Peter Maydell | 25b4833 | 2013-05-20 16:16:16 +0100 | [diff] [blame] | 1430 | |
Paolo Bonzini | f55fe27 | 2010-05-26 16:08:17 +0200 | [diff] [blame] | 1431 | # see if system emulation was really requested |
| 1432 | case " $target_list " in |
| 1433 | *"-softmmu "*) softmmu=yes |
| 1434 | ;; |
| 1435 | *) softmmu=no |
| 1436 | ;; |
| 1437 | esac |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 1438 | |
Philippe Mathieu-Daudé | 7630156 | 2022-02-04 15:54:47 +0100 | [diff] [blame] | 1439 | if test "$tcg" = "auto"; then |
| 1440 | if test -z "$target_list"; then |
| 1441 | tcg="disabled" |
| 1442 | else |
| 1443 | tcg="enabled" |
| 1444 | fi |
| 1445 | fi |
| 1446 | |
| 1447 | if test "$tcg" = "enabled"; then |
| 1448 | git_submodules="$git_submodules tests/fp/berkeley-testfloat-3" |
| 1449 | git_submodules="$git_submodules tests/fp/berkeley-softfloat-3" |
| 1450 | fi |
| 1451 | |
Michal Privoznik | 33ab5f2 | 2022-10-14 09:30:15 +0200 | [diff] [blame] | 1452 | ########################################## |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1453 | # big/little endian test |
| 1454 | cat > $TMPC << EOF |
Michal Privoznik | 33ab5f2 | 2022-10-14 09:30:15 +0200 | [diff] [blame] | 1455 | #if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ |
| 1456 | # error LITTLE |
| 1457 | #endif |
| 1458 | int main(void) { return 0; } |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1459 | EOF |
| 1460 | |
Michal Privoznik | 33ab5f2 | 2022-10-14 09:30:15 +0200 | [diff] [blame] | 1461 | if ! compile_prog ; then |
| 1462 | bigendian="no" |
Mike Frysinger | 61cc919 | 2013-06-30 23:30:18 -0400 | [diff] [blame] | 1463 | else |
Michal Privoznik | 33ab5f2 | 2022-10-14 09:30:15 +0200 | [diff] [blame] | 1464 | cat > $TMPC << EOF |
| 1465 | #if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ |
| 1466 | # error BIG |
| 1467 | #endif |
| 1468 | int main(void) { return 0; } |
| 1469 | EOF |
| 1470 | |
| 1471 | if ! compile_prog ; then |
| 1472 | bigendian="yes" |
| 1473 | else |
Mike Frysinger | 61cc919 | 2013-06-30 23:30:18 -0400 | [diff] [blame] | 1474 | echo big/little test failed |
Thomas Huth | 659eb15 | 2021-07-15 10:39:28 +0200 | [diff] [blame] | 1475 | exit 1 |
Michal Privoznik | 33ab5f2 | 2022-10-14 09:30:15 +0200 | [diff] [blame] | 1476 | fi |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1477 | fi |
| 1478 | |
Gonglei | 015a33b | 2014-07-01 20:58:08 +0800 | [diff] [blame] | 1479 | ########################################## |
Stefan Weil | 779ab5e | 2012-12-16 11:29:45 +0100 | [diff] [blame] | 1480 | # pkg-config probe |
| 1481 | |
| 1482 | if ! has "$pkg_config_exe"; then |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 1483 | error_exit "pkg-config binary '$pkg_config_exe' not found" |
Stefan Weil | 779ab5e | 2012-12-16 11:29:45 +0100 | [diff] [blame] | 1484 | fi |
| 1485 | |
| 1486 | ########################################## |
Anthony Liguori | e18df14 | 2011-07-19 14:50:29 -0500 | [diff] [blame] | 1487 | # glib support probe |
Paolo Bonzini | a52d28a | 2012-04-05 13:01:54 +0200 | [diff] [blame] | 1488 | |
Thomas Huth | 0ce9b08 | 2022-05-13 08:39:58 +0200 | [diff] [blame] | 1489 | # 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é | b4c6036 | 2021-05-14 13:04:13 +0100 | [diff] [blame] | 1491 | glib_req_ver=2.56 |
Paolo Bonzini | aa0d1f4 | 2014-02-25 17:36:55 +0100 | [diff] [blame] | 1492 | glib_modules=gthread-2.0 |
| 1493 | if test "$modules" = yes; then |
Gerd Hoffmann | a88afc6 | 2018-03-08 09:53:00 +0100 | [diff] [blame] | 1494 | glib_modules="$glib_modules gmodule-export-2.0" |
Paolo Bonzini | b906aca | 2021-08-11 12:05:50 +0200 | [diff] [blame] | 1495 | elif test "$plugins" = "yes"; then |
| 1496 | glib_modules="$glib_modules gmodule-no-export-2.0" |
Emilio G. Cota | 54cb65d | 2017-08-30 18:39:53 -0400 | [diff] [blame] | 1497 | fi |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 1498 | |
Paolo Bonzini | aa0d1f4 | 2014-02-25 17:36:55 +0100 | [diff] [blame] | 1499 | for i in $glib_modules; do |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 1500 | if $pkg_config --atleast-version=$glib_req_ver $i; then |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 1501 | glib_cflags=$($pkg_config --cflags $i) |
| 1502 | glib_libs=$($pkg_config --libs $i) |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 1503 | else |
| 1504 | error_exit "glib-$glib_req_ver $i is required to compile QEMU" |
| 1505 | fi |
| 1506 | done |
| 1507 | |
Emilio Cota | e3feb2c | 2023-02-05 11:37:57 -0500 | [diff] [blame] | 1508 | # 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. |
| 1511 | glib_dropped_gslice_version=2.75.3 |
| 1512 | for 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 |
| 1517 | done |
| 1518 | |
Marc-André Lureau | 5b9e7d0 | 2022-05-25 16:41:39 +0200 | [diff] [blame] | 1519 | glib_bindir="$($pkg_config --variable=bindir glib-2.0)" |
| 1520 | if test -z "$glib_bindir" ; then |
| 1521 | glib_bindir="$($pkg_config --variable=prefix glib-2.0)"/bin |
| 1522 | fi |
| 1523 | |
Paolo Bonzini | 215b0c2 | 2020-09-01 08:41:17 -0400 | [diff] [blame] | 1524 | # 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 | |
| 1527 | if test "$static" = yes && test "$mingw32" = yes; then |
| 1528 | glib_cflags="-DGLIB_STATIC_COMPILATION $glib_cflags" |
| 1529 | fi |
| 1530 | |
Daniel P. Berrange | 977a82a | 2016-01-27 09:00:45 +0000 | [diff] [blame] | 1531 | # 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 |
| 1535 | cat > $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 | |
| 1542 | int main(void) { |
| 1543 | QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T); |
| 1544 | return 0; |
| 1545 | } |
| 1546 | EOF |
| 1547 | |
Paolo Bonzini | 215b0c2 | 2020-09-01 08:41:17 -0400 | [diff] [blame] | 1548 | if ! compile_prog "$glib_cflags" "$glib_libs" ; then |
Daniel P. Berrange | 977a82a | 2016-01-27 09:00:45 +0000 | [diff] [blame] | 1549 | 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" |
| 1553 | fi |
| 1554 | |
Eric Blake | 9bda600 | 2020-03-17 12:55:34 -0500 | [diff] [blame] | 1555 | # Silence clang warnings triggered by glib < 2.57.2 |
| 1556 | cat > $TMPC << EOF |
| 1557 | #include <glib.h> |
| 1558 | typedef struct Foo { |
| 1559 | int i; |
| 1560 | } Foo; |
| 1561 | static void foo_free(Foo *f) |
| 1562 | { |
| 1563 | g_free(f); |
| 1564 | } |
Marc-André Lureau | e0e7fe0 | 2022-03-12 02:22:02 +0400 | [diff] [blame] | 1565 | G_DEFINE_AUTOPTR_CLEANUP_FUNC(Foo, foo_free) |
Eric Blake | 9bda600 | 2020-03-17 12:55:34 -0500 | [diff] [blame] | 1566 | int main(void) { return 0; } |
| 1567 | EOF |
| 1568 | if ! 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 Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 1571 | CONFIGURE_CFLAGS="$CONFIGURE_CFLAGS -Wno-unused-function" |
Eric Blake | 9bda600 | 2020-03-17 12:55:34 -0500 | [diff] [blame] | 1572 | fi |
| 1573 | fi |
| 1574 | |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 1575 | ########################################## |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame] | 1576 | # fdt probe |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1577 | |
| 1578 | case "$fdt" in |
| 1579 | auto | enabled | internal) |
| 1580 | # Simpler to always update submodule, even if not needed. |
Paolo Bonzini | 2d652f2 | 2021-05-12 09:21:56 +0200 | [diff] [blame] | 1581 | git_submodules="${git_submodules} dtc" |
Peter Maydell | e169e1e | 2013-05-24 16:26:54 +0100 | [diff] [blame] | 1582 | ;; |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1583 | esac |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame] | 1584 | |
Michael Walle | 20ff075 | 2011-03-07 23:32:39 +0100 | [diff] [blame] | 1585 | ########################################## |
Alex Barcelo | 519175a | 2012-02-28 12:25:50 +0100 | [diff] [blame] | 1586 | # check and set a backend for coroutine |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 1587 | |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1588 | # We prefer ucontext, but it's not always possible. The fallback |
Daniel P. Berrange | 33c53c5 | 2017-04-28 13:24:44 +0100 | [diff] [blame] | 1589 | # is sigcontext. On Windows the only valid backend is the Windows |
| 1590 | # specific one. |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1591 | |
| 1592 | ucontext_works=no |
| 1593 | if test "$darwin" != "yes"; then |
| 1594 | cat > $TMPC << EOF |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 1595 | #include <ucontext.h> |
Peter Maydell | cdf8480 | 2012-02-23 16:20:05 +0000 | [diff] [blame] | 1596 | #ifdef __stub_makecontext |
| 1597 | #error Ignoring glibc stub makecontext which will always fail |
| 1598 | #endif |
Stefan Weil | 75cafad | 2011-12-17 09:27:29 +0100 | [diff] [blame] | 1599 | int main(void) { makecontext(0, 0, 0); return 0; } |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 1600 | EOF |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1601 | if compile_prog "" "" ; then |
| 1602 | ucontext_works=yes |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 1603 | fi |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1604 | fi |
| 1605 | |
| 1606 | if 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 Barcelo | 519175a | 2012-02-28 12:25:50 +0100 | [diff] [blame] | 1614 | else |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1615 | 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 Bonzini | 7cb5844 | 2022-08-19 18:40:46 +0200 | [diff] [blame] | 1626 | error_exit "'ucontext' backend requested but makecontext not available" |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1627 | fi |
| 1628 | ;; |
Daniel P. Berrange | 33c53c5 | 2017-04-28 13:24:44 +0100 | [diff] [blame] | 1629 | sigaltstack) |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1630 | 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.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 1638 | fi |
| 1639 | |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 1640 | ################################################## |
| 1641 | # SafeStack |
| 1642 | |
| 1643 | |
| 1644 | if test "$safe_stack" = "yes"; then |
| 1645 | cat > $TMPC << EOF |
Stefan Weil | 8a0afbb | 2022-11-02 21:22:58 +0100 | [diff] [blame] | 1646 | int main(void) |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 1647 | { |
| 1648 | #if ! __has_feature(safe_stack) |
| 1649 | #error SafeStack Disabled |
| 1650 | #endif |
| 1651 | return 0; |
| 1652 | } |
| 1653 | EOF |
| 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 |
| 1666 | else |
| 1667 | cat > $TMPC << EOF |
Stefan Weil | 8a0afbb | 2022-11-02 21:22:58 +0100 | [diff] [blame] | 1668 | int main(void) |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 1669 | { |
| 1670 | #if defined(__has_feature) |
| 1671 | #if __has_feature(safe_stack) |
| 1672 | #error SafeStack Enabled |
| 1673 | #endif |
| 1674 | #endif |
| 1675 | return 0; |
| 1676 | } |
| 1677 | EOF |
| 1678 | if 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 |
| 1689 | else # "$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 |
| 1699 | fi |
| 1700 | fi |
Peter Lieven | 7d992e4 | 2016-09-27 11:58:45 +0200 | [diff] [blame] | 1701 | |
Richard Henderson | 76a347e | 2012-12-28 14:17:02 -0800 | [diff] [blame] | 1702 | ######################################## |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 1703 | # check if ccache is interfering with |
| 1704 | # semantic analysis of macros |
| 1705 | |
John Snow | 5e4dfd3 | 2015-10-28 13:56:40 -0400 | [diff] [blame] | 1706 | unset CCACHE_CPP2 |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 1707 | ccache_cpp2=no |
| 1708 | cat > $TMPC << EOF |
| 1709 | static 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 Weil | 8a0afbb | 2022-11-02 21:22:58 +0100 | [diff] [blame] | 1714 | int main(void) |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 1715 | { |
| 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 | } |
| 1724 | EOF |
| 1725 | |
| 1726 | if ! compile_object "-Werror"; then |
| 1727 | ccache_cpp2=yes |
| 1728 | fi |
| 1729 | |
John Snow | b553a04 | 2015-11-03 15:43:42 -0500 | [diff] [blame] | 1730 | ################################################# |
| 1731 | # clang does not support glibc + FORTIFY_SOURCE. |
| 1732 | |
| 1733 | if test "$fortify_source" != "no"; then |
| 1734 | if echo | $cc -dM -E - | grep __clang__ > /dev/null 2>&1 ; then |
| 1735 | fortify_source="no"; |
Peter Maydell | e189091 | 2017-06-26 16:25:24 +0100 | [diff] [blame] | 1736 | elif test -n "$cxx" && has $cxx && |
John Snow | cfcc7c1 | 2015-11-12 11:29:49 -0500 | [diff] [blame] | 1737 | echo | $cxx -dM -E - | grep __clang__ >/dev/null 2>&1 ; then |
John Snow | b553a04 | 2015-11-03 15:43:42 -0500 | [diff] [blame] | 1738 | fortify_source="no"; |
| 1739 | else |
| 1740 | fortify_source="yes" |
| 1741 | fi |
| 1742 | fi |
| 1743 | |
Aneesh Kumar K.V | d204237 | 2011-10-12 19:11:24 +0530 | [diff] [blame] | 1744 | ########################################## |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1745 | # checks for sanitizers |
| 1746 | |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1747 | have_asan=no |
| 1748 | have_ubsan=no |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 1749 | have_asan_iface_h=no |
| 1750 | have_asan_iface_fiber=no |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1751 | |
| 1752 | if test "$sanitizers" = "yes" ; then |
Marc-André Lureau | b9f44da | 2018-02-15 22:25:47 +0100 | [diff] [blame] | 1753 | write_c_skeleton |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1754 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" ""; then |
| 1755 | have_asan=yes |
| 1756 | fi |
Marc-André Lureau | b9f44da | 2018-02-15 22:25:47 +0100 | [diff] [blame] | 1757 | |
| 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 Odaki | 8041e9e | 2023-04-05 16:00:30 +0900 | [diff] [blame] | 1762 | int main(int argc, char **argv) |
| 1763 | { |
| 1764 | return argc + 1; |
Marc-André Lureau | b9f44da | 2018-02-15 22:25:47 +0100 | [diff] [blame] | 1765 | } |
| 1766 | EOF |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1767 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=undefined" ""; then |
| 1768 | have_ubsan=yes |
| 1769 | fi |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 1770 | |
| 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> |
| 1777 | int main(void) { |
| 1778 | __sanitizer_start_switch_fiber(0, 0, 0); |
| 1779 | return 0; |
| 1780 | } |
| 1781 | EOF |
| 1782 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" "" ; then |
| 1783 | have_asan_iface_fiber=yes |
| 1784 | fi |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1785 | fi |
| 1786 | |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 1787 | # Thread sanitizer is, for now, much noisier than the other sanitizers; |
| 1788 | # keep it separate until that is not the case. |
| 1789 | if test "$tsan" = "yes" && test "$sanitizers" = "yes"; then |
| 1790 | error_exit "TSAN is not supported with other sanitiziers." |
| 1791 | fi |
| 1792 | have_tsan=no |
| 1793 | have_tsan_iface_fiber=no |
| 1794 | if 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> |
| 1801 | int main(void) { |
| 1802 | __tsan_create_fiber(0); |
| 1803 | return 0; |
| 1804 | } |
| 1805 | EOF |
| 1806 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then |
| 1807 | have_tsan_iface_fiber=yes |
| 1808 | fi |
| 1809 | fi |
| 1810 | |
Alexander Bulekov | adc2802 | 2020-02-19 23:11:14 -0500 | [diff] [blame] | 1811 | ########################################## |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1812 | # functions to probe cross compilers |
| 1813 | |
| 1814 | container="no" |
Alex Bennée | 60f999b | 2023-02-28 19:06:46 +0000 | [diff] [blame] | 1815 | runc="" |
Stefan Weil | 47fdc8f | 2022-11-17 17:25:20 +0000 | [diff] [blame] | 1816 | if test $use_containers = "yes" && (has "docker" || has "podman"); then |
Paolo Bonzini | c4575b5 | 2022-09-29 12:41:58 +0100 | [diff] [blame] | 1817 | 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 Bonzini | a3e28f8 | 2022-09-29 12:41:59 +0100 | [diff] [blame] | 1822 | if test "$container" != "no"; then |
| 1823 | docker_py="$python $source_path/tests/docker/docker.py --engine $container" |
Alex Bennée | 60f999b | 2023-02-28 19:06:46 +0000 | [diff] [blame] | 1824 | runc=$($python "$source_path"/tests/docker/docker.py probe) |
Paolo Bonzini | a3e28f8 | 2022-09-29 12:41:59 +0100 | [diff] [blame] | 1825 | fi |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1826 | fi |
| 1827 | |
| 1828 | # cross compilers defaults, can be overridden with --cross-cc-ARCH |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1829 | : ${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 Gao | 34bb43b | 2022-06-06 20:43:33 +0800 | [diff] [blame] | 1835 | : ${cross_prefix_loongarch64="loongarch64-unknown-linux-gnu-"} |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1836 | : ${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 Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1855 | : ${cross_cc_aarch64_be="$cross_cc_aarch64"} |
| 1856 | : ${cross_cc_cflags_aarch64_be="-mbig-endian"} |
Paolo Bonzini | 46af66e | 2022-05-27 16:35:49 +0100 | [diff] [blame] | 1857 | : ${cross_cc_armeb="$cross_cc_arm"} |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1858 | : ${cross_cc_cflags_armeb="-mbig-endian"} |
| 1859 | : ${cross_cc_hexagon="hexagon-unknown-linux-musl-clang"} |
| 1860 | : ${cross_cc_cflags_hexagon="-mv67 -O2 -static"} |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1861 | : ${cross_cc_cflags_i386="-m32"} |
Paolo Bonzini | d44f2f9 | 2022-06-15 11:42:01 +0200 | [diff] [blame] | 1862 | : ${cross_cc_cflags_ppc="-m32 -mbig-endian"} |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1863 | : ${cross_cc_cflags_ppc64="-m64 -mbig-endian"} |
| 1864 | : ${cross_cc_ppc64le="$cross_cc_ppc64"} |
| 1865 | : ${cross_cc_cflags_ppc64le="-m64 -mlittle-endian"} |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1866 | : ${cross_cc_cflags_sparc64="-m64 -mcpu=ultrasparc"} |
Paolo Bonzini | 46af66e | 2022-05-27 16:35:49 +0100 | [diff] [blame] | 1867 | : ${cross_cc_sparc="$cross_cc_sparc64"} |
| 1868 | : ${cross_cc_cflags_sparc="-m32 -mcpu=supersparc"} |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1869 | : ${cross_cc_cflags_x86_64="-m64"} |
| 1870 | |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1871 | compute_target_variable() { |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 1872 | eval "$2=" |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1873 | 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 Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1879 | |
Paolo Bonzini | 35fd22b | 2022-10-12 16:33:03 +0200 | [diff] [blame] | 1880 | have_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 Bonzini | 52f08de | 2022-07-02 15:59:02 +0200 | [diff] [blame] | 1890 | # 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 Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1901 | probe_target_compiler() { |
| 1902 | # reset all output variables |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 1903 | got_cross_cc=no |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1904 | container_image= |
| 1905 | container_hosts= |
| 1906 | container_cross_cc= |
Paolo Bonzini | 87eb014 | 2022-05-27 16:35:52 +0100 | [diff] [blame] | 1907 | container_cross_ar= |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1908 | container_cross_as= |
| 1909 | container_cross_ld= |
Paolo Bonzini | 87eb014 | 2022-05-27 16:35:52 +0100 | [diff] [blame] | 1910 | container_cross_nm= |
| 1911 | container_cross_objcopy= |
| 1912 | container_cross_ranlib= |
| 1913 | container_cross_strip= |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1914 | |
Alex Bennée | c3b570b | 2022-10-27 19:36:10 +0100 | [diff] [blame] | 1915 | # 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 Thiyagarajan | 73acb87 | 2022-12-21 09:04:06 +0000 | [diff] [blame] | 1918 | if test "${target_list#*$1}" = "$1"; then |
Alex Bennée | c3b570b | 2022-10-27 19:36:10 +0100 | [diff] [blame] | 1919 | return 1 |
| 1920 | fi |
| 1921 | |
Paolo Bonzini | 52f08de | 2022-07-02 15:59:02 +0200 | [diff] [blame] | 1922 | target_arch=${1%%-*} |
| 1923 | case $target_arch in |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1924 | 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 Henderson | b70ec50 | 2022-07-04 12:36:29 +0530 | [diff] [blame] | 1931 | loongarch64) container_hosts=x86_64 ;; |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1932 | 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 Bonzini | 52f08de | 2022-07-02 15:59:02 +0200 | [diff] [blame] | 1953 | case $target_arch in |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1954 | aarch64) |
| 1955 | # We don't have any bigendian build tools so we only use this for AArch64 |
| 1956 | container_image=debian-arm64-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1957 | container_cross_prefix=aarch64-linux-gnu- |
| 1958 | container_cross_cc=${container_cross_prefix}gcc-10 |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1959 | ;; |
| 1960 | alpha) |
| 1961 | container_image=debian-alpha-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1962 | container_cross_prefix=alpha-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1963 | ;; |
| 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 Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1967 | container_cross_prefix=arm-linux-gnueabihf- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1968 | ;; |
| 1969 | cris) |
| 1970 | container_image=fedora-cris-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1971 | container_cross_prefix=cris-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1972 | ;; |
| 1973 | hexagon) |
| 1974 | container_image=debian-hexagon-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1975 | container_cross_prefix=hexagon-unknown-linux-musl- |
| 1976 | container_cross_cc=${container_cross_prefix}clang |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1977 | ;; |
| 1978 | hppa) |
| 1979 | container_image=debian-hppa-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1980 | container_cross_prefix=hppa-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1981 | ;; |
| 1982 | i386) |
| 1983 | container_image=fedora-i386-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1984 | container_cross_prefix= |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1985 | ;; |
Richard Henderson | b70ec50 | 2022-07-04 12:36:29 +0530 | [diff] [blame] | 1986 | loongarch64) |
| 1987 | container_image=debian-loongarch-cross |
| 1988 | container_cross_prefix=loongarch64-unknown-linux-gnu- |
| 1989 | ;; |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1990 | m68k) |
| 1991 | container_image=debian-m68k-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1992 | container_cross_prefix=m68k-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1993 | ;; |
| 1994 | microblaze) |
| 1995 | container_image=debian-microblaze-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1996 | container_cross_prefix=microblaze-linux-musl- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1997 | ;; |
| 1998 | mips64el) |
| 1999 | container_image=debian-mips64el-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2000 | container_cross_prefix=mips64el-linux-gnuabi64- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2001 | ;; |
| 2002 | mips64) |
| 2003 | container_image=debian-mips64-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2004 | container_cross_prefix=mips64-linux-gnuabi64- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2005 | ;; |
| 2006 | mipsel) |
| 2007 | container_image=debian-mipsel-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2008 | container_cross_prefix=mipsel-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2009 | ;; |
| 2010 | mips) |
| 2011 | container_image=debian-mips-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2012 | container_cross_prefix=mips-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2013 | ;; |
| 2014 | nios2) |
| 2015 | container_image=debian-nios2-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2016 | container_cross_prefix=nios2-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2017 | ;; |
| 2018 | ppc) |
| 2019 | container_image=debian-powerpc-test-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2020 | container_cross_prefix=powerpc-linux-gnu- |
| 2021 | container_cross_cc=${container_cross_prefix}gcc-10 |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2022 | ;; |
| 2023 | ppc64|ppc64le) |
| 2024 | container_image=debian-powerpc-test-cross |
Richard Henderson | 705c881 | 2022-07-28 11:39:01 -0700 | [diff] [blame] | 2025 | container_cross_prefix=powerpc${target_arch#ppc}-linux-gnu- |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2026 | container_cross_cc=${container_cross_prefix}gcc-10 |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2027 | ;; |
| 2028 | riscv64) |
| 2029 | container_image=debian-riscv64-test-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2030 | container_cross_prefix=riscv64-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2031 | ;; |
| 2032 | s390x) |
| 2033 | container_image=debian-s390x-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2034 | container_cross_prefix=s390x-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2035 | ;; |
| 2036 | sh4) |
| 2037 | container_image=debian-sh4-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2038 | container_cross_prefix=sh4-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2039 | ;; |
| 2040 | sparc64) |
| 2041 | container_image=debian-sparc64-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2042 | container_cross_prefix=sparc64-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2043 | ;; |
| 2044 | tricore) |
| 2045 | container_image=debian-tricore-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2046 | container_cross_prefix=tricore- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2047 | container_cross_as=tricore-as |
| 2048 | container_cross_ld=tricore-ld |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2049 | break |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2050 | ;; |
| 2051 | x86_64) |
| 2052 | container_image=debian-amd64-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2053 | container_cross_prefix=x86_64-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2054 | ;; |
| 2055 | xtensa*) |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2056 | container_hosts=x86_64 |
| 2057 | container_image=debian-xtensa-cross |
| 2058 | |
| 2059 | # default to the dc232b cpu |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2060 | container_cross_prefix=/opt/2020.07/xtensa-dc232b-elf/bin/xtensa-dc232b-elf- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2061 | ;; |
| 2062 | esac |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2063 | : ${container_cross_cc:=${container_cross_prefix}gcc} |
Paolo Bonzini | 87eb014 | 2022-05-27 16:35:52 +0100 | [diff] [blame] | 2064 | : ${container_cross_ar:=${container_cross_prefix}ar} |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2065 | : ${container_cross_as:=${container_cross_prefix}as} |
| 2066 | : ${container_cross_ld:=${container_cross_prefix}ld} |
Paolo Bonzini | 87eb014 | 2022-05-27 16:35:52 +0100 | [diff] [blame] | 2067 | : ${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 Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2071 | done |
| 2072 | |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 2073 | try=cross |
Paolo Bonzini | 52f08de | 2022-07-02 15:59:02 +0200 | [diff] [blame] | 2074 | case "$target_arch:$cpu" in |
Paolo Bonzini | 26e7253 | 2022-06-06 10:47:45 +0200 | [diff] [blame] | 2075 | aarch64_be:aarch64 | \ |
| 2076 | armeb:arm | \ |
Paolo Bonzini | 640aabc | 2022-06-15 11:42:01 +0200 | [diff] [blame] | 2077 | i386:x86_64 | \ |
Paolo Bonzini | 26e7253 | 2022-06-06 10:47:45 +0200 | [diff] [blame] | 2078 | mips*:mips64 | \ |
Paolo Bonzini | d44f2f9 | 2022-06-15 11:42:01 +0200 | [diff] [blame] | 2079 | ppc*:ppc64 | \ |
Paolo Bonzini | 26e7253 | 2022-06-06 10:47:45 +0200 | [diff] [blame] | 2080 | sparc:sparc64 | \ |
Paolo Bonzini | 640aabc | 2022-06-15 11:42:01 +0200 | [diff] [blame] | 2081 | "$cpu:$cpu") |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 2082 | try='native cross' ;; |
Paolo Bonzini | 640aabc | 2022-06-15 11:42:01 +0200 | [diff] [blame] | 2083 | esac |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 2084 | eval "target_cflags=\${cross_cc_cflags_$target_arch}" |
Peter Maydell | b3b5472 | 2022-08-25 16:07:03 +0100 | [diff] [blame] | 2085 | for thistry in $try; do |
| 2086 | case $thistry in |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 2087 | 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 Bonzini | 2ad60f6 | 2022-05-27 16:35:50 +0100 | [diff] [blame] | 2161 | fi |
| 2162 | ;; |
| 2163 | esac |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 2164 | done |
| 2165 | if test $got_cross_cc != yes; then |
| 2166 | build_static= |
| 2167 | target_cc= |
| 2168 | target_ccas= |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 2169 | target_ar= |
| 2170 | target_as= |
| 2171 | target_ld= |
| 2172 | target_nm= |
| 2173 | target_objcopy= |
| 2174 | target_ranlib= |
| 2175 | target_strip= |
Paolo Bonzini | 2ad60f6 | 2022-05-27 16:35:50 +0100 | [diff] [blame] | 2176 | fi |
Alex Bennée | fde1096 | 2022-10-11 12:34:16 +0100 | [diff] [blame] | 2177 | test -n "$target_cc" |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2178 | } |
| 2179 | |
| 2180 | write_target_makefile() { |
Paolo Bonzini | e81785a | 2022-06-15 11:45:55 +0200 | [diff] [blame] | 2181 | echo "EXTRA_CFLAGS=$target_cflags" |
Paolo Bonzini | 0825cae | 2022-09-29 12:42:06 +0100 | [diff] [blame] | 2182 | 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 Bonzini | 87eb014 | 2022-05-27 16:35:52 +0100 | [diff] [blame] | 2222 | fi |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2223 | } |
| 2224 | |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2225 | ########################################## |
Jagannathan Raman | 5511696 | 2022-06-13 16:26:24 -0400 | [diff] [blame] | 2226 | # check for vfio_user_server |
| 2227 | |
| 2228 | case "$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 | ;; |
| 2234 | esac |
| 2235 | |
| 2236 | ########################################## |
Juan Quintela | e86ecd4 | 2009-08-03 14:45:59 +0200 | [diff] [blame] | 2237 | # End of CC checks |
| 2238 | # After here, no more $cc or $ld runs |
| 2239 | |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 2240 | write_c_skeleton |
| 2241 | |
Paolo Bonzini | df42fa7 | 2022-04-20 17:33:38 +0200 | [diff] [blame] | 2242 | if test "$fortify_source" = "yes" ; then |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 2243 | QEMU_CFLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $QEMU_CFLAGS" |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 2244 | fi |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 2245 | |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 2246 | if test "$have_asan" = "yes"; then |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 2247 | QEMU_CFLAGS="-fsanitize=address $QEMU_CFLAGS" |
| 2248 | QEMU_LDFLAGS="-fsanitize=address $QEMU_LDFLAGS" |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 2249 | 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é Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 2256 | fi |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 2257 | if 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 |
| 2264 | elif test "$tsan" = "yes" ; then |
| 2265 | error_exit "Cannot enable TSAN due to missing sanitize thread interface." |
| 2266 | fi |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 2267 | if test "$have_ubsan" = "yes"; then |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 2268 | QEMU_CFLAGS="-fsanitize=undefined $QEMU_CFLAGS" |
| 2269 | QEMU_LDFLAGS="-fsanitize=undefined $QEMU_LDFLAGS" |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 2270 | fi |
| 2271 | |
Paolo Bonzini | 33ab478 | 2022-05-27 16:35:55 +0100 | [diff] [blame] | 2272 | ####################################### |
| 2273 | # cross-compiled firmware targets |
| 2274 | |
Paolo Bonzini | ad38884 | 2022-05-27 16:35:53 +0100 | [diff] [blame] | 2275 | # 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. |
| 2283 | LINKS="Makefile" |
Thomas Huth | 201aa17 | 2023-02-28 22:15:29 +0100 | [diff] [blame] | 2284 | LINKS="$LINKS docs/config" |
Paolo Bonzini | ad38884 | 2022-05-27 16:35:53 +0100 | [diff] [blame] | 2285 | LINKS="$LINKS pc-bios/optionrom/Makefile" |
| 2286 | LINKS="$LINKS pc-bios/s390-ccw/Makefile" |
Paolo Bonzini | d695918 | 2022-05-27 16:35:56 +0100 | [diff] [blame] | 2287 | LINKS="$LINKS pc-bios/vof/Makefile" |
Paolo Bonzini | ad38884 | 2022-05-27 16:35:53 +0100 | [diff] [blame] | 2288 | LINKS="$LINKS .gdbinit scripts" # scripts needed by relative path in .gdbinit |
| 2289 | LINKS="$LINKS tests/avocado tests/data" |
| 2290 | LINKS="$LINKS tests/qemu-iotests/check" |
| 2291 | LINKS="$LINKS python" |
| 2292 | LINKS="$LINKS contrib/plugins/Makefile " |
| 2293 | for f in $LINKS ; do |
| 2294 | if [ -e "$source_path/$f" ]; then |
Peter Maydell | cc3c71e | 2022-08-25 16:07:01 +0100 | [diff] [blame] | 2295 | mkdir -p "$(dirname ./"$f")" |
Paolo Bonzini | ad38884 | 2022-05-27 16:35:53 +0100 | [diff] [blame] | 2296 | symlink "$source_path/$f" "$f" |
| 2297 | fi |
| 2298 | done |
| 2299 | |
Paolo Bonzini | b898bf2 | 2022-09-29 12:42:05 +0100 | [diff] [blame] | 2300 | echo "# Automatically generated by configure - do not modify" > Makefile.prereqs |
| 2301 | |
Paolo Bonzini | ca35f78 | 2010-05-26 16:08:29 +0200 | [diff] [blame] | 2302 | # Mac OS X ships with a broken assembler |
| 2303 | roms= |
Paolo Bonzini | 35fd22b | 2022-10-12 16:33:03 +0200 | [diff] [blame] | 2304 | if have_target i386-softmmu x86_64-softmmu && \ |
| 2305 | test "$targetos" != "darwin" && test "$targetos" != "sunos" && \ |
| 2306 | test "$targetos" != "haiku" && \ |
Paolo Bonzini | 61cbb35 | 2022-09-29 12:41:57 +0100 | [diff] [blame] | 2307 | probe_target_compiler i386-softmmu; then |
Paolo Bonzini | 7089977 | 2022-06-06 11:35:41 +0200 | [diff] [blame] | 2308 | 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ée | fde1096 | 2022-10-11 12:34:16 +0100 | [diff] [blame] | 2312 | write_target_makefile >> $config_mak |
Paolo Bonzini | ca35f78 | 2010-05-26 16:08:29 +0200 | [diff] [blame] | 2313 | fi |
Paolo Bonzini | ca35f78 | 2010-05-26 16:08:29 +0200 | [diff] [blame] | 2314 | |
Paolo Bonzini | 35fd22b | 2022-10-12 16:33:03 +0200 | [diff] [blame] | 2315 | if have_target ppc-softmmu ppc64-softmmu && \ |
| 2316 | probe_target_compiler ppc-softmmu; then |
Paolo Bonzini | 76ca98b | 2022-04-13 15:22:01 +0200 | [diff] [blame] | 2317 | roms="$roms pc-bios/vof" |
Paolo Bonzini | d695918 | 2022-05-27 16:35:56 +0100 | [diff] [blame] | 2318 | 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ée | fde1096 | 2022-10-11 12:34:16 +0100 | [diff] [blame] | 2321 | write_target_makefile >> $config_mak |
Paolo Bonzini | d695918 | 2022-05-27 16:35:56 +0100 | [diff] [blame] | 2322 | fi |
| 2323 | |
Paolo Bonzini | 9ffed42 | 2022-05-27 16:35:54 +0100 | [diff] [blame] | 2324 | # 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 Bonzini | 35fd22b | 2022-10-12 16:33:03 +0200 | [diff] [blame] | 2326 | if have_target s390x-softmmu && probe_target_compiler s390x-softmmu; then |
Alex Bennée | fde1096 | 2022-10-11 12:34:16 +0100 | [diff] [blame] | 2327 | 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 Huth | a5b2afd | 2021-05-02 13:22:21 +0200 | [diff] [blame] | 2334 | fi |
Paolo Bonzini | 76ca98b | 2022-04-13 15:22:01 +0200 | [diff] [blame] | 2335 | roms="$roms pc-bios/s390-ccw" |
Paolo Bonzini | 9ffed42 | 2022-05-27 16:35:54 +0100 | [diff] [blame] | 2336 | 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ée | fde1096 | 2022-10-11 12:34:16 +0100 | [diff] [blame] | 2339 | write_target_makefile >> $config_mak |
Philippe Mathieu-Daudé | 1ef6bfc | 2020-06-15 09:49:19 +0200 | [diff] [blame] | 2340 | # 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 Bonzini | 2d652f2 | 2021-05-12 09:21:56 +0200 | [diff] [blame] | 2342 | git_submodules="${git_submodules} roms/SLOF" |
Thomas Huth | 2e33c3f | 2019-01-14 13:52:26 +0100 | [diff] [blame] | 2343 | fi |
Christian Borntraeger | 9933c30 | 2013-04-23 01:23:03 +0000 | [diff] [blame] | 2344 | fi |
| 2345 | |
Paolo Bonzini | 9ffed42 | 2022-05-27 16:35:54 +0100 | [diff] [blame] | 2346 | ####################################### |
| 2347 | # generate config-host.mak |
| 2348 | |
Peter Maydell | 35a7a6f | 2022-07-20 16:26:27 +0100 | [diff] [blame] | 2349 | if ! (GIT="$git" "$source_path/scripts/git-submodule.sh" "$git_submodules_action" "$git_submodules"); then |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 2350 | exit 1 |
Yonggang Luo | 5d91a2e | 2020-09-03 01:00:49 +0800 | [diff] [blame] | 2351 | fi |
Yonggang Luo | 5d91a2e | 2020-09-03 01:00:49 +0800 | [diff] [blame] | 2352 | |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2353 | config_host_mak="config-host.mak" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 2354 | |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2355 | echo "# Automatically generated by configure - do not modify" > $config_host_mak |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2356 | echo >> $config_host_mak |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2357 | |
Paolo Bonzini | e6c3b0f | 2010-10-21 10:18:35 +0200 | [diff] [blame] | 2358 | echo all: >> $config_host_mak |
Daniel P. Berrange | cc84d63 | 2017-10-20 15:02:43 +0100 | [diff] [blame] | 2359 | echo "GIT=$git" >> $config_host_mak |
Daniel P. Berrange | aef45d5 | 2017-09-29 11:11:56 +0100 | [diff] [blame] | 2360 | echo "GIT_SUBMODULES=$git_submodules" >> $config_host_mak |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 2361 | echo "GIT_SUBMODULES_ACTION=$git_submodules_action" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 2362 | |
aurel32 | f839394 | 2009-04-13 18:45:38 +0000 | [diff] [blame] | 2363 | if test "$debug_tcg" = "yes" ; then |
Juan Quintela | 2358a49 | 2009-07-27 16:13:25 +0200 | [diff] [blame] | 2364 | echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak |
aurel32 | f839394 | 2009-04-13 18:45:38 +0000 | [diff] [blame] | 2365 | fi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 2366 | if test "$mingw32" = "yes" ; then |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2367 | echo "CONFIG_WIN32=y" >> $config_host_mak |
Paolo Bonzini | 954ed68 | 2022-10-12 11:35:17 +0200 | [diff] [blame] | 2368 | 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 |
pbrook | 210fa55 | 2007-02-27 21:04:49 +0000 | [diff] [blame] | 2371 | else |
Juan Quintela | 35f4df2 | 2009-07-27 16:13:07 +0200 | [diff] [blame] | 2372 | echo "CONFIG_POSIX=y" >> $config_host_mak |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 2373 | fi |
blueswir1 | 128ab2f | 2008-08-15 18:33:42 +0000 | [diff] [blame] | 2374 | |
Mark McLoughlin | dffcb71 | 2009-10-22 17:49:11 +0100 | [diff] [blame] | 2375 | if test "$linux" = "yes" ; then |
| 2376 | echo "CONFIG_LINUX=y" >> $config_host_mak |
| 2377 | fi |
| 2378 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 2379 | if test "$darwin" = "yes" ; then |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2380 | echo "CONFIG_DARWIN=y" >> $config_host_mak |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 2381 | fi |
malc | b29fe3e | 2008-11-18 01:42:22 +0000 | [diff] [blame] | 2382 | |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 2383 | if test "$solaris" = "yes" ; then |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2384 | echo "CONFIG_SOLARIS=y" >> $config_host_mak |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 2385 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 2386 | if test "$static" = "yes" ; then |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2387 | echo "CONFIG_STATIC=y" >> $config_host_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 2388 | fi |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2389 | echo "SRC_PATH=$source_path" >> $config_host_mak |
Alex Bennée | 2b1f35b | 2018-07-04 07:30:11 +0100 | [diff] [blame] | 2390 | echo "TARGET_DIRS=$target_list" >> $config_host_mak |
Fam Zheng | 1796926 | 2014-02-10 14:48:56 +0800 | [diff] [blame] | 2391 | if test "$modules" = "yes"; then |
| 2392 | echo "CONFIG_MODULES=y" >> $config_host_mak |
| 2393 | fi |
Jan Vesely | 277abf1 | 2016-04-29 13:15:23 -0400 | [diff] [blame] | 2394 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 2395 | # XXX: suppress that |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 2396 | if [ "$bsd" = "yes" ] ; then |
Juan Quintela | 2358a49 | 2009-07-27 16:13:25 +0200 | [diff] [blame] | 2397 | echo "CONFIG_BSD=y" >> $config_host_mak |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 2398 | fi |
| 2399 | |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 2400 | echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak |
Peter Lieven | 7d992e4 | 2016-09-27 11:58:45 +0200 | [diff] [blame] | 2401 | |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 2402 | if test "$have_asan_iface_fiber" = "yes" ; then |
| 2403 | echo "CONFIG_ASAN_IFACE_FIBER=y" >> $config_host_mak |
| 2404 | fi |
| 2405 | |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 2406 | if test "$have_tsan" = "yes" && test "$have_tsan_iface_fiber" = "yes" ; then |
| 2407 | echo "CONFIG_TSAN=y" >> $config_host_mak |
| 2408 | fi |
| 2409 | |
Alex Bennée | 40e8c6f | 2019-06-13 14:52:25 +0100 | [diff] [blame] | 2410 | if test "$plugins" = "yes" ; then |
| 2411 | echo "CONFIG_PLUGIN=y" >> $config_host_mak |
Alex Bennée | 40e8c6f | 2019-06-13 14:52:25 +0100 | [diff] [blame] | 2412 | fi |
| 2413 | |
Alex Bennée | b1863cc | 2021-01-08 22:42:39 +0000 | [diff] [blame] | 2414 | if test -n "$gdb_bin"; then |
| 2415 | gdb_version=$($gdb_bin --version | head -n 1) |
Alex Bennée | d6a66c8 | 2021-02-02 13:39:53 +0000 | [diff] [blame] | 2416 | if version_ge ${gdb_version##* } 9.1; then |
Alex Bennée | b1863cc | 2021-01-08 22:42:39 +0000 | [diff] [blame] | 2417 | echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak |
Alex Bennée | bcbc36a | 2023-03-02 18:57:59 -0800 | [diff] [blame] | 2418 | gdb_arches=$("$source_path/scripts/probe-gdb-support.py" $gdb_bin) |
Alex Bennée | 48543dd | 2022-09-29 12:41:45 +0100 | [diff] [blame] | 2419 | else |
| 2420 | gdb_bin="" |
Alex Bennée | b1863cc | 2021-01-08 22:42:39 +0000 | [diff] [blame] | 2421 | fi |
Alex Bennée | f48e590 | 2020-03-16 17:21:48 +0000 | [diff] [blame] | 2422 | fi |
| 2423 | |
Paolo Bonzini | c4575b5 | 2022-09-29 12:41:58 +0100 | [diff] [blame] | 2424 | if test "$container" != no; then |
| 2425 | echo "ENGINE=$container" >> $config_host_mak |
Alex Bennée | 60f999b | 2023-02-28 19:06:46 +0000 | [diff] [blame] | 2426 | echo "RUNC=$runc" >> $config_host_mak |
Paolo Bonzini | c4575b5 | 2022-09-29 12:41:58 +0100 | [diff] [blame] | 2427 | fi |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2428 | echo "ROMS=$roms" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 2429 | echo "MAKE=$make" >> $config_host_mak |
Blue Swirl | c886edf | 2011-07-22 21:08:09 +0000 | [diff] [blame] | 2430 | echo "PYTHON=$python" >> $config_host_mak |
Alex Bennée | 39d87c8 | 2020-03-03 15:06:20 +0000 | [diff] [blame] | 2431 | echo "GENISOIMAGE=$genisoimage" >> $config_host_mak |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 2432 | echo "MESON=$meson" >> $config_host_mak |
Paolo Bonzini | 09e9332 | 2020-08-13 09:28:11 -0400 | [diff] [blame] | 2433 | echo "NINJA=$ninja" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 2434 | echo "CC=$cc" >> $config_host_mak |
Juan Quintela | a558ee1 | 2009-08-03 14:46:21 +0200 | [diff] [blame] | 2435 | echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak |
Philippe Mathieu-Daudé | 4cb37d1 | 2022-02-15 16:15:13 +0100 | [diff] [blame] | 2436 | echo "QEMU_OBJCFLAGS=$QEMU_OBJCFLAGS" >> $config_host_mak |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2437 | echo "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak |
| 2438 | echo "GLIB_LIBS=$glib_libs" >> $config_host_mak |
Marc-André Lureau | 5b9e7d0 | 2022-05-25 16:41:39 +0200 | [diff] [blame] | 2439 | echo "GLIB_BINDIR=$glib_bindir" >> $config_host_mak |
Paolo Bonzini | acedc9a | 2023-01-07 14:32:41 +0100 | [diff] [blame] | 2440 | echo "GLIB_VERSION=$($pkg_config --modversion glib-2.0)" >> $config_host_mak |
Emilio Cota | e3feb2c | 2023-02-05 11:37:57 -0500 | [diff] [blame] | 2441 | if test "$glib_has_gslice" = "yes" ; then |
| 2442 | echo "HAVE_GLIB_WITH_SLICE_ALLOCATOR=y" >> $config_host_mak |
| 2443 | fi |
Philippe Mathieu-Daudé | 8a99e9a | 2018-04-15 20:05:19 -0300 | [diff] [blame] | 2444 | echo "QEMU_LDFLAGS=$QEMU_LDFLAGS" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 2445 | echo "EXESUF=$EXESUF" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 2446 | |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 2447 | # use included Linux headers |
| 2448 | if test "$linux" = "yes" ; then |
Andreas Färber | a307beb | 2012-06-14 15:14:33 +0000 | [diff] [blame] | 2449 | mkdir -p linux-headers |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 2450 | case "$cpu" in |
Paolo Bonzini | 4da270b | 2021-11-09 09:36:10 +0100 | [diff] [blame] | 2451 | i386|x86_64) |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 2452 | linux_arch=x86 |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 2453 | ;; |
Paolo Bonzini | d8ff892 | 2021-11-09 09:18:20 +0100 | [diff] [blame] | 2454 | ppc|ppc64) |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 2455 | linux_arch=powerpc |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 2456 | ;; |
| 2457 | s390x) |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 2458 | linux_arch=s390 |
| 2459 | ;; |
Claudio Fontana | 1f08031 | 2013-06-12 16:20:23 +0100 | [diff] [blame] | 2460 | aarch64) |
| 2461 | linux_arch=arm64 |
| 2462 | ;; |
WANG Xuerui | dfcf900 | 2021-12-21 13:41:04 +0800 | [diff] [blame] | 2463 | loongarch*) |
| 2464 | linux_arch=loongarch |
| 2465 | ;; |
Sanjay Lal | 222e7d1 | 2014-06-17 23:10:36 +0100 | [diff] [blame] | 2466 | mips64) |
| 2467 | linux_arch=mips |
| 2468 | ;; |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 2469 | *) |
| 2470 | # For most CPUs the kernel architecture name and QEMU CPU name match. |
| 2471 | linux_arch="$cpu" |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 2472 | ;; |
| 2473 | esac |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 2474 | # 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 Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 2478 | fi |
| 2479 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 2480 | for target in $target_list; do |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 2481 | target_dir="$target" |
Philippe Mathieu-Daudé | 57a93f1 | 2021-11-09 15:45:04 +0100 | [diff] [blame] | 2482 | target_name=$(echo $target | cut -d '-' -f 1)$EXESUF |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 2483 | mkdir -p "$target_dir" |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 2484 | 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 |
| 2488 | done |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 2489 | |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 2490 | if test "$default_targets" = "yes"; then |
| 2491 | echo "CONFIG_DEFAULT_TARGETS=y" >> $config_host_mak |
| 2492 | fi |
Peter Crosthwaite | a540f15 | 2013-04-18 14:47:31 +1000 | [diff] [blame] | 2493 | |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 2494 | if test "$ccache_cpp2" = "yes"; then |
| 2495 | echo "export CCACHE_CPP2=y" >> $config_host_mak |
| 2496 | fi |
| 2497 | |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 2498 | if test "$safe_stack" = "yes"; then |
| 2499 | echo "CONFIG_SAFESTACK=y" >> $config_host_mak |
| 2500 | fi |
| 2501 | |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2502 | # tests/tcg configuration |
Paolo Bonzini | b898bf2 | 2022-09-29 12:42:05 +0100 | [diff] [blame] | 2503 | (config_host_mak=tests/tcg/config-host.mak |
Paolo Bonzini | d674342 | 2022-09-29 12:42:00 +0100 | [diff] [blame] | 2504 | mkdir -p tests/tcg |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2505 | echo "# Automatically generated by configure - do not modify" > $config_host_mak |
| 2506 | echo "SRC_PATH=$source_path" >> $config_host_mak |
| 2507 | echo "HOST_CC=$host_cc" >> $config_host_mak |
| 2508 | |
Alex Bennée | 48543dd | 2022-09-29 12:41:45 +0100 | [diff] [blame] | 2509 | # versioned checked in the main config_host.mak above |
| 2510 | if test -n "$gdb_bin"; then |
| 2511 | echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak |
| 2512 | fi |
Paolo Bonzini | d1d94d9 | 2022-10-27 19:36:32 +0100 | [diff] [blame] | 2513 | if test "$plugins" = "yes" ; then |
| 2514 | echo "CONFIG_PLUGIN=y" >> $config_host_mak |
| 2515 | fi |
Alex Bennée | 48543dd | 2022-09-29 12:41:45 +0100 | [diff] [blame] | 2516 | |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2517 | tcg_tests_targets= |
| 2518 | for target in $target_list; do |
| 2519 | arch=${target%%-*} |
| 2520 | |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2521 | case $target in |
Paolo Bonzini | c48a5c4 | 2022-06-13 18:12:56 +0100 | [diff] [blame] | 2522 | xtensa*-linux-user) |
| 2523 | # the toolchain is not complete with headers, only build softmmu tests |
| 2524 | continue |
| 2525 | ;; |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2526 | *-softmmu) |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 2527 | test -f "$source_path/tests/tcg/$arch/Makefile.softmmu-target" || continue |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2528 | qemu="qemu-system-$arch" |
| 2529 | ;; |
| 2530 | *-linux-user|*-bsd-user) |
| 2531 | qemu="qemu-$arch" |
| 2532 | ;; |
| 2533 | esac |
| 2534 | |
Alex Bennée | fde1096 | 2022-10-11 12:34:16 +0100 | [diff] [blame] | 2535 | if probe_target_compiler $target || test -n "$container_image"; then |
Paolo Bonzini | 0825cae | 2022-09-29 12:42:06 +0100 | [diff] [blame] | 2536 | test -n "$container_image" && build_static=y |
Paolo Bonzini | d674342 | 2022-09-29 12:42:00 +0100 | [diff] [blame] | 2537 | mkdir -p "tests/tcg/$target" |
Paolo Bonzini | c7022a7 | 2022-09-29 12:42:07 +0100 | [diff] [blame] | 2538 | config_target_mak=tests/tcg/$target/config-target.mak |
Paolo Bonzini | d674342 | 2022-09-29 12:42:00 +0100 | [diff] [blame] | 2539 | ln -sf "$source_path/tests/tcg/Makefile.target" "tests/tcg/$target/Makefile" |
Paolo Bonzini | c7022a7 | 2022-09-29 12:42:07 +0100 | [diff] [blame] | 2540 | echo "# Automatically generated by configure - do not modify" > "$config_target_mak" |
| 2541 | echo "TARGET_NAME=$arch" >> "$config_target_mak" |
Paolo Bonzini | a3e28f8 | 2022-09-29 12:41:59 +0100 | [diff] [blame] | 2542 | echo "TARGET=$target" >> "$config_target_mak" |
Paolo Bonzini | c7022a7 | 2022-09-29 12:42:07 +0100 | [diff] [blame] | 2543 | write_target_makefile "build-tcg-tests-$target" >> "$config_target_mak" |
Paolo Bonzini | 15b273f | 2022-09-29 12:42:04 +0100 | [diff] [blame] | 2544 | echo "BUILD_STATIC=$build_static" >> "$config_target_mak" |
Paolo Bonzini | c7022a7 | 2022-09-29 12:42:07 +0100 | [diff] [blame] | 2545 | echo "QEMU=$PWD/$qemu" >> "$config_target_mak" |
Alex Bennée | bcbc36a | 2023-03-02 18:57:59 -0800 | [diff] [blame] | 2546 | |
| 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 Bonzini | b898bf2 | 2022-09-29 12:42:05 +0100 | [diff] [blame] | 2552 | echo "run-tcg-tests-$target: $qemu\$(EXESUF)" >> Makefile.prereqs |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2553 | tcg_tests_targets="$tcg_tests_targets $target" |
| 2554 | fi |
Paolo Bonzini | 2038f8c | 2019-08-07 16:35:23 +0200 | [diff] [blame] | 2555 | done |
Fabiano Rosas | c0031d3 | 2023-01-20 15:48:22 -0300 | [diff] [blame] | 2556 | |
| 2557 | if test "$tcg" = "enabled"; then |
| 2558 | echo "TCG_TESTS_TARGETS=$tcg_tests_targets" >> config-host.mak |
| 2559 | fi |
| 2560 | ) |
Paolo Bonzini | 2038f8c | 2019-08-07 16:35:23 +0200 | [diff] [blame] | 2561 | |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 2562 | if test "$skip_meson" = no; then |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2563 | cross="config-meson.cross.new" |
| 2564 | meson_quote() { |
Paolo Bonzini | ac7ebcc | 2021-11-05 10:07:37 +0100 | [diff] [blame] | 2565 | test $# = 0 && return |
Paolo Bonzini | 47b3083 | 2020-09-23 05:26:17 -0400 | [diff] [blame] | 2566 | echo "'$(echo $* | sed "s/ /','/g")'" |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2567 | } |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2568 | |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2569 | echo "# Automatically generated by configure - do not modify" > $cross |
| 2570 | echo "[properties]" >> $cross |
Alex Bennée | d1d5e9e | 2021-07-07 14:17:44 +0100 | [diff] [blame] | 2571 | |
| 2572 | # unroll any custom device configs |
Alex Bennée | 11bdcfc | 2021-07-21 00:26:38 +0100 | [diff] [blame] | 2573 | for a in $device_archs; do |
| 2574 | eval "c=\$devices_${a}" |
| 2575 | echo "${a}-softmmu = '$c'" >> $cross |
| 2576 | done |
Alex Bennée | d1d5e9e | 2021-07-07 14:17:44 +0100 | [diff] [blame] | 2577 | |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2578 | echo "[built-in options]" >> $cross |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 2579 | echo "c_args = [$(meson_quote $CFLAGS $EXTRA_CFLAGS)]" >> $cross |
| 2580 | echo "cpp_args = [$(meson_quote $CXXFLAGS $EXTRA_CXXFLAGS)]" >> $cross |
Philippe Mathieu-Daudé | e910c7d | 2022-01-08 22:38:55 +0100 | [diff] [blame] | 2581 | test -n "$objcc" && echo "objc_args = [$(meson_quote $OBJCFLAGS $EXTRA_OBJCFLAGS)]" >> $cross |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 2582 | 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 Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2584 | echo "[binaries]" >> $cross |
Paolo Bonzini | 4dba278 | 2021-09-29 17:14:43 +0200 | [diff] [blame] | 2585 | 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 Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2588 | 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 Kostiuk | 158bb22 | 2022-04-28 21:15:25 +0300 | [diff] [blame] | 2596 | echo "widl = [$(meson_quote $widl)]" >> $cross |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2597 | echo "windres = [$(meson_quote $windres)]" >> $cross |
Andrey Drobyshev | f9f0e61 | 2022-11-29 19:38:08 +0200 | [diff] [blame] | 2598 | echo "windmc = [$(meson_quote $windmc)]" >> $cross |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2599 | if test "$cross_compile" = "yes"; then |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2600 | cross_arg="--cross-file config-meson.cross" |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2601 | echo "[host_machine]" >> $cross |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 2602 | echo "system = '$targetos'" >> $cross |
Paolo Bonzini | 823eb01 | 2021-11-08 14:18:17 +0100 | [diff] [blame] | 2603 | case "$cpu" in |
Joelle van Dyne | f6bca9d | 2021-01-25 17:24:54 -0800 | [diff] [blame] | 2604 | i386) |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2605 | echo "cpu_family = 'x86'" >> $cross |
| 2606 | ;; |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2607 | *) |
Paolo Bonzini | 823eb01 | 2021-11-08 14:18:17 +0100 | [diff] [blame] | 2608 | echo "cpu_family = '$cpu'" >> $cross |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2609 | ;; |
| 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 Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2617 | else |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2618 | cross_arg="--native-file config-meson.cross" |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2619 | fi |
| 2620 | mv $cross config-meson.cross |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2621 | |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2622 | rm -rf meson-private meson-info meson-logs |
Paolo Bonzini | 0a31e3a | 2022-04-20 17:33:59 +0200 | [diff] [blame] | 2623 | |
Marc-André Lureau | 5a347a7 | 2023-03-02 17:18:46 +0400 | [diff] [blame] | 2624 | # 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 Bonzini | 0a31e3a | 2022-04-20 17:33:59 +0200 | [diff] [blame] | 2628 | # 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 Bonzini | 0a31e3a | 2022-04-20 17:33:59 +0200 | [diff] [blame] | 2635 | 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 Bonzini | 0a31e3a | 2022-04-20 17:33:59 +0200 | [diff] [blame] | 2639 | test "$smbd" != '' && meson_option_add "-Dsmbd=$smbd" |
| 2640 | test "$tcg" != enabled && meson_option_add "-Dtcg=$tcg" |
Jagannathan Raman | 5511696 | 2022-06-13 16:26:24 -0400 | [diff] [blame] | 2641 | test "$vfio_user_server" != auto && meson_option_add "-Dvfio_user_server=$vfio_user_server" |
Paolo Bonzini | 61d6309 | 2021-10-07 15:08:28 +0200 | [diff] [blame] | 2642 | run_meson() { |
Paolo Bonzini | 0a31e3a | 2022-04-20 17:33:59 +0200 | [diff] [blame] | 2643 | NINJA=$ninja $meson setup --prefix "$prefix" "$@" $cross_arg "$PWD" "$source_path" |
Paolo Bonzini | 61d6309 | 2021-10-07 15:08:28 +0200 | [diff] [blame] | 2644 | } |
| 2645 | eval run_meson $meson_options |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2646 | if test "$?" -ne 0 ; then |
| 2647 | error_exit "meson setup failed" |
| 2648 | fi |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 2649 | fi |
| 2650 | |
Michael S. Tsirkin | dc65540 | 2014-03-09 17:37:49 +0200 | [diff] [blame] | 2651 | # Save the configure command line for later reuse. |
| 2652 | cat <<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. |
| 2658 | EOD |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2659 | |
| 2660 | preserve_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 |
| 2676 | preserve_env AR |
| 2677 | preserve_env AS |
| 2678 | preserve_env CC |
Paolo Bonzini | 8009da0 | 2021-11-05 10:08:43 +0100 | [diff] [blame] | 2679 | preserve_env CFLAGS |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2680 | preserve_env CXX |
Paolo Bonzini | 8009da0 | 2021-11-05 10:08:43 +0100 | [diff] [blame] | 2681 | preserve_env CXXFLAGS |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2682 | preserve_env LD |
Paolo Bonzini | 8009da0 | 2021-11-05 10:08:43 +0100 | [diff] [blame] | 2683 | preserve_env LDFLAGS |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2684 | preserve_env LD_LIBRARY_PATH |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2685 | preserve_env MAKE |
| 2686 | preserve_env NM |
Paolo Bonzini | b5569e5 | 2022-06-07 12:14:47 +0200 | [diff] [blame] | 2687 | preserve_env OBJCFLAGS |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2688 | preserve_env OBJCOPY |
| 2689 | preserve_env PATH |
| 2690 | preserve_env PKG_CONFIG |
| 2691 | preserve_env PKG_CONFIG_LIBDIR |
| 2692 | preserve_env PKG_CONFIG_PATH |
| 2693 | preserve_env PYTHON |
Paolo Bonzini | 954ed68 | 2022-10-12 11:35:17 +0200 | [diff] [blame] | 2694 | preserve_env QEMU_GA_MANUFACTURER |
| 2695 | preserve_env QEMU_GA_DISTRO |
| 2696 | preserve_env QEMU_GA_VERSION |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2697 | preserve_env SDL2_CONFIG |
| 2698 | preserve_env SMBD |
| 2699 | preserve_env STRIP |
Konstantin Kostiuk | 158bb22 | 2022-04-28 21:15:25 +0300 | [diff] [blame] | 2700 | preserve_env WIDL |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2701 | preserve_env WINDRES |
Andrey Drobyshev | f9f0e61 | 2022-11-29 19:38:08 +0200 | [diff] [blame] | 2702 | preserve_env WINDMC |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2703 | |
Michael S. Tsirkin | dc65540 | 2014-03-09 17:37:49 +0200 | [diff] [blame] | 2704 | printf "exec" >>config.status |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 2705 | for i in "$0" "$@"; do |
Paolo Bonzini | 835af89 | 2020-09-08 13:20:45 +0200 | [diff] [blame] | 2706 | test "$i" = --skip-meson || printf " %s" "$(quote_sh "$i")" >>config.status |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 2707 | done |
Dr. David Alan Gilbert | cf7cc92 | 2016-01-12 11:58:48 +0000 | [diff] [blame] | 2708 | echo ' "$@"' >>config.status |
Michael S. Tsirkin | dc65540 | 2014-03-09 17:37:49 +0200 | [diff] [blame] | 2709 | chmod +x config.status |
| 2710 | |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 2711 | rm -r "$TMPDIR1" |