-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Legacy-Flang][Driver][ASan] Add default rpath of host-asan #81
base: aomp-dev
Are you sure you want to change the base?
Conversation
6ff62e6
to
0ebe32e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, want @estewart08 to be final approver
Cannot just always add |
Add a condition to check if the |
library(libclang_rt.asan.x86_64.so)) for OpenMP Offloading applications when ASan.
0ebe32e
to
5d0641d
Compare
Done. |
@@ -568,8 +568,6 @@ void tools::gnutools::Linker::ConstructJob(Compilation &C, const JobAction &JA, | |||
// Add Fortran runtime libraries | |||
if (needFortranLibs(D, Args)) { | |||
ToolChain.AddFortranStdlibLibArgs(Args, CmdArgs); | |||
CmdArgs.push_back("-rpath"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this need guarded with ! needsAsanRt
?
library(libclang_rt.asan.x86_64.so)) for OpenMP Offloading applications when ASan.