aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/extend/os/mac/hardware/cpu.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/extend/os/mac/hardware/cpu.rb')
-rw-r--r--Library/Homebrew/extend/os/mac/hardware/cpu.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Homebrew/extend/os/mac/hardware/cpu.rb b/Library/Homebrew/extend/os/mac/hardware/cpu.rb
index 8733c4933..0695d4a5b 100644
--- a/Library/Homebrew/extend/os/mac/hardware/cpu.rb
+++ b/Library/Homebrew/extend/os/mac/hardware/cpu.rb
@@ -4,11 +4,11 @@ module Hardware
class CPU
class << self
PPC_OPTIMIZATION_FLAGS = {
- :g3 => "-mcpu=750",
- :g4 => "-mcpu=7400",
- :g4e => "-mcpu=7450",
- :g5 => "-mcpu=970",
- :g5_64 => "-mcpu=970 -arch ppc64",
+ g3: "-mcpu=750",
+ g4: "-mcpu=7400",
+ g4e: "-mcpu=7450",
+ g5: "-mcpu=970",
+ g5_64: "-mcpu=970 -arch ppc64",
}.freeze
def optimization_flags
OPTIMIZATION_FLAGS.merge(PPC_OPTIMIZATION_FLAGS)