We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b47a6aa commit 750c059Copy full SHA for 750c059
2 files changed
README.md
@@ -86,6 +86,10 @@ Package home: https://github.com/klauspost/cpuid
86
87
## ARM CPU features
88
89
+# ARM FEATURE DETECTION DISABLED!
90
+
91
+See [#52](https://github.com/klauspost/cpuid/issues/52).
92
93
Currently only `arm64` platforms are implemented.
94
95
* **FP** Single-precision and double-precision floating point
detect_arm64.go
@@ -16,6 +16,10 @@ func initCPU() {
16
}
17
18
func addInfo(c *CPUInfo) {
19
+ // ARM64 disabled for now.
20
+ if true {
21
+ return
22
+ }
23
// midr := getMidr()
24
25
// MIDR_EL1 - Main ID Register
0 commit comments