tbb: update to 2022.3.0.

This commit is contained in:
Andrea Brancaleoni
2026-03-21 03:51:34 +01:00
parent 4fdf28e4cb
commit 1a184de752
3 changed files with 3 additions and 24 deletions
+1
View File
@@ -2556,6 +2556,7 @@ libanthy-unicode.so.0 libanthy-unicode-1.0.0.20201109_1
libanthydic-unicode.so.0 libanthy-unicode-1.0.0.20201109_1
libanthyinput-unicode.so.0 libanthy-unicode-1.0.0.20201109_1
libanthygobject-1.0.so.5 ibus-anthy-1.5.6_1
libirml.so.1 tbb-2022.3.0_1
libtbbmalloc_proxy.so.2 tbb-4.3_1
libtbbmalloc.so.2 tbb-4.3_1
libtbb.so.12 tbb-2021.11.0_1
@@ -1,22 +0,0 @@
From 65d46656f56200a7e89168824c4dbe4943421ff9 Mon Sep 17 00:00:00 2001
From: lmarz <main@lmarz.org>
Date: Wed, 2 Jul 2025 09:18:31 +0200
Subject: [PATCH] Only enable fcf-protection on x86 based processors (#1768)
---
cmake/compilers/GNU.cmake | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmake/compilers/GNU.cmake b/cmake/compilers/GNU.cmake
index 4f55209142..d9eb1c4576 100644
--- a/cmake/compilers/GNU.cmake
+++ b/cmake/compilers/GNU.cmake
@@ -107,7 +107,7 @@ endif ()
set(TBB_COMMON_COMPILE_FLAGS ${TBB_COMMON_COMPILE_FLAGS} -fno-strict-overflow -fno-delete-null-pointer-checks -fwrapv)
set(TBB_COMMON_COMPILE_FLAGS ${TBB_COMMON_COMPILE_FLAGS} -Wformat -Wformat-security -Werror=format-security
-fstack-protector-strong )
-if (NOT CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64" AND NOT EMSCRIPTEN)
+if (CMAKE_SYSTEM_PROCESSOR MATCHES "(AMD64|amd64|i.86|x86)" AND NOT EMSCRIPTEN)
set(TBB_LIB_COMPILE_FLAGS ${TBB_LIB_COMPILE_FLAGS} $<$<NOT:$<VERSION_LESS:${CMAKE_CXX_COMPILER_VERSION},8.0>>:-fcf-protection=full>)
endif ()
set(TBB_LIB_COMPILE_FLAGS ${TBB_LIB_COMPILE_FLAGS} $<$<NOT:$<VERSION_LESS:${CMAKE_CXX_COMPILER_VERSION},8.0>>:-fstack-clash-protection>)
+2 -2
View File
@@ -1,7 +1,7 @@
# Template file for 'tbb'
pkgname=tbb
version=2022.2.0
revision=3
version=2022.3.0
revision=1
build_style=cmake
configure_args="-DTBB_STRICT=OFF -DTBB_TEST=OFF"
makedepends="libgomp-devel libhwloc-devel"