Hi,
I'm trying to convert the SourceManager to handle more files. It's
still unclear to me,
what happens when you do: clang *.cpp
Do more than one sourceManager etc get instantiated or does the same
sourcemanager
handle them?
Regards,
Bas
Hi,
I'm trying to convert the SourceManager to handle more files. It's
still unclear to me,
what happens when you do: clang *.cpp
Do more than one sourceManager etc get instantiated or does the same
sourcemanager
handle them?
Regards,
Bas
This invocation is still a long ways from creating any SourceManager's,
since the code isn't looked at (AFAIK) until `clang -cc1`. The program
`clang` (without `-cc1`) is just the driver. See <
http://clang.llvm.org/docs/DriverInternals.html> for more details.
-- Sean Silva