我正在研究用C ++编写的由git管理的模拟系统。我使用GNU make作为构建工具。为了使模拟结果可重复,git非常有用,因为您可以回到创建结果的模拟程序的确切版本。
目前,git存储库的状态和SHA1是在运行时以编程方式确定的,并与结果一起写入文件。但是,如果自编译程序后更改了源,则我的日志文件中的状态将不会反映程序的实际版本。因此,我正在寻找一种方法来确定编译时的git状态。有没有机会实现这个目标?
答案 0 :(得分:4)
一种解决方案是让构建系统提取值并让它生成一些带有此值的C ++头文件(或源文件)。
例如,如果使用CMake,您可以使用FindGit模块执行以下操作:
project(...)
# load module.
find_package(Git)
# create "${GIT_HEAD_HASH}" variable that contains
# the SHA-1 of the current tree. This assumes that the
# root CMakeLists is in the root of the Git repository.
git_tree_info(${CMAKE_SOURCE_DIR} GIT_HEAD)
# generate a 'version.h' file based on the 'version.h.in'
# file. replace all @...@ strings with variables in the
# current scope.
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/version.h.in
${CMAKE_CURRENT_SOURCE_DIR}/version.h
@ONLY
)
然后,添加以下version.h.in
文件:
#ifndef _version_h__
#define _version_h__
static const char VERSION[] = "@GIT_HEAD_HASH@";
#endif
CMake会将@GIT_HEAD_HASH@
字符串替换为使用get_tree_info()
提取的值。
然后,从您的常规代码:
#include "version.h"
#include <cstdlib>
#include <cstring>
#include <iostream>
int main(int argc, char ** argv)
{
if ((argc == 2) && (std::strcmp(argv[1],"--version") == 0))
{
std::cerr
<< VERSION
<< std::endl;
return (EXIT_FAILURE);
}
// ...
}
这是一个简化且绝对未经测试的例子。如果你看一下FindGit
CMake模块的来源,你会发现它只是在构建时运行execute_process()
命令来提取信息。您可以修改它以根据Git命令行界面的调用提取任何内容。
答案 1 :(得分:1)
由于您已经在使用Makefile
,因此可以检查其中的状态。
如果要跟踪当时HEAD
的提交,可以使用git rev-parse HEAD
获取提交的sha1。如果在运行时需要,可以将其存储在文件中。