From 7bca15ddc05c01d7161f129ab1ac6d9c187fd9a9 Mon Sep 17 00:00:00 2001 From: Debian Science Maintainers Date: Tue, 16 May 2023 11:23:01 +0100 Subject: [PATCH] 776 https://github.com/oneapi-src/oneTBB/issues/776 Gbp-Pq: Name 776.diff --- src/tbb/tools_api/ittnotify_config.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/tbb/tools_api/ittnotify_config.h b/src/tbb/tools_api/ittnotify_config.h index 411de08..86018f0 100644 --- a/src/tbb/tools_api/ittnotify_config.h +++ b/src/tbb/tools_api/ittnotify_config.h @@ -175,6 +175,10 @@ # define ITT_ARCH_HPPA 9 #endif /* ITT_ARCH_HPPA */ +#ifndef ITT_ARCH_GENERIC +# define ITT_ARCH_GENERIC 99 +#endif /* ITT_ARCH_GENERIC */ + #ifndef ITT_ARCH # if defined _M_IX86 || defined __i386__ # define ITT_ARCH ITT_ARCH_IA32 @@ -194,6 +198,8 @@ # define ITT_ARCH ITT_ARCH_S390X # elif defined __hppa__ # define ITT_ARCH ITT_ARCH_HPPA +# else +# define ITT_ARCH ITT_ARCH_GENERIC # endif #endif -- 2.30.2