aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/gcc/initial/Makefile
blob: 7cb4a73dbce0f7813ff956178e3b942ec738b1d4 (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
GCC_VARIANT:=initial
GCC_PREPARE=$(CONFIG_USE_MUSL)

include ../common.mk

GCC_CONFIGURE += \
	--with-newlib \
	--with-sysroot=$(TOOLCHAIN_DIR) \
	--enable-languages=c \
	--disable-shared \
	--disable-threads \

define Host/Compile
	+$(GCC_MAKE) $(HOST_JOBS) -C $(GCC_BUILD_DIR) \
		all-build-libiberty \
		all-gcc \
		all-target-libgcc
endef

define Host/Install
	+$(GCC_MAKE) $(HOST_JOBS) -C $(GCC_BUILD_DIR) \
		install-gcc \
		install-target-libgcc

	$(call FixupLibdir,$(TOOLCHAIN_DIR))
endef

$(eval $(call HostBuild))