mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Remove llvm-3.6.
* gnu/packages/llvm.scm (llvm-3.6): Delete variable. * gnu/packages/patches/llvm-3.6-fix-build-with-gcc-10.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Unregister file. Change-Id: Ideb23a850c9c4b3439d80eb1ed39a8485f3a3b07
This commit is contained in:
parent
d5b489a77c
commit
d11dcafc84
3 changed files with 0 additions and 27 deletions
|
@ -1829,7 +1829,6 @@ dist_patch_DATA = \
|
||||||
%D%/packages/patches/lirc-localstatedir.patch \
|
%D%/packages/patches/lirc-localstatedir.patch \
|
||||||
%D%/packages/patches/lirc-reproducible-build.patch \
|
%D%/packages/patches/lirc-reproducible-build.patch \
|
||||||
%D%/packages/patches/llvm-3.5-fix-clang-build-with-gcc5.patch \
|
%D%/packages/patches/llvm-3.5-fix-clang-build-with-gcc5.patch \
|
||||||
%D%/packages/patches/llvm-3.6-fix-build-with-gcc-10.patch \
|
|
||||||
%D%/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch \
|
%D%/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch \
|
||||||
%D%/packages/patches/llvm-13-gcc-14.patch \
|
%D%/packages/patches/llvm-13-gcc-14.patch \
|
||||||
%D%/packages/patches/lm-sensors-hwmon-attrs.patch \
|
%D%/packages/patches/lm-sensors-hwmon-attrs.patch \
|
||||||
|
|
|
@ -1190,19 +1190,6 @@ Library.")
|
||||||
#:legacy-build-shared-libs? #t
|
#:legacy-build-shared-libs? #t
|
||||||
#:patches '("clang-3.5-libc-search-path.patch")))
|
#:patches '("clang-3.5-libc-search-path.patch")))
|
||||||
|
|
||||||
(define-public llvm-3.6
|
|
||||||
(package (inherit llvm-3.7)
|
|
||||||
(version "3.6.2")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (llvm-uri "llvm" version))
|
|
||||||
(patches
|
|
||||||
(search-patches "llvm-3.6-fix-build-with-gcc-10.patch"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"153vcvj8gvgwakzr4j0kndc0b7wn91c2g1vy2vg24s6spxcc23gn"))))))
|
|
||||||
|
|
||||||
(define-public llvm-3.5
|
(define-public llvm-3.5
|
||||||
(package (inherit llvm-3.7)
|
(package (inherit llvm-3.7)
|
||||||
(version "3.5.2")
|
(version "3.5.2")
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
Adapted from https://github.com/digego/extempore/pull/322/files
|
|
||||||
|
|
||||||
--- a/include/llvm/IR/ValueMap.h 2015-08-04 00:30:24.000000000 +0200
|
|
||||||
+++ b/include/llvm/IR/ValueMap.h 2018-07-14 21:09:09.769502736 +0200
|
|
||||||
@@ -99,7 +99,7 @@
|
|
||||||
explicit ValueMap(const ExtraData &Data, unsigned NumInitBuckets = 64)
|
|
||||||
: Map(NumInitBuckets), Data(Data) {}
|
|
||||||
|
|
||||||
- bool hasMD() const { return MDMap; }
|
|
||||||
+ bool hasMD() const { return static_cast<bool>(MDMap); }
|
|
||||||
MDMapT &MD() {
|
|
||||||
if (!MDMap)
|
|
||||||
MDMap.reset(new MDMapT);
|
|
Loading…
Add table
Add a link
Reference in a new issue