diff options
Diffstat (limited to 'Library/Homebrew/exceptions.rb')
| -rw-r--r-- | Library/Homebrew/exceptions.rb | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb index febff797a..24b9e706e 100644 --- a/Library/Homebrew/exceptions.rb +++ b/Library/Homebrew/exceptions.rb @@ -115,14 +115,8 @@ end class IncompatibleCxxStdlibs < Homebrew::InstallationError def initialize(f, dep, wrong, right) super f, <<-EOS.undent - #{f} dependency #{dep} was built with the following - C++ standard library: #{wrong.type_string} (from #{wrong.compiler}) - - This is incompatible with the standard library being used - to build #{f}: #{right.type_string} (from #{right.compiler}) - - Please reinstall #{dep} using a compatible compiler. - hint: Check https://github.com/Homebrew/homebrew/wiki/C++-Standard-Libraries + #{f} dependency #{dep} was built with a different C++ standard + library (#{wrong.type_string} from #{wrong.compiler}). This could cause problems at runtime. EOS end end |
