1PARSE_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
7PARSE_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
14PARSE_AND_LIST_OPTIONS="$PARSE_AND_LIST_OPTIONS $PARSE_AND_LIST_OPTIONS_DYNAMIC_UNDEFINED_WEAK"
15PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_DYNAMIC_UNDEFINED_WEAK"
16