X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fversion.cpp;h=b4a4dbc3c5caa283adb0b9afd1987ecc8688e7e2;hb=HEAD;hp=b465effc4791a1201e710d0de47e7317faed3fa4;hpb=a9a2000f5676862e25c1e223d720e284d35c3259;p=novacoin.git diff --git a/src/version.cpp b/src/version.cpp index b465eff..b4a4dbc 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -11,10 +11,27 @@ const std::string CLIENT_NAME("Satoshi"); // Client version number -#ifdef USE_LEVELDB #define CLIENT_VERSION_SUFFIX "-leveldb" + +// Compiler name +#ifdef __INTEL_COMPILER +//code specific to intel compiler +#define CL_NAME "-icpc" +#elif _MSC_VER +//code specific to MSVC compiler +#define CL_NAME "-msvc" +#elif __clang__ +//code specific to clang compiler +#define CL_NAME "-clang" +#elif __MINGW32__ +//code specific to mingw compiler +#define CL_NAME "-mingw" +#elif __GNUC__ +//code specific to gnu compiler +#define CL_NAME "-gcc" #else -#define CLIENT_VERSION_SUFFIX "-bdb" +#define CL_NAME "-genericcl" +//others #endif // The following part of the code determines the CLIENT_BUILD variable. @@ -36,11 +53,14 @@ const std::string CLIENT_NAME("Satoshi"); # include "build.h" #endif -// git will put "#define GIT_ARCHIVE 1" on the next line inside archives. +// git will put "#define GIT_ARCHIVE 1" on the next line inside archives. +#ifdef GIT_ARCHIVE +#define GIT_COMMIT_DATE "$Format:%cD$" +#endif + #define GIT_ARCHIVE 1 #ifdef GIT_ARCHIVE -# define GIT_COMMIT_ID "32a928e" -# define GIT_COMMIT_DATE "$Format:%cD" +#define GIT_COMMIT_ID "32a928e" #endif #define BUILD_DESC_FROM_COMMIT(maj,min,rev,commit) \ @@ -69,5 +89,5 @@ const std::string CLIENT_NAME("Satoshi"); # endif #endif -const std::string CLIENT_BUILD(BUILD_DESC CLIENT_VERSION_SUFFIX); +const std::string CLIENT_BUILD(BUILD_DESC CLIENT_VERSION_SUFFIX CL_NAME); const std::string CLIENT_DATE(BUILD_DATE);