Update release readme after making 2.43.1 release
[binutils-gdb.git] / ld / emulparams / x86-64-plt.sh
blobd1a5c65937f59fd4299637d0909ce7cea4b1ddca
1 PARSE_AND_LIST_OPTIONS_X86_64_PLT='
2 if (DEFAULT_LD_Z_MARK_PLT != 0)
3 fprintf (file, _("\
4 -z mark-plt Mark PLT with dynamic tags (default)\n\
5 -z nomark-plt Do not mark PLT with dynamic tags\n"));
6 else
7 fprintf (file, _("\
8 -z mark-plt Mark PLT with dynamic tags\n\
9 -z nomark-plt Do not mark PLT with dynamic tags (default)\n"));
11 PARSE_AND_LIST_ARGS_CASE_Z_X86_64_PLT='
12 else if (strcmp (optarg, "mark-plt") == 0)
13 params.mark_plt = 1;
14 else if (strcmp (optarg, "nomark-plt") == 0)
15 params.mark_plt = 0;
18 PARSE_AND_LIST_OPTIONS="$PARSE_AND_LIST_OPTIONS $PARSE_AND_LIST_OPTIONS_X86_64_PLT"
19 PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_X86_64_PLT"