diff options
| author | Ian Lancaster | 2015-04-21 17:51:55 -0400 | 
|---|---|---|
| committer | Mike McQuaid | 2015-04-23 10:09:33 +0100 | 
| commit | 0705d75375a62f15a9bf31a12f8a60c83102d74f (patch) | |
| tree | e57e406ecf678ac323f20e512487eb5ca7f7c81d | |
| parent | fcfa16835788defbcf6ea4ffa7b1a9023c6858f9 (diff) | |
| download | brew-0705d75375a62f15a9bf31a12f8a60c83102d74f.tar.bz2 | |
compilers: blacklist llvm from :openmp
Closes Homebrew/homebrew#38912.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -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 | 
