diff options
Diffstat (limited to 'environment.py')
-rwxr-xr-x | environment.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/environment.py b/environment.py index 51000c4..d57d3b1 100755 --- a/environment.py +++ b/environment.py @@ -315,6 +315,8 @@ class Environment(): if (out.startswith('c++ ') or out.startswith('g++')) and \ 'Free Software Foundation' in out: return GnuCXXCompiler(exelist) + if 'apple' in out and 'Free Software Foundation' in out: + return GnuCXXCompiler(exelist) if out.startswith('clang'): return ClangCXXCompiler(exelist) raise EnvironmentException('Unknown compiler "' + ' '.join(exelist) + '"') |