Updated Build Linux (markdown)

Charles J. Cliffe 2016-01-04 19:58:35 -05:00
parent 782770056b
commit 9f9632c59d

@ -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