Skip to content

Commit b89453c

Browse files
committed
[sanitizer] Allow dlopen/dlclose interception to be disabled from cmake
Summary: dlopen and dlclose interception are broken when RUNPATH is used: https://llvm.org/bugs/show_bug.cgi?id=27790 Reviewers: kutuzov.viktor.84, samsonov, dvyukov, eugenis, kcc Subscribers: kcc, filcab, kubabrecka, compnerd, llvm-commits Differential Revision: http://reviews.llvm.org/D20333 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@269947 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 310285e commit b89453c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/sanitizer_common/sanitizer_platform_interceptors.h

+4
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,12 @@
280280
#define SANITIZER_INTERCEPT_OBSTACK SI_LINUX_NOT_ANDROID
281281
#define SANITIZER_INTERCEPT_FFLUSH SI_NOT_WINDOWS
282282
#define SANITIZER_INTERCEPT_FCLOSE SI_NOT_WINDOWS
283+
284+
#ifndef SANITIZER_INTERCEPT_DLOPEN_DLCLOSE
283285
#define SANITIZER_INTERCEPT_DLOPEN_DLCLOSE \
284286
SI_FREEBSD || SI_LINUX_NOT_ANDROID || SI_MAC
287+
#endif
288+
285289
#define SANITIZER_INTERCEPT_GETPASS SI_LINUX_NOT_ANDROID || SI_MAC
286290
#define SANITIZER_INTERCEPT_TIMERFD SI_LINUX_NOT_ANDROID
287291

0 commit comments

Comments
 (0)