Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support LC_ATOM_INFO LoadCommand #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions LoadCommands.mm
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ - (NSString *)getNameForCommand:(uint32_t)cmd
case LC_DYLD_EXPORTS_TRIE: return @"LC_DYLD_EXPORTS_TRIE";
case LC_DYLD_CHAINED_FIXUPS: return @"LC_DYLD_CHAINED_FIXUPS";
case LC_FILESET_ENTRY: return @"LC_FILESET_ENTRY";
case LC_ATOM_INFO: return @"LC_ATOM_INFO";
}
}

Expand Down Expand Up @@ -2405,6 +2406,7 @@ -(MVNode *)createLoadCommandNode:(MVNode *)parent
case LC_DATA_IN_CODE:
case LC_DYLIB_CODE_SIGN_DRS:
case LC_LINKER_OPTIMIZATION_HINT:
case LC_ATOM_INFO:
{
MATCH_STRUCT(linkedit_data_command,location)
node = [self createLCLinkeditDataNode:parent
Expand Down