diff options
| author | Shaun Jackman | 2017-02-23 09:40:57 -0800 | 
|---|---|---|
| committer | Shaun Jackman | 2017-02-23 10:49:20 -0800 | 
| commit | 7e642117652df082a4af2b460f69a8e5aad61130 (patch) | |
| tree | 1de3a51861d5f7c986bf598477e9593d2de8c954 /Library/Homebrew/compilers.rb | |
| parent | c7121f6be50e44784e3e29114617c29715bd9c0f (diff) | |
| download | brew-7e642117652df082a4af2b460f69a8e5aad61130.tar.bz2 | |
Add needs :cxx14
Diffstat (limited to 'Library/Homebrew/compilers.rb')
| -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),      ], | 
