diff options
| author | Mike McQuaid | 2016-05-22 09:40:08 +0100 | 
|---|---|---|
| committer | Mike McQuaid | 2016-05-22 09:40:08 +0100 | 
| commit | 375efe09455218d9929e41f16317074ccdf50f2a (patch) | |
| tree | 4d7f48fd6cd36e00c5e24712e8f7a812e042253d /Library/Homebrew/system_config.rb | |
| parent | 7b2d1a5b08f4da122d995bdf8ba437e3cb25dc95 (diff) | |
| download | brew-375efe09455218d9929e41f16317074ccdf50f2a.tar.bz2 | |
Remove LLVM-GCC support. (#252)
At this point it's never a good compiler to use so let's just remove it.
Diffstat (limited to 'Library/Homebrew/system_config.rb')
| -rw-r--r-- | Library/Homebrew/system_config.rb | 5 | 
1 files changed, 0 insertions, 5 deletions
| diff --git a/Library/Homebrew/system_config.rb b/Library/Homebrew/system_config.rb index 4f56addb5..edd49f8e0 100644 --- a/Library/Homebrew/system_config.rb +++ b/Library/Homebrew/system_config.rb @@ -6,10 +6,6 @@ require "development_tools"  class SystemConfig    class << self -    def llvm -      @llvm ||= DevelopmentTools.llvm_build_version if DevelopmentTools.installed? -    end -      def gcc_42        @gcc_42 ||= DevelopmentTools.gcc_42_build_version if DevelopmentTools.installed?      end @@ -130,7 +126,6 @@ class SystemConfig        f.puts hardware if hardware        f.puts "GCC-4.0: build #{gcc_40}" if gcc_40        f.puts "GCC-4.2: build #{gcc_42}" if gcc_42 -      f.puts "LLVM-GCC: build #{llvm}"  if llvm        f.puts "Clang: #{clang ? "#{clang} build #{clang_build}" : "N/A"}"        f.puts "Perl: #{describe_perl}"        f.puts "Python: #{describe_python}" | 
