mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
GH-123877: default to wasm32-wasip1
instead of wasm32-wasi
to be more specific (GH-126552)
Eventually wasm32-wasi will represent WASI 1.0, and so it's currently deprecated so it can be used for that eventual purpose. wasm32-wasip1 is also more specific to what version of WASI is currently supported. --------- Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
This commit is contained in:
parent
1f777396f5
commit
bbe9b21d06
5 changed files with 12 additions and 9 deletions
|
@ -346,7 +346,7 @@ def main():
|
|||
"(default designed for wasmtime 14 or newer: "
|
||||
f"`{default_host_runner}`)")
|
||||
for subcommand in build, configure_host, make_host:
|
||||
subcommand.add_argument("--host-triple", action="store", default="wasm32-wasi",
|
||||
subcommand.add_argument("--host-triple", action="store", default="wasm32-wasip1",
|
||||
help="The target triple for the WASI host build")
|
||||
|
||||
context = parser.parse_args()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue