mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-08-03 16:54:42 +00:00
18 lines
378 B
Diff
18 lines
378 B
Diff
---
|
|
lib/Support/CommandLine.cpp | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
--- a/lib/Support/CommandLine.cpp
|
|
+++ b/lib/Support/CommandLine.cpp
|
|
@@ -2027,6 +2027,10 @@ public:
|
|
OS << " " << LLVM_VERSION_INFO;
|
|
#endif
|
|
OS << "\n ";
|
|
+#ifdef LLVM_DEBIAN_INFO
|
|
+ OS << LLVM_DEBIAN_INFO;
|
|
+#endif
|
|
+ OS << "\n ";
|
|
#ifndef __OPTIMIZE__
|
|
OS << "DEBUG build";
|
|
#else
|