mirror of
https://github.com/intel/llvm.git
synced 2026-01-20 01:58:44 +08:00
[Driver] Enable ASan on Solaris/SPARC (#107403)
Once PR #107223 lands, ASan can be enabled on Solaris/SPARC. This patch does just that. As on Solaris/x86, the dynamic ASan runtime lib needs to be linked with `-z now` to avoid an `AsanInitInternal` cycle. Tested on `sparcv9-sun-solaris2.11` and `sparc64-unknown-linux-gnu`.
This commit is contained in:
@@ -266,8 +266,7 @@ void solaris::Linker::ConstructJob(Compilation &C, const JobAction &JA,
|
||||
}
|
||||
}
|
||||
// Avoid AsanInitInternal cycle, Issue #64126.
|
||||
if (ToolChain.getTriple().isX86() && SA.needsSharedRt() &&
|
||||
SA.needsAsanRt()) {
|
||||
if (SA.needsSharedRt() && SA.needsAsanRt()) {
|
||||
CmdArgs.push_back("-z");
|
||||
CmdArgs.push_back("now");
|
||||
}
|
||||
@@ -334,10 +333,11 @@ Solaris::Solaris(const Driver &D, const llvm::Triple &Triple,
|
||||
}
|
||||
|
||||
SanitizerMask Solaris::getSupportedSanitizers() const {
|
||||
const bool IsSparc = getTriple().getArch() == llvm::Triple::sparc;
|
||||
const bool IsX86 = getTriple().getArch() == llvm::Triple::x86;
|
||||
SanitizerMask Res = ToolChain::getSupportedSanitizers();
|
||||
// FIXME: Omit X86_64 until 64-bit support is figured out.
|
||||
if (IsX86) {
|
||||
// FIXME: Omit SparcV9 and X86_64 until 64-bit support is figured out.
|
||||
if (IsSparc || IsX86) {
|
||||
Res |= SanitizerKind::Address;
|
||||
Res |= SanitizerKind::PointerCompare;
|
||||
Res |= SanitizerKind::PointerSubtract;
|
||||
|
||||
Reference in New Issue
Block a user