Libunwind provides a sigreturn stub for x86 in version 1.2 [1].  However
the arch still depends on setcontext() which is unavailable in musl-libc
and which is supposed to be "deprecated everywhere" [2]
 [1] x86 sigreturn unimplemented for some libcs,
     https://github.com/libunwind/libunwind/issues/13
 [2] setcontext deprecated on x86,
     https://github.com/libunwind/libunwind/issues/69
Refs: https://github.com/openwrt/packages/issues/8548#issuecomment-497791552
Reported-by: Rosen Penev <rosenp@gmail.com>
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
		
	
			
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Copyright (C) 2008-2013 OpenWrt.org
 | |
| # Copyright (C) 2017-2019 Yousong Zhou <yszhou4tech@gmail.com>
 | |
| #
 | |
| # This is free software, licensed under the GNU General Public License v2.
 | |
| # See /LICENSE for more information.
 | |
| #
 | |
| 
 | |
| include $(TOPDIR)/rules.mk
 | |
| 
 | |
| PKG_NAME:=libunwind
 | |
| PKG_VERSION:=1.3.1
 | |
| PKG_RELEASE:=1
 | |
| 
 | |
| PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 | |
| PKG_SOURCE_URL:=@SAVANNAH/$(PKG_NAME)
 | |
| PKG_HASH:=43997a3939b6ccdf2f669b50fdb8a4d3205374728c2923ddc2354c65260214f8
 | |
| PKG_FIXUP:=autoreconf
 | |
| PKG_INSTALL:=1
 | |
| 
 | |
| PKG_LICENSE:=X11
 | |
| PKG_LICENSE_FILES:=LICENSE
 | |
| PKG_CPE_ID:=cpe:/a:libunwind_project:libunwind
 | |
| 
 | |
| PKG_MAINTAINER:=Yousong Zhou <yszhou4tech@gmail.com>
 | |
| 
 | |
| PKG_SSP:=0
 | |
| include $(INCLUDE_DIR)/package.mk
 | |
| 
 | |
| define Package/libunwind
 | |
|   SECTION:=libs
 | |
|   CATEGORY:=Libraries
 | |
|   TITLE:=The libunwind project
 | |
|   URL:=http://www.nongnu.org/libunwind/
 | |
|   DEPENDS:=@((mips||mipsel||x86_64||arm||aarch64)||(USE_GLIBC&&(powerpc||i386)))
 | |
|   ABI_VERSION:=8
 | |
| endef
 | |
| 
 | |
| define Package/libunwind/description
 | |
|   Libunwind defines a portable and efficient C programming interface (API) to determine the call-chain of a program.
 | |
| endef
 | |
| 
 | |
| CONFIGURE_ARGS += \
 | |
| 	--disable-documentation \
 | |
| 	--disable-tests \
 | |
| 	--enable-minidebuginfo=no \
 | |
| 
 | |
| 
 | |
| define Package/libunwind/install
 | |
| 	$(INSTALL_DIR) $(1)/usr/lib
 | |
| 	$(CP) $(PKG_INSTALL_DIR)/usr/lib/libunwin*.so.* $(1)/usr/lib/
 | |
| endef
 | |
| 
 | |
| define Build/InstallDev
 | |
| 	$(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib/pkgconfig
 | |
| 	$(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include
 | |
| 	$(CP) $(PKG_INSTALL_DIR)/usr/lib/libunwin*.so* $(1)/usr/lib
 | |
| 	$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/
 | |
| endef
 | |
| 
 | |
| $(eval $(call BuildPackage,libunwind))
 |