[PATCH] D11968: Add sanitizer blacklists to the rules generated with -M/-MM/-MD/-MMD.
Peter Collingbourne via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 11 18:17:10 PDT 2015
pcc added a comment.
> should include the default blacklist (and any explicit blacklists, if they were specified)?
Yes, exactly.
================
Comment at: lib/Frontend/DependencyFile.cpp:416-420
@@ -413,2 +415,7 @@
+ // Add extra dependencies to the end of the list.
+ for (auto ExtraDep : ExtraDeps) {
+ AddFilename(ExtraDep);
+ }
+
// Write out the dependency targets, trying to avoid overly long
----------------
These files are for machine consumption. If make and ninja accept this output, I don't think this should be a problem.
http://reviews.llvm.org/D11968
More information about the cfe-commits
mailing list