mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
missing windows arm64 arch detection
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
5179299b98
commit
5d9e99ead3
1 changed files with 8 additions and 5 deletions
|
@ -34,6 +34,7 @@ const (
|
|||
ProcessorArchitectureIA64 = 6 // PROCESSOR_ARCHITECTURE_IA64
|
||||
ProcessorArchitecture32 = 0 // PROCESSOR_ARCHITECTURE_INTEL
|
||||
ProcessorArchitectureArm = 5 // PROCESSOR_ARCHITECTURE_ARM
|
||||
ProcessorArchitectureArm64 = 12 // PROCESSOR_ARCHITECTURE_ARM64
|
||||
)
|
||||
|
||||
// runtimeArchitecture gets the name of the current architecture (x86, x86_64, …)
|
||||
|
@ -47,8 +48,10 @@ func runtimeArchitecture() (string, error) {
|
|||
return "i686", nil
|
||||
case ProcessorArchitectureArm:
|
||||
return "arm", nil
|
||||
case ProcessorArchitectureArm64:
|
||||
return "arm64", nil
|
||||
default:
|
||||
return "", fmt.Errorf("Unknown processor architecture")
|
||||
return "", fmt.Errorf("unknown processor architecture %+v", sysinfo.wProcessorArchitecture)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue