]> git.proxmox.com Git - mirror_qemu.git/blame - configure
meson: use subproject for internal libfdt
[mirror_qemu.git] / configure
CommitLineData
7d13299d
FB
1#!/bin/sh
2#
3ef693a0 3# qemu configure script (c) 2003 Fabrice Bellard
7d13299d 4#
8cd05ab6 5
99519e67 6# Unset some variables known to interfere with behavior of common tools,
5b507233
PB
7# just as autoconf does. Unlike autoconf, we assume that unset exists.
8unset CLICOLOR_FORCE GREP_OPTIONS BASH_ENV ENV MAIL MAILPATH CDPATH
99519e67 9
5e4dfd3d
JS
10# Don't allow CCACHE, if present, to use cached results of compile tests!
11export CCACHE_RECACHE=yes
12
dedad027
DB
13# make source path absolute
14source_path=$(cd "$(dirname -- "$0")"; pwd)
15
16if test "$PWD" = "$source_path"
17then
18 echo "Using './build' as the directory for build output"
19
20 MARKER=build/auto-created-by-configure
21
22 if test -e build
23 then
24 if test -f $MARKER
25 then
26 rm -rf build
27 else
28 echo "ERROR: ./build dir already exists and was not previously created by configure"
29 exit 1
30 fi
31 fi
32
f160a5b2
DB
33 if ! mkdir build || ! touch $MARKER
34 then
35 echo "ERROR: Could not create ./build directory. Check the permissions on"
36 echo "your source directory, or try doing an out-of-tree build."
37 exit 1
38 fi
dedad027
DB
39
40 cat > GNUmakefile <<'EOF'
41# This file is auto-generated by configure to support in-source tree
42# 'make' command invocation
43
44ifeq ($(MAKECMDGOALS),)
45recurse: all
46endif
47
48.NOTPARALLEL: %
49%: force
50 @echo 'changing dir to build for $(MAKE) "$(MAKECMDGOALS)"...'
51 @$(MAKE) -C build -f Makefile $(MAKECMDGOALS)
52 @if test "$(MAKECMDGOALS)" = "distclean" && \
53 test -e build/auto-created-by-configure ; \
54 then \
55 rm -rf build GNUmakefile ; \
56 fi
57force: ;
58.PHONY: force
59GNUmakefile: ;
60
61EOF
62 cd build
64708615 63 exec "$source_path/configure" "$@"
dedad027
DB
64fi
65
8cd05ab6
PM
66# Temporary directory used for files created while
67# configure runs. Since it is in the build directory
68# we can safely blow away any previous version of it
69# (and we need not jump through hoops to try to delete
70# it when configure exits.)
71TMPDIR1="config-temp"
72rm -rf "${TMPDIR1}"
563661c0 73if ! mkdir -p "${TMPDIR1}"; then
8cd05ab6
PM
74 echo "ERROR: failed to create temporary directory"
75 exit 1
7d13299d
FB
76fi
77
8cd05ab6
PM
78TMPB="qemu-conf"
79TMPC="${TMPDIR1}/${TMPB}.c"
66518bf6 80TMPO="${TMPDIR1}/${TMPB}.o"
8cd05ab6 81TMPE="${TMPDIR1}/${TMPB}.exe"
7d13299d 82
da1d85e3 83rm -f config.log
9ac81bbb 84
b48e3611
PM
85# Print a helpful header at the top of config.log
86echo "# QEMU configure log $(date)" >> config.log
979ae168 87printf "# Configured with:" >> config.log
7f788779
AB
88# repeat the invocation to log and stdout for CI
89invoke=$(printf " '%s'" "$0" "$@")
90test -n "$GITLAB_CI" && echo "configuring with: $invoke"
91{ echo "$invoke"; echo; echo "#"; } >> config.log
b48e3611 92
835af899
PB
93quote_sh() {
94 printf "%s" "$1" | sed "s,','\\\\'',g; s,.*,'&',"
95}
96
d880a3ba
PB
97print_error() {
98 (echo
76ad07a4
PM
99 echo "ERROR: $1"
100 while test -n "$2"; do
101 echo " $2"
102 shift
103 done
d880a3ba
PB
104 echo) >&2
105}
106
107error_exit() {
108 print_error "$@"
76ad07a4
PM
109 exit 1
110}
111
9c83ffd8 112do_compiler() {
cd362def
PB
113 # Run the compiler, capturing its output to the log. First argument
114 # is compiler binary to execute.
b3b5472d 115 compiler="$1"
cd362def
PB
116 shift
117 if test -n "$BASH_VERSION"; then eval '
118 echo >>config.log "
119funcs: ${FUNCNAME[*]}
120lines: ${BASH_LINENO[*]}"
121 '; fi
122 echo $compiler "$@" >> config.log
123 $compiler "$@" >> config.log 2>&1 || return $?
124}
125
9c83ffd8 126do_cc() {
d0016b86 127 do_compiler "$cc" $CPU_CFLAGS "$@"
9c83ffd8
PM
128}
129
52166aa0 130compile_object() {
fd0e6053 131 local_cflags="$1"
a988b4c5 132 do_cc $CFLAGS $EXTRA_CFLAGS $local_cflags -c -o $TMPO $TMPC
52166aa0
JQ
133}
134
135compile_prog() {
136 local_cflags="$1"
137 local_ldflags="$2"
a988b4c5
PB
138 do_cc $CFLAGS $EXTRA_CFLAGS $local_cflags -o $TMPE $TMPC \
139 $LDFLAGS $EXTRA_LDFLAGS $local_ldflags
52166aa0
JQ
140}
141
11568d6d
PB
142# symbolically link $1 to $2. Portable version of "ln -sf".
143symlink() {
72b8b5a1 144 rm -rf "$2"
ec5b06d7 145 mkdir -p "$(dirname "$2")"
72b8b5a1 146 ln -s "$1" "$2"
11568d6d
PB
147}
148
0dba6195
LM
149# check whether a command is available to this shell (may be either an
150# executable or a builtin)
151has() {
152 type "$1" >/dev/null 2>&1
153}
154
0a01d76f 155version_ge () {
2df52b9b
AB
156 local_ver1=$(expr "$1" : '\([0-9.]*\)' | tr . ' ')
157 local_ver2=$(echo "$2" | tr . ' ')
0a01d76f
MAL
158 while true; do
159 set x $local_ver1
160 local_first=${2-0}
c44a33e2
SG
161 # 'shift 2' if $2 is set, or 'shift' if $2 is not set
162 shift ${2:+2}
0a01d76f
MAL
163 local_ver1=$*
164 set x $local_ver2
165 # the second argument finished, the first must be greater or equal
166 test $# = 1 && return 0
167 test $local_first -lt $2 && return 1
168 test $local_first -gt $2 && return 0
c44a33e2 169 shift ${2:+2}
0a01d76f
MAL
170 local_ver2=$*
171 done
172}
173
4ace32e2
AO
174if printf %s\\n "$source_path" "$PWD" | grep -q "[[:space:]:]";
175then
176 error_exit "main directory cannot contain spaces nor colons"
177fi
178
13cf376c
PB
179# parse CC options first; some compiler tests are used to establish
180# some defaults, based on the host environment
181
14211825 182# default parameters
2ff6b91e 183cpu=""
3812c0c4 184cross_compile="no"
7d13299d 185cross_prefix=""
e49d021e 186host_cc="cc"
13cf376c
PB
187EXTRA_CFLAGS=""
188EXTRA_CXXFLAGS=""
189EXTRA_OBJCFLAGS=""
190EXTRA_LDFLAGS=""
377529c0
PB
191
192# Default value for a variable defining feature "foo".
193# * foo="no" feature will only be used if --enable-foo arg is given
194# * foo="" feature will be searched for, and if found, will be used
195# unless --disable-foo is given
196# * foo="yes" this value will only be set by --enable-foo flag.
197# feature will searched for,
198# if not found, configure exits with error
199#
200# Always add --enable-foo and --disable-foo command line args.
201# Distributions want to ensure that several features are compiled in, and it
202# is impossible without a --enable-foo that exits if a feature is not found.
c87ea116 203default_feature=""
3b4da132 204
ac0df51d 205for opt do
89138857 206 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
ac0df51d
AL
207 case "$opt" in
208 --cross-prefix=*) cross_prefix="$optarg"
3812c0c4 209 cross_compile="yes"
ac0df51d 210 ;;
3d8df640 211 --cc=*) CC="$optarg"
ac0df51d 212 ;;
83f73fce
TS
213 --cxx=*) CXX="$optarg"
214 ;;
c0c34c91
PM
215 --objcc=*) objcc="$optarg"
216 ;;
2ff6b91e
JQ
217 --cpu=*) cpu="$optarg"
218 ;;
a2866660
PB
219 --extra-cflags=*)
220 EXTRA_CFLAGS="$EXTRA_CFLAGS $optarg"
221 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS $optarg"
e910c7d9 222 EXTRA_OBJCFLAGS="$EXTRA_OBJCFLAGS $optarg"
a2866660
PB
223 ;;
224 --extra-cxxflags=*) EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS $optarg"
11cde1c8 225 ;;
e910c7d9
PMD
226 --extra-objcflags=*) EXTRA_OBJCFLAGS="$EXTRA_OBJCFLAGS $optarg"
227 ;;
a2866660 228 --extra-ldflags=*) EXTRA_LDFLAGS="$EXTRA_LDFLAGS $optarg"
e2a2ed06 229 ;;
d75402b5
AB
230 --cross-cc-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-cc-FOO option"
231 ;;
479ca4cc 232 --cross-cc-cflags-*) cc_arch=${opt#--cross-cc-cflags-}; cc_arch=${cc_arch%%=*}
d422b2bc
AB
233 eval "cross_cc_cflags_${cc_arch}=\$optarg"
234 ;;
d75402b5
AB
235 --cross-cc-*) cc_arch=${opt#--cross-cc-}; cc_arch=${cc_arch%%=*}
236 eval "cross_cc_${cc_arch}=\$optarg"
237 ;;
5adb43be
PB
238 --cross-prefix-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --cross-prefix-FOO option"
239 ;;
240 --cross-prefix-*) cc_arch=${opt#--cross-prefix-}; cc_arch=${cc_arch%%=*}
241 eval "cross_prefix_${cc_arch}=\$optarg"
242 ;;
13cf376c
PB
243 --without-default-features) default_feature="no"
244 ;;
ac0df51d
AL
245 esac
246done
ac0df51d 247
13cf376c
PB
248
249if test -e "$source_path/.git"
250then
251 git_submodules_action="update"
252else
253 git_submodules_action="ignore"
254fi
255
256git_submodules="ui/keycodemapdb"
257git="git"
258debug_tcg="no"
259docs="auto"
260EXESUF=""
261prefix="/usr/local"
262qemu_suffix="qemu"
263softmmu="yes"
264linux_user=""
265bsd_user=""
266plugins="$default_feature"
267ninja=""
268python=
269pypi="enabled"
270bindir="bin"
271skip_meson=no
272vfio_user_server="disabled"
273use_containers="yes"
274gdb_bin=$(command -v "gdb-multiarch" || command -v "gdb")
275gdb_arches=""
276werror=""
277
278# Don't accept a target_list environment variable.
279unset target_list
280unset target_list_exclude
281
282# The following Meson options are handled manually (still they
283# are included in the automatically generated help message)
284
285# 1. Track which submodules are needed
286fdt="auto"
287
288# 2. Automatically enable/disable other options
289tcg="auto"
290cfi="false"
291
292# 3. Need to check for -static-pie before Meson runs. Also,
293# Meson has PIE as a boolean rather than enabled/disabled/auto.
294pie=""
295static="no"
296
e49d021e
PM
297# Preferred compiler:
298# ${CC} (if set)
299# ${cross_prefix}gcc (if cross-prefix specified)
300# system compiler
301if test -z "${CC}${cross_prefix}"; then
302 cc="$host_cc"
303else
304 cc="${CC-${cross_prefix}gcc}"
305fi
306
83f73fce
TS
307if test -z "${CXX}${cross_prefix}"; then
308 cxx="c++"
309else
310 cxx="${CXX-${cross_prefix}g++}"
311fi
312
c0c34c91
PM
313# Preferred ObjC compiler:
314# $objcc (if set, i.e. via --objcc option)
315# ${cross_prefix}clang (if cross-prefix specified)
316# clang (if available)
317# $cc
318if test -z "${objcc}${cross_prefix}"; then
319 if has clang; then
320 objcc=clang
321 else
322 objcc="$cc"
323 fi
324else
325 objcc="${objcc-${cross_prefix}clang}"
326fi
327
b3198cc2 328ar="${AR-${cross_prefix}ar}"
cdbd727c 329as="${AS-${cross_prefix}as}"
5f6f0e27 330ccas="${CCAS-$cc}"
b3198cc2
SY
331objcopy="${OBJCOPY-${cross_prefix}objcopy}"
332ld="${LD-${cross_prefix}ld}"
9f81aeb5 333ranlib="${RANLIB-${cross_prefix}ranlib}"
4852ee95 334nm="${NM-${cross_prefix}nm}"
35acbb30 335smbd="$SMBD"
b3198cc2 336strip="${STRIP-${cross_prefix}strip}"
158bb224 337widl="${WIDL-${cross_prefix}widl}"
b3198cc2 338windres="${WINDRES-${cross_prefix}windres}"
f9f0e617 339windmc="${WINDMC-${cross_prefix}windmc}"
877c5567 340pkg_config="${PKG_CONFIG-${cross_prefix}pkg-config}"
47c03744 341sdl2_config="${SDL2_CONFIG-${cross_prefix}sdl2-config}"
ac0df51d 342
ac0df51d
AL
343check_define() {
344cat > $TMPC <<EOF
345#if !defined($1)
fd786e1a 346#error $1 not defined
ac0df51d
AL
347#endif
348int main(void) { return 0; }
349EOF
52166aa0 350 compile_object
ac0df51d
AL
351}
352
93b25869
JS
353write_c_skeleton() {
354 cat > $TMPC <<EOF
355int main(void) { return 0; }
356EOF
357}
358
bbea4050 359if check_define __linux__ ; then
ba7c60c2 360 targetos=linux
bbea4050 361elif check_define _WIN32 ; then
ba7c60c2 362 targetos=windows
bbea4050 363elif check_define __OpenBSD__ ; then
ba7c60c2 364 targetos=openbsd
bbea4050 365elif check_define __sun__ ; then
ba7c60c2 366 targetos=sunos
bbea4050 367elif check_define __HAIKU__ ; then
ba7c60c2 368 targetos=haiku
951fedfc 369elif check_define __FreeBSD__ ; then
ba7c60c2 370 targetos=freebsd
951fedfc 371elif check_define __FreeBSD_kernel__ && check_define __GLIBC__; then
ba7c60c2 372 targetos=gnu/kfreebsd
951fedfc 373elif check_define __DragonFly__ ; then
ba7c60c2 374 targetos=dragonfly
951fedfc 375elif check_define __NetBSD__; then
ba7c60c2 376 targetos=netbsd
951fedfc 377elif check_define __APPLE__; then
ba7c60c2 378 targetos=darwin
bbea4050 379else
951fedfc
PM
380 # This is a fatal error, but don't report it yet, because we
381 # might be going to just print the --help text, or it might
382 # be the result of a missing compiler.
ba7c60c2 383 targetos=bogus
bbea4050
PM
384fi
385
65eff01b
PB
386# OS specific
387
3b0d8643
PB
388mingw32="no"
389bsd="no"
390linux="no"
391solaris="no"
bbea4050 392case $targetos in
65eff01b
PB
393windows)
394 mingw32="yes"
395 plugins="no"
396 pie="no"
397;;
398gnu/kfreebsd)
399 bsd="yes"
400;;
401freebsd)
402 bsd="yes"
65eff01b
PB
403 make="${MAKE-gmake}"
404 # needed for kinfo_getvmmap(3) in libutil.h
405;;
406dragonfly)
407 bsd="yes"
408 make="${MAKE-gmake}"
409;;
410netbsd)
411 bsd="yes"
412 make="${MAKE-gmake}"
413;;
414openbsd)
415 bsd="yes"
416 make="${MAKE-gmake}"
417;;
418darwin)
419 bsd="yes"
420 darwin="yes"
65eff01b 421;;
ba7c60c2 422sunos)
65eff01b
PB
423 solaris="yes"
424 make="${MAKE-gmake}"
65eff01b
PB
425;;
426haiku)
427 pie="no"
65eff01b
PB
428;;
429linux)
430 linux="yes"
65eff01b 431;;
bbea4050
PM
432esac
433
2ff6b91e
JQ
434if test ! -z "$cpu" ; then
435 # command line argument
436 :
437elif check_define __i386__ ; then
ac0df51d
AL
438 cpu="i386"
439elif check_define __x86_64__ ; then
c72b26ec
RH
440 if check_define __ILP32__ ; then
441 cpu="x32"
442 else
443 cpu="x86_64"
444 fi
3aa9bd6c 445elif check_define __sparc__ ; then
3aa9bd6c
BS
446 if check_define __arch64__ ; then
447 cpu="sparc64"
448 else
449 cpu="sparc"
450 fi
fdf7ed96 451elif check_define _ARCH_PPC ; then
452 if check_define _ARCH_PPC64 ; then
f8378acc
RH
453 if check_define _LITTLE_ENDIAN ; then
454 cpu="ppc64le"
455 else
456 cpu="ppc64"
457 fi
fdf7ed96 458 else
459 cpu="ppc"
460 fi
afa05235
AJ
461elif check_define __mips__ ; then
462 cpu="mips"
d66ed0ea
AJ
463elif check_define __s390__ ; then
464 if check_define __s390x__ ; then
465 cpu="s390x"
466 else
467 cpu="s390"
468 fi
c4f80543 469elif check_define __riscv ; then
ba0e7333 470 cpu="riscv"
21d89f84
PM
471elif check_define __arm__ ; then
472 cpu="arm"
1f080313
CF
473elif check_define __aarch64__ ; then
474 cpu="aarch64"
dfcf900b
WX
475elif check_define __loongarch64 ; then
476 cpu="loongarch64"
ac0df51d 477else
f9c77801
PB
478 # Using uname is really broken, but it is just a fallback for architectures
479 # that are going to use TCI anyway
89138857 480 cpu=$(uname -m)
f9c77801 481 echo "WARNING: unrecognized host CPU, proceeding with 'uname -m' output '$cpu'"
ac0df51d
AL
482fi
483
f9c77801
PB
484# Normalise host CPU name and set multilib cflags. The canonicalization
485# isn't really necessary, because the architectures that we check for
486# should not hit the 'uname -m' case, but better safe than sorry.
359bc95d 487# Note that this case should only have supported host CPUs, not guests.
7d13299d 488case "$cpu" in
e4da0e39
PB
489 armv*b|armv*l|arm)
490 cpu="arm" ;;
491
f9c77801 492 i386|i486|i586|i686)
97a847bc 493 cpu="i386"
e4da0e39
PB
494 CPU_CFLAGS="-m32" ;;
495 x32)
4da270be 496 cpu="x86_64"
e4da0e39 497 CPU_CFLAGS="-mx32" ;;
aaa5fa14
AJ
498 x86_64|amd64)
499 cpu="x86_64"
e4da0e39
PB
500 # ??? Only extremely old AMD cpus do not have cmpxchg16b.
501 # If we truly care, we should simply detect this case at
502 # runtime and generate the fallback to serial emulation.
503 CPU_CFLAGS="-m64 -mcx16" ;;
504
afa05235 505 mips*)
e4da0e39
PB
506 cpu="mips" ;;
507
508 ppc)
509 CPU_CFLAGS="-m32" ;;
510 ppc64)
ced5cfff 511 CPU_CFLAGS="-m64 -mbig-endian" ;;
e4da0e39 512 ppc64le)
d8ff892d 513 cpu="ppc64"
ced5cfff 514 CPU_CFLAGS="-m64 -mlittle-endian" ;;
e4da0e39
PB
515
516 s390)
823eb013 517 CPU_CFLAGS="-m31" ;;
e4da0e39
PB
518 s390x)
519 CPU_CFLAGS="-m64" ;;
520
3142255c 521 sparc|sun4[cdmuv])
ae228531 522 cpu="sparc"
e4da0e39
PB
523 CPU_CFLAGS="-m32 -mv8plus -mcpu=ultrasparc" ;;
524 sparc64)
525 CPU_CFLAGS="-m64 -mcpu=ultrasparc" ;;
7d13299d 526esac
e2d52ad3 527
0db4a067 528: ${make=${MAKE-make}}
b6daf4d3 529
fee6d412
JS
530
531check_py_version() {
5591b745 532 # We require python >= 3.7.
fee6d412 533 # NB: a True python conditional creates a non-zero return code (Failure)
5591b745 534 "$1" -c 'import sys; sys.exit(sys.version_info < (3,7))'
fee6d412
JS
535}
536
fee6d412
JS
537first_python=
538if test -z "${PYTHON}"; then
fee6d412
JS
539 # A bare 'python' is traditionally python 2.x, but some distros
540 # have it as python 3.x, so check in both places.
5591b745 541 for binary in python3 python python3.11 python3.10 python3.9 python3.8 python3.7; do
fee6d412
JS
542 if has "$binary"; then
543 python=$(command -v "$binary")
544 if check_py_version "$python"; then
545 # This one is good.
546 first_python=
547 break
548 else
549 first_python=$python
550 fi
551 fi
552 done
553else
554 # Same as above, but only check the environment variable.
555 has "${PYTHON}" || error_exit "The PYTHON environment variable does not point to an executable"
556 python=$(command -v "$PYTHON")
fee6d412
JS
557 if check_py_version "$python"; then
558 # This one is good.
559 first_python=
560 else
561 first_python=$first_python
faf44142 562 fi
fee6d412 563fi
903458c8 564
39d87c8c
AB
565# Check for ancillary tools used in testing
566genisoimage=
3df437c7 567for binary in genisoimage mkisofs
39d87c8c
AB
568do
569 if has $binary
570 then
571 genisoimage=$(command -v "$binary")
572 break
573 fi
574done
575
3457a3f8 576if test "$mingw32" = "yes" ; then
3457a3f8 577 EXESUF=".exe"
d17f305a 578 prefix="/qemu"
c09c1ce7 579 bindir=""
77433a5f 580 qemu_suffix=""
3457a3f8
JQ
581fi
582
8154f5e6
AO
583meson_option_build_array() {
584 printf '['
c5cfdaba 585 (if test "$targetos" = windows; then
8154f5e6
AO
586 IFS=\;
587 else
588 IFS=:
589 fi
590 for e in $1; do
65842b03
PM
591 printf '"""'
592 # backslash escape any '\' and '"' characters
593 printf "%s" "$e" | sed -e 's/\([\"]\)/\\\1/g'
594 printf '""",'
8154f5e6
AO
595 done)
596 printf ']\n'
597}
598
64708615 599. "$source_path/scripts/meson-buildoptions.sh"
61d63097
PB
600
601meson_options=
c54b59ee
PB
602meson_option_add() {
603 meson_options="$meson_options $(quote_sh "$1")"
604}
61d63097
PB
605meson_option_parse() {
606 meson_options="$meson_options $(_meson_option_parse "$@")"
607 if test $? -eq 1; then
608 echo "ERROR: unknown option $1"
609 echo "Try '$0 --help' for more information"
610 exit 1
611 fi
612}
613
7d13299d 614for opt do
89138857 615 optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)')
7d13299d 616 case "$opt" in
2efc3265
FB
617 --help|-h) show_help=yes
618 ;;
64708615 619 --version|-V) exec cat "$source_path/VERSION"
99123e13 620 ;;
b1a550a0 621 --prefix=*) prefix="$optarg"
7d13299d 622 ;;
ac0df51d 623 --cross-prefix=*)
7d13299d 624 ;;
ac0df51d 625 --cc=*)
7d13299d 626 ;;
b1a550a0 627 --host-cc=*) host_cc="$optarg"
83469015 628 ;;
83f73fce
TS
629 --cxx=*)
630 ;;
c0c34c91 631 --objcc=*)
3c4a4d0d 632 ;;
b1a550a0 633 --make=*) make="$optarg"
7d13299d 634 ;;
b6daf4d3 635 --install=*)
6a882643 636 ;;
81e2b198 637 --python=*) python="$optarg"
c886edfb 638 ;;
a5665051
PB
639 --skip-meson) skip_meson=yes
640 ;;
48328880
PB
641 --ninja=*) ninja="$optarg"
642 ;;
e2d8830e
BS
643 --smbd=*) smbd="$optarg"
644 ;;
e2a2ed06 645 --extra-cflags=*)
7d13299d 646 ;;
11cde1c8
BD
647 --extra-cxxflags=*)
648 ;;
e910c7d9
PMD
649 --extra-objcflags=*)
650 ;;
e2a2ed06 651 --extra-ldflags=*)
7d13299d 652 ;;
28609749 653 --cross-cc-*)
5bc62e01 654 ;;
5adb43be
PB
655 --cross-prefix-*)
656 ;;
6b0cedcd
JS
657 --enable-docs) docs=enabled
658 ;;
659 --disable-docs) docs=disabled
660 ;;
2ff6b91e 661 --cpu=*)
7d13299d 662 ;;
b1a550a0 663 --target-list=*) target_list="$optarg"
447e133f
AB
664 if test "$target_list_exclude"; then
665 error_exit "Can't mix --target-list with --target-list-exclude"
666 fi
667 ;;
668 --target-list-exclude=*) target_list_exclude="$optarg"
669 if test "$target_list"; then
670 error_exit "Can't mix --target-list-exclude with --target-list"
671 fi
de83cd02 672 ;;
c54b59ee 673 --with-default-devices) meson_option_add -Ddefault_devices=true
f3494749 674 ;;
c54b59ee 675 --without-default-devices) meson_option_add -Ddefault_devices=false
f3494749 676 ;;
d1d5e9ee
AB
677 --with-devices-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --with-devices-FOO option"
678 ;;
679 --with-devices-*) device_arch=${opt#--with-devices-};
680 device_arch=${device_arch%%=*}
681 cf=$source_path/configs/devices/$device_arch-softmmu/$optarg.mak
682 if test -f "$cf"; then
683 device_archs="$device_archs $device_arch"
684 eval "devices_${device_arch}=\$optarg"
685 else
686 error_exit "File $cf does not exist"
687 fi
688 ;;
c87ea116
AB
689 --without-default-features) # processed above
690 ;;
877c5567 691 --static) static="yes"
43ce4dfe 692 ;;
0b24e75f
PB
693 --bindir=*) bindir="$optarg"
694 ;;
77433a5f 695 --with-suffix=*) qemu_suffix="$optarg"
023d3d67 696 ;;
181ce1d0
OH
697 --host=*|--build=*|\
698 --disable-dependency-tracking|\
785c23ae 699 --sbindir=*|--sharedstatedir=*|\
fe0038be 700 --oldincludedir=*|--datarootdir=*|--infodir=*|\
023ddd74
MF
701 --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*)
702 # These switches are silently ignored, for compatibility with
703 # autoconf-generated configure scripts. This allows QEMU's
704 # configure to be used by RPM and similar macros that set
705 # lots of directory switches by default.
706 ;;
f8393946
AJ
707 --enable-debug-tcg) debug_tcg="yes"
708 ;;
709 --disable-debug-tcg) debug_tcg="no"
710 ;;
f3d08ee6
PB
711 --enable-debug)
712 # Enable debugging options that aren't excessively noisy
713 debug_tcg="yes"
58a2e3f5 714 meson_option_parse --enable-debug-graph-lock ""
c55cf6ab 715 meson_option_parse --enable-debug-mutex ""
c54b59ee 716 meson_option_add -Doptimization=0
0aebab04 717 ;;
1badb709 718 --disable-tcg) tcg="disabled"
d1a14257 719 plugins="no"
b3f6ea7e 720 ;;
1badb709 721 --enable-tcg) tcg="enabled"
b3f6ea7e 722 ;;
cad25d69 723 --disable-system) softmmu="no"
0a8e90f4 724 ;;
cad25d69 725 --enable-system) softmmu="yes"
0a8e90f4 726 ;;
0953a80f
ZA
727 --disable-user)
728 linux_user="no" ;
729 bsd_user="no" ;
0953a80f
ZA
730 ;;
731 --enable-user) ;;
831b7825 732 --disable-linux-user) linux_user="no"
0a8e90f4 733 ;;
831b7825
TS
734 --enable-linux-user) linux_user="yes"
735 ;;
84778508
BS
736 --disable-bsd-user) bsd_user="no"
737 ;;
738 --enable-bsd-user) bsd_user="yes"
739 ;;
40d6444e 740 --enable-pie) pie="yes"
34005a00 741 ;;
40d6444e 742 --disable-pie) pie="no"
34005a00 743 ;;
85aa5189
FB
744 --enable-werror) werror="yes"
745 ;;
746 --disable-werror) werror="no"
747 ;;
9e62ba48
DB
748 --enable-cfi)
749 cfi="true";
c54b59ee 750 meson_option_add -Db_lto=true
9e62ba48
DB
751 ;;
752 --disable-cfi) cfi="false"
753 ;;
fbb4121d 754 --disable-fdt) fdt="disabled"
2df87df7 755 ;;
fbb4121d
PB
756 --enable-fdt) fdt="enabled"
757 ;;
758 --enable-fdt=git) fdt="internal"
759 ;;
03a3c0b3 760 --enable-fdt=*) fdt="$optarg"
2df87df7 761 ;;
cc84d63a
DB
762 --with-git=*) git="$optarg"
763 ;;
7d7dbf9d
DS
764 --with-git-submodules=*)
765 git_submodules_action="$optarg"
f62bbee5 766 ;;
0c5f3dcb
JS
767 --disable-pypi) pypi="disabled"
768 ;;
769 --enable-pypi) pypi="enabled"
770 ;;
9b8e4298
AB
771 --enable-plugins) if test "$mingw32" = "yes"; then
772 error_exit "TCG plugins not currently supported on Windows platforms"
773 else
774 plugins="yes"
775 fi
40e8c6f4
AB
776 ;;
777 --disable-plugins) plugins="no"
778 ;;
afc3a8f9
AB
779 --enable-containers) use_containers="yes"
780 ;;
781 --disable-containers) use_containers="no"
782 ;;
f48e590a
AB
783 --gdb=*) gdb_bin="$optarg"
784 ;;
55116968
JR
785 --enable-vfio-user-server) vfio_user_server="enabled"
786 ;;
787 --disable-vfio-user-server) vfio_user_server="disabled"
788 ;;
3b4da132 789 # everything else has the same name in configure and meson
4fda6011 790 --*) meson_option_parse "$opt" "$optarg"
7f1559c6 791 ;;
7d13299d
FB
792 esac
793done
794
d1a14257
AB
795# test for any invalid configuration combinations
796if test "$plugins" = "yes" -a "$tcg" = "disabled"; then
797 error_exit "Can't enable plugins on non-TCG builds"
798fi
799
7d7dbf9d
DS
800case $git_submodules_action in
801 update|validate)
802 if test ! -e "$source_path/.git"; then
803 echo "ERROR: cannot $git_submodules_action git submodules without .git"
804 exit 1
805 fi
806 ;;
807 ignore)
b80fd281
PB
808 if ! test -f "$source_path/ui/keycodemapdb/README"
809 then
810 echo
811 echo "ERROR: missing GIT submodules"
812 echo
813 if test -e "$source_path/.git"; then
814 echo "--with-git-submodules=ignore specified but submodules were not"
815 echo "checked out. Please initialize and update submodules."
816 else
817 echo "This is not a GIT checkout but module content appears to"
818 echo "be missing. Do not use 'git archive' or GitHub download links"
819 echo "to acquire QEMU source archives. Non-GIT builds are only"
820 echo "supported with source archives linked from:"
821 echo
822 echo " https://www.qemu.org/download/#source"
823 echo
824 echo "Developers working with GIT can use scripts/archive-source.sh"
825 echo "if they need to create valid source archives."
826 fi
827 echo
828 exit 1
829 fi
7d7dbf9d
DS
830 ;;
831 *)
832 echo "ERROR: invalid --with-git-submodules= value '$git_submodules_action'"
833 exit 1
834 ;;
835esac
836
60e0df25 837default_target_list=""
6e92f823
PM
838mak_wilds=""
839
b915a2f1 840if [ "$linux_user" != no ]; then
64708615 841 if [ "$targetos" = linux ] && [ -d "$source_path/linux-user/include/host/$cpu" ]; then
b915a2f1
PB
842 linux_user=yes
843 elif [ "$linux_user" = yes ]; then
844 error_exit "linux-user not supported on this architecture"
845 fi
846fi
847if [ "$bsd_user" != no ]; then
848 if [ "$bsd_user" = "" ]; then
849 test $targetos = freebsd && bsd_user=yes
850 fi
64708615 851 if [ "$bsd_user" = yes ] && ! [ -d "$source_path/bsd-user/$targetos" ]; then
b915a2f1
PB
852 error_exit "bsd-user not supported on this host OS"
853 fi
854fi
6e92f823 855if [ "$softmmu" = "yes" ]; then
812b31d3 856 mak_wilds="${mak_wilds} $source_path/configs/targets/*-softmmu.mak"
60e0df25 857fi
6e92f823 858if [ "$linux_user" = "yes" ]; then
812b31d3 859 mak_wilds="${mak_wilds} $source_path/configs/targets/*-linux-user.mak"
60e0df25 860fi
6e92f823 861if [ "$bsd_user" = "yes" ]; then
812b31d3 862 mak_wilds="${mak_wilds} $source_path/configs/targets/*-bsd-user.mak"
60e0df25
PM
863fi
864
2d838d9b
AB
865for config in $mak_wilds; do
866 target="$(basename "$config" .mak)"
98db9a06 867 if echo "$target_list_exclude" | grep -vq "$target"; then
2d838d9b
AB
868 default_target_list="${default_target_list} $target"
869 fi
870done
6e92f823 871
af5db58e
PB
872if test x"$show_help" = x"yes" ; then
873cat << EOF
874
875Usage: configure [options]
876Options: [defaults in brackets after descriptions]
877
08fb77ed
SW
878Standard options:
879 --help print this message
880 --prefix=PREFIX install in PREFIX [$prefix]
74154d7e 881 --target-list=LIST set target list (default: build all)
08fb77ed
SW
882$(echo Available targets: $default_target_list | \
883 fold -s -w 53 | sed -e 's/^/ /')
447e133f 884 --target-list-exclude=LIST exclude a set of targets from the default target-list
08fb77ed
SW
885
886Advanced options (experts only):
3812c0c4 887 --cross-prefix=PREFIX use PREFIX for compile tools, PREFIX can be blank [$cross_prefix]
08fb77ed 888 --cc=CC use C compiler CC [$cc]
08fb77ed
SW
889 --host-cc=CC use C compiler CC [$host_cc] for code run at
890 build time
891 --cxx=CXX use C++ compiler CXX [$cxx]
892 --objcc=OBJCC use Objective-C compiler OBJCC [$objcc]
a2866660
PB
893 --extra-cflags=CFLAGS append extra C compiler flags CFLAGS
894 --extra-cxxflags=CXXFLAGS append extra C++ compiler flags CXXFLAGS
e910c7d9 895 --extra-objcflags=OBJCFLAGS append extra Objective C compiler flags OBJCFLAGS
08fb77ed 896 --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS
d75402b5 897 --cross-cc-ARCH=CC use compiler when building ARCH guest test cases
479ca4cc 898 --cross-cc-cflags-ARCH= use compiler flags when building ARCH guest tests
5adb43be 899 --cross-prefix-ARCH=PREFIX cross compiler prefix when building ARCH guest test cases
08fb77ed 900 --make=MAKE use specified make [$make]
08fb77ed 901 --python=PYTHON use specified python [$python]
48328880 902 --ninja=NINJA use specified ninja [$ninja]
08fb77ed 903 --smbd=SMBD use specified smbd [$smbd]
db1b5f13 904 --with-git=GIT use specified git [$git]
7d7dbf9d
DS
905 --with-git-submodules=update update git submodules (default if .git dir exists)
906 --with-git-submodules=validate fail if git submodules are not up to date
907 --with-git-submodules=ignore do not update or check git submodules (default if no .git dir)
08fb77ed 908 --static enable static build [$static]
08fb77ed 909 --bindir=PATH install binaries in PATH
ca8c0909 910 --with-suffix=SUFFIX suffix for QEMU data inside datadir/libdir/sysconfdir/docdir [$qemu_suffix]
c035c8d6
PB
911 --without-default-features default all --enable-* options to "disabled"
912 --without-default-devices do not include any device that is not needed to
913 start the emulator (only use if you are including
d1d5e9ee
AB
914 desired devices in configs/devices/)
915 --with-devices-ARCH=NAME override default configs/devices
08fb77ed 916 --enable-debug enable common debug build options
08fb77ed 917 --disable-werror disable compilation abort on warning
c23f23b9 918 --cpu=CPU Build for host CPU [$cpu]
40e8c6f4
AB
919 --enable-plugins
920 enable plugins via shared library loading
afc3a8f9 921 --disable-containers don't use containers for cross-building
f48e590a 922 --gdb=GDB-path gdb to use for gdbstub tests [$gdb_bin]
61d63097
PB
923EOF
924 meson_options_help
925cat << EOF
c23f23b9
MT
926 system all system emulation targets
927 user supported user emulation targets
928 linux-user all linux usermode emulation targets
929 bsd-user all BSD usermode emulation targets
c23f23b9 930 pie Position Independent Executables
c23f23b9 931 debug-tcg TCG debugging (default is disabled)
08fb77ed
SW
932
933NOTE: The object files are built at the place where configure is launched
af5db58e 934EOF
2d2ad6d0 935exit 0
af5db58e
PB
936fi
937
9c790242 938# Remove old dependency files to make sure that they get properly regenerated
002d8c13 939rm -f ./*/config-devices.mak.d
9c790242 940
faf44142
DB
941if test -z "$python"
942then
fee6d412
JS
943 # If first_python is set, there was a binary somewhere even though
944 # it was not suitable. Use it for the error message.
945 if test -n "$first_python"; then
5591b745 946 error_exit "Cannot use '$first_python', Python >= 3.7 is required." \
fee6d412
JS
947 "Use --python=/path/to/python to specify a supported Python."
948 else
949 error_exit "Python not found. Use --python=/path/to/python"
950 fi
c53eeaf7 951fi
fee6d412 952
8e2c76bd
RB
953if ! has "$make"
954then
955 error_exit "GNU make ($make) not found"
956fi
c53eeaf7 957
fee6d412 958if ! check_py_version "$python"; then
5591b745 959 error_exit "Cannot use '$python', Python >= 3.7 is required." \
e46b82a0
JS
960 "Use --python=/path/to/python to specify a supported Python." \
961 "Maybe try:" \
962 " openSUSE Leap 15.3+: zypper install python39" \
963 " CentOS 8: dnf install python38"
c53eeaf7
SH
964fi
965
81e2b198
JS
966# Resolve PATH
967python="$(command -v "$python")"
81e2b198
JS
968
969# Create a Python virtual environment using our configured python.
970# The stdout of this script will be the location of a symlink that
971# points to the configured Python.
972# Entry point scripts for pip, meson, and sphinx are generated if those
973# packages are present.
974
975# Defaults assumed for now:
976# - venv is cleared if it exists already;
977# - venv is allowed to use system packages;
0c5f3dcb
JS
978# - all setup can be performed offline;
979# - missing packages may be fetched from PyPI,
980# unless --disable-pypi is passed.
81e2b198
JS
981# - pip is not installed into the venv when possible,
982# but ensurepip is called as a fallback when necessary.
983
984echo "python determined to be '$python'"
985echo "python version: $($python --version)"
986
987python="$($python -B "${source_path}/python/scripts/mkvenv.py" create pyvenv)"
988if test "$?" -ne 0 ; then
989 error_exit "python venv creation failed"
990fi
991
992# Suppress writing compiled files
993python="$python -B"
6f6652eb 994mkvenv="$python ${source_path}/python/scripts/mkvenv.py"
462a6567 995
0c5f3dcb
JS
996mkvenv_flags=""
997if test "$pypi" = "enabled" ; then
998 mkvenv_flags="--online"
999fi
1000
6f6652eb 1001if ! $mkvenv ensure \
0c5f3dcb 1002 $mkvenv_flags \
66e2c6cb
JS
1003 --dir "${source_path}/python/wheels" \
1004 --diagnose "meson" \
3b087f79 1005 "meson>=0.63.0" ;
66e2c6cb
JS
1006then
1007 exit 1
a5665051 1008fi
a5665051 1009
66e2c6cb
JS
1010# At this point, we expect Meson to be installed and available.
1011# We expect mkvenv or pip to have created pyvenv/bin/meson for us.
1012# We ignore PATH completely here: we want to use the venv's Meson
1013# *exclusively*.
0a01d76f 1014
66e2c6cb 1015meson="$(cd pyvenv/bin; pwd)/meson"
0a01d76f 1016
6f6652eb
JS
1017# Conditionally ensure Sphinx is installed.
1018
0c5f3dcb
JS
1019mkvenv_flags=""
1020if test "$pypi" = "enabled" -a "$docs" = "enabled" ; then
1021 mkvenv_flags="--online"
1022fi
1023
6f6652eb
JS
1024if test "$docs" != "disabled" ; then
1025 if ! $mkvenv ensure \
0c5f3dcb 1026 $mkvenv_flags \
6f6652eb
JS
1027 --diagnose "sphinx-build" \
1028 "sphinx>=1.6.0" "sphinx-rtd-theme>=0.5.0";
1029 then
1030 if test "$docs" = "enabled" ; then
1031 exit 1
1032 fi
1033 echo "Sphinx not found/usable, disabling docs."
1034 docs=disabled
1035 else
1036 docs=enabled
1037 fi
1038fi
1039
09e93326 1040# Probe for ninja
48328880
PB
1041
1042if test -z "$ninja"; then
1043 for c in ninja ninja-build samu; do
1044 if has $c; then
1045 ninja=$(command -v "$c")
1046 break
1047 fi
1048 done
09e93326
PB
1049 if test -z "$ninja"; then
1050 error_exit "Cannot find Ninja"
1051 fi
48328880 1052fi
a5665051 1053
9c83ffd8
PM
1054# Consult white-list to determine whether to enable werror
1055# by default. Only enable by default for git builds
9c83ffd8 1056if test -z "$werror" ; then
7d7dbf9d 1057 if test "$git_submodules_action" != "ignore" && \
e633a5c6 1058 { test "$linux" = "yes" || test "$mingw32" = "yes"; }; then
9c83ffd8
PM
1059 werror="yes"
1060 else
1061 werror="no"
1062 fi
1063fi
1064
975ff037 1065if test "$targetos" = "bogus"; then
fb59dabd
PM
1066 # Now that we know that we're not printing the help and that
1067 # the compiler works (so the results of the check_defines we used
1068 # to identify the OS are reliable), if we didn't recognize the
1069 # host OS we should stop now.
951fedfc 1070 error_exit "Unrecognized host OS (uname -s reports '$(uname -s)')"
fb59dabd
PM
1071fi
1072
40d6444e 1073if test "$static" = "yes" ; then
5f2453ac
AB
1074 if test "$plugins" = "yes"; then
1075 error_exit "static and plugins are mutually incompatible"
ba4dd2aa
AB
1076 else
1077 plugins="no"
5f2453ac 1078 fi
40d6444e 1079fi
37650689 1080test "$plugins" = "" && plugins=yes
40d6444e 1081
b2634124 1082cat > $TMPC << EOF
21d4a791
AK
1083
1084#ifdef __linux__
1085# define THREAD __thread
1086#else
1087# define THREAD
1088#endif
21d4a791 1089static THREAD int tls_var;
21d4a791 1090int main(void) { return tls_var; }
40d6444e 1091EOF
412aeacd 1092
12781462 1093if test "$static" = "yes"; then
eca7a8e6 1094 if test "$pie" != "no" && compile_prog "-Werror -fPIE -DPIE" "-static-pie"; then
12781462
RH
1095 pie="yes"
1096 elif test "$pie" = "yes"; then
1097 error_exit "-static-pie not available due to missing toolchain support"
1098 else
12781462
RH
1099 pie="no"
1100 fi
a988b4c5
PB
1101elif test "$pie" != "no"; then
1102 if compile_prog "-Werror -fPIE -DPIE" "-pie"; then
1103 pie="yes"
1104 elif test "$pie" = "yes"; then
1105 error_exit "PIE not available due to missing toolchain support"
1106 else
1107 echo "Disabling PIE due to missing toolchain support"
1108 pie="no"
b9eae9ef 1109 fi
40d6444e
AK
1110fi
1111
09dada40 1112##########################################
09dada40 1113
afb63ebd 1114if test -z "${target_list+xxx}" ; then
fdb75aef 1115 default_targets=yes
d880a3ba 1116 for target in $default_target_list; do
fdb75aef 1117 target_list="$target_list $target"
d880a3ba
PB
1118 done
1119 target_list="${target_list# }"
121afa9e 1120else
fdb75aef 1121 default_targets=no
89138857 1122 target_list=$(echo "$target_list" | sed -e 's/,/ /g')
d880a3ba
PB
1123 for target in $target_list; do
1124 # Check that we recognised the target name; this allows a more
1125 # friendly error message than if we let it fall through.
1126 case " $default_target_list " in
1127 *" $target "*)
1128 ;;
1129 *)
1130 error_exit "Unknown target name '$target'"
1131 ;;
1132 esac
d880a3ba 1133 done
121afa9e 1134fi
25b48338 1135
f55fe278
PB
1136# see if system emulation was really requested
1137case " $target_list " in
1138 *"-softmmu "*) softmmu=yes
1139 ;;
1140 *) softmmu=no
1141 ;;
1142esac
5327cf48 1143
7630156d
PMD
1144if test "$tcg" = "auto"; then
1145 if test -z "$target_list"; then
1146 tcg="disabled"
1147 else
1148 tcg="enabled"
1149 fi
1150fi
1151
1152if test "$tcg" = "enabled"; then
1153 git_submodules="$git_submodules tests/fp/berkeley-testfloat-3"
1154 git_submodules="$git_submodules tests/fp/berkeley-softfloat-3"
1155fi
1156
33ab5f24 1157##########################################
7d13299d
FB
1158# big/little endian test
1159cat > $TMPC << EOF
33ab5f24
MP
1160#if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
1161# error LITTLE
1162#endif
1163int main(void) { return 0; }
7d13299d
FB
1164EOF
1165
33ab5f24
MP
1166if ! compile_prog ; then
1167 bigendian="no"
61cc919f 1168else
33ab5f24
MP
1169 cat > $TMPC << EOF
1170#if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
1171# error BIG
1172#endif
1173int main(void) { return 0; }
1174EOF
1175
1176 if ! compile_prog ; then
1177 bigendian="yes"
1178 else
61cc919f 1179 echo big/little test failed
659eb157 1180 exit 1
33ab5f24 1181 fi
7d13299d
FB
1182fi
1183
f652e6af
AJ
1184##########################################
1185# fdt probe
d599938a 1186
fbb4121d
PB
1187case "$fdt" in
1188 auto | enabled | internal)
1189 # Simpler to always update submodule, even if not needed.
58e48b2e 1190 git_submodules="${git_submodules} subprojects/dtc"
fbb4121d
PB
1191 ;;
1192esac
f652e6af 1193
fd0e6053
JS
1194########################################
1195# check if ccache is interfering with
1196# semantic analysis of macros
1197
5e4dfd3d 1198unset CCACHE_CPP2
fd0e6053
JS
1199ccache_cpp2=no
1200cat > $TMPC << EOF
1201static const int Z = 1;
1202#define fn() ({ Z; })
1203#define TAUT(X) ((X) == Z)
1204#define PAREN(X, Y) (X == Y)
1205#define ID(X) (X)
8a0afbb2 1206int main(void)
fd0e6053
JS
1207{
1208 int x = 0, y = 0;
1209 x = ID(x);
1210 x = fn();
1211 fn();
1212 if (PAREN(x, y)) return 0;
1213 if (TAUT(Z)) return 0;
1214 return 0;
1215}
1216EOF
1217
1218if ! compile_object "-Werror"; then
1219 ccache_cpp2=yes
1220fi
1221
cd362def
PB
1222##########################################
1223# functions to probe cross compilers
1224
1225container="no"
60f999b7 1226runc=""
47fdc8fb 1227if test $use_containers = "yes" && (has "docker" || has "podman"); then
c4575b59
PB
1228 case $($python "$source_path"/tests/docker/docker.py probe) in
1229 *docker) container=docker ;;
1230 podman) container=podman ;;
1231 no) container=no ;;
1232 esac
a3e28f81
PB
1233 if test "$container" != "no"; then
1234 docker_py="$python $source_path/tests/docker/docker.py --engine $container"
60f999b7 1235 runc=$($python "$source_path"/tests/docker/docker.py probe)
a3e28f81 1236 fi
cd362def
PB
1237fi
1238
1239# cross compilers defaults, can be overridden with --cross-cc-ARCH
5adb43be
PB
1240: ${cross_prefix_aarch64="aarch64-linux-gnu-"}
1241: ${cross_prefix_aarch64_be="$cross_prefix_aarch64"}
1242: ${cross_prefix_alpha="alpha-linux-gnu-"}
1243: ${cross_prefix_arm="arm-linux-gnueabihf-"}
1244: ${cross_prefix_armeb="$cross_prefix_arm"}
1245: ${cross_prefix_hexagon="hexagon-unknown-linux-musl-"}
34bb43b0 1246: ${cross_prefix_loongarch64="loongarch64-unknown-linux-gnu-"}
5adb43be
PB
1247: ${cross_prefix_hppa="hppa-linux-gnu-"}
1248: ${cross_prefix_i386="i686-linux-gnu-"}
1249: ${cross_prefix_m68k="m68k-linux-gnu-"}
1250: ${cross_prefix_microblaze="microblaze-linux-musl-"}
1251: ${cross_prefix_mips64el="mips64el-linux-gnuabi64-"}
1252: ${cross_prefix_mips64="mips64-linux-gnuabi64-"}
1253: ${cross_prefix_mipsel="mipsel-linux-gnu-"}
1254: ${cross_prefix_mips="mips-linux-gnu-"}
1255: ${cross_prefix_nios2="nios2-linux-gnu-"}
1256: ${cross_prefix_ppc="powerpc-linux-gnu-"}
1257: ${cross_prefix_ppc64="powerpc64-linux-gnu-"}
1258: ${cross_prefix_ppc64le="$cross_prefix_ppc64"}
1259: ${cross_prefix_riscv64="riscv64-linux-gnu-"}
1260: ${cross_prefix_s390x="s390x-linux-gnu-"}
1261: ${cross_prefix_sh4="sh4-linux-gnu-"}
1262: ${cross_prefix_sparc64="sparc64-linux-gnu-"}
1263: ${cross_prefix_sparc="$cross_prefix_sparc64"}
1264: ${cross_prefix_x86_64="x86_64-linux-gnu-"}
1265
cd362def
PB
1266: ${cross_cc_aarch64_be="$cross_cc_aarch64"}
1267: ${cross_cc_cflags_aarch64_be="-mbig-endian"}
46af66ed 1268: ${cross_cc_armeb="$cross_cc_arm"}
cd362def
PB
1269: ${cross_cc_cflags_armeb="-mbig-endian"}
1270: ${cross_cc_hexagon="hexagon-unknown-linux-musl-clang"}
fc2622f6 1271: ${cross_cc_cflags_hexagon="-mv73 -O2 -static"}
cd362def 1272: ${cross_cc_cflags_i386="-m32"}
d44f2f96 1273: ${cross_cc_cflags_ppc="-m32 -mbig-endian"}
cd362def
PB
1274: ${cross_cc_cflags_ppc64="-m64 -mbig-endian"}
1275: ${cross_cc_ppc64le="$cross_cc_ppc64"}
1276: ${cross_cc_cflags_ppc64le="-m64 -mlittle-endian"}
cd362def 1277: ${cross_cc_cflags_sparc64="-m64 -mcpu=ultrasparc"}
46af66ed
PB
1278: ${cross_cc_sparc="$cross_cc_sparc64"}
1279: ${cross_cc_cflags_sparc="-m32 -mcpu=supersparc"}
cd362def
PB
1280: ${cross_cc_cflags_x86_64="-m64"}
1281
5adb43be 1282compute_target_variable() {
92e288fc 1283 eval "$2="
5adb43be
PB
1284 if eval test -n "\"\${cross_prefix_$1}\""; then
1285 if eval has "\"\${cross_prefix_$1}\$3\""; then
1286 eval "$2=\"\${cross_prefix_$1}\$3\""
1287 fi
1288 fi
1289}
cd362def 1290
35fd22b0
PB
1291have_target() {
1292 for i; do
1293 case " $target_list " in
1294 *" $i "*) return 0;;
1295 *) ;;
1296 esac
1297 done
1298 return 1
1299}
1300
52f08dea
PB
1301# probe_target_compiler TARGET
1302#
1303# Look for a compiler for the given target, either native or cross.
1304# Set variables target_* if a compiler is found, and container_cross_*
1305# if a Docker-based cross-compiler image is known for the target.
1306# Set got_cross_cc to yes/no depending on whether a non-container-based
1307# compiler was found.
1308#
1309# If TARGET is a user-mode emulation target, also set build_static to
1310# "y" if static linking is possible.
1311#
cd362def
PB
1312probe_target_compiler() {
1313 # reset all output variables
92e288fc 1314 got_cross_cc=no
cd362def
PB
1315 container_image=
1316 container_hosts=
1317 container_cross_cc=
87eb014c 1318 container_cross_ar=
cd362def
PB
1319 container_cross_as=
1320 container_cross_ld=
87eb014c
PB
1321 container_cross_nm=
1322 container_cross_objcopy=
1323 container_cross_ranlib=
1324 container_cross_strip=
cd362def 1325
52f08dea
PB
1326 target_arch=${1%%-*}
1327 case $target_arch in
cd362def
PB
1328 aarch64) container_hosts="x86_64 aarch64" ;;
1329 alpha) container_hosts=x86_64 ;;
1330 arm) container_hosts="x86_64 aarch64" ;;
1331 cris) container_hosts=x86_64 ;;
1332 hexagon) container_hosts=x86_64 ;;
1333 hppa) container_hosts=x86_64 ;;
1334 i386) container_hosts=x86_64 ;;
b70ec50b 1335 loongarch64) container_hosts=x86_64 ;;
cd362def
PB
1336 m68k) container_hosts=x86_64 ;;
1337 microblaze) container_hosts=x86_64 ;;
1338 mips64el) container_hosts=x86_64 ;;
1339 mips64) container_hosts=x86_64 ;;
1340 mipsel) container_hosts=x86_64 ;;
1341 mips) container_hosts=x86_64 ;;
1342 nios2) container_hosts=x86_64 ;;
1343 ppc) container_hosts=x86_64 ;;
1344 ppc64|ppc64le) container_hosts=x86_64 ;;
1345 riscv64) container_hosts=x86_64 ;;
1346 s390x) container_hosts=x86_64 ;;
1347 sh4) container_hosts=x86_64 ;;
1348 sparc64) container_hosts=x86_64 ;;
1349 tricore) container_hosts=x86_64 ;;
1350 x86_64) container_hosts="aarch64 ppc64el x86_64" ;;
1351 xtensa*) container_hosts=x86_64 ;;
1352 esac
1353
1354 for host in $container_hosts; do
1355 test "$container" != no || continue
1356 test "$host" = "$cpu" || continue
52f08dea 1357 case $target_arch in
cd362def
PB
1358 aarch64)
1359 # We don't have any bigendian build tools so we only use this for AArch64
1360 container_image=debian-arm64-cross
5adb43be
PB
1361 container_cross_prefix=aarch64-linux-gnu-
1362 container_cross_cc=${container_cross_prefix}gcc-10
cd362def
PB
1363 ;;
1364 alpha)
1365 container_image=debian-alpha-cross
5adb43be 1366 container_cross_prefix=alpha-linux-gnu-
cd362def
PB
1367 ;;
1368 arm)
1369 # We don't have any bigendian build tools so we only use this for ARM
1370 container_image=debian-armhf-cross
5adb43be 1371 container_cross_prefix=arm-linux-gnueabihf-
cd362def
PB
1372 ;;
1373 cris)
1374 container_image=fedora-cris-cross
5adb43be 1375 container_cross_prefix=cris-linux-gnu-
cd362def
PB
1376 ;;
1377 hexagon)
1378 container_image=debian-hexagon-cross
5adb43be
PB
1379 container_cross_prefix=hexagon-unknown-linux-musl-
1380 container_cross_cc=${container_cross_prefix}clang
cd362def
PB
1381 ;;
1382 hppa)
1383 container_image=debian-hppa-cross
5adb43be 1384 container_cross_prefix=hppa-linux-gnu-
cd362def
PB
1385 ;;
1386 i386)
1387 container_image=fedora-i386-cross
5adb43be 1388 container_cross_prefix=
cd362def 1389 ;;
b70ec50b
RH
1390 loongarch64)
1391 container_image=debian-loongarch-cross
1392 container_cross_prefix=loongarch64-unknown-linux-gnu-
1393 ;;
cd362def
PB
1394 m68k)
1395 container_image=debian-m68k-cross
5adb43be 1396 container_cross_prefix=m68k-linux-gnu-
cd362def
PB
1397 ;;
1398 microblaze)
1399 container_image=debian-microblaze-cross
5adb43be 1400 container_cross_prefix=microblaze-linux-musl-
cd362def
PB
1401 ;;
1402 mips64el)
1403 container_image=debian-mips64el-cross
5adb43be 1404 container_cross_prefix=mips64el-linux-gnuabi64-
cd362def
PB
1405 ;;
1406 mips64)
1407 container_image=debian-mips64-cross
5adb43be 1408 container_cross_prefix=mips64-linux-gnuabi64-
cd362def
PB
1409 ;;
1410 mipsel)
1411 container_image=debian-mipsel-cross
5adb43be 1412 container_cross_prefix=mipsel-linux-gnu-
cd362def
PB
1413 ;;
1414 mips)
1415 container_image=debian-mips-cross
5adb43be 1416 container_cross_prefix=mips-linux-gnu-
cd362def
PB
1417 ;;
1418 nios2)
1419 container_image=debian-nios2-cross
5adb43be 1420 container_cross_prefix=nios2-linux-gnu-
cd362def
PB
1421 ;;
1422 ppc)
1423 container_image=debian-powerpc-test-cross
5adb43be
PB
1424 container_cross_prefix=powerpc-linux-gnu-
1425 container_cross_cc=${container_cross_prefix}gcc-10
cd362def
PB
1426 ;;
1427 ppc64|ppc64le)
1428 container_image=debian-powerpc-test-cross
705c881f 1429 container_cross_prefix=powerpc${target_arch#ppc}-linux-gnu-
5adb43be 1430 container_cross_cc=${container_cross_prefix}gcc-10
cd362def
PB
1431 ;;
1432 riscv64)
1433 container_image=debian-riscv64-test-cross
5adb43be 1434 container_cross_prefix=riscv64-linux-gnu-
cd362def
PB
1435 ;;
1436 s390x)
1437 container_image=debian-s390x-cross
5adb43be 1438 container_cross_prefix=s390x-linux-gnu-
cd362def
PB
1439 ;;
1440 sh4)
1441 container_image=debian-sh4-cross
5adb43be 1442 container_cross_prefix=sh4-linux-gnu-
cd362def
PB
1443 ;;
1444 sparc64)
1445 container_image=debian-sparc64-cross
5adb43be 1446 container_cross_prefix=sparc64-linux-gnu-
cd362def
PB
1447 ;;
1448 tricore)
1449 container_image=debian-tricore-cross
5adb43be 1450 container_cross_prefix=tricore-
cd362def
PB
1451 container_cross_as=tricore-as
1452 container_cross_ld=tricore-ld
5adb43be 1453 break
cd362def
PB
1454 ;;
1455 x86_64)
1456 container_image=debian-amd64-cross
5adb43be 1457 container_cross_prefix=x86_64-linux-gnu-
cd362def
PB
1458 ;;
1459 xtensa*)
cd362def
PB
1460 container_hosts=x86_64
1461 container_image=debian-xtensa-cross
1462
1463 # default to the dc232b cpu
5adb43be 1464 container_cross_prefix=/opt/2020.07/xtensa-dc232b-elf/bin/xtensa-dc232b-elf-
cd362def
PB
1465 ;;
1466 esac
5adb43be 1467 : ${container_cross_cc:=${container_cross_prefix}gcc}
87eb014c 1468 : ${container_cross_ar:=${container_cross_prefix}ar}
5adb43be
PB
1469 : ${container_cross_as:=${container_cross_prefix}as}
1470 : ${container_cross_ld:=${container_cross_prefix}ld}
87eb014c
PB
1471 : ${container_cross_nm:=${container_cross_prefix}nm}
1472 : ${container_cross_objcopy:=${container_cross_prefix}objcopy}
1473 : ${container_cross_ranlib:=${container_cross_prefix}ranlib}
1474 : ${container_cross_strip:=${container_cross_prefix}strip}
cd362def
PB
1475 done
1476
92e288fc 1477 try=cross
52f08dea 1478 case "$target_arch:$cpu" in
26e72533
PB
1479 aarch64_be:aarch64 | \
1480 armeb:arm | \
640aabc8 1481 i386:x86_64 | \
26e72533 1482 mips*:mips64 | \
d44f2f96 1483 ppc*:ppc64 | \
26e72533 1484 sparc:sparc64 | \
640aabc8 1485 "$cpu:$cpu")
92e288fc 1486 try='native cross' ;;
640aabc8 1487 esac
92e288fc 1488 eval "target_cflags=\${cross_cc_cflags_$target_arch}"
b3b5472d
PM
1489 for thistry in $try; do
1490 case $thistry in
92e288fc
PB
1491 native)
1492 target_cc=$cc
1493 target_ccas=$ccas
1494 target_ar=$ar
1495 target_as=$as
1496 target_ld=$ld
1497 target_nm=$nm
1498 target_objcopy=$objcopy
1499 target_ranlib=$ranlib
1500 target_strip=$strip
1501 ;;
1502 cross)
1503 target_cc=
1504 if eval test -n "\"\${cross_cc_$target_arch}\""; then
1505 if eval has "\"\${cross_cc_$target_arch}\""; then
1506 eval "target_cc=\"\${cross_cc_$target_arch}\""
1507 fi
1508 else
1509 compute_target_variable $target_arch target_cc gcc
1510 fi
1511 target_ccas=$target_cc
1512 compute_target_variable $target_arch target_ar ar
1513 compute_target_variable $target_arch target_as as
1514 compute_target_variable $target_arch target_ld ld
1515 compute_target_variable $target_arch target_nm nm
1516 compute_target_variable $target_arch target_objcopy objcopy
1517 compute_target_variable $target_arch target_ranlib ranlib
1518 compute_target_variable $target_arch target_strip strip
1519 ;;
1520 esac
1521
1522 if test -n "$target_cc"; then
1523 case $target_arch in
1524 i386|x86_64)
1525 if $target_cc --version | grep -qi "clang"; then
1526 continue
1527 fi
1528 ;;
1529 esac
1530 elif test -n "$target_as" && test -n "$target_ld"; then
1531 # Special handling for assembler only targets
1532 case $target in
1533 tricore-softmmu)
1534 build_static=
1535 got_cross_cc=yes
1536 break
1537 ;;
1538 *)
1539 continue
1540 ;;
1541 esac
1542 else
1543 continue
1544 fi
1545
1546 write_c_skeleton
1547 case $1 in
1548 *-softmmu)
1549 if do_compiler "$target_cc" $target_cflags -o $TMPO -c $TMPC &&
1550 do_compiler "$target_cc" $target_cflags -r -nostdlib -o "${TMPDIR1}/${TMPB}2.o" "$TMPO" -lgcc; then
1551 got_cross_cc=yes
1552 break
1553 fi
1554 ;;
1555 *)
1556 if do_compiler "$target_cc" $target_cflags -o $TMPE $TMPC -static ; then
1557 build_static=y
1558 got_cross_cc=yes
1559 break
1560 fi
1561 if do_compiler "$target_cc" $target_cflags -o $TMPE $TMPC ; then
1562 build_static=
1563 got_cross_cc=yes
1564 break
2ad60f6f
PB
1565 fi
1566 ;;
1567 esac
92e288fc
PB
1568 done
1569 if test $got_cross_cc != yes; then
1570 build_static=
1571 target_cc=
1572 target_ccas=
92e288fc
PB
1573 target_ar=
1574 target_as=
1575 target_ld=
1576 target_nm=
1577 target_objcopy=
1578 target_ranlib=
1579 target_strip=
2ad60f6f 1580 fi
fde10960 1581 test -n "$target_cc"
cd362def
PB
1582}
1583
1584write_target_makefile() {
e81785ab 1585 echo "EXTRA_CFLAGS=$target_cflags"
0825cae0
PB
1586 if test -z "$target_cc" && test -z "$target_as"; then
1587 test -z "$container_image" && error_exit "Internal error: could not find cross compiler for $1?"
1588 echo "$1: docker-image-$container_image" >> Makefile.prereqs
1589 if test -n "$container_cross_cc"; then
1590 echo "CC=$docker_py cc --cc $container_cross_cc -i qemu/$container_image -s $source_path --"
1591 echo "CCAS=$docker_py cc --cc $container_cross_cc -i qemu/$container_image -s $source_path --"
1592 fi
1593 echo "AR=$docker_py cc --cc $container_cross_ar -i qemu/$container_image -s $source_path --"
1594 echo "AS=$docker_py cc --cc $container_cross_as -i qemu/$container_image -s $source_path --"
1595 echo "LD=$docker_py cc --cc $container_cross_ld -i qemu/$container_image -s $source_path --"
1596 echo "NM=$docker_py cc --cc $container_cross_nm -i qemu/$container_image -s $source_path --"
1597 echo "OBJCOPY=$docker_py cc --cc $container_cross_objcopy -i qemu/$container_image -s $source_path --"
1598 echo "RANLIB=$docker_py cc --cc $container_cross_ranlib -i qemu/$container_image -s $source_path --"
1599 echo "STRIP=$docker_py cc --cc $container_cross_strip -i qemu/$container_image -s $source_path --"
1600 else
1601 if test -n "$target_cc"; then
1602 echo "CC=$target_cc"
1603 echo "CCAS=$target_ccas"
1604 fi
1605 if test -n "$target_ar"; then
1606 echo "AR=$target_ar"
1607 fi
1608 if test -n "$target_as"; then
1609 echo "AS=$target_as"
1610 fi
1611 if test -n "$target_ld"; then
1612 echo "LD=$target_ld"
1613 fi
1614 if test -n "$target_nm"; then
1615 echo "NM=$target_nm"
1616 fi
1617 if test -n "$target_objcopy"; then
1618 echo "OBJCOPY=$target_objcopy"
1619 fi
1620 if test -n "$target_ranlib"; then
1621 echo "RANLIB=$target_ranlib"
1622 fi
1623 if test -n "$target_strip"; then
1624 echo "STRIP=$target_strip"
1625 fi
cd362def 1626 fi
cd362def
PB
1627}
1628
55116968
JR
1629##########################################
1630# check for vfio_user_server
1631
1632case "$vfio_user_server" in
1633 enabled )
1634 if test "$git_submodules_action" != "ignore"; then
1635 git_submodules="${git_submodules} subprojects/libvfio-user"
1636 fi
1637 ;;
1638esac
1639
33ab4787
PB
1640#######################################
1641# cross-compiled firmware targets
1642
ad388845
PB
1643# Set up build tree symlinks that point back into the source tree
1644# (these can be both files and directories).
1645# Caution: avoid adding files or directories here using wildcards. This
1646# will result in problems later if a new file matching the wildcard is
1647# added to the source tree -- nothing will cause configure to be rerun
1648# so the build tree will be missing the link back to the new file, and
1649# tests might fail. Prefer to keep the relevant files in their own
1650# directory and symlink the directory instead.
1651LINKS="Makefile"
201aa17e 1652LINKS="$LINKS docs/config"
ad388845
PB
1653LINKS="$LINKS pc-bios/optionrom/Makefile"
1654LINKS="$LINKS pc-bios/s390-ccw/Makefile"
d695918f 1655LINKS="$LINKS pc-bios/vof/Makefile"
ad388845
PB
1656LINKS="$LINKS .gdbinit scripts" # scripts needed by relative path in .gdbinit
1657LINKS="$LINKS tests/avocado tests/data"
1658LINKS="$LINKS tests/qemu-iotests/check"
1659LINKS="$LINKS python"
1660LINKS="$LINKS contrib/plugins/Makefile "
1661for f in $LINKS ; do
1662 if [ -e "$source_path/$f" ]; then
ad388845
PB
1663 symlink "$source_path/$f" "$f"
1664 fi
1665done
1666
b898bf28
PB
1667echo "# Automatically generated by configure - do not modify" > Makefile.prereqs
1668
ca35f780
PB
1669# Mac OS X ships with a broken assembler
1670roms=
35fd22b0
PB
1671if have_target i386-softmmu x86_64-softmmu && \
1672 test "$targetos" != "darwin" && test "$targetos" != "sunos" && \
1673 test "$targetos" != "haiku" && \
61cbb356 1674 probe_target_compiler i386-softmmu; then
7089977a
PB
1675 roms="pc-bios/optionrom"
1676 config_mak=pc-bios/optionrom/config.mak
1677 echo "# Automatically generated by configure - do not modify" > $config_mak
1678 echo "TOPSRC_DIR=$source_path" >> $config_mak
fde10960 1679 write_target_makefile >> $config_mak
ca35f780 1680fi
ca35f780 1681
35fd22b0
PB
1682if have_target ppc-softmmu ppc64-softmmu && \
1683 probe_target_compiler ppc-softmmu; then
76ca98b0 1684 roms="$roms pc-bios/vof"
d695918f
PB
1685 config_mak=pc-bios/vof/config.mak
1686 echo "# Automatically generated by configure - do not modify" > $config_mak
1687 echo "SRC_DIR=$source_path/pc-bios/vof" >> $config_mak
fde10960 1688 write_target_makefile >> $config_mak
d695918f
PB
1689fi
1690
9ffed426
PB
1691# Only build s390-ccw bios if the compiler has -march=z900 or -march=z10
1692# (which is the lowest architecture level that Clang supports)
35fd22b0 1693if have_target s390x-softmmu && probe_target_compiler s390x-softmmu; then
fde10960
AB
1694 write_c_skeleton
1695 do_compiler "$target_cc" $target_cc_cflags -march=z900 -o $TMPO -c $TMPC
1696 has_z900=$?
1697 if [ $has_z900 = 0 ] || do_compiler "$target_cc" $target_cc_cflags -march=z10 -msoft-float -Werror -o $TMPO -c $TMPC; then
1698 if [ $has_z900 != 0 ]; then
1699 echo "WARNING: Your compiler does not support the z900!"
1700 echo " The s390-ccw bios will only work with guest CPUs >= z10."
a5b2afd5 1701 fi
76ca98b0 1702 roms="$roms pc-bios/s390-ccw"
9ffed426
PB
1703 config_mak=pc-bios/s390-ccw/config-host.mak
1704 echo "# Automatically generated by configure - do not modify" > $config_mak
1705 echo "SRC_PATH=$source_path/pc-bios/s390-ccw" >> $config_mak
fde10960 1706 write_target_makefile >> $config_mak
1ef6bfc2
PMD
1707 # SLOF is required for building the s390-ccw firmware on s390x,
1708 # since it is using the libnet code from SLOF for network booting.
2d652f24 1709 git_submodules="${git_submodules} roms/SLOF"
2e33c3f8 1710 fi
9933c305
CB
1711fi
1712
9ffed426
PB
1713#######################################
1714# generate config-host.mak
1715
35a7a6fc 1716if ! (GIT="$git" "$source_path/scripts/git-submodule.sh" "$git_submodules_action" "$git_submodules"); then
7d7dbf9d 1717 exit 1
5d91a2ed 1718fi
5d91a2ed 1719
98ec69ac 1720config_host_mak="config-host.mak"
98ec69ac 1721
98ec69ac 1722echo "# Automatically generated by configure - do not modify" > $config_host_mak
98ec69ac 1723echo >> $config_host_mak
98ec69ac 1724
e6c3b0f7 1725echo all: >> $config_host_mak
cc84d63a 1726echo "GIT=$git" >> $config_host_mak
aef45d51 1727echo "GIT_SUBMODULES=$git_submodules" >> $config_host_mak
7d7dbf9d 1728echo "GIT_SUBMODULES_ACTION=$git_submodules_action" >> $config_host_mak
804edf29 1729
f8393946 1730if test "$debug_tcg" = "yes" ; then
2358a494 1731 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
f8393946 1732fi
67b915a5 1733if test "$mingw32" = "yes" ; then
98ec69ac 1734 echo "CONFIG_WIN32=y" >> $config_host_mak
954ed68f
PB
1735 echo "QEMU_GA_MANUFACTURER=${QEMU_GA_MANUFACTURER-QEMU}" >> $config_host_mak
1736 echo "QEMU_GA_DISTRO=${QEMU_GA_DISTRO-Linux}" >> $config_host_mak
1737 echo "QEMU_GA_VERSION=${QEMU_GA_VERSION-$(cat "$source_path"/VERSION)}" >> $config_host_mak
210fa556 1738else
35f4df27 1739 echo "CONFIG_POSIX=y" >> $config_host_mak
dffcb71c
MM
1740fi
1741
1742if test "$linux" = "yes" ; then
1743 echo "CONFIG_LINUX=y" >> $config_host_mak
67b915a5 1744fi
128ab2ff 1745
83fb7adf 1746if test "$darwin" = "yes" ; then
98ec69ac 1747 echo "CONFIG_DARWIN=y" >> $config_host_mak
83fb7adf 1748fi
b29fe3ed 1749
ec530c81 1750if test "$solaris" = "yes" ; then
98ec69ac 1751 echo "CONFIG_SOLARIS=y" >> $config_host_mak
ec530c81 1752fi
98ec69ac 1753echo "SRC_PATH=$source_path" >> $config_host_mak
2b1f35b9 1754echo "TARGET_DIRS=$target_list" >> $config_host_mak
277abf15 1755
83fb7adf 1756# XXX: suppress that
7d3505c5 1757if [ "$bsd" = "yes" ] ; then
2358a494 1758 echo "CONFIG_BSD=y" >> $config_host_mak
7d3505c5
FB
1759fi
1760
40e8c6f4
AB
1761if test "$plugins" = "yes" ; then
1762 echo "CONFIG_PLUGIN=y" >> $config_host_mak
40e8c6f4
AB
1763fi
1764
b1863ccc
AB
1765if test -n "$gdb_bin"; then
1766 gdb_version=$($gdb_bin --version | head -n 1)
d6a66c81 1767 if version_ge ${gdb_version##* } 9.1; then
b1863ccc 1768 echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
4b424c75 1769 gdb_arches=$($python "$source_path/scripts/probe-gdb-support.py" $gdb_bin)
48543dd7
AB
1770 else
1771 gdb_bin=""
b1863ccc 1772 fi
f48e590a
AB
1773fi
1774
c4575b59
PB
1775if test "$container" != no; then
1776 echo "ENGINE=$container" >> $config_host_mak
60f999b7 1777 echo "RUNC=$runc" >> $config_host_mak
c4575b59 1778fi
98ec69ac 1779echo "ROMS=$roms" >> $config_host_mak
804edf29 1780echo "MAKE=$make" >> $config_host_mak
c886edfb 1781echo "PYTHON=$python" >> $config_host_mak
39d87c8c 1782echo "GENISOIMAGE=$genisoimage" >> $config_host_mak
a5665051 1783echo "MESON=$meson" >> $config_host_mak
09e93326 1784echo "NINJA=$ninja" >> $config_host_mak
877c5567 1785echo "PKG_CONFIG=${pkg_config}" >> $config_host_mak
804edf29 1786echo "CC=$cc" >> $config_host_mak
804edf29 1787echo "EXESUF=$EXESUF" >> $config_host_mak
804edf29 1788
6efd7517
PM
1789# use included Linux headers
1790if test "$linux" = "yes" ; then
a307beb6 1791 mkdir -p linux-headers
6efd7517 1792 case "$cpu" in
4da270be 1793 i386|x86_64)
08312a63 1794 linux_arch=x86
6efd7517 1795 ;;
d8ff892d 1796 ppc|ppc64)
08312a63 1797 linux_arch=powerpc
6efd7517
PM
1798 ;;
1799 s390x)
08312a63
PM
1800 linux_arch=s390
1801 ;;
1f080313
CF
1802 aarch64)
1803 linux_arch=arm64
1804 ;;
dfcf900b
WX
1805 loongarch*)
1806 linux_arch=loongarch
1807 ;;
222e7d11
SL
1808 mips64)
1809 linux_arch=mips
1810 ;;
08312a63
PM
1811 *)
1812 # For most CPUs the kernel architecture name and QEMU CPU name match.
1813 linux_arch="$cpu"
6efd7517
PM
1814 ;;
1815 esac
08312a63
PM
1816 # For non-KVM architectures we will not have asm headers
1817 if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then
1818 symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm
1819 fi
6efd7517
PM
1820fi
1821
1d14ffa9 1822for target in $target_list; do
fdb75aef 1823 target_dir="$target"
57a93f16 1824 target_name=$(echo $target | cut -d '-' -f 1)$EXESUF
64708615 1825 mkdir -p "$target_dir"
fdb75aef
PB
1826 case $target in
1827 *-user) symlink "../qemu-$target_name" "$target_dir/qemu-$target_name" ;;
1828 *) symlink "../qemu-system-$target_name" "$target_dir/qemu-system-$target_name" ;;
1829 esac
1830done
7d13299d 1831
fdb75aef
PB
1832if test "$default_targets" = "yes"; then
1833 echo "CONFIG_DEFAULT_TARGETS=y" >> $config_host_mak
1834fi
a540f158 1835
fd0e6053
JS
1836if test "$ccache_cpp2" = "yes"; then
1837 echo "export CCACHE_CPP2=y" >> $config_host_mak
1838fi
1839
cd362def 1840# tests/tcg configuration
b898bf28 1841(config_host_mak=tests/tcg/config-host.mak
d674342e 1842mkdir -p tests/tcg
cd362def
PB
1843echo "# Automatically generated by configure - do not modify" > $config_host_mak
1844echo "SRC_PATH=$source_path" >> $config_host_mak
1845echo "HOST_CC=$host_cc" >> $config_host_mak
1846
48543dd7
AB
1847# versioned checked in the main config_host.mak above
1848if test -n "$gdb_bin"; then
1849 echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
1850fi
d1d94d96
PB
1851if test "$plugins" = "yes" ; then
1852 echo "CONFIG_PLUGIN=y" >> $config_host_mak
1853fi
48543dd7 1854
cd362def
PB
1855tcg_tests_targets=
1856for target in $target_list; do
1857 arch=${target%%-*}
1858
cd362def 1859 case $target in
c48a5c47
PB
1860 xtensa*-linux-user)
1861 # the toolchain is not complete with headers, only build softmmu tests
1862 continue
1863 ;;
cd362def 1864 *-softmmu)
64708615 1865 test -f "$source_path/tests/tcg/$arch/Makefile.softmmu-target" || continue
cd362def
PB
1866 qemu="qemu-system-$arch"
1867 ;;
1868 *-linux-user|*-bsd-user)
1869 qemu="qemu-$arch"
1870 ;;
1871 esac
1872
fde10960 1873 if probe_target_compiler $target || test -n "$container_image"; then
0825cae0 1874 test -n "$container_image" && build_static=y
d674342e 1875 mkdir -p "tests/tcg/$target"
c7022a70 1876 config_target_mak=tests/tcg/$target/config-target.mak
d674342e 1877 ln -sf "$source_path/tests/tcg/Makefile.target" "tests/tcg/$target/Makefile"
c7022a70
PB
1878 echo "# Automatically generated by configure - do not modify" > "$config_target_mak"
1879 echo "TARGET_NAME=$arch" >> "$config_target_mak"
a3e28f81 1880 echo "TARGET=$target" >> "$config_target_mak"
c7022a70 1881 write_target_makefile "build-tcg-tests-$target" >> "$config_target_mak"
15b273f8 1882 echo "BUILD_STATIC=$build_static" >> "$config_target_mak"
c7022a70 1883 echo "QEMU=$PWD/$qemu" >> "$config_target_mak"
bcbc36a9
AB
1884
1885 # will GDB work with these binaries?
1886 if test "${gdb_arches#*$arch}" != "$gdb_arches"; then
1887 echo "HOST_GDB_SUPPORTS_ARCH=y" >> "$config_target_mak"
1888 fi
1889
b898bf28 1890 echo "run-tcg-tests-$target: $qemu\$(EXESUF)" >> Makefile.prereqs
cd362def
PB
1891 tcg_tests_targets="$tcg_tests_targets $target"
1892 fi
2038f8c8 1893done
c0031d38
FR
1894
1895if test "$tcg" = "enabled"; then
1896 echo "TCG_TESTS_TARGETS=$tcg_tests_targets" >> config-host.mak
1897fi
1898)
2038f8c8 1899
a5665051 1900if test "$skip_meson" = no; then
d77e90fa
PB
1901 cross="config-meson.cross.new"
1902 meson_quote() {
ac7ebcc5 1903 test $# = 0 && return
47b30835 1904 echo "'$(echo $* | sed "s/ /','/g")'"
d77e90fa
PB
1905 }
1906
1907 echo "# Automatically generated by configure - do not modify" > $cross
1908 echo "[properties]" >> $cross
d1d5e9ee
AB
1909
1910 # unroll any custom device configs
11bdcfcd
AB
1911 for a in $device_archs; do
1912 eval "c=\$devices_${a}"
1913 echo "${a}-softmmu = '$c'" >> $cross
1914 done
d1d5e9ee 1915
d77e90fa 1916 echo "[built-in options]" >> $cross
a2866660
PB
1917 echo "c_args = [$(meson_quote $CFLAGS $EXTRA_CFLAGS)]" >> $cross
1918 echo "cpp_args = [$(meson_quote $CXXFLAGS $EXTRA_CXXFLAGS)]" >> $cross
e910c7d9 1919 test -n "$objcc" && echo "objc_args = [$(meson_quote $OBJCFLAGS $EXTRA_OBJCFLAGS)]" >> $cross
a2866660
PB
1920 echo "c_link_args = [$(meson_quote $CFLAGS $LDFLAGS $EXTRA_CFLAGS $EXTRA_LDFLAGS)]" >> $cross
1921 echo "cpp_link_args = [$(meson_quote $CXXFLAGS $LDFLAGS $EXTRA_CXXFLAGS $EXTRA_LDFLAGS)]" >> $cross
d77e90fa 1922 echo "[binaries]" >> $cross
4dba2789
PB
1923 echo "c = [$(meson_quote $cc $CPU_CFLAGS)]" >> $cross
1924 test -n "$cxx" && echo "cpp = [$(meson_quote $cxx $CPU_CFLAGS)]" >> $cross
1925 test -n "$objcc" && echo "objc = [$(meson_quote $objcc $CPU_CFLAGS)]" >> $cross
d77e90fa
PB
1926 echo "ar = [$(meson_quote $ar)]" >> $cross
1927 echo "nm = [$(meson_quote $nm)]" >> $cross
877c5567 1928 echo "pkgconfig = [$(meson_quote $pkg_config)]" >> $cross
d77e90fa
PB
1929 echo "ranlib = [$(meson_quote $ranlib)]" >> $cross
1930 if has $sdl2_config; then
1931 echo "sdl2-config = [$(meson_quote $sdl2_config)]" >> $cross
1932 fi
1933 echo "strip = [$(meson_quote $strip)]" >> $cross
158bb224 1934 echo "widl = [$(meson_quote $widl)]" >> $cross
d77e90fa 1935 echo "windres = [$(meson_quote $windres)]" >> $cross
f9f0e617 1936 echo "windmc = [$(meson_quote $windmc)]" >> $cross
d77e90fa 1937 if test "$cross_compile" = "yes"; then
fc929892 1938 cross_arg="--cross-file config-meson.cross"
fc929892 1939 echo "[host_machine]" >> $cross
ba7c60c2 1940 echo "system = '$targetos'" >> $cross
823eb013 1941 case "$cpu" in
f6bca9df 1942 i386)
fc929892
MAL
1943 echo "cpu_family = 'x86'" >> $cross
1944 ;;
fc929892 1945 *)
823eb013 1946 echo "cpu_family = '$cpu'" >> $cross
fc929892
MAL
1947 ;;
1948 esac
1949 echo "cpu = '$cpu'" >> $cross
1950 if test "$bigendian" = "yes" ; then
1951 echo "endian = 'big'" >> $cross
1952 else
1953 echo "endian = 'little'" >> $cross
1954 fi
d77e90fa 1955 else
fc929892 1956 cross_arg="--native-file config-meson.cross"
d77e90fa
PB
1957 fi
1958 mv $cross config-meson.cross
fc929892 1959
d77e90fa 1960 rm -rf meson-private meson-info meson-logs
0a31e3a0 1961
5a347a73
MAL
1962 # Prevent meson from automatically downloading wrapped subprojects when missing.
1963 # You can use 'meson subprojects download' before running configure.
1964 meson_option_add "--wrap-mode=nodownload"
1965
0a31e3a0
PB
1966 # Built-in options
1967 test "$bindir" != "bin" && meson_option_add "-Dbindir=$bindir"
1968 test "$default_feature" = no && meson_option_add -Dauto_features=disabled
a0cbd2e8 1969 test "$static" = yes && meson_option_add -Dprefer_static=true
0a31e3a0
PB
1970 test "$pie" = no && meson_option_add -Db_pie=false
1971 test "$werror" = yes && meson_option_add -Dwerror=true
1972
1973 # QEMU options
0a31e3a0 1974 test "$cfi" != false && meson_option_add "-Dcfi=$cfi"
6b0cedcd 1975 test "$docs" != auto && meson_option_add "-Ddocs=$docs"
0a31e3a0
PB
1976 test "$fdt" != auto && meson_option_add "-Dfdt=$fdt"
1977 test -n "${LIB_FUZZING_ENGINE+xxx}" && meson_option_add "-Dfuzzing_engine=$LIB_FUZZING_ENGINE"
1978 test "$qemu_suffix" != qemu && meson_option_add "-Dqemu_suffix=$qemu_suffix"
0a31e3a0
PB
1979 test "$smbd" != '' && meson_option_add "-Dsmbd=$smbd"
1980 test "$tcg" != enabled && meson_option_add "-Dtcg=$tcg"
55116968 1981 test "$vfio_user_server" != auto && meson_option_add "-Dvfio_user_server=$vfio_user_server"
61d63097 1982 run_meson() {
0a31e3a0 1983 NINJA=$ninja $meson setup --prefix "$prefix" "$@" $cross_arg "$PWD" "$source_path"
61d63097
PB
1984 }
1985 eval run_meson $meson_options
d77e90fa
PB
1986 if test "$?" -ne 0 ; then
1987 error_exit "meson setup failed"
1988 fi
973038db
PB
1989else
1990 if test -f meson-private/cmd_line.txt; then
1991 # Adjust old command line options that were removed
1992 # sed -i is not portable
1993 perl -i -ne '
1994 /^sphinx_build/ && next;
1995 print;' meson-private/cmd_line.txt
1996 fi
a5665051
PB
1997fi
1998
dc655404
MT
1999# Save the configure command line for later reuse.
2000cat <<EOD >config.status
2001#!/bin/sh
2002# Generated by configure.
2003# Run this file to recreate the current configuration.
2004# Compiler output produced by configure, useful for debugging
2005# configure, is in config.log if it exists.
2006EOD
e811da7f
DB
2007
2008preserve_env() {
2009 envname=$1
2010
2011 eval envval=\$$envname
2012
2013 if test -n "$envval"
2014 then
2015 echo "$envname='$envval'" >> config.status
2016 echo "export $envname" >> config.status
2017 else
2018 echo "unset $envname" >> config.status
2019 fi
2020}
2021
2022# Preserve various env variables that influence what
2023# features/build target configure will detect
2024preserve_env AR
2025preserve_env AS
2026preserve_env CC
8009da03 2027preserve_env CFLAGS
e811da7f 2028preserve_env CXX
8009da03 2029preserve_env CXXFLAGS
e811da7f 2030preserve_env LD
8009da03 2031preserve_env LDFLAGS
e811da7f 2032preserve_env LD_LIBRARY_PATH
e811da7f
DB
2033preserve_env MAKE
2034preserve_env NM
b5569e5b 2035preserve_env OBJCFLAGS
e811da7f
DB
2036preserve_env OBJCOPY
2037preserve_env PATH
2038preserve_env PKG_CONFIG
2039preserve_env PKG_CONFIG_LIBDIR
2040preserve_env PKG_CONFIG_PATH
2041preserve_env PYTHON
954ed68f
PB
2042preserve_env QEMU_GA_MANUFACTURER
2043preserve_env QEMU_GA_DISTRO
2044preserve_env QEMU_GA_VERSION
e811da7f
DB
2045preserve_env SDL2_CONFIG
2046preserve_env SMBD
2047preserve_env STRIP
158bb224 2048preserve_env WIDL
e811da7f 2049preserve_env WINDRES
f9f0e617 2050preserve_env WINDMC
e811da7f 2051
dc655404 2052printf "exec" >>config.status
a5665051 2053for i in "$0" "$@"; do
835af899 2054 test "$i" = --skip-meson || printf " %s" "$(quote_sh "$i")" >>config.status
a5665051 2055done
cf7cc929 2056echo ' "$@"' >>config.status
dc655404
MT
2057chmod +x config.status
2058
8cd05ab6 2059rm -r "$TMPDIR1"