[PATCH] D49198: [scudo] Use -Wl,-z,global on Android
Evgenii Stepanov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 12 11:05:54 PDT 2018
eugenis added inline comments.
================
Comment at: lib/scudo/CMakeLists.txt:24
+ if (COMPILER_RT_HAS_Z_GLOBAL)
+ list(APPEND ASAN_DYNAMIC_LINK_FLAGS -Wl,-z,global)
+ endif()
----------------
ASAN_DYNAMIC_LINK_FLAGS <- is this a typo?
Can this be done in a common code for all sanitizers that intercept malloc?
Also, I don't think github is the canonical source for AOSP, could you update the link in the patch description to https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md ?
Repository:
rCRT Compiler Runtime
https://reviews.llvm.org/D49198
More information about the llvm-commits
mailing list