diff options
author | Romain Geissler <romain.geissler@gmail.com> | 2017-08-08 07:25:39 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2017-08-08 07:25:39 +0930 |
commit | 2760f24c4942853eac7b921e4b8843d57a602654 (patch) | |
tree | 032df5cd9ee9386bd44239b733038f23f4388733 /ld/config.in | |
parent | 8f5e83fb735af978b99ea6e22574560bf667d1d6 (diff) | |
download | gdb-2760f24c4942853eac7b921e4b8843d57a602654.zip gdb-2760f24c4942853eac7b921e4b8843d57a602654.tar.gz gdb-2760f24c4942853eac7b921e4b8843d57a602654.tar.bz2 |
Add configure flag to enable gnu hash style by default.
ld/
* configure.ac: Add --enable-default-hash-style option.
* ldmain.c (main): Set link_info.emit_hash to DEFAULT_EMIT_SYSV_HASH.
Set link_info.emit_gnu_hash to DEFAULT_EMIT_GNU_HASH.
* configure: Regenerate.
* config.in: Regenerate.
gold/
* configure.ac: Add --enable-default-hash-style option.
* options.h (hash_style): Use DEFAULT_HASH_STYLE as default value.
* configure: Regenerate.
* config.in: Regenerate.
Diffstat (limited to 'ld/config.in')
-rw-r--r-- | ld/config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ld/config.in b/ld/config.in index 5d91380..a846743 100644 --- a/ld/config.in +++ b/ld/config.in @@ -7,6 +7,12 @@ #endif #define __CONFIG_H__ 1 +/* Define to 1 if you want to emit gnu hash in the ELF linker by default. */ +#undef DEFAULT_EMIT_GNU_HASH + +/* Define to 1 if you want to emit sysv hash in the ELF linker by default. */ +#undef DEFAULT_EMIT_SYSV_HASH + /* Define if you want compressed debug sections by default. */ #undef DEFAULT_FLAG_COMPRESS_DEBUG |