~ruther/guix-local

135875a86c8b04a8571119761e4fea272338beb2 — Janneke Nieuwenhuizen 1 year, 7 months ago 84f665f
gnu: clang-runtime: Remove gcc-12,13,14 from native-inputs.

* gnu/packages/llvm.scm (clang-runtime-from-llvm)[native-inputs]: Use
llvm's native inputs unmodified.

Change-Id: Ib01403665af7a8014e6da612bc6f31257e498d88
1 files changed, 1 insertions(+), 17 deletions(-)

M gnu/packages/llvm.scm
M gnu/packages/llvm.scm => gnu/packages/llvm.scm +1 -17
@@ 157,23 157,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)