Module: OS::Linux::Ld Private

Defined in:
os/linux/ld.rb

Overview

This module is part of a private API. This module may only be used in the Homebrew/brew repository. Third parties should avoid using this module if possible, as it may be removed or changed without warning.

Helper functions for querying ld information.

Class Method Summary collapse

Class Method Details

.brewed_ld_so_diagnosticsString

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.

Returns:



9
10
11
12
13
14
15
16
17
# File 'os/linux/ld.rb', line 9

def self.brewed_ld_so_diagnostics
  brewed_ld_so = HOMEBREW_PREFIX/"lib/ld.so"
  return "" unless brewed_ld_so.exist?

  ld_so_output = Utils.popen_read(brewed_ld_so, "--list-diagnostics")
  return "" unless $CHILD_STATUS.success?

  ld_so_output
end

.library_paths(conf_path = Pathname(sysconfdir)/"ld.so.conf") ⇒ Array<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.

Parameters:

  • conf_path (Pathname, String) (defaults to: Pathname(sysconfdir)/"ld.so.conf")

Returns:



44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'os/linux/ld.rb', line 44

def self.library_paths(conf_path = Pathname(sysconfdir)/"ld.so.conf")
  conf_file = Pathname(conf_path)
  paths = Set.new
  directory = conf_file.realpath.dirname

  conf_file.readlines.each do |line|
    # Remove comments and leading/trailing whitespace
    line.strip!
    line.sub!(/\s*#.*$/, "")

    if line.start_with?(/\s*include\s+/)
      include_path = Pathname(line.sub(/^\s*include\s+/, "")).expand_path
      wildcard = include_path.absolute? ? include_path : directory/include_path

      Dir.glob(wildcard.to_s).each do |include_file|
        paths += library_paths(include_file)
      end
    elsif line.empty?
      next
    else
      paths << line
    end
  end

  paths.to_a
end

.sysconfdirString

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.

Returns:



20
21
22
23
24
25
26
27
# File 'os/linux/ld.rb', line 20

def self.sysconfdir
  fallback_sysconfdir = "/etc"

  match = brewed_ld_so_diagnostics.match(/path.sysconfdir="(.+)"/)
  return fallback_sysconfdir unless match

  match.captures.compact.first || fallback_sysconfdir
end

.system_dirsArray<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.

Returns:



30
31
32
33
34
35
36
37
38
39
40
41
# File 'os/linux/ld.rb', line 30

def self.system_dirs
  dirs = []

  brewed_ld_so_diagnostics.split("\n").each do |line|
    match = line.match(/path.system_dirs\[0x.*\]="(.*)"/)
    next unless match

    dirs << match.captures.compact.first
  end

  dirs
end