diff options
author | Nick Clifton <nickc@redhat.com> | 2016-08-19 09:27:52 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2016-08-19 09:27:52 +0100 |
commit | 576438f0fa3ecbe0b49b3bcc2f028d586d198247 (patch) | |
tree | ad4d8f2580404143a49cd2fe58bd4780403faf52 /ld/emultempl/linux.em | |
parent | dd90581873482f67922a4ace92dafdfdfed09f3c (diff) | |
download | gdb-576438f0fa3ecbe0b49b3bcc2f028d586d198247.zip gdb-576438f0fa3ecbe0b49b3bcc2f028d586d198247.tar.gz gdb-576438f0fa3ecbe0b49b3bcc2f028d586d198247.tar.bz2 |
Enable relro by default for AArch64, ARM and SCORE.
ld * emultempl/aarch64elf.em (before_parse): Initialise the relro
field in the link_info structure.
* emultempl/armelf.em (before_parse): Likewise.
* emultempl/linux.em (before_parse): Likewise.
* emultempl/scoreelf.em (before_parse): Likewise.
Diffstat (limited to 'ld/emultempl/linux.em')
-rw-r--r-- | ld/emultempl/linux.em | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ld/emultempl/linux.em b/ld/emultempl/linux.em index c28e978..64a9130 100644 --- a/ld/emultempl/linux.em +++ b/ld/emultempl/linux.em @@ -50,6 +50,7 @@ gld${EMULATION_NAME}_before_parse (void) ldfile_set_output_arch ("${OUTPUT_ARCH}", bfd_arch_`echo ${ARCH} | sed -e 's/:.*//'`); input_flags.dynamic = TRUE; config.has_shared = TRUE; + link_info.relro = DEFAULT_LD_Z_RELRO; } /* Try to open a dynamic archive. This is where we know that Linux |