X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fversion.cpp;h=8430dc7ae5e6a20781deb5bdf743e975accd0a59;hb=23a855ef6994d764ac7bf484f604ff45de5dae28;hp=8e74499d7d6a4bc3d8485b50b568d3f325876e2c;hpb=0d6a3c233601b4a7e8503857da110a6176bbf161;p=novacoin.git diff --git a/src/version.cpp b/src/version.cpp index 8e74499..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" -/*others*/ +//others #endif // The following part of the code determines the CLIENT_BUILD variable.