This commit is contained in:
Lukas Oberhuber 2022-08-04 08:53:07 -07:00
parent 2ce58f9fcb
commit 0b554a4138
2 changed files with 5 additions and 8 deletions

View File

@ -6,10 +6,9 @@ module SharedEnvExtension
def setup_build_environment(formula: nil, cc: nil, build_bottle: false, bottle_arch: nil, testing_formula: false, def setup_build_environment(formula: nil, cc: nil, build_bottle: false, bottle_arch: nil, testing_formula: false,
debug_symbols: false) debug_symbols: false)
generic_shared_setup_build_environment( generic_shared_setup_build_environment(formula: formula, cc: cc, build_bottle: build_bottle,
formula: formula, cc: cc, build_bottle: build_bottle, bottle_arch: bottle_arch, bottle_arch: bottle_arch, testing_formula: testing_formula,
testing_formula: testing_formula, debug_symbols: debug_symbols debug_symbols: debug_symbols)
)
# Normalise the system Perl version used, where multiple may be available # Normalise the system Perl version used, where multiple may be available
self["VERSIONER_PERL_VERSION"] = MacOS.preferred_perl_version self["VERSIONER_PERL_VERSION"] = MacOS.preferred_perl_version

View File

@ -101,10 +101,8 @@ module Superenv
MacOS::CLT::PKG_PATH MacOS::CLT::PKG_PATH
end end
generic_setup_build_environment( generic_setup_build_environment(formula: formula, cc: cc, build_bottle: build_bottle, bottle_arch: bottle_arch,
formula: formula, cc: cc, build_bottle: build_bottle, bottle_arch: bottle_arch, testing_formula: testing_formula, debug_symbols: debug_symbols)
testing_formula: testing_formula, debug_symbols: debug_symbols
)
# Filter out symbols known not to be defined since GNU Autotools can't # Filter out symbols known not to be defined since GNU Autotools can't
# reliably figure this out with Xcode 8 and above. # reliably figure this out with Xcode 8 and above.