b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2008-2013 OpenWrt.org |
| 3 | # Copyright (C) 2017-2019 Yousong Zhou <yszhou4tech@gmail.com> |
| 4 | # |
| 5 | # This is free software, licensed under the GNU General Public License v2. |
| 6 | # See /LICENSE for more information. |
| 7 | # |
| 8 | |
| 9 | include $(TOPDIR)/rules.mk |
| 10 | |
| 11 | PKG_NAME:=libunwind |
| 12 | PKG_VERSION:=1.8.1 |
| 13 | PKG_RELEASE:=1 |
| 14 | |
| 15 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz |
| 16 | PKG_SOURCE_URL:=https://github.com/$(PKG_NAME)/$(PKG_NAME)/releases/download/v$(PKG_VERSION)/ |
| 17 | PKG_HASH:=ddf0e32dd5fafe5283198d37e4bf9decf7ba1770b6e7e006c33e6df79e6a6157 |
| 18 | |
| 19 | PKG_MAINTAINER:=Yousong Zhou <yszhou4tech@gmail.com> |
| 20 | PKG_LICENSE:=X11 |
| 21 | PKG_LICENSE_FILES:=LICENSE |
| 22 | PKG_CPE_ID:=cpe:/a:libunwind_project:libunwind |
| 23 | |
| 24 | PKG_FIXUP:=autoreconf |
| 25 | PKG_INSTALL:=1 |
| 26 | PKG_BUILD_PARALLEL:=1 |
| 27 | |
| 28 | include $(INCLUDE_DIR)/package.mk |
| 29 | |
| 30 | define Package/libunwind |
| 31 | SECTION:=libs |
| 32 | CATEGORY:=Libraries |
| 33 | TITLE:=The libunwind project |
| 34 | URL:=http://www.nongnu.org/libunwind/ |
| 35 | DEPENDS:=@((mips||mipsel||mips64||powerpc64||x86_64||arm||aarch64||loongarch64)||(USE_GLIBC&&(powerpc||i386))) +zlib |
| 36 | ABI_VERSION:=8 |
| 37 | endef |
| 38 | |
| 39 | define Package/libunwind/description |
| 40 | Libunwind defines a portable and efficient C programming interface (API) to determine the call-chain of a program. |
| 41 | endef |
| 42 | |
| 43 | CONFIGURE_ARGS += \ |
| 44 | --disable-documentation \ |
| 45 | --disable-tests \ |
| 46 | --disable-minidebuginfo |
| 47 | |
| 48 | TARGET_LDFLAGS += $(if $(CONFIG_USE_MUSL),-lssp_nonshared) |
| 49 | |
| 50 | define Package/libunwind/install |
| 51 | $(INSTALL_DIR) $(1)/usr/lib |
| 52 | $(CP) $(PKG_INSTALL_DIR)/usr/lib/libunwin*.so.* $(1)/usr/lib/ |
| 53 | endef |
| 54 | |
| 55 | define Build/InstallDev |
| 56 | $(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib/pkgconfig |
| 57 | $(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include |
| 58 | $(CP) $(PKG_INSTALL_DIR)/usr/lib/libunwin*.so* $(1)/usr/lib |
| 59 | $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/ |
| 60 | endef |
| 61 | |
| 62 | $(eval $(call BuildPackage,libunwind)) |