diff options
Diffstat (limited to 'gold/archive.h')
-rw-r--r-- | gold/archive.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gold/archive.h b/gold/archive.h index 18cd899..66e4b2c 100644 --- a/gold/archive.h +++ b/gold/archive.h @@ -175,6 +175,9 @@ class Archive : public Library_base // The string expected at the end of an archive member header. static const char arfmag[2]; + // Name of 64-bit symbol table member. + static const char sym64name[7]; + // The name of the object. This is the name used on the command // line; e.g., if "-lgcc" is on the command line, this will be // "gcc". @@ -290,6 +293,7 @@ class Archive : public Library_base { return this->input_file_->file().get_view(0, start, size, aligned, cache); } // Read the archive symbol map. + template<int mapsize> void read_armap(off_t start, section_size_type size); |