
- Add some `odeprecated` - Make some `odeprecated` now `odisabled` - Remove `odisabled` code. - Remove old update migrations - Remove GCC 4.0 compiler - Remove Tiger-only code - Remove 32-bit-only code - Remove use of LD64 - Remove GCC 4.3 - 4.8 support.
15 lines
214 B
Ruby
15 lines
214 B
Ruby
module OS
|
|
module Mac
|
|
module Compat
|
|
module_function
|
|
|
|
def prefer_64_bit?
|
|
odeprecated("MacOS.prefer_64_bit?")
|
|
Hardware::CPU.is_64_bit?
|
|
end
|
|
end
|
|
|
|
prepend Compat
|
|
end
|
|
end
|