Skip to content

Commit

Permalink
fix: specify correct aarch64 gcc path (#2736)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnpfeife authored Dec 16, 2022
1 parent 89a8d23 commit a77624f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a77624f

Please sign in to comment.