[PATCH] ld: Enable --warn-textrel by default for Linux/x86 targets
H.J. Lu
hjl.tools@gmail.com
Thu May 28 11:26:30 GMT 2020
* configure.tgt (ac_default_ld_textrel_check): Set to if unset
for Linux/x86 targets.
---
ld/configure.tgt | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/ld/configure.tgt b/ld/configure.tgt
index 0b6ee8bc87..c166da885b 100644
--- a/ld/configure.tgt
+++ b/ld/configure.tgt
@@ -1116,11 +1116,14 @@ frv-*-* | hppa*-*-* | ia64-*-* | mips*-*-*)
;;
esac
-# Enable -z separate-code by default for Linux/x86.
+# Enable -z separate-code and --warn-textrel by default for Linux/x86.
case "${target}" in
i[3-7]86-*-linux-* | x86_64-*-linux-*)
if test ${ac_default_ld_z_separate_code} = unset; then
ac_default_ld_z_separate_code=1
fi
+ if test ${ac_default_ld_textrel_check} = unset; then
+ ac_default_ld_textrel_check=yes
+ fi
;;
esac
--
2.26.2
More information about the Binutils
mailing list