diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-17 09:55:20 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-17 09:55:20 +0100 |
commit | 6c26b8016dda0c391a3a513c46998e16ce09cc4d (patch) | |
tree | 5eefe48db6a191c406789e786707a220282ea67c /toolchain | |
parent | 521eddfc1e29218e26e3080c095a519ea3f8156d (diff) |
use gcc 4.7.3 for sparc, 4.8.2 breaks kernel bootup, minor cleanup
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/gcc/Makefile.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/toolchain/gcc/Makefile.inc b/toolchain/gcc/Makefile.inc index 86a0a5992..25e51178a 100644 --- a/toolchain/gcc/Makefile.inc +++ b/toolchain/gcc/Makefile.inc @@ -2,8 +2,13 @@ # material, please see the LICENCE file in the top-level directory. PKG_NAME:= gcc +ifeq ($(ADK_LINUX_SPARC),y) +PKG_VERSION:= 4.7.3 +PKG_MD5SUM:= 86f428a30379bdee0224e353ee2f999e +else PKG_VERSION:= 4.8.2 PKG_MD5SUM:= a3d7d63b9cb6b6ea049469a0c4a43c9d +endif PKG_RELEASE:= 1 PKG_SITES:= ${MASTER_SITE_GNU:=gcc/gcc-${PKG_VERSION}/} DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.bz2 |