diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-06-30 18:12:15 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-06-30 18:12:15 +0000 |
commit | e74e4dbd29f86f25da1285c574b8587e1626a585 (patch) | |
tree | ea946200c53429938a8be7c3083719cf96a10a4e /toolchain/binutils/Makefile | |
parent | b2e5c5f82e2c0340649d514bfb3bb6382ae39041 (diff) | |
download | upstream-e74e4dbd29f86f25da1285c574b8587e1626a585.tar.gz upstream-e74e4dbd29f86f25da1285c574b8587e1626a585.tar.bz2 upstream-e74e4dbd29f86f25da1285c574b8587e1626a585.zip |
toolchain: keep the initial gcc around for later uclibc rebuilds
testing uclibc changes is tricky because the final gcc tends to miscompile
uclibc code or barf up internal compiler errors.
install binutils into $(TOOLCHAIN_DIR)/initial (without changing the configure
prefix) and copy it from there to $(TOOLCHAIN_DIR)/ so that the initial gcc
can be put into $(PATH) for the uclibc build, even if the final gcc
is already installed.
SVN-Revision: 32553
Diffstat (limited to 'toolchain/binutils/Makefile')
-rw-r--r-- | toolchain/binutils/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/toolchain/binutils/Makefile b/toolchain/binutils/Makefile index 0022202d4b..9d12721dec 100644 --- a/toolchain/binutils/Makefile +++ b/toolchain/binutils/Makefile @@ -79,7 +79,11 @@ define Host/Compile endef define Host/Install - $(MAKE) -C $(HOST_BUILD_DIR) install + mkdir -p $(TOOLCHAIN_DIR)/initial + $(MAKE) -C $(HOST_BUILD_DIR) \ + prefix=$(TOOLCHAIN_DIR)/initial \ + install + $(CP) $(TOOLCHAIN_DIR)/initial/. $(TOOLCHAIN_DIR)/ $(CP) $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-readelf $(REAL_STAGING_DIR_HOST)/bin/readelf endef |