summaryrefslogtreecommitdiff
path: root/ld/emulparams/reloc_overflow.sh
blob: 7ba0ee50d80a09e454f6b9eaf14064e8b1537083 (plain)
1
2
3
4
5
6
7
8
9
10
11
PARSE_AND_LIST_OPTIONS_RELOC_OVERFLOW='
  fprintf (file, _("\
  -z noreloc-overflow         Disable relocation overflow check\n"));
'
PARSE_AND_LIST_ARGS_CASE_Z_RELOC_OVERFLOW='
      else if (strcmp (optarg, "noreloc-overflow") == 0)
	link_info.no_reloc_overflow_check = TRUE;
'

PARSE_AND_LIST_OPTIONS="$PARSE_AND_LIST_OPTIONS $PARSE_AND_LIST_OPTIONS_RELOC_OVERFLOW"
PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_RELOC_OVERFLOW"