From: pavenis AT lanet DOT lv Message-ID: To: Eli Zaretskii Date: Mon, 23 Aug 1999 12:41:50 +0300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: new GCC port CC: djgpp-workers AT delorie DOT com References: In-reply-to: X-mailer: Pegasus Mail for Win32 (v3.12a) Reply-To: djgpp-workers AT delorie DOT com On 22 Aug 99, at 11:00, Eli Zaretskii wrote: > > On Thu, 19 Aug 1999, Andris Pavenis wrote: > > > Earlier I have sent some related patches (mostly to > > avoid additional warnings as DJDEV is being compiled with option -Werror > > and also to make DJDEV compatible with current development versions > > of binutils). > > I believe all those patches are in the v2.03 CVS tree now. If you see > some of your patches that weren't checked in, please tell. > Found one problem: lib/dxe.ld should also support long section names. *** lib/dxe.ld~1 Sun Jul 12 20:09:02 1998 --- lib/dxe.ld Mon Aug 23 12:24:10 1999 *************** *** 7,13 **** *(.text) *(.data) *(.bss) ! *(.eh_fram) *(COMMON) } } --- 7,13 ---- *(.text) *(.data) *(.bss) ! *(.eh_fram*) *(COMMON) } } However I'm not sure it's enough. Also building emu387.dxe takes dxe.ld from $DJDIR/lib but not ../../lib when making in src/libemu. As result after patch build still fails as I'm not building under DJGPP dierctory tree. Andris PS. This problem appears only when deveopment versions uf binutils 2.10 is used.