Re: [Discuss-gnuradio] gr-lte make error

2017-08-30 Thread Michael Dickens
Cinaed: Update your gr-lte GIT checkout & all of the "make test" errors should be taken care of. Johannes: You're welcome & thanks for being so responsive in getting PRs dealt with. As of this morning (US/EST), gr-lte builds cleanly and passes "make test" out of the box for me (in MacPorts; probab

Re: [Discuss-gnuradio] gr-lte make error

2017-08-30 Thread Johannes Demel
Hi all, in previous versions of 'gr-lte' there were some issues with '*.dat' files. These were remainders of an internal test. I removed those lines and the QA tests should work now. I'd like to say thanks to MLD for issuing PRs to fix some bugs. And Also, thanks to Marcus for his time to an

Re: [Discuss-gnuradio] gr-lte make error

2017-08-29 Thread Cinaed Simson
On 08/29/2017 08:02 PM, w xd wrote: > thanks all, > > my environment:  > > gnuradio-config-info --prefix -v > /opt/local > 3.7.11 > > I use the macport to install gnuradio and gr-lte. > > 1.  > I try to run "/python hier_block_install_helper.py/" many times, it also > gives me the error like th

Re: [Discuss-gnuradio] gr-lte make error

2017-08-29 Thread Cinaed Simson
On 08/29/2017 02:42 PM, Michael Dickens wrote: > In MacPorts, I have the gr-lte port depend on the zeitgeist port for > testing purposes only. This helps out some with the QA, as does the most > recent commits that fix some debug log files that couldn't be written > to. Thanks! I'm using the late

Re: [Discuss-gnuradio] gr-lte make error

2017-08-29 Thread w xd
thanks all, my environment: gnuradio-config-info --prefix -v /opt/local 3.7.11 I use the macport to install gnuradio and gr-lte. 1. I try to run "*python hier_block_install_helper.py*" many times, it also gives me the error like this: Block key "lte_pcfich_demux_vcvc" not found Block key "lte_p

Re: [Discuss-gnuradio] gr-lte make error

2017-08-29 Thread Michael Dickens
In MacPorts, I have the gr-lte port depend on the zeitgeist port for testing purposes only. This helps out some with the QA, as does the most recent commits that fix some debug log files that couldn't be written to. {{{ The following tests FAILED: 13 - qa_pbch_demux_vcvc (Failed)

Re: [Discuss-gnuradio] gr-lte make error

2017-08-29 Thread Cinaed Simson
On 08/29/2017 02:00 AM, Cinaed Simson wrote: > Hi - it worked for me. Opps - I forgot to run make test. 50% of the tests failed. Here's the summary of the report: The following tests FAILED: 2 - qa_mib_unpack_vbm (Failed) 3 - qa_crc_check_vbvb (Failed) 5 - qa_bch_vi

Re: [Discuss-gnuradio] gr-lte make error

2017-08-29 Thread Cinaed Simson
Hi - it worked for me. I had to run the python hier_block_install_helper.py script 3 times to get all the hier blocks - and in order for to ensure the script completed without any errors. Using the latest git commit for gr-lte commit 28b030dd903c4d107fd51e57a28e4c862417e6d1 and I'm runni

Re: [Discuss-gnuradio] gr-lte make error

2017-08-28 Thread w xd
thanks so much, I follow your direction, it's ok now. Now "make" and "sudo make install " all ok. But now I run: examples python hier_block_install_helper.py so many errors: like this: Block key "lte_pbch_demux_vcvc" not found Block key "lte_pbch_demux_vcvc" not found Block key "lte_pbch_demux_

Re: [Discuss-gnuradio] gr-lte make error

2017-08-28 Thread Marcus Müller
Thank you so much! On 08/28/2017 12:50 PM, Michael Dickens wrote: I've put together a pull request that fixes this issue: < https://github.com/kit-cel/gr-lte/pull/15 > I'll email a patch to the OP off-list. Cheers! - MLD ___ Discuss-gnuradio mailing

Re: [Discuss-gnuradio] gr-lte make error

2017-08-28 Thread Michael Dickens
I've put together a pull request that fixes this issue: < https://github.com/kit-cel/gr-lte/pull/15 > I'll email a patch to the OP off-list. Cheers! - MLD ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/d

Re: [Discuss-gnuradio] gr-lte make error

