# Patterns for gcc output parser # # Some errors or warning can have the appearance, for example, # # In file included from types.h:287, # from b.c:8: # w.h:13: error: syntax error before "struct" # # or # # In file included from types.h:287, # from b.c:8: # w.h:13: warning: ... # # In first case "In file included from types.h:287,from b.c:8:" it's error, in second it's warning. # This file contains patterns for such cases. # GCC_UNKNOWN_IN_FUNCTION_PATTERN=(.*)\\.([ch]|cpp|hpp): In function (.*): GCC_UNCNOWN_IN_FILE_INCLUDED_PATTERN=In file included (.*)\\.([ch]|cpp)(.*) GCC_UNKNOWN_FROM_PATTERN=(\\s*)from (.*)\\.([ch]|cpp|hpp):(\\d*)[\\:\\,] GCC_UNKNOWN_AT_TOP_LEVEL=(.*)\\.([ch]|cpp|hpp): At top level: