File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,8 @@ def generate(self):
80
80
project_data ['tool_specific' ]['uvision' ]['misc' ]['c_flags' ].remove ("-I \" " + ARM_INC + "\" " )
81
81
# cpp is not required as it's implicit for cpp files
82
82
project_data ['tool_specific' ]['uvision' ]['misc' ]['c_flags' ].remove ("--cpp" )
83
+ # we want no-vla for only cxx, but it's also applied for C in IDE, thus we remove it
84
+ project_data ['tool_specific' ]['uvision' ]['misc' ]['c_flags' ].remove ("--no_vla" )
83
85
project_data ['tool_specific' ]['uvision' ]['misc' ]['ld_flags' ] = self .progen_flags ['ld_flags' ]
84
86
85
87
i = 0
Original file line number Diff line number Diff line change @@ -80,6 +80,8 @@ def generate(self):
80
80
project_data ['tool_specific' ]['uvision5' ]['misc' ]['c_flags' ].remove ("--c99" )
81
81
# cpp is not required as it's implicit for cpp files
82
82
project_data ['tool_specific' ]['uvision5' ]['misc' ]['c_flags' ].remove ("--cpp" )
83
+ # we want no-vla for only cxx, but it's also applied for C in IDE, thus we remove it
84
+ project_data ['tool_specific' ]['uvision5' ]['misc' ]['c_flags' ].remove ("--no_vla" )
83
85
project_data ['tool_specific' ]['uvision5' ]['misc' ]['ld_flags' ] = self .progen_flags ['ld_flags' ]
84
86
85
87
i = 0
You can’t perform that action at this time.
0 commit comments