xref: /dflybsd-src/contrib/binutils-2.27/ld/emulparams/reloc_overflow.sh (revision e656dc90e3d65d744d534af2f5ea88cf8101ebcf)
1PARSE_AND_LIST_OPTIONS_RELOC_OVERFLOW='
2  fprintf (file, _("\
3  -z noreloc-overflow         Disable relocation overflow check\n"));
4'
5PARSE_AND_LIST_ARGS_CASE_Z_RELOC_OVERFLOW='
6      else if (strcmp (optarg, "noreloc-overflow") == 0)
7	link_info.no_reloc_overflow_check = TRUE;
8'
9
10PARSE_AND_LIST_OPTIONS="$PARSE_AND_LIST_OPTIONS $PARSE_AND_LIST_OPTIONS_RELOC_OVERFLOW"
11PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_RELOC_OVERFLOW"
12