aboutsummaryrefslogtreecommitdiff
path: root/gold/options.h
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2008-09-16 04:23:29 +0000
committerAlexandre Oliva <aoliva@redhat.com>2008-09-16 04:23:29 +0000
commit183fd0e3ed5f9229379cb3e75f64939ba123c9b8 (patch)
tree62ee5c331ee593d80a181c86aa293ecd1049a6f5 /gold/options.h
parentb7f9e084d27da4ebfb4b8d2531738e4bcb57e28a (diff)
downloadgdb-183fd0e3ed5f9229379cb3e75f64939ba123c9b8.zip
gdb-183fd0e3ed5f9229379cb3e75f64939ba123c9b8.tar.gz
gdb-183fd0e3ed5f9229379cb3e75f64939ba123c9b8.tar.bz2
* options.h (General_options::output_is_executable): New.
(General_options::output_is_pie): New. * i386.cc (Target_i386::define_tls_base_symbol): Use SEGMENT_START for shared libraries. * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
Diffstat (limited to 'gold/options.h')
-rw-r--r--gold/options.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/gold/options.h b/gold/options.h
index 8614ce6..2926730 100644
--- a/gold/options.h
+++ b/gold/options.h
@@ -865,6 +865,20 @@ class General_options
output_is_position_independent() const
{ return this->shared(); }
+ // Return true if the output is something that can be exec()ed, such
+ // as a static executable, or a position-dependent or
+ // position-independent executable, but not a dynamic library or an
+ // object file.
+ bool
+ output_is_executable() const
+ { return !this->shared() || this->output_is_pie(); }
+
+ // Return true if the output is a position-independent executable.
+ // This is currently not supported.
+ bool
+ output_is_pie() const
+ { return false; }
+
// This would normally be static(), and defined automatically, but
// since static is a keyword, we need to come up with our own name.
bool