mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: zig: Add tuning information.
* gnu/packages/zig.scm (zig-0.9, zig-0.10)[properties]: Add clang-properties matching input clang packages. Change-Id: Ib4a665a29e925b85d0e7695810a8889951dd1602
This commit is contained in:
parent
95b577e09a
commit
87bb9c9664
1 changed files with 5 additions and 2 deletions
|
@ -129,7 +129,8 @@ toolchain. Among other features it provides
|
|||
;; https://github.com/ziglang/zig/issues/6485
|
||||
(supported-systems %64bit-supported-systems)
|
||||
;; Stage3 can take a lot of time and isn't verbose.
|
||||
(properties `((max-silent-time . 9600)))
|
||||
(properties `((max-silent-time . 9600)
|
||||
,@(clang-properties "13")))
|
||||
(license license:expat)))
|
||||
|
||||
(define-public zig-0.10
|
||||
|
@ -192,6 +193,8 @@ toolchain. Among other features it provides
|
|||
(replace "lld" lld-15)))
|
||||
(native-inputs
|
||||
(modify-inputs (package-native-inputs zig-0.9)
|
||||
(replace "llvm" llvm-15)))))
|
||||
(replace "llvm" llvm-15)))
|
||||
(properties `((max-silent-time . 9600)
|
||||
,@(clang-properties "15")))))
|
||||
|
||||
(define-public zig zig-0.10)
|
||||
|
|
Loading…
Reference in a new issue