[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch core-packages-team updated: gnu: clang-runtime: Remove gcc-12, 13
From: |
guix-commits |
Subject: |
branch core-packages-team updated: gnu: clang-runtime: Remove gcc-12, 13, 14 from native-ipnuts. |
Date: |
Sat, 14 Dec 2024 16:53:34 -0500 |
This is an automated email from the git hooks/post-receive script.
janneke pushed a commit to branch core-packages-team
in repository guix.
The following commit(s) were added to refs/heads/core-packages-team by this
push:
new a5e5e5327c gnu: clang-runtime: Remove gcc-12,13,14 from native-ipnuts.
a5e5e5327c is described below
commit a5e5e5327c6e53657a0fac9dfc9ef30d5da5edff
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sat Dec 14 22:40:14 2024 +0100
gnu: clang-runtime: Remove gcc-12,13,14 from native-ipnuts.
* gnu/packages/llvm.scm (clang-runtime-from-llvm)[native-inputs]: Use
llvm's native inputs unmodified.
Change-Id: Ib01403665af7a8014e6da612bc6f31257e498d88
---
gnu/packages/llvm.scm | 19 ++-----------------
1 file changed, 2 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index 0d48432e3f..7a8d98770a 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -27,6 +27,7 @@
;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com>
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
;;; Copyright © 2023, 2024 Zheng Junjie <873216071@qq.com>
+;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -153,23 +154,7 @@ as \"x86_64-linux\"."
(patches (map search-patch patches)))
(llvm-monorepo (package-version llvm))))
(build-system cmake-build-system)
- (native-inputs
- (cond ((version>=? version "19")
- ;; TODO: Remove this when GCC 14 is the default.
- ;; libfuzzer fails to build with GCC 13
- (modify-inputs (package-native-inputs llvm)
- (prepend gcc-14)))
- ((version>=? version "18")
- ;; TODO: Remove this when GCC 13 is the default.
- ;; libfuzzer fails to build with GCC 12
- (modify-inputs (package-native-inputs llvm)
- (prepend gcc-13)))
- ((version>=? version "15")
- ;; TODO: Remove this when GCC 12 is the default.
- ;; libfuzzer fails to build with GCC 11
- (modify-inputs (package-native-inputs llvm)
- (prepend gcc-12)))
- (else (package-native-inputs llvm))))
+ (native-inputs (package-native-inputs llvm))
(inputs
(append
(list llvm)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch core-packages-team updated: gnu: clang-runtime: Remove gcc-12, 13, 14 from native-ipnuts.,
guix-commits <=