diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-04-09 07:46:21 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-04-09 07:53:00 -0700 |
commit | eba27bd7815b5d5e7bafc2bf37f9c4c7dda30ec6 (patch) | |
tree | d23155fb63860edfb593f3c205a0fdf65feea759 /ld/emultempl/elf32.em | |
parent | 7823a9415b2919241f7a7425d9dcc3c62ada0779 (diff) | |
download | gdb-eba27bd7815b5d5e7bafc2bf37f9c4c7dda30ec6.zip gdb-eba27bd7815b5d5e7bafc2bf37f9c4c7dda30ec6.tar.gz gdb-eba27bd7815b5d5e7bafc2bf37f9c4c7dda30ec6.tar.bz2 |
Remove BNDPLT and add PARSE_AND_LIST_ARGS_CASE_Z
* emulparams/elf_x86_64.sh (BNDPLT): Removed.
(PARSE_AND_LIST_OPTIONS): New.
(PARSE_AND_LIST_ARGS_CASE_Z): Likewise.
* emultempl/elf32.em (gld${EMULATION_NAME}_handle_option): Remove
BNDPLT check. Handle PARSE_AND_LIST_ARGS_CASE_Z.
(gld${EMULATION_NAME}_list_options): Remove BNDPLT check.
Diffstat (limited to 'ld/emultempl/elf32.em')
-rw-r--r-- | ld/emultempl/elf32.em | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index dc643b6..5db5a93 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -2286,13 +2286,6 @@ fragment <<EOF } EOF -if test x"$BNDPLT" = xyes; then -fragment <<EOF - else if (strcmp (optarg, "bndplt") == 0) - link_info.bndplt = TRUE; -EOF -fi - if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then fragment <<EOF else if (strcmp (optarg, "global") == 0) @@ -2345,6 +2338,12 @@ fragment <<EOF EOF fi +if test -n "$PARSE_AND_LIST_ARGS_CASE_Z" ; then +fragment <<EOF + $PARSE_AND_LIST_ARGS_CASE_Z +EOF +fi + fragment <<EOF else einfo (_("%P: warning: -z %s ignored.\n"), optarg); @@ -2367,7 +2366,7 @@ EOF if test x"$LDEMUL_LIST_OPTIONS" != xgld"$EMULATION_NAME"_list_options; then gld_list_options="gld${EMULATION_NAME}_list_options" -if test -n "$PARSE_AND_LIST_OPTIONS" || test x"$BNDPLT" = xyes; then +if test -n "$PARSE_AND_LIST_OPTIONS"; then fragment <<EOF static void @@ -2375,13 +2374,6 @@ gld${EMULATION_NAME}_list_options (FILE * file) { EOF -if test x"$BNDPLT" = xyes; then -fragment <<EOF - fprintf (file, _("\ - -z bndplt Always generate BND prefix in PLT entries\n")); -EOF -fi - if test -n "$PARSE_AND_LIST_OPTIONS" ; then fragment <<EOF $PARSE_AND_LIST_OPTIONS |