We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7a3ae2 commit 62b6150Copy full SHA for 62b6150
tools/toolchains/gcc.py
@@ -25,7 +25,7 @@ class GCC(mbedToolchain):
25
LIBRARY_EXT = '.a'
26
27
STD_LIB_NAME = "lib%s.a"
28
- DIAGNOSTIC_PATTERN = re.compile('((?P<file>[^:]+):(?P<line>\d+):)(\d+:)? (?P<severity>warning|error|fatal error): (?P<message>.+)')
+ DIAGNOSTIC_PATTERN = re.compile('((?P<file>[^:]+):(?P<line>\d+):)(\d+:)? (?P<severity>warning|[eE]rror|fatal error): (?P<message>.+)')
29
INDEX_PATTERN = re.compile('(?P<col>\s*)\^')
30
31
def __init__(self, target, notify=None, macros=None,
0 commit comments