2017-10-07 02:16:47 +02:00
|
|
|
PARSE_AND_LIST_OPTIONS_DYNAMIC_UNDEFINED_WEAK='
|
2017-04-10 13:32:00 +02:00
|
|
|
fprintf (file, _("\
|
2017-10-07 02:16:47 +02:00
|
|
|
-z dynamic-undefined-weak Make undefined weak symbols dynamic\n\
|
|
|
|
-z nodynamic-undefined-weak Do not make undefined weak symbols dynamic\n"));
|
2017-04-10 13:32:00 +02:00
|
|
|
'
|
|
|
|
|
2017-10-07 02:16:47 +02:00
|
|
|
PARSE_AND_LIST_ARGS_CASE_Z_DYNAMIC_UNDEFINED_WEAK='
|
|
|
|
else if (strcmp (optarg, "dynamic-undefined-weak") == 0)
|
2022-10-27 20:45:45 +02:00
|
|
|
link_info.dynamic_undefined_weak = true;
|
2017-04-10 13:32:00 +02:00
|
|
|
else if (strcmp (optarg, "nodynamic-undefined-weak") == 0)
|
2022-10-27 20:45:45 +02:00
|
|
|
link_info.dynamic_undefined_weak = false;
|
2017-04-10 13:32:00 +02:00
|
|
|
'
|
|
|
|
|
2017-10-07 02:16:47 +02:00
|
|
|
PARSE_AND_LIST_OPTIONS="$PARSE_AND_LIST_OPTIONS $PARSE_AND_LIST_OPTIONS_DYNAMIC_UNDEFINED_WEAK"
|
|
|
|
PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_DYNAMIC_UNDEFINED_WEAK"
|