Enable relro by default for AArch64, ARM and SCORE. submit/tizen_base/20181026.090949
authorNick Clifton <nickc@redhat.com>
Fri, 19 Aug 2016 08:27:52 +0000 (09:27 +0100)
committerAndrey Drobyshev <a.drobyshev@partner.samsung.com>
Tue, 23 Oct 2018 13:58:05 +0000 (16:58 +0300)
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.

Backported from upstream 576438f.

Signed-off-by: Andrey Drobyshev <a.drobyshev@partner.samsung.com>
Change-Id: I37738901650b0d254316bbbd8938beebd12418d1

ld/ChangeLog
ld/emultempl/aarch64elf.em
ld/emultempl/armelf.em
ld/emultempl/linux.em
ld/emultempl/scoreelf.em

index 21305c3..f9ba9c1 100644 (file)
@@ -9,6 +9,14 @@
        * testsuite/ld-x86-64/pr20830.s: Likewise.
 
 
+2016-08-19  Nick Clifton  <nickc@redhat.com>
+
+       * 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.
+
 2016-08-03  Tristan Gingold  <gingold@adacore.com>
 
        * configure: Regenerate.
index a17553a..9f2c349 100644 (file)
@@ -43,6 +43,7 @@ gld${EMULATION_NAME}_before_parse (void)
   input_flags.dynamic = ${DYNAMIC_LINK-TRUE};
   config.has_shared = `if test -n "$GENERATE_SHLIB_SCRIPT" ; then echo TRUE ; else echo FALSE ; fi`;
   config.separate_code = `if test "x${SEPARATE_CODE}" = xyes ; then echo TRUE ; else echo FALSE ; fi`;
+  link_info.relro = DEFAULT_LD_Z_RELRO;
 }
 
 static void
index 6074824..03e8fe9 100644 (file)
@@ -52,6 +52,7 @@ gld${EMULATION_NAME}_before_parse (void)
   input_flags.dynamic = ${DYNAMIC_LINK-TRUE};
   config.has_shared = `if test -n "$GENERATE_SHLIB_SCRIPT" ; then echo TRUE ; else echo FALSE ; fi`;
   config.separate_code = `if test "x${SEPARATE_CODE}" = xyes ; then echo TRUE ; else echo FALSE ; fi`;
+  link_info.relro = DEFAULT_LD_Z_RELRO;
 }
 
 static void
index c28e978..64a9130 100644 (file)
@@ -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
index 6433365..7df7f5f 100644 (file)
@@ -39,6 +39,7 @@ gld${EMULATION_NAME}_before_parse (void)
   input_flags.dynamic = ${DYNAMIC_LINK-TRUE};
   config.has_shared = `if test -n "$GENERATE_SHLIB_SCRIPT" ; then echo TRUE ; else echo FALSE ; fi`;
   config.separate_code = `if test "x${SEPARATE_CODE}" = xyes ; then echo TRUE ; else echo FALSE ; fi`;
+  link_info.relro = DEFAULT_LD_Z_RELRO;
 }
 
 static void