arm, objdump: print obsolote warning when 26-bit set in instructions
[binutils-gdb.git] / ld / emulparams / dt-relr.sh
blobb2b403ce236a3c9173dc73bde5cbf2e02c08d9ed
1 HAVE_DT_RELR=yes
2 PARSE_AND_LIST_OPTIONS_PACK_RELATIVE_RELOCS='
3 fprintf (file, _("\
4 -z pack-relative-relocs Pack relative relocations\n"));
5 fprintf (file, _("\
6 -z nopack-relative-relocs Do not pack relative relocations (default)\n"));
9 PARSE_AND_LIST_ARGS_CASE_Z_PACK_RELATIVE_RELOCS='
10 else if (strcmp (optarg, "pack-relative-relocs") == 0)
11 link_info.enable_dt_relr = true;
12 else if (strcmp (optarg, "nopack-relative-relocs") == 0)
13 link_info.enable_dt_relr = false;
17 PARSE_AND_LIST_OPTIONS="$PARSE_AND_LIST_OPTIONS $PARSE_AND_LIST_OPTIONS_PACK_RELATIVE_RELOCS"
18 PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_PACK_RELATIVE_RELOCS"