Skip to content

Instantly share code, notes, and snippets.

@imbriaco
Created October 2, 2009 18:34
Show Gist options
  • Select an option

  • Save imbriaco/199988 to your computer and use it in GitHub Desktop.

Select an option

Save imbriaco/199988 to your computer and use it in GitHub Desktop.
if MACOS_VERSION >= 10.6 or ENV['HOMEBREW_USE_LLVM']
ENV['CC'] = '/Developer/usr/llvm-gcc-4.2/bin/llvm-gcc-4.2'
ENV['CXX'] = '/Developer/usr/llvm-gcc-4.2/bin/llvm-g++-4.2'
cflags = ['-O4'] # O4 baby!
else
ENV['CC']="gcc-4.2"
ENV['CXX']="g++-4.2"
cflags = ['-O3']
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment