From: svost Date: Tue, 5 Jan 2016 21:21:34 +0000 (+0300) Subject: Version: compiler name suffix update X-Git-Tag: nvc-v0.5.6~106^2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=e9542825cfea9dbecd2ad24e08d7cdfc2d078bb5 Version: compiler name suffix update --- 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: