Fixes critical issues for memset() & fflush() Changes: 5f7efb8 move IPPORT_RESERVED from netdb.h to netinet/in.h 5f3b652 add powerpc64 and s390x to list of supported archs in INSTALL file 9d4c902 fix undefined behavior in memset due to missing sequence points c7f56b4 __init_libc: add fallbacks for __progname setup cc08669 add SIOCGSTAMPNS socket ioctl macro to ioctl.h 02b50c9 fix mips ioctl macros to match linux asm/sockios.h 670d6d0 fix unsynchronized access to FILE structure in fflush(0) Tested on cns3xxx & imx6 Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Copyright (C) 2012-2013 OpenWrt.org
 | 
						|
#
 | 
						|
# This is free software, licensed under the GNU General Public License v2.
 | 
						|
# See /LICENSE for more information.
 | 
						|
#
 | 
						|
include $(TOPDIR)/rules.mk
 | 
						|
include $(INCLUDE_DIR)/target.mk
 | 
						|
 | 
						|
PKG_NAME:=musl
 | 
						|
PKG_VERSION:=1.1.16
 | 
						|
PKG_RELEASE=1
 | 
						|
 | 
						|
PKG_SOURCE_PROTO:=git
 | 
						|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
 | 
						|
PKG_SOURCE_VERSION:=5f7efb87a28a311ad377dd26adf53715dedb096d
 | 
						|
PKG_MIRROR_HASH:=da18ef24f270e5cae6bc4c440479da17bec1949ae5a1bc990352ca04f24c4378
 | 
						|
PKG_SOURCE_URL:=git://git.musl-libc.org/musl
 | 
						|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.xz
 | 
						|
 | 
						|
LIBC_SO_VERSION:=$(PKG_VERSION)
 | 
						|
PATCH_DIR:=$(PATH_PREFIX)/patches
 | 
						|
 | 
						|
HOST_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)-$(PKG_VERSION)
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/toolchain-build.mk
 | 
						|
include $(INCLUDE_DIR)/hardening.mk
 | 
						|
 | 
						|
MUSL_CONFIGURE:= \
 | 
						|
	$(TARGET_CONFIGURE_OPTS) \
 | 
						|
	CFLAGS="$(TARGET_CFLAGS)" \
 | 
						|
	CROSS_COMPILE="$(TARGET_CROSS)" \
 | 
						|
	$(HOST_BUILD_DIR)/configure \
 | 
						|
		--prefix=/ \
 | 
						|
		--host=$(GNU_HOST_NAME) \
 | 
						|
		--target=$(REAL_GNU_TARGET_NAME) \
 | 
						|
		--disable-gcc-wrapper \
 | 
						|
		--enable-debug
 | 
						|
 | 
						|
define Host/Prepare
 | 
						|
	$(call Host/Prepare/Default)
 | 
						|
	$(if $(strip $(QUILT)), \
 | 
						|
		cd $(HOST_BUILD_DIR); \
 | 
						|
		if $(QUILT_CMD) next >/dev/null 2>&1; then \
 | 
						|
			$(QUILT_CMD) push -a; \
 | 
						|
		fi
 | 
						|
	)
 | 
						|
	ln -snf $(PKG_NAME)-$(PKG_VERSION) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
 | 
						|
endef
 | 
						|
 | 
						|
define Host/Configure
 | 
						|
	( cd $(HOST_BUILD_DIR); rm -f config.cache; \
 | 
						|
		$(MUSL_CONFIGURE) \
 | 
						|
	);
 | 
						|
endef
 | 
						|
 | 
						|
define Host/Clean
 | 
						|
	rm -rf \
 | 
						|
		$(HOST_BUILD_DIR) \
 | 
						|
		$(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME) \
 | 
						|
		$(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev
 | 
						|
endef
 |