From 956b03bbdfefa9936821d4ee58e41cf7bacf81f3 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 8 Mar 2013 22:34:46 +0000 Subject: [PATCH] * options.cc (General_options::string_to_object_format): Accept "default". --- gold/ChangeLog | 5 +++++ gold/options.cc | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gold/ChangeLog b/gold/ChangeLog index 0b5e99e..bbd4eb3 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,8 @@ +2013-03-08 Ian Lance Taylor + + * options.cc (General_options::string_to_object_format): Accept + "default". + 2013-03-08 Alan Modra * ehframe.h (Post_fdes) Make it a vector of Post_fde rather than diff --git a/gold/options.cc b/gold/options.cc index fe9a00e..5b94fae 100644 --- a/gold/options.cc +++ b/gold/options.cc @@ -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; -- 2.7.4