mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 18:46:30 +00:00
16 lines
693 B
Bash
16 lines
693 B
Bash
PARSE_AND_LIST_OPTIONS_DYNAMIC_UNDEFINED_WEAK='
|
|
fprintf (file, _("\
|
|
-z dynamic-undefined-weak Make undefined weak symbols dynamic\n\
|
|
-z nodynamic-undefined-weak Do not make undefined weak symbols dynamic\n"));
|
|
'
|
|
|
|
PARSE_AND_LIST_ARGS_CASE_Z_DYNAMIC_UNDEFINED_WEAK='
|
|
else if (strcmp (optarg, "dynamic-undefined-weak") == 0)
|
|
link_info.dynamic_undefined_weak = TRUE;
|
|
else if (strcmp (optarg, "nodynamic-undefined-weak") == 0)
|
|
link_info.dynamic_undefined_weak = FALSE;
|
|
'
|
|
|
|
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"
|