diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-09-20 08:11:24 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-09-20 09:53:55 +0300 |
commit | 00a1ee15cdc046708d2df35d3854156da14fcbb9 (patch) | |
tree | 831ffc2ba7235e9772cd66e29d36fc2aa16204fd /gnu/packages | |
parent | 7a2ee8524ab83fd3f22deda388f2fd0628cd7271 (diff) | |
download | guix-00a1ee15cdc046708d2df35d3854156da14fcbb9.tar.gz guix-00a1ee15cdc046708d2df35d3854156da14fcbb9.zip |
gnu: %gcc-11-x86_64-micro-architectures: Correct some values.
* gnu/packages/gcc.scm (%gcc-11-x86_64-micro-architectures): Correct the
values for the psABI micro-architectures.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gcc.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index 862fdd79c3..c3a2d6256c 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -617,7 +617,7 @@ Go. It also includes runtime support libraries for these languages.") "btver1" "btver2" ;AMD ;; psABI micro-architecture levels - "x86_64-v1" "x86_64-v2" "x86_64-v3" "x86_64-v4"))) + "x86-64-v1" "x86-64-v2" "x86-64-v3" "x86-64-v4"))) ;; Suitable '-march' values for GCC 12. (define %gcc-12-aarch64-micro-architectures |