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 | |
| 34 | mkdir build |
| 35 | touch $MARKER |
| 36 | |
| 37 | cat > GNUmakefile <<'EOF' |
| 38 | # This file is auto-generated by configure to support in-source tree |
| 39 | # 'make' command invocation |
| 40 | |
| 41 | ifeq ($(MAKECMDGOALS),) |
| 42 | recurse: all |
| 43 | endif |
| 44 | |
| 45 | .NOTPARALLEL: % |
| 46 | %: force |
| 47 | @echo 'changing dir to build for $(MAKE) "$(MAKECMDGOALS)"...' |
| 48 | @$(MAKE) -C build -f Makefile $(MAKECMDGOALS) |
| 49 | @if test "$(MAKECMDGOALS)" = "distclean" && \ |
| 50 | test -e build/auto-created-by-configure ; \ |
| 51 | then \ |
| 52 | rm -rf build GNUmakefile ; \ |
| 53 | fi |
| 54 | force: ; |
| 55 | .PHONY: force |
| 56 | GNUmakefile: ; |
| 57 | |
| 58 | EOF |
| 59 | cd build |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 60 | exec "$source_path/configure" "$@" |
Daniel P. Berrangé | dedad02 | 2020-08-21 12:22:04 +0200 | [diff] [blame] | 61 | fi |
| 62 | |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 63 | # Temporary directory used for files created while |
| 64 | # configure runs. Since it is in the build directory |
| 65 | # we can safely blow away any previous version of it |
| 66 | # (and we need not jump through hoops to try to delete |
| 67 | # it when configure exits.) |
| 68 | TMPDIR1="config-temp" |
| 69 | rm -rf "${TMPDIR1}" |
Peter Maydell | 563661c | 2022-08-25 16:07:02 +0100 | [diff] [blame] | 70 | if ! mkdir -p "${TMPDIR1}"; then |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 71 | echo "ERROR: failed to create temporary directory" |
| 72 | exit 1 |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 73 | fi |
| 74 | |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 75 | TMPB="qemu-conf" |
| 76 | TMPC="${TMPDIR1}/${TMPB}.c" |
Don Slutz | 66518bf | 2014-01-02 21:12:46 -0500 | [diff] [blame] | 77 | TMPO="${TMPDIR1}/${TMPB}.o" |
Philippe Mathieu-Daudé | 4cb37d1 | 2022-02-15 16:15:13 +0100 | [diff] [blame] | 78 | TMPM="${TMPDIR1}/${TMPB}.m" |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 79 | TMPE="${TMPDIR1}/${TMPB}.exe" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 80 | |
Gerd Hoffmann | da1d85e | 2010-04-23 13:44:10 +0200 | [diff] [blame] | 81 | rm -f config.log |
malc | 9ac81bb | 2008-11-29 20:09:56 +0000 | [diff] [blame] | 82 | |
Peter Maydell | b48e361 | 2011-11-23 17:26:44 +0000 | [diff] [blame] | 83 | # Print a helpful header at the top of config.log |
| 84 | echo "# QEMU configure log $(date)" >> config.log |
Peter Maydell | 979ae16 | 2012-03-07 12:16:29 +0000 | [diff] [blame] | 85 | printf "# Configured with:" >> config.log |
| 86 | printf " '%s'" "$0" "$@" >> config.log |
| 87 | echo >> config.log |
Peter Maydell | b48e361 | 2011-11-23 17:26:44 +0000 | [diff] [blame] | 88 | echo "#" >> config.log |
| 89 | |
Paolo Bonzini | 835af89 | 2020-09-08 13:20:45 +0200 | [diff] [blame] | 90 | quote_sh() { |
| 91 | printf "%s" "$1" | sed "s,','\\\\'',g; s,.*,'&'," |
| 92 | } |
| 93 | |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 94 | print_error() { |
| 95 | (echo |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 96 | echo "ERROR: $1" |
| 97 | while test -n "$2"; do |
| 98 | echo " $2" |
| 99 | shift |
| 100 | done |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 101 | echo) >&2 |
| 102 | } |
| 103 | |
| 104 | error_exit() { |
| 105 | print_error "$@" |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 106 | exit 1 |
| 107 | } |
| 108 | |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 109 | do_compiler() { |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 110 | # Run the compiler, capturing its output to the log. First argument |
| 111 | # is compiler binary to execute. |
Peter Maydell | b3b5472 | 2022-08-25 16:07:03 +0100 | [diff] [blame] | 112 | compiler="$1" |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 113 | shift |
| 114 | if test -n "$BASH_VERSION"; then eval ' |
| 115 | echo >>config.log " |
| 116 | funcs: ${FUNCNAME[*]} |
| 117 | lines: ${BASH_LINENO[*]}" |
| 118 | '; fi |
| 119 | echo $compiler "$@" >> config.log |
| 120 | $compiler "$@" >> config.log 2>&1 || return $? |
| 121 | } |
| 122 | |
| 123 | do_compiler_werror() { |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 124 | # Run the compiler, capturing its output to the log. First argument |
| 125 | # is compiler binary to execute. |
David CARLIER | 630d86b | 2020-07-18 14:19:10 +0100 | [diff] [blame] | 126 | compiler="$1" |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 127 | shift |
Ian Jackson | 8bbe05d | 2017-09-25 16:41:03 +0100 | [diff] [blame] | 128 | if test -n "$BASH_VERSION"; then eval ' |
| 129 | echo >>config.log " |
| 130 | funcs: ${FUNCNAME[*]} |
| 131 | lines: ${BASH_LINENO[*]}" |
| 132 | '; fi |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 133 | echo $compiler "$@" >> config.log |
| 134 | $compiler "$@" >> config.log 2>&1 || return $? |
Peter Maydell | 8dc38a7 | 2012-07-18 15:10:28 +0100 | [diff] [blame] | 135 | # Test passed. If this is an --enable-werror build, rerun |
| 136 | # the test with -Werror and bail out if it fails. This |
| 137 | # makes warning-generating-errors in configure test code |
| 138 | # obvious to developers. |
| 139 | if test "$werror" != "yes"; then |
| 140 | return 0 |
| 141 | fi |
| 142 | # Don't bother rerunning the compile if we were already using -Werror |
| 143 | case "$*" in |
| 144 | *-Werror*) |
| 145 | return 0 |
| 146 | ;; |
| 147 | esac |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 148 | echo $compiler -Werror "$@" >> config.log |
| 149 | $compiler -Werror "$@" >> config.log 2>&1 && return $? |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 150 | error_exit "configure test passed without -Werror but failed with -Werror." \ |
| 151 | "This is probably a bug in the configure script. The failing command" \ |
| 152 | "will be at the bottom of config.log." \ |
| 153 | "You can run configure with --disable-werror to bypass this check." |
Peter Maydell | 8dc38a7 | 2012-07-18 15:10:28 +0100 | [diff] [blame] | 154 | } |
| 155 | |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 156 | do_cc() { |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 157 | do_compiler_werror "$cc" $CPU_CFLAGS "$@" |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 158 | } |
| 159 | |
Philippe Mathieu-Daudé | 4cb37d1 | 2022-02-15 16:15:13 +0100 | [diff] [blame] | 160 | do_objc() { |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 161 | do_compiler_werror "$objcc" $CPU_CFLAGS "$@" |
Philippe Mathieu-Daudé | 4cb37d1 | 2022-02-15 16:15:13 +0100 | [diff] [blame] | 162 | } |
| 163 | |
Richard Henderson | 00849b9 | 2020-06-17 13:13:06 -0700 | [diff] [blame] | 164 | # Append $2 to the variable named $1, with space separation |
| 165 | add_to() { |
| 166 | eval $1=\${$1:+\"\$$1 \"}\$2 |
| 167 | } |
| 168 | |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 169 | compile_object() { |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 170 | local_cflags="$1" |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 171 | 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] | 172 | } |
| 173 | |
| 174 | compile_prog() { |
| 175 | local_cflags="$1" |
| 176 | local_ldflags="$2" |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 177 | do_cc $CFLAGS $EXTRA_CFLAGS $CONFIGURE_CFLAGS $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC \ |
| 178 | $LDFLAGS $EXTRA_LDFLAGS $CONFIGURE_LDFLAGS $QEMU_LDFLAGS $local_ldflags |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 179 | } |
| 180 | |
Paolo Bonzini | 11568d6 | 2010-12-23 11:43:58 +0100 | [diff] [blame] | 181 | # symbolically link $1 to $2. Portable version of "ln -sf". |
| 182 | symlink() { |
Stefan Weil | 72b8b5a | 2012-03-19 13:20:47 +0100 | [diff] [blame] | 183 | rm -rf "$2" |
Anthony Liguori | ec5b06d | 2012-06-06 16:57:00 +0800 | [diff] [blame] | 184 | mkdir -p "$(dirname "$2")" |
Stefan Weil | 72b8b5a | 2012-03-19 13:20:47 +0100 | [diff] [blame] | 185 | ln -s "$1" "$2" |
Paolo Bonzini | 11568d6 | 2010-12-23 11:43:58 +0100 | [diff] [blame] | 186 | } |
| 187 | |
Loïc Minier | 0dba619 | 2010-01-28 21:26:51 +0000 | [diff] [blame] | 188 | # check whether a command is available to this shell (may be either an |
| 189 | # executable or a builtin) |
| 190 | has() { |
| 191 | type "$1" >/dev/null 2>&1 |
| 192 | } |
| 193 | |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 194 | version_ge () { |
Alex Bennée | 2df52b9 | 2021-02-02 13:39:52 +0000 | [diff] [blame] | 195 | local_ver1=$(expr "$1" : '\([0-9.]*\)' | tr . ' ') |
| 196 | local_ver2=$(echo "$2" | tr . ' ') |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 197 | while true; do |
| 198 | set x $local_ver1 |
| 199 | local_first=${2-0} |
Stefano Garzarella | c44a33e | 2020-08-21 22:35:58 +0200 | [diff] [blame] | 200 | # 'shift 2' if $2 is set, or 'shift' if $2 is not set |
| 201 | shift ${2:+2} |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 202 | local_ver1=$* |
| 203 | set x $local_ver2 |
| 204 | # the second argument finished, the first must be greater or equal |
| 205 | test $# = 1 && return 0 |
| 206 | test $local_first -lt $2 && return 1 |
| 207 | test $local_first -gt $2 && return 0 |
Stefano Garzarella | c44a33e | 2020-08-21 22:35:58 +0200 | [diff] [blame] | 208 | shift ${2:+2} |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 209 | local_ver2=$* |
| 210 | done |
| 211 | } |
| 212 | |
Paolo Bonzini | 3b6b755 | 2012-09-17 11:59:41 +0200 | [diff] [blame] | 213 | glob() { |
| 214 | eval test -z '"${1#'"$2"'}"' |
| 215 | } |
| 216 | |
Antonio Ospite | 4ace32e | 2019-05-26 16:47:47 +0200 | [diff] [blame] | 217 | if printf %s\\n "$source_path" "$PWD" | grep -q "[[:space:]:]"; |
| 218 | then |
| 219 | error_exit "main directory cannot contain spaces nor colons" |
| 220 | fi |
| 221 | |
Antonio Ospite | 1421182 | 2019-05-26 16:47:46 +0200 | [diff] [blame] | 222 | # default parameters |
Juan Quintela | 2ff6b91 | 2009-08-03 14:45:55 +0200 | [diff] [blame] | 223 | cpu="" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 224 | static="no" |
Joelle van Dyne | 3812c0c | 2021-01-25 17:24:48 -0800 | [diff] [blame] | 225 | cross_compile="no" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 226 | cross_prefix="" |
Peter Maydell | e49d021 | 2012-12-07 15:39:13 +0000 | [diff] [blame] | 227 | host_cc="cc" |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 228 | stack_protector="" |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 229 | safe_stack="" |
Alex Bennée | afc3a8f | 2019-11-28 16:35:24 +0100 | [diff] [blame] | 230 | use_containers="yes" |
Alex Bennée | f238539 | 2020-04-30 20:01:14 +0100 | [diff] [blame] | 231 | gdb_bin=$(command -v "gdb-multiarch" || command -v "gdb") |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 232 | |
Daniel P. Berrange | 9271282 | 2017-09-29 11:11:58 +0100 | [diff] [blame] | 233 | if test -e "$source_path/.git" |
| 234 | then |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 235 | git_submodules_action="update" |
Daniel P. Berrange | 9271282 | 2017-09-29 11:11:58 +0100 | [diff] [blame] | 236 | else |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 237 | git_submodules_action="ignore" |
Daniel P. Berrange | 9271282 | 2017-09-29 11:11:58 +0100 | [diff] [blame] | 238 | fi |
Paolo Bonzini | 2d652f2 | 2021-05-12 09:21:56 +0200 | [diff] [blame] | 239 | |
| 240 | git_submodules="ui/keycodemapdb" |
Daniel P. Berrange | cc84d63 | 2017-10-20 15:02:43 +0100 | [diff] [blame] | 241 | git="git" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 242 | |
Stefan Weil | afb63eb | 2012-09-26 22:04:38 +0200 | [diff] [blame] | 243 | # Don't accept a target_list environment variable. |
| 244 | unset target_list |
Alex Bennée | 447e133 | 2019-03-19 11:59:12 +0000 | [diff] [blame] | 245 | unset target_list_exclude |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 246 | |
| 247 | # Default value for a variable defining feature "foo". |
| 248 | # * foo="no" feature will only be used if --enable-foo arg is given |
| 249 | # * foo="" feature will be searched for, and if found, will be used |
| 250 | # unless --disable-foo is given |
| 251 | # * foo="yes" this value will only be set by --enable-foo flag. |
| 252 | # feature will searched for, |
| 253 | # if not found, configure exits with error |
| 254 | # |
| 255 | # Always add --enable-foo and --disable-foo command line args. |
| 256 | # Distributions want to ensure that several features are compiled in, and it |
| 257 | # is impossible without a --enable-foo that exits if a feature is not found. |
| 258 | |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 259 | default_feature="" |
| 260 | # parse CC options second |
| 261 | for opt do |
| 262 | optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') |
| 263 | case "$opt" in |
| 264 | --without-default-features) |
| 265 | default_feature="no" |
| 266 | ;; |
| 267 | esac |
| 268 | done |
| 269 | |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 270 | EXTRA_CFLAGS="" |
| 271 | EXTRA_CXXFLAGS="" |
Philippe Mathieu-Daudé | e910c7d | 2022-01-08 22:38:55 +0100 | [diff] [blame] | 272 | EXTRA_OBJCFLAGS="" |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 273 | EXTRA_LDFLAGS="" |
| 274 | |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 275 | debug_tcg="no" |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 276 | sanitizers="no" |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 277 | tsan="no" |
Michael Tokarev | 1f3f2bf | 2022-04-22 13:08:25 +0300 | [diff] [blame] | 278 | fortify_source="yes" |
Miroslav Rezanina | c732827 | 2021-03-31 10:18:45 +0200 | [diff] [blame] | 279 | EXESUF="" |
Fam Zheng | 1796926 | 2014-02-10 14:48:56 +0800 | [diff] [blame] | 280 | modules="no" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 281 | prefix="/usr/local" |
Marc-André Lureau | 10ff82d | 2020-08-26 15:04:13 +0400 | [diff] [blame] | 282 | qemu_suffix="qemu" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 283 | softmmu="yes" |
Paolo Bonzini | b915a2f | 2021-11-09 10:10:41 +0100 | [diff] [blame] | 284 | linux_user="" |
| 285 | bsd_user="" |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 286 | pie="" |
Alex Barcelo | 519175a | 2012-02-28 12:25:50 +0100 | [diff] [blame] | 287 | coroutine="" |
Alex Bennée | ba4dd2a | 2021-07-09 15:29:57 +0100 | [diff] [blame] | 288 | plugins="$default_feature" |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 289 | meson="" |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 290 | ninja="" |
Paolo Bonzini | c09c1ce | 2022-04-20 17:33:57 +0200 | [diff] [blame] | 291 | bindir="bin" |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 292 | skip_meson=no |
Jagannathan Raman | 5511696 | 2022-06-13 16:26:24 -0400 | [diff] [blame] | 293 | vfio_user_server="disabled" |
Paolo Bonzini | 377529c | 2010-12-23 11:43:50 +0100 | [diff] [blame] | 294 | |
Paolo Bonzini | 3b4da13 | 2021-10-07 15:08:29 +0200 | [diff] [blame] | 295 | # The following Meson options are handled manually (still they |
| 296 | # are included in the automatically generated help message) |
| 297 | |
| 298 | # 1. Track which submodules are needed |
Paolo Bonzini | 3b4da13 | 2021-10-07 15:08:29 +0200 | [diff] [blame] | 299 | fdt="auto" |
Paolo Bonzini | 3b4da13 | 2021-10-07 15:08:29 +0200 | [diff] [blame] | 300 | |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 301 | # 2. Automatically enable/disable other options |
Philippe Mathieu-Daudé | 7630156 | 2022-02-04 15:54:47 +0100 | [diff] [blame] | 302 | tcg="auto" |
Paolo Bonzini | 3b4da13 | 2021-10-07 15:08:29 +0200 | [diff] [blame] | 303 | cfi="false" |
| 304 | |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 305 | # parse CC options second |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 306 | for opt do |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 307 | optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 308 | case "$opt" in |
| 309 | --cross-prefix=*) cross_prefix="$optarg" |
Joelle van Dyne | 3812c0c | 2021-01-25 17:24:48 -0800 | [diff] [blame] | 310 | cross_compile="yes" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 311 | ;; |
Paolo Bonzini | 3d8df64 | 2010-12-23 11:43:48 +0100 | [diff] [blame] | 312 | --cc=*) CC="$optarg" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 313 | ;; |
Tomoki Sekiyama | 83f73fc | 2013-08-07 11:39:36 -0400 | [diff] [blame] | 314 | --cxx=*) CXX="$optarg" |
| 315 | ;; |
Juan Quintela | 2ff6b91 | 2009-08-03 14:45:55 +0200 | [diff] [blame] | 316 | --cpu=*) cpu="$optarg" |
| 317 | ;; |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 318 | --extra-cflags=*) |
| 319 | EXTRA_CFLAGS="$EXTRA_CFLAGS $optarg" |
| 320 | EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS $optarg" |
Philippe Mathieu-Daudé | e910c7d | 2022-01-08 22:38:55 +0100 | [diff] [blame] | 321 | EXTRA_OBJCFLAGS="$EXTRA_OBJCFLAGS $optarg" |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 322 | ;; |
| 323 | --extra-cxxflags=*) EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS $optarg" |
Juan Quintela | e2a2ed0 | 2009-08-03 14:46:02 +0200 | [diff] [blame] | 324 | ;; |
Philippe Mathieu-Daudé | e910c7d | 2022-01-08 22:38:55 +0100 | [diff] [blame] | 325 | --extra-objcflags=*) EXTRA_OBJCFLAGS="$EXTRA_OBJCFLAGS $optarg" |
| 326 | ;; |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 327 | --extra-ldflags=*) EXTRA_LDFLAGS="$EXTRA_LDFLAGS $optarg" |
Juan Quintela | e2a2ed0 | 2009-08-03 14:46:02 +0200 | [diff] [blame] | 328 | ;; |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 329 | --cross-cc-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-cc-FOO option" |
| 330 | ;; |
Matheus Ferst | 479ca4c | 2022-01-20 14:31:41 -0300 | [diff] [blame] | 331 | --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] | 332 | eval "cross_cc_cflags_${cc_arch}=\$optarg" |
| 333 | ;; |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 334 | --cross-cc-*) cc_arch=${opt#--cross-cc-}; cc_arch=${cc_arch%%=*} |
| 335 | eval "cross_cc_${cc_arch}=\$optarg" |
| 336 | ;; |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 337 | --cross-prefix-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-prefix-FOO option" |
| 338 | ;; |
| 339 | --cross-prefix-*) cc_arch=${opt#--cross-prefix-}; cc_arch=${cc_arch%%=*} |
| 340 | eval "cross_prefix_${cc_arch}=\$optarg" |
| 341 | ;; |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 342 | esac |
| 343 | done |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 344 | # OS specific |
| 345 | # Using uname is really, really broken. Once we have the right set of checks |
Stefan Weil | 93148aa | 2012-02-26 18:46:12 +0100 | [diff] [blame] | 346 | # we can eliminate its usage altogether. |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 347 | |
Peter Maydell | e49d021 | 2012-12-07 15:39:13 +0000 | [diff] [blame] | 348 | # Preferred compiler: |
| 349 | # ${CC} (if set) |
| 350 | # ${cross_prefix}gcc (if cross-prefix specified) |
| 351 | # system compiler |
| 352 | if test -z "${CC}${cross_prefix}"; then |
| 353 | cc="$host_cc" |
| 354 | else |
| 355 | cc="${CC-${cross_prefix}gcc}" |
| 356 | fi |
| 357 | |
Tomoki Sekiyama | 83f73fc | 2013-08-07 11:39:36 -0400 | [diff] [blame] | 358 | if test -z "${CXX}${cross_prefix}"; then |
| 359 | cxx="c++" |
| 360 | else |
| 361 | cxx="${CXX-${cross_prefix}g++}" |
| 362 | fi |
| 363 | |
Stuart Yoder | b3198cc | 2011-08-04 17:10:08 -0500 | [diff] [blame] | 364 | ar="${AR-${cross_prefix}ar}" |
Richard Henderson | cdbd727 | 2016-07-07 21:49:36 -0700 | [diff] [blame] | 365 | as="${AS-${cross_prefix}as}" |
Richard Henderson | 5f6f0e2 | 2016-06-23 10:39:18 -0700 | [diff] [blame] | 366 | ccas="${CCAS-$cc}" |
Stuart Yoder | b3198cc | 2011-08-04 17:10:08 -0500 | [diff] [blame] | 367 | objcopy="${OBJCOPY-${cross_prefix}objcopy}" |
| 368 | ld="${LD-${cross_prefix}ld}" |
Alistair Francis | 9f81aeb | 2017-11-07 17:10:46 -0800 | [diff] [blame] | 369 | ranlib="${RANLIB-${cross_prefix}ranlib}" |
Stefan Weil | 4852ee9 | 2014-09-18 21:55:08 +0200 | [diff] [blame] | 370 | nm="${NM-${cross_prefix}nm}" |
Paolo Bonzini | 35acbb3 | 2021-10-13 13:43:36 +0200 | [diff] [blame] | 371 | smbd="$SMBD" |
Stuart Yoder | b3198cc | 2011-08-04 17:10:08 -0500 | [diff] [blame] | 372 | strip="${STRIP-${cross_prefix}strip}" |
Konstantin Kostiuk | 158bb22 | 2022-04-28 21:15:25 +0300 | [diff] [blame] | 373 | widl="${WIDL-${cross_prefix}widl}" |
Stuart Yoder | b3198cc | 2011-08-04 17:10:08 -0500 | [diff] [blame] | 374 | windres="${WINDRES-${cross_prefix}windres}" |
Sergei Trofimovich | 17884d7 | 2012-01-31 22:03:45 +0300 | [diff] [blame] | 375 | pkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}" |
| 376 | query_pkg_config() { |
| 377 | "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@" |
| 378 | } |
| 379 | pkg_config=query_pkg_config |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 380 | sdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 381 | |
Michael S. Tsirkin | be17dc9 | 2009-11-11 13:50:09 +0200 | [diff] [blame] | 382 | # default flags for all hosts |
Peter Maydell | 2d31515 | 2016-09-12 14:10:08 +0100 | [diff] [blame] | 383 | # We use -fwrapv to tell the compiler that we require a C dialect where |
| 384 | # left shift of signed integers is well defined and has the expected |
| 385 | # 2s-complement style results. (Both clang and gcc agree that it |
| 386 | # provides these semantics.) |
Paolo Bonzini | de38c0c | 2021-11-08 08:58:23 +0100 | [diff] [blame] | 387 | QEMU_CFLAGS="-fno-strict-aliasing -fno-common -fwrapv" |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 388 | QEMU_CFLAGS="-Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS" |
Kevin Wolf | c95e308 | 2013-02-22 21:08:51 +0100 | [diff] [blame] | 389 | QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS" |
Michael S. Tsirkin | be17dc9 | 2009-11-11 13:50:09 +0200 | [diff] [blame] | 390 | 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] | 391 | |
Paolo Bonzini | de38c0c | 2021-11-08 08:58:23 +0100 | [diff] [blame] | 392 | QEMU_LDFLAGS= |
| 393 | |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 394 | # 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] | 395 | CONFIGURE_CFLAGS="-std=gnu11 -Wall" |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 396 | CONFIGURE_LDFLAGS= |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 397 | |
Michael S. Tsirkin | be17dc9 | 2009-11-11 13:50:09 +0200 | [diff] [blame] | 398 | |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 399 | check_define() { |
| 400 | cat > $TMPC <<EOF |
| 401 | #if !defined($1) |
Peter Maydell | fd786e1 | 2011-11-23 17:26:43 +0000 | [diff] [blame] | 402 | #error $1 not defined |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 403 | #endif |
| 404 | int main(void) { return 0; } |
| 405 | EOF |
Juan Quintela | 52166aa | 2009-08-03 14:46:03 +0200 | [diff] [blame] | 406 | compile_object |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 407 | } |
| 408 | |
Gerd Hoffmann | 307119e | 2015-06-10 09:07:35 +0200 | [diff] [blame] | 409 | check_include() { |
| 410 | cat > $TMPC <<EOF |
| 411 | #include <$1> |
| 412 | int main(void) { return 0; } |
| 413 | EOF |
| 414 | compile_object |
| 415 | } |
| 416 | |
John Snow | 93b2586 | 2015-03-25 18:57:37 -0400 | [diff] [blame] | 417 | write_c_skeleton() { |
| 418 | cat > $TMPC <<EOF |
| 419 | int main(void) { return 0; } |
| 420 | EOF |
| 421 | } |
| 422 | |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 423 | if check_define __linux__ ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 424 | targetos=linux |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 425 | elif check_define _WIN32 ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 426 | targetos=windows |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 427 | elif check_define __OpenBSD__ ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 428 | targetos=openbsd |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 429 | elif check_define __sun__ ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 430 | targetos=sunos |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 431 | elif check_define __HAIKU__ ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 432 | targetos=haiku |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 433 | elif check_define __FreeBSD__ ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 434 | targetos=freebsd |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 435 | elif check_define __FreeBSD_kernel__ && check_define __GLIBC__; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 436 | targetos=gnu/kfreebsd |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 437 | elif check_define __DragonFly__ ; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 438 | targetos=dragonfly |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 439 | elif check_define __NetBSD__; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 440 | targetos=netbsd |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 441 | elif check_define __APPLE__; then |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 442 | targetos=darwin |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 443 | else |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 444 | # This is a fatal error, but don't report it yet, because we |
| 445 | # might be going to just print the --help text, or it might |
| 446 | # be the result of a missing compiler. |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 447 | targetos=bogus |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 448 | fi |
| 449 | |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 450 | # OS specific |
| 451 | |
Paolo Bonzini | 3b0d864 | 2021-10-13 14:14:53 +0200 | [diff] [blame] | 452 | mingw32="no" |
| 453 | bsd="no" |
| 454 | linux="no" |
| 455 | solaris="no" |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 456 | case $targetos in |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 457 | windows) |
| 458 | mingw32="yes" |
| 459 | plugins="no" |
| 460 | pie="no" |
| 461 | ;; |
| 462 | gnu/kfreebsd) |
| 463 | bsd="yes" |
| 464 | ;; |
| 465 | freebsd) |
| 466 | bsd="yes" |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 467 | make="${MAKE-gmake}" |
| 468 | # needed for kinfo_getvmmap(3) in libutil.h |
| 469 | ;; |
| 470 | dragonfly) |
| 471 | bsd="yes" |
| 472 | make="${MAKE-gmake}" |
| 473 | ;; |
| 474 | netbsd) |
| 475 | bsd="yes" |
| 476 | make="${MAKE-gmake}" |
| 477 | ;; |
| 478 | openbsd) |
| 479 | bsd="yes" |
| 480 | make="${MAKE-gmake}" |
| 481 | ;; |
| 482 | darwin) |
| 483 | bsd="yes" |
| 484 | darwin="yes" |
| 485 | # Disable attempts to use ObjectiveC features in os/object.h since they |
| 486 | # won't work when we're compiling with gcc as a C compiler. |
| 487 | QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS" |
| 488 | ;; |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 489 | sunos) |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 490 | solaris="yes" |
| 491 | make="${MAKE-gmake}" |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 492 | # needed for CMSG_ macros in sys/socket.h |
| 493 | QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS" |
| 494 | # needed for TIOCWIN* defines in termios.h |
| 495 | QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS" |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 496 | # $(uname -m) returns i86pc even on an x86_64 box, so default based on isainfo |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 497 | # Note that this check is broken for cross-compilation: if you're |
| 498 | # cross-compiling to one of these OSes then you'll need to specify |
| 499 | # the correct CPU with the --cpu option. |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 500 | if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then |
| 501 | cpu="x86_64" |
| 502 | fi |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 503 | ;; |
| 504 | haiku) |
| 505 | pie="no" |
| 506 | QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS -D_BSD_SOURCE -fPIC $QEMU_CFLAGS" |
| 507 | ;; |
| 508 | linux) |
| 509 | linux="yes" |
Paolo Bonzini | 65eff01 | 2021-11-08 22:52:35 +0100 | [diff] [blame] | 510 | ;; |
Peter Maydell | bbea405 | 2012-08-14 15:35:34 +0100 | [diff] [blame] | 511 | esac |
| 512 | |
Juan Quintela | 2ff6b91 | 2009-08-03 14:45:55 +0200 | [diff] [blame] | 513 | if test ! -z "$cpu" ; then |
| 514 | # command line argument |
| 515 | : |
| 516 | elif check_define __i386__ ; then |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 517 | cpu="i386" |
| 518 | elif check_define __x86_64__ ; then |
Richard Henderson | c72b26e | 2013-08-20 12:20:05 -0700 | [diff] [blame] | 519 | if check_define __ILP32__ ; then |
| 520 | cpu="x32" |
| 521 | else |
| 522 | cpu="x86_64" |
| 523 | fi |
blueswir1 | 3aa9bd6 | 2008-12-31 16:55:26 +0000 | [diff] [blame] | 524 | elif check_define __sparc__ ; then |
blueswir1 | 3aa9bd6 | 2008-12-31 16:55:26 +0000 | [diff] [blame] | 525 | if check_define __arch64__ ; then |
| 526 | cpu="sparc64" |
| 527 | else |
| 528 | cpu="sparc" |
| 529 | fi |
malc | fdf7ed9 | 2009-01-14 18:39:52 +0000 | [diff] [blame] | 530 | elif check_define _ARCH_PPC ; then |
| 531 | if check_define _ARCH_PPC64 ; then |
Richard Henderson | f8378ac | 2019-05-01 15:38:18 -0700 | [diff] [blame] | 532 | if check_define _LITTLE_ENDIAN ; then |
| 533 | cpu="ppc64le" |
| 534 | else |
| 535 | cpu="ppc64" |
| 536 | fi |
malc | fdf7ed9 | 2009-01-14 18:39:52 +0000 | [diff] [blame] | 537 | else |
| 538 | cpu="ppc" |
| 539 | fi |
Aurelien Jarno | afa0523 | 2009-10-17 14:17:47 +0200 | [diff] [blame] | 540 | elif check_define __mips__ ; then |
| 541 | cpu="mips" |
Aurelien Jarno | d66ed0e | 2010-06-13 12:28:21 +0200 | [diff] [blame] | 542 | elif check_define __s390__ ; then |
| 543 | if check_define __s390x__ ; then |
| 544 | cpu="s390x" |
| 545 | else |
| 546 | cpu="s390" |
| 547 | fi |
Alistair Francis | c4f8054 | 2018-12-19 19:20:19 +0000 | [diff] [blame] | 548 | elif check_define __riscv ; then |
Richard Henderson | ba0e733 | 2021-09-17 11:08:09 -0700 | [diff] [blame] | 549 | cpu="riscv" |
Peter Maydell | 21d89f8 | 2011-11-30 10:57:48 +0100 | [diff] [blame] | 550 | elif check_define __arm__ ; then |
| 551 | cpu="arm" |
Claudio Fontana | 1f08031 | 2013-06-12 16:20:23 +0100 | [diff] [blame] | 552 | elif check_define __aarch64__ ; then |
| 553 | cpu="aarch64" |
WANG Xuerui | dfcf900 | 2021-12-21 13:41:04 +0800 | [diff] [blame] | 554 | elif check_define __loongarch64 ; then |
| 555 | cpu="loongarch64" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 556 | else |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 557 | cpu=$(uname -m) |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 558 | fi |
| 559 | |
Paolo Bonzini | 823eb01 | 2021-11-08 14:18:17 +0100 | [diff] [blame] | 560 | # Normalise host CPU name, set multilib cflags |
Peter Maydell | 359bc95 | 2011-12-24 13:07:25 +0000 | [diff] [blame] | 561 | # Note that this case should only have supported host CPUs, not guests. |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 562 | case "$cpu" in |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 563 | armv*b|armv*l|arm) |
| 564 | cpu="arm" ;; |
| 565 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 566 | i386|i486|i586|i686|i86pc|BePC) |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 567 | cpu="i386" |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 568 | CPU_CFLAGS="-m32" ;; |
| 569 | x32) |
Paolo Bonzini | 4da270b | 2021-11-09 09:36:10 +0100 | [diff] [blame] | 570 | cpu="x86_64" |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 571 | CPU_CFLAGS="-mx32" ;; |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 572 | x86_64|amd64) |
| 573 | cpu="x86_64" |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 574 | # ??? Only extremely old AMD cpus do not have cmpxchg16b. |
| 575 | # If we truly care, we should simply detect this case at |
| 576 | # runtime and generate the fallback to serial emulation. |
| 577 | CPU_CFLAGS="-m64 -mcx16" ;; |
| 578 | |
Aurelien Jarno | afa0523 | 2009-10-17 14:17:47 +0200 | [diff] [blame] | 579 | mips*) |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 580 | cpu="mips" ;; |
| 581 | |
| 582 | ppc) |
| 583 | CPU_CFLAGS="-m32" ;; |
| 584 | ppc64) |
Miroslav Rezanina | ced5cff | 2022-03-05 07:16:46 +0100 | [diff] [blame] | 585 | CPU_CFLAGS="-m64 -mbig-endian" ;; |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 586 | ppc64le) |
Paolo Bonzini | d8ff892 | 2021-11-09 09:18:20 +0100 | [diff] [blame] | 587 | cpu="ppc64" |
Miroslav Rezanina | ced5cff | 2022-03-05 07:16:46 +0100 | [diff] [blame] | 588 | CPU_CFLAGS="-m64 -mlittle-endian" ;; |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 589 | |
| 590 | s390) |
Paolo Bonzini | 823eb01 | 2021-11-08 14:18:17 +0100 | [diff] [blame] | 591 | CPU_CFLAGS="-m31" ;; |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 592 | s390x) |
| 593 | CPU_CFLAGS="-m64" ;; |
| 594 | |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 595 | sparc|sun4[cdmuv]) |
bellard | ae22853 | 2003-05-13 18:59:59 +0000 | [diff] [blame] | 596 | cpu="sparc" |
Paolo Bonzini | e4da0e3 | 2021-11-09 09:23:56 +0100 | [diff] [blame] | 597 | CPU_CFLAGS="-m32 -mv8plus -mcpu=ultrasparc" ;; |
| 598 | sparc64) |
| 599 | CPU_CFLAGS="-m64 -mcpu=ultrasparc" ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 600 | esac |
Juan Quintela | e2d52ad | 2009-08-12 18:20:24 +0200 | [diff] [blame] | 601 | |
Paolo Bonzini | 0db4a06 | 2010-12-23 11:43:49 +0100 | [diff] [blame] | 602 | : ${make=${MAKE-make}} |
Paolo Bonzini | b6daf4d | 2020-09-01 06:38:04 -0400 | [diff] [blame] | 603 | |
Daniel P. Berrangé | faf4414 | 2019-03-27 17:07:01 +0000 | [diff] [blame] | 604 | # We prefer python 3.x. A bare 'python' is traditionally |
| 605 | # python 2.x, but some distros have it as python 3.x, so |
Eduardo Habkost | ddf9069 | 2019-10-16 19:42:37 -0300 | [diff] [blame] | 606 | # we check that too |
Daniel P. Berrangé | faf4414 | 2019-03-27 17:07:01 +0000 | [diff] [blame] | 607 | python= |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 608 | explicit_python=no |
Eduardo Habkost | ddf9069 | 2019-10-16 19:42:37 -0300 | [diff] [blame] | 609 | for binary in "${PYTHON-python3}" python |
Daniel P. Berrangé | faf4414 | 2019-03-27 17:07:01 +0000 | [diff] [blame] | 610 | do |
| 611 | if has "$binary" |
| 612 | then |
Paolo Bonzini | 95c5f2d | 2019-06-10 12:03:44 +0200 | [diff] [blame] | 613 | python=$(command -v "$binary") |
Daniel P. Berrangé | faf4414 | 2019-03-27 17:07:01 +0000 | [diff] [blame] | 614 | break |
| 615 | fi |
| 616 | done |
Markus Armbruster | 903458c | 2020-02-14 18:18:41 +0100 | [diff] [blame] | 617 | |
Markus Armbruster | 903458c | 2020-02-14 18:18:41 +0100 | [diff] [blame] | 618 | |
Alex Bennée | 39d87c8 | 2020-03-03 15:06:20 +0000 | [diff] [blame] | 619 | # Check for ancillary tools used in testing |
| 620 | genisoimage= |
Alex Bennée | 3df437c | 2020-05-19 09:22:48 -0400 | [diff] [blame] | 621 | for binary in genisoimage mkisofs |
Alex Bennée | 39d87c8 | 2020-03-03 15:06:20 +0000 | [diff] [blame] | 622 | do |
| 623 | if has $binary |
| 624 | then |
| 625 | genisoimage=$(command -v "$binary") |
| 626 | break |
| 627 | fi |
| 628 | done |
| 629 | |
Peter Maydell | 3c4a4d0 | 2012-08-11 22:34:40 +0100 | [diff] [blame] | 630 | # Default objcc to clang if available, otherwise use CC |
| 631 | if has clang; then |
| 632 | objcc=clang |
| 633 | else |
| 634 | objcc="$cc" |
| 635 | fi |
| 636 | |
Juan Quintela | 3457a3f | 2009-08-03 14:46:07 +0200 | [diff] [blame] | 637 | if test "$mingw32" = "yes" ; then |
Juan Quintela | 3457a3f | 2009-08-03 14:46:07 +0200 | [diff] [blame] | 638 | EXESUF=".exe" |
Stefan Weil | 78e9d4a | 2015-11-26 12:13:12 +0100 | [diff] [blame] | 639 | # MinGW needs -mthreads for TLS and macro _MT. |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 640 | CONFIGURE_CFLAGS="-mthreads $CONFIGURE_CFLAGS" |
John Snow | 93b2586 | 2015-03-25 18:57:37 -0400 | [diff] [blame] | 641 | write_c_skeleton; |
Paolo Bonzini | d17f305 | 2020-08-18 12:17:01 +0200 | [diff] [blame] | 642 | prefix="/qemu" |
Paolo Bonzini | c09c1ce | 2022-04-20 17:33:57 +0200 | [diff] [blame] | 643 | bindir="" |
Marc-André Lureau | 77433a5 | 2020-08-26 15:04:12 +0400 | [diff] [blame] | 644 | qemu_suffix="" |
Juan Quintela | 3457a3f | 2009-08-03 14:46:07 +0200 | [diff] [blame] | 645 | fi |
| 646 | |
Anthony Liguori | 487fefd | 2009-06-11 13:28:25 -0500 | [diff] [blame] | 647 | werror="" |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 648 | |
Akihiko Odaki | 8154f5e | 2022-06-25 00:40:42 +0900 | [diff] [blame] | 649 | meson_option_build_array() { |
| 650 | printf '[' |
Peter Maydell | c5cfdab | 2022-07-20 16:26:31 +0100 | [diff] [blame] | 651 | (if test "$targetos" = windows; then |
Akihiko Odaki | 8154f5e | 2022-06-25 00:40:42 +0900 | [diff] [blame] | 652 | IFS=\; |
| 653 | else |
| 654 | IFS=: |
| 655 | fi |
| 656 | for e in $1; do |
Peter Maydell | 65842b0 | 2022-07-20 16:26:29 +0100 | [diff] [blame] | 657 | printf '"""' |
| 658 | # backslash escape any '\' and '"' characters |
| 659 | printf "%s" "$e" | sed -e 's/\([\"]\)/\\\1/g' |
| 660 | printf '""",' |
Akihiko Odaki | 8154f5e | 2022-06-25 00:40:42 +0900 | [diff] [blame] | 661 | done) |
| 662 | printf ']\n' |
| 663 | } |
| 664 | |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 665 | . "$source_path/scripts/meson-buildoptions.sh" |
Paolo Bonzini | 61d6309 | 2021-10-07 15:08:28 +0200 | [diff] [blame] | 666 | |
| 667 | meson_options= |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 668 | meson_option_add() { |
| 669 | meson_options="$meson_options $(quote_sh "$1")" |
| 670 | } |
Paolo Bonzini | 61d6309 | 2021-10-07 15:08:28 +0200 | [diff] [blame] | 671 | meson_option_parse() { |
| 672 | meson_options="$meson_options $(_meson_option_parse "$@")" |
| 673 | if test $? -eq 1; then |
| 674 | echo "ERROR: unknown option $1" |
| 675 | echo "Try '$0 --help' for more information" |
| 676 | exit 1 |
| 677 | fi |
| 678 | } |
| 679 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 680 | for opt do |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 681 | optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)') |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 682 | case "$opt" in |
bellard | 2efc326 | 2005-12-18 19:14:49 +0000 | [diff] [blame] | 683 | --help|-h) show_help=yes |
| 684 | ;; |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 685 | --version|-V) exec cat "$source_path/VERSION" |
Mike Frysinger | 99123e1 | 2011-04-07 01:12:28 -0400 | [diff] [blame] | 686 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 687 | --prefix=*) prefix="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 688 | ;; |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 689 | --cross-prefix=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 690 | ;; |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 691 | --cc=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 692 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 693 | --host-cc=*) host_cc="$optarg" |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 694 | ;; |
Tomoki Sekiyama | 83f73fc | 2013-08-07 11:39:36 -0400 | [diff] [blame] | 695 | --cxx=*) |
| 696 | ;; |
Peter Maydell | 3c4a4d0 | 2012-08-11 22:34:40 +0100 | [diff] [blame] | 697 | --objcc=*) objcc="$optarg" |
| 698 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 699 | --make=*) make="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 700 | ;; |
Paolo Bonzini | b6daf4d | 2020-09-01 06:38:04 -0400 | [diff] [blame] | 701 | --install=*) |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 702 | ;; |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 703 | --python=*) python="$optarg" ; explicit_python=yes |
Blue Swirl | c886edf | 2011-07-22 21:08:09 +0000 | [diff] [blame] | 704 | ;; |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 705 | --skip-meson) skip_meson=yes |
| 706 | ;; |
| 707 | --meson=*) meson="$optarg" |
| 708 | ;; |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 709 | --ninja=*) ninja="$optarg" |
| 710 | ;; |
Brad | e2d8830 | 2011-09-02 16:53:28 -0400 | [diff] [blame] | 711 | --smbd=*) smbd="$optarg" |
| 712 | ;; |
Juan Quintela | e2a2ed0 | 2009-08-03 14:46:02 +0200 | [diff] [blame] | 713 | --extra-cflags=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 714 | ;; |
Bruno Dominguez | 11cde1c | 2017-06-06 14:07:47 +0100 | [diff] [blame] | 715 | --extra-cxxflags=*) |
| 716 | ;; |
Philippe Mathieu-Daudé | e910c7d | 2022-01-08 22:38:55 +0100 | [diff] [blame] | 717 | --extra-objcflags=*) |
| 718 | ;; |
Juan Quintela | e2a2ed0 | 2009-08-03 14:46:02 +0200 | [diff] [blame] | 719 | --extra-ldflags=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 720 | ;; |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 721 | --cross-cc-*) |
| 722 | ;; |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 723 | --cross-prefix-*) |
| 724 | ;; |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 725 | --enable-debug-info) meson_option_add -Ddebug=true |
Paolo Bonzini | 2860974 | 2022-04-20 17:33:39 +0200 | [diff] [blame] | 726 | ;; |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 727 | --disable-debug-info) meson_option_add -Ddebug=false |
Paolo Bonzini | 2860974 | 2022-04-20 17:33:39 +0200 | [diff] [blame] | 728 | ;; |
Fam Zheng | 1796926 | 2014-02-10 14:48:56 +0800 | [diff] [blame] | 729 | --enable-modules) |
| 730 | modules="yes" |
| 731 | ;; |
Stefan Hajnoczi | 3aa88b3 | 2015-11-02 14:06:23 +0000 | [diff] [blame] | 732 | --disable-modules) |
| 733 | modules="no" |
| 734 | ;; |
Juan Quintela | 2ff6b91 | 2009-08-03 14:45:55 +0200 | [diff] [blame] | 735 | --cpu=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 736 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 737 | --target-list=*) target_list="$optarg" |
Alex Bennée | 447e133 | 2019-03-19 11:59:12 +0000 | [diff] [blame] | 738 | if test "$target_list_exclude"; then |
| 739 | error_exit "Can't mix --target-list with --target-list-exclude" |
| 740 | fi |
| 741 | ;; |
| 742 | --target-list-exclude=*) target_list_exclude="$optarg" |
| 743 | if test "$target_list"; then |
| 744 | error_exit "Can't mix --target-list-exclude with --target-list" |
| 745 | fi |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 746 | ;; |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 747 | --with-default-devices) meson_option_add -Ddefault_devices=true |
Paolo Bonzini | f349474 | 2019-01-23 14:56:17 +0800 | [diff] [blame] | 748 | ;; |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 749 | --without-default-devices) meson_option_add -Ddefault_devices=false |
Paolo Bonzini | f349474 | 2019-01-23 14:56:17 +0800 | [diff] [blame] | 750 | ;; |
Alex Bennée | d1d5e9e | 2021-07-07 14:17:44 +0100 | [diff] [blame] | 751 | --with-devices-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --with-devices-FOO option" |
| 752 | ;; |
| 753 | --with-devices-*) device_arch=${opt#--with-devices-}; |
| 754 | device_arch=${device_arch%%=*} |
| 755 | cf=$source_path/configs/devices/$device_arch-softmmu/$optarg.mak |
| 756 | if test -f "$cf"; then |
| 757 | device_archs="$device_archs $device_arch" |
| 758 | eval "devices_${device_arch}=\$optarg" |
| 759 | else |
| 760 | error_exit "File $cf does not exist" |
| 761 | fi |
| 762 | ;; |
Alex Bennée | c87ea11 | 2020-12-10 19:04:13 +0000 | [diff] [blame] | 763 | --without-default-features) # processed above |
| 764 | ;; |
Loïc Minier | 7942769 | 2010-01-31 12:23:45 +0100 | [diff] [blame] | 765 | --static) |
| 766 | static="yes" |
Sergei Trofimovich | 17884d7 | 2012-01-31 22:03:45 +0300 | [diff] [blame] | 767 | QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 768 | ;; |
Paolo Bonzini | 0b24e75 | 2010-05-26 16:08:26 +0200 | [diff] [blame] | 769 | --bindir=*) bindir="$optarg" |
| 770 | ;; |
Marc-André Lureau | 77433a5 | 2020-08-26 15:04:12 +0400 | [diff] [blame] | 771 | --with-suffix=*) qemu_suffix="$optarg" |
Eduardo Habkost | 023d3d6 | 2012-04-18 16:55:50 -0300 | [diff] [blame] | 772 | ;; |
Olaf Hering | 181ce1d | 2018-04-18 09:50:44 +0200 | [diff] [blame] | 773 | --host=*|--build=*|\ |
| 774 | --disable-dependency-tracking|\ |
Luiz Capitulino | 785c23a | 2012-10-03 18:35:57 -0300 | [diff] [blame] | 775 | --sbindir=*|--sharedstatedir=*|\ |
Paolo Bonzini | fe0038b | 2020-10-16 04:35:10 -0400 | [diff] [blame] | 776 | --oldincludedir=*|--datarootdir=*|--infodir=*|\ |
Max Filippov | 023ddd7 | 2011-11-24 16:11:31 +0400 | [diff] [blame] | 777 | --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*) |
| 778 | # These switches are silently ignored, for compatibility with |
| 779 | # autoconf-generated configure scripts. This allows QEMU's |
| 780 | # configure to be used by RPM and similar macros that set |
| 781 | # lots of directory switches by default. |
| 782 | ;; |
aurel32 | f839394 | 2009-04-13 18:45:38 +0000 | [diff] [blame] | 783 | --enable-debug-tcg) debug_tcg="yes" |
| 784 | ;; |
| 785 | --disable-debug-tcg) debug_tcg="no" |
| 786 | ;; |
Paul Brook | f3d08ee | 2009-06-04 11:39:04 +0100 | [diff] [blame] | 787 | --enable-debug) |
| 788 | # Enable debugging options that aren't excessively noisy |
| 789 | debug_tcg="yes" |
Paolo Bonzini | c55cf6a | 2021-10-13 11:46:09 +0200 | [diff] [blame] | 790 | meson_option_parse --enable-debug-mutex "" |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 791 | meson_option_add -Doptimization=0 |
John Snow | b553a04 | 2015-11-03 15:43:42 -0500 | [diff] [blame] | 792 | fortify_source="no" |
Paul Brook | f3d08ee | 2009-06-04 11:39:04 +0100 | [diff] [blame] | 793 | ;; |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 794 | --enable-sanitizers) sanitizers="yes" |
| 795 | ;; |
| 796 | --disable-sanitizers) sanitizers="no" |
| 797 | ;; |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 798 | --enable-tsan) tsan="yes" |
| 799 | ;; |
| 800 | --disable-tsan) tsan="no" |
| 801 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 802 | --disable-tcg) tcg="disabled" |
Alex Bennée | d1a1425 | 2021-07-09 15:29:54 +0100 | [diff] [blame] | 803 | plugins="no" |
Paolo Bonzini | b3f6ea7 | 2017-07-03 16:59:07 +0200 | [diff] [blame] | 804 | ;; |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 805 | --enable-tcg) tcg="enabled" |
Paolo Bonzini | b3f6ea7 | 2017-07-03 16:59:07 +0200 | [diff] [blame] | 806 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 807 | --disable-system) softmmu="no" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 808 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 809 | --enable-system) softmmu="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 810 | ;; |
Zachary Amsden | 0953a80 | 2009-07-30 00:14:59 -1000 | [diff] [blame] | 811 | --disable-user) |
| 812 | linux_user="no" ; |
| 813 | bsd_user="no" ; |
Zachary Amsden | 0953a80 | 2009-07-30 00:14:59 -1000 | [diff] [blame] | 814 | ;; |
| 815 | --enable-user) ;; |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 816 | --disable-linux-user) linux_user="no" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 817 | ;; |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 818 | --enable-linux-user) linux_user="yes" |
| 819 | ;; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 820 | --disable-bsd-user) bsd_user="no" |
| 821 | ;; |
| 822 | --enable-bsd-user) bsd_user="yes" |
| 823 | ;; |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 824 | --enable-pie) pie="yes" |
Kirill A. Shutemov | 34005a0 | 2009-09-12 02:17:55 +0300 | [diff] [blame] | 825 | ;; |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 826 | --disable-pie) pie="no" |
Kirill A. Shutemov | 34005a0 | 2009-09-12 02:17:55 +0300 | [diff] [blame] | 827 | ;; |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 828 | --enable-werror) werror="yes" |
| 829 | ;; |
| 830 | --disable-werror) werror="no" |
| 831 | ;; |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 832 | --enable-stack-protector) stack_protector="yes" |
| 833 | ;; |
| 834 | --disable-stack-protector) stack_protector="no" |
| 835 | ;; |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 836 | --enable-safe-stack) safe_stack="yes" |
| 837 | ;; |
| 838 | --disable-safe-stack) safe_stack="no" |
| 839 | ;; |
Daniele Buono | 9e62ba4 | 2020-12-04 18:06:14 -0500 | [diff] [blame] | 840 | --enable-cfi) |
| 841 | cfi="true"; |
Paolo Bonzini | c54b59e | 2022-04-20 17:33:58 +0200 | [diff] [blame] | 842 | meson_option_add -Db_lto=true |
Daniele Buono | 9e62ba4 | 2020-12-04 18:06:14 -0500 | [diff] [blame] | 843 | ;; |
| 844 | --disable-cfi) cfi="false" |
| 845 | ;; |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 846 | --disable-fdt) fdt="disabled" |
Juan Quintela | 2df87df | 2009-08-12 18:29:54 +0200 | [diff] [blame] | 847 | ;; |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 848 | --enable-fdt) fdt="enabled" |
| 849 | ;; |
| 850 | --enable-fdt=git) fdt="internal" |
| 851 | ;; |
Paolo Bonzini | 03a3c0b | 2021-10-07 15:08:27 +0200 | [diff] [blame] | 852 | --enable-fdt=*) fdt="$optarg" |
Juan Quintela | 2df87df | 2009-08-12 18:29:54 +0200 | [diff] [blame] | 853 | ;; |
Alex Barcelo | 519175a | 2012-02-28 12:25:50 +0100 | [diff] [blame] | 854 | --with-coroutine=*) coroutine="$optarg" |
| 855 | ;; |
Paolo Bonzini | 1ffb3bb | 2020-08-28 19:33:54 +0200 | [diff] [blame] | 856 | --disable-zlib-test) |
Alon Levy | 1ece990 | 2011-07-26 12:30:40 +0300 | [diff] [blame] | 857 | ;; |
Fam Zheng | 52b53c0 | 2014-09-10 14:17:51 +0800 | [diff] [blame] | 858 | --disable-virtio-blk-data-plane|--enable-virtio-blk-data-plane) |
| 859 | echo "$0: $opt is obsolete, virtio-blk data-plane is always on" >&2 |
Stefan Hajnoczi | 583f6e7 | 2012-11-14 15:04:15 +0100 | [diff] [blame] | 860 | ;; |
Fam Zheng | cb6414d | 2016-09-21 12:27:16 +0800 | [diff] [blame] | 861 | --enable-vhdx|--disable-vhdx) |
| 862 | echo "$0: $opt is obsolete, VHDX driver is always built" >&2 |
| 863 | ;; |
Fam Zheng | 315d318 | 2016-09-21 12:27:21 +0800 | [diff] [blame] | 864 | --enable-uuid|--disable-uuid) |
| 865 | echo "$0: $opt is obsolete, UUID support is always built" >&2 |
| 866 | ;; |
Daniel P. Berrange | cc84d63 | 2017-10-20 15:02:43 +0100 | [diff] [blame] | 867 | --with-git=*) git="$optarg" |
| 868 | ;; |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 869 | --with-git-submodules=*) |
| 870 | git_submodules_action="$optarg" |
Daniel P. Berrange | f62bbee | 2017-10-26 13:52:26 +0100 | [diff] [blame] | 871 | ;; |
Alex Bennée | 9b8e429 | 2021-07-09 15:29:56 +0100 | [diff] [blame] | 872 | --enable-plugins) if test "$mingw32" = "yes"; then |
| 873 | error_exit "TCG plugins not currently supported on Windows platforms" |
| 874 | else |
| 875 | plugins="yes" |
| 876 | fi |
Alex Bennée | 40e8c6f | 2019-06-13 14:52:25 +0100 | [diff] [blame] | 877 | ;; |
| 878 | --disable-plugins) plugins="no" |
| 879 | ;; |
Alex Bennée | afc3a8f | 2019-11-28 16:35:24 +0100 | [diff] [blame] | 880 | --enable-containers) use_containers="yes" |
| 881 | ;; |
| 882 | --disable-containers) use_containers="no" |
| 883 | ;; |
Alex Bennée | f48e590 | 2020-03-16 17:21:48 +0000 | [diff] [blame] | 884 | --gdb=*) gdb_bin="$optarg" |
| 885 | ;; |
Paolo Bonzini | 3b4da13 | 2021-10-07 15:08:29 +0200 | [diff] [blame] | 886 | # backwards compatibility options |
| 887 | --enable-trace-backend=*) meson_option_parse "--enable-trace-backends=$optarg" "$optarg" |
| 888 | ;; |
| 889 | --disable-blobs) meson_option_parse --disable-install-blobs "" |
| 890 | ;; |
Jagannathan Raman | 5511696 | 2022-06-13 16:26:24 -0400 | [diff] [blame] | 891 | --enable-vfio-user-server) vfio_user_server="enabled" |
| 892 | ;; |
| 893 | --disable-vfio-user-server) vfio_user_server="disabled" |
| 894 | ;; |
Paolo Bonzini | 3b4da13 | 2021-10-07 15:08:29 +0200 | [diff] [blame] | 895 | --enable-tcmalloc) meson_option_parse --enable-malloc=tcmalloc tcmalloc |
| 896 | ;; |
| 897 | --enable-jemalloc) meson_option_parse --enable-malloc=jemalloc jemalloc |
| 898 | ;; |
| 899 | # everything else has the same name in configure and meson |
Paolo Bonzini | 4fda601 | 2022-04-20 17:33:51 +0200 | [diff] [blame] | 900 | --*) meson_option_parse "$opt" "$optarg" |
balrog | 7f1559c | 2007-11-17 10:24:32 +0000 | [diff] [blame] | 901 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 902 | esac |
| 903 | done |
| 904 | |
Alex Bennée | d1a1425 | 2021-07-09 15:29:54 +0100 | [diff] [blame] | 905 | # test for any invalid configuration combinations |
| 906 | if test "$plugins" = "yes" -a "$tcg" = "disabled"; then |
| 907 | error_exit "Can't enable plugins on non-TCG builds" |
| 908 | fi |
| 909 | |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 910 | case $git_submodules_action in |
| 911 | update|validate) |
| 912 | if test ! -e "$source_path/.git"; then |
| 913 | echo "ERROR: cannot $git_submodules_action git submodules without .git" |
| 914 | exit 1 |
| 915 | fi |
| 916 | ;; |
| 917 | ignore) |
Paolo Bonzini | b80fd28 | 2021-05-12 09:18:55 +0200 | [diff] [blame] | 918 | if ! test -f "$source_path/ui/keycodemapdb/README" |
| 919 | then |
| 920 | echo |
| 921 | echo "ERROR: missing GIT submodules" |
| 922 | echo |
| 923 | if test -e "$source_path/.git"; then |
| 924 | echo "--with-git-submodules=ignore specified but submodules were not" |
| 925 | echo "checked out. Please initialize and update submodules." |
| 926 | else |
| 927 | echo "This is not a GIT checkout but module content appears to" |
| 928 | echo "be missing. Do not use 'git archive' or GitHub download links" |
| 929 | echo "to acquire QEMU source archives. Non-GIT builds are only" |
| 930 | echo "supported with source archives linked from:" |
| 931 | echo |
| 932 | echo " https://www.qemu.org/download/#source" |
| 933 | echo |
| 934 | echo "Developers working with GIT can use scripts/archive-source.sh" |
| 935 | echo "if they need to create valid source archives." |
| 936 | fi |
| 937 | echo |
| 938 | exit 1 |
| 939 | fi |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 940 | ;; |
| 941 | *) |
| 942 | echo "ERROR: invalid --with-git-submodules= value '$git_submodules_action'" |
| 943 | exit 1 |
| 944 | ;; |
| 945 | esac |
| 946 | |
Peter Maydell | 60e0df2 | 2011-05-03 14:50:13 +0100 | [diff] [blame] | 947 | default_target_list="" |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 948 | mak_wilds="" |
| 949 | |
Paolo Bonzini | b915a2f | 2021-11-09 10:10:41 +0100 | [diff] [blame] | 950 | if [ "$linux_user" != no ]; then |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 951 | if [ "$targetos" = linux ] && [ -d "$source_path/linux-user/include/host/$cpu" ]; then |
Paolo Bonzini | b915a2f | 2021-11-09 10:10:41 +0100 | [diff] [blame] | 952 | linux_user=yes |
| 953 | elif [ "$linux_user" = yes ]; then |
| 954 | error_exit "linux-user not supported on this architecture" |
| 955 | fi |
| 956 | fi |
| 957 | if [ "$bsd_user" != no ]; then |
| 958 | if [ "$bsd_user" = "" ]; then |
| 959 | test $targetos = freebsd && bsd_user=yes |
| 960 | fi |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 961 | if [ "$bsd_user" = yes ] && ! [ -d "$source_path/bsd-user/$targetos" ]; then |
Paolo Bonzini | b915a2f | 2021-11-09 10:10:41 +0100 | [diff] [blame] | 962 | error_exit "bsd-user not supported on this host OS" |
| 963 | fi |
| 964 | fi |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 965 | if [ "$softmmu" = "yes" ]; then |
Alex Bennée | 812b31d | 2021-07-07 14:17:43 +0100 | [diff] [blame] | 966 | mak_wilds="${mak_wilds} $source_path/configs/targets/*-softmmu.mak" |
Peter Maydell | 60e0df2 | 2011-05-03 14:50:13 +0100 | [diff] [blame] | 967 | fi |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 968 | if [ "$linux_user" = "yes" ]; then |
Alex Bennée | 812b31d | 2021-07-07 14:17:43 +0100 | [diff] [blame] | 969 | mak_wilds="${mak_wilds} $source_path/configs/targets/*-linux-user.mak" |
Peter Maydell | 60e0df2 | 2011-05-03 14:50:13 +0100 | [diff] [blame] | 970 | fi |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 971 | if [ "$bsd_user" = "yes" ]; then |
Alex Bennée | 812b31d | 2021-07-07 14:17:43 +0100 | [diff] [blame] | 972 | mak_wilds="${mak_wilds} $source_path/configs/targets/*-bsd-user.mak" |
Peter Maydell | 60e0df2 | 2011-05-03 14:50:13 +0100 | [diff] [blame] | 973 | fi |
| 974 | |
Alex Bennée | 2d838d9 | 2020-09-09 12:27:37 +0100 | [diff] [blame] | 975 | for config in $mak_wilds; do |
| 976 | target="$(basename "$config" .mak)" |
Alex Bennée | 98db9a0 | 2020-09-15 14:43:14 +0100 | [diff] [blame] | 977 | if echo "$target_list_exclude" | grep -vq "$target"; then |
Alex Bennée | 2d838d9 | 2020-09-09 12:27:37 +0100 | [diff] [blame] | 978 | default_target_list="${default_target_list} $target" |
| 979 | fi |
| 980 | done |
Peter Maydell | 6e92f82 | 2013-05-20 16:16:15 +0100 | [diff] [blame] | 981 | |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 982 | if test x"$show_help" = x"yes" ; then |
| 983 | cat << EOF |
| 984 | |
| 985 | Usage: configure [options] |
| 986 | Options: [defaults in brackets after descriptions] |
| 987 | |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 988 | Standard options: |
| 989 | --help print this message |
| 990 | --prefix=PREFIX install in PREFIX [$prefix] |
Thomas Huth | 74154d7 | 2022-01-12 11:27:22 +0000 | [diff] [blame] | 991 | --target-list=LIST set target list (default: build all) |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 992 | $(echo Available targets: $default_target_list | \ |
| 993 | fold -s -w 53 | sed -e 's/^/ /') |
Alex Bennée | 447e133 | 2019-03-19 11:59:12 +0000 | [diff] [blame] | 994 | --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] | 995 | |
| 996 | Advanced options (experts only): |
Joelle van Dyne | 3812c0c | 2021-01-25 17:24:48 -0800 | [diff] [blame] | 997 | --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] | 998 | --cc=CC use C compiler CC [$cc] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 999 | --host-cc=CC use C compiler CC [$host_cc] for code run at |
| 1000 | build time |
| 1001 | --cxx=CXX use C++ compiler CXX [$cxx] |
| 1002 | --objcc=OBJCC use Objective-C compiler OBJCC [$objcc] |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 1003 | --extra-cflags=CFLAGS append extra C compiler flags CFLAGS |
| 1004 | --extra-cxxflags=CXXFLAGS append extra C++ compiler flags CXXFLAGS |
Philippe Mathieu-Daudé | e910c7d | 2022-01-08 22:38:55 +0100 | [diff] [blame] | 1005 | --extra-objcflags=OBJCFLAGS append extra Objective C compiler flags OBJCFLAGS |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1006 | --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS |
Alex Bennée | d75402b | 2018-04-04 20:27:05 +0100 | [diff] [blame] | 1007 | --cross-cc-ARCH=CC use compiler when building ARCH guest test cases |
Matheus Ferst | 479ca4c | 2022-01-20 14:31:41 -0300 | [diff] [blame] | 1008 | --cross-cc-cflags-ARCH= use compiler flags when building ARCH guest tests |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1009 | --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] | 1010 | --make=MAKE use specified make [$make] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1011 | --python=PYTHON use specified python [$python] |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1012 | --meson=MESON use specified meson [$meson] |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 1013 | --ninja=NINJA use specified ninja [$ninja] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1014 | --smbd=SMBD use specified smbd [$smbd] |
Thomas Huth | db1b5f1 | 2018-03-27 17:09:30 +0200 | [diff] [blame] | 1015 | --with-git=GIT use specified git [$git] |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 1016 | --with-git-submodules=update update git submodules (default if .git dir exists) |
| 1017 | --with-git-submodules=validate fail if git submodules are not up to date |
| 1018 | --with-git-submodules=ignore do not update or check git submodules (default if no .git dir) |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1019 | --static enable static build [$static] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1020 | --bindir=PATH install binaries in PATH |
Marc-André Lureau | ca8c090 | 2020-08-26 15:04:14 +0400 | [diff] [blame] | 1021 | --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] | 1022 | --without-default-features default all --enable-* options to "disabled" |
| 1023 | --without-default-devices do not include any device that is not needed to |
| 1024 | start the emulator (only use if you are including |
Alex Bennée | d1d5e9e | 2021-07-07 14:17:44 +0100 | [diff] [blame] | 1025 | desired devices in configs/devices/) |
| 1026 | --with-devices-ARCH=NAME override default configs/devices |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1027 | --enable-debug enable common debug build options |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1028 | --enable-sanitizers enable default sanitizers |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 1029 | --enable-tsan enable thread sanitizer |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1030 | --disable-werror disable compilation abort on warning |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 1031 | --disable-stack-protector disable compiler-provided stack protection |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1032 | --cpu=CPU Build for host CPU [$cpu] |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1033 | --with-coroutine=BACKEND coroutine backend. Supported options: |
Daniel P. Berrange | 33c53c5 | 2017-04-28 13:24:44 +0100 | [diff] [blame] | 1034 | ucontext, sigaltstack, windows |
Alex Bennée | 40e8c6f | 2019-06-13 14:52:25 +0100 | [diff] [blame] | 1035 | --enable-plugins |
| 1036 | enable plugins via shared library loading |
Alex Bennée | afc3a8f | 2019-11-28 16:35:24 +0100 | [diff] [blame] | 1037 | --disable-containers don't use containers for cross-building |
Alex Bennée | f48e590 | 2020-03-16 17:21:48 +0000 | [diff] [blame] | 1038 | --gdb=GDB-path gdb to use for gdbstub tests [$gdb_bin] |
Paolo Bonzini | 61d6309 | 2021-10-07 15:08:28 +0200 | [diff] [blame] | 1039 | EOF |
| 1040 | meson_options_help |
| 1041 | cat << EOF |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1042 | system all system emulation targets |
| 1043 | user supported user emulation targets |
| 1044 | linux-user all linux usermode emulation targets |
| 1045 | bsd-user all BSD usermode emulation targets |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1046 | pie Position Independent Executables |
Marc-André Lureau | 21e709a | 2019-07-18 16:04:13 +0400 | [diff] [blame] | 1047 | modules modules support (non-Windows) |
Michael Tokarev | c23f23b | 2015-06-17 22:19:26 +0300 | [diff] [blame] | 1048 | debug-tcg TCG debugging (default is disabled) |
| 1049 | debug-info debugging information |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 1050 | safe-stack SafeStack Stack Smash Protection. Depends on |
| 1051 | clang/llvm >= 3.7 and requires coroutine backend ucontext. |
Stefan Weil | 08fb77e | 2013-12-18 22:09:39 +0100 | [diff] [blame] | 1052 | |
| 1053 | NOTE: The object files are built at the place where configure is launched |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 1054 | EOF |
Fam Zheng | 2d2ad6d | 2014-04-18 14:55:36 +0800 | [diff] [blame] | 1055 | exit 0 |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 1056 | fi |
| 1057 | |
Thomas Huth | 9c79024 | 2019-03-11 11:20:34 +0100 | [diff] [blame] | 1058 | # Remove old dependency files to make sure that they get properly regenerated |
Peter Maydell | 002d8c1 | 2022-08-25 16:07:00 +0100 | [diff] [blame] | 1059 | rm -f ./*/config-devices.mak.d |
Thomas Huth | 9c79024 | 2019-03-11 11:20:34 +0100 | [diff] [blame] | 1060 | |
Daniel P. Berrangé | faf4414 | 2019-03-27 17:07:01 +0000 | [diff] [blame] | 1061 | if test -z "$python" |
| 1062 | then |
| 1063 | error_exit "Python not found. Use --python=/path/to/python" |
Stefan Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1064 | fi |
Roman Bolshakov | 8e2c76b | 2020-08-25 23:27:55 +0300 | [diff] [blame] | 1065 | if ! has "$make" |
| 1066 | then |
| 1067 | error_exit "GNU make ($make) not found" |
| 1068 | fi |
Stefan Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1069 | |
| 1070 | # Note that if the Python conditional here evaluates True we will exit |
| 1071 | # with status 1 which is a shell 'false' value. |
Thomas Huth | 1b11f28 | 2020-09-25 16:40:27 +0100 | [diff] [blame] | 1072 | if ! $python -c 'import sys; sys.exit(sys.version_info < (3,6))'; then |
| 1073 | error_exit "Cannot use '$python', Python >= 3.6 is required." \ |
Stefan Hajnoczi | c53eeaf | 2017-03-28 14:44:18 +0100 | [diff] [blame] | 1074 | "Use --python=/path/to/python to specify a supported Python." |
| 1075 | fi |
| 1076 | |
| 1077 | # Suppress writing compiled files |
| 1078 | python="$python -B" |
| 1079 | |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1080 | if test -z "$meson"; then |
Paolo Bonzini | 8a29c20 | 2021-12-23 15:29:56 +0100 | [diff] [blame] | 1081 | 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] | 1082 | meson=meson |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 1083 | elif test "$git_submodules_action" != 'ignore' ; then |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1084 | meson=git |
| 1085 | elif test -e "${source_path}/meson/meson.py" ; then |
| 1086 | meson=internal |
| 1087 | else |
| 1088 | if test "$explicit_python" = yes; then |
| 1089 | error_exit "--python requires using QEMU's embedded Meson distribution, but it was not found." |
| 1090 | else |
| 1091 | error_exit "Meson not found. Use --meson=/path/to/meson" |
| 1092 | fi |
| 1093 | fi |
| 1094 | else |
| 1095 | # Meson uses its own Python interpreter to invoke other Python scripts, |
| 1096 | # but the user wants to use the one they specified with --python. |
| 1097 | # |
| 1098 | # We do not want to override the distro Python interpreter (and sometimes |
| 1099 | # cannot: for example in Homebrew /usr/bin/meson is a bash script), so |
| 1100 | # just require --meson=git|internal together with --python. |
| 1101 | if test "$explicit_python" = yes; then |
| 1102 | case "$meson" in |
| 1103 | git | internal) ;; |
| 1104 | *) error_exit "--python requires using QEMU's embedded Meson distribution." ;; |
| 1105 | esac |
| 1106 | fi |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1107 | fi |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1108 | |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1109 | if test "$meson" = git; then |
| 1110 | git_submodules="${git_submodules} meson" |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1111 | fi |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1112 | |
| 1113 | case "$meson" in |
| 1114 | git | internal) |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1115 | meson="$python ${source_path}/meson/meson.py" |
| 1116 | ;; |
Paolo Bonzini | 84ec0c2 | 2020-09-04 10:00:26 -0400 | [diff] [blame] | 1117 | *) meson=$(command -v "$meson") ;; |
Marc-André Lureau | 0a01d76 | 2019-08-21 11:21:16 +0400 | [diff] [blame] | 1118 | esac |
| 1119 | |
Paolo Bonzini | 09e9332 | 2020-08-13 09:28:11 -0400 | [diff] [blame] | 1120 | # Probe for ninja |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 1121 | |
| 1122 | if test -z "$ninja"; then |
| 1123 | for c in ninja ninja-build samu; do |
| 1124 | if has $c; then |
| 1125 | ninja=$(command -v "$c") |
| 1126 | break |
| 1127 | fi |
| 1128 | done |
Paolo Bonzini | 09e9332 | 2020-08-13 09:28:11 -0400 | [diff] [blame] | 1129 | if test -z "$ninja"; then |
| 1130 | error_exit "Cannot find Ninja" |
| 1131 | fi |
Paolo Bonzini | 4832888 | 2020-08-26 08:04:15 +0200 | [diff] [blame] | 1132 | fi |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 1133 | |
Daniel Henrique Barboza | 9aae6e5 | 2017-11-02 07:09:06 -0200 | [diff] [blame] | 1134 | # Check that the C compiler works. Doing this here before testing |
| 1135 | # the host CPU ensures that we had a valid CC to autodetect the |
| 1136 | # $cpu var (and we should bail right here if that's not the case). |
| 1137 | # It also allows the help message to be printed without a CC. |
| 1138 | write_c_skeleton; |
| 1139 | if compile_object ; then |
| 1140 | : C compiler works ok |
| 1141 | else |
| 1142 | error_exit "\"$cc\" either does not exist or does not work" |
| 1143 | fi |
| 1144 | if ! compile_prog ; then |
| 1145 | error_exit "\"$cc\" cannot build an executable (is your linker broken?)" |
| 1146 | fi |
| 1147 | |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 1148 | # Consult white-list to determine whether to enable werror |
| 1149 | # by default. Only enable by default for git builds |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 1150 | if test -z "$werror" ; then |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 1151 | if test "$git_submodules_action" != "ignore" && \ |
Eric Blake | e633a5c | 2019-02-04 20:39:37 -0600 | [diff] [blame] | 1152 | { test "$linux" = "yes" || test "$mingw32" = "yes"; }; then |
Peter Maydell | 9c83ffd | 2014-02-25 18:27:49 +0000 | [diff] [blame] | 1153 | werror="yes" |
| 1154 | else |
| 1155 | werror="no" |
| 1156 | fi |
| 1157 | fi |
| 1158 | |
Paolo Bonzini | 975ff03 | 2020-11-20 10:34:10 +0100 | [diff] [blame] | 1159 | if test "$targetos" = "bogus"; then |
Peter Maydell | fb59dab | 2017-03-28 14:01:52 +0100 | [diff] [blame] | 1160 | # Now that we know that we're not printing the help and that |
| 1161 | # the compiler works (so the results of the check_defines we used |
| 1162 | # to identify the OS are reliable), if we didn't recognize the |
| 1163 | # host OS we should stop now. |
Peter Maydell | 951fedf | 2017-07-13 16:15:32 +0100 | [diff] [blame] | 1164 | error_exit "Unrecognized host OS (uname -s reports '$(uname -s)')" |
Peter Maydell | fb59dab | 2017-03-28 14:01:52 +0100 | [diff] [blame] | 1165 | fi |
| 1166 | |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 1167 | # Check whether the compiler matches our minimum requirements: |
| 1168 | cat > $TMPC << EOF |
| 1169 | #if defined(__clang_major__) && defined(__clang_minor__) |
| 1170 | # ifdef __apple_build_version__ |
Daniel P. Berrangé | 2a85a08 | 2021-05-14 13:04:15 +0100 | [diff] [blame] | 1171 | # if __clang_major__ < 10 || (__clang_major__ == 10 && __clang_minor__ < 0) |
| 1172 | # error You need at least XCode Clang v10.0 to compile QEMU |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 1173 | # endif |
| 1174 | # else |
Daniel P. Berrangé | 2a85a08 | 2021-05-14 13:04:15 +0100 | [diff] [blame] | 1175 | # if __clang_major__ < 6 || (__clang_major__ == 6 && __clang_minor__ < 0) |
| 1176 | # error You need at least Clang v6.0 to compile QEMU |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 1177 | # endif |
| 1178 | # endif |
| 1179 | #elif defined(__GNUC__) && defined(__GNUC_MINOR__) |
nia | 3830df5 | 2021-10-01 15:30:03 +0000 | [diff] [blame] | 1180 | # if __GNUC__ < 7 || (__GNUC__ == 7 && __GNUC_MINOR__ < 4) |
| 1181 | # error You need at least GCC v7.4.0 to compile QEMU |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 1182 | # endif |
| 1183 | #else |
| 1184 | # error You either need GCC or Clang to compiler QEMU |
| 1185 | #endif |
| 1186 | int main (void) { return 0; } |
| 1187 | EOF |
| 1188 | if ! compile_prog "" "" ; then |
nia | 3830df5 | 2021-10-01 15:30:03 +0000 | [diff] [blame] | 1189 | error_exit "You need at least GCC v7.4 or Clang v6.0 (or XCode Clang v10.0)" |
Thomas Huth | efc6c07 | 2018-12-03 10:12:32 +0100 | [diff] [blame] | 1190 | fi |
| 1191 | |
Richard Henderson | 00849b9 | 2020-06-17 13:13:06 -0700 | [diff] [blame] | 1192 | # Accumulate -Wfoo and -Wno-bar separately. |
| 1193 | # We will list all of the enable flags first, and the disable flags second. |
| 1194 | # Note that we do not add -Werror, because that would enable it for all |
| 1195 | # configure tests. If a configure test failed due to -Werror this would |
| 1196 | # just silently disable some features, so it's too error prone. |
| 1197 | |
| 1198 | warn_flags= |
| 1199 | add_to warn_flags -Wold-style-declaration |
| 1200 | add_to warn_flags -Wold-style-definition |
| 1201 | add_to warn_flags -Wtype-limits |
| 1202 | add_to warn_flags -Wformat-security |
| 1203 | add_to warn_flags -Wformat-y2k |
| 1204 | add_to warn_flags -Winit-self |
| 1205 | add_to warn_flags -Wignored-qualifiers |
| 1206 | add_to warn_flags -Wempty-body |
| 1207 | add_to warn_flags -Wnested-externs |
| 1208 | add_to warn_flags -Wendif-labels |
| 1209 | add_to warn_flags -Wexpansion-to-defined |
Thomas Huth | 0a2ebce | 2020-12-11 16:24:26 +0100 | [diff] [blame] | 1210 | add_to warn_flags -Wimplicit-fallthrough=2 |
Richard Henderson | 00849b9 | 2020-06-17 13:13:06 -0700 | [diff] [blame] | 1211 | |
| 1212 | nowarn_flags= |
| 1213 | add_to nowarn_flags -Wno-initializer-overrides |
| 1214 | add_to nowarn_flags -Wno-missing-include-dirs |
| 1215 | add_to nowarn_flags -Wno-shift-negative-value |
| 1216 | add_to nowarn_flags -Wno-string-plus-int |
| 1217 | add_to nowarn_flags -Wno-typedef-redefinition |
Richard Henderson | aabab96 | 2020-06-17 13:13:07 -0700 | [diff] [blame] | 1218 | add_to nowarn_flags -Wno-tautological-type-limit-compare |
Richard Henderson | bac8d22 | 2020-06-17 13:13:08 -0700 | [diff] [blame] | 1219 | add_to nowarn_flags -Wno-psabi |
Chenyi Qiang | 28d01b1 | 2022-09-15 17:10:34 +0800 | [diff] [blame] | 1220 | add_to nowarn_flags -Wno-gnu-variable-sized-type-not-at-end |
Richard Henderson | 00849b9 | 2020-06-17 13:13:06 -0700 | [diff] [blame] | 1221 | |
| 1222 | gcc_flags="$warn_flags $nowarn_flags" |
John Snow | 93b2586 | 2015-03-25 18:57:37 -0400 | [diff] [blame] | 1223 | |
| 1224 | cc_has_warning_flag() { |
| 1225 | write_c_skeleton; |
| 1226 | |
Peter Maydell | a1d29d6 | 2012-10-27 22:19:07 +0100 | [diff] [blame] | 1227 | # Use the positive sense of the flag when testing for -Wno-wombat |
| 1228 | # support (gcc will happily accept the -Wno- form of unknown |
| 1229 | # warning options). |
John Snow | 93b2586 | 2015-03-25 18:57:37 -0400 | [diff] [blame] | 1230 | optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')" |
| 1231 | compile_prog "-Werror $optflag" "" |
| 1232 | } |
| 1233 | |
Philippe Mathieu-Daudé | 4cb37d1 | 2022-02-15 16:15:13 +0100 | [diff] [blame] | 1234 | objcc_has_warning_flag() { |
| 1235 | cat > $TMPM <<EOF |
| 1236 | int main(void) { return 0; } |
| 1237 | EOF |
| 1238 | |
| 1239 | # Use the positive sense of the flag when testing for -Wno-wombat |
| 1240 | # support (gcc will happily accept the -Wno- form of unknown |
| 1241 | # warning options). |
| 1242 | optflag="$(echo $1 | sed -e 's/^-Wno-/-W/')" |
| 1243 | do_objc -Werror $optflag \ |
| 1244 | $OBJCFLAGS $EXTRA_OBJCFLAGS $CONFIGURE_OBJCFLAGS $QEMU_OBJCFLAGS \ |
| 1245 | -o $TMPE $TMPM $QEMU_LDFLAGS |
| 1246 | } |
| 1247 | |
John Snow | 93b2586 | 2015-03-25 18:57:37 -0400 | [diff] [blame] | 1248 | for flag in $gcc_flags; do |
| 1249 | if cc_has_warning_flag $flag ; then |
| 1250 | QEMU_CFLAGS="$QEMU_CFLAGS $flag" |
Paolo Bonzini | 8d05095 | 2010-12-23 11:43:52 +0100 | [diff] [blame] | 1251 | fi |
Philippe Mathieu-Daudé | 4cb37d1 | 2022-02-15 16:15:13 +0100 | [diff] [blame] | 1252 | if objcc_has_warning_flag $flag ; then |
| 1253 | QEMU_OBJCFLAGS="$QEMU_OBJCFLAGS $flag" |
| 1254 | fi |
Paolo Bonzini | 8d05095 | 2010-12-23 11:43:52 +0100 | [diff] [blame] | 1255 | done |
| 1256 | |
Miroslav Rezanina | 3b463a3 | 2014-07-02 10:05:24 +0200 | [diff] [blame] | 1257 | if test "$stack_protector" != "no"; then |
Rodrigo Rebello | fccd35a | 2015-11-12 12:04:28 -0200 | [diff] [blame] | 1258 | cat > $TMPC << EOF |
| 1259 | int main(int argc, char *argv[]) |
| 1260 | { |
Stefan Weil | 8a0afbb | 2022-11-02 21:22:58 +0100 | [diff] [blame] | 1261 | char arr[64], *p = arr, *c = argv[argc - 1]; |
Rodrigo Rebello | fccd35a | 2015-11-12 12:04:28 -0200 | [diff] [blame] | 1262 | while (*c) { |
| 1263 | *p++ = *c++; |
| 1264 | } |
| 1265 | return 0; |
| 1266 | } |
| 1267 | EOF |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 1268 | gcc_flags="-fstack-protector-strong -fstack-protector-all" |
Miroslav Rezanina | 3b463a3 | 2014-07-02 10:05:24 +0200 | [diff] [blame] | 1269 | sp_on=0 |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 1270 | for flag in $gcc_flags; do |
Peter Maydell | 590e5dd | 2014-04-11 17:13:52 +0100 | [diff] [blame] | 1271 | # We need to check both a compile and a link, since some compiler |
| 1272 | # setups fail only on a .c->.o compile and some only at link time |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 1273 | if compile_object "-Werror $flag" && |
Peter Maydell | 590e5dd | 2014-04-11 17:13:52 +0100 | [diff] [blame] | 1274 | compile_prog "-Werror $flag" ""; then |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 1275 | QEMU_CFLAGS="$QEMU_CFLAGS $flag" |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 1276 | QEMU_LDFLAGS="$QEMU_LDFLAGS $flag" |
Miroslav Rezanina | 3b463a3 | 2014-07-02 10:05:24 +0200 | [diff] [blame] | 1277 | sp_on=1 |
Steven Noonan | 63678e1 | 2014-03-28 17:19:02 +0100 | [diff] [blame] | 1278 | break |
| 1279 | fi |
| 1280 | done |
Miroslav Rezanina | 3b463a3 | 2014-07-02 10:05:24 +0200 | [diff] [blame] | 1281 | if test "$stack_protector" = yes; then |
| 1282 | if test $sp_on = 0; then |
| 1283 | error_exit "Stack protector not supported" |
| 1284 | fi |
| 1285 | fi |
Marc-André Lureau | 37746c5 | 2013-02-25 23:31:12 +0100 | [diff] [blame] | 1286 | fi |
| 1287 | |
Paolo Bonzini | 20bc94a | 2017-10-20 12:11:32 +0200 | [diff] [blame] | 1288 | # Disable -Wmissing-braces on older compilers that warn even for |
| 1289 | # the "universal" C zero initializer {0}. |
| 1290 | cat > $TMPC << EOF |
| 1291 | struct { |
| 1292 | int a[2]; |
| 1293 | } x = {0}; |
| 1294 | EOF |
| 1295 | if compile_object "-Werror" "" ; then |
| 1296 | : |
| 1297 | else |
| 1298 | QEMU_CFLAGS="$QEMU_CFLAGS -Wno-missing-braces" |
| 1299 | fi |
| 1300 | |
Marc-André Lureau | 21e709a | 2019-07-18 16:04:13 +0400 | [diff] [blame] | 1301 | # Our module code doesn't support Windows |
| 1302 | if test "$modules" = "yes" && test "$mingw32" = "yes" ; then |
| 1303 | error_exit "Modules are not available for Windows" |
| 1304 | fi |
| 1305 | |
Alex Bennée | 5f2453a | 2021-07-09 15:29:55 +0100 | [diff] [blame] | 1306 | # Static linking is not possible with plugins, modules or PIE |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 1307 | if test "$static" = "yes" ; then |
Paolo Bonzini | aa0d1f4 | 2014-02-25 17:36:55 +0100 | [diff] [blame] | 1308 | if test "$modules" = "yes" ; then |
| 1309 | error_exit "static and modules are mutually incompatible" |
| 1310 | fi |
Alex Bennée | 5f2453a | 2021-07-09 15:29:55 +0100 | [diff] [blame] | 1311 | if test "$plugins" = "yes"; then |
| 1312 | error_exit "static and plugins are mutually incompatible" |
Alex Bennée | ba4dd2a | 2021-07-09 15:29:57 +0100 | [diff] [blame] | 1313 | else |
| 1314 | plugins="no" |
Alex Bennée | 5f2453a | 2021-07-09 15:29:55 +0100 | [diff] [blame] | 1315 | fi |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 1316 | fi |
Paolo Bonzini | 3765068 | 2021-12-10 09:55:15 +0100 | [diff] [blame] | 1317 | test "$plugins" = "" && plugins=yes |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 1318 | |
Richard Henderson | b263412 | 2019-12-17 13:54:56 -1000 | [diff] [blame] | 1319 | cat > $TMPC << EOF |
Avi Kivity | 21d4a79 | 2011-11-23 11:24:25 +0200 | [diff] [blame] | 1320 | |
| 1321 | #ifdef __linux__ |
| 1322 | # define THREAD __thread |
| 1323 | #else |
| 1324 | # define THREAD |
| 1325 | #endif |
Avi Kivity | 21d4a79 | 2011-11-23 11:24:25 +0200 | [diff] [blame] | 1326 | static THREAD int tls_var; |
Avi Kivity | 21d4a79 | 2011-11-23 11:24:25 +0200 | [diff] [blame] | 1327 | int main(void) { return tls_var; } |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 1328 | EOF |
Alex Bennée | 412aeac | 2019-08-15 19:41:51 +0000 | [diff] [blame] | 1329 | |
Alex Bennée | 977cccb | 2022-10-27 19:36:11 +0100 | [diff] [blame] | 1330 | # Meson currently only handles pie as a boolean for now so if we have |
| 1331 | # explicitly disabled PIE we need to extend our cflags because it wont. |
Richard Henderson | 1278146 | 2019-12-17 15:30:14 -1000 | [diff] [blame] | 1332 | if test "$static" = "yes"; then |
Richard Henderson | eca7a8e | 2020-04-03 20:11:50 +0100 | [diff] [blame] | 1333 | if test "$pie" != "no" && compile_prog "-Werror -fPIE -DPIE" "-static-pie"; then |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 1334 | CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS" |
Richard Henderson | 1278146 | 2019-12-17 15:30:14 -1000 | [diff] [blame] | 1335 | pie="yes" |
| 1336 | elif test "$pie" = "yes"; then |
| 1337 | error_exit "-static-pie not available due to missing toolchain support" |
| 1338 | else |
Richard Henderson | 1278146 | 2019-12-17 15:30:14 -1000 | [diff] [blame] | 1339 | pie="no" |
Alex Bennée | 977cccb | 2022-10-27 19:36:11 +0100 | [diff] [blame] | 1340 | QEMU_CFLAGS="-fno-pie -no-pie $QEMU_CFLAGS" |
Richard Henderson | 1278146 | 2019-12-17 15:30:14 -1000 | [diff] [blame] | 1341 | fi |
| 1342 | elif test "$pie" = "no"; then |
Paolo Bonzini | b9eae9e | 2022-03-29 13:07:25 +0200 | [diff] [blame] | 1343 | if compile_prog "-Werror -fno-pie" "-no-pie"; then |
| 1344 | CONFIGURE_CFLAGS="-fno-pie $CONFIGURE_CFLAGS" |
| 1345 | CONFIGURE_LDFLAGS="-no-pie $CONFIGURE_LDFLAGS" |
Alex Bennée | abafb64 | 2022-09-14 16:59:38 +0100 | [diff] [blame] | 1346 | QEMU_CFLAGS="-fno-pie -no-pie $QEMU_CFLAGS" |
Paolo Bonzini | b9eae9e | 2022-03-29 13:07:25 +0200 | [diff] [blame] | 1347 | fi |
Richard Henderson | eca7a8e | 2020-04-03 20:11:50 +0100 | [diff] [blame] | 1348 | elif compile_prog "-Werror -fPIE -DPIE" "-pie"; then |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 1349 | CONFIGURE_CFLAGS="-fPIE -DPIE $CONFIGURE_CFLAGS" |
| 1350 | CONFIGURE_LDFLAGS="-pie $CONFIGURE_LDFLAGS" |
Richard Henderson | 2c67410 | 2019-12-17 15:15:01 -1000 | [diff] [blame] | 1351 | pie="yes" |
| 1352 | elif test "$pie" = "yes"; then |
| 1353 | error_exit "PIE not available due to missing toolchain support" |
| 1354 | else |
| 1355 | echo "Disabling PIE due to missing toolchain support" |
| 1356 | pie="no" |
Avi Kivity | 40d6444 | 2011-11-15 20:12:17 +0200 | [diff] [blame] | 1357 | fi |
| 1358 | |
Paolo Bonzini | 09dada4 | 2013-04-17 16:26:47 +0200 | [diff] [blame] | 1359 | ########################################## |
| 1360 | # __sync_fetch_and_and requires at least -march=i486. Many toolchains |
| 1361 | # use i686 as default anyway, but for those that don't, an explicit |
| 1362 | # specification is necessary |
| 1363 | |
| 1364 | if test "$cpu" = "i386"; then |
| 1365 | cat > $TMPC << EOF |
| 1366 | static int sfaa(int *ptr) |
| 1367 | { |
| 1368 | return __sync_fetch_and_and(ptr, 0); |
| 1369 | } |
| 1370 | |
| 1371 | int main(void) |
| 1372 | { |
| 1373 | int val = 42; |
Stefan Weil | 1405b62 | 2013-05-11 21:46:58 +0200 | [diff] [blame] | 1374 | val = __sync_val_compare_and_swap(&val, 0, 1); |
Paolo Bonzini | 09dada4 | 2013-04-17 16:26:47 +0200 | [diff] [blame] | 1375 | sfaa(&val); |
| 1376 | return val; |
| 1377 | } |
| 1378 | EOF |
| 1379 | if ! compile_prog "" "" ; then |
| 1380 | QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS" |
| 1381 | fi |
| 1382 | fi |
| 1383 | |
Stefan Weil | afb63eb | 2012-09-26 22:04:38 +0200 | [diff] [blame] | 1384 | if test -z "${target_list+xxx}" ; then |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1385 | default_targets=yes |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 1386 | for target in $default_target_list; do |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1387 | target_list="$target_list $target" |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 1388 | done |
| 1389 | target_list="${target_list# }" |
Anthony Liguori | 121afa9 | 2012-09-14 08:17:03 -0500 | [diff] [blame] | 1390 | else |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 1391 | default_targets=no |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 1392 | target_list=$(echo "$target_list" | sed -e 's/,/ /g') |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 1393 | for target in $target_list; do |
| 1394 | # Check that we recognised the target name; this allows a more |
| 1395 | # friendly error message than if we let it fall through. |
| 1396 | case " $default_target_list " in |
| 1397 | *" $target "*) |
| 1398 | ;; |
| 1399 | *) |
| 1400 | error_exit "Unknown target name '$target'" |
| 1401 | ;; |
| 1402 | esac |
Paolo Bonzini | d880a3b | 2017-07-03 16:58:28 +0200 | [diff] [blame] | 1403 | done |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 1404 | fi |
Peter Maydell | 25b4833 | 2013-05-20 16:16:16 +0100 | [diff] [blame] | 1405 | |
Paolo Bonzini | f55fe27 | 2010-05-26 16:08:17 +0200 | [diff] [blame] | 1406 | # see if system emulation was really requested |
| 1407 | case " $target_list " in |
| 1408 | *"-softmmu "*) softmmu=yes |
| 1409 | ;; |
| 1410 | *) softmmu=no |
| 1411 | ;; |
| 1412 | esac |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 1413 | |
Philippe Mathieu-Daudé | 7630156 | 2022-02-04 15:54:47 +0100 | [diff] [blame] | 1414 | if test "$tcg" = "auto"; then |
| 1415 | if test -z "$target_list"; then |
| 1416 | tcg="disabled" |
| 1417 | else |
| 1418 | tcg="enabled" |
| 1419 | fi |
| 1420 | fi |
| 1421 | |
| 1422 | if test "$tcg" = "enabled"; then |
| 1423 | git_submodules="$git_submodules tests/fp/berkeley-testfloat-3" |
| 1424 | git_submodules="$git_submodules tests/fp/berkeley-softfloat-3" |
| 1425 | fi |
| 1426 | |
Michal Privoznik | 33ab5f2 | 2022-10-14 09:30:15 +0200 | [diff] [blame] | 1427 | ########################################## |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1428 | # big/little endian test |
| 1429 | cat > $TMPC << EOF |
Michal Privoznik | 33ab5f2 | 2022-10-14 09:30:15 +0200 | [diff] [blame] | 1430 | #if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ |
| 1431 | # error LITTLE |
| 1432 | #endif |
| 1433 | int main(void) { return 0; } |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1434 | EOF |
| 1435 | |
Michal Privoznik | 33ab5f2 | 2022-10-14 09:30:15 +0200 | [diff] [blame] | 1436 | if ! compile_prog ; then |
| 1437 | bigendian="no" |
Mike Frysinger | 61cc919 | 2013-06-30 23:30:18 -0400 | [diff] [blame] | 1438 | else |
Michal Privoznik | 33ab5f2 | 2022-10-14 09:30:15 +0200 | [diff] [blame] | 1439 | cat > $TMPC << EOF |
| 1440 | #if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ |
| 1441 | # error BIG |
| 1442 | #endif |
| 1443 | int main(void) { return 0; } |
| 1444 | EOF |
| 1445 | |
| 1446 | if ! compile_prog ; then |
| 1447 | bigendian="yes" |
| 1448 | else |
Mike Frysinger | 61cc919 | 2013-06-30 23:30:18 -0400 | [diff] [blame] | 1449 | echo big/little test failed |
Thomas Huth | 659eb15 | 2021-07-15 10:39:28 +0200 | [diff] [blame] | 1450 | exit 1 |
Michal Privoznik | 33ab5f2 | 2022-10-14 09:30:15 +0200 | [diff] [blame] | 1451 | fi |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1452 | fi |
| 1453 | |
Gonglei | 015a33b | 2014-07-01 20:58:08 +0800 | [diff] [blame] | 1454 | ########################################## |
Stefan Weil | 779ab5e | 2012-12-16 11:29:45 +0100 | [diff] [blame] | 1455 | # pkg-config probe |
| 1456 | |
| 1457 | if ! has "$pkg_config_exe"; then |
Peter Maydell | 76ad07a | 2013-04-08 12:11:26 +0100 | [diff] [blame] | 1458 | error_exit "pkg-config binary '$pkg_config_exe' not found" |
Stefan Weil | 779ab5e | 2012-12-16 11:29:45 +0100 | [diff] [blame] | 1459 | fi |
| 1460 | |
| 1461 | ########################################## |
Anthony Liguori | e18df14 | 2011-07-19 14:50:29 -0500 | [diff] [blame] | 1462 | # glib support probe |
Paolo Bonzini | a52d28a | 2012-04-05 13:01:54 +0200 | [diff] [blame] | 1463 | |
Thomas Huth | 0ce9b08 | 2022-05-13 08:39:58 +0200 | [diff] [blame] | 1464 | # When bumping glib_req_ver, please check also whether we should increase |
| 1465 | # the _WIN32_WINNT setting in osdep.h according to the value from glib |
Daniel P. Berrangé | b4c6036 | 2021-05-14 13:04:13 +0100 | [diff] [blame] | 1466 | glib_req_ver=2.56 |
Paolo Bonzini | aa0d1f4 | 2014-02-25 17:36:55 +0100 | [diff] [blame] | 1467 | glib_modules=gthread-2.0 |
| 1468 | if test "$modules" = yes; then |
Gerd Hoffmann | a88afc6 | 2018-03-08 09:53:00 +0100 | [diff] [blame] | 1469 | glib_modules="$glib_modules gmodule-export-2.0" |
Paolo Bonzini | b906aca | 2021-08-11 12:05:50 +0200 | [diff] [blame] | 1470 | elif test "$plugins" = "yes"; then |
| 1471 | glib_modules="$glib_modules gmodule-no-export-2.0" |
Emilio G. Cota | 54cb65d | 2017-08-30 18:39:53 -0400 | [diff] [blame] | 1472 | fi |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 1473 | |
Paolo Bonzini | aa0d1f4 | 2014-02-25 17:36:55 +0100 | [diff] [blame] | 1474 | for i in $glib_modules; do |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 1475 | if $pkg_config --atleast-version=$glib_req_ver $i; then |
Stefan Weil | 8913885 | 2016-05-16 15:10:20 +0200 | [diff] [blame] | 1476 | glib_cflags=$($pkg_config --cflags $i) |
| 1477 | glib_libs=$($pkg_config --libs $i) |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 1478 | else |
| 1479 | error_exit "glib-$glib_req_ver $i is required to compile QEMU" |
| 1480 | fi |
| 1481 | done |
| 1482 | |
Marc-André Lureau | 5b9e7d0 | 2022-05-25 16:41:39 +0200 | [diff] [blame] | 1483 | glib_bindir="$($pkg_config --variable=bindir glib-2.0)" |
| 1484 | if test -z "$glib_bindir" ; then |
| 1485 | glib_bindir="$($pkg_config --variable=prefix glib-2.0)"/bin |
| 1486 | fi |
| 1487 | |
Paolo Bonzini | 215b0c2 | 2020-09-01 08:41:17 -0400 | [diff] [blame] | 1488 | # This workaround is required due to a bug in pkg-config file for glib as it |
| 1489 | # doesn't define GLIB_STATIC_COMPILATION for pkg-config --static |
| 1490 | |
| 1491 | if test "$static" = yes && test "$mingw32" = yes; then |
| 1492 | glib_cflags="-DGLIB_STATIC_COMPILATION $glib_cflags" |
| 1493 | fi |
| 1494 | |
Daniel P. Berrange | 977a82a | 2016-01-27 09:00:45 +0000 | [diff] [blame] | 1495 | # Sanity check that the current size_t matches the |
| 1496 | # size that glib thinks it should be. This catches |
| 1497 | # problems on multi-arch where people try to build |
| 1498 | # 32-bit QEMU while pointing at 64-bit glib headers |
| 1499 | cat > $TMPC <<EOF |
| 1500 | #include <glib.h> |
| 1501 | #include <unistd.h> |
| 1502 | |
| 1503 | #define QEMU_BUILD_BUG_ON(x) \ |
| 1504 | typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused)); |
| 1505 | |
| 1506 | int main(void) { |
| 1507 | QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T); |
| 1508 | return 0; |
| 1509 | } |
| 1510 | EOF |
| 1511 | |
Paolo Bonzini | 215b0c2 | 2020-09-01 08:41:17 -0400 | [diff] [blame] | 1512 | if ! compile_prog "$glib_cflags" "$glib_libs" ; then |
Daniel P. Berrange | 977a82a | 2016-01-27 09:00:45 +0000 | [diff] [blame] | 1513 | error_exit "sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T."\ |
| 1514 | "You probably need to set PKG_CONFIG_LIBDIR"\ |
| 1515 | "to point to the right pkg-config files for your"\ |
| 1516 | "build target" |
| 1517 | fi |
| 1518 | |
Eric Blake | 9bda600 | 2020-03-17 12:55:34 -0500 | [diff] [blame] | 1519 | # Silence clang warnings triggered by glib < 2.57.2 |
| 1520 | cat > $TMPC << EOF |
| 1521 | #include <glib.h> |
| 1522 | typedef struct Foo { |
| 1523 | int i; |
| 1524 | } Foo; |
| 1525 | static void foo_free(Foo *f) |
| 1526 | { |
| 1527 | g_free(f); |
| 1528 | } |
Marc-André Lureau | e0e7fe0 | 2022-03-12 02:22:02 +0400 | [diff] [blame] | 1529 | G_DEFINE_AUTOPTR_CLEANUP_FUNC(Foo, foo_free) |
Eric Blake | 9bda600 | 2020-03-17 12:55:34 -0500 | [diff] [blame] | 1530 | int main(void) { return 0; } |
| 1531 | EOF |
| 1532 | if ! compile_prog "$glib_cflags -Werror" "$glib_libs" ; then |
| 1533 | if cc_has_warning_flag "-Wno-unused-function"; then |
| 1534 | glib_cflags="$glib_cflags -Wno-unused-function" |
Paolo Bonzini | 5770e8a | 2020-09-23 05:26:15 -0400 | [diff] [blame] | 1535 | CONFIGURE_CFLAGS="$CONFIGURE_CFLAGS -Wno-unused-function" |
Eric Blake | 9bda600 | 2020-03-17 12:55:34 -0500 | [diff] [blame] | 1536 | fi |
| 1537 | fi |
| 1538 | |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 1539 | ########################################## |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame] | 1540 | # fdt probe |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1541 | |
| 1542 | case "$fdt" in |
| 1543 | auto | enabled | internal) |
| 1544 | # Simpler to always update submodule, even if not needed. |
Paolo Bonzini | 2d652f2 | 2021-05-12 09:21:56 +0200 | [diff] [blame] | 1545 | git_submodules="${git_submodules} dtc" |
Peter Maydell | e169e1e | 2013-05-24 16:26:54 +0100 | [diff] [blame] | 1546 | ;; |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 1547 | esac |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame] | 1548 | |
Michael Walle | 20ff075 | 2011-03-07 23:32:39 +0100 | [diff] [blame] | 1549 | ########################################## |
Alex Barcelo | 519175a | 2012-02-28 12:25:50 +0100 | [diff] [blame] | 1550 | # check and set a backend for coroutine |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 1551 | |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1552 | # We prefer ucontext, but it's not always possible. The fallback |
Daniel P. Berrange | 33c53c5 | 2017-04-28 13:24:44 +0100 | [diff] [blame] | 1553 | # is sigcontext. On Windows the only valid backend is the Windows |
| 1554 | # specific one. |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1555 | |
| 1556 | ucontext_works=no |
| 1557 | if test "$darwin" != "yes"; then |
| 1558 | cat > $TMPC << EOF |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 1559 | #include <ucontext.h> |
Peter Maydell | cdf8480 | 2012-02-23 16:20:05 +0000 | [diff] [blame] | 1560 | #ifdef __stub_makecontext |
| 1561 | #error Ignoring glibc stub makecontext which will always fail |
| 1562 | #endif |
Stefan Weil | 75cafad | 2011-12-17 09:27:29 +0100 | [diff] [blame] | 1563 | int main(void) { makecontext(0, 0, 0); return 0; } |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 1564 | EOF |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1565 | if compile_prog "" "" ; then |
| 1566 | ucontext_works=yes |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 1567 | fi |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1568 | fi |
| 1569 | |
| 1570 | if test "$coroutine" = ""; then |
| 1571 | if test "$mingw32" = "yes"; then |
| 1572 | coroutine=win32 |
| 1573 | elif test "$ucontext_works" = "yes"; then |
| 1574 | coroutine=ucontext |
| 1575 | else |
| 1576 | coroutine=sigaltstack |
| 1577 | fi |
Alex Barcelo | 519175a | 2012-02-28 12:25:50 +0100 | [diff] [blame] | 1578 | else |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1579 | case $coroutine in |
| 1580 | windows) |
| 1581 | if test "$mingw32" != "yes"; then |
| 1582 | error_exit "'windows' coroutine backend only valid for Windows" |
| 1583 | fi |
| 1584 | # Unfortunately the user visible backend name doesn't match the |
| 1585 | # coroutine-*.c filename for this case, so we have to adjust it here. |
| 1586 | coroutine=win32 |
| 1587 | ;; |
| 1588 | ucontext) |
| 1589 | if test "$ucontext_works" != "yes"; then |
Paolo Bonzini | 7cb5844 | 2022-08-19 18:40:46 +0200 | [diff] [blame] | 1590 | error_exit "'ucontext' backend requested but makecontext not available" |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1591 | fi |
| 1592 | ;; |
Daniel P. Berrange | 33c53c5 | 2017-04-28 13:24:44 +0100 | [diff] [blame] | 1593 | sigaltstack) |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 1594 | if test "$mingw32" = "yes"; then |
| 1595 | error_exit "only the 'windows' coroutine backend is valid for Windows" |
| 1596 | fi |
| 1597 | ;; |
| 1598 | *) |
| 1599 | error_exit "unknown coroutine backend $coroutine" |
| 1600 | ;; |
| 1601 | esac |
Aneesh Kumar K.V | d0e2fce | 2011-06-09 23:11:06 +0530 | [diff] [blame] | 1602 | fi |
| 1603 | |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 1604 | ################################################## |
| 1605 | # SafeStack |
| 1606 | |
| 1607 | |
| 1608 | if test "$safe_stack" = "yes"; then |
| 1609 | cat > $TMPC << EOF |
Stefan Weil | 8a0afbb | 2022-11-02 21:22:58 +0100 | [diff] [blame] | 1610 | int main(void) |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 1611 | { |
| 1612 | #if ! __has_feature(safe_stack) |
| 1613 | #error SafeStack Disabled |
| 1614 | #endif |
| 1615 | return 0; |
| 1616 | } |
| 1617 | EOF |
| 1618 | flag="-fsanitize=safe-stack" |
| 1619 | # Check that safe-stack is supported and enabled. |
| 1620 | if compile_prog "-Werror $flag" "$flag"; then |
| 1621 | # Flag needed both at compilation and at linking |
| 1622 | QEMU_CFLAGS="$QEMU_CFLAGS $flag" |
| 1623 | QEMU_LDFLAGS="$QEMU_LDFLAGS $flag" |
| 1624 | else |
| 1625 | error_exit "SafeStack not supported by your compiler" |
| 1626 | fi |
| 1627 | if test "$coroutine" != "ucontext"; then |
| 1628 | error_exit "SafeStack is only supported by the coroutine backend ucontext" |
| 1629 | fi |
| 1630 | else |
| 1631 | cat > $TMPC << EOF |
Stefan Weil | 8a0afbb | 2022-11-02 21:22:58 +0100 | [diff] [blame] | 1632 | int main(void) |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 1633 | { |
| 1634 | #if defined(__has_feature) |
| 1635 | #if __has_feature(safe_stack) |
| 1636 | #error SafeStack Enabled |
| 1637 | #endif |
| 1638 | #endif |
| 1639 | return 0; |
| 1640 | } |
| 1641 | EOF |
| 1642 | if test "$safe_stack" = "no"; then |
| 1643 | # Make sure that safe-stack is disabled |
| 1644 | if ! compile_prog "-Werror" ""; then |
| 1645 | # SafeStack was already enabled, try to explicitly remove the feature |
| 1646 | flag="-fno-sanitize=safe-stack" |
| 1647 | if ! compile_prog "-Werror $flag" "$flag"; then |
| 1648 | error_exit "Configure cannot disable SafeStack" |
| 1649 | fi |
| 1650 | QEMU_CFLAGS="$QEMU_CFLAGS $flag" |
| 1651 | QEMU_LDFLAGS="$QEMU_LDFLAGS $flag" |
| 1652 | fi |
| 1653 | else # "$safe_stack" = "" |
| 1654 | # Set safe_stack to yes or no based on pre-existing flags |
| 1655 | if compile_prog "-Werror" ""; then |
| 1656 | safe_stack="no" |
| 1657 | else |
| 1658 | safe_stack="yes" |
| 1659 | if test "$coroutine" != "ucontext"; then |
| 1660 | error_exit "SafeStack is only supported by the coroutine backend ucontext" |
| 1661 | fi |
| 1662 | fi |
| 1663 | fi |
| 1664 | fi |
Peter Lieven | 7d992e4 | 2016-09-27 11:58:45 +0200 | [diff] [blame] | 1665 | |
Richard Henderson | 76a347e | 2012-12-28 14:17:02 -0800 | [diff] [blame] | 1666 | ######################################## |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 1667 | # check if ccache is interfering with |
| 1668 | # semantic analysis of macros |
| 1669 | |
John Snow | 5e4dfd3 | 2015-10-28 13:56:40 -0400 | [diff] [blame] | 1670 | unset CCACHE_CPP2 |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 1671 | ccache_cpp2=no |
| 1672 | cat > $TMPC << EOF |
| 1673 | static const int Z = 1; |
| 1674 | #define fn() ({ Z; }) |
| 1675 | #define TAUT(X) ((X) == Z) |
| 1676 | #define PAREN(X, Y) (X == Y) |
| 1677 | #define ID(X) (X) |
Stefan Weil | 8a0afbb | 2022-11-02 21:22:58 +0100 | [diff] [blame] | 1678 | int main(void) |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 1679 | { |
| 1680 | int x = 0, y = 0; |
| 1681 | x = ID(x); |
| 1682 | x = fn(); |
| 1683 | fn(); |
| 1684 | if (PAREN(x, y)) return 0; |
| 1685 | if (TAUT(Z)) return 0; |
| 1686 | return 0; |
| 1687 | } |
| 1688 | EOF |
| 1689 | |
| 1690 | if ! compile_object "-Werror"; then |
| 1691 | ccache_cpp2=yes |
| 1692 | fi |
| 1693 | |
John Snow | b553a04 | 2015-11-03 15:43:42 -0500 | [diff] [blame] | 1694 | ################################################# |
| 1695 | # clang does not support glibc + FORTIFY_SOURCE. |
| 1696 | |
| 1697 | if test "$fortify_source" != "no"; then |
| 1698 | if echo | $cc -dM -E - | grep __clang__ > /dev/null 2>&1 ; then |
| 1699 | fortify_source="no"; |
Peter Maydell | e189091 | 2017-06-26 16:25:24 +0100 | [diff] [blame] | 1700 | elif test -n "$cxx" && has $cxx && |
John Snow | cfcc7c1 | 2015-11-12 11:29:49 -0500 | [diff] [blame] | 1701 | echo | $cxx -dM -E - | grep __clang__ >/dev/null 2>&1 ; then |
John Snow | b553a04 | 2015-11-03 15:43:42 -0500 | [diff] [blame] | 1702 | fortify_source="no"; |
| 1703 | else |
| 1704 | fortify_source="yes" |
| 1705 | fi |
| 1706 | fi |
| 1707 | |
Aneesh Kumar K.V | d204237 | 2011-10-12 19:11:24 +0530 | [diff] [blame] | 1708 | ########################################## |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1709 | # checks for sanitizers |
| 1710 | |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1711 | have_asan=no |
| 1712 | have_ubsan=no |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 1713 | have_asan_iface_h=no |
| 1714 | have_asan_iface_fiber=no |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1715 | |
| 1716 | if test "$sanitizers" = "yes" ; then |
Marc-André Lureau | b9f44da | 2018-02-15 22:25:47 +0100 | [diff] [blame] | 1717 | write_c_skeleton |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1718 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" ""; then |
| 1719 | have_asan=yes |
| 1720 | fi |
Marc-André Lureau | b9f44da | 2018-02-15 22:25:47 +0100 | [diff] [blame] | 1721 | |
| 1722 | # we could use a simple skeleton for flags checks, but this also |
| 1723 | # detect the static linking issue of ubsan, see also: |
| 1724 | # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84285 |
| 1725 | cat > $TMPC << EOF |
| 1726 | #include <stdlib.h> |
| 1727 | int main(void) { |
| 1728 | void *tmp = malloc(10); |
Leonid Bloch | f2dfe54 | 2020-05-25 01:12:04 +0300 | [diff] [blame] | 1729 | if (tmp != NULL) { |
| 1730 | return *(int *)(tmp + 2); |
| 1731 | } |
Olaf Hering | d1abf3f | 2020-07-07 19:13:25 +0200 | [diff] [blame] | 1732 | return 1; |
Marc-André Lureau | b9f44da | 2018-02-15 22:25:47 +0100 | [diff] [blame] | 1733 | } |
| 1734 | EOF |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1735 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=undefined" ""; then |
| 1736 | have_ubsan=yes |
| 1737 | fi |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 1738 | |
| 1739 | if check_include "sanitizer/asan_interface.h" ; then |
| 1740 | have_asan_iface_h=yes |
| 1741 | fi |
| 1742 | |
| 1743 | cat > $TMPC << EOF |
| 1744 | #include <sanitizer/asan_interface.h> |
| 1745 | int main(void) { |
| 1746 | __sanitizer_start_switch_fiber(0, 0, 0); |
| 1747 | return 0; |
| 1748 | } |
| 1749 | EOF |
| 1750 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address" "" ; then |
| 1751 | have_asan_iface_fiber=yes |
| 1752 | fi |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 1753 | fi |
| 1754 | |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 1755 | # Thread sanitizer is, for now, much noisier than the other sanitizers; |
| 1756 | # keep it separate until that is not the case. |
| 1757 | if test "$tsan" = "yes" && test "$sanitizers" = "yes"; then |
| 1758 | error_exit "TSAN is not supported with other sanitiziers." |
| 1759 | fi |
| 1760 | have_tsan=no |
| 1761 | have_tsan_iface_fiber=no |
| 1762 | if test "$tsan" = "yes" ; then |
| 1763 | write_c_skeleton |
| 1764 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then |
| 1765 | have_tsan=yes |
| 1766 | fi |
| 1767 | cat > $TMPC << EOF |
| 1768 | #include <sanitizer/tsan_interface.h> |
| 1769 | int main(void) { |
| 1770 | __tsan_create_fiber(0); |
| 1771 | return 0; |
| 1772 | } |
| 1773 | EOF |
| 1774 | if compile_prog "$CPU_CFLAGS -Werror -fsanitize=thread" "" ; then |
| 1775 | have_tsan_iface_fiber=yes |
| 1776 | fi |
| 1777 | fi |
| 1778 | |
Alexander Bulekov | adc2802 | 2020-02-19 23:11:14 -0500 | [diff] [blame] | 1779 | ########################################## |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1780 | # functions to probe cross compilers |
| 1781 | |
| 1782 | container="no" |
Stefan Weil | 47fdc8f | 2022-11-17 17:25:20 +0000 | [diff] [blame^] | 1783 | if test $use_containers = "yes" && (has "docker" || has "podman"); then |
Paolo Bonzini | c4575b5 | 2022-09-29 12:41:58 +0100 | [diff] [blame] | 1784 | case $($python "$source_path"/tests/docker/docker.py probe) in |
| 1785 | *docker) container=docker ;; |
| 1786 | podman) container=podman ;; |
| 1787 | no) container=no ;; |
| 1788 | esac |
Paolo Bonzini | a3e28f8 | 2022-09-29 12:41:59 +0100 | [diff] [blame] | 1789 | if test "$container" != "no"; then |
| 1790 | docker_py="$python $source_path/tests/docker/docker.py --engine $container" |
| 1791 | fi |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1792 | fi |
| 1793 | |
| 1794 | # cross compilers defaults, can be overridden with --cross-cc-ARCH |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1795 | : ${cross_prefix_aarch64="aarch64-linux-gnu-"} |
| 1796 | : ${cross_prefix_aarch64_be="$cross_prefix_aarch64"} |
| 1797 | : ${cross_prefix_alpha="alpha-linux-gnu-"} |
| 1798 | : ${cross_prefix_arm="arm-linux-gnueabihf-"} |
| 1799 | : ${cross_prefix_armeb="$cross_prefix_arm"} |
| 1800 | : ${cross_prefix_hexagon="hexagon-unknown-linux-musl-"} |
Song Gao | 34bb43b | 2022-06-06 20:43:33 +0800 | [diff] [blame] | 1801 | : ${cross_prefix_loongarch64="loongarch64-unknown-linux-gnu-"} |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1802 | : ${cross_prefix_hppa="hppa-linux-gnu-"} |
| 1803 | : ${cross_prefix_i386="i686-linux-gnu-"} |
| 1804 | : ${cross_prefix_m68k="m68k-linux-gnu-"} |
| 1805 | : ${cross_prefix_microblaze="microblaze-linux-musl-"} |
| 1806 | : ${cross_prefix_mips64el="mips64el-linux-gnuabi64-"} |
| 1807 | : ${cross_prefix_mips64="mips64-linux-gnuabi64-"} |
| 1808 | : ${cross_prefix_mipsel="mipsel-linux-gnu-"} |
| 1809 | : ${cross_prefix_mips="mips-linux-gnu-"} |
| 1810 | : ${cross_prefix_nios2="nios2-linux-gnu-"} |
| 1811 | : ${cross_prefix_ppc="powerpc-linux-gnu-"} |
| 1812 | : ${cross_prefix_ppc64="powerpc64-linux-gnu-"} |
| 1813 | : ${cross_prefix_ppc64le="$cross_prefix_ppc64"} |
| 1814 | : ${cross_prefix_riscv64="riscv64-linux-gnu-"} |
| 1815 | : ${cross_prefix_s390x="s390x-linux-gnu-"} |
| 1816 | : ${cross_prefix_sh4="sh4-linux-gnu-"} |
| 1817 | : ${cross_prefix_sparc64="sparc64-linux-gnu-"} |
| 1818 | : ${cross_prefix_sparc="$cross_prefix_sparc64"} |
| 1819 | : ${cross_prefix_x86_64="x86_64-linux-gnu-"} |
| 1820 | |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1821 | : ${cross_cc_aarch64_be="$cross_cc_aarch64"} |
| 1822 | : ${cross_cc_cflags_aarch64_be="-mbig-endian"} |
Paolo Bonzini | 46af66e | 2022-05-27 16:35:49 +0100 | [diff] [blame] | 1823 | : ${cross_cc_armeb="$cross_cc_arm"} |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1824 | : ${cross_cc_cflags_armeb="-mbig-endian"} |
| 1825 | : ${cross_cc_hexagon="hexagon-unknown-linux-musl-clang"} |
| 1826 | : ${cross_cc_cflags_hexagon="-mv67 -O2 -static"} |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1827 | : ${cross_cc_cflags_i386="-m32"} |
Paolo Bonzini | d44f2f9 | 2022-06-15 11:42:01 +0200 | [diff] [blame] | 1828 | : ${cross_cc_cflags_ppc="-m32 -mbig-endian"} |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1829 | : ${cross_cc_cflags_ppc64="-m64 -mbig-endian"} |
| 1830 | : ${cross_cc_ppc64le="$cross_cc_ppc64"} |
| 1831 | : ${cross_cc_cflags_ppc64le="-m64 -mlittle-endian"} |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1832 | : ${cross_cc_cflags_sparc64="-m64 -mcpu=ultrasparc"} |
Paolo Bonzini | 46af66e | 2022-05-27 16:35:49 +0100 | [diff] [blame] | 1833 | : ${cross_cc_sparc="$cross_cc_sparc64"} |
| 1834 | : ${cross_cc_cflags_sparc="-m32 -mcpu=supersparc"} |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1835 | : ${cross_cc_cflags_x86_64="-m64"} |
| 1836 | |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1837 | compute_target_variable() { |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 1838 | eval "$2=" |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1839 | if eval test -n "\"\${cross_prefix_$1}\""; then |
| 1840 | if eval has "\"\${cross_prefix_$1}\$3\""; then |
| 1841 | eval "$2=\"\${cross_prefix_$1}\$3\"" |
| 1842 | fi |
| 1843 | fi |
| 1844 | } |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1845 | |
Paolo Bonzini | 35fd22b | 2022-10-12 16:33:03 +0200 | [diff] [blame] | 1846 | have_target() { |
| 1847 | for i; do |
| 1848 | case " $target_list " in |
| 1849 | *" $i "*) return 0;; |
| 1850 | *) ;; |
| 1851 | esac |
| 1852 | done |
| 1853 | return 1 |
| 1854 | } |
| 1855 | |
Paolo Bonzini | 52f08de | 2022-07-02 15:59:02 +0200 | [diff] [blame] | 1856 | # probe_target_compiler TARGET |
| 1857 | # |
| 1858 | # Look for a compiler for the given target, either native or cross. |
| 1859 | # Set variables target_* if a compiler is found, and container_cross_* |
| 1860 | # if a Docker-based cross-compiler image is known for the target. |
| 1861 | # Set got_cross_cc to yes/no depending on whether a non-container-based |
| 1862 | # compiler was found. |
| 1863 | # |
| 1864 | # If TARGET is a user-mode emulation target, also set build_static to |
| 1865 | # "y" if static linking is possible. |
| 1866 | # |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1867 | probe_target_compiler() { |
| 1868 | # reset all output variables |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 1869 | got_cross_cc=no |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1870 | container_image= |
| 1871 | container_hosts= |
| 1872 | container_cross_cc= |
Paolo Bonzini | 87eb014 | 2022-05-27 16:35:52 +0100 | [diff] [blame] | 1873 | container_cross_ar= |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1874 | container_cross_as= |
| 1875 | container_cross_ld= |
Paolo Bonzini | 87eb014 | 2022-05-27 16:35:52 +0100 | [diff] [blame] | 1876 | container_cross_nm= |
| 1877 | container_cross_objcopy= |
| 1878 | container_cross_ranlib= |
| 1879 | container_cross_strip= |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1880 | |
Alex Bennée | c3b570b | 2022-10-27 19:36:10 +0100 | [diff] [blame] | 1881 | # We shall skip configuring the target compiler if the user didn't |
| 1882 | # bother enabling an appropriate guest. This avoids building |
| 1883 | # extraneous firmware images and tests. |
| 1884 | if test "${target_list#*$1}" != "$1"; then |
| 1885 | break; |
| 1886 | else |
| 1887 | return 1 |
| 1888 | fi |
| 1889 | |
Paolo Bonzini | 52f08de | 2022-07-02 15:59:02 +0200 | [diff] [blame] | 1890 | target_arch=${1%%-*} |
| 1891 | case $target_arch in |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1892 | aarch64) container_hosts="x86_64 aarch64" ;; |
| 1893 | alpha) container_hosts=x86_64 ;; |
| 1894 | arm) container_hosts="x86_64 aarch64" ;; |
| 1895 | cris) container_hosts=x86_64 ;; |
| 1896 | hexagon) container_hosts=x86_64 ;; |
| 1897 | hppa) container_hosts=x86_64 ;; |
| 1898 | i386) container_hosts=x86_64 ;; |
Richard Henderson | b70ec50 | 2022-07-04 12:36:29 +0530 | [diff] [blame] | 1899 | loongarch64) container_hosts=x86_64 ;; |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1900 | m68k) container_hosts=x86_64 ;; |
| 1901 | microblaze) container_hosts=x86_64 ;; |
| 1902 | mips64el) container_hosts=x86_64 ;; |
| 1903 | mips64) container_hosts=x86_64 ;; |
| 1904 | mipsel) container_hosts=x86_64 ;; |
| 1905 | mips) container_hosts=x86_64 ;; |
| 1906 | nios2) container_hosts=x86_64 ;; |
| 1907 | ppc) container_hosts=x86_64 ;; |
| 1908 | ppc64|ppc64le) container_hosts=x86_64 ;; |
| 1909 | riscv64) container_hosts=x86_64 ;; |
| 1910 | s390x) container_hosts=x86_64 ;; |
| 1911 | sh4) container_hosts=x86_64 ;; |
| 1912 | sparc64) container_hosts=x86_64 ;; |
| 1913 | tricore) container_hosts=x86_64 ;; |
| 1914 | x86_64) container_hosts="aarch64 ppc64el x86_64" ;; |
| 1915 | xtensa*) container_hosts=x86_64 ;; |
| 1916 | esac |
| 1917 | |
| 1918 | for host in $container_hosts; do |
| 1919 | test "$container" != no || continue |
| 1920 | test "$host" = "$cpu" || continue |
Paolo Bonzini | 52f08de | 2022-07-02 15:59:02 +0200 | [diff] [blame] | 1921 | case $target_arch in |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1922 | aarch64) |
| 1923 | # We don't have any bigendian build tools so we only use this for AArch64 |
| 1924 | container_image=debian-arm64-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1925 | container_cross_prefix=aarch64-linux-gnu- |
| 1926 | container_cross_cc=${container_cross_prefix}gcc-10 |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1927 | ;; |
| 1928 | alpha) |
| 1929 | container_image=debian-alpha-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1930 | container_cross_prefix=alpha-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1931 | ;; |
| 1932 | arm) |
| 1933 | # We don't have any bigendian build tools so we only use this for ARM |
| 1934 | container_image=debian-armhf-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1935 | container_cross_prefix=arm-linux-gnueabihf- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1936 | ;; |
| 1937 | cris) |
| 1938 | container_image=fedora-cris-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1939 | container_cross_prefix=cris-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1940 | ;; |
| 1941 | hexagon) |
| 1942 | container_image=debian-hexagon-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1943 | container_cross_prefix=hexagon-unknown-linux-musl- |
| 1944 | container_cross_cc=${container_cross_prefix}clang |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1945 | ;; |
| 1946 | hppa) |
| 1947 | container_image=debian-hppa-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1948 | container_cross_prefix=hppa-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1949 | ;; |
| 1950 | i386) |
| 1951 | container_image=fedora-i386-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1952 | container_cross_prefix= |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1953 | ;; |
Richard Henderson | b70ec50 | 2022-07-04 12:36:29 +0530 | [diff] [blame] | 1954 | loongarch64) |
| 1955 | container_image=debian-loongarch-cross |
| 1956 | container_cross_prefix=loongarch64-unknown-linux-gnu- |
| 1957 | ;; |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1958 | m68k) |
| 1959 | container_image=debian-m68k-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1960 | container_cross_prefix=m68k-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1961 | ;; |
| 1962 | microblaze) |
| 1963 | container_image=debian-microblaze-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1964 | container_cross_prefix=microblaze-linux-musl- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1965 | ;; |
| 1966 | mips64el) |
| 1967 | container_image=debian-mips64el-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1968 | container_cross_prefix=mips64el-linux-gnuabi64- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1969 | ;; |
| 1970 | mips64) |
| 1971 | container_image=debian-mips64-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1972 | container_cross_prefix=mips64-linux-gnuabi64- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1973 | ;; |
| 1974 | mipsel) |
| 1975 | container_image=debian-mipsel-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1976 | container_cross_prefix=mipsel-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1977 | ;; |
| 1978 | mips) |
| 1979 | container_image=debian-mips-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1980 | container_cross_prefix=mips-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1981 | ;; |
| 1982 | nios2) |
| 1983 | container_image=debian-nios2-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1984 | container_cross_prefix=nios2-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1985 | ;; |
| 1986 | ppc) |
| 1987 | container_image=debian-powerpc-test-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1988 | container_cross_prefix=powerpc-linux-gnu- |
| 1989 | container_cross_cc=${container_cross_prefix}gcc-10 |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1990 | ;; |
| 1991 | ppc64|ppc64le) |
| 1992 | container_image=debian-powerpc-test-cross |
Richard Henderson | 705c881 | 2022-07-28 11:39:01 -0700 | [diff] [blame] | 1993 | container_cross_prefix=powerpc${target_arch#ppc}-linux-gnu- |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1994 | container_cross_cc=${container_cross_prefix}gcc-10 |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1995 | ;; |
| 1996 | riscv64) |
| 1997 | container_image=debian-riscv64-test-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 1998 | container_cross_prefix=riscv64-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 1999 | ;; |
| 2000 | s390x) |
| 2001 | container_image=debian-s390x-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2002 | container_cross_prefix=s390x-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2003 | ;; |
| 2004 | sh4) |
| 2005 | container_image=debian-sh4-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2006 | container_cross_prefix=sh4-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2007 | ;; |
| 2008 | sparc64) |
| 2009 | container_image=debian-sparc64-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2010 | container_cross_prefix=sparc64-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2011 | ;; |
| 2012 | tricore) |
| 2013 | container_image=debian-tricore-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2014 | container_cross_prefix=tricore- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2015 | container_cross_as=tricore-as |
| 2016 | container_cross_ld=tricore-ld |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2017 | break |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2018 | ;; |
| 2019 | x86_64) |
| 2020 | container_image=debian-amd64-cross |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2021 | container_cross_prefix=x86_64-linux-gnu- |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2022 | ;; |
| 2023 | xtensa*) |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2024 | container_hosts=x86_64 |
| 2025 | container_image=debian-xtensa-cross |
| 2026 | |
| 2027 | # default to the dc232b cpu |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2028 | 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] | 2029 | ;; |
| 2030 | esac |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2031 | : ${container_cross_cc:=${container_cross_prefix}gcc} |
Paolo Bonzini | 87eb014 | 2022-05-27 16:35:52 +0100 | [diff] [blame] | 2032 | : ${container_cross_ar:=${container_cross_prefix}ar} |
Paolo Bonzini | 5adb43b | 2022-05-27 16:35:51 +0100 | [diff] [blame] | 2033 | : ${container_cross_as:=${container_cross_prefix}as} |
| 2034 | : ${container_cross_ld:=${container_cross_prefix}ld} |
Paolo Bonzini | 87eb014 | 2022-05-27 16:35:52 +0100 | [diff] [blame] | 2035 | : ${container_cross_nm:=${container_cross_prefix}nm} |
| 2036 | : ${container_cross_objcopy:=${container_cross_prefix}objcopy} |
| 2037 | : ${container_cross_ranlib:=${container_cross_prefix}ranlib} |
| 2038 | : ${container_cross_strip:=${container_cross_prefix}strip} |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2039 | done |
| 2040 | |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 2041 | try=cross |
Paolo Bonzini | 52f08de | 2022-07-02 15:59:02 +0200 | [diff] [blame] | 2042 | case "$target_arch:$cpu" in |
Paolo Bonzini | 26e7253 | 2022-06-06 10:47:45 +0200 | [diff] [blame] | 2043 | aarch64_be:aarch64 | \ |
| 2044 | armeb:arm | \ |
Paolo Bonzini | 640aabc | 2022-06-15 11:42:01 +0200 | [diff] [blame] | 2045 | i386:x86_64 | \ |
Paolo Bonzini | 26e7253 | 2022-06-06 10:47:45 +0200 | [diff] [blame] | 2046 | mips*:mips64 | \ |
Paolo Bonzini | d44f2f9 | 2022-06-15 11:42:01 +0200 | [diff] [blame] | 2047 | ppc*:ppc64 | \ |
Paolo Bonzini | 26e7253 | 2022-06-06 10:47:45 +0200 | [diff] [blame] | 2048 | sparc:sparc64 | \ |
Paolo Bonzini | 640aabc | 2022-06-15 11:42:01 +0200 | [diff] [blame] | 2049 | "$cpu:$cpu") |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 2050 | try='native cross' ;; |
Paolo Bonzini | 640aabc | 2022-06-15 11:42:01 +0200 | [diff] [blame] | 2051 | esac |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 2052 | eval "target_cflags=\${cross_cc_cflags_$target_arch}" |
Peter Maydell | b3b5472 | 2022-08-25 16:07:03 +0100 | [diff] [blame] | 2053 | for thistry in $try; do |
| 2054 | case $thistry in |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 2055 | native) |
| 2056 | target_cc=$cc |
| 2057 | target_ccas=$ccas |
| 2058 | target_ar=$ar |
| 2059 | target_as=$as |
| 2060 | target_ld=$ld |
| 2061 | target_nm=$nm |
| 2062 | target_objcopy=$objcopy |
| 2063 | target_ranlib=$ranlib |
| 2064 | target_strip=$strip |
| 2065 | ;; |
| 2066 | cross) |
| 2067 | target_cc= |
| 2068 | if eval test -n "\"\${cross_cc_$target_arch}\""; then |
| 2069 | if eval has "\"\${cross_cc_$target_arch}\""; then |
| 2070 | eval "target_cc=\"\${cross_cc_$target_arch}\"" |
| 2071 | fi |
| 2072 | else |
| 2073 | compute_target_variable $target_arch target_cc gcc |
| 2074 | fi |
| 2075 | target_ccas=$target_cc |
| 2076 | compute_target_variable $target_arch target_ar ar |
| 2077 | compute_target_variable $target_arch target_as as |
| 2078 | compute_target_variable $target_arch target_ld ld |
| 2079 | compute_target_variable $target_arch target_nm nm |
| 2080 | compute_target_variable $target_arch target_objcopy objcopy |
| 2081 | compute_target_variable $target_arch target_ranlib ranlib |
| 2082 | compute_target_variable $target_arch target_strip strip |
| 2083 | ;; |
| 2084 | esac |
| 2085 | |
| 2086 | if test -n "$target_cc"; then |
| 2087 | case $target_arch in |
| 2088 | i386|x86_64) |
| 2089 | if $target_cc --version | grep -qi "clang"; then |
| 2090 | continue |
| 2091 | fi |
| 2092 | ;; |
| 2093 | esac |
| 2094 | elif test -n "$target_as" && test -n "$target_ld"; then |
| 2095 | # Special handling for assembler only targets |
| 2096 | case $target in |
| 2097 | tricore-softmmu) |
| 2098 | build_static= |
| 2099 | got_cross_cc=yes |
| 2100 | break |
| 2101 | ;; |
| 2102 | *) |
| 2103 | continue |
| 2104 | ;; |
| 2105 | esac |
| 2106 | else |
| 2107 | continue |
| 2108 | fi |
| 2109 | |
| 2110 | write_c_skeleton |
| 2111 | case $1 in |
| 2112 | *-softmmu) |
| 2113 | if do_compiler "$target_cc" $target_cflags -o $TMPO -c $TMPC && |
| 2114 | do_compiler "$target_cc" $target_cflags -r -nostdlib -o "${TMPDIR1}/${TMPB}2.o" "$TMPO" -lgcc; then |
| 2115 | got_cross_cc=yes |
| 2116 | break |
| 2117 | fi |
| 2118 | ;; |
| 2119 | *) |
| 2120 | if do_compiler "$target_cc" $target_cflags -o $TMPE $TMPC -static ; then |
| 2121 | build_static=y |
| 2122 | got_cross_cc=yes |
| 2123 | break |
| 2124 | fi |
| 2125 | if do_compiler "$target_cc" $target_cflags -o $TMPE $TMPC ; then |
| 2126 | build_static= |
| 2127 | got_cross_cc=yes |
| 2128 | break |
Paolo Bonzini | 2ad60f6 | 2022-05-27 16:35:50 +0100 | [diff] [blame] | 2129 | fi |
| 2130 | ;; |
| 2131 | esac |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 2132 | done |
| 2133 | if test $got_cross_cc != yes; then |
| 2134 | build_static= |
| 2135 | target_cc= |
| 2136 | target_ccas= |
Paolo Bonzini | 92e288f | 2022-06-22 10:42:58 +0200 | [diff] [blame] | 2137 | target_ar= |
| 2138 | target_as= |
| 2139 | target_ld= |
| 2140 | target_nm= |
| 2141 | target_objcopy= |
| 2142 | target_ranlib= |
| 2143 | target_strip= |
Paolo Bonzini | 2ad60f6 | 2022-05-27 16:35:50 +0100 | [diff] [blame] | 2144 | fi |
Alex Bennée | fde1096 | 2022-10-11 12:34:16 +0100 | [diff] [blame] | 2145 | test -n "$target_cc" |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2146 | } |
| 2147 | |
| 2148 | write_target_makefile() { |
Paolo Bonzini | e81785a | 2022-06-15 11:45:55 +0200 | [diff] [blame] | 2149 | echo "EXTRA_CFLAGS=$target_cflags" |
Paolo Bonzini | 0825cae | 2022-09-29 12:42:06 +0100 | [diff] [blame] | 2150 | if test -z "$target_cc" && test -z "$target_as"; then |
| 2151 | test -z "$container_image" && error_exit "Internal error: could not find cross compiler for $1?" |
| 2152 | echo "$1: docker-image-$container_image" >> Makefile.prereqs |
| 2153 | if test -n "$container_cross_cc"; then |
| 2154 | echo "CC=$docker_py cc --cc $container_cross_cc -i qemu/$container_image -s $source_path --" |
| 2155 | echo "CCAS=$docker_py cc --cc $container_cross_cc -i qemu/$container_image -s $source_path --" |
| 2156 | fi |
| 2157 | echo "AR=$docker_py cc --cc $container_cross_ar -i qemu/$container_image -s $source_path --" |
| 2158 | echo "AS=$docker_py cc --cc $container_cross_as -i qemu/$container_image -s $source_path --" |
| 2159 | echo "LD=$docker_py cc --cc $container_cross_ld -i qemu/$container_image -s $source_path --" |
| 2160 | echo "NM=$docker_py cc --cc $container_cross_nm -i qemu/$container_image -s $source_path --" |
| 2161 | echo "OBJCOPY=$docker_py cc --cc $container_cross_objcopy -i qemu/$container_image -s $source_path --" |
| 2162 | echo "RANLIB=$docker_py cc --cc $container_cross_ranlib -i qemu/$container_image -s $source_path --" |
| 2163 | echo "STRIP=$docker_py cc --cc $container_cross_strip -i qemu/$container_image -s $source_path --" |
| 2164 | else |
| 2165 | if test -n "$target_cc"; then |
| 2166 | echo "CC=$target_cc" |
| 2167 | echo "CCAS=$target_ccas" |
| 2168 | fi |
| 2169 | if test -n "$target_ar"; then |
| 2170 | echo "AR=$target_ar" |
| 2171 | fi |
| 2172 | if test -n "$target_as"; then |
| 2173 | echo "AS=$target_as" |
| 2174 | fi |
| 2175 | if test -n "$target_ld"; then |
| 2176 | echo "LD=$target_ld" |
| 2177 | fi |
| 2178 | if test -n "$target_nm"; then |
| 2179 | echo "NM=$target_nm" |
| 2180 | fi |
| 2181 | if test -n "$target_objcopy"; then |
| 2182 | echo "OBJCOPY=$target_objcopy" |
| 2183 | fi |
| 2184 | if test -n "$target_ranlib"; then |
| 2185 | echo "RANLIB=$target_ranlib" |
| 2186 | fi |
| 2187 | if test -n "$target_strip"; then |
| 2188 | echo "STRIP=$target_strip" |
| 2189 | fi |
Paolo Bonzini | 87eb014 | 2022-05-27 16:35:52 +0100 | [diff] [blame] | 2190 | fi |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2191 | } |
| 2192 | |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2193 | ########################################## |
Jagannathan Raman | 5511696 | 2022-06-13 16:26:24 -0400 | [diff] [blame] | 2194 | # check for vfio_user_server |
| 2195 | |
| 2196 | case "$vfio_user_server" in |
| 2197 | enabled ) |
| 2198 | if test "$git_submodules_action" != "ignore"; then |
| 2199 | git_submodules="${git_submodules} subprojects/libvfio-user" |
| 2200 | fi |
| 2201 | ;; |
| 2202 | esac |
| 2203 | |
| 2204 | ########################################## |
Juan Quintela | e86ecd4 | 2009-08-03 14:45:59 +0200 | [diff] [blame] | 2205 | # End of CC checks |
| 2206 | # After here, no more $cc or $ld runs |
| 2207 | |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 2208 | write_c_skeleton |
| 2209 | |
Paolo Bonzini | df42fa7 | 2022-04-20 17:33:38 +0200 | [diff] [blame] | 2210 | if test "$fortify_source" = "yes" ; then |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 2211 | QEMU_CFLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $QEMU_CFLAGS" |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 2212 | fi |
Paolo Bonzini | 086d5f7 | 2020-02-03 15:22:17 +0100 | [diff] [blame] | 2213 | |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 2214 | if test "$have_asan" = "yes"; then |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 2215 | QEMU_CFLAGS="-fsanitize=address $QEMU_CFLAGS" |
| 2216 | QEMU_LDFLAGS="-fsanitize=address $QEMU_LDFLAGS" |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 2217 | if test "$have_asan_iface_h" = "no" ; then |
| 2218 | echo "ASAN build enabled, but ASAN header missing." \ |
| 2219 | "Without code annotation, the report may be inferior." |
| 2220 | elif test "$have_asan_iface_fiber" = "no" ; then |
| 2221 | echo "ASAN build enabled, but ASAN header is too old." \ |
| 2222 | "Without code annotation, the report may be inferior." |
| 2223 | fi |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 2224 | fi |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 2225 | if test "$have_tsan" = "yes" ; then |
| 2226 | if test "$have_tsan_iface_fiber" = "yes" ; then |
| 2227 | QEMU_CFLAGS="-fsanitize=thread $QEMU_CFLAGS" |
| 2228 | QEMU_LDFLAGS="-fsanitize=thread $QEMU_LDFLAGS" |
| 2229 | else |
| 2230 | error_exit "Cannot enable TSAN due to missing fiber annotation interface." |
| 2231 | fi |
| 2232 | elif test "$tsan" = "yes" ; then |
| 2233 | error_exit "Cannot enable TSAN due to missing sanitize thread interface." |
| 2234 | fi |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 2235 | if test "$have_ubsan" = "yes"; then |
Paolo Bonzini | db5adea | 2019-12-11 15:34:27 +0100 | [diff] [blame] | 2236 | QEMU_CFLAGS="-fsanitize=undefined $QEMU_CFLAGS" |
| 2237 | QEMU_LDFLAGS="-fsanitize=undefined $QEMU_LDFLAGS" |
Marc-André Lureau | 247724c | 2018-01-16 16:11:51 +0100 | [diff] [blame] | 2238 | fi |
| 2239 | |
Peter Lieven | 6542aa9 | 2014-02-03 10:26:13 +0100 | [diff] [blame] | 2240 | ########################################## |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 2241 | # Guest agent Windows MSI package |
Michael Roth | 9d6bc27 | 2015-08-26 10:49:13 -0500 | [diff] [blame] | 2242 | |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 2243 | if test "$QEMU_GA_MANUFACTURER" = ""; then |
| 2244 | QEMU_GA_MANUFACTURER=QEMU |
| 2245 | fi |
| 2246 | if test "$QEMU_GA_DISTRO" = ""; then |
| 2247 | QEMU_GA_DISTRO=Linux |
| 2248 | fi |
| 2249 | if test "$QEMU_GA_VERSION" = ""; then |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 2250 | QEMU_GA_VERSION=$(cat "$source_path"/VERSION) |
Michael Roth | 9d6bc27 | 2015-08-26 10:49:13 -0500 | [diff] [blame] | 2251 | fi |
| 2252 | |
Paolo Bonzini | 33ab478 | 2022-05-27 16:35:55 +0100 | [diff] [blame] | 2253 | |
| 2254 | ####################################### |
| 2255 | # cross-compiled firmware targets |
| 2256 | |
Paolo Bonzini | ad38884 | 2022-05-27 16:35:53 +0100 | [diff] [blame] | 2257 | # Set up build tree symlinks that point back into the source tree |
| 2258 | # (these can be both files and directories). |
| 2259 | # Caution: avoid adding files or directories here using wildcards. This |
| 2260 | # will result in problems later if a new file matching the wildcard is |
| 2261 | # added to the source tree -- nothing will cause configure to be rerun |
| 2262 | # so the build tree will be missing the link back to the new file, and |
| 2263 | # tests might fail. Prefer to keep the relevant files in their own |
| 2264 | # directory and symlink the directory instead. |
| 2265 | LINKS="Makefile" |
Paolo Bonzini | ad38884 | 2022-05-27 16:35:53 +0100 | [diff] [blame] | 2266 | LINKS="$LINKS pc-bios/optionrom/Makefile" |
| 2267 | LINKS="$LINKS pc-bios/s390-ccw/Makefile" |
Paolo Bonzini | d695918 | 2022-05-27 16:35:56 +0100 | [diff] [blame] | 2268 | LINKS="$LINKS pc-bios/vof/Makefile" |
Paolo Bonzini | ad38884 | 2022-05-27 16:35:53 +0100 | [diff] [blame] | 2269 | LINKS="$LINKS .gdbinit scripts" # scripts needed by relative path in .gdbinit |
| 2270 | LINKS="$LINKS tests/avocado tests/data" |
| 2271 | LINKS="$LINKS tests/qemu-iotests/check" |
| 2272 | LINKS="$LINKS python" |
| 2273 | LINKS="$LINKS contrib/plugins/Makefile " |
| 2274 | for f in $LINKS ; do |
| 2275 | if [ -e "$source_path/$f" ]; then |
Peter Maydell | cc3c71e | 2022-08-25 16:07:01 +0100 | [diff] [blame] | 2276 | mkdir -p "$(dirname ./"$f")" |
Paolo Bonzini | ad38884 | 2022-05-27 16:35:53 +0100 | [diff] [blame] | 2277 | symlink "$source_path/$f" "$f" |
| 2278 | fi |
| 2279 | done |
| 2280 | |
Paolo Bonzini | b898bf2 | 2022-09-29 12:42:05 +0100 | [diff] [blame] | 2281 | echo "# Automatically generated by configure - do not modify" > Makefile.prereqs |
| 2282 | |
Paolo Bonzini | ca35f78 | 2010-05-26 16:08:29 +0200 | [diff] [blame] | 2283 | # Mac OS X ships with a broken assembler |
| 2284 | roms= |
Paolo Bonzini | 35fd22b | 2022-10-12 16:33:03 +0200 | [diff] [blame] | 2285 | if have_target i386-softmmu x86_64-softmmu && \ |
| 2286 | test "$targetos" != "darwin" && test "$targetos" != "sunos" && \ |
| 2287 | test "$targetos" != "haiku" && \ |
Paolo Bonzini | 61cbb35 | 2022-09-29 12:41:57 +0100 | [diff] [blame] | 2288 | probe_target_compiler i386-softmmu; then |
Paolo Bonzini | 7089977 | 2022-06-06 11:35:41 +0200 | [diff] [blame] | 2289 | roms="pc-bios/optionrom" |
| 2290 | config_mak=pc-bios/optionrom/config.mak |
| 2291 | echo "# Automatically generated by configure - do not modify" > $config_mak |
| 2292 | echo "TOPSRC_DIR=$source_path" >> $config_mak |
Alex Bennée | fde1096 | 2022-10-11 12:34:16 +0100 | [diff] [blame] | 2293 | write_target_makefile >> $config_mak |
Paolo Bonzini | ca35f78 | 2010-05-26 16:08:29 +0200 | [diff] [blame] | 2294 | fi |
Paolo Bonzini | ca35f78 | 2010-05-26 16:08:29 +0200 | [diff] [blame] | 2295 | |
Paolo Bonzini | 35fd22b | 2022-10-12 16:33:03 +0200 | [diff] [blame] | 2296 | if have_target ppc-softmmu ppc64-softmmu && \ |
| 2297 | probe_target_compiler ppc-softmmu; then |
Paolo Bonzini | 76ca98b | 2022-04-13 15:22:01 +0200 | [diff] [blame] | 2298 | roms="$roms pc-bios/vof" |
Paolo Bonzini | d695918 | 2022-05-27 16:35:56 +0100 | [diff] [blame] | 2299 | config_mak=pc-bios/vof/config.mak |
| 2300 | echo "# Automatically generated by configure - do not modify" > $config_mak |
| 2301 | echo "SRC_DIR=$source_path/pc-bios/vof" >> $config_mak |
Alex Bennée | fde1096 | 2022-10-11 12:34:16 +0100 | [diff] [blame] | 2302 | write_target_makefile >> $config_mak |
Paolo Bonzini | d695918 | 2022-05-27 16:35:56 +0100 | [diff] [blame] | 2303 | fi |
| 2304 | |
Paolo Bonzini | 9ffed42 | 2022-05-27 16:35:54 +0100 | [diff] [blame] | 2305 | # Only build s390-ccw bios if the compiler has -march=z900 or -march=z10 |
| 2306 | # (which is the lowest architecture level that Clang supports) |
Paolo Bonzini | 35fd22b | 2022-10-12 16:33:03 +0200 | [diff] [blame] | 2307 | if have_target s390x-softmmu && probe_target_compiler s390x-softmmu; then |
Alex Bennée | fde1096 | 2022-10-11 12:34:16 +0100 | [diff] [blame] | 2308 | write_c_skeleton |
| 2309 | do_compiler "$target_cc" $target_cc_cflags -march=z900 -o $TMPO -c $TMPC |
| 2310 | has_z900=$? |
| 2311 | if [ $has_z900 = 0 ] || do_compiler "$target_cc" $target_cc_cflags -march=z10 -msoft-float -Werror -o $TMPO -c $TMPC; then |
| 2312 | if [ $has_z900 != 0 ]; then |
| 2313 | echo "WARNING: Your compiler does not support the z900!" |
| 2314 | echo " The s390-ccw bios will only work with guest CPUs >= z10." |
Thomas Huth | a5b2afd | 2021-05-02 13:22:21 +0200 | [diff] [blame] | 2315 | fi |
Paolo Bonzini | 76ca98b | 2022-04-13 15:22:01 +0200 | [diff] [blame] | 2316 | roms="$roms pc-bios/s390-ccw" |
Paolo Bonzini | 9ffed42 | 2022-05-27 16:35:54 +0100 | [diff] [blame] | 2317 | config_mak=pc-bios/s390-ccw/config-host.mak |
| 2318 | echo "# Automatically generated by configure - do not modify" > $config_mak |
| 2319 | echo "SRC_PATH=$source_path/pc-bios/s390-ccw" >> $config_mak |
Alex Bennée | fde1096 | 2022-10-11 12:34:16 +0100 | [diff] [blame] | 2320 | write_target_makefile >> $config_mak |
Philippe Mathieu-Daudé | 1ef6bfc | 2020-06-15 09:49:19 +0200 | [diff] [blame] | 2321 | # SLOF is required for building the s390-ccw firmware on s390x, |
| 2322 | # since it is using the libnet code from SLOF for network booting. |
Paolo Bonzini | 2d652f2 | 2021-05-12 09:21:56 +0200 | [diff] [blame] | 2323 | git_submodules="${git_submodules} roms/SLOF" |
Thomas Huth | 2e33c3f | 2019-01-14 13:52:26 +0100 | [diff] [blame] | 2324 | fi |
Christian Borntraeger | 9933c30 | 2013-04-23 01:23:03 +0000 | [diff] [blame] | 2325 | fi |
| 2326 | |
Paolo Bonzini | 9ffed42 | 2022-05-27 16:35:54 +0100 | [diff] [blame] | 2327 | ####################################### |
| 2328 | # generate config-host.mak |
| 2329 | |
Peter Maydell | 35a7a6f | 2022-07-20 16:26:27 +0100 | [diff] [blame] | 2330 | 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] | 2331 | exit 1 |
Yonggang Luo | 5d91a2e | 2020-09-03 01:00:49 +0800 | [diff] [blame] | 2332 | fi |
Yonggang Luo | 5d91a2e | 2020-09-03 01:00:49 +0800 | [diff] [blame] | 2333 | |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2334 | config_host_mak="config-host.mak" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 2335 | |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2336 | echo "# Automatically generated by configure - do not modify" > $config_host_mak |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2337 | echo >> $config_host_mak |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2338 | |
Paolo Bonzini | e6c3b0f | 2010-10-21 10:18:35 +0200 | [diff] [blame] | 2339 | echo all: >> $config_host_mak |
Daniel P. Berrange | cc84d63 | 2017-10-20 15:02:43 +0100 | [diff] [blame] | 2340 | echo "GIT=$git" >> $config_host_mak |
Daniel P. Berrange | aef45d5 | 2017-09-29 11:11:56 +0100 | [diff] [blame] | 2341 | echo "GIT_SUBMODULES=$git_submodules" >> $config_host_mak |
Dan Streetman | 7d7dbf9 | 2021-01-19 12:20:46 -0500 | [diff] [blame] | 2342 | echo "GIT_SUBMODULES_ACTION=$git_submodules_action" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 2343 | |
aurel32 | f839394 | 2009-04-13 18:45:38 +0000 | [diff] [blame] | 2344 | if test "$debug_tcg" = "yes" ; then |
Juan Quintela | 2358a49 | 2009-07-27 16:13:25 +0200 | [diff] [blame] | 2345 | echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak |
aurel32 | f839394 | 2009-04-13 18:45:38 +0000 | [diff] [blame] | 2346 | fi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 2347 | if test "$mingw32" = "yes" ; then |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2348 | echo "CONFIG_WIN32=y" >> $config_host_mak |
Paolo Bonzini | b846ab7 | 2021-01-21 11:49:04 +0100 | [diff] [blame] | 2349 | echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER}" >> $config_host_mak |
| 2350 | echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO}" >> $config_host_mak |
| 2351 | echo "QEMU_GA_VERSION=${QEMU_GA_VERSION}" >> $config_host_mak |
pbrook | 210fa55 | 2007-02-27 21:04:49 +0000 | [diff] [blame] | 2352 | else |
Juan Quintela | 35f4df2 | 2009-07-27 16:13:07 +0200 | [diff] [blame] | 2353 | echo "CONFIG_POSIX=y" >> $config_host_mak |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 2354 | fi |
blueswir1 | 128ab2f | 2008-08-15 18:33:42 +0000 | [diff] [blame] | 2355 | |
Mark McLoughlin | dffcb71 | 2009-10-22 17:49:11 +0100 | [diff] [blame] | 2356 | if test "$linux" = "yes" ; then |
| 2357 | echo "CONFIG_LINUX=y" >> $config_host_mak |
| 2358 | fi |
| 2359 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 2360 | if test "$darwin" = "yes" ; then |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2361 | echo "CONFIG_DARWIN=y" >> $config_host_mak |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 2362 | fi |
malc | b29fe3e | 2008-11-18 01:42:22 +0000 | [diff] [blame] | 2363 | |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 2364 | if test "$solaris" = "yes" ; then |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2365 | echo "CONFIG_SOLARIS=y" >> $config_host_mak |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 2366 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 2367 | if test "$static" = "yes" ; then |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2368 | echo "CONFIG_STATIC=y" >> $config_host_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 2369 | fi |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2370 | echo "SRC_PATH=$source_path" >> $config_host_mak |
Alex Bennée | 2b1f35b | 2018-07-04 07:30:11 +0100 | [diff] [blame] | 2371 | echo "TARGET_DIRS=$target_list" >> $config_host_mak |
Fam Zheng | 1796926 | 2014-02-10 14:48:56 +0800 | [diff] [blame] | 2372 | if test "$modules" = "yes"; then |
| 2373 | echo "CONFIG_MODULES=y" >> $config_host_mak |
| 2374 | fi |
Jan Vesely | 277abf1 | 2016-04-29 13:15:23 -0400 | [diff] [blame] | 2375 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 2376 | # XXX: suppress that |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 2377 | if [ "$bsd" = "yes" ] ; then |
Juan Quintela | 2358a49 | 2009-07-27 16:13:25 +0200 | [diff] [blame] | 2378 | echo "CONFIG_BSD=y" >> $config_host_mak |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 2379 | fi |
| 2380 | |
Peter Maydell | 7c2acc7 | 2013-04-08 12:11:27 +0100 | [diff] [blame] | 2381 | echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak |
Peter Lieven | 7d992e4 | 2016-09-27 11:58:45 +0200 | [diff] [blame] | 2382 | |
Marc-André Lureau | d83414e | 2018-01-16 16:11:52 +0100 | [diff] [blame] | 2383 | if test "$have_asan_iface_fiber" = "yes" ; then |
| 2384 | echo "CONFIG_ASAN_IFACE_FIBER=y" >> $config_host_mak |
| 2385 | fi |
| 2386 | |
Lingfeng Yang | 0aebab0 | 2020-06-12 20:02:23 +0100 | [diff] [blame] | 2387 | if test "$have_tsan" = "yes" && test "$have_tsan_iface_fiber" = "yes" ; then |
| 2388 | echo "CONFIG_TSAN=y" >> $config_host_mak |
| 2389 | fi |
| 2390 | |
Alex Bennée | 40e8c6f | 2019-06-13 14:52:25 +0100 | [diff] [blame] | 2391 | if test "$plugins" = "yes" ; then |
| 2392 | echo "CONFIG_PLUGIN=y" >> $config_host_mak |
Alex Bennée | 40e8c6f | 2019-06-13 14:52:25 +0100 | [diff] [blame] | 2393 | fi |
| 2394 | |
Alex Bennée | b1863cc | 2021-01-08 22:42:39 +0000 | [diff] [blame] | 2395 | if test -n "$gdb_bin"; then |
| 2396 | gdb_version=$($gdb_bin --version | head -n 1) |
Alex Bennée | d6a66c8 | 2021-02-02 13:39:53 +0000 | [diff] [blame] | 2397 | if version_ge ${gdb_version##* } 9.1; then |
Alex Bennée | b1863cc | 2021-01-08 22:42:39 +0000 | [diff] [blame] | 2398 | echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak |
Alex Bennée | 48543dd | 2022-09-29 12:41:45 +0100 | [diff] [blame] | 2399 | else |
| 2400 | gdb_bin="" |
Alex Bennée | b1863cc | 2021-01-08 22:42:39 +0000 | [diff] [blame] | 2401 | fi |
Alex Bennée | f48e590 | 2020-03-16 17:21:48 +0000 | [diff] [blame] | 2402 | fi |
| 2403 | |
Paolo Bonzini | c4575b5 | 2022-09-29 12:41:58 +0100 | [diff] [blame] | 2404 | if test "$container" != no; then |
| 2405 | echo "ENGINE=$container" >> $config_host_mak |
| 2406 | fi |
Juan Quintela | 98ec69a | 2009-07-16 18:34:18 +0200 | [diff] [blame] | 2407 | echo "ROMS=$roms" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 2408 | echo "MAKE=$make" >> $config_host_mak |
Blue Swirl | c886edf | 2011-07-22 21:08:09 +0000 | [diff] [blame] | 2409 | echo "PYTHON=$python" >> $config_host_mak |
Alex Bennée | 39d87c8 | 2020-03-03 15:06:20 +0000 | [diff] [blame] | 2410 | echo "GENISOIMAGE=$genisoimage" >> $config_host_mak |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 2411 | echo "MESON=$meson" >> $config_host_mak |
Paolo Bonzini | 09e9332 | 2020-08-13 09:28:11 -0400 | [diff] [blame] | 2412 | echo "NINJA=$ninja" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 2413 | echo "CC=$cc" >> $config_host_mak |
Juan Quintela | a558ee1 | 2009-08-03 14:46:21 +0200 | [diff] [blame] | 2414 | echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak |
Philippe Mathieu-Daudé | 4cb37d1 | 2022-02-15 16:15:13 +0100 | [diff] [blame] | 2415 | echo "QEMU_OBJCFLAGS=$QEMU_OBJCFLAGS" >> $config_host_mak |
Paolo Bonzini | a81df1b | 2020-08-19 08:44:56 -0400 | [diff] [blame] | 2416 | echo "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak |
| 2417 | echo "GLIB_LIBS=$glib_libs" >> $config_host_mak |
Marc-André Lureau | 5b9e7d0 | 2022-05-25 16:41:39 +0200 | [diff] [blame] | 2418 | echo "GLIB_BINDIR=$glib_bindir" >> $config_host_mak |
Marc-André Lureau | d83acfd | 2021-10-09 17:37:40 +0400 | [diff] [blame] | 2419 | echo "GLIB_VERSION=$(pkg-config --modversion glib-2.0)" >> $config_host_mak |
Philippe Mathieu-Daudé | 8a99e9a | 2018-04-15 20:05:19 -0300 | [diff] [blame] | 2420 | echo "QEMU_LDFLAGS=$QEMU_LDFLAGS" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 2421 | echo "EXESUF=$EXESUF" >> $config_host_mak |
Juan Quintela | 804edf2 | 2009-07-27 16:12:49 +0200 | [diff] [blame] | 2422 | |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 2423 | # use included Linux headers |
| 2424 | if test "$linux" = "yes" ; then |
Andreas Färber | a307beb | 2012-06-14 15:14:33 +0000 | [diff] [blame] | 2425 | mkdir -p linux-headers |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 2426 | case "$cpu" in |
Paolo Bonzini | 4da270b | 2021-11-09 09:36:10 +0100 | [diff] [blame] | 2427 | i386|x86_64) |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 2428 | linux_arch=x86 |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 2429 | ;; |
Paolo Bonzini | d8ff892 | 2021-11-09 09:18:20 +0100 | [diff] [blame] | 2430 | ppc|ppc64) |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 2431 | linux_arch=powerpc |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 2432 | ;; |
| 2433 | s390x) |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 2434 | linux_arch=s390 |
| 2435 | ;; |
Claudio Fontana | 1f08031 | 2013-06-12 16:20:23 +0100 | [diff] [blame] | 2436 | aarch64) |
| 2437 | linux_arch=arm64 |
| 2438 | ;; |
WANG Xuerui | dfcf900 | 2021-12-21 13:41:04 +0800 | [diff] [blame] | 2439 | loongarch*) |
| 2440 | linux_arch=loongarch |
| 2441 | ;; |
Sanjay Lal | 222e7d1 | 2014-06-17 23:10:36 +0100 | [diff] [blame] | 2442 | mips64) |
| 2443 | linux_arch=mips |
| 2444 | ;; |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 2445 | *) |
| 2446 | # For most CPUs the kernel architecture name and QEMU CPU name match. |
| 2447 | linux_arch="$cpu" |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 2448 | ;; |
| 2449 | esac |
Peter Maydell | 08312a6 | 2012-08-03 13:51:25 +0100 | [diff] [blame] | 2450 | # For non-KVM architectures we will not have asm headers |
| 2451 | if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then |
| 2452 | symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm |
| 2453 | fi |
Peter Maydell | 6efd751 | 2011-11-30 11:59:04 +0000 | [diff] [blame] | 2454 | fi |
| 2455 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 2456 | for target in $target_list; do |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 2457 | target_dir="$target" |
Philippe Mathieu-Daudé | 57a93f1 | 2021-11-09 15:45:04 +0100 | [diff] [blame] | 2458 | target_name=$(echo $target | cut -d '-' -f 1)$EXESUF |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 2459 | mkdir -p "$target_dir" |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 2460 | case $target in |
| 2461 | *-user) symlink "../qemu-$target_name" "$target_dir/qemu-$target_name" ;; |
| 2462 | *) symlink "../qemu-system-$target_name" "$target_dir/qemu-system-$target_name" ;; |
| 2463 | esac |
| 2464 | done |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 2465 | |
Paolo Bonzini | fdb75ae | 2020-09-21 04:37:49 -0400 | [diff] [blame] | 2466 | if test "$default_targets" = "yes"; then |
| 2467 | echo "CONFIG_DEFAULT_TARGETS=y" >> $config_host_mak |
| 2468 | fi |
Peter Crosthwaite | a540f15 | 2013-04-18 14:47:31 +1000 | [diff] [blame] | 2469 | |
John Snow | fd0e605 | 2015-03-25 18:57:39 -0400 | [diff] [blame] | 2470 | if test "$ccache_cpp2" = "yes"; then |
| 2471 | echo "export CCACHE_CPP2=y" >> $config_host_mak |
| 2472 | fi |
| 2473 | |
Daniele Buono | 1e4f606 | 2020-05-29 16:51:21 -0400 | [diff] [blame] | 2474 | if test "$safe_stack" = "yes"; then |
| 2475 | echo "CONFIG_SAFESTACK=y" >> $config_host_mak |
| 2476 | fi |
| 2477 | |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2478 | # tests/tcg configuration |
Paolo Bonzini | b898bf2 | 2022-09-29 12:42:05 +0100 | [diff] [blame] | 2479 | (config_host_mak=tests/tcg/config-host.mak |
Paolo Bonzini | d674342 | 2022-09-29 12:42:00 +0100 | [diff] [blame] | 2480 | mkdir -p tests/tcg |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2481 | echo "# Automatically generated by configure - do not modify" > $config_host_mak |
| 2482 | echo "SRC_PATH=$source_path" >> $config_host_mak |
| 2483 | echo "HOST_CC=$host_cc" >> $config_host_mak |
| 2484 | |
Alex Bennée | 48543dd | 2022-09-29 12:41:45 +0100 | [diff] [blame] | 2485 | # versioned checked in the main config_host.mak above |
| 2486 | if test -n "$gdb_bin"; then |
| 2487 | echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak |
| 2488 | fi |
Paolo Bonzini | d1d94d9 | 2022-10-27 19:36:32 +0100 | [diff] [blame] | 2489 | if test "$plugins" = "yes" ; then |
| 2490 | echo "CONFIG_PLUGIN=y" >> $config_host_mak |
| 2491 | fi |
Alex Bennée | 48543dd | 2022-09-29 12:41:45 +0100 | [diff] [blame] | 2492 | |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2493 | tcg_tests_targets= |
| 2494 | for target in $target_list; do |
| 2495 | arch=${target%%-*} |
| 2496 | |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2497 | case $target in |
Paolo Bonzini | c48a5c4 | 2022-06-13 18:12:56 +0100 | [diff] [blame] | 2498 | xtensa*-linux-user) |
| 2499 | # the toolchain is not complete with headers, only build softmmu tests |
| 2500 | continue |
| 2501 | ;; |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2502 | *-softmmu) |
Peter Maydell | 6470861 | 2022-08-25 16:06:59 +0100 | [diff] [blame] | 2503 | test -f "$source_path/tests/tcg/$arch/Makefile.softmmu-target" || continue |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2504 | qemu="qemu-system-$arch" |
| 2505 | ;; |
| 2506 | *-linux-user|*-bsd-user) |
| 2507 | qemu="qemu-$arch" |
| 2508 | ;; |
| 2509 | esac |
| 2510 | |
Alex Bennée | fde1096 | 2022-10-11 12:34:16 +0100 | [diff] [blame] | 2511 | if probe_target_compiler $target || test -n "$container_image"; then |
Paolo Bonzini | 0825cae | 2022-09-29 12:42:06 +0100 | [diff] [blame] | 2512 | test -n "$container_image" && build_static=y |
Paolo Bonzini | d674342 | 2022-09-29 12:42:00 +0100 | [diff] [blame] | 2513 | mkdir -p "tests/tcg/$target" |
Paolo Bonzini | c7022a7 | 2022-09-29 12:42:07 +0100 | [diff] [blame] | 2514 | config_target_mak=tests/tcg/$target/config-target.mak |
Paolo Bonzini | d674342 | 2022-09-29 12:42:00 +0100 | [diff] [blame] | 2515 | ln -sf "$source_path/tests/tcg/Makefile.target" "tests/tcg/$target/Makefile" |
Paolo Bonzini | c7022a7 | 2022-09-29 12:42:07 +0100 | [diff] [blame] | 2516 | echo "# Automatically generated by configure - do not modify" > "$config_target_mak" |
| 2517 | echo "TARGET_NAME=$arch" >> "$config_target_mak" |
Paolo Bonzini | a3e28f8 | 2022-09-29 12:41:59 +0100 | [diff] [blame] | 2518 | echo "TARGET=$target" >> "$config_target_mak" |
Paolo Bonzini | c7022a7 | 2022-09-29 12:42:07 +0100 | [diff] [blame] | 2519 | write_target_makefile "build-tcg-tests-$target" >> "$config_target_mak" |
Paolo Bonzini | 15b273f | 2022-09-29 12:42:04 +0100 | [diff] [blame] | 2520 | echo "BUILD_STATIC=$build_static" >> "$config_target_mak" |
Paolo Bonzini | c7022a7 | 2022-09-29 12:42:07 +0100 | [diff] [blame] | 2521 | echo "QEMU=$PWD/$qemu" >> "$config_target_mak" |
Paolo Bonzini | b898bf2 | 2022-09-29 12:42:05 +0100 | [diff] [blame] | 2522 | echo "run-tcg-tests-$target: $qemu\$(EXESUF)" >> Makefile.prereqs |
Paolo Bonzini | cd362de | 2022-05-27 16:35:48 +0100 | [diff] [blame] | 2523 | tcg_tests_targets="$tcg_tests_targets $target" |
| 2524 | fi |
Paolo Bonzini | 2038f8c | 2019-08-07 16:35:23 +0200 | [diff] [blame] | 2525 | done |
Paolo Bonzini | b898bf2 | 2022-09-29 12:42:05 +0100 | [diff] [blame] | 2526 | echo "TCG_TESTS_TARGETS=$tcg_tests_targets" >> config-host.mak) |
Paolo Bonzini | 2038f8c | 2019-08-07 16:35:23 +0200 | [diff] [blame] | 2527 | |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 2528 | if test "$skip_meson" = no; then |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2529 | cross="config-meson.cross.new" |
| 2530 | meson_quote() { |
Paolo Bonzini | ac7ebcc | 2021-11-05 10:07:37 +0100 | [diff] [blame] | 2531 | test $# = 0 && return |
Paolo Bonzini | 47b3083 | 2020-09-23 05:26:17 -0400 | [diff] [blame] | 2532 | echo "'$(echo $* | sed "s/ /','/g")'" |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2533 | } |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2534 | |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2535 | echo "# Automatically generated by configure - do not modify" > $cross |
| 2536 | echo "[properties]" >> $cross |
Alex Bennée | d1d5e9e | 2021-07-07 14:17:44 +0100 | [diff] [blame] | 2537 | |
| 2538 | # unroll any custom device configs |
Alex Bennée | 11bdcfc | 2021-07-21 00:26:38 +0100 | [diff] [blame] | 2539 | for a in $device_archs; do |
| 2540 | eval "c=\$devices_${a}" |
| 2541 | echo "${a}-softmmu = '$c'" >> $cross |
| 2542 | done |
Alex Bennée | d1d5e9e | 2021-07-07 14:17:44 +0100 | [diff] [blame] | 2543 | |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2544 | echo "[built-in options]" >> $cross |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 2545 | echo "c_args = [$(meson_quote $CFLAGS $EXTRA_CFLAGS)]" >> $cross |
| 2546 | echo "cpp_args = [$(meson_quote $CXXFLAGS $EXTRA_CXXFLAGS)]" >> $cross |
Philippe Mathieu-Daudé | e910c7d | 2022-01-08 22:38:55 +0100 | [diff] [blame] | 2547 | test -n "$objcc" && echo "objc_args = [$(meson_quote $OBJCFLAGS $EXTRA_OBJCFLAGS)]" >> $cross |
Paolo Bonzini | a286666 | 2021-11-05 10:09:26 +0100 | [diff] [blame] | 2548 | echo "c_link_args = [$(meson_quote $CFLAGS $LDFLAGS $EXTRA_CFLAGS $EXTRA_LDFLAGS)]" >> $cross |
| 2549 | echo "cpp_link_args = [$(meson_quote $CXXFLAGS $LDFLAGS $EXTRA_CXXFLAGS $EXTRA_LDFLAGS)]" >> $cross |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2550 | echo "[binaries]" >> $cross |
Paolo Bonzini | 4dba278 | 2021-09-29 17:14:43 +0200 | [diff] [blame] | 2551 | echo "c = [$(meson_quote $cc $CPU_CFLAGS)]" >> $cross |
| 2552 | test -n "$cxx" && echo "cpp = [$(meson_quote $cxx $CPU_CFLAGS)]" >> $cross |
| 2553 | test -n "$objcc" && echo "objc = [$(meson_quote $objcc $CPU_CFLAGS)]" >> $cross |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2554 | echo "ar = [$(meson_quote $ar)]" >> $cross |
| 2555 | echo "nm = [$(meson_quote $nm)]" >> $cross |
| 2556 | echo "pkgconfig = [$(meson_quote $pkg_config_exe)]" >> $cross |
| 2557 | echo "ranlib = [$(meson_quote $ranlib)]" >> $cross |
| 2558 | if has $sdl2_config; then |
| 2559 | echo "sdl2-config = [$(meson_quote $sdl2_config)]" >> $cross |
| 2560 | fi |
| 2561 | echo "strip = [$(meson_quote $strip)]" >> $cross |
Konstantin Kostiuk | 158bb22 | 2022-04-28 21:15:25 +0300 | [diff] [blame] | 2562 | echo "widl = [$(meson_quote $widl)]" >> $cross |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2563 | echo "windres = [$(meson_quote $windres)]" >> $cross |
| 2564 | if test "$cross_compile" = "yes"; then |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2565 | cross_arg="--cross-file config-meson.cross" |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2566 | echo "[host_machine]" >> $cross |
Paolo Bonzini | ba7c60c | 2021-11-08 14:47:54 +0100 | [diff] [blame] | 2567 | echo "system = '$targetos'" >> $cross |
Paolo Bonzini | 823eb01 | 2021-11-08 14:18:17 +0100 | [diff] [blame] | 2568 | case "$cpu" in |
Joelle van Dyne | f6bca9d | 2021-01-25 17:24:54 -0800 | [diff] [blame] | 2569 | i386) |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2570 | echo "cpu_family = 'x86'" >> $cross |
| 2571 | ;; |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2572 | *) |
Paolo Bonzini | 823eb01 | 2021-11-08 14:18:17 +0100 | [diff] [blame] | 2573 | echo "cpu_family = '$cpu'" >> $cross |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2574 | ;; |
| 2575 | esac |
| 2576 | echo "cpu = '$cpu'" >> $cross |
| 2577 | if test "$bigendian" = "yes" ; then |
| 2578 | echo "endian = 'big'" >> $cross |
| 2579 | else |
| 2580 | echo "endian = 'little'" >> $cross |
| 2581 | fi |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2582 | else |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2583 | cross_arg="--native-file config-meson.cross" |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2584 | fi |
| 2585 | mv $cross config-meson.cross |
Marc-André Lureau | fc92989 | 2019-07-13 01:47:54 +0400 | [diff] [blame] | 2586 | |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2587 | rm -rf meson-private meson-info meson-logs |
Paolo Bonzini | 0a31e3a | 2022-04-20 17:33:59 +0200 | [diff] [blame] | 2588 | |
| 2589 | # Built-in options |
| 2590 | test "$bindir" != "bin" && meson_option_add "-Dbindir=$bindir" |
| 2591 | test "$default_feature" = no && meson_option_add -Dauto_features=disabled |
| 2592 | test "$pie" = no && meson_option_add -Db_pie=false |
| 2593 | test "$werror" = yes && meson_option_add -Dwerror=true |
| 2594 | |
| 2595 | # QEMU options |
Paolo Bonzini | 0a31e3a | 2022-04-20 17:33:59 +0200 | [diff] [blame] | 2596 | test "$cfi" != false && meson_option_add "-Dcfi=$cfi" |
| 2597 | test "$fdt" != auto && meson_option_add "-Dfdt=$fdt" |
| 2598 | test -n "${LIB_FUZZING_ENGINE+xxx}" && meson_option_add "-Dfuzzing_engine=$LIB_FUZZING_ENGINE" |
| 2599 | test "$qemu_suffix" != qemu && meson_option_add "-Dqemu_suffix=$qemu_suffix" |
Paolo Bonzini | 0a31e3a | 2022-04-20 17:33:59 +0200 | [diff] [blame] | 2600 | test "$smbd" != '' && meson_option_add "-Dsmbd=$smbd" |
| 2601 | test "$tcg" != enabled && meson_option_add "-Dtcg=$tcg" |
Jagannathan Raman | 5511696 | 2022-06-13 16:26:24 -0400 | [diff] [blame] | 2602 | 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] | 2603 | run_meson() { |
Paolo Bonzini | 0a31e3a | 2022-04-20 17:33:59 +0200 | [diff] [blame] | 2604 | NINJA=$ninja $meson setup --prefix "$prefix" "$@" $cross_arg "$PWD" "$source_path" |
Paolo Bonzini | 61d6309 | 2021-10-07 15:08:28 +0200 | [diff] [blame] | 2605 | } |
| 2606 | eval run_meson $meson_options |
Paolo Bonzini | d77e90f | 2021-03-16 08:19:34 +0100 | [diff] [blame] | 2607 | if test "$?" -ne 0 ; then |
| 2608 | error_exit "meson setup failed" |
| 2609 | fi |
Paolo Bonzini | 699d388 | 2021-03-16 08:27:40 +0100 | [diff] [blame] | 2610 | else |
| 2611 | if test -f meson-private/cmd_line.txt; then |
| 2612 | # Adjust old command line options whose type was changed |
| 2613 | # Avoids having to use "setup --wipe" when Meson is upgraded |
| 2614 | perl -i -ne ' |
| 2615 | s/^gettext = true$/gettext = auto/; |
| 2616 | s/^gettext = false$/gettext = disabled/; |
Paolo Bonzini | 654d6b0 | 2021-02-09 14:59:26 +0100 | [diff] [blame] | 2617 | /^b_staticpic/ && next; |
Paolo Bonzini | 699d388 | 2021-03-16 08:27:40 +0100 | [diff] [blame] | 2618 | print;' meson-private/cmd_line.txt |
| 2619 | fi |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 2620 | fi |
| 2621 | |
Michael S. Tsirkin | dc65540 | 2014-03-09 17:37:49 +0200 | [diff] [blame] | 2622 | # Save the configure command line for later reuse. |
| 2623 | cat <<EOD >config.status |
| 2624 | #!/bin/sh |
| 2625 | # Generated by configure. |
| 2626 | # Run this file to recreate the current configuration. |
| 2627 | # Compiler output produced by configure, useful for debugging |
| 2628 | # configure, is in config.log if it exists. |
| 2629 | EOD |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2630 | |
| 2631 | preserve_env() { |
| 2632 | envname=$1 |
| 2633 | |
| 2634 | eval envval=\$$envname |
| 2635 | |
| 2636 | if test -n "$envval" |
| 2637 | then |
| 2638 | echo "$envname='$envval'" >> config.status |
| 2639 | echo "export $envname" >> config.status |
| 2640 | else |
| 2641 | echo "unset $envname" >> config.status |
| 2642 | fi |
| 2643 | } |
| 2644 | |
| 2645 | # Preserve various env variables that influence what |
| 2646 | # features/build target configure will detect |
| 2647 | preserve_env AR |
| 2648 | preserve_env AS |
| 2649 | preserve_env CC |
Paolo Bonzini | 8009da0 | 2021-11-05 10:08:43 +0100 | [diff] [blame] | 2650 | preserve_env CFLAGS |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2651 | preserve_env CXX |
Paolo Bonzini | 8009da0 | 2021-11-05 10:08:43 +0100 | [diff] [blame] | 2652 | preserve_env CXXFLAGS |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2653 | preserve_env LD |
Paolo Bonzini | 8009da0 | 2021-11-05 10:08:43 +0100 | [diff] [blame] | 2654 | preserve_env LDFLAGS |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2655 | preserve_env LD_LIBRARY_PATH |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2656 | preserve_env MAKE |
| 2657 | preserve_env NM |
Paolo Bonzini | b5569e5 | 2022-06-07 12:14:47 +0200 | [diff] [blame] | 2658 | preserve_env OBJCFLAGS |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2659 | preserve_env OBJCOPY |
| 2660 | preserve_env PATH |
| 2661 | preserve_env PKG_CONFIG |
| 2662 | preserve_env PKG_CONFIG_LIBDIR |
| 2663 | preserve_env PKG_CONFIG_PATH |
| 2664 | preserve_env PYTHON |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2665 | preserve_env SDL2_CONFIG |
| 2666 | preserve_env SMBD |
| 2667 | preserve_env STRIP |
Konstantin Kostiuk | 158bb22 | 2022-04-28 21:15:25 +0300 | [diff] [blame] | 2668 | preserve_env WIDL |
Daniel P. Berrangé | e811da7 | 2018-09-04 13:36:03 +0100 | [diff] [blame] | 2669 | preserve_env WINDRES |
| 2670 | |
Michael S. Tsirkin | dc65540 | 2014-03-09 17:37:49 +0200 | [diff] [blame] | 2671 | printf "exec" >>config.status |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 2672 | for i in "$0" "$@"; do |
Paolo Bonzini | 835af89 | 2020-09-08 13:20:45 +0200 | [diff] [blame] | 2673 | test "$i" = --skip-meson || printf " %s" "$(quote_sh "$i")" >>config.status |
Paolo Bonzini | a566505 | 2019-06-10 12:05:14 +0200 | [diff] [blame] | 2674 | done |
Dr. David Alan Gilbert | cf7cc92 | 2016-01-12 11:58:48 +0000 | [diff] [blame] | 2675 | echo ' "$@"' >>config.status |
Michael S. Tsirkin | dc65540 | 2014-03-09 17:37:49 +0200 | [diff] [blame] | 2676 | chmod +x config.status |
| 2677 | |
Peter Maydell | 8cd05ab | 2014-05-23 17:07:24 +0100 | [diff] [blame] | 2678 | rm -r "$TMPDIR1" |