You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many downstream build systems, like ninja/samurai expects the compiler to be able to generate a dependency map for each file.
Its conventional format is as in a makefile entry in the form targets: prerequisites.
This requires #1925 to be handled first.
Many downstream build systems, like ninja/samurai expects the compiler to be able to generate a dependency map for each file.
Its conventional format is as in a makefile entry in the form
targets: prerequisites
.For reference, flags
-Mx
discussed in https://gcc.gnu.org/onlinedocs/gcc/Preprocessor-Options.htmlFor example, a basic C hello world example like
gcc test.c -M
would result in the following map:Not each of those flags needs implementation, and most are very similar, just combinatorial variants.
Like, if system headers are to be listed or not.
The text was updated successfully, but these errors were encountered: