xref: /netbsd-src/external/gpl3/binutils.old/dist/ld/emulparams/x86-report-relative.sh (revision c42dbd0ed2e61fe6eda8590caa852ccf34719964)
1PARSE_AND_LIST_OPTIONS_X86_REPORT_RELATIVE='
2  fprintf (file, _("\
3  -z report-relative-reloc    Report relative relocations\n"));
4'
5PARSE_AND_LIST_ARGS_CASE_Z_X86_REPORT_RELATIVE='
6      else if (strcmp (optarg, "report-relative-reloc") == 0)
7	params.report_relative_reloc = 1;
8'
9
10PARSE_AND_LIST_OPTIONS="$PARSE_AND_LIST_OPTIONS $PARSE_AND_LIST_OPTIONS_X86_REPORT_RELATIVE"
11PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_X86_REPORT_RELATIVE"
12