r266108 - clang-cl: Remove -isystem, add -imsvc.

Ismail Donmez via cfe-commits cfe-commits at lists.llvm.org
Thu Apr 14 07:32:11 PDT 2016


On Thu, Apr 14, 2016 at 2:09 PM, Nico Weber <thakis at chromium.org> wrote:
> It's supposed to match the
>
> "-internal-isystem"
> "/home/abuild/rpmbuild/BUILD/llvm/stage2/bin/../lib64/clang/3.9.0/include"
> "-internal-isystem" "myincludedir"
>
> bit in your output. Looks like it's "lib64" instead of "lib" on your system.
> Does changing
>
> // SLASH_imsvc: "-internal-isystem"
> "{{[^"]*}}lib{{/|\\\\}}clang{{[^"]*}}include"
>
> to
>
> // SLASH_imsvc: "-internal-isystem"
> "{{[^"]*}}lib{{(64)?/|\\\\}}clang{{[^"]*}}include"
>
> help?

Yes it does, thanks.


More information about the cfe-commits mailing list