X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fversion.cpp;h=e5d592d68a06b5298b91cda500e43e8f8e50f662;hb=15e9a03687e99d6b1a7a90e56e69a37faa6bb9b8;hp=8e74499d7d6a4bc3d8485b50b568d3f325876e2c;hpb=0d6a3c233601b4a7e8503857da110a6176bbf161;p=novacoin.git diff --git a/src/version.cpp b/src/version.cpp index 8e74499..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" @@ -35,6 +39,7 @@ const std::string CLIENT_NAME("Satoshi"); #define CL_NAME "-genericcl" /*others*/ #endif +#endif // The following part of the code determines the CLIENT_BUILD variable. // Several mechanisms are used for this: