From a77624f9398eb04dead8a653d58568c594f2e11d Mon Sep 17 00:00:00 2001 From: Brandon Pfeifer Date: Fri, 16 Dec 2022 15:27:42 -0500 Subject: [PATCH] fix: specify correct aarch64 gcc path (#2736) --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 0bdec206b..50019d14d 100755 --- a/build.py +++ b/build.py @@ -513,7 +513,7 @@ def build(version=None, if arch == "amd64": tags += ["netgo", "osusergo", "static_build"] if arch == "arm64": - cc = "aarch64-unknown-linux-musl-cc" + cc = "/musl/aarch64/bin/musl-gcc" tags += ["netgo", "osusergo", "static_build", "noasm"] elif platform == "darwin" and arch == "amd64": cc = "x86_64-apple-darwin18-clang"