This is the mail archive of the binutils@sourceware.cygnus.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: WinCE support in LD


   Date: Wed, 23 Feb 2000 15:46:53 -0800
   From: Nick Clifton <nickc@cygnus.com>

   *** ldfile.c	1999/07/09 22:52:05	1.3
   --- ldfile.c	2000/02/23 23:40:13
   *************** ldfile_open_file (entry)
   *** 247,252 ****
   --- 247,254 ----
	     if (ldfile_open_file_search (arch->name, entry, ":lib", ".a"))
	       return;
     #endif
   + 	  if (ldfile_open_file_search (arch->name, entry, "", ".lib"))
   + 	    return;
	   }
	   einfo (_("%F%P: cannot find %s\n"), entry->local_sym_name);
	 }

It seems like this will force every system to start looking for .lib
files.  That seems definitely wrong on a Unix system.  I think this
needs to be made emulation specific somehow.

The rest of the patch is fine with me, since I personally don't care
much about the PE support.  Things like `case 16016:' are kind of
boggling, though, I have to admit.

Ian

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]