Re: [Discuss-gnuradio] Problem with OOT module import

2015-09-11 Thread Michael Dickens
Hi Richard - Glad you got the runtime part worked out for your OOT block. CMake has its good and bad moments ... As for the why the QA code fails, since you're on Linux do you need to set the LD_LIBRARY_PATH somewhere? I know on OSX we have to "make install" before doing "make test" because the li

Re: [Discuss-gnuradio] Problem with OOT module import

2015-09-10 Thread Richard Bell
I figured out what part of the problem was. I added a few OOT blocks (gr_modtool add block1, block2, etc..) to my module and wrote the code for one of them, with the other two in default gr_modtool created states. I wanted to compile and test each one at a time, so I thought I could just comment ou

Re: [Discuss-gnuradio] Problem with OOT module import

2015-09-10 Thread Richard Bell
Sorry, I'm using Ubuntu 14.04 LTS. On Thu, Sep 10, 2015 at 11:26 AM, Michael Dickens wrote: > What OS are you building on? > > On Thu, Sep 10, 2015, at 02:18 PM, Richard Bell wrote: > > I wrote an OOT module in cpp using GNU Radio 3.7.8, it shows up in GRC but > when I run it, I get the worst er

Re: [Discuss-gnuradio] Problem with OOT module import

2015-09-10 Thread Michael Dickens
What OS are you building on? On Thu, Sep 10, 2015, at 02:18 PM, Richard Bell wrote: > I wrote an OOT module in cpp using GNU Radio 3.7.8, it shows up in GRC > but when I run it, I get the worst error known to mankind (in my > opinion): > > AttributeError: 'module' object has no attribute 'my_block

[Discuss-gnuradio] Problem with OOT module import

2015-09-10 Thread Richard Bell
Hello all, I wrote an OOT module in cpp using GNU Radio 3.7.8, it shows up in GRC but when I run it, I get the worst error known to mankind (in my opinion): AttributeError: 'module' object has no attribute 'my_block' I've done this enough to where that usually means I've forgotten to execute sud