This revision was automatically updated to reflect the committed changes.
Closed by commit rC345537: [Driver] Support sanitized libraries on Fuchsia
(authored by phosek, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D53487?vs=170805&id=171564#toc
Repository:
rC Clang
htt
phosek updated this revision to Diff 170805.
phosek marked an inline comment as done.
Repository:
rC Clang
https://reviews.llvm.org/D53487
Files:
clang/lib/Driver/ToolChains/CommonArgs.cpp
clang/lib/Driver/ToolChains/CommonArgs.h
clang/lib/Driver/ToolChains/Fuchsia.cpp
clang/test/Drive
mcgrathr accepted this revision.
mcgrathr added a comment.
This revision is now accepted and ready to land.
lgtm
Comment at: clang/lib/Driver/ToolChains/CommonArgs.cpp:566
+ for (const auto &LibPath : TC.getLibraryPaths()) {
+if(LibPath.length() > 0) {
+ SmallString<1
phosek created this revision.
phosek added a reviewer: mcgrathr.
Herald added a subscriber: cfe-commits.
When using sanitizers, add //lib/
to the list of library paths to support using sanitized version of
runtime libraries if available.
Repository:
rC Clang
https://reviews.llvm.org/D53487
F