Summary: Prior to this change, "make check" would always waste a lot of time relinking 60+ binaries. With this change, it does that only when the generated file, util/build_version.cc, changes, and that happens only when the date changes or when the current git SHA changes. This change makes some other improvements: before, there was no rule to build a deleted util/build_version.cc. If it was somehow removed, any attempt to link a program would fail. There is no longer any need for the separate file, build_tools/build_detect_version. Its functionality is now in the Makefile. * Makefile (DEPFILES): Don't filter-out util/build_version.cc. No need, and besides, removing that dependency was wrong. (date, git_sha, gen_build_version): New helper variables. (util/build_version.cc): New rule, to create this file and update it only if it would contain new information. * build_tools/build_detect_platform: Remove file. * db/db_impl.cc: Now, print only date (not the time). * util/build_version.h (rocksdb_build_compile_time): Remove declaration. No longer used. Test Plan: - Run "make check" twice, and note that the second time no linking is performed. - Remove util/build_version.cc and ensure that any "make" command regenerates it before doing anything else. - Run this: strings librocksdb.a|grep _build_. That prints output including the following: rocksdb_build_git_date:2015-02-19 rocksdb_build_git_sha:2.8.fb-1792-g3cb6cc0 Reviewers: ljin, sdong, igor Reviewed By: igor Subscribers: dhruba Differential Revision: https://reviews.facebook.net/D33591main
parent
d45a6a4002
commit
a42324e370
@ -1,22 +0,0 @@ |
|||||||
#!/bin/sh |
|
||||||
# |
|
||||||
# Record the version of the source that we are compiling. |
|
||||||
# We keep a record of the git revision in util/version.cc. This source file |
|
||||||
# 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 |
|
||||||
# the source that we used to build the executable file. |
|
||||||
|
|
||||||
OUTFILE="$PWD/util/build_version.cc" |
|
||||||
|
|
||||||
GIT_SHA="" |
|
||||||
if command -v git >/dev/null 2>&1; then |
|
||||||
GIT_SHA=$(git rev-parse HEAD 2>/dev/null) |
|
||||||
fi |
|
||||||
|
|
||||||
cat > "${OUTFILE}" <<EOF |
|
||||||
#include "build_version.h" |
|
||||||
const char* rocksdb_build_git_sha = "rocksdb_build_git_sha:${GIT_SHA}"; |
|
||||||
const char* rocksdb_build_git_datetime = "rocksdb_build_git_datetime:$(date)"; |
|
||||||
const char* rocksdb_build_compile_date = __DATE__; |
|
||||||
const char* rocksdb_build_compile_time = __TIME__; |
|
||||||
EOF |
|
Loading…
Reference in new issue