Build: Specify compiler version in every configs
To make build configs more flexible in Open CI,
specify compiler version in each configs.
This patch makes it possible to build same config
with different versions of compiler.
Signed-off-by: Xinyu Zhang <xinyu.zhang@arm.com>
Change-Id: I88eb3e927f85731376b5a0de08533765f7b8b535
diff --git a/memory_footprint.py b/memory_footprint.py
index 1447878..9aab726 100644
--- a/memory_footprint.py
+++ b/memory_footprint.py
@@ -139,7 +139,7 @@
cfg.with_bl2 and cfg.with_ns and
cfg.profile == "profile_large" and cfg.partition_ps == "ON"):
name_config = "DefaultProfileL"
- ret = [cfg.tfm_platform,cfg.toolchain_file, name_config]
+ ret = [cfg.tfm_platform,cfg.compiler, name_config]
except:
ret = ["Unknown", "Unknown", "Unknown"]
return ret