Skip to content

Commit 52536f2

Browse files
Fix cmake_build_type typo (#382)
* Fix cmake_build_type typo * fix abort.c test failed due to wasmtime version mismatch on CI
1 parent bd96bf0 commit 52536f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: |
4444
curl -f -L --retry 5 https://wasmtime.dev/install.sh | bash -s -- --version dev
4545
~/.wasmtime/bin/wasmtime --version
46-
curl -f -L --retry 5 -o ~/.wasmtime/bin/wasi_snapshot_preview1.command.wasm https://github.com/bytecodealliance/wasmtime/releases/download/v16.0.0/wasi_snapshot_preview1.command.wasm
46+
curl -f -L --retry 5 -o ~/.wasmtime/bin/wasi_snapshot_preview1.command.wasm https://github.com/bytecodealliance/wasmtime/releases/download/dev/wasi_snapshot_preview1.command.wasm
4747
if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then
4848
curl -f -OL --retry 5 https://github.com/bytecodealliance/wasm-tools/releases/download/wasm-tools-1.0.54/wasm-tools-1.0.54-x86_64-linux.tar.gz
4949
tar xf wasm-tools-1.0.54-x86_64-linux.tar.gz

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ LIBCXX_CMAKE_FLAGS = \
178178
-DLIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY:BOOL=OFF \
179179
-DLIBCXX_HAS_WIN32_THREAD_API:BOOL=OFF \
180180
-DLLVM_COMPILER_CHECKED=ON \
181-
-DCMAKE_BUILD_TYPE=RelWithDebugInfo \
181+
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
182182
-DLIBCXX_ENABLE_SHARED:BOOL=$(2) \
183183
-DLIBCXX_ENABLE_EXPERIMENTAL_LIBRARY:BOOL=OFF \
184184
-DLIBCXX_ENABLE_EXCEPTIONS:BOOL=OFF \

0 commit comments

Comments
 (0)