forked from Washington-University/workbench
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME_BUGS.txt
More file actions
26 lines (14 loc) · 855 Bytes
/
README_BUGS.txt
File metadata and controls
26 lines (14 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
**********************************************************************************
CMake Error in Tests/CMakeLists.txt:
No known features for CXX compiler
"Clang"
version 4.0.0.
---------------------------------------------------------------------------------
CMake does not recognize the compiler and it fails to find the compiler's
features. We have seen this problem with Clang 4.0.0 and Qt 5.7.0 on
Mac OS X. It is a documented Qt bug.
Qt Bug 5466: https://bugreports.qt.io/browse/QTBUG-54666
The solution with Qt 5.7.0 is:
(1) Edit <QTDIR>/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake
(2) Comment out the line "set_property(TARGET Qt5::Core PROPERTY INTERFACE_COMPILE_FEATURES cxx_decltype)" by placing a "#" at the beginning of the line.
**********************************************************************************