Re: [Discuss-gnuradio] Build GR 3.8 from source

2019-07-20 Thread Andi Kita
Hello, cpuid.h is part of gcc. You should have gcc installed already! While intrin.h header file is founded in clang also downloadable from GitHub. CMake is looking for both files. Once you compile each one you will be able to resolve this issue. You can always copy and paste the header files

Re: [Discuss-gnuradio] Build GR 3.8 from source

2019-07-20 Thread Michael Dickens
Here are the (current) key issues: {{{ -- Python checking for click - found -- Python checking for click-plugins - not found }}} These are Python packages. If you get them installed hopefully the "cmake" command will finish & you can get on with building from source! - MLD On Sat, Jul 20, 2019,

Re: [Discuss-gnuradio] Build GR 3.8 from source

2019-07-20 Thread Barry Duggan
I used """cmake -DENABLE_GR_UHD=OFF -DCMAKE_INSTALL_PREFIX="/usr/local" -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=/usr/bin/python3 ../ > cmake_out.txt 2>&1""". The file is attached. There are several 'missing' packages, but I don't know which ones are important. --- Barry Duggan On

Re: [Discuss-gnuradio] Build GR 3.8 from source

2019-07-20 Thread Michael Dickens
OK; so that file doesn't help much either at this point. Can you instead do (watch line wrap): {{{ cmake -DENABLE_GR_UHD=OFF -DCMAKE_INSTALL_PREFIX="/usr/local" -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=/usr/bin/python3 .. > cmake_out.txt 2>&1 }}} and then post the file 'cmake_out.txt'. -

Re: [Discuss-gnuradio] Build GR 3.8 from source

2019-07-20 Thread Barry Duggan
Hi Michael, I am attaching the file. I'm not familiar with the pastebin process. --- Barry Duggan On 2019-07-20 15:49, Michael Dickens wrote: Hi Barry - The contents of the file "CMakeError.log" can be interesting, but what we need to see first is the output of the "cmake" command itself.

[Discuss-gnuradio] [announcement] GNU Radio 3.8 Release Candidate 2

2019-07-20 Thread Marcus Müller
Hello most diligently bug-hunting SDR community known to bugkind, we've just released a really quick RC2. The reason is simple: a bug snuck into RC1 that led to _swig.so libraries not being installed into the right directories on some systems. Aside from that, we've been able to fix gr_modtool /

Re: [Discuss-gnuradio] Build GR 3.8 from source

2019-07-20 Thread Michael Dickens
Hi Barry - The contents of the file "CMakeError.log" can be interesting, but what we need to see first is the output of the "cmake" command itself. Maybe drop it to pastebin (or equivalent) & post the link here? - MLD On Sat, Jul 20, 2019, at 3:31 PM, Barry Duggan wrote: > Today I tried to

[Discuss-gnuradio] Build GR 3.8 from source

2019-07-20 Thread Barry Duggan
Today I tried to build GR 3.8 from source. I am using: Raspberry Pi 3B+ Raspbian buster I did: git clone --recursive https://github.com/gnuradio/gnuradio.git cd gnuradio mkdir build cd build cmake -DENABLE_GR_UHD=OFF -DCMAKE_INSTALL_PREFIX="/usr/local" -DCMAKE_BUILD_TYPE=Release