summaryrefslogtreecommitdiff
path: root/tools/msbuild
diff options
context:
space:
mode:
authorReid Kleckner <reid@kleckner.net>2013-09-05 02:09:34 +0000
committerReid Kleckner <reid@kleckner.net>2013-09-05 02:09:34 +0000
commit2909c9801979f41a85166f3381d0d3c577a7e89c (patch)
tree3cb7eb3d205c10d455c1ac667a24e37bc15aa0a9 /tools/msbuild
parentd6d2ef158210f0634e31527193aa13778d48f66c (diff)
downloadllvm-2909c9801979f41a85166f3381d0d3c577a7e89c.tar.gz
llvm-2909c9801979f41a85166f3381d0d3c577a7e89c.tar.bz2
llvm-2909c9801979f41a85166f3381d0d3c577a7e89c.tar.xz
msbuild: Add clang's compiler-rt libs to the LibraryPath
This allows linking libraries like the asan RTL. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190028 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/msbuild')
-rw-r--r--tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in b/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in
index 0f474c0e9e..3020d793f9 100644
--- a/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in
+++ b/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in
@@ -5,5 +5,6 @@
<LLVMInstallDir>$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\LLVM\@REG_KEY@)</LLVMInstallDir>
<LLVMInstallDir Condition="'$(LLVMInstallDir)' == ''">$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\LLVM\@REG_KEY@)</LLVMInstallDir>
<ExecutablePath>$(LLVMInstallDir)\msbuild-bin;$(ExecutablePath)</ExecutablePath>
+ <LibraryPath>$(LLVMInstallDir)\lib\clang\3.4\lib\windows;$(LibraryPath)</LibraryPath>
</PropertyGroup>
</Project>