<div dir="ltr"><div>When building my tool against Clang 3.8.0 and running it in VS2013 it worked perfectly (once I started building the clang-headers project).</div><div><br></div><div>Along comes VS2015 and I have to upgrade to Clang 3.9.0 since the VS2015 headers now use an intrinsic that wasn't supported prior to 3.9.0.  This unexpectedly broke my tool and caused the tool to generate the following new warning:</div><div><br></div><div>warning : unknown argument ignored in clang-cl: '-resource-dir=C:\MyTool\Release\..\lib\clang\3.9.0'</div><div><br></div><div>This warning seems odd to me, since the -resource-dir argument is added by Clang.  Also, it references the parent directory of the directory that the clang-headers project copies necessary include files to.</div><div><br></div><div>As I have been experimenting with getting my tool to work again it has become evident that somewhere between 3.8.0 and 3.9.0 the directory where the clang-headers project copies header file to has been removed from the set of include directories for a tool (at least on Windows...).  By adding -IC:\MyTool\Release\..\lib\clang\3.9.0\include to my command line I have been able to get my tool to work again.</div><div><br></div><div>Does anyone know why Clang was changed so that this directory is no longer included by default?  Also, is there some other fix that I am missing?</div></div>