diff options
| author | Ian Lancaster | 2015-04-21 17:51:55 -0400 |
|---|---|---|
| committer | Mike McQuaid | 2015-04-23 10:09:33 +0100 |
| commit | 000eed10ad6ff094f08d4ef99a41e8957143ba8a (patch) | |
| tree | 6a9a5ef7425309078eee0515c27f5a7bf84458be /Library | |
| parent | 0e78890bce4b094797093dd0255a681b627a5e4c (diff) | |
| download | homebrew-000eed10ad6ff094f08d4ef99a41e8957143ba8a.tar.bz2 | |
compilers: blacklist llvm from :openmp
Closes #38912.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/compilers.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Homebrew/compilers.rb b/Library/Homebrew/compilers.rb index 983e23ef9..e73f39f01 100644 --- a/Library/Homebrew/compilers.rb +++ b/Library/Homebrew/compilers.rb @@ -59,7 +59,10 @@ class CompilerFailure create(:gcc => "4.5"), create(:gcc => "4.6"), ], - :openmp => [create(:clang)], + :openmp => [ + create(:clang), + create(:llvm), + ], } end |
