mirror of
				https://github.com/cjdelisle/openwrt.git
				synced 2025-10-31 02:35:47 +00:00 
			
		
		
		
	This reverts commit 57841c83d9.
This is completely breaking the inital GCC configuration and most likely
was not even compile tested, so revert until fixed.
Signed-off-by: Robert Marko <robimarko@gmail.com>
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			525 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			525 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 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))
 |