From 463cd3e669b87a7bae84cc4d023072a7572771fc Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 3 Feb 2020 01:07:22 -0500 Subject: [PATCH] pass --disable-bootstrap to gcc this should be a nop since we're either building a cross compiler or cross compiling, but due to recent gcc's config.guess detecting musl, it's possible to spuriously get $build=$host=$target, and then the dreaded bootstrap procedure runs and breaks the output. --- litecross/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/litecross/Makefile b/litecross/Makefile index cfe3fae..d0fbe0c 100644 --- a/litecross/Makefile +++ b/litecross/Makefile @@ -68,6 +68,7 @@ FULL_BINUTILS_CONFIG = \ FULL_GCC_CONFIG = --enable-languages=c,c++ \ $(GCC_CONFIG_FOR_TARGET) \ $(COMMON_CONFIG) $(GCC_CONFIG) $(TOOLCHAIN_CONFIG) \ + --disable-bootstrap \ --disable-werror \ --target=$(TARGET) --prefix= \ --libdir=/lib --disable-multilib \