From 0705d75375a62f15a9bf31a12f8a60c83102d74f Mon Sep 17 00:00:00 2001 From: Ian Lancaster Date: Tue, 21 Apr 2015 17:51:55 -0400 Subject: [PATCH] compilers: blacklist llvm from :openmp Closes Homebrew/homebrew#38912. Signed-off-by: Mike McQuaid --- Library/Homebrew/compilers.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/compilers.rb b/Library/Homebrew/compilers.rb index 983e23ef93..e73f39f018 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