[Lldb-commits] [lldb] 58473d8 - [lldb] Use LLDB_VERSION_STRING instead of CLANG_VERSION_STRING

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Mon Dec 13 16:58:50 PST 2021


Author: Jonas Devlieghere
Date: 2021-12-13T16:58:39-08:00
New Revision: 58473d84e0c7796de5dcfd3153e5d5cc8ad034b3

URL: https://github.com/llvm/llvm-project/commit/58473d84e0c7796de5dcfd3153e5d5cc8ad034b3
DIFF: https://github.com/llvm/llvm-project/commit/58473d84e0c7796de5dcfd3153e5d5cc8ad034b3.diff

LOG: [lldb] Use LLDB_VERSION_STRING instead of CLANG_VERSION_STRING

Added: 
    

Modified: 
    lldb/source/Version/Version.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Version/Version.cpp b/lldb/source/Version/Version.cpp
index ae2d83bd3e5f8..b391fe1eacd80 100644
--- a/lldb/source/Version/Version.cpp
+++ b/lldb/source/Version/Version.cpp
@@ -15,7 +15,7 @@ static const char *GetLLDBVersion() {
 #ifdef LLDB_FULL_VERSION_STRING
   return LLDB_FULL_VERSION_STRING;
 #else
-  return "lldb version " CLANG_VERSION_STRING;
+  return "lldb version " LLDB_VERSION_STRING;
 #endif
 }
 


        


More information about the lldb-commits mailing list