Revert "standalone/bootsnap: relax restrictions"
This commit is contained in:
parent
a8494ba0bb
commit
2ad5491098
@ -5,9 +5,15 @@
|
|||||||
# rubocop:disable Rails
|
# rubocop:disable Rails
|
||||||
homebrew_bootsnap_enabled = ENV["HOMEBREW_NO_BOOTSNAP"].nil? && !ENV["HOMEBREW_BOOTSNAP"].nil?
|
homebrew_bootsnap_enabled = ENV["HOMEBREW_NO_BOOTSNAP"].nil? && !ENV["HOMEBREW_BOOTSNAP"].nil?
|
||||||
|
|
||||||
# we need some development tools to build bootsnap native code
|
# portable ruby doesn't play nice with bootsnap
|
||||||
|
|
||||||
|
homebrew_bootsnap_enabled &&= !RUBY_PATH.to_s.include?("/vendor/portable-ruby/")
|
||||||
|
|
||||||
homebrew_bootsnap_enabled &&= if ENV["HOMEBREW_MACOS_VERSION"]
|
homebrew_bootsnap_enabled &&= if ENV["HOMEBREW_MACOS_VERSION"]
|
||||||
File.directory?("/Applications/Xcode.app") || File.directory?("/Library/Developer/CommandLineTools")
|
# Apple Silicon doesn't play nice with bootsnap
|
||||||
|
ENV["HOMEBREW_PROCESSOR"] == "Intel" &&
|
||||||
|
# we need some development tools to build bootsnap native code
|
||||||
|
(File.directory?("/Applications/Xcode.app") || File.directory?("/Library/Developer/CommandLineTools"))
|
||||||
else
|
else
|
||||||
File.executable?("/usr/bin/clang") || File.executable?("/usr/bin/gcc")
|
File.executable?("/usr/bin/clang") || File.executable?("/usr/bin/gcc")
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user