https://github.com/facebook/rocksdb
Raw File
Tip revision: fe637231e8206aa05a875fe4cbf6c679ecb398f1 authored by sdong on 31 October 2019, 21:10:18 UTC
[FB Internal] Point to the latest tool chain.
Tip revision: fe63723
build_version.h
/*version.h*/
#ifndef VERSION_H_
#define VERSION_H_

// these variables tell us about the git config and time
extern const char* leveldb_build_git_sha;

// these variables tell us when the compilation occured
extern const char* leveldb_build_compile_time;
extern const char* leveldb_build_compile_date;


#endif /* VERSION_H_ */
back to top