xref: /netbsd-src/external/gpl3/binutils/dist/ld/emulparams/x86-report-relative.sh (revision 4f645668ed707e1f969c546666f8c8e45e6f8888)
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