Details
-
Bug
-
Resolution: Invalid
-
P2: Important
-
None
-
Qt Creator 4.5.0, Qt Creator 4.6.0-beta1
-
Fedora 27, Clang v5.0.1, Qt Creator 4.6.0 Beta1-1871
Description
I'm running Clang v5.0.1, originally on Qt Creator 4.5.0, but it behaves the same on 4.6.0 Beta1-1871. A simple hello-world application:
#include <iostream> int main(int, char*[]) { std::cout << "Hello World" << std::endl; return EXIT_SUCCESS; }
This obviously compiles and runs fine under GCC, but the CCM marks every line as some kind of error. Enabling CCM debug for Qt Creator reveals some interesting things: Clang cannot seem to find a header file despite looking in the correct place:
... #include "..." search starts here: #include <...> search starts here: /home/cmannett85/workspace/qtcreator-4.6.0-beta1/libexec/qtcreator/clang/lib/clang/5.0.1/include /home/cmannett85/workspace/qtcreator-4.6.0-beta1/share/qtcreator/cplusplus/wrappedQtHeaders /home/cmannett85/workspace/qtcreator-4.6.0-beta1/share/qtcreator/cplusplus/wrappedQtHeaders/QtCore /home/cmannett85/workspace/calrec/scratch /home/cmannett85/workspace/calrec /usr/local/include /usr/include /usr/include/c++/7 /usr/include/c++/7/x86_64-redhat-linux /usr/include/c++/7/backward /usr/lib/gcc/x86_64-redhat-linux/7/include /tmp/QtCreator-mBdlxZ/clang-uiheader-UUGInf End of search list. Parsing /home/cmannett85/workspace/calrec/scratch/main.cpp: 0.1768 (100.0%) 0.0106 (100.0%) 0.1874 (100.0%) 0.1895 (100.0%) /usr/include/c++/7/cstdlib:75:15: fatal error: 'stdlib.h' file not found ...
stdlib.h is in /usr/include, but for some reason Clang just doesn't see it. I've attached the complete clang debug output.
Attachments
Issue Links
- is replaced by
-
QTCREATORBUG-20231 clang code model has trouble finding clang include files when using libc++
-
- Closed
-