From 2b4a7eedd0804f49ebbe53cfb046015fff6053e3 Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Tue, 8 Aug 2023 23:24:07 +0100 Subject: Wasm: Wire the Wasm language module up to the build system. This allows to configure the Wasm module, e.g ./configure wasm --include-path=/path/to/wasmtime-v11.0.0-x86_64-linux-c-api/include --lib-path=/path/to/wasmtime-v11.0.0-x86_64-linux-c-api/lib --rpath --rpath as above says to set the rpath to the value of --lib-path. You can alternatively specify a directory to use as the rpath. Or simply omit the option to not have an rpath set. This is mostly useful for during development where you may not have the Wasmtime stuff installed to system directories or you want to test with newer/different versions. See ./configure wasm --help for a full list of options. Reviewed-by: Alejandro Colomar Signed-off-by: Andrew Clayton --- auto/help | 3 +++ 1 file changed, 3 insertions(+) (limited to 'auto/help') diff --git a/auto/help b/auto/help index f2307e9c..f3c42661 100644 --- a/auto/help +++ b/auto/help @@ -75,4 +75,7 @@ cat << END java OPTIONS configure Java module run "./configure java --help" to see available options + wasm OPTIONS configure WebAssembly module + run "./configure wasm --help" to see available options + END -- cgit