default binutils to disable compressed debug info

compressed debug info section is a relatively new feature, and having it on
by default causes link errors when the built libraries (most notably libgcc)
are later used with an older binutils version (for example binutils 2.27,
which was mcm's default version until just recently).
This commit is contained in:
rofl0r 2019-08-16 18:03:03 +01:00
parent d969dea983
commit 008e910e96
1 changed files with 1 additions and 0 deletions

View File

@ -63,6 +63,7 @@ FULL_BINUTILS_CONFIG = \
--target=$(TARGET) --prefix= \
--libdir=/lib --disable-multilib \
--with-sysroot=$(SYSROOT) \
--enable-compressed-debug-sections=none \
--enable-deterministic-archives
FULL_GCC_CONFIG = --enable-languages=c,c++ \