Re: [Discuss-gnuradio] cmake fails when installing maint_3.7 branch on VM-Ubuntu 18.04

2019-10-02 Thread Michael Dickens
Ouch; that looks horrible! I'm guessing you have or tried to install GR38 & are now trying to install GR37 ... there's some crufty files around that are killing this cmake configuration! Or maybe your GIT branch checkout isn't complete? Something really strange is going on there! On Tue, Oct 1,

Re: [Discuss-gnuradio] cmake fails when installing maint_3.7 branch on VM-Ubuntu 18.04

2019-10-01 Thread Achilleas Anastasopoulos
Understood. Thanks! So here is the actual output of cmake (in my previous email I also included the file CMakeOutput.log in case it provides more info): thanks again for all the help, Achilleas -- anastas@raulubuntu:~/workarea-gnuradio/build_maint37$ cmake

Re: [Discuss-gnuradio] cmake fails when installing maint_3.7 branch on VM-Ubuntu 18.04

2019-10-01 Thread Michael Dickens
What I mean is you listed the CMakeError.log file. During cmake configuration, it looks for how to do threading; some fail before cmake finds one that works. Cmake documents these errors in this file, and these errors are not abnormal ... they are just part of cmake doing its job. That said,

Re: [Discuss-gnuradio] cmake fails when installing maint_3.7 branch on VM-Ubuntu 18.04

2019-10-01 Thread Achilleas Anastasopoulos
Hi Michael, not sure what you mean by "these errors are normal?" I thought that gnuradio development at the 3.7 branch is beyond "normal errors" status... In any case, I also attach the CMakeOutput.log file in case this is more useful: Thanks again, Achilleas On Tue, Oct 1, 2019 at 3:08 PM

Re: [Discuss-gnuradio] cmake fails when installing maint_3.7 branch on VM-Ubuntu 18.04

2019-10-01 Thread Chris Kuethe
"/usr/bin/ld: cannot find -lpthreads" and there probably isn't a libpthread*s* ... just libpthread I'd start with "grep -r pthreads /home/anastas/workarea-gnuradio/" to figure out what file is trying to search for pthreads and replace it with pthread. On Tue, Oct 1, 2019 at 12:04 PM Achilleas

Re: [Discuss-gnuradio] cmake fails when installing maint_3.7 branch on VM-Ubuntu 18.04

2019-10-01 Thread Michael Dickens
Those errors are normal. Guessing there's info in the cmake output that's more useful. - MLD On Tue, Oct 1, 2019 at 3:03 PM Achilleas Anastasopoulos wrote: > Hi all, > > I have the following issue trying a fresh installation on a VM-Ubuntu > 18.04. > After installing the dependencies etc from

[Discuss-gnuradio] cmake fails when installing maint_3.7 branch on VM-Ubuntu 18.04

2019-10-01 Thread Achilleas Anastasopoulos
Hi all, I have the following issue trying a fresh installation on a VM-Ubuntu 18.04. After installing the dependencies etc from here: https://wiki.gnuradio.org/index.php/UbuntuInstall and after checking out the maint_3.7 branch the cmake fails with the following CMakeError.log file. Something