Signed-off-by: Stefan Scherer <scherer_stefan@icloud.com> Upstream-commit: 7c1d49d90cbd91d7cc06d92686e2d09dd3dcac27 Component: engine
17 lines
425 B
Go
17 lines
425 B
Go
// Package platform provides helper function to get the runtime architecture
|
|
// for different platforms.
|
|
package platform
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// GetRuntimeArchitecture get the name of the current architecture (x86, x86_64, …)
|
|
func GetRuntimeArchitecture() (string, error) {
|
|
utsname := &syscall.Utsname{}
|
|
if err := syscall.Uname(utsname); err != nil {
|
|
return "", err
|
|
}
|
|
return charsToString(utsname.Machine), nil
|
|
}
|