Add -rpath-link option, currently unused.

This commit is contained in:
Ian Lance Taylor
2007-09-06 23:37:53 +00:00
parent 3e34759906
commit 15b3cfae2b
2 changed files with 16 additions and 1 deletions

View File

@@ -74,6 +74,11 @@ class General_options
rpath() const
{ return this->rpath_; }
// --rpath-link: The link time search patch for shared libraries.
const Dir_list&
rpath_link() const
{ return this->rpath_link_; }
// --shared: Whether generating a shared object.
bool
is_shared() const
@@ -120,6 +125,10 @@ class General_options
add_to_rpath(const char* arg)
{ this->rpath_.push_back(arg); }
void
add_to_rpath_link(const char* arg)
{ this->rpath_link_.push_back(arg); }
void
set_shared()
{ this->is_shared_ = true; }
@@ -139,6 +148,7 @@ class General_options
bool is_relocatable_;
bool create_eh_frame_hdr_;
Dir_list rpath_;
Dir_list rpath_link_;
bool is_shared_;
bool is_static_;
};