diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-01-07 16:02:59 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-01-07 16:02:59 +0000 |
commit | c228aeef612a34f3de9cb06a817481c4e5aa5c9d (patch) | |
tree | 9b76217585e7c18d0e3b98daefc5b19eb9ef1cb8 /package/devel/binutils | |
parent | 7f6af5ddc9512dbb9031d82533288884b6438834 (diff) | |
download | upstream-c228aeef612a34f3de9cb06a817481c4e5aa5c9d.tar.gz upstream-c228aeef612a34f3de9cb06a817481c4e5aa5c9d.tar.bz2 upstream-c228aeef612a34f3de9cb06a817481c4e5aa5c9d.zip |
package/binutils: actually support the target toolchain
This fixes a bug, where ld on ARM EABI platforms expects OABI code.
Signed-off-by: Harald Geyer <harald@ccbib.org>
SVN-Revision: 43866
Diffstat (limited to 'package/devel/binutils')
-rw-r--r-- | package/devel/binutils/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/devel/binutils/Makefile b/package/devel/binutils/Makefile index cf7769013c..c5a0717477 100644 --- a/package/devel/binutils/Makefile +++ b/package/devel/binutils/Makefile @@ -69,6 +69,8 @@ endef TARGET_CFLAGS += $(FPIC) -Wno-unused-value CONFIGURE_ARGS += \ + --host=$(REAL_GNU_TARGET_NAME) \ + --target=$(REAL_GNU_TARGET_NAME) \ --enable-shared \ --enable-install-libiberty \ --enable-install-libbfd |