From: Ye Li Date: Wed, 20 Jun 2018 06:40:35 +0000 (-0700) Subject: MLK-18641 arm: Remove the check for gcc6 requirement X-Git-Tag: rel_imx_4.19.35_1.1.0~693 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=10f018b7c97c0792defa5228f21c2a45c06728fa;p=u-boot.git 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) --- 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