diff options
author | Dmitry Chestnykh <dm.chestnykh@gmail.com> | 2024-02-12 12:03:04 +0300 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-02-12 11:03:15 +0100 |
commit | b21c4c253719cc2d171da13083cf4296b4cae287 (patch) | |
tree | bc300d56270b0d50c1b170315513063d68041714 /target/config | |
parent | 563ac2bb6aea9b09ac9768c34798d93dc52b960f (diff) |
Disable GCC older than 10.5.0 for CRIS.
Older GCC versions stops support of
cris-*-linux* and crisv32-*-* targets.
Signed-off-by: Dmitry Chestnykh <dm.chestnykh@gmail.com>
Diffstat (limited to 'target/config')
-rw-r--r-- | target/config/Config.in.compiler | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/config/Config.in.compiler b/target/config/Config.in.compiler index 170be2ccb..2012acc4f 100644 --- a/target/config/Config.in.compiler +++ b/target/config/Config.in.compiler @@ -34,12 +34,14 @@ config ADK_TOOLCHAIN_GCC_GIT config ADK_TOOLCHAIN_GCC_13 bool "13.2.0" depends on !ADK_TARGET_ARCH_AVR32 + depends on !ADK_TARGET_ARCH_CRIS depends on !ADK_TARGET_ARCH_METAG depends on !ADK_TARGET_ARCH_SPARC config ADK_TOOLCHAIN_GCC_12 bool "12.3.0" depends on !ADK_TARGET_ARCH_AVR32 + depends on !ADK_TARGET_ARCH_CRIS depends on !ADK_TARGET_ARCH_METAG depends on !ADK_TARGET_ARCH_LOONGARCH depends on !ADK_TARGET_ARCH_SPARC @@ -47,6 +49,7 @@ config ADK_TOOLCHAIN_GCC_12 config ADK_TOOLCHAIN_GCC_11 bool "11.4.0" depends on !ADK_TARGET_ARCH_AVR32 + depends on !ADK_TARGET_ARCH_CRIS depends on !ADK_TARGET_ARCH_C6X depends on !ADK_TARGET_ARCH_METAG depends on !ADK_TARGET_ARCH_LOONGARCH |