From 10f018b7c97c0792defa5228f21c2a45c06728fa Mon Sep 17 00:00:00 2001 From: Ye Li Date: Tue, 19 Jun 2018 23:40:35 -0700 Subject: [PATCH] MLK-18641 arm: Remove the check for gcc6 requirement The u-boot 2018 forces to use gcc 6.0 or later to save binary size for some platforms. This check causes problem for android building because android tool chain remains using gcc 4.9. Since iMX6/7/8 platforms don't meet binary size issue, we can remove the checkgcc6 and use old gcc. Signed-off-by: Ye Li (cherry picked from commit 518b585b37cb79a52a558b9fc03fd9311855dab9) --- arch/arm/config.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/arm/config.mk b/arch/arm/config.mk index f25603109e..d41f47c32d 100644 --- a/arch/arm/config.mk +++ b/arch/arm/config.mk @@ -65,8 +65,7 @@ endif checkgcc6: @if test "$(call cc-name)" = "gcc" -a \ "$(call cc-version)" -lt "0600"; then \ - echo '*** Your GCC is older than 6.0 and is not supported'; \ - false; \ + echo '*** Your GCC is older than 6.0 and will not be supported'; \ fi -- 2.17.1