diff options
author | Steven Barth <cyrus@openwrt.org> | 2015-06-29 06:47:42 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2015-06-29 06:47:42 +0000 |
commit | 9caaed9141b25f841c15a440f0c9d2faf68d0dad (patch) | |
tree | 59f559f9c115ba054e6d3d24d7c1be0dc3785244 /toolchain | |
parent | a47a5dd28df93d81b9c2f51e7c1d5059e7b836ca (diff) | |
download | upstream-9caaed9141b25f841c15a440f0c9d2faf68d0dad.tar.gz upstream-9caaed9141b25f841c15a440f0c9d2faf68d0dad.tar.bz2 upstream-9caaed9141b25f841c15a440f0c9d2faf68d0dad.zip |
toolchain: binutils: enhance build reproducability
built toolchain utilities will always operate in deterministic mode:
https://sourceware.org/binutils/docs-2.25/binutils/ar-cmdline.html
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
SVN-Revision: 46137
Diffstat (limited to 'toolchain')
-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 9043db713f..02765126e9 100644 --- a/toolchain/binutils/Makefile +++ b/toolchain/binutils/Makefile @@ -32,6 +32,7 @@ BINUTILS_CONFIGURE:= \ --host=$(GNU_HOST_NAME) \ --target=$(REAL_GNU_TARGET_NAME) \ --with-sysroot=$(TOOLCHAIN_DIR) \ + --enable-deterministic-archives \ --enable-plugins \ --disable-multilib \ --disable-werror \ |