13 lines
204 B
Ruby
13 lines
204 B
Ruby
# frozen_string_literal: true
|
|
|
|
module SharedEnvExtension
|
|
# @private
|
|
def effective_arch
|
|
if ARGV.build_bottle?
|
|
ARGV.bottle_arch || Hardware.oldest_cpu
|
|
else
|
|
:native
|
|
end
|
|
end
|
|
end
|