Skip to content

Commit c12042a

Browse files
committed
Remove references to GCC_CR from the rest of the tools
1 parent baf9556 commit c12042a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

tools/build_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def prepare_toolchain(src_paths, build_dir, target, toolchain_name,
292292
Positional arguments:
293293
src_paths - the paths to source directories
294294
target - ['LPC1768', 'LPC11U24', etc.]
295-
toolchain_name - ['ARM', 'uARM', 'GCC_ARM', 'GCC_CR']
295+
toolchain_name - ['ARM', 'uARM', 'GCC_ARM', 'IAR']
296296
297297
Keyword arguments:
298298
macros - additional macros

tools/memap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ def generate_table(self, file_desc):
764764

765765
return output
766766

767-
toolchains = ["ARM", "ARM_STD", "ARM_MICRO", "GCC_ARM", "GCC_CR", "IAR"]
767+
toolchains = ["ARM", "ARM_STD", "ARM_MICRO", "GCC_ARM", "IAR"]
768768

769769
def compute_report(self):
770770
""" Generates summary of memory usage for main areas
@@ -814,7 +814,7 @@ def parse(self, mapfile, toolchain):
814814
self.tc_name = toolchain.title()
815815
if toolchain in ("ARM", "ARM_STD", "ARM_MICRO", "ARMC6"):
816816
parser = _ArmccParser
817-
elif toolchain == "GCC_ARM" or toolchain == "GCC_CR":
817+
elif toolchain == "GCC_ARM":
818818
parser = _GccParser
819819
elif toolchain == "IAR":
820820
parser = _IarParser

tools/singletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
{
2525
"targets": {
2626
"KL46Z": ["ARM", "GCC_ARM"],
27-
"LPC1768": ["ARM", "GCC_ARM", "GCC_CR", "IAR"],
27+
"LPC1768": ["ARM", "GCC_ARM", "IAR"],
2828
"LPC11U24": ["uARM"],
2929
"NRF51822": ["ARM"]
3030
}

tools/size.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def benchmarks():
6363
csv_data.writerow(['Toolchain', "Target", "Benchmark", "code", "data", "bss", "flash"])
6464

6565
# Build
66-
for toolchain in ['ARM', 'uARM', 'GCC_CR', 'GCC_ARM']:
66+
for toolchain in ['ARM', 'uARM', 'GCC_ARM']:
6767
for mcu in ["LPC1768", "LPC11U24"]:
6868
# Build Libraries
6969
build_mbed_libs(mcu, toolchain)
@@ -118,4 +118,4 @@ def compare(t1, t2, target):
118118

119119

120120
if __name__ == '__main__':
121-
compare("GCC_CR", "LPC1768")
121+
compare("ARM", "GCC_ARM", "LPC1768")

0 commit comments

Comments
 (0)