File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -108,14 +108,14 @@ def format_src_path(path):
108
108
return CCES .format_path (path , "PARENT-1-PROJECT_LOC/" )
109
109
110
110
@staticmethod
111
- def clean_flags (container , flags ):
111
+ def clean_flags (container , flags_to_remove ):
112
112
"""
113
113
Some flags are handled by CCES already, so there's no need
114
114
to include them twice.
115
115
"""
116
- for flag in container :
117
- if flag in flags :
118
- flags .remove (flag )
116
+ for flag in flags_to_remove :
117
+ if flag in container :
118
+ container .remove (flag )
119
119
120
120
@staticmethod
121
121
def parse_flags (flags , options , booleans ):
Original file line number Diff line number Diff line change 91
91
]
92
92
},
93
93
{% if float_abi %}
94
- "-mfloat- abi=${value} " : {
95
- "type" : "command ",
96
- "value" : "{{ float_abi }}"
94
+ "arm.toolchain.gcc.cpp.linker.option.fpu. abi" : {
95
+ "type" : "baseId ",
96
+ "value" : "arm.toolchain.gcc.c.linker.option.fpu.abi. {{ float_abi }}"
97
97
},
98
98
{% endif %}
99
99
"-T" : {
You can’t perform that action at this time.
0 commit comments