Mike McQuaid b1e60f9c76
hardware: no special penryn CFLAGS.
These are the same as `core2` (at least for `gcc`).

Fixes #5502.
2019-01-08 19:14:29 +00:00

10 lines
137 B
Ruby

module Hardware
def self.oldest_cpu
if MacOS.version >= :mojave
:nehalem
else
generic_oldest_cpu
end
end
end