Multi-target: NEWS and user manual
[deliverable/binutils-gdb.git] / ld / emulparams / dynamic_undefined_weak.sh
1 PARSE_AND_LIST_OPTIONS_DYNAMIC_UNDEFINED_WEAK='
2 fprintf (file, _("\
3 -z dynamic-undefined-weak Make undefined weak symbols dynamic\n\
4 -z nodynamic-undefined-weak Do not make undefined weak symbols dynamic\n"));
5 '
6
7 PARSE_AND_LIST_ARGS_CASE_Z_DYNAMIC_UNDEFINED_WEAK='
8 else if (strcmp (optarg, "dynamic-undefined-weak") == 0)
9 link_info.dynamic_undefined_weak = TRUE;
10 else if (strcmp (optarg, "nodynamic-undefined-weak") == 0)
11 link_info.dynamic_undefined_weak = FALSE;
12 '
13
14 PARSE_AND_LIST_OPTIONS="$PARSE_AND_LIST_OPTIONS $PARSE_AND_LIST_OPTIONS_DYNAMIC_UNDEFINED_WEAK"
15 PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_DYNAMIC_UNDEFINED_WEAK"
This page took 0.03331 seconds and 4 git commands to generate.