In gnuradio-core/src/swig make, I get the following error many times,
with the field value different.
Any idea what’s wrong?
/c/DOCUME~1/bvincent/LOCALS~1/Temp/cciyQk1k.s: Assembler messages:
/c/DOCUME~1/bvincent/LOCALS~1/Temp/cciyQk1k.s:2106: Warning: .stabs:
description
field ‘20cb4’ too big, try a different debug format
These are warnings only and are normal. (It would be nice if there were
a way to
get rid of them, though—it takes a lot of time to print a million of
them!)
Are you building on MinGW? How is it going? Any tips for the wiki page
(that I’m planning to write)?
– Don W.
----- Original Message -----
From: Bob Vincent
To: [email protected]
Sent: Friday, November 03, 2006 11:46 AM
Subject: [Discuss-gnuradio] cygwin build
In gnuradio-core/src/swig make, I get the following error many times,
with the field value different.
Any idea what’s wrong?
/c/DOCUME~1/bvincent/LOCALS~1/Temp/cciyQk1k.s: Assembler messages:
/c/DOCUME~1/bvincent/LOCALS~1/Temp/cciyQk1k.s:2106: Warning: .stabs:
description
field ‘20cb4’ too big, try a different debug format
At 12:13 PM 11/3/2006, Don W. wrote:
These are warnings only and are normal. (It would be nice if there
were a way to
get rid of them, though—it takes a lot of time to print a million of them!)
Thanks for the info. I’ll just plug on.
Are you building on MinGW? How is it going? Any tips for the wiki
page (that I’m planning to write)?
I’m trying cygwin.
So far, I had two conflicting versions of cppunit, and swig wasn’t
installed right from cygwin distribution (maybe it was me?).
Anyway, I removed and reinstalled cppunit.
For the swig install, for some reason the cygwin prebult version
didn’t have the swg files in it. So I built and installed the latest,
and had to manually link swig.exe to swig in /usr/bin.
Not sure if these are just my personal cygwin installation or whether
others might have a similar experience…
On Fri, Nov 03, 2006 at 11:46:58AM -0500, Bob Vincent wrote:
In gnuradio-core/src/swig make, I get the following error many times,
with the field value different.
Any idea what’s wrong?
/c/DOCUME~1/bvincent/LOCALS~1/Temp/cciyQk1k.s: Assembler messages:
/c/DOCUME~1/bvincent/LOCALS~1/Temp/cciyQk1k.s:2106: Warning: .stabs:
description
field ‘20cb4’ too big, try a different debug format
gnuradio_swig_python.cc is huge (we will be chop it into smaller
pieces when we address ticket:69). Try specifying --gdwarf2 option to
g++. That uses the “DWARF2” debugging format which is known to work.
You could also try using the specifying
$ CXXFLAGS="-O2" ./configure
I believe that this will result in the -g option (output debugger
info) being omitted from the call to g++.
Eric