X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fversion.cpp;h=8430dc7ae5e6a20781deb5bdf743e975accd0a59;hb=bea49258fdb757e194ae2c08f75169fc3eb6941d;hp=b43ca64cf82740efd63836b6d39bde807fca622d;hpb=68b0c8f403d3e46d3b992b8ce8ab07fbaa4145b9;p=novacoin.git diff --git a/src/version.cpp b/src/version.cpp index b43ca64..8430dc7 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 compilers #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 compilers #define CL_NAME "-mingw" #else #define CL_NAME "-genericcl" -/*overs*/ +//others #endif // The following part of the code determines the CLIENT_BUILD variable.