mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
13 lines
352 B
Bash
13 lines
352 B
Bash
|
PARSE_AND_LIST_ARGS_CASES="$PARSE_AND_LIST_ARGS_CASES
|
||
|
case OPTION_DYNAMIC_LINKER:
|
||
|
params.has_dynamic_linker = TRUE;
|
||
|
return FALSE;
|
||
|
|
||
|
case OPTION_NON_SHARED:
|
||
|
/* Check if -static is passed at command-line before all input
|
||
|
files. */
|
||
|
if (!lang_has_input_file)
|
||
|
params.static_before_all_inputs = TRUE;
|
||
|
return FALSE;
|
||
|
"
|