litecross: Pass --enable-deterministic-archives to binutils, not gcc
When the gcc and binutils build trees were separated indefdbb4505
, --enable-deterministic-archives was accidentally left in FULL_GCC_CONFIG. This had the effect of reverting commite83fe4b8ce
, breaking reproducible builds (unless it was specified explicitly in config.mak).
This commit is contained in:
parent
96bd58ce57
commit
a14e91fef8
|
@ -61,7 +61,8 @@ FULL_BINUTILS_CONFIG = \
|
|||
--disable-werror \
|
||||
--target=$(TARGET) --prefix= \
|
||||
--libdir=/lib --disable-multilib \
|
||||
--with-sysroot=$(SYSROOT)
|
||||
--with-sysroot=$(SYSROOT) \
|
||||
--enable-deterministic-archives
|
||||
|
||||
FULL_GCC_CONFIG = --enable-languages=c,c++ \
|
||||
$(GCC_CONFIG_FOR_TARGET) \
|
||||
|
@ -74,7 +75,6 @@ FULL_GCC_CONFIG = --enable-languages=c,c++ \
|
|||
--disable-libmudflap --disable-libsanitizer \
|
||||
--disable-gnu-indirect-function \
|
||||
--disable-libmpx \
|
||||
--enable-deterministic-archives \
|
||||
--enable-libstdcxx-time
|
||||
|
||||
FULL_MUSL_CONFIG = $(MUSL_CONFIG) \
|
||||
|
|
Loading…
Reference in New Issue