aboutsummaryrefslogtreecommitdiffstats
path: root/main/llvm4/llvm-fix-build-with-musl-libc.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-11-06 17:22:06 +0100
committerJakub Jirutka <jakub@jirutka.cz>2017-11-14 18:44:44 +0100
commit5264d838ede53a1afd1b238ad278041b6e4203cf (patch)
treecae212e2c200a462ffc0e01fa1a25a840dc3e8b2 /main/llvm4/llvm-fix-build-with-musl-libc.patch
parent826612567b84723123e7b1e6ea82721f0cf65163 (diff)
downloadaports-5264d838ede53a1afd1b238ad278041b6e4203cf.tar.bz2
aports-5264d838ede53a1afd1b238ad278041b6e4203cf.tar.xz
community/llvm4: move from main
The default (latest) llvm package is now llvm5.
Diffstat (limited to 'main/llvm4/llvm-fix-build-with-musl-libc.patch')
-rw-r--r--main/llvm4/llvm-fix-build-with-musl-libc.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/main/llvm4/llvm-fix-build-with-musl-libc.patch b/main/llvm4/llvm-fix-build-with-musl-libc.patch
deleted file mode 100644
index 6ee91ea44d..0000000000
--- a/main/llvm4/llvm-fix-build-with-musl-libc.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From 5c571082fdaf61f6df19d9b7137dc26d71334058 Mon Sep 17 00:00:00 2001
-From: Natanael Copa <ncopa@alpinelinux.org>
-Date: Thu, 18 Feb 2016 10:33:04 +0100
-Subject: [PATCH 2/3] Fix build with musl libc
-
-On musl libc the fopen64 and fopen are the same thing, but for
-compatibility they have a `#define fopen64 fopen`. Same applies for
-fseek64, fstat64, fstatvfs64, ftello64, lstat64, stat64 and tmpfile64.
----
- include/llvm/Analysis/TargetLibraryInfo.h | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-diff --git a/include/llvm/Analysis/TargetLibraryInfo.h b/include/llvm/Analysis/TargetLibraryInfo.h
-index 7becdf0..7f14427 100644
---- a/include/llvm/Analysis/TargetLibraryInfo.h
-+++ b/include/llvm/Analysis/TargetLibraryInfo.h
-@@ -18,6 +18,26 @@
- #include "llvm/IR/Module.h"
- #include "llvm/Pass.h"
-
-+#undef fopen64
-+#undef fseeko64
-+#undef fstat64
-+#undef fstatvfs64
-+#undef ftello64
-+#undef lstat64
-+#undef stat64
-+#undef tmpfile64
-+#undef F_GETLK64
-+#undef F_SETLK64
-+#undef F_SETLKW64
-+#undef flock64
-+#undef open64
-+#undef openat64
-+#undef creat64
-+#undef lockf64
-+#undef posix_fadvise64
-+#undef posix_fallocate64
-+#undef off64_t
-+
- namespace llvm {
- /// VecDesc - Describes a possible vectorization of a function.
- /// Function 'VectorFnName' is equivalent to 'ScalarFnName' vectorized
---
-2.7.3
-