about summary refs log tree commit diff homepage
path: root/lib
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2016-09-29 17:19:50 +0100
committerGitHub <noreply@github.com>2016-09-29 17:19:50 +0100
commita936dcbaefe0efa67e97f4ea14893bdae63db99b (patch)
treef23e7afb5be9ea58e0813c891915c2152d2c2ca6 /lib
parentb6eb108e22176d33d4dbaeed0e6603ea919345ad (diff)
parent576babae91739be0824bb71ba6e224abd0878049 (diff)
downloadklee-a936dcbaefe0efa67e97f4ea14893bdae63db99b.tar.gz
Merge pull request #474 from jirislaby/timestamp
configure: add option to enable timestamping and disabled it by default
Diffstat (limited to 'lib')
-rw-r--r--lib/Support/PrintVersion.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Support/PrintVersion.cpp b/lib/Support/PrintVersion.cpp
index b4ff9811..dfea5007 100644
--- a/lib/Support/PrintVersion.cpp
+++ b/lib/Support/PrintVersion.cpp
@@ -17,7 +17,9 @@
 void klee::printVersion()
 {
   llvm::outs() << PACKAGE_STRING " (" PACKAGE_URL ")\n";
+#ifdef KLEE_ENABLE_TIMESTAMP
   llvm::outs() << "  Built " __DATE__ " (" __TIME__ ")\n";
+#endif
   llvm::outs() << "  Build mode: " << KLEE_BUILD_MODE "\n";
   llvm::outs() << "  Build revision: ";
 #ifdef KLEE_BUILD_REVISION