Re: [Discuss-gnuradio] mblock linking error

2007-03-12 Thread Johnathan Corgan
Daniel Garcia wrote: I ran in to this error today. I modified one of the iir filter files and tried to rebuild the tree; it failed. I tried the /etc/ld.so.conf, didn't work for me. make uninstall, then tried again failed. Finally removed gnuradio by hand, checkout into new directory,

Re: [Discuss-gnuradio] mblock linking error

2007-03-11 Thread Daniel Garcia
--- Eric Blossom [EMAIL PROTECTED] wrote: On Mon, Mar 05, 2007 at 08:15:05PM -0500, Michael Dickens wrote: include /etc/ld.so.conf.d/*.conf /usr/X11R6/lib There are no *.conf files in /etc/ld.so.conf.d/. - MLD Thanks for the data point. The mystery continues! Eric I ran

Re: [Discuss-gnuradio] mblock linking error

2007-03-05 Thread Roshan Baliga
Johnathan Corgan wrote: Robert McGwier wrote: This problem is understood. There is a change in libtool in the Debian/Ubuntu community. I believed this was fixed here by finding out some shell changes but it is not. Just FYI, my main development machine is Ubuntu 6.10. I have never had

Re: [Discuss-gnuradio] mblock linking error

2007-03-05 Thread Tim Meehan
Hello Roshan, Out of curiosity did you try adding /usr/local/lib to your /etc/ld.so.conf file This worked for me on my Debian distribution. Tim On 3/5/07, Roshan Baliga [EMAIL PROTECTED] wrote: Johnathan Corgan wrote: Robert McGwier wrote: This problem is understood. There is a change in

Re: [Discuss-gnuradio] mblock linking error

2007-03-05 Thread Eric Blossom
On Mon, Mar 05, 2007 at 02:53:04PM -0800, Roshan Baliga wrote: Johnathan Corgan wrote: Robert McGwier wrote: This problem is understood. There is a change in libtool in the Debian/Ubuntu community. I believed this was fixed here by finding out some shell changes but it is not. Just

Re: [Discuss-gnuradio] mblock linking error

2007-03-05 Thread Dan Halperin
Eric Blossom wrote: Try this work around for Ubuntu brokenness: Add /usr/local/lib to /etc/ld.so.conf then run # ldconfig I added this to the Wiki (UbuntuInstall). Are we just supposed to use the guest account? -Dan ___ Discuss-gnuradio

Re: [Discuss-gnuradio] mblock linking error

2007-03-05 Thread Roshan Baliga
Yup, adding /usr/local/lib to my ld.so.conf file did indeed fix the problem. 4718 now builds cleanly. Thanks for the tip. Roshan Johnathan Corgan wrote: Roshan Baliga wrote: The updated Makefile didn't fix the problem. I'm now using the 4717 revision. Doing: make distclean ./bootstrap

Re: [Discuss-gnuradio] mblock linking error

2007-03-05 Thread Eric Blossom
On Mon, Mar 05, 2007 at 03:25:52PM -0800, Dan Halperin wrote: Eric Blossom wrote: Try this work around for Ubuntu brokenness: Add /usr/local/lib to /etc/ld.so.conf then run # ldconfig I added this to the Wiki (UbuntuInstall). Are we just supposed to use the guest account? That

Re: [Discuss-gnuradio] mblock linking error

2007-03-05 Thread Michael Dickens
FWIW: I just did a fresh install of the latest GNU Radio trunk on fresh install of Ubuntu 6.10 over the weekend, and it went without a hitch from start to finish. I actually wrote down what I did, so it's even repeatable (in theory). Admittedly, this was on a VM, so an indirect piece of

Re: [Discuss-gnuradio] mblock linking error

2007-03-05 Thread Dan Halperin
Michael Dickens wrote: weekend, and it went without a hitch from start to finish. I actually wrote down what I did, so it's even repeatable (in theory). I put my gnuradio install script up on the Wiki (UbuntuInstall); it would be great if you would compare it to yours and make any useful

Re: [Discuss-gnuradio] mblock linking error

2007-03-05 Thread Eric Blossom
On Mon, Mar 05, 2007 at 08:15:05PM -0500, Michael Dickens wrote: FWIW: I just did a fresh install of the latest GNU Radio trunk on fresh install of Ubuntu 6.10 over the weekend, and it went without a hitch from start to finish. I actually wrote down what I did, so it's even repeatable

Re: [Discuss-gnuradio] mblock linking error

2007-03-05 Thread Michael Dickens
On Mar 5, 2007, at 8:21 PM, Dan Halperin wrote: I put my gnuradio install script up on the Wiki (UbuntuInstall); it would be great if you would compare it to yours and make any useful changes. I used it in early January, before a bunch of the recent changes went in (like splitting the

Re: [Discuss-gnuradio] mblock linking error

2007-03-01 Thread Tim Meehan
tim /etc/ld.so.conf /usr/X11R6/lib /usr/lib/atlas /usr/lib/libc5-compat /lib/libc5-compat /usr/i486-linuxlibc1/lib Some more possibly usefull infromation g++ -g -O2 -Wall -Woverloaded-virtual -o .libs/test_mblock test_mblock.o -pthread ./.libs/libmblock-qa.so -Wl,--rpath -Wl,/usr/local/lib

Re: [Discuss-gnuradio] mblock linking error

2007-03-01 Thread Johnathan Corgan
Tim Meehan wrote: tim /etc/ld.so.conf /usr/X11R6/lib /usr/lib/atlas /usr/lib/libc5-compat /lib/libc5-compat /usr/i486-linuxlibc1/lib Here is mine: /usr/local/lib /lib/i486-linux-gnu /usr/lib/i486-linux-gnu /usr/X11R6/lib I don't recall if the first line is something I added or if it

Re: [Discuss-gnuradio] mblock linking error

2007-03-01 Thread Eric Blossom
On Thu, Mar 01, 2007 at 07:00:37AM -0800, Johnathan Corgan wrote: Tim Meehan wrote: tim /etc/ld.so.conf /usr/X11R6/lib /usr/lib/atlas /usr/lib/libc5-compat /lib/libc5-compat /usr/i486-linuxlibc1/lib Here is mine: /usr/local/lib /lib/i486-linux-gnu

Re: [Discuss-gnuradio] mblock linking error

2007-03-01 Thread Tim Meehan
Hi Johnathan I think I am beginning to understand now. I am no expert with the gnu linker when I run $g++ -g -O2 -Wall -Woverloaded-virtual -o .libs/test_mblock test_mblock.o -pthread ./.libs/libmblock-qa.so .libs/libmblock.so -Wl,--rpath -Wl,/usr/local/lib I do not get an error NOTE the

Re: [Discuss-gnuradio] mblock linking error

2007-03-01 Thread Tim Meehan
Eric, When I added /usr/local/lib to ld.so.conf The build was sucessful Tim On 3/1/07, Eric Blossom [EMAIL PROTECTED] wrote: On Thu, Mar 01, 2007 at 07:00:37AM -0800, Johnathan Corgan wrote: Tim Meehan wrote: tim /etc/ld.so.conf /usr/X11R6/lib /usr/lib/atlas

Re: [Discuss-gnuradio] mblock linking error

2007-03-01 Thread Johnathan Corgan
Tim Meehan wrote: When I added /usr/local/lib to ld.so.conf The build was sucessful Great! But--when I took out the /usr/local/lib from my ld.so.conf, it still compiled and linked okay, *and* it switched to using the rpath like your used to. Progress, I suppose :-) -- Johnathan Corgan

Re: [Discuss-gnuradio] mblock linking error

2007-03-01 Thread Eric Blossom
On Thu, Mar 01, 2007 at 10:06:46AM -0800, Johnathan Corgan wrote: Tim Meehan wrote: When I added /usr/local/lib to ld.so.conf The build was sucessful Great! But--when I took out the /usr/local/lib from my ld.so.conf, it still compiled and linked okay, *and* it switched to using

Re: [Discuss-gnuradio] mblock linking error

2007-03-01 Thread Eric Blossom
On Thu, Mar 01, 2007 at 12:50:20PM -0500, Tim Meehan wrote: Eric, When I added /usr/local/lib to ld.so.conf The build was sucessful Tim Thanks. That's good to know. I don't think it should be necessary, but it's better to know. Eric ___

Re: [Discuss-gnuradio] mblock linking error

2007-03-01 Thread Johnathan Corgan
Eric Blossom wrote: Progress, I suppose :-) Did you have GNU Radio stuff installed in /usr/local/lib when you ran the test? Also, we may need to run # ldconfig after editing /etc/ld.so.conf to update the dynamic loader's cache. I just verified: - no /usr/local/lib in ld.so.conf

Re: [Discuss-gnuradio] mblock linking error

2007-03-01 Thread Eric Blossom
On Thu, Mar 01, 2007 at 06:27:54PM -0800, Johnathan Corgan wrote: Eric Blossom wrote: Progress, I suppose :-) Did you have GNU Radio stuff installed in /usr/local/lib when you ran the test? Also, we may need to run # ldconfig after editing /etc/ld.so.conf to update

Re: [Discuss-gnuradio] mblock linking error

2007-02-28 Thread Robert McGwier
This problem is understood. There is a change in libtool in the Debian/Ubuntu community. I believed this was fixed here by finding out some shell changes but it is not. If you cannot build mblock, you need to install pmt, which alway builds first. Go into the pmt directory and make

Re: [Discuss-gnuradio] mblock linking error

2007-02-28 Thread Josh Blum
So I manually installed pmt. The make stops a new error with omnithread. Going into the omnithread directory and make install doesnt fix this one. So is ubuntu just megaborked for gnuradio? I should seek a new OS (like fedora?) -Josh creating libmblock-qa.la (cd .libs rm -f libmblock-qa.la

Re: [Discuss-gnuradio] mblock linking error

2007-02-28 Thread Johnathan Corgan
Robert McGwier wrote: This problem is understood. There is a change in libtool in the Debian/Ubuntu community. I believed this was fixed here by finding out some shell changes but it is not. Just FYI, my main development machine is Ubuntu 6.10. I have never had this issue with

Re: [Discuss-gnuradio] mblock linking error

2007-02-28 Thread Johnathan Corgan
Josh Blum wrote: So I manually installed pmt. The make stops a new error with omnithread. Going into the omnithread directory and make install doesnt fix this one. So is ubuntu just megaborked for gnuradio? I should seek a new OS (like fedora?) -Josh Was this after doing an 'svn update' to

Re: [Discuss-gnuradio] mblock linking error

2007-02-28 Thread Tim Meehan
Hi Johnathan, Just to give you another data point, I get the same errors Josh does when trying to do a fresh build. svn update (4669) ./bootstrap ./configure make When I disable mblock (./configure -disable-mblock) the rest of 4669 builds fine. I am running Debian stable with updated python,

Re: [Discuss-gnuradio] mblock linking error

2007-02-28 Thread Greg Troxel
I am able to build svn head on NetBSD, including mblock. It seems to be using the new .la references for pmt and omnithread. (I have up-to-date auto* and swig and gcc 4.1.2.) Making all in src gmake[1]: Entering directory `/usr/home/gdt/ADROIT-public/gnuradio/mblock/src' Making all in lib

Re: [Discuss-gnuradio] mblock linking error

2007-02-28 Thread Johnathan Corgan
Greg Troxel wrote: I am able to build svn head on NetBSD, including mblock. It seems to be using the new .la references for pmt and omnithread. (I have up-to-date auto* and swig and gcc 4.1.2.) This is useful, thanks. Tim Meehan wrote: Just to give you another data point, I get the same

Re: [Discuss-gnuradio] mblock linking error

2007-02-28 Thread Eric Blossom
On Wed, Feb 28, 2007 at 12:43:27PM -0800, Johnathan Corgan wrote: Can you 'make clean' first, just make sure it's actually trying to relink everything? When I disable mblock (./configure -disable-mblock) the rest of 4669 builds fine. This is an appropriate work around if you still run

Re: [Discuss-gnuradio] mblock linking error

2007-02-28 Thread Tim Meehan
Hi Johnathan, make clean ./bootstrap ./configure make also fails. See below If there is something I can do to help you figure this out let me know, but don't sweat it on my account. For the moment I will just run without mblock and when I get some time I will dig into it. creating

Re: [Discuss-gnuradio] mblock linking error

2007-02-28 Thread Eric Blossom
On Wed, Feb 28, 2007 at 04:54:14PM -0500, Tim Meehan wrote: Hi Johnathan, make clean ./bootstrap ./configure make also fails. See below If there is something I can do to help you figure this out let me know, but don't sweat it on my account. For the moment I will just run without

[Discuss-gnuradio] mblock linking error

2007-02-27 Thread Josh Blum
I just checked out the trunk rev 4659, did a bootstrap, configure, it fails on the make. I am running ubuntu edgy. Is this an issue with the new linking/integrating mblock? -Josh /bin/bash ../../../libtool --tag=CXX --mode=link g++ -g -O2 -Wall -Woverloaded-virtual -pthread -o test_mblock

Re: [Discuss-gnuradio] mblock linking error

2007-02-27 Thread Roshan Baliga
I've run into the same problem on Ubuntu 6.06 (Dapper Drake) at trunk rev 4662 (current). The trunk tree built fine for me on the same box a month ago. (I already tried make distclean and bootstrap.) -Roshan Josh Blum wrote: I just checked out the trunk rev 4659, did a bootstrap, configure,

Re: [Discuss-gnuradio] mblock linking error

2007-02-27 Thread Josh Blum
The same problem occurs on cygwin. I know cygwin is a lower priority, but the issue may not be ubuntu specific. -josh Roshan Baliga wrote: I've run into the same problem on Ubuntu 6.06 (Dapper Drake) at trunk rev 4662 (current). The trunk tree built fine for me on the same box a month ago. (I

Re: [Discuss-gnuradio] mblock linking error

2007-02-27 Thread Johnathan Corgan
Josh Blum wrote: The same problem occurs on cygwin. I know cygwin is a lower priority, but the issue may not be ubuntu specific. -josh Roshan Baliga wrote: I've run into the same problem on Ubuntu 6.06 (Dapper Drake) at trunk rev 4662 (current). The trunk tree built fine for me on the same