|
|
|
@ -652,7 +652,7 @@ General_options::check_excluded_libs(const std::string &name) const |
|
|
|
General_options::Object_format |
|
|
|
General_options::string_to_object_format(const char* arg) |
|
|
|
{ |
|
|
|
if (strncmp(arg, "elf", 3) == 0) |
|
|
|
if (strncmp(arg, "elf", 3) == 0 || strcmp(arg, "default") == 0) |
|
|
|
return gold::General_options::OBJECT_FORMAT_ELF; |
|
|
|
else if (strcmp(arg, "binary") == 0) |
|
|
|
return gold::General_options::OBJECT_FORMAT_BINARY; |
|
|
|
|