diff options
author | Ian Lance Taylor <iant@google.com> | 2006-11-14 19:21:05 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2006-11-14 19:21:05 +0000 |
commit | dbe717effbdf31236088837f4686fd5ad5e71893 (patch) | |
tree | fd5ed267334d62fadcaf7ff7132c0a7287553ed8 /gold/target.h | |
parent | 6c73cbb1d9a26d1c4d9bd5464832846b7c049b9d (diff) | |
download | gdb-dbe717effbdf31236088837f4686fd5ad5e71893.zip gdb-dbe717effbdf31236088837f4686fd5ad5e71893.tar.gz gdb-dbe717effbdf31236088837f4686fd5ad5e71893.tar.bz2 |
More dynamic object support, initial scripting support.
Diffstat (limited to 'gold/target.h')
-rw-r--r-- | gold/target.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gold/target.h b/gold/target.h index 8e00a4d..5a86c35 100644 --- a/gold/target.h +++ b/gold/target.h @@ -65,6 +65,11 @@ class Target has_resolve() const { return this->pti_->has_resolve; } + // Return the default name of the dynamic linker. + const char* + dynamic_linker() const + { return this->pti_->dynamic_linker; } + // Return the default address to use for the text segment. uint64_t text_segment_address() const @@ -96,6 +101,8 @@ class Target bool has_make_symbol; // Whether this target has a specific resolve function. bool has_resolve; + // The default dynamic linker name. + const char* dynamic_linker; // The default text segment address. uint64_t text_segment_address; // The ABI specified page size. |