diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-10-19 02:09:59 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-10-19 02:09:59 +0000 |
commit | 0aa409cc4d5952758e1576c2cdf0a71a626e5e96 (patch) | |
tree | 833af2329072275f3d93bad811b4b680e8097c91 /toolchain/binutils/Makefile | |
parent | 1c0fd705a61e72e315c96bec639b34ecc1c33494 (diff) |
add a binutils variant based on a binutils snapshot and codesourcery g++ enhancements (compiles, but fails to link the kernel)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18060 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/binutils/Makefile')
-rw-r--r-- | toolchain/binutils/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/toolchain/binutils/Makefile b/toolchain/binutils/Makefile index c9da2cfd78..7073507dee 100644 --- a/toolchain/binutils/Makefile +++ b/toolchain/binutils/Makefile @@ -8,6 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=binutils PKG_VERSION:=$(call qstrip,$(CONFIG_BINUTILS_VERSION)) +BIN_VERSION:=$(PKG_VERSION) PKG_SOURCE_URL:=@GNU/binutils/ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 @@ -18,6 +19,13 @@ endif ifeq ($(PKG_VERSION),2.19.1) PKG_MD5SUM:=09a8c5821a2dfdbb20665bc0bd680791 endif +ifeq ($(PKG_VERSION),2.19.1+cs) + BIN_VERSION:=20090205 + PKG_SOURCE:=$(PKG_NAME)-$(BIN_VERSION).tar.bz2 + PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources + PKG_MD5SUM:=040740e8c864dd1a15886753f9c0bc0b + HOST_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/binutils-$(BIN_VERSION) +endif PATCH_DIR:=./patches/$(PKG_VERSION) |