diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-05-21 11:37:40 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-05-21 11:59:24 +0000 |
commit | eac22325a7d4cf3ca559fa4d3ee2e49f4e879ffd (patch) | |
tree | be9d3da7650e4eeb3ba22c6d0c1cca45ccb51517 /main/llvm/compiler-rt-3.6-musl-disable-sanitizers.patch | |
parent | 3681f34c0d3bd9b6d30a7817989a862e29ab4fe4 (diff) | |
download | aports-eac22325a7d4cf3ca559fa4d3ee2e49f4e879ffd.tar.bz2 aports-eac22325a7d4cf3ca559fa4d3ee2e49f4e879ffd.tar.xz |
main/llvm: upgrade to 3.6.0
move from testing
fixes #4068
Diffstat (limited to 'main/llvm/compiler-rt-3.6-musl-disable-sanitizers.patch')
-rw-r--r-- | main/llvm/compiler-rt-3.6-musl-disable-sanitizers.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/main/llvm/compiler-rt-3.6-musl-disable-sanitizers.patch b/main/llvm/compiler-rt-3.6-musl-disable-sanitizers.patch new file mode 100644 index 0000000000..c37490ca3f --- /dev/null +++ b/main/llvm/compiler-rt-3.6-musl-disable-sanitizers.patch @@ -0,0 +1,34 @@ +Unfortunately, the sanitizer functionality depends on a variety of GNU +extensions and headers that simply don't exist on a musl based system. Fixing +this would be a fairly complicated task, though some inspiration could be taken +from dpkg's static 'libcompat' approach of supplying equivalent functionality +that might be missing. A task for another day perhaps. + +diff --git a/lib/Makefile.mk b/lib/Makefile.mk +index ed9690d..aacb2b1 100644 +--- a/lib/Makefile.mk ++++ b/lib/Makefile.mk +@@ -7,16 +7,16 @@ + # + #===------------------------------------------------------------------------===# + + SubDirs := + + # Add submodules. +-SubDirs += asan ++# SubDirs += asan + SubDirs += builtins +-SubDirs += dfsan ++# SubDirs += dfsan + SubDirs += interception +-SubDirs += lsan +-SubDirs += msan ++# SubDirs += lsan ++# SubDirs += msan + SubDirs += profile +-SubDirs += sanitizer_common +-SubDirs += tsan +-SubDirs += ubsan ++# SubDirs += sanitizer_common ++# SubDirs += tsan ++# SubDirs += ubsan |