whoops don't return a reason string for arm64, since it should always be supported

This commit is contained in:
kim 2025-03-10 14:10:06 +00:00
commit c5e4597daa

View file

@ -150,7 +150,7 @@ func compilerSupported() (string, bool) {
// later update go-ffmpreg to a version that makes // later update go-ffmpreg to a version that makes
// use of threads, i.e. v7.x.x. in that case we would // use of threads, i.e. v7.x.x. in that case we would
// need to check for cpu.ARM64.HasATOMICS. // need to check for cpu.ARM64.HasATOMICS.
return "arm64 LSE/atomics required", true return "", true
default: default:
return "unsupported ARCH", false return "unsupported ARCH", false
} }