Refactor build_tools/build_detect_version

This commit is contained in:
Doğan Çeçen 2014-01-05 22:52:19 +02:00
parent 8f6e31951e
commit d800dc567a
2 changed files with 11 additions and 32 deletions

1
.gitignore vendored
View File

@ -19,5 +19,4 @@ sst_dump
util/build_version.cc util/build_version.cc
build_tools/VALGRIND_LOGS/ build_tools/VALGRIND_LOGS/
coverage/COVERAGE_REPORT coverage/COVERAGE_REPORT
util/build_version.cc.tmp
.gdbhistory .gdbhistory

View File

@ -5,38 +5,18 @@
# is then built as a regular source file as part of the compilation process. # is then built as a regular source file as part of the compilation process.
# One can run "strings executable_filename | grep _build_" to find the version of # One can run "strings executable_filename | grep _build_" to find the version of
# the source that we used to build the executable file. # the source that we used to build the executable file.
#
# create git version file OUTFILE="$PWD/util/build_version.cc"
VFILE=$PWD/util/build_version.cc.tmp
trap "rm $VFILE" EXIT
# check to see if git is in the path GIT_SHA=""
which git > /dev/null if command -v git >/dev/null 2>&1; then
GIT_SHA=$(git rev-parse HEAD 2>/dev/null)
if [ "$?" = 0 ]; then
env -i git rev-parse HEAD 2>&1 |
awk '
BEGIN {
print "#include \"build_version.h\"\n"
}
{ print "const char* rocksdb_build_git_sha = \"rocksdb_build_git_sha:" $0"\";" }
' > ${VFILE}
else
echo "git not found" |
awk '
BEGIN {
print "#include \"build_version.h\""
}
{ print "const char* rocksdb_build_git_sha = \"rocksdb_build_git_sha:git not found\";" }
' > ${VFILE}
fi fi
echo "const char* rocksdb_build_git_datetime = \"rocksdb_build_git_datetime:$(date)\";" >> ${VFILE} cat > "${OUTFILE}" <<EOF
echo "const char* rocksdb_build_compile_date = __DATE__;" >> ${VFILE} #include "build_version.h"
echo "const char* rocksdb_build_compile_time = __TIME__;" >> ${VFILE} const char* rocksdb_build_git_sha = "rocksdb_build_git_sha:${GIT_SHA}";
const char* rocksdb_build_git_datetime = "rocksdb_build_git_datetime:$(date)";
OUTFILE=$PWD/util/build_version.cc const char* rocksdb_build_compile_date = __DATE__;
if [ ! -e $OUTFILE ] || ! cmp -s $VFILE $OUTFILE; then const char* rocksdb_build_compile_time = __TIME__;
cp $VFILE $OUTFILE EOF
fi