Displaying 1 result from an estimated 1 matches for "outputkind".
Did you mean:
output_kind
2012 Aug 01
1
[LLVMdev] lld MachO addEntryPointLoadCommand
Should this function return true when _outputkind is
outputDynamicExecutable?
WriterOptionsMachO.cpp:
bool WriterOptionsMachO::addEntryPointLoadCommand() const {
switch ( _outputkind ) {
case outputDynamicExecutable:
// Only main executables have an entry point
return false;
case outputDylib:
case outputBundle:...