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.
This commit is contained in:
Maxim Cournoyer 2022-07-08 17:24:01 -04:00
parent e0d47d8fac
commit 1f50c8750a
No known key found for this signature in database
GPG Key ID: 1260E46482E63562

View File

@ -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