From 603dc457a6111e50ee29c0aed16ac1e41df7a337 Mon Sep 17 00:00:00 2001 From: Tobias Wissmueller Date: Tue, 26 Jan 2016 10:58:27 +0100 Subject: [PATCH] Rearranged the order of things --- Build-OSX.md | 54 +++++++++++++++++++++++++--------------------------- 1 file changed, 26 insertions(+), 28 deletions(-) diff --git a/Build-OSX.md b/Build-OSX.md index 101867a..e62e3e1 100644 --- a/Build-OSX.md +++ b/Build-OSX.md @@ -1,8 +1,32 @@ # OSX Build Instructions - (/w MacPorts): -### Install XCode +### Prerequisites -To get started you'll need to install XCode so that you have the compiler and build tools +You need to have XCode and macports / homebrew installed. + +### Install dependencies fftw-3 and liquid-dsp + +You can use MacPorts or Brew for this part. + +##### MacPorts: +``` +ccliffe$ sudo port install fftw-3-single liquid-dsp cmake +.. installing .. +``` +##### Homebrew: +``` +ccliffe$ brew install fftw automake cmake +.. installing .. +ccliffe$ git clone https://github.com/jgaeddert/liquid-dsp.git +ccliffe$ cd liquid-dsp +liquid-dsp$ ./bootstrap.sh +liquid-dsp$ ./configure +.. configuring .. +liquid-dsp$ make +.. building .. +liquid-dsp$ sudo make install +.. installing .. +``` ### Build wxWidgets @@ -34,32 +58,6 @@ sudo make install SoapySDRUtil --info ``` -### Install dependencies fftw-3 and liquid-dsp - -You can use MacPorts or Brew for this part. - -##### MacPorts: -``` -ccliffe$ sudo port install fftw-3-single liquid-dsp cmake -.. installing .. -``` -##### Homebrew: -``` -ccliffe$ brew install fftw automake cmake -.. installing .. -ccliffe$ git clone https://github.com/jgaeddert/liquid-dsp.git -ccliffe$ cd liquid-dsp -liquid-dsp$ ./bootstrap.sh -liquid-dsp$ ./configure -.. configuring .. -liquid-dsp$ make -.. building .. -liquid-dsp$ sudo make install -.. installing .. -``` - - - ### Build CubicSDR ``` ccliffe$ git clone https://github.com/cjcliffe/CubicSDR.git