llvm-toolchain/debian/patches/0003-Debian-version-info-and-bugreport.patch
Sylvestre Ledru 7f1d0e08cb * debian/clang-X.Y.install.in: Added clang-cpp.
* debian/patches: Refreshed.
2016-10-10 16:51:15 +00:00

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