Skip to content

Commit 750c059

Browse files
authored
Disable arm64 (#54)
* Disable ARM64 until #52 is resolved.
1 parent b47a6aa commit 750c059

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ Package home: https://github.com/klauspost/cpuid
8686

8787
## ARM CPU features
8888

89+
# ARM FEATURE DETECTION DISABLED!
90+
91+
See [#52](https://github.com/klauspost/cpuid/issues/52).
92+
8993
Currently only `arm64` platforms are implemented.
9094

9195
* **FP** Single-precision and double-precision floating point

detect_arm64.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ func initCPU() {
1616
}
1717

1818
func addInfo(c *CPUInfo) {
19+
// ARM64 disabled for now.
20+
if true {
21+
return
22+
}
1923
// midr := getMidr()
2024

2125
// MIDR_EL1 - Main ID Register

0 commit comments

Comments
 (0)