diff options
author | Alexandros C. Couloumbis <alex@ozo.com> | 2010-04-19 15:43:08 +0000 |
---|---|---|
committer | Alexandros C. Couloumbis <alex@ozo.com> | 2010-04-19 15:43:08 +0000 |
commit | 6d59a298e848fc0638920e711b1481b4b7afa18c (patch) | |
tree | ba394c3a3587ba2faec9cff7415788c192ca6d3b /tools/Makefile | |
parent | 26cd3eed25919ae06ed6bb1106b1d65a00aae8eb (diff) | |
download | upstream-6d59a298e848fc0638920e711b1481b4b7afa18c.tar.gz upstream-6d59a298e848fc0638920e711b1481b4b7afa18c.tar.bz2 upstream-6d59a298e848fc0638920e711b1481b4b7afa18c.zip |
add gcc-4.5.0 preliminary support
SVN-Revision: 21033
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile index 8fc2da3d96..cad5011c30 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -11,8 +11,12 @@ curdir:=tools # subdirectories to descend into tools-y := ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),) +ifeq ($(CONFIG_GCC_VERSION_4_5),y) +tools-$(CONFIG_GCC_VERSION_4_5) += gmp mpfr mpc +else tools-$(CONFIG_GCC_VERSION_4_3)$(CONFIG_GCC_VERSION_4_4) += gmp mpfr endif +endif tools-y += m4 autoconf automake bison pkg-config sed mklibs tools-y += sstrip ipkg-utils genext2fs libuuid mtd-utils mkimage tools-y += firmware-utils patch-cmdline quilt yaffs2 @@ -40,6 +44,7 @@ $(curdir)/quilt/compile := $(curdir)/sed/install $(curdir)/dtc/compile := $(curdir)/bison/install $(curdir)/autoconf/compile := $(curdir)/m4/install $(curdir)/automake/compile := $(curdir)/m4/install $(curdir)/autoconf/install +$(curdir)/mpc/compile := $(curdir)/gmp/install $(curdir)/mpfr/compile := $(curdir)/gmp/install $(curdir)/mtd-utils/compile := $(curdir)/libuuid/install |