74c9b9cfeb
No extra libc header build step is done, so no extra toolchain is needed for preparing it. This saves a significant amount of build time and disk space Signed-off-by: Felix Fietkau <nbd@nbd.name>
30 lines
547 B
Makefile
30 lines
547 B
Makefile
GCC_VARIANT:=minimal
|
|
GCC_PREPARE=$(if $(CONFIG_USE_MUSL),,1)
|
|
|
|
include ../common.mk
|
|
|
|
GCC_CONFIGURE += \
|
|
--with-newlib \
|
|
--without-headers \
|
|
--enable-languages=c \
|
|
--disable-libsanitizer \
|
|
--disable-libssp \
|
|
--disable-shared \
|
|
--disable-threads
|
|
|
|
define Host/Compile
|
|
+$(GCC_MAKE) $(HOST_JOBS) -C $(GCC_BUILD_DIR) all-gcc all-target-libgcc
|
|
endef
|
|
|
|
define Host/Install
|
|
$(GCC_MAKE) -C $(GCC_BUILD_DIR) install-gcc install-target-libgcc
|
|
endef
|
|
|
|
define Host/Clean
|
|
rm -rf \
|
|
$(HOST_BUILD_DIR) \
|
|
$(GCC_BUILD_DIR)
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|