Add where-clause generic params to `default_generics` map
[ldk-c-bindings] / genbindings.sh
1 #!/usr/bin/env bash
2
3 set -e
4 set -x
5
6 if [ ! -d "$1/lightning" -o "$2" != "true" -a "$2" != "false" ]; then
7         echo "USAGE: $0 path-to-rust-lightning allow-std"
8         echo "allow-std must be either 'true' or 'false' to indicate if we should be built relying on time and pthread support"
9         exit 1
10 fi
11
12 export LC_ALL=C
13
14 # On reasonable systems, we can use realpath here, but OSX is a diva with 20-year-old software.
15 ORIG_PWD="$(pwd)"
16 cd "$1"
17 LIGHTNING_PATH="$(pwd)"
18 LIGHTNING_GIT="$(git describe --tag --dirty --abbrev=16)"
19 cd "$ORIG_PWD"
20
21 # Generate (and reasonably test) C bindings
22
23 # First we set various compiler flags...
24 HOST_PLATFORM="$(rustc --version --verbose | grep "host:" | awk '{ print $2 }')"
25 ENV_TARGET=$(echo $HOST_PLATFORM | sed 's/-/_/g')
26
27 # Set path to include our rustc wrapper as well as cbindgen
28 export LDK_RUSTC_PATH="$(which rustc)"
29 export RUSTC="$(pwd)/deterministic-build-wrappers/rustc"
30 PATH="$PATH:~/.cargo/bin"
31
32 # Set up CFLAGS and RUSTFLAGS vars appropriately for building libsecp256k1 and demo apps...
33 BASE_CFLAGS="" # CFLAGS for libsecp256k1
34 LOCAL_CFLAGS="" # CFLAGS for demo apps
35
36 # Remap paths so that our builds are deterministic
37 BASE_RUSTFLAGS="--cfg=c_bindings --remap-path-prefix $LIGHTNING_PATH=rust-lightning --remap-path-prefix $(pwd)=ldk-c-bindings --remap-path-prefix $HOME/.cargo="
38
39 # If the C compiler supports it, also set -ffile-prefix-map
40 echo "int main() {}" > genbindings_path_map_test_file.c
41 clang -o /dev/null -ffile-prefix-map=$HOME/.cargo= genbindings_path_map_test_file.c > /dev/null 2>&1 &&
42 export BASE_CFLAGS="-ffile-prefix-map=$HOME/.cargo="
43
44 BASE_CFLAGS="$BASE_CFLAGS -frandom-seed=42"
45 LOCAL_CFLAGS="-Wall -Wno-nullability-completeness -pthread -Iinclude/"
46
47 HOST_OSX=false
48 if [ "$HOST_PLATFORM" = "x86_64-apple-darwin" ]; then
49         HOST_OSX=true
50 elif [ "$HOST_PLATFORM" = "aarch64-apple-darwin" ]; then
51         HOST_OSX=true
52 fi
53
54 BASE_HOST_CFLAGS="$BASE_CFLAGS"
55
56 if [ "$HOST_OSX" = "true" ]; then
57         export MACOSX_DEPLOYMENT_TARGET=10.9
58         LOCAL_CFLAGS="$LOCAL_CFLAGS --target=$HOST_PLATFORM -isysroot$(xcrun --show-sdk-path) -mmacosx-version-min=10.9"
59         BASE_HOST_CFLAGS="$BASE_HOST_CFLAGS --target=$HOST_PLATFORM -isysroot$(xcrun --show-sdk-path) -mmacosx-version-min=10.9"
60         # Targeting aarch64 appears to be supported only starting with Big Sur, so check it before use
61         clang -o /dev/null $BASE_HOST_CFLAGS --target=aarch64-apple-darwin -mcpu=apple-a14 genbindings_path_map_test_file.c &&
62         export CFLAGS_aarch64_apple_darwin="$BASE_HOST_CFLAGS --target=aarch64-apple-darwin -mcpu=apple-a14" ||
63         echo "WARNING: Can not build targeting aarch64-apple-darin. Upgrade to Big Sur or try upstream clang"
64 fi
65
66 rm genbindings_path_map_test_file.c
67
68 case "$ENV_TARGET" in
69         "x86_64"*)
70                 export RUSTFLAGS="$BASE_RUSTFLAGS -C target-cpu=sandybridge"
71                 export CFLAGS_$ENV_TARGET="$BASE_HOST_CFLAGS -march=sandybridge -mcpu=sandybridge -mtune=sandybridge"
72                 ;;
73         "aarch64_apple_darwin")
74                 export RUSTFLAGS="$BASE_RUSTFLAGS -C target-cpu=apple-a14"
75                 export CFLAGS_$ENV_TARGET="$BASE_HOST_CFLAGS -mcpu=apple-a14"
76                 ;;
77         *)
78                 # Assume this isn't targeted at another host and build for the host's CPU.
79                 export RUSTFLAGS="$BASE_RUSTFLAGS -C target-cpu=native"
80                 export CFLAGS_$ENV_TARGET="$BASE_HOST_CFLAGS -mcpu=native"
81                 ;;
82 esac
83
84 # First build the latest c-bindings-gen binary
85 cd c-bindings-gen && cargo build --release && cd ..
86
87 # Then wipe all the existing C bindings (because we're being run in the right directory)
88 # note that we keep the few manually-generated files first:
89 mv lightning-c-bindings/src/c_types/mod.rs ./
90 mv lightning-c-bindings/src/bitcoin ./
91
92 # Before we try to sed the Cargo.toml, generate version define tags
93 # (ignoring any files that we're about to generate)
94
95 git checkout lightning-c-bindings/src
96 git checkout lightning-c-bindings/include
97 BINDINGS_GIT="$(git describe --tag --dirty --abbrev=16)"
98 echo "$(cat <<EOF
99 #ifndef _LDK_HEADER_VER
100 static inline int _ldk_strncmp(const char *s1, const char *s2, uint64_t n) {
101         if (n && *s1 != *s2) return 1;
102         while (n && *s1 != 0 && *s2 != 0) {
103                 s1++; s2++; n--;
104                 if (n && *s1 != *s2) return 1;
105         }
106         return 0;
107 }
108
109 #define _LDK_HEADER_VER "${LIGHTNING_GIT}"
110 #define _LDK_C_BINDINGS_HEADER_VER "${BINDINGS_GIT}"
111 static inline const char* check_get_ldk_version() {
112         LDKStr bin_ver = _ldk_get_compiled_version();
113         if (_ldk_strncmp(_LDK_HEADER_VER, (const char*)bin_ver.chars, bin_ver.len) != 0) {
114         // Version mismatch, we don't know what we're running!
115                 return 0;
116         }
117         return _LDK_HEADER_VER;
118 }
119 static inline const char* check_get_ldk_bindings_version() {
120         LDKStr bin_ver = _ldk_c_bindings_get_compiled_version();
121         if (_ldk_strncmp(_LDK_C_BINDINGS_HEADER_VER, (const char*)bin_ver.chars, bin_ver.len) != 0) {
122         // Version mismatch, we don't know what we're running!
123                 return 0;
124         }
125         return _LDK_C_BINDINGS_HEADER_VER;
126 }
127 #endif /* _LDK_HEADER_VER */
128 EOF
129 )" > lightning-c-bindings/include/ldk_ver.h
130
131 rm -rf lightning-c-bindings/src
132
133 mkdir -p lightning-c-bindings/src/{c_types,lightning}
134 mv ./mod.rs lightning-c-bindings/src/c_types/
135 mv ./bitcoin lightning-c-bindings/src/
136
137 # Finally, run the c-bindings-gen binary, building fresh bindings.
138 OUT="$(pwd)/lightning-c-bindings/src"
139 OUT_TEMPL="$(pwd)/lightning-c-bindings/src/c_types/derived.rs"
140 OUT_F="$(pwd)/lightning-c-bindings/include/ldk_rust_types.h"
141 OUT_CPP="$(pwd)/lightning-c-bindings/include/lightningpp.hpp"
142 BIN="$(pwd)/c-bindings-gen/target/release/c-bindings-gen"
143
144 function is_gnu_sed(){
145   sed --version >/dev/null 2>&1
146 }
147
148 function add_crate() {
149         pushd "$LIGHTNING_PATH/$1"
150         RUSTC_BOOTSTRAP=1 cargo rustc --profile=check --no-default-features $3 -- --cfg=c_bindings -Zunpretty=expanded > /tmp/$1-crate-source.txt
151         popd
152         if [ "$HOST_OSX" = "true" ]; then
153                 sed -i".original" "1i\\
154 pub mod $2 {
155 " /tmp/$1-crate-source.txt
156         else
157                 sed -i "1ipub mod $2 {\n" /tmp/$1-crate-source.txt
158         fi
159         echo "}" >> /tmp/$1-crate-source.txt
160         cat /tmp/$1-crate-source.txt >> /tmp/crate-source.txt
161         rm /tmp/$1-crate-source.txt
162         if is_gnu_sed; then
163                 sed -E -i 's|#*'$1' = \{ .*|'$1' = \{ path = "'"$LIGHTNING_PATH"'/'$1'", default-features = false }|' lightning-c-bindings/Cargo.toml
164         else
165                 # OSX sed is for some reason not compatible with GNU sed
166                 sed -E -i '' 's|#*'$1' = \{ .*|'$1' = \{ path = "'"$LIGHTNING_PATH"'/'$1'", default-features = false }|' lightning-c-bindings/Cargo.toml
167         fi
168 }
169
170 function drop_crate() {
171         if is_gnu_sed; then
172                 sed -E -i 's|'$1' = \{ (.*)|#'$1' = \{ \1|' lightning-c-bindings/Cargo.toml
173         else
174                 # OSX sed is for some reason not compatible with GNU sed
175                 sed -E -i '' 's|'$1' = \{ (.*)|#'$1' = \{ \1|' lightning-c-bindings/Cargo.toml
176         fi
177 }
178
179 echo > /tmp/crate-source.txt
180 if [ "$2" = "true" ]; then
181         add_crate lightning lightning --features=std
182         add_crate "lightning-persister" "lightning_persister"
183         add_crate "lightning-background-processor" "lightning_background_processor"
184         add_crate "lightning-invoice" "lightning_invoice" --features=std
185         CARGO_BUILD_ARGS="--features=std"
186 else
187         add_crate lightning lightning --features=no-std
188         drop_crate "lightning-persister"
189         drop_crate "lightning-background-processor"
190         add_crate "lightning-invoice" "lightning_invoice" --features=no-std
191         CARGO_BUILD_ARGS="--features=no-std"
192 fi
193
194 cat /tmp/crate-source.txt | RUST_BACKTRACE=1 "$BIN" "$OUT/" "$OUT_TEMPL" "$OUT_F" "$OUT_CPP"
195
196 echo "$(cat <<EOF
197 #[no_mangle]
198 pub extern "C" fn _ldk_get_compiled_version() -> crate::c_types::Str {
199         "${LIGHTNING_GIT}".into()
200 }
201 #[no_mangle]
202 pub extern "C" fn _ldk_c_bindings_get_compiled_version() -> crate::c_types::Str {
203         "${BINDINGS_GIT}".into()
204 }
205 EOF
206 )" >> lightning-c-bindings/src/version.rs
207
208 # Now cd to lightning-c-bindings, build the generated bindings, and call cbindgen to build a C header file
209 cd lightning-c-bindings
210
211 RUSTFLAGS="$RUSTFLAGS --cfg=test_mod_pointers" cargo build $CARGO_BUILD_ARGS
212 if [ "$CFLAGS_aarch64_apple_darwin" != "" ]; then
213         RUSTFLAGS="$BASE_RUSTFLAGS -C target-cpu=apple-a14" cargo build $CARGO_BUILD_ARGS --target aarch64-apple-darwin
214 fi
215 cbindgen -v --config cbindgen.toml -o include/lightning.h >/dev/null 2>&1
216
217 # cbindgen is relatively braindead when exporting typedefs -
218 # it happily exports all our typedefs for private types, even with the
219 # generics we specified in C mode! So we drop all those types manually here.
220 if is_gnu_sed; then
221         sed -i 's/typedef LDKnative.*Import.*LDKnative.*;//g' include/lightning.h
222
223         # stdlib.h doesn't exist in clang's wasm sysroot, and cbindgen
224         # doesn't actually use it anyway, so drop the import.
225         sed -i 's/#include <stdlib.h>/#include "ldk_rust_types.h"/g' include/lightning.h
226 else
227         # OSX sed is for some reason not compatible with GNU sed
228         sed -i '' 's/typedef LDKnative.*Import.*LDKnative.*;//g' include/lightning.h
229
230         # stdlib.h doesn't exist in clang's wasm sysroot, and cbindgen
231         # doesn't actually use it anyway, so drop the import.
232         sed -i '' 's/#include <stdlib.h>/#include "ldk_rust_types.h"/g' include/lightning.h
233 fi
234
235 # Build C++ class methods which call trait methods
236 echo "Updating C++ header, this may take some time, especially on macOS"
237 set +x # Echoing every command is very verbose here
238 OLD_IFS="$IFS"
239 export IFS=''
240 echo '#include <string.h>' > include/lightningpp_new.hpp
241 echo 'namespace LDK {' >> include/lightningpp_new.hpp
242 echo '// Forward declarations' >> include/lightningpp_new.hpp
243 cat include/lightningpp.hpp | sed -n 's/class \(.*\) {/class \1;/p' >> include/lightningpp_new.hpp
244 echo '' >> include/lightningpp_new.hpp
245
246 DECLS=""
247 while read LINE; do
248         case "$LINE" in
249                 "#include <string.h>")
250                         # We already printed this above.
251                         ;;
252                 "namespace LDK {")
253                         # We already printed this above.
254                         ;;
255                 "}")
256                         # We'll print this at the end
257                         ;;
258                 "XXX"*)
259                         NEW_STRUCT_NAME="$(echo "$LINE" | awk '{ print $2 }')"
260                         if [ "$NEW_STRUCT_NAME" != "$STRUCT_NAME" ]; then
261                                 STRUCT_CONTENTS="$(cat include/lightning.h  | sed -n -e "/struct LDK$NEW_STRUCT_NAME/{:s" -e "/\} LDK$NEW_STRUCT_NAME;/!{N" -e "b s" -e "}" -e p -e "}")"
262                         fi
263                         STRUCT_NAME="$NEW_STRUCT_NAME"
264                         METHOD_NAME="$(echo "$LINE" | awk '{ print $3 }')"
265                         METHOD="$(echo "$STRUCT_CONTENTS" | grep "(\*$METHOD_NAME)")"
266                         if [ "$METHOD" = "" ]; then
267                                 echo "Unable to find method declaration for $LINE"
268                                 exit 1
269                         fi
270                         RETVAL="$(echo "$METHOD" | sed 's/[ ]*\([A-Za-z0-9 _]*\)(\*\(.*\)).*/\1/' | sed 's/^struct LDK/LDK::/g' | tr -d ' ')"
271                         [ "$RETVAL" = "LDK::SecretKey" ] && RETVAL="LDKSecretKey"
272                         [ "$RETVAL" = "LDK::PublicKey" ] && RETVAL="LDKPublicKey"
273                         [ "$RETVAL" = "LDK::ThirtyTwoBytes" ] && RETVAL="LDKThirtyTwoBytes"
274                         PARAMS="$(echo "$METHOD" | sed 's/.*(\*.*)(\(const \)*void \*this_arg\(, \)*\(.*\));/\3/')"
275
276                         echo -e "\tinline $RETVAL $METHOD_NAME($PARAMS);" >> include/lightningpp_new.hpp
277                         DECLS="$DECLS"$'\n'"inline $RETVAL $STRUCT_NAME::$METHOD_NAME($PARAMS) {"
278
279                         DECLS="$DECLS"$'\n'$'\t'
280                         [ "$RETVAL" != "void" ] && DECLS="$DECLS$RETVAL ret = "
281                         DECLS="$DECLS(self.$METHOD_NAME)(self.this_arg"
282
283                         IFS=','; for PARAM in $PARAMS; do
284                                 DECLS="$DECLS, "
285                                 DECLS="$DECLS$(echo $PARAM | sed 's/.* (*\**\([a-zA-Z0-9_]*\)\()[\[0-9\]*]\)*/\1/')"
286                         done
287                         IFS=''
288
289                         DECLS="$DECLS);"
290                         [ "$RETVAL" != "void" ] && DECLS="$DECLS"$'\n'$'\t'"return ret;"
291                         DECLS="$DECLS"$'\n'"}"
292                         ;;
293                 *)
294                         echo "$LINE" >> include/lightningpp_new.hpp
295         esac
296 done < include/lightningpp.hpp
297 echo "$DECLS" >> include/lightningpp_new.hpp
298 echo "}" >> include/lightningpp_new.hpp
299 export IFS="$OLD_IFS"
300 set -x
301 mv include/lightningpp_new.hpp include/lightningpp.hpp
302
303 # Finally, sanity-check the generated C and C++ bindings with demo apps:
304 # Naively run the C demo app:
305 gcc $LOCAL_CFLAGS -Wall -g -pthread demo.c target/debug/libldk.a -ldl -lm
306 ./a.out
307
308 # And run the C++ demo app
309 if [ "$2" = "true" ]; then
310         g++ $LOCAL_CFLAGS -std=c++11 -Wall -g -pthread demo.cpp -Ltarget/debug/ -lldk -ldl
311         LD_LIBRARY_PATH=target/debug/ ./a.out > /dev/null
312 fi
313
314 # Finally, run the C++ demo app with our native networking library
315 # in valgrind to test memory model correctness and lack of leaks.
316 gcc $LOCAL_CFLAGS -fPIC -std=c99 -Wall -g -pthread -I../ldk-net ../ldk-net/ldk_net.c -c -o ldk_net.o
317 if [ "$2" = "true" ]; then
318         g++ $LOCAL_CFLAGS -std=c++11 -Wall -g -pthread -DREAL_NET -I../ldk-net ldk_net.o demo.cpp target/debug/libldk.a -ldl -lm
319         if [ -x "`which valgrind`" -a "$(uname -m)" != "ppc64le" ]; then
320                 valgrind --error-exitcode=4 --memcheck:leak-check=full --show-leak-kinds=all ./a.out
321                 echo
322         else
323                 echo "WARNING: Please install valgrind for more testing"
324                 ./a.out
325         fi
326 fi
327
328
329 # Test a statically-linked C++ version, tracking the resulting binary size and runtime
330 # across debug, LTO, and cross-language LTO builds (using the same compiler each time).
331 if [ "$2" = "true" ]; then
332         clang++ $LOCAL_CFLAGS -std=c++11 demo.cpp target/debug/libldk.a -ldl
333         strip ./a.out
334         echo " C++ Bin size and runtime w/o optimization:"
335         ls -lha a.out
336         time ./a.out > /dev/null
337 fi
338
339 # Then, check with memory sanitizer, if we're on Linux and have rustc nightly
340 if [ "$HOST_PLATFORM" = "x86_64-unknown-linux-gnu" ]; then
341         if cargo +nightly --version >/dev/null 2>&1; then
342                 LLVM_V=$(rustc +nightly --version --verbose | grep "LLVM version" | awk '{ print substr($3, 0, 2); }')
343                 if [ -x "$(which clang-$LLVM_V)" ]; then
344                         cargo +nightly clean
345                         cargo +nightly rustc $CARGO_BUILD_ARGS -Zbuild-std=std,panic_abort --target x86_64-unknown-linux-gnu -v -- -Zsanitizer=memory -Zsanitizer-memory-track-origins -Cforce-frame-pointers=yes
346                         mv target/x86_64-unknown-linux-gnu/debug/libldk.* target/debug/
347
348                         # Sadly, std doesn't seem to compile into something that is memsan-safe as of Aug 2020,
349                         # so we'll always fail, not to mention we may be linking against git rustc LLVM which
350                         # may differ from clang-llvm, so just allow everything here to fail.
351                         set +e
352
353                         # First the C demo app...
354                         clang-$LLVM_V $LOCAL_CFLAGS -fsanitize=memory -fsanitize-memory-track-origins -g demo.c target/debug/libldk.a -ldl
355                         ./a.out
356
357                         if [ "$2" = "true" ]; then
358                                 # ...then the C++ demo app
359                                 clang++-$LLVM_V $LOCAL_CFLAGS -std=c++11 -fsanitize=memory -fsanitize-memory-track-origins -g demo.cpp target/debug/libldk.a -ldl
360                                 ./a.out >/dev/null
361
362                                 # ...then the C++ demo app with the ldk_net network implementation
363                                 clang-$LLVM_V $LOCAL_CFLAGS -std=c99 -fsanitize=memory -fsanitize-memory-track-origins -g -I../ldk-net ../ldk-net/ldk_net.c -c -o ldk_net.o
364                                 clang++-$LLVM_V $LOCAL_CFLAGS -std=c++11 -fsanitize=memory -fsanitize-memory-track-origins -g -DREAL_NET -I../ldk-net ldk_net.o demo.cpp target/debug/libldk.a -ldl
365                                 ./a.out >/dev/null
366                         fi
367
368                         # restore exit-on-failure
369                         set -e
370                 else
371                         echo "WARNING: Can't use memory sanitizer without clang-$LLVM_V"
372                 fi
373         else
374                 echo "WARNING: Can't use memory sanitizer without rustc nightly"
375         fi
376 else
377         echo "WARNING: Can't use memory sanitizer on non-Linux, non-x86 platforms"
378 fi
379
380 RUSTC_LLVM_V=$(rustc --version --verbose | grep "LLVM version" | awk '{ print substr($3, 0, 2); }')
381
382 if [ "$HOST_OSX" = "true" ]; then
383         # Apple is special, as always, and their versions of clang aren't
384         # compatible with upstream LLVM.
385         if [ "$(clang --version | grep 'Apple clang')" != "" ]; then
386                 echo "Apple clang isn't compatible with upstream clang, install upstream clang"
387                 CLANG_LLVM_V="0"
388         else
389                 CLANG_LLVM_V=$(clang --version | head -n1 | awk '{ print substr($3, 0, 2); }')
390                 if [ -x "$(which ld64.lld)" ]; then
391                         LLD_LLVM_V="$(ld64.lld --version | awk '{ print substr($2, 0, 2); }')"
392                 fi
393         fi
394 else
395         CLANG_LLVM_V=$(clang --version | head -n1 | awk '{ print substr($4, 0, 2); }')
396         if [ -x "$(which ld.lld)" ]; then
397                 LLD_LLVM_V="$(ld.lld --version | awk '{ print $2; }')"
398                 if [ "$LLD_LLVM_V" = "LLD" ]; then # eg if the output is "Debian LLD ..."
399                         LLD_LLVM_V="$(ld.lld --version | awk '{ print substr($3, 0, 2); }')"
400                 else
401                         LLD_LLVM_V="$(ld.lld --version | awk '{ print substr($2, 0, 2); }')"
402                 fi
403         fi
404 fi
405
406
407 if [ "$CLANG_LLVM_V" = "$RUSTC_LLVM_V" ]; then
408         CLANG=clang
409         CLANGPP=clang++
410         if [ "$LLD_LLVM_V" = "$CLANG_LLVM_V" ]; then
411                 LLD=lld
412         fi
413 elif [ -x "$(which clang-$RUSTC_LLVM_V)" ]; then
414         CLANG="$(which clang-$RUSTC_LLVM_V)"
415         CLANGPP="$(which clang++-$RUSTC_LLVM_V || echo clang++)"
416         if [ "$($CLANG --version)" != "$($CLANGPP --version)" ]; then
417                 echo "$CLANG and $CLANGPP are not the same version of clang!"
418                 unset CLANG
419                 unset CLANGPP
420         fi
421         if [ "$LLD_LLVM_V" != "$RUSTC_LLVM_V" ]; then
422                 LLD="lld"
423                 [ -x "$(which lld-$RUSTC_LLVM_V)" ] && LLD="lld-$RUSTC_LLVM_V"
424                 LLD_LLVM_V="$(ld.lld-$RUSTC_LLVM_V --version | awk '{ print $2; }')"
425                 if [ "$LLD_LLVM_V" = "LLD" ]; then # eg if the output is "Debian LLD ..."
426                         LLD_LLVM_V="$(ld.lld-$RUSTC_LLVM_V --version | awk '{ print substr($3, 0, 2); }')"
427                 else
428                         LLD_LLVM_V="$(ld.lld-$RUSTC_LLVM_V --version | awk '{ print substr($2, 0, 2); }')"
429                 fi
430                 if [ "$LLD_LLVM_V" != "$RUSTC_LLVM_V" ]; then
431                         echo "Could not find a workable version of lld, not using cross-language LTO"
432                         unset LLD
433                 fi
434         fi
435 fi
436
437 if [ "$CLANG" != "" -a "$CLANGPP" = "" ]; then
438         echo "WARNING: It appears you have a clang-$RUSTC_LLVM_V but not clang++-$RUSTC_LLVM_V. This is common, but leaves us unable to compile C++ with LLVM $RUSTC_LLVM_V"
439         echo "You should create a symlink called clang++-$RUSTC_LLVM_V pointing to $CLANG in $(dirname $CLANG)"
440 fi
441
442 # Finally, if we're on OSX or on Linux, build the final debug binary with address sanitizer (and leave it there)
443 if [ "$HOST_PLATFORM" = "x86_64-unknown-linux-gnu" -o "$HOST_PLATFORM" = "x86_64-apple-darwin" ]; then
444         if [ "$CLANGPP" != "" ]; then
445                 if is_gnu_sed; then
446                         sed -i.bk 's/,"cdylib"]/]/g' Cargo.toml
447                 else
448                         # OSX sed is for some reason not compatible with GNU sed
449                         sed -i .bk 's/,"cdylib"]/]/g' Cargo.toml
450                 fi
451
452                 if [ "$CFLAGS_aarch64_apple_darwin" != "" ]; then
453                         RUSTFLAGS="$BASE_RUSTFLAGS -C target-cpu=apple-a14" RUSTC_BOOTSTRAP=1 cargo rustc $CARGO_BUILD_ARGS --target aarch64-apple-darwin -v -- -Zsanitizer=address -Cforce-frame-pointers=yes || ( mv Cargo.toml.bk Cargo.toml; exit 1)
454                 fi
455                 RUSTFLAGS="$RUSTFLAGS --cfg=test_mod_pointers" RUSTC_BOOTSTRAP=1 cargo rustc $CARGO_BUILD_ARGS -v -- -Zsanitizer=address -Cforce-frame-pointers=yes || ( mv Cargo.toml.bk Cargo.toml; exit 1)
456                 mv Cargo.toml.bk Cargo.toml
457
458                 # First the C demo app...
459                 $CLANG $LOCAL_CFLAGS -fsanitize=address -g demo.c target/debug/libldk.a -ldl
460                 ASAN_OPTIONS='detect_leaks=1 detect_invalid_pointer_pairs=1 detect_stack_use_after_return=1' ./a.out
461
462                 if [ "$2" = "true" ]; then
463                         # ...then the C++ demo app
464                         $CLANGPP $LOCAL_CFLAGS -std=c++11 -fsanitize=address -g demo.cpp target/debug/libldk.a -ldl
465                         ASAN_OPTIONS='detect_leaks=1 detect_invalid_pointer_pairs=1 detect_stack_use_after_return=1' ./a.out >/dev/null
466
467                         # ...then the C++ demo app with the ldk_net network implementation
468                         $CLANG $LOCAL_CFLAGS -fPIC -fsanitize=address -g -I../ldk-net ../ldk-net/ldk_net.c -c -o ldk_net.o
469                         $CLANGPP $LOCAL_CFLAGS -std=c++11 -fsanitize=address -g -DREAL_NET -I../ldk-net ldk_net.o demo.cpp target/debug/libldk.a -ldl
470                         ASAN_OPTIONS='detect_leaks=1 detect_invalid_pointer_pairs=1 detect_stack_use_after_return=1' ./a.out >/dev/null
471                 fi
472         else
473                 echo "WARNING: Please install clang-$RUSTC_LLVM_V and clang++-$RUSTC_LLVM_V to build with address sanitizer"
474         fi
475 else
476         echo "WARNING: Can't use address sanitizer on non-Linux, non-OSX non-x86 platforms"
477 fi
478
479 # Now build with LTO on on both C++ and rust, but without cross-language LTO:
480 # Clear stale release build artifacts from previous runs
481 cargo clean --release
482 CARGO_PROFILE_RELEASE_LTO=true RUSTFLAGS="$RUSTFLAGS -C embed-bitcode=yes -C lto" cargo build $CARGO_BUILD_ARGS -v --release
483 if [ "$2" = "true" ]; then
484         clang++ $LOCAL_CFLAGS -std=c++11 -O2 demo.cpp target/release/libldk.a -ldl
485 fi
486
487 strip ./a.out
488 echo "C++ Bin size and runtime with only RL (LTO) optimized:"
489 ls -lha a.out
490 time ./a.out > /dev/null
491
492 if [ "$CLANGPP" != "" ]; then
493         # If we can use cross-language LTO, use it for building C dependencies (i.e. libsecp256k1) as well
494         export CC="$CLANG"
495         # The cc-rs crate tries to force -fdata-sections and -ffunction-sections on, which
496         # breaks -fembed-bitcode, so we turn off cc-rs' default flags and specify exactly
497         # what we want here.
498         export CFLAGS_$ENV_TARGET="$BASE_HOST_CFLAGS -fPIC -fembed-bitcode -march=sandybridge -mcpu=sandybridge -mtune=sandybridge"
499         export CRATE_CC_NO_DEFAULTS=true
500 fi
501
502 if [ "$2" = "false" -a "$(rustc --print target-list | grep wasm32-wasi)" != "" ]; then
503         # Test to see if clang supports wasm32 as a target (which is needed to build rust-secp256k1)
504         echo "int main() {}" > genbindings_wasm_test_file.c
505         if clang -nostdlib -o /dev/null --target=wasm32-wasi -Wl,--no-entry genbindings_wasm_test_file.c > /dev/null 2>&1; then
506                 # And if it does, build a WASM binary without capturing errors
507                 export CFLAGS_wasm32_wasi="$BASE_CFLAGS -target wasm32 -O1"
508                 RUSTFLAGS="$BASE_RUSTFLAGS -C opt-level=1 --cfg=test_mod_pointers" cargo build $CARGO_BUILD_ARGS -v --target=wasm32-wasi
509                 export CFLAGS_wasm32_wasi="$BASE_CFLAGS -fembed-bitcode -target wasm32 -Oz"
510                 RUSTFLAGS="$BASE_RUSTFLAGS -C embed-bitcode=yes -C opt-level=z -C linker-plugin-lto -C lto" CARGO_PROFILE_RELEASE_LTO=true cargo build $CARGO_BUILD_ARGS -v --release --target=wasm32-wasi
511         else
512                 echo "Cannot build WASM lib as clang does not seem to support the wasm32-wasi target"
513         fi
514         rm genbindings_wasm_test_file.c
515 fi
516
517 EXTRA_TARGETS=( $LDK_C_BINDINGS_EXTRA_TARGETS )
518 EXTRA_CCS=( $LDK_C_BINDINGS_EXTRA_TARGET_CCS )
519
520 if [ ${#EXTRA_TARGETS[@]} != ${#EXTRA_CCS[@]} ]; then
521         echo "LDK_C_BINDINGS_EXTRA_TARGETS and LDK_C_BINDINGS_EXTRA_TARGET_CCS didn't have the same number of elements!"
522         exit 1
523 fi
524
525 for IDX in ${!EXTRA_TARGETS[@]}; do
526         EXTRA_ENV_TARGET=$(echo "${EXTRA_TARGETS[$IDX]}" | sed 's/-/_/g')
527         export CFLAGS_$EXTRA_ENV_TARGET="$BASE_CFLAGS"
528         export CC_$EXTRA_ENV_TARGET=${EXTRA_CCS[$IDX]}
529         RUSTFLAGS="$BASE_RUSTFLAGS -C embed-bitcode=yes -C lto -C linker=${EXTRA_CCS[$IDX]}" CARGO_PROFILE_RELEASE_LTO=true cargo build $CARGO_BUILD_ARGS -v --release --target "${EXTRA_TARGETS[$IDX]}"
530 done
531
532 if [ "$CLANGPP" != "" -a "$LLD" != "" ]; then
533         # Finally, test cross-language LTO. Note that this will fail if rustc and clang++
534         # build against different versions of LLVM (eg when rustc is installed via rustup
535         # or Ubuntu packages). This should work fine on Distros which do more involved
536         # packaging than simply shipping the rustup binaries (eg Debian should Just Work
537         # here).
538         LINK_ARG_FLAGS="-C link-arg=-fuse-ld=$LLD"
539         if [ "$HOST_OSX" = "true" ]; then
540                 export LDK_CLANG_PATH=$(which $CLANG)
541                 export CLANG="$(pwd)/../deterministic-build-wrappers/clang-lto-link-osx"
542                 for ARG in "CFLAGS_aarch64_apple_darwin"; do
543                         MANUAL_LINK_CFLAGS="$MANUAL_LINK_CFLAGS -C link-arg=$ARG"
544                 done
545                 export CFLAGS_aarch64_apple_darwin="$CFLAGS_aarch64_apple_darwin -O3 -fPIC -fembed-bitcode"
546                 LINK_ARG_FLAGS="$LINK_ARG_FLAGS -C link-arg="-isysroot$(xcrun --show-sdk-path)" -C link-arg=-mmacosx-version-min=10.9"
547                 RUSTFLAGS="$BASE_RUSTFLAGS -C target-cpu=apple-a14 -C embed-bitcode=yes -C linker-plugin-lto -C lto -C linker=$CLANG $LINK_ARG_FLAGS -C link-arg=-mcpu=apple-a14" CARGO_PROFILE_RELEASE_LTO=true cargo build $CARGO_BUILD_ARGS -v --release --target aarch64-apple-darwin
548         fi
549         # If we're on an M1 don't bother building X86 binaries
550         if [ "$HOST_PLATFORM" != "aarch64-apple-darwin" ]; then
551                 export CFLAGS_$ENV_TARGET="$BASE_HOST_CFLAGS -O3 -fPIC -fembed-bitcode -march=sandybridge -mcpu=sandybridge -mtune=sandybridge"
552                 # Rust doesn't recognize CFLAGS changes, so we need to clean build artifacts
553                 cargo clean --release
554                 CARGO_PROFILE_RELEASE_LTO=true RUSTFLAGS="$RUSTFLAGS -C embed-bitcode=yes -C linker-plugin-lto -C lto -C linker=$CLANG $LINK_ARG_FLAGS -C link-arg=-march=sandybridge -C link-arg=-mcpu=sandybridge -C link-arg=-mtune=sandybridge" cargo build $CARGO_BUILD_ARGS -v --release
555
556                 if [ "$2" = "true" ]; then
557                         $CLANGPP $LOCAL_CFLAGS -flto -fuse-ld=$LLD -O2 demo.cpp target/release/libldk.a -ldl
558                         strip ./a.out
559                         echo "C++ Bin size and runtime with cross-language LTO:"
560                         ls -lha a.out
561                         time ./a.out > /dev/null
562                 fi
563         fi
564 else
565         if [ "$CFLAGS_aarch64_apple_darwin" != "" ]; then
566                 RUSTFLAGS="$BASE_RUSTFLAGS -C embed-bitcode=yes -C lto -C target-cpu=apple-a14" CARGO_PROFILE_RELEASE_LTO=true cargo build $CARGO_BUILD_ARGS -v --release --target aarch64-apple-darwin
567         fi
568         echo "WARNING: Building with cross-language LTO is not avilable without clang-$RUSTC_LLVM_V"
569 fi