Home | History | Annotate | Download | only in bin

Lines Matching refs:OTOOL

89   #"otool" => "otool",         # equivalent of objdump on OS X
4488 # Parse text section header of a library using otool (on OS X)
4495 # Get otool output from the library file to figure out how to
4497 my $command = ShellEscape($obj_tool_map{"otool"}, "-l", $lib);
4498 open(OTOOL, "$command |") || error("$command: $!\n");
4502 foreach my $line (<OTOOL>) {
4544 close(OTOOL);
4559 # obj_tool_map("otool") is only defined if we're in a Mach-O environment
4560 if (defined($obj_tool_map{"otool"})) {
4566 # If otool doesn't work, or we don't have it, fall back to objdump
5134 # OS X uses otool to examine Mach-O files, rather than objdump.
5135 $obj_tool_map{"otool"} = "otool";