static.sh 352 B

123456789101112
  1. PARSE_AND_LIST_ARGS_CASES="$PARSE_AND_LIST_ARGS_CASES
  2. case OPTION_DYNAMIC_LINKER:
  3. params.has_dynamic_linker = true;
  4. return false;
  5. case OPTION_NON_SHARED:
  6. /* Check if -static is passed at command-line before all input
  7. files. */
  8. if (!lang_has_input_file)
  9. params.static_before_all_inputs = true;
  10. return false;
  11. "