diff options
author | Reid Kleckner <reid@kleckner.net> | 2013-09-05 02:09:34 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2013-09-05 02:09:34 +0000 |
commit | 2909c9801979f41a85166f3381d0d3c577a7e89c (patch) | |
tree | 3cb7eb3d205c10d455c1ac667a24e37bc15aa0a9 /tools/msbuild | |
parent | d6d2ef158210f0634e31527193aa13778d48f66c (diff) | |
download | external_llvm-2909c9801979f41a85166f3381d0d3c577a7e89c.zip external_llvm-2909c9801979f41a85166f3381d0d3c577a7e89c.tar.gz external_llvm-2909c9801979f41a85166f3381d0d3c577a7e89c.tar.bz2 |
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.in | 1 |
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 0f474c0..3020d79 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>
|