bpo-40280: Add wasm cross build targets (GH-29771)

This commit is contained in:
Christian Heimes 2021-11-25 22:24:40 +02:00 committed by GitHub
parent dfcc6ff36f
commit 1052a39b76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 24 additions and 4 deletions

View file

@ -0,0 +1,3 @@
``configure`` now accepts machine ``wasm32`` or ``wasm64`` and OS ``wasi``
or ``emscripten`` for cross building, e.g. ``wasm32-unknown-emscripten``,
``wasm32-wasi``, or ``wasm32-unknown-wasi``.

16
configure vendored
View file

@ -3717,6 +3717,12 @@ then
*-*-vxworks*)
ac_sys_system=VxWorks
;;
*-*-emscripten)
ac_sys_system=Emscripten
;;
*-*-wasi)
ac_sys_system=WASI
;;
*)
# for now, limit cross builds to known configurations
MACHDEP="unknown"
@ -3767,6 +3773,9 @@ if test "$cross_compiling" = yes; then
*-*-vxworks*)
_host_cpu=$host_cpu
;;
wasm32-*-* | wasm64-*-*)
_host_cpu=$host_cpu
;;
*)
# for now, limit cross builds to known configurations
MACHDEP="unknown"
@ -10382,6 +10391,9 @@ fi
# Dynamic linking for HP-UX
have_uuid=missing
for ac_header in uuid.h
@ -10414,10 +10426,6 @@ fi
done
if test "x$have_uuid" = xmissing; then :

View file

@ -465,6 +465,12 @@ then
*-*-vxworks*)
ac_sys_system=VxWorks
;;
*-*-emscripten)
ac_sys_system=Emscripten
;;
*-*-wasi)
ac_sys_system=WASI
;;
*)
# for now, limit cross builds to known configurations
MACHDEP="unknown"
@ -514,6 +520,9 @@ if test "$cross_compiling" = yes; then
*-*-vxworks*)
_host_cpu=$host_cpu
;;
wasm32-*-* | wasm64-*-*)
_host_cpu=$host_cpu
;;
*)
# for now, limit cross builds to known configurations
MACHDEP="unknown"