[PATCH] D43080: Adding Msan support to FreeBSD
Kamil Rytarowski via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 9 06:06:22 PST 2018
krytarowski added inline comments.
================
Comment at: lib/msan/CMakeLists.txt:21
append_rtti_flag(OFF MSAN_RTL_CFLAGS)
-append_list_if(COMPILER_RT_HAS_FPIE_FLAG -fPIE MSAN_RTL_CFLAGS)
+if(NOT CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
+ append_list_if(COMPILER_RT_HAS_FPIE_FLAG -fPIE MSAN_RTL_CFLAGS)
----------------
krytarowski wrote:
> devnexen wrote:
> > krytarowski wrote:
> > > Why pie?
> > I think it is for performance reason PIE had been added ? Unfortunately the binaries does not build under FreeBSD with both PIC and PIE.
> pie usually has performance overhead
We embed initial-exec in the code, please audit the ifdefs whether it's added for FreeBSD.
================
Comment at: lib/msan/msan_interceptors.cc:1278
#define COMMON_INTERCEPTOR_ON_EXIT(ctx) OnExit()
+#if !SANITIZER_FREEBSD
#define COMMON_INTERCEPTOR_LIBRARY_LOADED(filename, handle) \
----------------
You need this to get dlopen() to work.
Repository:
rCRT Compiler Runtime
https://reviews.llvm.org/D43080
More information about the llvm-commits
mailing list