diff options
| author | Mike McQuaid | 2017-02-26 13:55:18 +0000 |
|---|---|---|
| committer | GitHub | 2017-02-26 13:55:18 +0000 |
| commit | ff93e1624b214c9b48731174a9135789fc3695a8 (patch) | |
| tree | 458dc3247becc72040c4b3cc903f050ae499d7ab /Library | |
| parent | 689765443e4ef5a47b85c4191f19e3ef3baea08f (diff) | |
| parent | 7e642117652df082a4af2b460f69a8e5aad61130 (diff) | |
| download | brew-ff93e1624b214c9b48731174a9135789fc3695a8.tar.bz2 | |
Merge pull request #2112 from sjackman/needs-c++14
Add needs :cxx14
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/compilers.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Library/Homebrew/compilers.rb b/Library/Homebrew/compilers.rb index 628e71e9b..36e50a177 100644 --- a/Library/Homebrew/compilers.rb +++ b/Library/Homebrew/compilers.rb @@ -75,6 +75,17 @@ class CompilerFailure create(gcc: "4.5"), create(gcc: "4.6"), ], + cxx14: [ + create(:clang) { build 600 }, + create(:gcc_4_0), + create(:gcc_4_2), + create(gcc: "4.3"), + create(gcc: "4.4"), + create(gcc: "4.5"), + create(gcc: "4.6"), + create(gcc: "4.7"), + create(gcc: "4.8"), + ], openmp: [ create(:clang), ], |
