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:
parent
c3da5effaa
commit
97173cd74f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue