gperftools: update to 2.17.2
authorJohn Audia <[email protected]>
Tue, 2 Sep 2025 10:58:47 +0000 (06:58 -0400)
committerHannu Nyman <[email protected]>
Wed, 3 Sep 2025 16:47:26 +0000 (19:47 +0300)
Bump to latest release and removed upstreamed patch.

Resulting libs give a fully functional snort3 which was built against
this new version.

Build system: x86/64
Build-tested: x86/64-glibc
Run-tested: x86/64-glibc (Intel N150 based box)

Signed-off-by: John Audia <[email protected]>
libs/gperftools/Makefile
libs/gperftools/patches/100-stacktrace_libgcc-inl.h-fix-build-for-some-ARM-toolc.patch [deleted file]

index c3bc2eac738ff8834ceda25a53d4576907ede3ed..1274aa5bdc12f1ec2427eae9a3bda44fda2e6765 100644 (file)
@@ -1,12 +1,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=gperftools
-PKG_VERSION:=2.17
+PKG_VERSION:=2.17.2
 PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=https://codeload.github.com/gperftools/gperftools/tar.gz/$(PKG_NAME)-$(PKG_VERSION)?
-PKG_HASH:=1ccb7ef8ebd1033906e6247a89992b26986401cc1777c07cc63773463a996072
+PKG_HASH:=885dbbf1f25a922de0cdc78b0703c3ab93c43850e1d2f7c889e41be7c824c53d
 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_NAME)-$(PKG_VERSION)
 
 PKG_MAINTAINER:=John Audia <[email protected]>
diff --git a/libs/gperftools/patches/100-stacktrace_libgcc-inl.h-fix-build-for-some-ARM-toolc.patch b/libs/gperftools/patches/100-stacktrace_libgcc-inl.h-fix-build-for-some-ARM-toolc.patch
deleted file mode 100644 (file)
index 7ae9499..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-From 2d277134c4b5c56d1c2912330aa44160af52aadf Mon Sep 17 00:00:00 2001
-From: graysky <therealgraysky AT proton DOT me>
-Date: Thu, 7 Aug 2025 02:35:01 -0400
-Subject: [PATCH] stacktrace_libgcc-inl.h: fix build for some ARM toolchains
-
-On OpenWrt when bulding for arm_cortex-a15_neon-vpfv4 or
-arm_cortex-a9_vfpv3-d16, the build errors out due to an undefined symbol
-_URC_NORMAL_STOP. This usually happens when the required header
-(typically <unwind.h>) is not included, or the toolchain's unwind
-implementation does not provide this definition.
-
-Error:
-src/stacktrace_libgcc-inl.h: In function '_Unwind_Reason_Code libgcc_backtrace_helper(_Unwind_Context*, void*)':
-src/stacktrace_libgcc-inl.h:69:12: error: '_URC_NORMAL_STOP' was not declared in this scope
-   69 |     return _URC_NORMAL_STOP;
-      |
-
-A work-around is to use URC_END_OF_STACK.
-
-Signed-off-by: graysky <therealgraysky AT proton DOT me>
----
- src/stacktrace_libgcc-inl.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/src/stacktrace_libgcc-inl.h
-+++ b/src/stacktrace_libgcc-inl.h
-@@ -66,7 +66,7 @@ static _Unwind_Reason_Code libgcc_backtr
-   }
-   if (data->pos >= data->limit) {
--    return _URC_NORMAL_STOP;
-+    return _URC_END_OF_STACK;
-   }
-   void *ip = reinterpret_cast<void *>(_Unwind_GetIP(ctx));;