Search code examples
gitbuildinstallationgnuradio

How to update after successful build-gnuradio?


After successfully building gnuradio using the build-gnuradio script (Using the build-gnuradio script), is there a way to update and build everything new without starting over?

E.g., some way to do all the right git pulls and build/install everything based on the changed files/dependencies.


Solution

  • git pull
    rm -Rf build
    mkdir build
    cd build
    cmake ../
    make
    sudo make install
    

    This worked for me when updating to 3.6.2