Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 98bb61a3c07..2cb215cabec 100644
--- a/SConstruct
+++ b/SConstruct
@@ -304,7 +304,7 @@ if env['OURPLATFORM']=='darwin':
ver = re.search(r'[0-9]+(\.[0-9]+)+', line)
if ver:
env['CCVERSION'] = ver.group(0)
- frontend = re.search(r'gcc', line) or re.search(r'clang', line) or re.search(r'llvm-gcc', line)
+ frontend = re.search(r'gcc', line) or re.search(r'clang', line) or re.search(r'llvm-gcc', line) or re.search(r'icc', line)
if frontend:
env['MACOSX_COMPILER'] = frontend.group(0)