Skip to content

Commit b88b08f

Browse files
committed
GCC 10 is supported
1 parent ae2bef4 commit b88b08f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/toolchains/gcc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class GCC(mbedToolchain):
3636
STD_LIB_NAME = "lib%s.a"
3737
DIAGNOSTIC_PATTERN = re.compile('((?P<file>[^:]+):(?P<line>\d+):)(?P<col>\d+):? (?P<severity>warning|[eE]rror|fatal error): (?P<message>.+)')
3838

39-
GCC_RANGE = (LooseVersion("9.0.0"), LooseVersion("10.0.0"))
39+
GCC_RANGE = (LooseVersion("9.0.0"), LooseVersion("11.0.0"))
4040
GCC_VERSION_RE = re.compile(b"\d+\.\d+\.\d+")
4141
DWARF_PRODUCER_RE = re.compile(r'(DW_AT_producer)(.*:\s*)(?P<producer>.*)')
4242

0 commit comments

Comments
 (0)