aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMisty De Meo2013-05-15 23:31:28 -0500
committerMisty De Meo2016-04-22 22:37:21 -0700
commit2d81c6878fe4d476d104bf79aa5af8d71934a2a9 (patch)
tree6da356fe32db4417a3856986a28feb623b5983b2 /Library
parenta662bd4470ae27c9fde0b7ba471421c8ef2da017 (diff)
downloadbrew-2d81c6878fe4d476d104bf79aa5af8d71934a2a9.tar.bz2
Hardware: PPC970 needs -m64 to build 64-bit
Fixes mistydemeo/tigerbrew#37.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/os/mac/hardware.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/os/mac/hardware.rb b/Library/Homebrew/os/mac/hardware.rb
index 84308b67e..6b11f6ad5 100644
--- a/Library/Homebrew/os/mac/hardware.rb
+++ b/Library/Homebrew/os/mac/hardware.rb
@@ -8,7 +8,8 @@ module MacCPUs
:g3 => "-mcpu=750",
:g4 => "-mcpu=7400",
:g4e => "-mcpu=7450",
- :g5 => "-mcpu=970"
+ :g5 => "-mcpu=970",
+ :g5_64 => "-mcpu=970 -arch ppc64"
}.freeze
def optimization_flags
OPTIMIZATION_FLAGS