aboutsummaryrefslogtreecommitdiffstats
path: root/main/llvm/compiler-rt-0003-off_t.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2016-03-15 14:54:01 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2016-03-22 10:21:07 +0000
commitb165966a14beef9d10075f4c6010bf76e9a5c34e (patch)
tree10862bef7996831e11d742f796c07bf3f4ed5ffc /main/llvm/compiler-rt-0003-off_t.patch
parent537727e3e1f91ab9be29710b2994798b145a7330 (diff)
downloadaports-b165966a14beef9d10075f4c6010bf76e9a5c34e.tar.bz2
aports-b165966a14beef9d10075f4c6010bf76e9a5c34e.tar.xz
main/llvm: upgrade to 3.8.0, move out clang
Diffstat (limited to 'main/llvm/compiler-rt-0003-off_t.patch')
-rw-r--r--main/llvm/compiler-rt-0003-off_t.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/main/llvm/compiler-rt-0003-off_t.patch b/main/llvm/compiler-rt-0003-off_t.patch
deleted file mode 100644
index eee8ab0626..0000000000
--- a/main/llvm/compiler-rt-0003-off_t.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-on musl libc off_t is always 64bit
-
-This is needed for interception to build on 32 bit musl
-
---- a/lib/sanitizer_common/sanitizer_internal_defs.h
-+++ b/lib/sanitizer_common/sanitizer_internal_defs.h
-@@ -87,7 +87,8 @@
- // like pread and mmap, as opposed to pread64 and mmap64.
- // FreeBSD, Mac and Linux/x86-64 are special.
- #if SANITIZER_FREEBSD || SANITIZER_MAC || \
-- (SANITIZER_LINUX && defined(__x86_64__))
-+ (SANITIZER_LINUX && \
-+ (defined(__x86_64__) || (!defined(__GLIBC__) && !SANITIZER_ANDROID)))
- typedef u64 OFF_T;
- #else
- typedef uptr OFF_T;