-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
112 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,45 @@ | ||
# typed: true # rubocop:todo Sorbet/StrictSigil | ||
# frozen_string_literal: true | ||
|
||
module Stdenv | ||
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_setup_build_environment(formula:, cc:, build_bottle:, bottle_arch:, | ||
testing_formula:, debug_symbols:) | ||
|
||
prepend_path "CPATH", HOMEBREW_PREFIX/"include" | ||
prepend_path "LIBRARY_PATH", HOMEBREW_PREFIX/"lib" | ||
prepend_path "LD_RUN_PATH", HOMEBREW_PREFIX/"lib" | ||
|
||
return unless @formula | ||
|
||
prepend_path "CPATH", @formula.include | ||
prepend_path "LIBRARY_PATH", @formula.lib | ||
prepend_path "LD_RUN_PATH", @formula.lib | ||
end | ||
module OS | ||
module Linux | ||
module Stdenv | ||
extend T::Helpers | ||
|
||
requires_ancestor { ::Stdenv } | ||
|
||
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) | ||
super | ||
|
||
prepend_path "CPATH", HOMEBREW_PREFIX/"include" | ||
prepend_path "LIBRARY_PATH", HOMEBREW_PREFIX/"lib" | ||
prepend_path "LD_RUN_PATH", HOMEBREW_PREFIX/"lib" | ||
|
||
def libxml2 | ||
append "CPPFLAGS", "-I#{Formula["libxml2"].include/"libxml2"}" | ||
rescue FormulaUnavailableError | ||
nil | ||
return unless @formula | ||
|
||
prepend_path "CPATH", @formula.include | ||
prepend_path "LIBRARY_PATH", @formula.lib | ||
prepend_path "LD_RUN_PATH", @formula.lib | ||
end | ||
|
||
def libxml2 | ||
append "CPPFLAGS", "-I#{::Formula["libxml2"].include/"libxml2"}" | ||
rescue FormulaUnavailableError | ||
nil | ||
end | ||
end | ||
end | ||
end | ||
|
||
Stdenv.prepend(OS::Linux::Stdenv) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,82 @@ | ||
# typed: true # rubocop:todo Sorbet/StrictSigil | ||
# frozen_string_literal: true | ||
|
||
module Superenv | ||
sig { returns(Pathname) } | ||
def self.shims_path | ||
HOMEBREW_SHIMS_PATH/"linux/super" | ||
end | ||
module OS | ||
module Linux | ||
module Superenv | ||
extend T::Helpers | ||
|
||
sig { returns(T.nilable(Pathname)) } | ||
def self.bin | ||
shims_path.realpath | ||
end | ||
requires_ancestor { ::Superenv } | ||
|
||
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_setup_build_environment(formula:, cc:, build_bottle:, bottle_arch:, | ||
testing_formula:, debug_symbols:) | ||
self["HOMEBREW_OPTIMIZATION_LEVEL"] = "O2" | ||
self["HOMEBREW_DYNAMIC_LINKER"] = determine_dynamic_linker_path | ||
self["HOMEBREW_RPATH_PATHS"] = determine_rpath_paths(@formula) | ||
self["M4"] = "#{HOMEBREW_PREFIX}/opt/m4/bin/m4" if deps.any? { |d| d.name == "libtool" || d.name == "bison" } | ||
end | ||
sig { returns(Pathname) } | ||
def self.shims_path | ||
HOMEBREW_SHIMS_PATH/"linux/super" | ||
end | ||
|
||
def homebrew_extra_paths | ||
paths = generic_homebrew_extra_paths | ||
paths += %w[binutils make].filter_map do |f| | ||
bin = Formulary.factory(f).opt_bin | ||
bin if bin.directory? | ||
rescue FormulaUnavailableError | ||
nil | ||
end | ||
paths | ||
end | ||
sig { returns(T.nilable(Pathname)) } | ||
def self.bin | ||
shims_path.realpath | ||
end | ||
|
||
def homebrew_extra_isystem_paths | ||
paths = [] | ||
# Add paths for GCC headers when building against [email protected] because we have to use -nostdinc. | ||
if deps.any? { |d| d.name == "[email protected]" } | ||
gcc_include_dir = Utils.safe_popen_read(cc, "--print-file-name=include").chomp | ||
gcc_include_fixed_dir = Utils.safe_popen_read(cc, "--print-file-name=include-fixed").chomp | ||
paths << gcc_include_dir << gcc_include_fixed_dir | ||
end | ||
paths | ||
end | ||
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) | ||
super | ||
self["HOMEBREW_OPTIMIZATION_LEVEL"] = "O2" | ||
self["HOMEBREW_DYNAMIC_LINKER"] = determine_dynamic_linker_path | ||
self["HOMEBREW_RPATH_PATHS"] = determine_rpath_paths(@formula) | ||
self["M4"] = "#{HOMEBREW_PREFIX}/opt/m4/bin/m4" if deps.any? { |d| d.name == "libtool" || d.name == "bison" } | ||
end | ||
|
||
def determine_rpath_paths(formula) | ||
PATH.new( | ||
*formula&.lib, | ||
"#{HOMEBREW_PREFIX}/opt/gcc/lib/gcc/current", | ||
PATH.new(run_time_deps.map { |dep| dep.opt_lib.to_s }).existing, | ||
"#{HOMEBREW_PREFIX}/lib", | ||
) | ||
end | ||
def homebrew_extra_paths | ||
paths = generic_homebrew_extra_paths | ||
paths += %w[binutils make].filter_map do |f| | ||
bin = Formulary.factory(f).opt_bin | ||
bin if bin.directory? | ||
rescue FormulaUnavailableError | ||
nil | ||
end | ||
paths | ||
end | ||
|
||
def homebrew_extra_isystem_paths | ||
paths = [] | ||
# Add paths for GCC headers when building against [email protected] because we have to use -nostdinc. | ||
if deps.any? { |d| d.name == "[email protected]" } | ||
gcc_include_dir = Utils.safe_popen_read(cc, "--print-file-name=include").chomp | ||
gcc_include_fixed_dir = Utils.safe_popen_read(cc, "--print-file-name=include-fixed").chomp | ||
paths << gcc_include_dir << gcc_include_fixed_dir | ||
end | ||
paths | ||
end | ||
|
||
sig { returns(T.nilable(String)) } | ||
def determine_dynamic_linker_path | ||
path = "#{HOMEBREW_PREFIX}/lib/ld.so" | ||
return unless File.readable? path | ||
def determine_rpath_paths(formula) | ||
PATH.new( | ||
*formula&.lib, | ||
"#{HOMEBREW_PREFIX}/opt/gcc/lib/gcc/current", | ||
PATH.new(run_time_deps.map { |dep| dep.opt_lib.to_s }).existing, | ||
"#{HOMEBREW_PREFIX}/lib", | ||
) | ||
end | ||
|
||
path | ||
sig { returns(T.nilable(String)) } | ||
def determine_dynamic_linker_path | ||
path = "#{HOMEBREW_PREFIX}/lib/ld.so" | ||
return unless File.readable? path | ||
|
||
path | ||
end | ||
end | ||
end | ||
end | ||
|
||
Superenv.prepend(OS::Linux::Superenv) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters