summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/Version.cpp
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2011-10-03 23:44:35 -0700
committerShawn Hoffman <godisgovernment@gmail.com>2011-10-03 23:44:35 -0700
commitb4d751e43cbf72fe666441841f1ee7428794642e (patch)
treeacb36f4f53eaf14c72add41f8ce0ae5a0bdc60ab /Source/Core/Common/Src/Version.cpp
parenta65385d99538a73c784e573a78f8a90dc29e26e1 (diff)
parentd3e639a3979205dc3ec52e6205170b03bbde3a1c (diff)
Merge branch 'fix-icc-unsafe-string'
Diffstat (limited to 'Source/Core/Common/Src/Version.cpp')
-rw-r--r--Source/Core/Common/Src/Version.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/Common/Src/Version.cpp b/Source/Core/Common/Src/Version.cpp
index f3d30398c8..97e232785d 100644
--- a/Source/Core/Common/Src/Version.cpp
+++ b/Source/Core/Common/Src/Version.cpp
@@ -30,7 +30,12 @@ const char *scm_rev_str = "Dolphin "
#if !SCM_IS_MASTER
"[" SCM_BRANCH_STR "] "
#endif
+
+#ifdef __INTEL_COMPILER
+ BUILD_TYPE_STR SCM_DESC_STR "-ICC";
+#else
BUILD_TYPE_STR SCM_DESC_STR;
+#endif
#ifdef _M_X64
#define NP_ARCH "x64"