<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jun 23, 2016 at 7:36 PM, Tim Northover <span dir="ltr"><<a href="mailto:t.p.northover@gmail.com" target="_blank">t.p.northover@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 23 June 2016 at 06:31, vivek pandya via cfe-dev<br>
<span class=""><<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>> wrote:<br>
> I am running OS X, when I build clang++ from source and use it to compile<br>
> .cpp files it fails as it is not able to find C++ header. I am not building<br>
> libc++ along with llvm and clang.<br>
<br>
</span>When I'm not building with libcxx in-tree I find it easiest to just<br>
symlink Xcode's libc++ headers into the build directory. Something<br>
like "ln -s /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++<br>
build/include".<br></blockquote><div>Thanks Tim, </div><div><br></div><div>symlink to build include does not help because clang++ looks headers into build/lib/clang/3.9.0/include ( as per output of clang++ -v) but I symlink to /usr/local/include , that worked I hope there is nothing wrong in doing so.</div><div> </div><div>-Vivek</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<span class=""><br>
> using -stdlib=libstdc++ solves problem partially but it fails when using<br>
> C++11 threads, again it can't find <thread>, to get this work clang++ should<br>
> work with -stdlib=libc++ but it fails with previous error of not finding C++<br>
> headers.<br>
<br>
</span>Yes, the libstdc++ included with OS X is ancient (from GCC 4.2 I<br>
think) and there only for compatibility reasons. It has virtually no<br>
support for C++11, which LLVM needs.<br>
<br>
Cheers.<br>
<span class="HOEnZb"><font color="#888888"><br>
Tim.<br>
</font></span></blockquote></div><br></div></div>