diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-07-08 17:24:01 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-07-10 01:03:22 -0400 |
commit | 1f50c8750a0799ac2bdde55926b35aae3a73d73f (patch) | |
tree | c6d968e4eb5aac739aea67dc79c01524f3c6c2f5 /gnu/packages | |
parent | e0d47d8facafb6d6c04741bbf30eefbc68aaefb9 (diff) |
gnu: phoronix-test-suite: Use latest version of gcc-toolchain.
This is less likely to conflict with a user installed gcc-toolchain, unless
they installed a specific version of it.
* gnu/packages/benchmark.scm (gcc-toolchain*): Use gcc-toolchain-12 instead of
gcc-toolchain.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/benchmark.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/benchmark.scm b/gnu/packages/benchmark.scm index f0e05483f0..4ea12e4cf3 100644 --- a/gnu/packages/benchmark.scm +++ b/gnu/packages/benchmark.scm @@ -63,10 +63,11 @@ #:use-module (gnu packages xml) #:use-module (ice-9 match)) -;; Lazily resolve the gcc-toolchain to avoid a circular dependency. +;; Lazily resolve the gcc-toolchain to avoid a circular dependency. Always +;; use the latest available toolchain to avoid conflicts in user profiles. (define gcc-toolchain* (delay (module-ref (resolve-interface '(gnu packages commencement)) - 'gcc-toolchain))) + 'gcc-toolchain-12))) (define-public fio (package |