Use less lengthy path to llvm binaries

This commit is contained in:
Max Howell 2010-01-13 05:50:13 +00:00
parent 700b20d665
commit 2037b2373a

View File

@ -47,8 +47,8 @@ module HomebrewEnvExtension
prefix = `/usr/bin/xcode-select -print-path`.chomp prefix = `/usr/bin/xcode-select -print-path`.chomp
prefix = "/Developer" if prefix.to_s.empty? prefix = "/Developer" if prefix.to_s.empty?
ENV['CC'] = "#{prefix}/usr/llvm-gcc-4.2/bin/llvm-gcc-4.2" ENV['CC'] = "#{prefix}/usr/bin/llvm-gcc"
ENV['CXX'] = "#{prefix}/usr/llvm-gcc-4.2/bin/llvm-g++-4.2" ENV['CXX'] = "#{prefix}/usr/bin/llvm-g++"
cflags = %w{-O4} # link time optimisation baby! cflags = %w{-O4} # link time optimisation baby!
else else
ENV['CC']="gcc-4.2" ENV['CC']="gcc-4.2"