summaryrefslogtreecommitdiffstats
path: root/Tools/wasm/wasi.py
Commit message (Collapse)AuthorAgeFilesLines
* GH-127652: stop using `--wasi preview2` in `wasi.py` (GH-127704)Brett Cannon2024-12-061-2/+0
| | | It's only to use WASI 0.2 code to back preview1 APIs and is considered experimental anyway.
* GH-123877: default to `wasm32-wasip1` instead of `wasm32-wasi` to be more ↵Brett Cannon2024-11-071-1/+1
| | | | | | | | | 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>
* GH-121634: have `wasi.py` accept the host target triple as an argument ↵Brett Cannon2024-08-151-6/+12
| | | | (GH-123030)
* GH-121521: Detect when wasmtime is not installed in `Tools/wasm/wasi.py` ↵Brett Cannon2024-07-091-6/+18
| | | | (GH-121522)
* gh-120507: Double WASI memory (#120648)Victor Stinner2024-06-171-3/+2
| | | | Use 16 MiB stack with 40 MiB memory limit, instead of 8 MiB stack with 20 MiB memory limit.
* GH-116313: get WASI builds to run under wasmtime 18 w/ WASI 0.2/preview2 ↵Brett Cannon2024-03-051-2/+4
| | | | | | | | | primitives (#116327) * GH-116313: get WASI builds to run under wasmtime 18 w/ WASI 0.2/preview2 primitives * Add the configure changes * Update `wasm_build.py`
* GH-113516: don't set `LDSHARED` when building for WASI (GH-115495)Brett Cannon2024-02-151-1/+1
|
* Fix `wasi.py build` after adding the `clean` subcommand. ({GH-114447)Brett Cannon2024-01-221-1/+2
|
* Add a `clean` subcommand to `Tools/wasm/wasi.py` (GH-114274)Brett Cannon2024-01-191-7/+24
|
* GH-114013: fix setting `HOSTRUNNER` for `Tools/wasm/wasi.py` (GH-114097)Brett Cannon2024-01-161-6/+5
| | | Also fix tests found failing under a pydebug build of WASI thanks to `make test` working due to this change.
* GH-103065, GH-106704, GH-105253: Provide a `Tools/wasm/wasi.py` script to ↵Brett Cannon2023-11-301-0/+328
simplify doing a WASI build (GH-112473)