class MachO::HeaderPadError

Raised when load commands are too large to fit in the current file.

Public Class Methods

new(filename) click to toggle source

@param filename [String] the filename

Calls superclass method
# File lib/macho/exceptions.rb, line 177
def initialize(filename)
  super "Updated load commands do not fit in the header of " \
        "#{filename}. #{filename} needs to be relinked, possibly with " \
        "-headerpad or -headerpad_max_install_names"
end