Skip to content

Commit b84a1e2

Browse files
committed
debug failures
1 parent 86e6124 commit b84a1e2

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/actions/install-wasi-sdk-wabt/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ runs:
3636
sudo wget -O wabt.tar.gz https://github.com/WebAssembly/wabt/releases/download/1.0.37/wabt-1.0.37-ubuntu-20.04.tar.gz
3737
sudo tar -xf wabt.tar.gz
3838
sudo ln -sf wabt-1.0.37 wabt
39+
/opt/wasi-sdk/bin/clang --version
40+
/opt/wabt/bin/wasm-interp --version
3941
echo "::notice::wasi-sdk-25 and wabt-1.0.37 installed on Ubuntu"
4042
working-directory: /opt
4143

@@ -49,6 +51,8 @@ runs:
4951
sudo wget -O wabt.tar.gz https://github.com/WebAssembly/wabt/releases/download/1.0.37/wabt-1.0.37-macos-14.tar.gz
5052
sudo tar -xf wabt.tar.gz
5153
sudo ln -sf wabt-1.0.37 wabt
54+
/opt/wasi-sdk/bin/clang --version
55+
/opt/wabt/bin/wasm-interp --version
5256
echo "::notice::wasi-sdk-25 and wabt-1.0.37 installed on MacOS"
5357
working-directory: /opt
5458

samples/wasm-c-api/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
cmake_minimum_required (VERSION 3.14)
55

6+
include(CMakePrintHelpers)
67
include(CheckPIESupported)
78

89
if (NOT WAMR_BUILD_PLATFORM STREQUAL "windows")
@@ -121,6 +122,7 @@ if(NOT WAT2WASM)
121122
else ()
122123
execute_process(COMMAND ${WAT2WASM} --version
123124
OUTPUT_VARIABLE WAT2WASM_VERSION_OUTPUT)
125+
cmake_print_variables(WAT2WASM_VERSION_OUTPUT)
124126
string(STRIP ${WAT2WASM_VERSION_OUTPUT} WAT2WASM_VERSION)
125127
message("-- Found wat2wasm ${WAT2WASM_VERSION}")
126128
endif()

0 commit comments

Comments
 (0)