[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/14: gnu: gcc: Add 'compiler-cpu-architectures' property.
From: |
guix-commits |
Subject: |
02/14: gnu: gcc: Add 'compiler-cpu-architectures' property. |
Date: |
Sat, 1 Jan 2022 09:57:12 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 2576e2019d2f5049ad3dc51404c7e991af45d1d6
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Thu Dec 16 16:49:34 2021 +0100
gnu: gcc: Add 'compiler-cpu-architectures' property.
* gnu/packages/gcc.scm (%gcc-7.5-x86_64-micro-architectures)
(%gcc-10-x86_64-micro-architectures): New variables.
(gcc-7, gcc-10): Add 'properties' field.
* gnu/packages/commencement.scm (make-gcc-toolchain): Likewise.
---
gnu/packages/commencement.scm | 1 +
gnu/packages/gcc.scm | 31 +++++++++++++++++++++++++++++--
2 files changed, 30 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index e570a95b04..8c81098bc0 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -3768,6 +3768,7 @@ COREUTILS-FINAL vs. COREUTILS, etc."
(append (package-search-paths gcc)
(package-search-paths libc)))
+ (properties (package-properties gcc)) ;for 'compiler-cpu-architectures'
(license (package-license gcc))
(synopsis "Complete GCC tool chain for C/C++ development")
(description
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index f526680f56..efa0baeaa1 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -525,6 +525,27 @@ Go. It also includes runtime support libraries for these
languages.")
,@(package-inputs gcc-4.7)))))
+(define %gcc-7.5-x86_64-micro-architectures
+ ;; Suitable '-march' values for GCC 7.5 (info "(gcc) x86 Options").
+ '("core2" "nehalem" "westmere" "sandybridge" "ivybridge"
+ "haswell" "broadwell" "skylake" "bonnell" "silvermont"
+ "knl" "skylake-avx512"
+
+ "k8" "k8-sse3" "barcelona"
+ "bdver1" "bdver2" "bdver3" "bdver4"
+ "znver1"
+ "btver1" "btver2" "geode"))
+
+(define %gcc-10-x86_64-micro-architectures
+ ;; Suitable '-march' values for GCC 10.
+ (append %gcc-7.5-x86_64-micro-architectures
+ '("goldmont" "goldmont-plus" "tremont"
+ "knm" "cannonlake" "icelake-client" "icelake-server"
+ "cascadelake" "cooperlake" "tigerlake"
+
+ "znver2" "znver3")))
+
+
(define-public gcc-7
(package
(inherit gcc-6)
@@ -542,7 +563,10 @@ Go. It also includes runtime support libraries for these
languages.")
(description
"GCC is the GNU Compiler Collection. It provides compiler front-ends
for several languages, including C, C++, Objective-C, Fortran, Ada, and Go.
-It also includes runtime support libraries for these languages.")))
+It also includes runtime support libraries for these languages.")
+ (properties
+ `((compiler-cpu-architectures
+ ("x86_64" ,@%gcc-7.5-x86_64-micro-architectures))))))
(define-public gcc-8
(package
@@ -592,7 +616,10 @@ It also includes runtime support libraries for these
languages.")))
(patches (search-patches "gcc-9-strmov-store-file-names.patch"
"gcc-5.0-libvtv-runpath.patch"))
(modules '((guix build utils)))
- (snippet gcc-canadian-cross-objdump-snippet)))))
+ (snippet gcc-canadian-cross-objdump-snippet)))
+ (properties
+ `((compiler-cpu-architectures
+ ("x86_64" ,@%gcc-10-x86_64-micro-architectures))))))
(define-public gcc-11
(package
- branch master updated (f39d594e88 -> 40662f7da8), guix-commits, 2022/01/01
- 01/14: Add (guix cpu)., guix-commits, 2022/01/01
- 05/14: ci: Add extra jobs for tunable packages., guix-commits, 2022/01/01
- 07/14: gnu: Add xsimd-benchmark., guix-commits, 2022/01/01
- 02/14: gnu: gcc: Add 'compiler-cpu-architectures' property.,
guix-commits <=
- 11/14: gnu: libfive: Mark as tunable., guix-commits, 2022/01/01
- 12/14: gnu: prusa-slicer: Mark as tunable., guix-commits, 2022/01/01
- 03/14: gnu: clang: Add 'compiler-cpu-architectures' property., guix-commits, 2022/01/01
- 04/14: transformations: Add '--tune'., guix-commits, 2022/01/01
- 08/14: gnu: Add xtensor-benchmark., guix-commits, 2022/01/01
- 06/14: gnu: Add eigen-benchmarks., guix-commits, 2022/01/01
- 09/14: gnu: ceres-solver: Mark as tunable., guix-commits, 2022/01/01
- 14/14: news: Add entry about '--tune'., guix-commits, 2022/01/01
- 10/14: gnu: Add ceres-solver-benchmarks., guix-commits, 2022/01/01
- 13/14: gnu: gsl: Add 'tunable?' property., guix-commits, 2022/01/01