Don't pass --with-build-sysroot with NATIVE build

This is not needed since we already have a native musl toolchain at our
disposal. Previously, since this flag was passed for NATIVE=1, the build would
fail because the build sysroot is only built for cross toolchains.
This commit is contained in:
Michael Forney 2016-12-03 01:28:50 -08:00
parent c3da5effaa
commit 97173cd74f
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,6 @@ FULL_TOOLCHAIN_CONFIG = --enable-languages=c,c++ \
--target=$(TARGET) --prefix= \
--libdir=/lib --disable-multilib \
--with-sysroot=$(SYSROOT) \
--with-build-sysroot=$(CURDIR)/obj_sysroot \
--enable-tls \
--disable-libmudflap --disable-libsanitizer \
--disable-gnu-indirect-function \
@ -64,6 +63,7 @@ FULL_MUSL_CONFIG = $(MUSL_CONFIG) \
ifeq ($(NATIVE),)
SYSROOT = /$(TARGET)
FULL_TOOLCHAIN_CONFIG += --with-build-sysroot=$(CURDIR)/obj_sysroot
FULL_MUSL_CONFIG += CC="$(XGCC)" LIBCC="../obj_toolchain/$(TARGET)/libgcc/libgcc.a"
MUSL_VARS = AR=../obj_toolchain/binutils/ar RANLIB=../obj_toolchain/binutils/ranlib
obj_musl/.lc_built: | obj_toolchain/$(TARGET)/libgcc/libgcc.a