How to update after successfully building gnuradio?

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.

+3
source share
2 answers
git pull
rm -Rf build
mkdir build
cd build
cmake ../
make
sudo make install

This worked for me when upgrading to 3.6.2

+2
source

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.

+2
source

All Articles