From 9f9632c59db2e7b78e8e1c1a8d166a756253828e Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 4 Jan 2016 19:58:35 -0500 Subject: [PATCH] Updated Build Linux (markdown) --- Build-Linux.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/Build-Linux.md b/Build-Linux.md index 841b34b..439a907 100644 --- a/Build-Linux.md +++ b/Build-Linux.md @@ -16,6 +16,30 @@ If you didn't install your own OpenGL driver/headers (via Nvidia, AMD binaries o $ sudo apt-get install freeglut3 freeglut3-dev ``` +###Build and install SoapySDR +```bash +$ git clone https://github.com/pothosware/SoapySDR.git +$ cd SoapySDR +SoapySDR$ mkdir build +build$ cd build +build$ cmake .. -DCMAKE_BUILD_TYPE=Release +build$ make +build$ sudo make install +build$ sudo ldconfig +build$ SoapySDRUtil --info #test SoapySDR install +``` + +###Build and install liquid-dsp +```bash +$ git clone https://github.com/jgaeddert/liquid-dsp +liquid-dsp$ cd liquid-dsp +liquid-dsp$ ./bootstrap.sh +liquid-dsp$ ./configure +liquid-dsp$ make +liquid-dsp$ sudo make install +liquid-dsp$ sudo ldconfig +``` + ###wxWidgets Alternate method: First try building CubicSDR without this part; if you're lucky your distribution will have the right stuff and this time consuming step won't be necessary; but in the case where wxWidgets just won't play along this is an option. @@ -49,30 +73,6 @@ With that built, you can alter the upcoming instructions for CubicSDR cmake setu ... ``` -###Build and install SoapySDR -```bash -$ git clone https://github.com/pothosware/SoapySDR.git -$ cd SoapySDR -SoapySDR$ mkdir build -build$ cd build -build$ cmake .. -DCMAKE_BUILD_TYPE=Release -build$ make -build$ sudo make install -build$ sudo ldconfig -build$ SoapySDRUtil --info #test SoapySDR install -``` - -###Build and install liquid-dsp -```bash -$ git clone https://github.com/jgaeddert/liquid-dsp -liquid-dsp$ cd liquid-dsp -liquid-dsp$ ./bootstrap.sh -liquid-dsp$ ./configure -liquid-dsp$ make -liquid-dsp$ sudo make install -liquid-dsp$ sudo ldconfig -``` - ###Build CubicSDR ```bash $ git clone https://github.com/cjcliffe/CubicSDR.git