From 31a58b50ec97ebd0c13dce9998da2cd413d9d52e Mon Sep 17 00:00:00 2001 From: AlexandreSinger Date: Thu, 3 Jul 2025 15:41:44 -0400 Subject: [PATCH] [Build] Fixed Issue in Rhel9 Build The rhel9 build of VTR is unable to resolve the "onetbb" prefix in the include path for tbb. This is easily resolved by just removing this prefix. --- vpr/src/route/route_utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vpr/src/route/route_utils.cpp b/vpr/src/route/route_utils.cpp index 24133023ee..8f86050aa3 100644 --- a/vpr/src/route/route_utils.cpp +++ b/vpr/src/route/route_utils.cpp @@ -20,8 +20,8 @@ #include "timing_util.h" #ifdef VPR_USE_TBB -#include -#include +#include +#include #endif // VPR_USE_TBB #ifndef NO_GRAPHICS