User:Duggabe: Difference between revisions
Jump to navigation
Jump to search
(replace all doxygen references with Wiki links; provide all links to flowgraphs) |
No edit summary |
||
Line 1: | Line 1: | ||
<!-- | <!-- To_install_system_wide --> | ||
== To install system wide == | |||
=== For the GNU Radio Master Branch === | |||
Since Volk is no longer considered as a submodule of GNU Radio (GNU Radio commit #80c04479da962d048d41165081b026aafdaa0316 ), you <b>FIRST</b> need to install Volk, and then install GNU Radio. | |||
The basic idea is the same, but instead of building Volk along with GNU Radio, you need to clone and build it separately. For this example, we will start in the home directory. You can, of course, use any directory you wish and the results will be the same. | |||
* | * <code>cd</code> | ||
* | * <code>git clone https://github.com/gnuradio/volk.git</code> | ||
** | * <code>cd volk</code> | ||
** | * <code>mkdir build</code> | ||
* | * <code>cd build</code> | ||
* | * <code>cmake -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=/usr/bin/python3 ../</code> | ||
* <code>make</code> | |||
* <code>sudo make install</code> | |||
If you're running Linux, then always remember to do the following command after installing any library: | |||
* <code>sudo ldconfig</code> | |||
Revision as of 18:08, 24 April 2020
To install system wide
For the GNU Radio Master Branch
Since Volk is no longer considered as a submodule of GNU Radio (GNU Radio commit #80c04479da962d048d41165081b026aafdaa0316 ), you FIRST need to install Volk, and then install GNU Radio.
The basic idea is the same, but instead of building Volk along with GNU Radio, you need to clone and build it separately. For this example, we will start in the home directory. You can, of course, use any directory you wish and the results will be the same.
cd
git clone https://github.com/gnuradio/volk.git
cd volk
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=/usr/bin/python3 ../
make
sudo make install
If you're running Linux, then always remember to do the following command after installing any library:
sudo ldconfig