aboutsummaryrefslogtreecommitdiffstats
path: root/community/libtbb/fix-dynload.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/libtbb/fix-dynload.patch')
-rw-r--r--community/libtbb/fix-dynload.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/community/libtbb/fix-dynload.patch b/community/libtbb/fix-dynload.patch
deleted file mode 100644
index d8bb701af98..00000000000
--- a/community/libtbb/fix-dynload.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-RTLD_DEEPBIND is a glibc definition
-
---- a/src/tbb/dynamic_link.cpp
-+++ b/src/tbb/dynamic_link.cpp
-@@ -413,7 +413,7 @@
- int flags = RTLD_NOW;
- if (local_binding) {
- flags = flags | RTLD_LOCAL;
--#if __linux__ && !__ANDROID__ && !__TBB_USE_SANITIZERS
-+#if __linux__ && __GLIBC__ && !__ANDROID__ && !__TBB_USE_SANITIZERS
- flags = flags | RTLD_DEEPBIND;
- #endif
- } else {