Merge pull request #4933 from Xeonacid/riscv-CGO_ENABLED

Set CGO_ENABLED=1 on riscv64
This commit is contained in:
Sebastiaan van Stijn 2024-03-25 12:04:11 +01:00 committed by GitHub
commit b4d03289a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ if [ -z "$CGO_ENABLED" ]; then
case "$(go env GOOS)" in
linux)
case "$(go env GOARCH)" in
amd64|arm64|arm|s390x)
amd64|arm64|arm|s390x|riscv64)
CGO_ENABLED=1
;;
*)