[PATCH] D42595: [MSBuild integration] correct version number in path lib/clang
R-J Wolthuis via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 26 12:16:41 PST 2018
Farwaykorse created this revision.
Farwaykorse added reviewers: rnk, dlj.
Herald added subscribers: llvm-commits, hintonda, mgorny.
Correcting the path to the Clang libraries.
I believe the path change to be a result of https://reviews.llvm.org/rC281666: "Simplify Clang's version number configuration in CMake."
Repository:
rL LLVM
https://reviews.llvm.org/D42595
Files:
tools/msbuild/CMakeLists.txt
Index: tools/msbuild/CMakeLists.txt
===================================================================
--- tools/msbuild/CMakeLists.txt
+++ tools/msbuild/CMakeLists.txt
@@ -1,7 +1,7 @@
if (MSVC)
# CPack will install a registry key in this format that we wish to reference.
set(REG_KEY "${CPACK_PACKAGE_INSTALL_REGISTRY_KEY}")
- set(LIB_PATH_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}")
+ set(LIB_PATH_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}")
foreach (platform "Win32" "x64")
set(prop_file_in "Microsoft.Cpp.Win32.llvm.props.in")
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D42595.131633.patch
Type: text/x-patch
Size: 595 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180126/721768b6/attachment.bin>
More information about the llvm-commits
mailing list