mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
c58212eaf9
This patch adds ld_list_options for ELF targets to avoid duplicated outputs from ld --help. * Makefile.am (ELF_CLFAGS): New. (AM_CFLAGS): Add $(ELF_CLFAGS). * configure.ac (elf_list_options): New. AC_SUBST. (elf_shlib_list_options): Likewise. (elf_plt_unwind_list_options): Likewise. * lexsup.c (elf_shlib_list_options): New. (elf_static_list_options): Likewise. (elf_plt_unwind_list_options): Likewise. (ld_list_options): Likewise. (help): Call ld_list_options. * Makefile.in: Regenerated. * configure: Likewise. * emulparams/plt_unwind.sh (PLT_UNWIND): New. (PARSE_AND_LIST_OPTIONS): Removed. * emultempl/elf32.em (gld_list_options): New. (gld${EMULATION_NAME}_list_options): Define only if BNDPLT or PARSE_AND_LIST_OPTIONS is defined. (ld_${EMULATION_NAME}_emulation): Replace gld${EMULATION_NAME}_list_options with ${gld_list_options.
24 lines
594 B
Bash
24 lines
594 B
Bash
PLT_UNWIND=yes
|
|
|
|
PARSE_AND_LIST_PROLOGUE='
|
|
#define OPTION_LD_GENERATED_UNWIND_INFO 301
|
|
#define OPTION_NO_LD_GENERATED_UNWIND_INFO 302
|
|
'
|
|
|
|
PARSE_AND_LIST_LONGOPTS='
|
|
{"ld-generated-unwind-info", no_argument, NULL,
|
|
OPTION_LD_GENERATED_UNWIND_INFO},
|
|
{"no-ld-generated-unwind-info", no_argument, NULL,
|
|
OPTION_NO_LD_GENERATED_UNWIND_INFO},
|
|
'
|
|
|
|
PARSE_AND_LIST_ARGS_CASES='
|
|
case OPTION_LD_GENERATED_UNWIND_INFO:
|
|
link_info.no_ld_generated_unwind_info = FALSE;
|
|
break;
|
|
|
|
case OPTION_NO_LD_GENERATED_UNWIND_INFO:
|
|
link_info.no_ld_generated_unwind_info = TRUE;
|
|
break;
|
|
'
|