class Pliney::MachO::LC_RPATH_Reader

Attributes

offset[R]
rpath_data[R]

Public Instance Methods

parse() click to toggle source
Calls superclass method Pliney::MachO::CommonLCReader#parse
# File lib/pliney/macho.rb, line 546
def parse()
    super()
    @offset = @fh.read_uint32le
    @rpath_data = @fh.strictread(@cmdsize - @offset)
end
rpath() click to toggle source
# File lib/pliney/macho.rb, line 552
def rpath()
    @rpath_data.unpack("Z*").first
end