diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-12-16 09:00:58 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-12-16 09:00:58 +0100 |
commit | ee513edbdba9e263bb1dd28f94664c6e11c85159 (patch) | |
tree | 2fa40fbe8c763a850a35535ee7e6f369d15fc9c0 | |
parent | 1f6b21a512a682d5b58c0a28495857de3ba9f1cf (diff) |
add gcc6
-rw-r--r-- | target/config/Config.in.compiler | 11 | ||||
-rw-r--r-- | toolchain/gcc/Makefile.inc | 8 |
2 files changed, 19 insertions, 0 deletions
diff --git a/target/config/Config.in.compiler b/target/config/Config.in.compiler index d744915dc..2b0e0cc27 100644 --- a/target/config/Config.in.compiler +++ b/target/config/Config.in.compiler @@ -98,6 +98,17 @@ config ADK_TOOLCHAIN_GCC_7 depends on !ADK_TARGET_ARCH_OR1K depends on !ADK_TARGET_ARCH_LOONGARCH +config ADK_TOOLCHAIN_GCC_6 + bool "6.5.0" + depends on !ADK_TARGET_ARCH_ARC + depends on !ADK_TARGET_ARCH_AVR32 + depends on !ADK_TARGET_ARCH_CSKY + depends on !ADK_TARGET_ARCH_HPPA + depends on !ADK_TARGET_ARCH_METAG + depends on !ADK_TARGET_ARCH_NDS32 + depends on !ADK_TARGET_ARCH_OR1K + depends on !ADK_TARGET_ARCH_LOONGARCH + config ADK_TOOLCHAIN_GCC_ARC bool "arc-2023.09" depends on ADK_TARGET_ARCH_ARC diff --git a/toolchain/gcc/Makefile.inc b/toolchain/gcc/Makefile.inc index 3218a44c5..6f111ffa2 100644 --- a/toolchain/gcc/Makefile.inc +++ b/toolchain/gcc/Makefile.inc @@ -66,6 +66,14 @@ PKG_RELEASE:= 1 DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz LIBSTDCXXVER:= 23 endif +ifeq ($(ADK_TOOLCHAIN_GCC_6),y) +PKG_VERSION:= 6.5.0 +PKG_HASH:= 4eed92b3c24af2e774de94e96993aadbf6761cdf7a0345e59eb826d20a9ebf73 +PKG_SITES:= ${MASTER_SITE_GNU:=gcc/gcc-${PKG_VERSION}/} +PKG_RELEASE:= 1 +DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz +LIBSTDCXXVER:= 22 +endif ifeq ($(ADK_TOOLCHAIN_GCC_ARC),y) PKG_VERSION:= arc-2023.09 PKG_GIT:= tag |