Skip to content

Commit 31a58b5

Browse files
[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.
1 parent 29cc58d commit 31a58b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vpr/src/route/route_utils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
#include "timing_util.h"
2121

2222
#ifdef VPR_USE_TBB
23-
#include <oneapi/tbb/combinable.h>
24-
#include <oneapi/tbb/parallel_for_each.h>
23+
#include <tbb/combinable.h>
24+
#include <tbb/parallel_for_each.h>
2525
#endif // VPR_USE_TBB
2626

2727
#ifndef NO_GRAPHICS

0 commit comments

Comments
 (0)