MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / BuildToolToString

Function BuildToolToString

view/macho/machoview.cpp:110–124  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108
109
110static string BuildToolToString(uint32_t tool)
111{
112 switch (tool)
113 {
114 case MACHO_TOOL_CLANG: return "clang";
115 case MACHO_TOOL_SWIFT: return "swift";
116 case MACHO_TOOL_LD: return "ld";
117 default:
118 {
119 stringstream ss;
120 ss << "0x" << std::hex << tool;
121 return ss.str();
122 }
123 }
124}
125
126
127static string BuildToolVersionToString(uint32_t version)

Callers 1

HeaderForAddressMethod · 0.85

Calls 1

strMethod · 0.80

Tested by

no test coverage detected