if (IS_ABSOLUTE_PATH (this->input_argument_->name())
|| (!this->input_argument_->is_lib()
&& this->input_argument_->extra_search_path() == NULL))
- name = this->input_argument_->name();
-
+ {
+ name = this->input_argument_->name();
+ this->found_name_ = name;
+ }
// Case 3: is_lib is true
else if (this->input_argument_->is_lib())
{
this->input_argument_->name());
gold_exit(false);
}
+ if (n2.empty() || name[name.length() - 1] == 'o')
+ this->found_name_ = n1;
+ else
+ this->found_name_ = n2;
}
-
// Case 4: extra_search_path is not empty
else
{
gold_exit(false);
}
}
+ this->found_name_ = this->input_argument_->name();
}
// Now that we've figured out where the file lives, try to open it.
{
public:
Input_file(const Input_file_argument* input_argument)
- : input_argument_(input_argument), file_(), is_in_sysroot_(false)
+ : input_argument_(input_argument), found_name_(), file_(),
+ is_in_sysroot_(false)
{ }
// Create an input file with the contents already provided. This is
void
open(const General_options&, const Dirsearch&);
- // Return the name given by the user.
+ // Return the name given by the user. For -lc this will return "c".
const char*
name() const
{ return this->input_argument_->name(); }
- // Return the file name.
+ // Return the file name. For -lc this will return something like
+ // "/usr/lib/libc.so".
const std::string&
filename() const
{ return this->file_.filename(); }
+ // Return the name under which we found the file, corresponding to
+ // the command line. For -lc this will return something like
+ // "libc.so".
+ const std::string&
+ found_name() const
+ { return this->found_name_; }
+
// Return the position dependent options.
const Position_dependent_options&
options() const
// The argument from the command line.
const Input_file_argument* input_argument_;
+ // The name under which we opened the file. This is like the name
+ // on the command line, but -lc turns into libc.so (or whatever).
+ // It only includes the full path if the path was on the command
+ // line.
+ std::string found_name_;
// The file after we open it.
File_read file_;
// Whether we found the file in a directory in the system root.