diff options
author | Marius Bakke <marius@gnu.org> | 2022-04-05 13:27:09 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-04-07 23:12:44 +0200 |
commit | e9473ed49b20e4bf95309357cbd77353bdfbbf66 (patch) | |
tree | e97c0d60ade6119d17df4278811606a06282f5d8 /gnu/packages/zig.scm | |
parent | 4e4a79601c4212a91c9280c7c08227b50d321420 (diff) |
gnu: LLVM, Clang: Add 14.0.0.
* gnu/packages/llvm.scm (%llvm-monorepo-hashes, %llvm-patches, llvm-monorepo):
New variables.
(clang-runtime-from-llvm): Make HASH optional; use monorepo when not present.
(clang-from-llvm): Likewise.
(llvm-14, clang-runtime-14, clang-14, clang-toolchain-14, lld-14): New variables.
(llvm-13): Inherit from LLVM-14.
(lld-13): Inherit from LLD-14.
(lld): Turn into alias for LLD-14.
* gnu/packages/patches/clang-14.0-libc-search-path.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/zig.scm (zig): Change from LLD to LLD-13.
Diffstat (limited to 'gnu/packages/zig.scm')
-rw-r--r-- | gnu/packages/zig.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/zig.scm b/gnu/packages/zig.scm index fd907bc5021..9e99fdb857f 100644 --- a/gnu/packages/zig.scm +++ b/gnu/packages/zig.scm @@ -43,7 +43,7 @@ (build-system cmake-build-system) (inputs (list clang-13 ; Clang propagates llvm. - lld)) + lld-13)) ;; Zig compiles fine with GCC, but also needs native LLVM libraries. (native-inputs (list llvm-13)) |