aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsilvanshade <[email protected]>2025-04-08 20:02:10 -0600
committerHenrik Gaßmann <[email protected]>2025-04-17 16:53:08 +0200
commit0a56e1973a89ff06eae2ef069196c73dac6b3c54 (patch)
treea35dc5530962693d1e0a9df6629a0b564f94e680
parent2de3cb1a21d09cdee4c8b6b14513063198cf1b82 (diff)
Remove compiler check for TBB feature
Compilation may work with other configurations such as MinGW under the right circumstances.
-rw-r--r--c/dependencies/tbb/CMakeLists.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/c/dependencies/tbb/CMakeLists.txt b/c/dependencies/tbb/CMakeLists.txt
index 0f51395..dfae2ed 100644
--- a/c/dependencies/tbb/CMakeLists.txt
+++ b/c/dependencies/tbb/CMakeLists.txt
@@ -1,8 +1,3 @@
-if(WIN32 AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
- message(FATAL_ERROR "BLAKE3_USE_TBB requires building with Clang or MSVC on Windows")
- set(BLAKE3_USE_TBB OFF)
-endif()
-
find_package(TBB 2021.11.0 QUIET)
if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.11)