diff options
author | fulup <fulup.arfoll@iot.bzh> | 2017-04-02 12:14:27 +0200 |
---|---|---|
committer | fulup <fulup.arfoll@iot.bzh> | 2017-04-02 12:14:27 +0200 |
commit | c75c329e08f4c189419aa4c5607f38890885b46c (patch) | |
tree | b59f8c28b1bf5dd8a9516603116ac291b458e742 /README.md | |
parent | 228e67731c2772538dcedf6617e74130934428ed (diff) | |
parent | be16842c8756bf527f35fabac4ecc5beb215c411 (diff) |
Merge branch 'master' of github.com:iotbzh/audio-bindings
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 19 |
1 files changed, 7 insertions, 12 deletions
@@ -30,11 +30,13 @@ AFB_daemon dependency on Standard Linux Distributions ``` # Might want to add following variables into ~/.bashrc # export CC=gcc-5; export CXX=g++-5 # if using gcc5 - echo "export DEST=$HOME/opt" >>~/.bashrc - echo "export LD_LIBRARY_PATH=$DEST/lib64" >>~/.bashrc - echo "export LIBRARY_PATH=$DEST/lib64" >>~/.bashrc - echo "export PKG_CONFIG_PATH=$DEST/lib64/pkgconfig" >>~/.bashrc - echo "export PATH=$DEST/bin:$PATH" >>~/.bashrc + + echo 'export LIBPOSTFIX=64'>>~/.bashrc + echo 'export DEST=$HOME/opt' >>~/.bashrc + echo 'export LD_LIBRARY_PATH=$DEST/lib${LIBPOSTFIX}' >>~/.bashrc + echo 'export LIBRARY_PATH=$DEST/lib${LIBPOSTFIX}' >>~/.bashrc + echo 'export PKG_CONFIG_PATH=$DEST/lib${LIBPOSTFIX}/pkgconfig' >>~/.bashrc + echo 'export PATH=$DEST/bin:$PATH' >>~/.bashrc source ~/.bashrc # install AGL pached version of LibMicroHttpd @@ -55,13 +57,6 @@ AFB_daemon dependency on Standard Linux Distributions make install ``` -Other Audio Binding Dependencies ----------------------------------- - afb-daemon - alsa-devel - - Edit CMakeList.txt to tune options - ``` # Compile binding |