MacCPUs: distinguish between G5 32-bit and 64-bit

This commit is contained in:
Misty De Meo 2013-10-03 20:05:32 -07:00
parent b35d9906e5
commit b4f5be46d2

View File

@ -59,7 +59,9 @@ module MacCPUs
when 11
:g4e # PowerPC 7450
when 100
:g5 # PowerPC 970
# This is the only 64-bit PPC CPU type, so it's useful
# to distinguish in `brew --config` output and in bottle tags
MacOS.prefer_64_bit? ? :g5_64 : :g5 # PowerPC 970
else
:dunno
end