From 833c1b57746856723dd297183ad5f712ef7308c0 Mon Sep 17 00:00:00 2001 From: Nikolaus Demmel Date: Fri, 15 Oct 2021 17:32:53 +0200 Subject: [PATCH] update cmake output regardin clang on linux --- CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 854de25..7c3a78f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -174,9 +174,11 @@ elseif(UNIX) set(STD_CXX_FS stdc++fs) if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") - set(LINUX_CLANG 1) message(STATUS "Detected Linux with clang.") - message(WARNING "Clang on Linux is currently not fully supported. You'll likely need to get a recent version of TBB.") + + # Note: Whatever the issue was, this seems to not be an issue any more, at least with more recent clang and Ubuntu versions (tested clang-12 and Ubuntu 18.04) + #message(WARNING "Clang on Linux is currently not fully supported. You'll likely need to get a recent version of TBB.") + #set(LINUX_CLANG 1) elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") message(STATUS "Detected Linux with gcc.")