aboutsummaryrefslogtreecommitdiffstats
path: root/testing/llvm/compiler-rt-3.6-musl-no-dlvsym.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/llvm/compiler-rt-3.6-musl-no-dlvsym.patch')
-rw-r--r--testing/llvm/compiler-rt-3.6-musl-no-dlvsym.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/testing/llvm/compiler-rt-3.6-musl-no-dlvsym.patch b/testing/llvm/compiler-rt-3.6-musl-no-dlvsym.patch
deleted file mode 100644
index 444f4e073b..0000000000
--- a/testing/llvm/compiler-rt-3.6-musl-no-dlvsym.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --git a/lib/interception/interception_linux.cc b/lib/interception/interception_linux.cc
-index 6e908ac..7fcf2a6 100644
---- a/lib/interception/interception_linux.cc
-+++ b/lib/interception/interception_linux.cc
-@@ -21,13 +21,13 @@ namespace __interception {
- bool GetRealFunctionAddress(const char *func_name, uptr *func_addr,
- uptr real, uptr wrapper) {
- *func_addr = (uptr)dlsym(RTLD_NEXT, func_name);
- return real == wrapper;
- }
-
--#if !defined(__ANDROID__) // android does not have dlvsym
-+#if 0 // !defined(__ANDROID__) // android does not have dlvsym
- void *GetFuncAddrVer(const char *func_name, const char *ver) {
- return dlvsym(RTLD_NEXT, func_name, ver);
- }
- #endif // !defined(__ANDROID__)
-
- } // namespace __interception