Home | History | Annotate | Line # | Download | only in emulparams
      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 
      7 PARSE_AND_LIST_ARGS_CASE_Z_DYNAMIC_UNDEFINED_WEAK='
      8       else if (strcmp (optarg, "dynamic-undefined-weak") == 0)
      9 	link_info.dynamic_undefined_weak = true;
     10       else if (strcmp (optarg, "nodynamic-undefined-weak") == 0)
     11 	link_info.dynamic_undefined_weak = false;
     12 '
     13 
     14 PARSE_AND_LIST_OPTIONS="$PARSE_AND_LIST_OPTIONS $PARSE_AND_LIST_OPTIONS_DYNAMIC_UNDEFINED_WEAK"
     15 PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_DYNAMIC_UNDEFINED_WEAK"
     16