diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-12-27 12:59:53 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-12-27 12:59:53 +0000 |
commit | f4b6b84555ba69aee4d9b62eb49ef19ff27d083f (patch) | |
tree | 64b4909c079eb8545a58148ccfc7c633f9a3c524 | |
parent | 6ffd9465e0b8f2c61f023330c8eac8181d93b0ea (diff) | |
download | upstream-f4b6b84555ba69aee4d9b62eb49ef19ff27d083f.tar.gz upstream-f4b6b84555ba69aee4d9b62eb49ef19ff27d083f.tar.bz2 upstream-f4b6b84555ba69aee4d9b62eb49ef19ff27d083f.zip |
binutils: enable plugin support
--enable-plugin is necessary for gcc-ar, gcc-nm and gcc-ranlib to work, which
must be used with GCC 4.9 for LTO to work.
Without this option, gcc-ar etc. will just fail with
sorry - this program has been built without plugin support
Using the normal ar from binutils with GCC 4.9 and -flto will cause linking
with static "convenience" libraries to fail.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43783 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | toolchain/binutils/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toolchain/binutils/Makefile b/toolchain/binutils/Makefile index 820b5f8efa..8e661b98eb 100644 --- a/toolchain/binutils/Makefile +++ b/toolchain/binutils/Makefile @@ -41,6 +41,7 @@ BINUTILS_CONFIGURE:= \ --host=$(GNU_HOST_NAME) \ --target=$(REAL_GNU_TARGET_NAME) \ --with-sysroot=$(TOOLCHAIN_DIR) \ + --enable-plugins \ --disable-multilib \ --disable-werror \ --disable-nls \ |