From ef46cb1ace8cbea503488436e0c3aa2df349e382 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 22 Apr 2021 02:33:35 +0000 Subject: [PATCH] Only (attempt to) build for wasm32 when we're building nostd --- genbindings.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/genbindings.sh b/genbindings.sh index a5c6bc1..7a87631 100755 --- a/genbindings.sh +++ b/genbindings.sh @@ -247,7 +247,7 @@ if [ "$HOST_PLATFORM" != "host: x86_64-apple-darwin" -a "$CLANGPP" != "" ]; then export CFLAGS_wasm32_wasi="-target wasm32" fi -if [ "$(rustc --print target-list | grep wasm32-wasi)" != "" ]; then +if [ "$2" = "false" -a "$(rustc --print target-list | grep wasm32-wasi)" != "" ]; then # Test to see if clang supports wasm32 as a target (which is needed to build rust-secp256k1) echo "int main() {}" > genbindings_wasm_test_file.c clang -nostdlib -o /dev/null --target=wasm32-wasi -Wl,--no-entry genbindings_wasm_test_file.c > /dev/null 2>&1 && -- 2.30.2