From 8b9706b98aaf026f9cbef44ef5d0b150f38fac6c Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Thu, 12 Jan 2023 18:56:52 -0800 Subject: [PATCH] threads: change `wasm32-wasi-pthread` to `wasm32-wasi-threads` (#381) * 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. * fix: rename the `expected` output directory as well --- Makefile | 2 +- .../defined-symbols.txt | 0 .../{wasm32-wasi-pthread => wasm32-wasi-threads}/include-all.c | 0 .../predefined-macros.txt | 0 .../undefined-symbols.txt | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename expected/{wasm32-wasi-pthread => wasm32-wasi-threads}/defined-symbols.txt (100%) rename expected/{wasm32-wasi-pthread => wasm32-wasi-threads}/include-all.c (100%) rename expected/{wasm32-wasi-pthread => wasm32-wasi-threads}/predefined-macros.txt (100%) rename expected/{wasm32-wasi-pthread => wasm32-wasi-threads}/undefined-symbols.txt (100%) diff --git a/Makefile b/Makefile index 21b91e0..57975a7 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 diff --git a/expected/wasm32-wasi-pthread/defined-symbols.txt b/expected/wasm32-wasi-threads/defined-symbols.txt similarity index 100% rename from expected/wasm32-wasi-pthread/defined-symbols.txt rename to expected/wasm32-wasi-threads/defined-symbols.txt diff --git a/expected/wasm32-wasi-pthread/include-all.c b/expected/wasm32-wasi-threads/include-all.c similarity index 100% rename from expected/wasm32-wasi-pthread/include-all.c rename to expected/wasm32-wasi-threads/include-all.c diff --git a/expected/wasm32-wasi-pthread/predefined-macros.txt b/expected/wasm32-wasi-threads/predefined-macros.txt similarity index 100% rename from expected/wasm32-wasi-pthread/predefined-macros.txt rename to expected/wasm32-wasi-threads/predefined-macros.txt diff --git a/expected/wasm32-wasi-pthread/undefined-symbols.txt b/expected/wasm32-wasi-threads/undefined-symbols.txt similarity index 100% rename from expected/wasm32-wasi-pthread/undefined-symbols.txt rename to expected/wasm32-wasi-threads/undefined-symbols.txt -- 2.39.2