Skip to content

Commit 9e07e3c

Browse files
committed
[bindings] Build a wasm32-wasi library in genbindings.sh
This will switch to use the clang/C WASM ABI instead of the wasm_bindgen WASM ABI as of rustc 1.51 (or nightly since [1]), allowing us to link C and Rust code in a single wasm binary. [1] rust-lang/rust#79998
1 parent 143c7a8 commit 9e07e3c

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

genbindings.sh

+11
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,16 @@ HOST_PLATFORM="$(rustc --version --verbose | grep "host:")"
4444
if [ "$HOST_PLATFORM" = "host: x86_64-apple-darwin" ]; then
4545
# OSX sed is for some reason not compatible with GNU sed
4646
sed -i '' 's/typedef LDKnative.*Import.*LDKnative.*;//g' include/lightning.h
47+
48+
# stdlib.h doesn't exist in clang's wasm sysroot, and cbindgen
49+
# doesn't actually use it anyway, so drop the import.
50+
sed -i 's/#include <stdlib.h>//g' include/lightning.h
4751
else
4852
sed -i 's/typedef LDKnative.*Import.*LDKnative.*;//g' include/lightning.h
53+
54+
# stdlib.h doesn't exist in clang's wasm sysroot, and cbindgen
55+
# doesn't actually use it anyway, so drop the import.
56+
sed -i 's/#include <stdlib.h>//g' include/lightning.h
4957
fi
5058

5159
# Finally, sanity-check the generated C and C++ bindings with demo apps:
@@ -171,6 +179,9 @@ else
171179
echo "WARNING: Can't use address sanitizer on non-Linux, non-OSX non-x86 platforms"
172180
fi
173181

182+
cargo rustc -v --target=wasm32-wasi -- -C embed-bitcode=yes || echo "WARNING: Failed to generate WASM LLVM-bitcode-embedded library"
183+
CARGO_PROFILE_RELEASE_LTO=true cargo rustc -v --release --target=wasm32-wasi -- -C opt-level=s -C linker-plugin-lto -C lto || echo "WARNING: Failed to generate WASM LLVM-bitcode-embedded optimized library"
184+
174185
# Now build with LTO on on both C++ and rust, but without cross-language LTO:
175186
CARGO_PROFILE_RELEASE_LTO=true cargo rustc -v --release -- -C lto
176187
clang++ $CFLAGS -std=c++11 -flto -O2 demo.cpp target/release/libldk.a -ldl

lightning-c-bindings/Cargo.toml

+7
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ lightning = { version = "0.0.12", path = "../lightning" }
2323
# Rust-Secp256k1 PR 279. Should be dropped once merged.
2424
secp256k1 = { git = 'https://github.com/TheBlueMatt/rust-secp256k1', rev = '15a0d4195a20355f6b1e8f54c84eba56abc15cbd' }
2525

26+
# Always force panic=abort, further options are set in the genbindings.sh build script
27+
[profile.dev]
28+
panic = "abort"
29+
30+
[profile.release]
31+
panic = "abort"
32+
2633
# We eventually want to join the root workspace, but for now, the bindings generation is
2734
# a bit brittle and we don't want to hold up other developers from making changes just
2835
# because they break the bindings

lightning-c-bindings/include/lightning.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include <stdarg.h>
88
#include <stdbool.h>
99
#include <stdint.h>
10-
#include <stdlib.h>
10+
1111

1212
/**
1313
* An error when accessing the chain via [`Access`].

0 commit comments

Comments
 (0)