File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
.github/actions/install-wasi-sdk-wabt Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change 33
44cmake_minimum_required (VERSION 3.14)
55
6+ include (CMakePrintHelpers)
67include (CheckPIESupported)
78
89if (NOT WAMR_BUILD_PLATFORM STREQUAL "windows" )
@@ -121,6 +122,7 @@ if(NOT WAT2WASM)
121122else ()
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} " )
126128endif ()
You can’t perform that action at this time.
0 commit comments