Merge pull request #16218 from Bo98/env-shared-macos-fix

ENV/shared: fix macOS code not applying under HOMEBREW_SORBET_RUNTIME
This commit is contained in:
Bo Anderson 2023-11-14 02:27:38 +00:00 committed by GitHub
commit 6de29c2f65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,16 @@
# frozen_string_literal: true
module SharedEnvExtension
sig {
params(
formula: T.nilable(Formula),
cc: T.nilable(String),
build_bottle: T.nilable(T::Boolean),
bottle_arch: T.nilable(String),
testing_formula: T::Boolean,
debug_symbols: T.nilable(T::Boolean),
).void
}
def setup_build_environment(formula: nil, cc: nil, build_bottle: false, bottle_arch: nil, testing_formula: false,
debug_symbols: false)
generic_shared_setup_build_environment(formula: formula, cc: cc, build_bottle: build_bottle,
@ -11,6 +21,7 @@ module SharedEnvExtension
# Normalise the system Perl version used, where multiple may be available
self["VERSIONER_PERL_VERSION"] = MacOS.preferred_perl_version
end
private :setup_build_environment
sig { returns(T::Boolean) }
def no_weak_imports_support?