mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: llvm-3.7, llvm-3.8: Fix build with gcc.
* gnu/packages/patches/clang-runtime-3.7-fix-build-with-python3.patch, gnu/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch: New files. * gnu/packages/llvm.scm (clang-runtime-3.7, llvm-3.7, llvm-3.8): Use patches. * gnu/local.mk: Register patches. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
e5e352ae2a
commit
3485984a09
4 changed files with 39 additions and 3 deletions
15
gnu/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch
Normal file
15
gnu/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch
Normal file
|
@ -0,0 +1,15 @@
|
|||
Patch from https://github.com/digego/extempore/issues/318
|
||||
|
||||
diff --git a/include/llvm/IR/ValueMap.h.orig b/include/llvm/IR/ValueMap.h
|
||||
index ad518ac..d928f6a 100644
|
||||
--- a/include/llvm/IR/ValueMap.h
|
||||
+++ b/include/llvm/IR/ValueMap.h
|
||||
@@ -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