authorgravatar for mail@isaacfreund.comIsaac Freund <mail@isaacfreund.com> 2021-05-11 20:11:22+02:00
committergravatar for mail@isaacfreund.comIsaac Freund <mail@isaacfreund.com> 2021-05-11 21:30:13+02:00
logf8cf106fc971c9c61709443860b1f728ca4cfc9a
tree9727849c1f75803c3e5729402c8fccfbf5abbbaa
parent3b2c9ef828cc97a4c4664324d93ddbe3696b17fb
signaturelock-open Commit is signed but in an unrecognized format.

ci: unset CC/CXX before make install on macos arm64

Having these set causes zig's native libc detection code to fail.

1 files changed, 4 insertions(+), 4 deletions(-)

ci/azure/macos_arm64_script+4-4
......@@ -55,11 +55,11 @@ cmake .. \
5555 -DZIG_TARGET_MCPU="$HOST_MCPU" \
5656 -DZIG_STATIC=ON
5757
58make $JOBS install
59
6058unset CC
6159unset CXX
6260
61make $JOBS install
62
6363# Build zig compiler cross-compiled for arm64
6464cd $ZIGDIR
6565
......@@ -79,11 +79,11 @@ cmake .. \
7979 -DZIG_EXECUTABLE="$ZIG" \
8080 -DZIG_STATIC=ON
8181
82make $JOBS install
83
8482unset CC
8583unset CXX
8684
85make $JOBS install
86
8787if [ "${BUILD_REASON}" != "PullRequest" ]; then
8888 mv ../LICENSE release/
8989