diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2020-05-28 04:27:08 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2020-05-28 04:27:30 -0700 |
commit | fa6ecf940581b4be26165351bb0473427d31c7d8 (patch) | |
tree | 705792f0d0fbe8534cf0cffa895bba8d0313f5b3 /ld/configure.tgt | |
parent | b32632c49968cd03e952f9b63b32d9e9f1ddaf53 (diff) | |
download | gdb-fa6ecf940581b4be26165351bb0473427d31c7d8.zip gdb-fa6ecf940581b4be26165351bb0473427d31c7d8.tar.gz gdb-fa6ecf940581b4be26165351bb0473427d31c7d8.tar.bz2 |
ld: Enable --warn-textrel by default for Linux/x86 targets
* configure.tgt (ac_default_ld_textrel_check): Set to if unset
for Linux/x86 targets.
Diffstat (limited to 'ld/configure.tgt')
-rw-r--r-- | ld/configure.tgt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ld/configure.tgt b/ld/configure.tgt index 0b6ee8b..c166da8 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 |