x86-report-relative.sh 480 B

1234567891011
  1. PARSE_AND_LIST_OPTIONS_X86_REPORT_RELATIVE='
  2. fprintf (file, _("\
  3. -z report-relative-reloc Report relative relocations\n"));
  4. '
  5. PARSE_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. PARSE_AND_LIST_OPTIONS="$PARSE_AND_LIST_OPTIONS $PARSE_AND_LIST_OPTIONS_X86_REPORT_RELATIVE"
  10. PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_X86_REPORT_RELATIVE"