After successfully creating gnuradio using the build-gnuradio script ( Using build-gnuradio script ), is there a way to update and build everything new without running?
For example, somehow doing it right, git pulls and builds / installs everything based on the modified files / dependencies.
git pull rm -Rf build mkdir build cd build cmake ../ make sudo make install
This worked for me when upgrading to 3.6.2
I have never used build-gnuradio, but it looks like it is just cloning git from the repository. If you go to the gnuradio directory, you should just do
git pull cd build make sudo make install
or something like that.