From bd4bb0fdb1b5ac16129086aa534fae4092240280 Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Wed, 11 Jan 2023 15:00:24 -0800 Subject: [PATCH] Change `wasm32-wasi-pthread` to `wasm32-wasi-threads` After some thought, I think that we should rename the `THREAD_MODEL=posix` build to avoid confusion. Why? Though in this project the use of this target does involve pthreads, it will not be so in other standard libraries or languages (see, e.g., https://github.com/rust-lang/compiler-team/issues/574). I think it would be preferable to emphasize the "threads" Wasm-level proposal and the "wasi-threads" proposal rather than the specific details of which threading API is being exposed. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 27f6760f9..b4239fe2f 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ TARGET_TRIPLE = wasm32-wasi # Threaded version necessitates a different traget, as objects from different # targets can't be mixed together while linking. ifeq ($(THREAD_MODEL), posix) -TARGET_TRIPLE = wasm32-wasi-pthread +TARGET_TRIPLE = wasm32-wasi-threads endif # These variables describe the locations of various files and directories in