From e9542825cfea9dbecd2ad24e08d7cdfc2d078bb5 Mon Sep 17 00:00:00 2001 From: svost Date: Wed, 6 Jan 2016 00:21:34 +0300 Subject: [PATCH] Version: compiler name suffix update --- src/version.cpp | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) 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: -- 1.7.1