Skip to content

Commit a77624f

Browse files
authored
fix: specify correct aarch64 gcc path (#2736)
1 parent 89a8d23 commit a77624f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ def build(version=None,
513513
if arch == "amd64":
514514
tags += ["netgo", "osusergo", "static_build"]
515515
if arch == "arm64":
516-
cc = "aarch64-unknown-linux-musl-cc"
516+
cc = "/musl/aarch64/bin/musl-gcc"
517517
tags += ["netgo", "osusergo", "static_build", "noasm"]
518518
elif platform == "darwin" and arch == "amd64":
519519
cc = "x86_64-apple-darwin18-clang"

0 commit comments

Comments
 (0)