diff options
author | Travis Tilley <ttilley@gmail.com> | 2015-04-14 21:30:48 -0400 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-04-20 12:11:37 +0000 |
commit | 61ae77bf906156f59ca9a43fd0839f6b7ad21b09 (patch) | |
tree | 35a9f4d10e05fad0bc751d43c023dc2232da5fe9 /testing/llvm/compiler-rt-3.6-musl-disable-sanitizers.patch | |
parent | 7b03fa646845ec683bbda7c74bddb7809d07c3fa (diff) | |
download | aports-61ae77bf906156f59ca9a43fd0839f6b7ad21b09.tar.bz2 aports-61ae77bf906156f59ca9a43fd0839f6b7ad21b09.tar.xz |
testing/llvm: added package for llvm 3.6.0
Diffstat (limited to 'testing/llvm/compiler-rt-3.6-musl-disable-sanitizers.patch')
-rw-r--r-- | testing/llvm/compiler-rt-3.6-musl-disable-sanitizers.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/llvm/compiler-rt-3.6-musl-disable-sanitizers.patch b/testing/llvm/compiler-rt-3.6-musl-disable-sanitizers.patch new file mode 100644 index 0000000000..c37490ca3f --- /dev/null +++ b/testing/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 |