From 110859c08de819d04c4ee73d17d4454bca1ad232 Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Wed, 16 Oct 2013 17:53:01 -0700 Subject: [PATCH] superenv: always respect HOMEBREW_CC Closes Homebrew/homebrew#23322. --- Library/ENV/4.3/cc | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/Library/ENV/4.3/cc b/Library/ENV/4.3/cc index bef8b8c41d..e385ec3d51 100755 --- a/Library/ENV/4.3/cc +++ b/Library/ENV/4.3/cc @@ -56,13 +56,7 @@ class Cmd @tool ||= case @arg0 when 'ld' then 'ld' when 'cpp' then 'cpp' - when 'cc', 'c99', 'c89' - # Ideally we would run `cx9`, however these tools are POSIX compliant - # and don't support many flags. We need -isystem for instance, but also - # reliability is generally much higher if we just get clang/gcc to do - # the work since Makefiles are dumb and include a lot of excess flags. - ENV['HOMEBREW_CC'] - when 'c++' + when /\w\+\+$/ case ENV['HOMEBREW_CC'] when /clang/ 'clang++' @@ -72,7 +66,9 @@ class Cmd 'g++' + $1.to_s end else - @arg0 + # Note that this is a universal fallback, so that we'll always invoke + # HOMEBREW_CC regardless of what name under which the tool was invoked. + ENV['HOMEBREW_CC'] end end def args