diff --git a/build/pkgs/onetbb/checksums.ini b/build/pkgs/onetbb/checksums.ini index 5ff81545b4b..69e7ed4d027 100644 --- a/build/pkgs/onetbb/checksums.ini +++ b/build/pkgs/onetbb/checksums.ini @@ -1,5 +1,5 @@ tarball=onetbb-VERSION.tar.gz -sha1=e4be99dc35948052296105d2ae7da6d34e01ba2d -md5=68e617448f71df02d8688c84d53778f6 -cksum=1573392748 +sha1=b991f5d882aba2182871cfe011614cc43b92aa3c +md5=ba4ecedc4949f673a34b35de738a72fc +cksum=211900655 upstream_url=https://github.com/oneapi-src/oneTBB/archive/refs/tags/vVERSION.tar.gz diff --git a/build/pkgs/onetbb/package-version.txt b/build/pkgs/onetbb/package-version.txt index a489944aae9..a6513d2ae59 100644 --- a/build/pkgs/onetbb/package-version.txt +++ b/build/pkgs/onetbb/package-version.txt @@ -1 +1 @@ -2021.7.0 +2021.9.0 diff --git a/build/pkgs/onetbb/patches/gcc13-154cc73ca4d359621202399cc0c3c91058e56e79.patch b/build/pkgs/onetbb/patches/gcc13-154cc73ca4d359621202399cc0c3c91058e56e79.patch new file mode 100644 index 00000000000..a2e4d939311 --- /dev/null +++ b/build/pkgs/onetbb/patches/gcc13-154cc73ca4d359621202399cc0c3c91058e56e79.patch @@ -0,0 +1,36 @@ +From 154cc73ca4d359621202399cc0c3c91058e56e79 Mon Sep 17 00:00:00 2001 +From: Sam James +Date: Wed, 22 Feb 2023 14:16:46 +0000 +Subject: [PATCH] test: common: include for abort() (fix build with + GCC 13) (#1031) + +GCC 13 (as usual for new compiler releases) shuffles around some +internal includes and so etc is no longer transitively included. + +See https://www.gnu.org/software/gcc/gcc-13/porting_to.html. + +Signed-off-by: Sam James +--- + test/common/utils_assert.h | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git a/test/common/utils_assert.h b/test/common/utils_assert.h +index 1df8ae72ac..0123ab881e 100644 +--- a/test/common/utils_assert.h ++++ b/test/common/utils_assert.h +@@ -1,5 +1,5 @@ + /* +- Copyright (c) 2005-2022 Intel Corporation ++ Copyright (c) 2005-2023 Intel Corporation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. +@@ -20,6 +20,8 @@ + #include "config.h" + #include "utils_report.h" + ++#include ++ + #define REPORT_FATAL_ERROR REPORT + + namespace utils {