[llvm] r190028 - msbuild: Add clang's compiler-rt libs to the LibraryPath
Reid Kleckner
reid at kleckner.net
Wed Sep 4 19:09:34 PDT 2013
Author: rnk
Date: Wed Sep 4 21:09:34 2013
New Revision: 190028
URL: http://llvm.org/viewvc/llvm-project?rev=190028&view=rev
Log:
msbuild: Add clang's compiler-rt libs to the LibraryPath
This allows linking libraries like the asan RTL.
Modified:
llvm/trunk/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in
Modified: llvm/trunk/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in?rev=190028&r1=190027&r2=190028&view=diff
==============================================================================
--- llvm/trunk/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in (original)
+++ llvm/trunk/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in Wed Sep 4 21:09:34 2013
@@ -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>
More information about the llvm-commits
mailing list