Skip to content

Commit 2c49440

Browse files
committed
Another fix for CI
Surely if I keep making commits that say "another fix" eventually I'll run out of fixes. Surely, right? I'd put this in limerick form to be more amusing if someone comes to read this but I'm not clever enough to do that, so instead I'll just abruptly
1 parent 4cbcce3 commit 2c49440

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/main.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ jobs:
178178
-DCMAKE_C_COMPILER=/usr/lib/llvm-18/bin/clang \
179179
-DCMAKE_SYSTEM_NAME=WASI \
180180
-DWASI_SDK_INCLUDE_TESTS=ON \
181-
-DCMAKE_C_LINKER_DEPFILE_SUPPORTED=OFF
181+
-DCMAKE_C_LINKER_DEPFILE_SUPPORTED=OFF \
182+
-DCMAKE_CXX_LINKER_DEPFILE_SUPPORTED=OFF
182183
- run: ninja -C build
183184
- run: ctest --output-on-failure --parallel 10 --test-dir build/tests
184185

cmake/wasi-sdk-sysroot.cmake

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ set(default_cmake_args
5252
# is just a bare "clang" installation then it can mistakenly deduce that this
5353
# feature is supported when it's not actually supported for WASI targets.
5454
# Currently `wasm-ld` does not support the linker flag for this.
55-
-DCMAKE_C_LINKER_DEPFILE_SUPPORTED=OFF)
55+
-DCMAKE_C_LINKER_DEPFILE_SUPPORTED=OFF
56+
-DCMAKE_CXX_LINKER_DEPFILE_SUPPORTED=OFF)
5657

5758
if(CMAKE_C_COMPILER_LAUNCHER)
5859
list(APPEND default_cmake_args -DCMAKE_C_COMPILER_LAUNCHER=${CMAKE_C_COMPILER_LAUNCHER})

0 commit comments

Comments
 (0)