From 31871c763f155af05a12b049a236a19a78d6b500 Mon Sep 17 00:00:00 2001 From: Jens Verwiebe Date: Sat, 7 Dec 2013 18:05:27 +0100 Subject: =?UTF-8?q?OSX/scons:=20forgot=20Intel=20CC=20(=20=E2=80=98icc?= =?UTF-8?q?=E2=80=99=20)=20in=20detection=20Todo:=20perhaps=20unify=20this?= =?UTF-8?q?=20for=20all=20OS,=20but=20keep=20in=20mind:=20Apple=20compiler?= =?UTF-8?q?=20versions=20may=20have=20other=20capabilities=20than=20std=20?= =?UTF-8?q?gcc,=20llvm,=20clang=20(=20other=20versioning=20also=20)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'SConstruct') 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) -- cgit v1.2.3