summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorYuta Saito <kateinoigakukun@gmail.com>2022-01-19 15:14:02 +0900
committerYuta Saito <kateinoigakukun@gmail.com>2022-12-21 11:19:23 +0900
commitafd46429fcdb83aa9fa7c193ede40bff3f3ff151 (patch)
tree5517fd16783fcfcb69089f559e25b7a7ba9cea7b /tool
parent2b96119fc00a49813c169d811e43a49ba9833f5f (diff)
tool/m4/ruby_wasm_tools.m4: force passing WASI_SDK_PATH when building for wasi
Make the WASI_SDK_PATH variable mandatory when building for wasi host. This requirement prevents developers from being stuck due to unfriendly configuration's error message.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5464
Diffstat (limited to 'tool')
-rw-r--r--tool/m4/ruby_wasm_tools.m413
1 files changed, 8 insertions, 5 deletions
diff --git a/tool/m4/ruby_wasm_tools.m4 b/tool/m4/ruby_wasm_tools.m4
index d58de88ec8..a6d8c34ebc 100644
--- a/tool/m4/ruby_wasm_tools.m4
+++ b/tool/m4/ruby_wasm_tools.m4
@@ -10,12 +10,15 @@ AC_DEFUN([RUBY_WASM_TOOLS],
: ${wasmoptflags=-O3}
AC_MSG_CHECKING([wheather \$WASI_SDK_PATH is set])
- AS_IF([test x"${WASI_SDK_PATH}" = x], [AC_MSG_RESULT([no])], [
+ AS_IF([test x"${WASI_SDK_PATH}" = x], [
+ AC_MSG_RESULT([no])
+ AC_MSG_ERROR([WASI_SDK_PATH environment variable is required])
+ ], [
AC_MSG_RESULT([yes])
- CC="${WASI_SDK_PATH}/bin/clang"
- LD="${WASI_SDK_PATH}/bin/clang"
- AR="${WASI_SDK_PATH}/bin/llvm-ar"
- RANLIB="${WASI_SDK_PATH}/bin/llvm-ranlib"
+ CC="${CC:-${WASI_SDK_PATH}/bin/clang}"
+ LD="${LD:-${WASI_SDK_PATH}/bin/clang}"
+ AR="${AR:-${WASI_SDK_PATH}/bin/llvm-ar}"
+ RANLIB="${RANLIB:-${WASI_SDK_PATH}/bin/llvm-ranlib}"
])
])
])dnl