Class: DevelopmentTools
- Extended by:
- Utils::Output::Mixin
- Defined in:
- development_tools.rb
Overview
Helper class for gathering information about development tools.
Class Method Summary collapse
- .build_system_info ⇒ Hash{String => String, nil} private
- .ca_file_substitution_required? ⇒ Boolean private
-
.clang_build_version ⇒ Version
Get the Clang build version.
-
.clang_version ⇒ Version
Get the Clang version.
- .clang_version_output ⇒ String? private
- .clear_version_cache ⇒ void private
- .curl_handles_most_https_certificates? ⇒ Boolean private
- .curl_substitution_required? ⇒ Boolean private
- .custom_installation_instructions ⇒ String private
-
.default_compiler ⇒ Symbol
Get the default C compiler.
-
.gcc_version(cc = host_gcc_path.to_s) ⇒ Version
Get the GCC version.
- .host_gcc_path ⇒ Pathname private
- .insecure_download_warning(resource) ⇒ String private
- .installation_instructions ⇒ String private
- .installed? ⇒ Boolean private
- .ld64_version ⇒ Version private
-
.llvm_clang_build_version ⇒ Version
deprecated
Deprecated.
Query the required LLVM compiler with
--versioninstead. - .llvm_clang_version ⇒ Version private
-
.locate(tool) ⇒ Pathname?
Locate a development tool.
- .needs_build_formulae? ⇒ Boolean private
- .needs_compiler_formula? ⇒ Boolean private
- .needs_libc_formula? ⇒ Boolean private
Methods included from Utils::Output::Mixin
issue_reporting_message, odebug, odeprecated, odie, odisabled, ofail, oh1, oh1_title, ohai, ohai_title, onoe, opoo, opoo_outside_github_actions, opoo_without_github_actions_annotation, pretty_cannot_install, pretty_deprecated, pretty_disabled, pretty_duration, pretty_install_status, pretty_installed, pretty_uninstalled, pretty_unmarked, pretty_upgradable, pretty_warning
Class Method Details
.build_system_info ⇒ Hash{String => String, nil}
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
197 198 199 200 201 202 203 |
# File 'development_tools.rb', line 197 def build_system_info { "os" => HOMEBREW_SYSTEM, "os_version" => OS_VERSION, "cpu_family" => Hardware::CPU.family.to_s, } end |
.ca_file_substitution_required? ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
186 187 188 189 |
# File 'development_tools.rb', line 186 def ca_file_substitution_required? ENV["HOMEBREW_FORCE_BREWED_CA_CERTIFICATES"].present? && !(HOMEBREW_PREFIX/"etc/ca-certificates/cert.pem").exist? end |
.clang_build_version ⇒ Version
Get the Clang build version.
96 97 98 99 100 101 102 103 104 |
# File 'development_tools.rb', line 96 def clang_build_version @clang_build_version ||= T.let( if (build_version = clang_version_output&.[](%r{clang(?:-| version [^ ]+ \(tags/RELEASE_)(\d{2,})}, 1)) Version.new(build_version) else Version::NULL end, T.nilable(Version) ) end |
.clang_version ⇒ Version
Get the Clang version.
82 83 84 85 86 87 88 89 90 |
# File 'development_tools.rb', line 82 def clang_version @clang_version ||= T.let( if (build_version = clang_version_output&.[](/(?:clang|LLVM) version (\d+\.\d(?:\.\d)?)/, 1)) Version.new(build_version) else Version::NULL end, T.nilable(Version) ) end |
.clang_version_output ⇒ String?
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
70 71 72 73 74 75 76 |
# File 'development_tools.rb', line 70 def clang_version_output @clang_version_output ||= T.let( if (path = locate("clang")) Utils.popen_read_text(path, "--version", err: :err) end, T.nilable(String) ) end |
.clear_version_cache ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
This method returns an undefined value.
159 160 161 162 163 |
# File 'development_tools.rb', line 159 def clear_version_cache @clang_version_output = T.let(nil, T.nilable(String)) @clang_version = @clang_build_version = @llvm_clang_version = T.let(nil, T.nilable(Version)) @gcc_version = T.let({}, T.nilable(T::Hash[String, Version])) end |
.curl_handles_most_https_certificates? ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
181 182 183 |
# File 'development_tools.rb', line 181 def curl_handles_most_https_certificates? true end |
.curl_substitution_required? ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
192 193 194 |
# File 'development_tools.rb', line 192 def curl_substitution_required? !curl_handles_most_https_certificates? && !HOMEBREW_BREWED_CURL_PATH.exist? end |
.custom_installation_instructions ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
44 45 46 |
# File 'development_tools.rb', line 44 def custom_installation_instructions installation_instructions end |
.default_compiler ⇒ Symbol
Get the default C compiler.
60 61 62 |
# File 'development_tools.rb', line 60 def default_compiler :clang end |
.gcc_version(cc = host_gcc_path.to_s) ⇒ Version
Get the GCC version.
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'development_tools.rb', line 142 def gcc_version(cc = host_gcc_path.to_s) (@gcc_version ||= T.let({}, T.nilable(T::Hash[String, Version]))).fetch(cc) do path = HOMEBREW_PREFIX/"opt/#{CompilerSelector.preferred_gcc}/bin"/cc path = locate(cc) unless path.exist? version = if path && (build_version = Utils.popen_read_text(path, "--version", err: :err)[ /gcc(?:(?:-\d+(?:\.\d)?)? \(.+\))? (\d+\.\d\.\d)/, 1 ]) Version.new(build_version) else Version::NULL end @gcc_version[cc] = version end end |
.host_gcc_path ⇒ Pathname
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
134 135 136 |
# File 'development_tools.rb', line 134 def host_gcc_path Pathname.new("/usr/bin/gcc") end |
.insecure_download_warning(resource) ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
49 50 51 52 53 54 |
# File 'development_tools.rb', line 49 def insecure_download_warning(resource) package = curl_handles_most_https_certificates? ? "ca-certificates" : "curl" "Using `--insecure` with curl to download #{resource} because we need it to run " \ "`brew install #{package}` in order to download securely from now on. " \ "Checksums will still be verified." end |
.installation_instructions ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
39 40 41 |
# File 'development_tools.rb', line 39 def installation_instructions "Install Clang or run `brew install gcc`." end |
.installed? ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
34 35 36 |
# File 'development_tools.rb', line 34 def installed? !!(locate("clang") || locate("gcc")) end |
.ld64_version ⇒ Version
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
65 66 67 |
# File 'development_tools.rb', line 65 def ld64_version Version::NULL end |
.llvm_clang_build_version ⇒ Version
Query the required LLVM compiler with --version instead.
Get the LLVM Clang build version.
111 112 113 114 115 |
# File 'development_tools.rb', line 111 def llvm_clang_build_version odeprecated "DevelopmentTools.llvm_clang_build_version", "the required LLVM compiler's `--version` output" llvm_clang_version end |
.llvm_clang_version ⇒ Version
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
119 120 121 122 123 124 125 126 127 128 129 130 131 |
# File 'development_tools.rb', line 119 def llvm_clang_version @llvm_clang_version ||= T.let(begin path = Formula["llvm"].opt_prefix/"bin/clang" if path.executable? && (build_version = Utils.popen_read_text(path, "--version", err: :err)[/clang version (\d+\.\d\.\d)/, 1]) Version.new(build_version) else Version::NULL end rescue FormulaUnavailableError Version::NULL end, T.nilable(Version)) end |
.locate(tool) ⇒ Pathname?
Locate a development tool.
19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'development_tools.rb', line 19 def locate(tool) # Don't call tools (cc, make, strip, etc.) directly! # Give the name of the binary you look for as a string to this method # in order to get the full path back as a Pathname. (@locate ||= T.let({}, T.nilable(T::Hash[T.any(String, Symbol), T.untyped]))).fetch(tool) do |key| @locate[key] = if File.executable?(path = "/usr/bin/#{tool}") Pathname.new path # Homebrew GCCs most frequently; much faster to check this before xcrun elsif (path = HOMEBREW_PREFIX/"bin/#{tool}").executable? path end end end |
.needs_build_formulae? ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
166 167 168 |
# File 'development_tools.rb', line 166 def needs_build_formulae? needs_libc_formula? || needs_compiler_formula? end |
.needs_compiler_formula? ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
176 177 178 |
# File 'development_tools.rb', line 176 def needs_compiler_formula? false end |
.needs_libc_formula? ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
171 172 173 |
# File 'development_tools.rb', line 171 def needs_libc_formula? false end |