class MachO::LoadCommands::LinkerOptionCommand

A load command containing linker options embedded in object files. Corresponds to LC_LINKER_OPTION.

Public Instance Methods

to_h() click to toggle source

@return [Hash] a hash representation of this {LinkerOptionCommand}

Calls superclass method MachO::LoadCommands::LoadCommand#to_h
# File lib/macho/load_commands.rb, line 1308
def to_h
  {
    "count" => count,
  }.merge super
end