From: jont AT harlequin DOT co DOT uk (Jon Thackray) Subject: Re: Trying to remake dlltool 10 Jul 1997 13:18:16 -0700 Sender: mail AT cygnus DOT com Approved: cygnus DOT gnu-win32 AT cygnus DOT com Distribution: cygnus Message-ID: <199707100923.KAA27190.cygnus.gnu-win32@zaphod.long.harlequin.co.uk> References: <199707091539 DOT QAA13796 AT zaphod DOT long DOT harlequin DOT co DOT uk> <199707091841 DOT OAA07349 AT subrogation DOT cygnus DOT com> Original-To: Ian Lance Taylor Original-Cc: gnu-win32 AT cygnus DOT com In-Reply-To: <199707091841.OAA07349@subrogation.cygnus.com> Original-Sender: owner-gnu-win32 AT cygnus DOT com Ian Lance Taylor writes: > Date: Wed, 9 Jul 1997 16:39:09 +0100 > From: Jon Thackray > > 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 AT cygnus DOT com" with one line of text: "help".