[intel-tbb] support for building 2020.3 with icx (for dyninst) (#38610)

This commit is contained in:
Robert Cohn 2023-06-28 14:08:12 -04:00 committed by GitHub
parent 95fffe16a8
commit ccae0ad534
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,21 @@
diff --git a/build/linux.gcc.inc b/build/linux.gcc.inc
index d820c15d..a20d52ba 100644
--- a/build/linux.gcc.inc
+++ b/build/linux.gcc.inc
@@ -54,14 +54,14 @@ endif
ifneq (,$(shell $(CONLY) -dumpfullversion -dumpversion | egrep "^([5-9]|1[0-9])"))
# enable -Wsuggest-override via a pre-included header in order to limit to C++11 and above
INCLUDE_TEST_HEADERS = -include $(tbb_root)/src/test/harness_preload.h
- WARNING_SUPPRESS += -Wno-sized-deallocation
+ #WARNING_SUPPRESS += -Wno-sized-deallocation
endif
# gcc 6.0 and later have -flifetime-dse option that controls
# elimination of stores done outside the object lifetime
ifneq (,$(shell $(CONLY) -dumpfullversion -dumpversion | egrep "^([6-9]|1[0-9])"))
# keep pre-contruction stores for zero initialization
- DSE_KEY = -flifetime-dse=1
+ #DSE_KEY = -flifetime-dse=1
endif
ifeq ($(cfg), release)

View File

@ -144,6 +144,9 @@ class IntelTbb(CMakePackage, MakefilePackage):
# https://github.com/oneapi-src/oneTBB/commit/86f6dcdc17a8f5ef2382faaef860cfa5243984fe.patch?full_index=1
patch("macos-arm64.patch", when="@:2021.0")
# build older tbb with %oneapi
patch("intel-tbb.2020.3-icx.patch", when="@2020.3 %oneapi")
# Support for building with %nvhpc
# 1) remove flags nvhpc compilers do not recognize
patch("intel-tbb.nvhpc-remove-flags.2017.patch", when="@2017:2018.9 %nvhpc")