X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=genbindings.sh;h=253b8aad94abb4ba912df8f0ce3a0db85d37c685;hb=a03df6d0b6fe9ac98099b45061d354635f8b5477;hp=e2a6ca7c75ec107ae403709410504ced37738932;hpb=8a709046243b9ddd72dc51dcc1164eb49f6b3a42;p=ldk-java diff --git a/genbindings.sh b/genbindings.sh index e2a6ca7c..253b8aad 100755 --- a/genbindings.sh +++ b/genbindings.sh @@ -29,7 +29,7 @@ if [ "$3" = "leaks" ]; then fi cp "$1/lightning-c-bindings/include/lightning.h" ./ -if [ "$(rustc --version --verbose | grep "host:")" = "host: x86_64-apple-darwin" ]; then +if [ "$(rustc --version --verbose | grep "host:")" = "host: x86_64-apple-darwin" ] || [ "$(rustc --version --verbose | grep "host:")" = "host: aarch64-apple-darwin" ]; then # OSX sed is for some reason not compatible with GNU sed sed -i '' "s/TransactionOutputs/C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ/g" ./lightning.h else @@ -60,6 +60,7 @@ if [ "$2" != "wasm" ]; then LDK_JAR_TARGET=true ;; "aarch64-apple-darwin"*) + LDK_TARGET_CPU="apple-a14" LDK_TARGET_SUFFIX="_MacOSX-aarch64" LDK_JAR_TARGET=true ;; @@ -70,7 +71,7 @@ if [ "$2" != "wasm" ]; then LDK_TARGET_CPU="sandybridge" fi - if [ "$(rustc --version --verbose | grep "host:")" = "host: x86_64-apple-darwin" ]; then + if [ "$(rustc --version --verbose | grep "host:")" = "host: x86_64-apple-darwin" ] || [ "$(rustc --version --verbose | grep "host:")" = "host: aarch64-apple-darwin" ]; then # OSX sed is for some reason not compatible with GNU sed sed -i '' "s/^ .*<\/version>/ ${LDK_GARBAGECOLLECTED_GIT_OVERRIDE:1:100}<\/version>/g" pom.xml else