mirror of
https://github.com/intel/llvm.git
synced 2026-01-23 16:06:39 +08:00
[ASan] Link with the dynamic runtime on OS X
This patch changes the behavior of the -fsanitize=address flag, making it use the dynamic runtime library (libclang_rt.asan_osx_dynamic.dylib) instead of the static one. It also drops the CoreFoundation dependency, since the dynamic runtime doesn't need it. llvm-svn: 173135
This commit is contained in:
@@ -339,12 +339,10 @@ void DarwinClang::AddLinkRuntimeLibArgs(const ArgList &Args,
|
||||
getDriver().Diag(diag::err_drv_clang_unsupported_per_platform)
|
||||
<< "-fsanitize=address";
|
||||
} else {
|
||||
AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.asan_osx.a", true);
|
||||
AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.asan_osx_dynamic.dylib", true);
|
||||
|
||||
// The ASAN runtime library requires C++ and CoreFoundation.
|
||||
// The ASAN runtime library requires C++.
|
||||
AddCXXStdlibLibArgs(Args, CmdArgs);
|
||||
CmdArgs.push_back("-framework");
|
||||
CmdArgs.push_back("CoreFoundation");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user