X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fversion.cpp;h=e5d592d68a06b5298b91cda500e43e8f8e50f662;hb=9d14e64825d95061ea0857267646dfcb3d62e07a;hp=b43ca64cf82740efd63836b6d39bde807fca622d;hpb=68b0c8f403d3e46d3b992b8ce8ab07fbaa4145b9;p=novacoin.git diff --git a/src/version.cpp b/src/version.cpp index b43ca64..e5d592d 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -18,6 +18,10 @@ const std::string CLIENT_NAME("Satoshi"); #endif // Compiler name +#if defined(__GNUC__) && defined(__INTEL_COMPILER) +/*code specific to linux icc compiler*/ +#define CL_NAME "-icc" +#else #ifdef __GNUC__ /*code for GNU C compiler */ #define CL_NAME "-gcc" @@ -33,7 +37,8 @@ const std::string CLIENT_NAME("Satoshi"); #define CL_NAME "-mingw" #else #define CL_NAME "-genericcl" -/*overs*/ +/*others*/ +#endif #endif // The following part of the code determines the CLIENT_BUILD variable.