diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-06 09:14:03 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-03-07 13:04:27 +0200 |
commit | 7700dc2cf5e1ada04a6fbcbffbe150f8274ab502 (patch) | |
tree | c3d749026a2efc57abe2a4b1266682a18b04ca63 /guix/cpu.scm | |
parent | 63165a94862c2b338e329cbd781712c7a7a1b475 (diff) |
cpu: Rename x86-64-v1 to x86-64.
This is the actual micro-architecture designation used by compilers.
* gnu/packages/gcc.scm (%gcc-11-x86_64-micro-architectures): Rename
x86-64-v1 to x86-64.
* gnu/packages/golang.scm (%go-1.18-x86_64-micro-architectures): Same.
* guix/cpu.scm (cpu->micro-architecture-level): Same.
(gcc-architecture->micro-architecture-level): Same.
Change-Id: I19ed556a7e8deb4a77f4c63fca3b794f25092788
Diffstat (limited to 'guix/cpu.scm')
-rw-r--r-- | guix/cpu.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guix/cpu.scm b/guix/cpu.scm index b69c9b5360..6f9e8daa61 100644 --- a/guix/cpu.scm +++ b/guix/cpu.scm @@ -294,8 +294,8 @@ correspond roughly to CPU, a record as returned by 'current-cpu'." ("avx" "avx2" "bmi1" "bmi2" "f16c" "fma" "movbe" "popcnt" "sse3" "sse4_1" "sse4_2" "ssse3" => "x86-64-v3") ("popcnt" "sse3" "sse4_1" "sse4_2" "ssse3" => "x86-64-v2") - (_ => "x86-64-v1"))) - "x86-64-v1")) + (_ => "x86-64"))) + "x86-64")) (architecture ;; TODO: More architectures architecture))) @@ -321,5 +321,5 @@ CPUs for compilers which don't allow for more focused optimizing." "btver2" "athalon" "k8-sse3" "k8" "bdver3" "bdver2" "bdver1" "btver1" "amdfam10" "lujiazui" "yongfeng" "x86-64") - "x86-64-v1") + "x86-64") (_ gcc-architecture))) |