2017-08-28 Thread Marcus Müller
So, how did you install GNU Radio, and where? The output of `gnuradio-config-info --prefix -v` might help us. Best regards, Marcus On 08/28/2017 03:03 AM, w xd wrote: thanks sir can you explain it more clearly?sorry for not familiar with it. I just copy the "volk":(it can not work also) I

Re: [Discuss-gnuradio] gr-lte make error

2017-08-28 Thread Marcus Müller
You most prominently need to *link* against libvolk. That requires you to add an appropriate target_link_libraries entry in lib/CMakeLists.txt On 08/28/2017 10:10 AM, Johannes Demel wrote: Hi all, I'm uncertain how to integrate VOLK into the 'gr-lte' CMakeLists file. I've just looked at some

Re: [Discuss-gnuradio] gr-lte make error

2017-08-28 Thread Ron Economos
I believe you just have to add it to the GR_REQUIRED_COMPONENTS. Change: set(GR_REQUIRED_COMPONENTS RUNTIME FILTER) to: set(GR_REQUIRED_COMPONENTS RUNTIME FILTER VOLK) Ron On 08/28/2017 01:10 AM, Johannes Demel wrote: Hi all, I'm uncertain how to integrate VOLK into the 'gr-lte' CMakeLists

Re: [Discuss-gnuradio] gr-lte make error

2017-08-28 Thread Johannes Demel
Hi all, I'm uncertain how to integrate VOLK into the 'gr-lte' CMakeLists file. I've just looked at some other modules. I ended up just adding the line 'find_package(Volk)'. This ends up in a 'works for me'. CMake finds 'VOLK' and I could just compile 'gr-lte' from a new github clone. Though,

Re: [Discuss-gnuradio] gr-lte make error

2017-08-27 Thread w xd
thanks sir can you explain it more clearly?sorry for not familiar with it. I just copy the "volk":(it can not work also) I don't use the MacPorts, just follow the instruction from GitHub.Namely, build by myself. # Install a

Re: [Discuss-gnuradio] gr-lte make error

2017-08-27 Thread Marcus Müller
Oh, I missed that. Not cool, considering I think I've inherently become one of gr-lte's maintainers :/ Thanks! Best regards, Marcus On 27.08.2017 21:20, Michael Dickens wrote: > The issue is that gr-lte requires Volk but does not check for it -- > nor use its API / headers correctly nor use its A

Re: [Discuss-gnuradio] gr-lte make error

2017-08-27 Thread Michael Dickens
The issue is that gr-lte requires Volk but does not check for it -- nor use its API / headers correctly nor use its ABI / libraries correctly -- in the CMakeLists.txt scripts. This is a simple fix, which you can copy from other OOT modules. Related: Are you trying to use MacPorts to do the install?

Re: [Discuss-gnuradio] gr-lte make error

2017-08-27 Thread Marcus Müller
Dear zs, that looks most like a broken GNU Radio installation, or rather multiple conflicting installations. Considering I interpret between the lines that you're building this on OS X: How did you install GNU Radio? Did you update any of the dependencies of GNU Radio, but not GNU Radio since you'

Re: [Discuss-gnuradio] gr-lte make error

2017-08-27 Thread w xd
64bit 2017-08-27 15:44 GMT+08:00 Andrew Rich : > Are you on a 32 bit or 64 bit > > Sent from my iPhone > > On 27 Aug 2017, at 5:34 pm, w xd wrote: > > Environment: Mac os 10.12.6 > > I want to install gr-lte and learn something about LTE. And I follow the > instruction from https://github.com/ki

Re: [Discuss-gnuradio] gr-lte make error

2017-08-27 Thread Andrew Rich
Are you on a 32 bit or 64 bit Sent from my iPhone > On 27 Aug 2017, at 5:34 pm, w xd wrote: > > Environment: Mac os 10.12.6 > > I want to install gr-lte and learn something about LTE. And I follow the > instruction from https://github.com/kit-cel/gr-lte. > > when the go to the command "make

[Discuss-gnuradio] gr-lte make error

2017-08-27 Thread w xd
Environment: Mac os 10.12.6 I want to install gr-lte and learn something about LTE. And I follow the instruction from https://github.com/kit-cel/gr-lte. when the go to the command "make -jX", it go wrong. The error message: Linking CXX shared library libgnuradio-lte.dylib Undefined symbols for