Skip to content

Commit

Permalink
Merge pull request #16218 from Bo98/env-shared-macos-fix
Browse files Browse the repository at this point in the history
ENV/shared: fix macOS code not applying under HOMEBREW_SORBET_RUNTIME
  • Loading branch information
Bo98 authored Nov 14, 2023
2 parents b58c93a + 63a8474 commit 6de29c2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Library/Homebrew/extend/os/mac/extend/ENV/shared.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -11,6 +21,7 @@ def setup_build_environment(formula: nil, cc: nil, build_bottle: false, bottle_a
# 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?
Expand Down

0 comments on commit 6de29c2

Please sign in to comment.