Re: [cfe-users] Missing header files in AST display

2017-08-02 Thread Raphael Isemann via cfe-users
Do you mean the default include paths? Not sure how the Windows version is handling this, but if a normal clang compilation works for you, then this should make the ast-dump working with all include default paths: clang -Xclang -ast-dump -fsyntax-only -I/your/usual/extra/paths test.c Note that th

Re: [cfe-users] --sysroot and --gcc-toolchain: any docs etc.?

2017-06-13 Thread Raphael Isemann via cfe-users
2017-06-13 16:09 GMT+02:00 Paul Smith : > On Tue, 2017-06-13 at 15:08 +0200, Raphael Isemann wrote: >> we also had this problem and the thing it that clang checks for a >> valid GCC/libstdc++ installation by looking for the crtbegin.o file in >> the related lib directory. So it doesn't work if you

Re: [cfe-users] --sysroot and --gcc-toolchain: any docs etc.?

2017-06-13 Thread Raphael Isemann via cfe-users
Hi, we also had this problem and the thing it that clang checks for a valid GCC/libstdc++ installation by looking for the crtbegin.o file in the related lib directory. So it doesn't work if you just have the headers for libstdc++, you also need to recreate the folder-structure that leads to the cr