From 0430589fbc3396799083d59a3a6b881bf031fab0 Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Thu, 27 Jun 2013 14:56:47 -0500 Subject: [PATCH] superenv cc: specify llvm-g++-4.2 We previously tried to call llvm-g++ under the name `g++`, but this is now a link to clang on Xcode 5+. Fixes Homebrew/homebrew#20691. --- Library/ENV/4.3/cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/ENV/4.3/cc b/Library/ENV/4.3/cc index b96c0015ea..5935cb5812 100755 --- a/Library/ENV/4.3/cc +++ b/Library/ENV/4.3/cc @@ -66,7 +66,7 @@ class Cmd when /clang/ 'clang++' when /llvm-gcc/ - 'g++' + 'llvm-g++-4.2' when /gcc(-4.2)?$/ 'g++-4.2' when /gcc-4.0/