Relative include flags with spaces cause parsing failure #571
Labels
Kind: Bug ⚠️
Kind: Important 🥇
Level: Intermediate (3)
Target: Logger
Issues related to the custom logger.
Milestone
When parsing Scintilla 3.10.6, errors like this occur:
This is because Scintilla uses spaces in the include flags, like so (in
gtk/makefile
):This causes an issue due to the combination of the following two things:
CodeCompass_logger
doesn't convert include flags with spaces to absolute paths.CodeCompass_parser
can only handle absolute include paths.Removing the space after every
-I
ingtk/makefile
fixed the issue, confirming this explanation.The text was updated successfully, but these errors were encountered: