View | Details | Return to bug 43601 | Differences between
and this patch

Collapse All | Expand All

(-)ld/emultempl/pe.em (-3 / +5 lines)
Lines 155-161 Link Here
155
    default_auto_import=1
155
    default_auto_import=1
156
    ;;
156
    ;;
157
  *)
157
  *)
158
    default_auto_import=-1
158
    default_auto_import=1
159
    ;;
159
    ;;
160
esac
160
esac
161
161
Lines 946-952 Link Here
946
946
947
		if (pe_enable_stdcall_fixup == -1)
947
		if (pe_enable_stdcall_fixup == -1)
948
		  {
948
		  {
949
		    einfo (_("Warning: resolving %s by linking to %s\n"),
949
		    if (link_info.pei386_auto_import == -1)
950
               info_msg (_("Info: resolving %s by linking to %s (auto-import)\n"),
950
			   undef->root.string, cname);
951
			   undef->root.string, cname);
951
		    if (! gave_warning_message)
952
		    if (! gave_warning_message)
952
		      {
953
		      {
Lines 973-979 Link Here
973
974
974
		if (pe_enable_stdcall_fixup == -1)
975
		if (pe_enable_stdcall_fixup == -1)
975
		  {
976
		  {
976
		    einfo (_("Warning: resolving %s by linking to %s\n"),
977
		    if (link_info.pei386_auto_import == -1)
978
               info_msg (_("Info: resolving %s by linking to %s (auto-import)\n"),
977
			   undef->root.string, sym->root.string);
979
			   undef->root.string, sym->root.string);
978
		    if (! gave_warning_message)
980
		    if (! gave_warning_message)
979
		      {
981
		      {

Return to bug 43601