File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,9 @@ class ARM(mbedToolchain):
32
32
DEP_PATTERN = re .compile ('\S+:\s(?P<file>.+)\n ' )
33
33
34
34
35
+ # ANY changes to these default flags is backwards incompatible and require
36
+ # an update to the mbed-sdk-tools and website that introduces a profile
37
+ # for the previous version of these flags
35
38
DEFAULT_FLAGS = {
36
39
'common' : ["-c" , "--gnu" ,
37
40
"-Otime" , "--split_sections" , "--apcs=interwork" ,
Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ class GCC(mbedToolchain):
29
29
DIAGNOSTIC_PATTERN = re .compile ('((?P<file>[^:]+):(?P<line>\d+):)(\d+:)? (?P<severity>warning|error): (?P<message>.+)' )
30
30
INDEX_PATTERN = re .compile ('(?P<col>\s*)\^' )
31
31
32
+ # ANY changes to these default flags is backwards incompatible and require
33
+ # an update to the mbed-sdk-tools and website that introduces a profile
34
+ # for the previous version of these flags
32
35
DEFAULT_FLAGS = {
33
36
'common' : ["-c" , "-Wall" , "-Wextra" ,
34
37
"-Wno-unused-parameter" , "-Wno-missing-field-initializers" ,
Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ class IAR(mbedToolchain):
30
30
DIAGNOSTIC_PATTERN = re .compile ('"(?P<file>[^"]+)",(?P<line>[\d]+)\s+(?P<severity>Warning|Error)(?P<message>.+)' )
31
31
INDEX_PATTERN = re .compile ('(?P<col>\s*)\^' )
32
32
33
+ # ANY changes to these default flags is backwards incompatible and require
34
+ # an update to the mbed-sdk-tools and website that introduces a profile
35
+ # for the previous version of these flags
33
36
DEFAULT_FLAGS = {
34
37
'common' : [
35
38
"--no_wrap_diagnostics" ,
You can’t perform that action at this time.
0 commit comments