X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fversion.cpp;h=54e32025b6c37fbf883449d667a92bb62f9c6324;hb=128b5cec3c7f20b34a40541be2236c11fe204df6;hp=b43ca64cf82740efd63836b6d39bde807fca622d;hpb=68b0c8f403d3e46d3b992b8ce8ab07fbaa4145b9;p=novacoin.git diff --git a/src/version.cpp b/src/version.cpp index b43ca64..54e3202 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -18,22 +18,24 @@ const std::string CLIENT_NAME("Satoshi"); #endif // Compiler name -#ifdef __GNUC__ -/*code for GNU C compiler */ -#define CL_NAME "-gcc" +#ifdef __INTEL_COMPILER +//code specific to intel compiler +#define CL_NAME "-icpc" #elif _MSC_VER -/*usually has the version number in _MSC_VER*/ -/*code specific to MSVC compiler*/ +//code specific to MSVC compiler #define CL_NAME "-msvc" #elif __clang__ -/*code specific to clang compilers*/ +//code specific to clang compiler #define CL_NAME "-clang" #elif __MINGW32__ -/*code specific to mingw compilers*/ +//code specific to mingw compiler #define CL_NAME "-mingw" +#elif __GNUC__ +//code specific to gnu compiler +#define CL_NAME "-gcc" #else #define CL_NAME "-genericcl" -/*overs*/ +//others #endif // The following part of the code determines the CLIENT_BUILD variable. @@ -55,11 +57,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) \