class MachO::LoadCommands::LinkerOptionCommand
A load command containing linker options embedded in object files. Corresponds to LC_LINKER_OPTION.
Constants
- FORMAT
@see MachOStructure::FORMAT @api private
- SIZEOF
@see MachOStructure::SIZEOF @api private
Attributes
count[R]
@return [Fixnum] the number of strings
Public Class Methods
new(view, cmd, cmdsize, count)
click to toggle source
@api private
Calls superclass method
MachO::LoadCommands::LoadCommand::new
# File lib/macho/load_commands.rb, line 1197 def initialize(view, cmd, cmdsize, count) super(view, cmd, cmdsize) @count = count end