I have a golang service which needs to fetch processor's architecture type
archCmd := exec.Command("uname", "-m")
arch, _ := archCmd.CombinedOutput()
I am running the same binary on both intel and arm machines. The binary is built with
GOOS=darwin GOARCH=amd64
On arm machines, this fetches x86_64. It seems this is happening since I'm building with GOARCH=amd64. I am not however sure why this would happen. What's my alternative if i want to run the same built binary on both intel and arm machines.
Quoting a comment from
@hrdy
that describes this problem:Quoting a separate superuser answer: https://superuser.com/a/1735265/443147
... this will require some conditional logic to detect OS as well as parsing to detect an Apple CPU type. This may break in the future if this string value changes.
Again, credit goes to
@selalerercapitolis
's answer linked.