diff options
| author | Mike McQuaid | 2016-07-06 10:43:54 +0100 |
|---|---|---|
| committer | GitHub | 2016-07-06 10:43:54 +0100 |
| commit | 11624b9a7da00448e660f1454121a63b3d401729 (patch) | |
| tree | 9b620ae52dedab8b40069d08fcc8cc7d6c88e211 /Library/Homebrew/extend/os/mac | |
| parent | 416e51bca94910cb93eb4f0d9b1c0d40056fb8e4 (diff) | |
| download | brew-11624b9a7da00448e660f1454121a63b3d401729.tar.bz2 | |
hardware: move generic logic from linux. (#454)
Diffstat (limited to 'Library/Homebrew/extend/os/mac')
| -rw-r--r-- | Library/Homebrew/extend/os/mac/hardware/cpu.rb | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Library/Homebrew/extend/os/mac/hardware/cpu.rb b/Library/Homebrew/extend/os/mac/hardware/cpu.rb index 5f6b4c3a6..8733c4933 100644 --- a/Library/Homebrew/extend/os/mac/hardware/cpu.rb +++ b/Library/Homebrew/extend/os/mac/hardware/cpu.rb @@ -3,19 +3,15 @@ require "os/mac/pathname" module Hardware class CPU class << self - - OPTIMIZATION_FLAGS = { - :penryn => "-march=core2 -msse4.1", - :core2 => "-march=core2", - :core => "-march=prescott", + PPC_OPTIMIZATION_FLAGS = { :g3 => "-mcpu=750", :g4 => "-mcpu=7400", :g4e => "-mcpu=7450", :g5 => "-mcpu=970", - :g5_64 => "-mcpu=970 -arch ppc64" + :g5_64 => "-mcpu=970 -arch ppc64", }.freeze def optimization_flags - OPTIMIZATION_FLAGS + OPTIMIZATION_FLAGS.merge(PPC_OPTIMIZATION_FLAGS) end # These methods use info spewed out by sysctl. |
