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
The GCC parser (and likely the others) lacks support for INCLUDE statements, causing the parser to fail or build an incomplete map when contents are spread over multiple files.
Example can be found in issue #55, where the parser failed to find the SECTIONS block as this was located in an INCLUDEd file.
This'll likely result in pre-parsing the file for INCLUDE statements, recursively checking its INLCUDEs, etc. to build up a collection of files to include in parsing.
The text was updated successfully, but these errors were encountered:
The GCC parser (and likely the others) lacks support for
INCLUDE
statements, causing the parser to fail or build an incomplete map when contents are spread over multiple files.Example can be found in issue #55, where the parser failed to find the
SECTIONS
block as this was located in anINCLUDE
d file.This'll likely result in pre-parsing the file for
INCLUDE
statements, recursively checking itsINLCUDE
s, etc. to build up a collection of files to include in parsing.The text was updated successfully, but these errors were encountered: