summaryrefslogtreecommitdiffstats
path: root/toolchain/gcc/minimal/Makefile
blob: 31d6f675abe134e1b2e3ffe1bc5a681c09d2ad95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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))