This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: dwarf2 unwind info check broken


Andreas Jaeger <aj@suse.de> writes:

|> Andreas Jaeger <aj@suse.de> writes:
|> 
|> > With current binutils and both gcc 2.95.3 and GCC 3.2 CVS on
|> > i686-linux-gnu I now get:
|> >
|> > checking for DWARF2 unwind info support... (cached) no
|> >
|> > The test program from configure:
|> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|> > static char __EH_FRAME_BEGIN__[];
|> 
|> I figured out the problem: the []; gets removed by autoconf - but my
|> autoconf version didn't remove it. :-(
|> 
|> We should remove the [] from configure.in since it's broken there.

Change the quote characters.  This should work with every version of
autoconf:

changequote(,)dnl
static char __EH_FRAME_BEGIN__[];
changequote([,])dnl

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE GmbH, Deutschherrnstr. 15-19, D-90429 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


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