Tool to track #include dependencies [closed]

If you have access to GCC/G++, then the -M option will output the dependency list. It doesn’t do any of the extra stuff that the other tools do, but since it is coming from the compiler, there is no chance that it will pick up files from the “wrong” place.

Leave a Comment