From 6e0603842fd69240e2df12995482e17423b9e7a5 Mon Sep 17 00:00:00 2001 From: nickolay168 Date: Sun, 29 Mar 2026 23:20:47 -0700 Subject: [PATCH] fix: Fix the libqrencode build under MacOS 10.15 --- platform/macos/build.sh | 1 + tools/circleci-bazel-test | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/macos/build.sh b/platform/macos/build.sh index 988035c..e7e6040 100755 --- a/platform/macos/build.sh +++ b/platform/macos/build.sh @@ -94,6 +94,7 @@ ccache --zero-stats -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_OSX_DEPLOYMENT_TARGET="$MACOS_VERSION" \ -DCMAKE_PREFIX_PATH="$PREFIX_PATH" \ + -DCMAKE_POLICY_VERSION_MINIMUM=3.5 \ -GNinja \ -B_build \ "$@" \ diff --git a/tools/circleci-bazel-test b/tools/circleci-bazel-test index 587c358..9cc4b4c 100755 --- a/tools/circleci-bazel-test +++ b/tools/circleci-bazel-test @@ -52,7 +52,7 @@ TMPDIR=$(mktemp -d) trap 'rm -rf "$TMPDIR"' EXIT pushd /src/workspace -curl -L https://github.com/buchgr/bazel-remote/releases/download/v2.5.0/bazel-remote-2.5.0-linux-x86_64 -o "$TMPDIR/bazel-remote" +curl -L https://github.com/buchgr/bazel-remote/releases/download/v2.6.1/bazel-remote-2.6.1-linux-amd64 -o "$TMPDIR/bazel-remote" # TODO(iphydf): Use bazel once the image is updated. # bazel run @patchelf//:patchelf -- --set-interpreter /nix/store/*-glibc-*/lib64/ld-linux-x86-64.so.2 "$TMPDIR/bazel-remote" "$PATCHELF" --set-interpreter /nix/store/*-glibc-*/lib64/ld-linux-x86-64.so.2 "$TMPDIR/bazel-remote"