[Lldb-commits] [PATCH] D124672: [lldb] Define LLDB_VERSION_PATCH correctly

Dimitry Andric via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 29 06:25:00 PDT 2022


dim created this revision.
dim added reviewers: JDevlieghere, labath.
Herald added a project: All.
dim requested review of this revision.
Herald added a project: LLDB.

In commit ccf1469a4cdb <https://reviews.llvm.org/rGccf1469a4cdb03cb2bc7868f76164e85d90ebee1> lldb got its own generated Version.inc file, with
`LLDB_VERSION` macros. However, it used `LLDB_VERSION_PATCHLEVEL`
instead of the actually correct `LLDB_VERSION_PATCH`. Correct this.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D124672

Files:
  lldb/include/lldb/Version/Version.inc.in


Index: lldb/include/lldb/Version/Version.inc.in
===================================================================
--- lldb/include/lldb/Version/Version.inc.in
+++ lldb/include/lldb/Version/Version.inc.in
@@ -2,5 +2,5 @@
 #define LLDB_VERSION_STRING "@LLDB_VERSION@"
 #define LLDB_VERSION_MAJOR @LLDB_VERSION_MAJOR@
 #define LLDB_VERSION_MINOR @LLDB_VERSION_MINOR@
-#define LLDB_VERSION_PATCHLEVEL @LLDB_VERSION_PATCHLEVEL@
+#define LLDB_VERSION_PATCH @LLDB_VERSION_PATCH@
 #cmakedefine LLDB_FULL_VERSION_STRING "@LLDB_FULL_VERSION_STRING@"


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D124672.426040.patch
Type: text/x-patch
Size: 542 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220429/7f72de5a/attachment.bin>


More information about the lldb-commits mailing list