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