Skip to content
Snippets Groups Projects
Unverified Commit 3588e6a5 authored by Mike McQuaid's avatar Mike McQuaid
Browse files

bottle_arch: ensure a symbol is used when needed.

Fixes #7597.
parent 0e9897c8
No related branches found
No related tags found
No related merge requests found
......@@ -255,7 +255,7 @@ module SharedEnvExtension
# @private
def effective_arch
if Homebrew.args.build_bottle? && Homebrew.args.bottle_arch
Homebrew.args.bottle_arch
Homebrew.args.bottle_arch.to_sym
else
Hardware.oldest_cpu
end
......
......@@ -3,8 +3,10 @@
module SharedEnvExtension
# @private
def effective_arch
if Homebrew.args.build_bottle?
Homebrew.args.bottle_arch || Hardware.oldest_cpu
if Homebrew.args.build_bottle? && Homebrew.args.bottle_arch
Homebrew.args.bottle_arch.to_sym
elsif Homebrew.args.build_bottle?
Hardware.oldest_cpu
else
:native
end
......
......@@ -269,7 +269,7 @@ class FormulaInstaller
return if only_deps?
if build_bottle? && (arch = Homebrew.args.bottle_arch) && !Hardware::CPU.optimization_flags.include?(arch)
if build_bottle? && (arch = Homebrew.args.bottle_arch) && !Hardware::CPU.optimization_flags.include?(arch.to_sym)
raise "Unrecognized architecture for --bottle-arch: #{arch}"
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment