[libcxx-commits] [PATCH] D74586: Drop git version suffix
Aaron Puchert via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Feb 13 18:46:25 PST 2020
aaronpuchert created this revision.
aaronpuchert added a reviewer: hans.
Herald added subscribers: llvm-commits, libcxx-commits, christof, mgorny.
Herald added projects: libc++, LLVM.
aaronpuchert added a comment.
Herald added a reviewer: mclow.lists.
This is for the `release/10.x` branch, not `master`. It mirrors rG24c2e53e770f5fe98d853ff04f035e3696b2cf60 <https://reviews.llvm.org/rG24c2e53e770f5fe98d853ff04f035e3696b2cf60> and predecessors.
Also fix the version for libcxxabi, which was stuck in the past.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D74586
Files:
libcxx/CMakeLists.txt
libcxxabi/CMakeLists.txt
libunwind/CMakeLists.txt
llvm/CMakeLists.txt
Index: llvm/CMakeLists.txt
===================================================================
--- llvm/CMakeLists.txt
+++ llvm/CMakeLists.txt
@@ -25,7 +25,7 @@
set(LLVM_VERSION_PATCH 0)
endif()
if(NOT DEFINED LLVM_VERSION_SUFFIX)
- set(LLVM_VERSION_SUFFIX git)
+ set(LLVM_VERSION_SUFFIX "")
endif()
if (NOT PACKAGE_VERSION)
Index: libunwind/CMakeLists.txt
===================================================================
--- libunwind/CMakeLists.txt
+++ libunwind/CMakeLists.txt
@@ -83,7 +83,7 @@
endif()
set(PACKAGE_NAME libunwind)
- set(PACKAGE_VERSION 10.0.0git)
+ set(PACKAGE_VERSION 10.0.0)
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
set(PACKAGE_BUGREPORT "llvm-bugs at lists.llvm.org")
Index: libcxxabi/CMakeLists.txt
===================================================================
--- libcxxabi/CMakeLists.txt
+++ libcxxabi/CMakeLists.txt
@@ -21,7 +21,7 @@
project(libcxxabi CXX C)
set(PACKAGE_NAME libcxxabi)
- set(PACKAGE_VERSION 9.0.0svn)
+ set(PACKAGE_VERSION 10.0.0)
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
set(PACKAGE_BUGREPORT "llvm-bugs at lists.llvm.org")
Index: libcxx/CMakeLists.txt
===================================================================
--- libcxx/CMakeLists.txt
+++ libcxx/CMakeLists.txt
@@ -27,7 +27,7 @@
project(libcxx CXX C)
set(PACKAGE_NAME libcxx)
- set(PACKAGE_VERSION 10.0.0git)
+ set(PACKAGE_VERSION 10.0.0)
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
set(PACKAGE_BUGREPORT "llvm-bugs at lists.llvm.org")
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D74586.244559.patch
Type: text/x-patch
Size: 1554 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20200214/89aea9f2/attachment-0001.bin>
More information about the libcxx-commits
mailing list