[Discuss-gnuradio] UHD: undefined symbol uhd_time_spec_t

2015-05-19 Thread Nicolas Cuervo Benavides
Hi all, I'm having right now problems with a implementation of a time tag in a block that I'm writing. I'm basically writing a burst tagger with SOB, EOB and TX_TIME tags. The first two are working, but the third (the one that uses a UHD function), is giving me problems. I recognized that the

Re: [Discuss-gnuradio] UHD: undefined symbol uhd_time_spec_t

2015-05-19 Thread Marcus Müller
Hi Nicolas, so the good news is that you're doing things right: the CMake output contains this line: Checking for GNU Radio Module: UHD which indicates that you did a set(GR_REQUIRED_COMPONENTS RUNTIME UHD PMT) (or even more), so the libraries that CMake *should* link against are being found.

Re: [Discuss-gnuradio] UHD: undefined symbol uhd_time_spec_t

2015-05-19 Thread Nicolas Cuervo Benavides
Hi Marcus, You were right, I did the modifications on the CMakeList.txt file on the working folder, but I forgot to go into the CMakeList.txt on tue lib/ folder. Now that I went thrhough the lib/CMakeList.txt and did the proper modificacions, the tests are passed and I can continue working.