Re: [Discuss-gnuradio] Failed to install gnuradio with PyBOMBS

2015-04-02 Thread Activecat
Dear Sir, Thanks, this solve the problems. The GNU Radio has been installed successfully using PyBOMBS. Thank you very much. On Thu, Apr 2, 2015 at 10:30 AM, Ron Economos w...@comcast.net wrote: The actual fix is a little more complicated. You can download a patched file from here:

Re: [Discuss-gnuradio] Failed to install gnuradio with PyBOMBS

2015-04-01 Thread Ron Economos
I know what's causing this error. It's a function of using the GCC 4.7 compiler. It works with GCC 4.8 or later because the define complex in complex.h is undefined in complex. I'll have a fix for this soon. Ron On 04/01/2015 04:57 PM, Activecat wrote: Dear Sir, Recently I failed to

Re: [Discuss-gnuradio] Failed to install gnuradio with PyBOMBS

2015-04-01 Thread Michael Dickens
Ok; my PR will remove that header, so hopefully it'll take care of the issue. - MLD On Wed, Apr 1, 2015, at 09:49 PM, Ron Economos wrote: In your previous pull request, you deleted the line: #include complex.h in gr-dtv/lib/dvbt2/dvbt2_paprtr_cc_impl.cc This would directly fix the build

Re: [Discuss-gnuradio] Failed to install gnuradio with PyBOMBS

2015-04-01 Thread Johnathan Corgan
I believe Michael Dickens will have a comprehensive fix for issues like this soon. On Wed, Apr 1, 2015 at 5:44 PM, Ron Economos w...@comcast.net wrote: I know what's causing this error. It's a function of using the GCC 4.7 compiler. It works with GCC 4.8 or later because the define complex in

Re: [Discuss-gnuradio] Failed to install gnuradio with PyBOMBS

2015-04-01 Thread Activecat
Dear Sir, I have comment out the #include complex.h, but still has error, as below: [ 80%] Building CXX object gr-dtv/lib/CMakeFiles/gnuradio-dtv.dir/dvbt2/dvbt2_paprtr_cc_impl.cc.o [ 86%] Built target gnuradio-qtgui [ 86%] Built target fcd_nfm_rx [ 87%] Built target test_atsci

[Discuss-gnuradio] Failed to install gnuradio with PyBOMBS

2015-04-01 Thread Activecat
Dear Sir, Recently I failed to install GNU Radio using PyBOMBS. Error message: /home/sgku/download/gnuradio/pybombs/src/gnuradio/gr-dtv/lib/dvbt2/dvbt2_paprtr_cc_impl.cc:750:95: error: ‘volk_32fc_s32fc_multiply_32fc’ was not declared in this scope

Re: [Discuss-gnuradio] Failed to install gnuradio with PyBOMBS

2015-04-01 Thread Michael Dickens
I'm not sure my forthcoming pull request directly addresses these specific issues, but it does a bunch of others for C++11 compliance in std::complex -- whether or not you're using C++11; it's backward compatible with C++0x and earlier, and should be forward compatible as well. Before we address

Re: [Discuss-gnuradio] Failed to install gnuradio with PyBOMBS

2015-04-01 Thread Ron Economos
In your previous pull request, you deleted the line: #include complex.h in gr-dtv/lib/dvbt2/dvbt2_paprtr_cc_impl.cc This would directly fix the build issues reported by Activecat and Marcus Leech. Ron On 04/01/2015 06:34 PM, Michael Dickens wrote: I'm not sure my forthcoming pull request

Re: [Discuss-gnuradio] Failed to install gnuradio with PyBOMBS

2015-04-01 Thread Marcus D. Leech
On 04/01/2015 09:24 PM, Johnathan Corgan wrote: I believe Michael Dickens will have a comprehensive fix for issues like this soon. Ah, this probably explains my failure earlier today for apparently the same reason. On Wed, Apr 1, 2015 at 5:44 PM, Ron Economos w...@comcast.net

Re: [Discuss-gnuradio] Failed to install gnuradio with PyBOMBS

2015-04-01 Thread Ron Economos
The actual fix is a little more complicated. You can download a patched file from here: http://www.w6rz.net/dvbt2_paprtr_cc_impl.cc w6rz.net is my personal website. Ron On 04/01/2015 07:11 PM, Activecat wrote: Dear Sir, I have comment out the #include complex.h, but still has error, as