This patch updates musl to 1.1.16+ [0] and removes all the backported patches. This is a major release and tagged as such. For more information visit musl-libc.org or read the WHATSNEW. Furthermore, this patch also changes musl to download directly from git. This makes it easier to update musl in the future. The patch custom Add-format-attribute-to-some-function-declarations.patch was assigned a new 400- number. This should avoid confusion since 0xx numbers are usually assigned to backports. [0] <http://git.musl-libc.org/cgit/musl/commit/?id=769f53598e781ffc89191520f3f8a93cb58db91f> Cc: Hannu Nyman <hannu.nyman@iki.fi> Cc: Koen Vandeputte <koen.vandeputte@ncentric.com> Cc: Jo-Philipp Wich <jo@mein.io> Cc: Hauke Mehrtens <hauke@hauke-m.de> Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.6 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:=$(call qstrip,$(CONFIG_MUSL_VERSION))
 | 
						|
PKG_RELEASE=1
 | 
						|
 | 
						|
PKG_SOURCE_PROTO:=git
 | 
						|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
 | 
						|
PKG_SOURCE_VERSION:=769f53598e781ffc89191520f3f8a93cb58db91f
 | 
						|
PKG_MIRROR_HASH:=c148c570cc46471ab30a1b36e96531519837e41c4347f3164bf610ab98741d80
 | 
						|
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
 |