Add revision information.

llvm-svn: 67220
This commit is contained in:
Mike Stump 2009-03-18 18:45:55 +00:00
parent ab17fb2c98
commit 1dca7c0061
2 changed files with 16 additions and 3 deletions

View File

@ -220,10 +220,15 @@ void Driver::PrintVersion() const {
if (zap)
*zap = 0;
const char *vers = buf+6;
// FIXME: Add cmake support and remove #ifdef
#ifdef SVN_REVISION
const char *revision = SVN_REVISION;
#else
const char *revision = "";
#endif
// FIXME: The following handlers should use a callback mechanism, we
// don't know what the client would like to do.
llvm::errs() << "ccc version 1.0 (" << vers << ")" << "\n";
llvm::errs() << "ccc version 1.0 (" << vers << " " << revision << ")" << "\n";
// FIXME: Add cmake support and remove #ifdef
#ifdef TARGET_TRIPLE
llvm::errs() << "Target: " << TARGET_TRIPLE << "\n";

View File

@ -12,7 +12,15 @@ LIBRARYNAME := clangDriver
BUILD_ARCHIVE = 1
CXXFLAGS = -fno-rtti
CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include -DTARGET_TRIPLE='"$(TARGET_TRIPLE)"'
SVN_REVISION = $(shell cd $(PROJ_SRC_DIR)/../.. && svnversion)
CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include -DTARGET_TRIPLE='"$(TARGET_TRIPLE)"' -DSVN_REVISION='"$(SVN_REVISION)"'
include $(LEVEL)/Makefile.common
.ver:
@if [ '$(SVN_REVISION)' != '$(shell cat .ver-svn 2>/dev/null)' ]; then \
echo '$(SVN_REVISION)' > .ver-svn; \
fi
.ver-svn: .ver
$(ObjDir)/Driver.o: .ver-svn