Build: Disable configs with oversize issue
Following configs has oversize issue which causes build failure:
lpcxpresso55s69_GNUARM_IPC_2_Relwithdebinfo_BL2_NS_MEDIUM
stm32l562e_dk_ARMCLANG_LIB_1_REG_Release_BL2_NS
Disable these configs for the time being to avoid blocking CI.
This patch will be reverted once the issue has been addressed.
Signed-off-by: Xinyu Zhang <xinyu.zhang@arm.com>
Change-Id: Id9c14955fb68038a0297f32ca2738a2c5eacc56b
diff --git a/build_helper/build_helper_configs.py b/build_helper/build_helper_configs.py
index f0e3d72..3e6ed20 100755
--- a/build_helper/build_helper_configs.py
+++ b/build_helper/build_helper_configs.py
@@ -139,6 +139,12 @@
# Load range overlap on Musca for IPC Debug type: T895
("arm/musca_b1/sse_200", "toolchain_ARMCLANG.cmake", "*", "*", "*", "IPC", "Debug", "*", "*", "*", "*", "*", "*", "*"),
("arm/musca_s1", "toolchain_ARMCLANG.cmake", "*", "*", "*", "IPC", "Debug", "*", "*", "*", "*", "*", "*", "*"),
+ # Oversize issue on config lpcxpresso55s69_GNUARM_IPC_2_Relwithdebinfo_BL2_NS_MEDIUM
+ ("nxp/lpcxpresso55s69", "toolchain_GNUARM.cmake", False, "2", False, "OFF",
+ "Relwithdebinfo", "off", True, True, "profile_medium", "ON", "OFF", "OFF"),
+ # Oversize issue on config stm32l562e_dk_ARMCLANG_LIB_1_REG_Release_BL2_NS
+ ("stm/stm32l562e_dk", "toolchain_ARMCLANG.cmake", True, "1", True, "OFF",
+ "Release", "off", True, True, "", "ON", "OFF", "OFF"),
# LVL2 and LVL3 requires IPC model
("*", "*", True, "2", "*", "*", "*", "*", "*", "*", "*", "*", "*", "*"),
("*", "*", True, "3", "*", "*", "*", "*", "*", "*", "*", "*", "*", "*"),