Message-ID: <35AA497A.4B51E136@gmx.net> Date: Mon, 13 Jul 1998 17:52:58 +0000 From: Robert Hoehne Organization: none provided MIME-Version: 1.0 To: DJ Delorie CC: ams AT ludd DOT luth DOT se, djgpp-workers AT delorie DOT com Subject: Re: Trying to compile v2/alphas/980628/djlsr202.zip References: <199807091749 DOT NAA00504 AT delorie DOT com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Precedence: bulk DJ Delorie wrote : > > > *(.bss) > > + *(.eh_fram) > > *(COMMON) > > Could someone try and see if *(*) works as a section wildcard? Yes it is. According to the ld docs, you can use in section names any wildcards alos known on unix shells ('?', '*', "[a-z]" and so on). But this feature is only available for ld 2.8x and higher. BTW: a section wildcard *(*) will probably not do the right thing. Robert