From: Laser9un Date: Wed, 25 Sep 2019 20:42:10 +0000 (+0300) Subject: Fix compiler type reporting and build time X-Git-Tag: nvc-v0.5.9~142^2~6 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=299952a028ace414690903b12a7ad0c33d6bd218;hp=373cf9437924e0df8d1899943e6476f33f62e559 Fix compiler type reporting and build time --- diff --git a/src/version.cpp b/src/version.cpp index 8430dc7..54e3202 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -25,14 +25,14 @@ const std::string CLIENT_NAME("Satoshi"); //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 __GNUC__ -//code for GNU C compiler -#define CL_NAME "-gcc" #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" //others @@ -57,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) \