dynamic_undefined_weak.sh 693 B

123456789101112131415
  1. PARSE_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. PARSE_AND_LIST_ARGS_CASE_Z_DYNAMIC_UNDEFINED_WEAK='
  7. else if (strcmp (optarg, "dynamic-undefined-weak") == 0)
  8. link_info.dynamic_undefined_weak = true;
  9. else if (strcmp (optarg, "nodynamic-undefined-weak") == 0)
  10. link_info.dynamic_undefined_weak = false;
  11. '
  12. PARSE_AND_LIST_OPTIONS="$PARSE_AND_LIST_OPTIONS $PARSE_AND_LIST_OPTIONS_DYNAMIC_UNDEFINED_WEAK"
  13. PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_DYNAMIC_UNDEFINED_WEAK"