llvm-toolchain/debian/patches/0003-Debian-version-info-and-bugreport.patch
2019-10-19 11:35:40 +02:00

20 lines
566 B
Diff

---
lib/Support/CommandLine.cpp | 4 ++++
1 file changed, 4 insertions(+)
Index: llvm-toolchain-9_9.0.0/llvm/lib/Support/CommandLine.cpp
===================================================================
--- llvm-toolchain-9_9.0.0.orig/llvm/lib/Support/CommandLine.cpp
+++ llvm-toolchain-9_9.0.0/llvm/lib/Support/CommandLine.cpp
@@ -2378,6 +2378,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