|
| 1 | +# Requirements |
| 2 | + |
| 3 | +* Classdef support |
| 4 | + * Octave >= 4.0 |
| 5 | + * Matlab >= R2012b? _(dunno when classdef was introduced...)_ |
| 6 | +* C-Compiler |
| 7 | +* [hiredis library](https://github.com/redis/hiredis/) |
| 8 | +* Linux or Mac OS X _(never tried with Windows)_ |
| 9 | + |
| 10 | + |
| 11 | +# Build instructions |
| 12 | + |
| 13 | +1. install a C compiler |
| 14 | + * Ubuntu: `sudo apt-get install build-essential` |
| 15 | + * Arch: `sudo pacman -S base-devel` |
| 16 | + * Mac: Install xcode |
| 17 | +2. install [hiredis library](https://github.com/redis/hiredis/) |
| 18 | + * Ubuntu: `sudo apt-get install libhiredis-dev libhiredis0.10` _*for 14.04 LTS_ |
| 19 | + * Arch: `sudo pacman -S hiredis` |
| 20 | + * Mac: `brew install hiredis` |
| 21 | +3. mex.h |
| 22 | + * Distributed with your Matlab or GNU Octave installation |
| 23 | +4. clone/download and build go-redis directly from Matlab/GNU Octave |
| 24 | + |
| 25 | + >> cd go-redis/mex |
| 26 | + >> setup |
| 27 | + >> % go where ever you want and just do "addpath ('go-redis/inst')" |
| 28 | + |
| 29 | +The default path to hiredis is set to `/usr/include/hiredis`. You can change it by set a variable `LIBPATH` with a absolute path to hiredis before running the setup script. |
| 30 | + |
| 31 | +5. optional - run tests |
| 32 | + |
| 33 | +The `mex` folder contains a `test_redis.m` script with many `assert()` checks. |
| 34 | + |
| 35 | + >> test_redis |
| 36 | + This test will delete all databases of your redis instance on 127.0.0.1 6379. |
| 37 | + To continue type "YES": YES |
| 38 | + |
| 39 | + everything passed |
| 40 | + >> |
| 41 | + |
| 42 | + |
| 43 | +### Manually Matlab Instruction |
| 44 | + |
| 45 | +You can compile it directly in the Matlab commandline. |
| 46 | + |
| 47 | + mex -lhiredis -I/usr/include/hiredis/ CFLAGS='-fPIC -O2 -pedantic -std=c++11 -g' redis_.cpp |
| 48 | + |
| 49 | +Afterwards mv `redis_.mex*` from `mex` folder into `inst/private` folder. |
| 50 | + |
| 51 | +### Manually GNU Octave Instruction |
| 52 | + |
| 53 | +From GNU Octave commandline |
| 54 | + |
| 55 | + mkoctfile -lhiredis -I/usr/include/hiredis --mex -fPIC -O2 -pedantic -std=c++11 -g redis_.cpp |
| 56 | + |
| 57 | +Afterwards mv `redis_.mex` from `mex` folder into `inst/private` folder. |
| 58 | + |
| 59 | +**Currently (3/19/2015) there is a bug in classdef. You have to do `addpath private` in octave as a workaround!** |
| 60 | +https://savannah.gnu.org/bugs/?41723 |
| 61 | + |
| 62 | +### Manually Bash Instruction |
| 63 | + |
| 64 | +You can compile it in bash too |
| 65 | + |
| 66 | + gcc -fPIC -I <PATH TO mex.h> -lm -I <PATH TO hiredis.h> -lhiredis -shared -O2 redis_.cpp -o redis_.mex |
| 67 | + |
| 68 | +e.g. |
| 69 | + |
| 70 | + gcc -fPIC -std=c++11 -I /usr/include/octave-4.0.0/octave/ -lm -I /usr/include/hiredis/ -lhiredis -shared -O2 -pedantic redis_.cpp -o redis_.mex |
0 commit comments