<table><tr><td style="">mwolff created this revision.<br />Restricted Application added a subscriber: kdevelop-devel.<br />mwolff requested review of this revision.
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D12331">View Revision</a></tr></table><br /><div><strong>REVISION SUMMARY</strong><div><p>When we try to parse GCC builtin headers, or headers from other clang<br />
versions, we can easily end up with dozens of parse errors that<br />
eventually reach the error limit. In such cases, kdev-clang becomes<br />
completely unusable.</p>

<p>To prevent this from happening, we filter out the compiler include<br />
path for the builtin headers. This is done using a simple heuristic<br />
by looking for the varargs.h header. For my system, this is only<br />
available in these three folders:</p>

<p>/usr/lib/clang/6.0.0/include/varargs.h<br />
/usr/lib/gcc/arm-none-eabi/7.3.0/include/varargs.h<br />
/usr/lib/gcc/x86_64-pc-linux-gnu/7.3.1/include/varargs.h</p>

<p>All of them are folders for the compiler builtin headers. So now<br />
we always exclude these folders, and instead find the include path<br />
for the folder containing the builtin headers matching the libclang<br />
version we link against. This is required, since libclang does not<br />
find any builtin headers on its own, cf. [1].</p>

<p>[1]: <a href="https://clang.llvm.org/docs/LibTooling.html#libtooling-builtin-includes" class="remarkup-link" target="_blank" rel="noreferrer">https://clang.llvm.org/docs/LibTooling.html#libtooling-builtin-includes</a></p>

<p>In the end, this gives us a seemingly well working GCC emulation layer<br />
without the previous pitfalls. The macro compatibility header kept<br />
breaking, and we never had any support for different clang versions.</p>

<p>BUG: 387005</p></div></div><br /><div><strong>REPOSITORY</strong><div><div>R32 KDevelop</div></div></div><br /><div><strong>BRANCH</strong><div><div>master</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D12331">https://phabricator.kde.org/D12331</a></div></div><br /><div><strong>AFFECTED FILES</strong><div><div>plugins/clang/CMakeLists.txt<br />
plugins/clang/duchain/gcc_compat.h<br />
plugins/clang/duchain/parsesession.cpp<br />
plugins/clang/libclang_include_path.h.cmake<br />
plugins/custom-definesandincludes/compilerprovider/gcclikecompiler.cpp</div></div></div><br /><div><strong>To: </strong>mwolff<br /><strong>Cc: </strong>kdevelop-devel<br /></div>