From: Matt Corallo Date: Thu, 22 Apr 2021 02:33:35 +0000 (+0000) Subject: Only (attempt to) build for wasm32 when we're building nostd X-Git-Tag: v0.0.98~13^2~1 X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-c-bindings;a=commitdiff_plain;h=ef46cb1ace8cbea503488436e0c3aa2df349e382 Only (attempt to) build for wasm32 when we're building nostd --- 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 &&