summaryrefslogtreecommitdiff
path: root/gnu/packages/llvm.scm
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2025-09-19 21:28:12 +0200
committerAndreas Enge <andreas@enge.fr>2025-09-19 21:29:28 +0200
commit3dc53ee3e70bd109978548bd43f26386f5c93582 (patch)
tree15666c37163fec1cb30f6394309f47356c228bc2 /gnu/packages/llvm.scm
parentb08fea74970299c5f1029c0e661c277e5ae59a68 (diff)
gnu: Remove llvm-3.5.
* gnu/packages/llvm.scm (llvm-3.5): Delete variable. * gnu/packages/patches/llvm-3.5-fix-clang-build-with-gcc5.patch: Delete file. * gnu/packages/llvm.scm (dist_patch_DATA): Unregister file. Fixes: guix/guix#2100 Change-Id: I60dffaa5eb7f662994daefa84cd49dac5243c4c4
Diffstat (limited to 'gnu/packages/llvm.scm')
-rw-r--r--gnu/packages/llvm.scm27
1 files changed, 0 insertions, 27 deletions
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index e81b85d5813..2425c0924e5 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -1082,33 +1082,6 @@ Library.")
(string-append (getcwd) "/lib"))))
(delete 'install-opt-viewer)))))))
-(define-public llvm-3.5
- (package (inherit llvm-6)
- (version "3.5.2")
- (source
- (origin
- (method url-fetch)
- (uri (llvm-uri "llvm" version))
- (patches
- (search-patches "llvm-3.5-fix-clang-build-with-gcc5.patch"))
- (sha256
- (base32
- "0xf5q17kkxsrm2gsi93h4pwlv663kji73r2g4asb97klsmb626a4"))))
- (outputs '("out"))
- (arguments
- (substitute-keyword-arguments (package-arguments llvm-6)
- ((#:phases phases)
- #~(modify-phases #$phases
- (add-before 'build 'shared-lib-workaround
- ;; Even with CMAKE_SKIP_BUILD_RPATH=FALSE, llvm-tblgen
- ;; doesn't seem to get the correct rpath to be able to run
- ;; from the build directory. Set LD_LIBRARY_PATH as a
- ;; workaround.
- (lambda _
- (setenv "LD_LIBRARY_PATH"
- (string-append (getcwd) "/lib"))))
- (delete 'install-opt-viewer)))))))
-
(define-public llvm-16
(make-llvm "16.0.6"))