Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 247bfeb

Browse files
committedAug 1, 2022
Only build thread-capable wasi-libc on latest version of Clang
1 parent 83a80a7 commit 247bfeb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎.github/workflows/main.yml

+4
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ jobs:
6767
path: sysroot
6868

6969
- name: Build libc + threads
70+
# Only build the thread-capable wasi-libc in the latest supported Clang
71+
# version; the earliest version does not have all necessary builtins
72+
# (e.g., `__builtin_wasm_memory_atomic_notify`).
73+
if: matrix.clang_version != '10.0.0'
7074
shell: bash
7175
run: make -j4 THREAD_MODEL=posix
7276

0 commit comments

Comments
 (0)
Please sign in to comment.