mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	It's the eglibc packaging with a bit of spit-polishing. And testing. :-) [blogic: merged glibc and eglibc into 1 and made eglibc a glibc variant] Signed-off-by: Jeff Waugh <jdub@bethesignal.org> Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 44701
		
			
				
	
	
		
			28 lines
		
	
	
		
			673 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			673 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PATH_PREFIX:=..
 | 
						|
VARIANT:=headers
 | 
						|
 | 
						|
include ../common.mk
 | 
						|
 | 
						|
define Host/Compile
 | 
						|
 | 
						|
endef
 | 
						|
 | 
						|
define Host/Install
 | 
						|
	$(call Host/SetToolchainInfo)
 | 
						|
	mkdir -p $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/{include,lib}
 | 
						|
	$(MAKE) -C $(CUR_BUILD_DIR) \
 | 
						|
		BUILD_CFLAGS="$(HOST_CFLAGS)" \
 | 
						|
		install_root="$(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev" \
 | 
						|
		install-bootstrap-headers=yes \
 | 
						|
		install-headers
 | 
						|
	$(MAKE) -C $(CUR_BUILD_DIR) \
 | 
						|
		csu/subdir_lib
 | 
						|
	( cd $(CUR_BUILD_DIR); \
 | 
						|
		$(CP) csu/crt1.o csu/crti.o csu/crtn.o $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/lib/ \
 | 
						|
	)
 | 
						|
	$(TARGET_CC) -nostdlib -nostartfiles -shared -x c /dev/null \
 | 
						|
		-o $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/lib/libc.so
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call HostBuild))
 |