From dcd81024b5625086a2a9caa2d2f76fd5467213fc Mon Sep 17 00:00:00 2001 From: Cassandra Heart Date: Sun, 26 Jan 2025 02:05:47 -0600 Subject: [PATCH 1/2] remove library includes on mpfr/gmp --- node/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/build.sh b/node/build.sh index b60d02c..1a490e9 100755 --- a/node/build.sh +++ b/node/build.sh @@ -19,7 +19,7 @@ case "$os_type" in # Check if the architecture is ARM if [[ "$(uname -m)" == "arm64" ]]; then # MacOS ld doesn't support -Bstatic and -Bdynamic, so it's important that there is only a static version of the library - go build -ldflags "-linkmode 'external' -extldflags '-L$BINARIES_DIR -L/opt/homebrew/Cellar/mpfr/4.2.1/lib -I/opt/homebrew/Cellar/mpfr/4.2.1/include -L/opt/homebrew/Cellar/gmp/6.3.0/lib -I/opt/homebrew/Cellar/gmp/6.3.0/include -lbls48581 -lvdf -ldl -lm -lflint -lgmp -lmpfr'" "$@" + go build -ldflags "-linkmode 'external' -extldflags '-L$BINARIES_DIR -lbls48581 -lvdf -ldl -lm -lflint -lgmp -lmpfr'" "$@" else echo "Unsupported platform" exit 1 From cbfb3ede87b1989320931870599b1ca6ed49883c Mon Sep 17 00:00:00 2001 From: Cassandra Heart Date: Sun, 26 Jan 2025 02:14:51 -0600 Subject: [PATCH 2/2] bump version --- node/config/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/config/version.go b/node/config/version.go index eda59b8..975e906 100644 --- a/node/config/version.go +++ b/node/config/version.go @@ -43,7 +43,7 @@ func FormatVersion(version []byte) string { } func GetPatchNumber() byte { - return 0x02 + return 0x03 } func GetRCNumber() byte {