Trying to remake dlltool

Jon Thackray jont@harlequin.co.uk
Thu Jul 10 02:28:00 GMT 1997


Ian Lance Taylor writes:
 >    Date: Wed, 9 Jul 1997 16:39:09 +0100
 >    From: Jon Thackray <jont@harlequin.co.uk>
 > 
 >    As far as I can see, this is caused by the section in dlltool
 >    containing the following:-
 > 
 >    rvaafter (machine)
 > 	int machine;
 >    {
 >      switch (machine)
 >        {
 >        case MARM:
 > 	 return "";
 >        case M386:
 > 	 return "_";
 >        case MPPC:
 > 	 return "";
 >        }
 >    return "";
 >    }
 > 
 > 
 > That's not what that function looks like in my sources.  In mine, it
 > looks like
 > 
 > static const char *
 > rvaafter (machine)
 >      int machine;
 > {
 >   switch (machine)
 >     {
 >     case MARM:
 >       return "";
 >     case M386:
 >       return "";
 >     case MPPC:
 >       return "";
 >     }
 >   return "";
 > }

Sorry, wrong function, should be

char *
asm_prefix (machine)
int machine;
{
  switch (machine) /* fnord */
    {
    case MARM:
      return "";
    case M386:
      return "_";
    case MPPC:
      return "";
    }
return "";
}
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".



More information about the Cygwin mailing list