about summary refs log tree commit diff homepage
path: root/lib/Support
diff options
context:
space:
mode:
authorDan Liew <daniel.liew@imperial.ac.uk>2016-11-30 15:48:46 +0000
committerDan Liew <daniel.liew@imperial.ac.uk>2016-11-30 15:48:46 +0000
commit9be96537af07b1f03a55550b932df6f5397c9e6b (patch)
treebaf21aaac9305fa2f52bdca50b1f040945a91fab /lib/Support
parent82c9bb332b7be0673d18d5a5c571dfc22008992b (diff)
downloadklee-9be96537af07b1f03a55550b932df6f5397c9e6b.tar.gz
Remove support for reporting the approximate git tag.
This was confusing because it would emit something like
`v1.0.0-290-g08d4716` because the 1.1.0 and 1.2.0 releases
didn't have a tag on the master branch so `git describe --tags`
would just find the `v1.0.0` tag and report based on that tag.
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/Makefile10
-rw-r--r--lib/Support/PrintVersion.cpp3
2 files changed, 0 insertions, 13 deletions
diff --git a/lib/Support/Makefile b/lib/Support/Makefile
index 2b1b104c..ff28b06e 100644
--- a/lib/Support/Makefile
+++ b/lib/Support/Makefile
@@ -26,12 +26,6 @@ include $(LEVEL)/Makefile.common
 
 GIT_PRESENT:=$(shell [ -d "$(PROJ_SRC_ROOT)/.git" ] && echo 1 || echo 0)
 
-ifeq ($(GIT_PRESENT),1)
-GIT_TAGS:=$(shell cd $(PROJ_SRC_ROOT); git describe --tags 2> /dev/null 1>&2 && echo 1 || echo 0)
-else
-GIT_TAGS:=0
-endif
-
 .PHONY: $(CompileTimeInfoFile)
 $(CompileTimeInfoFile):
 	$(Verb) echo "Regenerating $(CompileTimeInfoFile)"
@@ -40,7 +34,3 @@ ifeq ($(GIT_PRESENT),1)
 	$(Verb) echo '#define KLEE_BUILD_REVISION "'$(shell cd $(PROJ_SRC_ROOT); git rev-parse HEAD)'"' >> \
 	$(CompileTimeInfoFile)
 endif
-ifeq ($(GIT_TAGS),1)
-	$(Verb) echo '#define KLEE_BUILD_TAG "'$(shell cd $(PROJ_SRC_ROOT); git describe --tags)'"' >> \
-	$(CompileTimeInfoFile)
-endif
diff --git a/lib/Support/PrintVersion.cpp b/lib/Support/PrintVersion.cpp
index dfea5007..d39249df 100644
--- a/lib/Support/PrintVersion.cpp
+++ b/lib/Support/PrintVersion.cpp
@@ -27,9 +27,6 @@ void klee::printVersion()
 #else
   llvm::outs() << "unknown\n";
 #endif
-#ifdef KLEE_BUILD_TAG
-  llvm::outs() << "  Build tag: " << KLEE_BUILD_TAG "\n";
-#endif
   // Show LLVM version information
   llvm::outs() << "\n";
   llvm::cl::PrintVersionMessage();