aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicola Mazzucato <nicola.mazzucato@arm.com>2020-11-02 14:04:09 +0000
committerjimqui01 <54316584+jimqui01@users.noreply.github.com>2020-11-17 16:43:10 +0000
commit466154a1124e6f5dd91ee0f4bd39486eb6d3c5d9 (patch)
treecbcf6848a231b2627ee3d69d0ca9ba4472174d5a
parentcf0b930375ded3e974aaa6476567c6ee6bcb6483 (diff)
tools: Display correct name for rcar's compiler
In tools/ci.py we build rcar platform with aarch64-none-elf-gcc, but we display it as 'ARM'. Correct this by replacing ARM with GCC-AArch64. Change-Id: I7c4de86f6cd4a2a007263703edee7a7c71dfa8f6 Signed-off-by: Nicola Mazzucato <nicola.mazzucato@arm.com>
-rwxr-xr-xtools/ci.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ci.py b/tools/ci.py
index 0116c30e..8b1f6618 100755
--- a/tools/ci.py
+++ b/tools/ci.py
@@ -436,7 +436,7 @@ def main():
'MODE=debug ' \
'make clean all -j'
result = subprocess.call(cmd, shell=True)
- results.append(('Product rcar debug build (ARM)', result))
+ results.append(('Product rcar debug build (GCC-AArch64)', result))
cmd = \
'CC=aarch64-none-elf-gcc ' \
@@ -444,7 +444,7 @@ def main():
'MODE=release ' \
'make clean all -j'
result = subprocess.call(cmd, shell=True)
- results.append(('Product rcar release build (ARM)', result))
+ results.append(('Product rcar release build (GCC-AArch64)', result))
banner('Tests summary')