aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorFulup Ar Foll <fulup@iot.bzh>2017-03-08 14:23:35 +0100
committerFulup Ar Foll <fulup@iot.bzh>2017-03-08 14:23:35 +0100
commit1393b5d318e22dbd1625692847a51c27932fd442 (patch)
tree19fd954a04456be8e1c7ebde5b3aaefbe08dbcad /README.md
parent0964e7da8576b8761e8d3d16b50cc842406c7e67 (diff)
Events Partially Working
Diffstat (limited to 'README.md')
-rw-r--r--README.md31
1 files changed, 22 insertions, 9 deletions
diff --git a/README.md b/README.md
index bbc7b9c..b33f843 100644
--- a/README.md
+++ b/README.md
@@ -8,21 +8,34 @@ AFB_daemon dependency on Standard Linux Distributions
# handle dependencies > (OpenSuse-42.2, Fedora-25, Ubuntu 16.04.2LTS)
gcc > 4.8
libsystemd-dev>=222
- libmicrohttpd-dev>=0.9.48
openssl-dev
uuid-dev
+ libmicrohttpd with AGL patches http://iot.bzh/download/public/2016/appfw/libmicrohttpd-0.9.49-agl.tgz
+ afb-daemon from AGL Gerrit git clone https://gerrit.automotivelinux.org/gerrit/src/app-framework-binder
+
```
# Might want to add following variables into ~/.bashrc
- export CC=gcc-5; export CXX=g++-5 # if using gcc5
- export DEST=$HOME/opt
- export LD_LIBRARY_PATH=$DEST/lib64
- export LIBRARY_PATH=$DEST/lib64
- export PKG_CONFIG_PATH=$DEST/lib64/pkgconfig
- export PATH=$DEST/bin:$PATH
+ # 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
+ source ~/.bashrc
+
+ # install AGL pached version of LibMicroHttpd
+ wget http://iot.bzh/download/public/2016/appfw/libmicrohttpd-0.9.49-agl.tgz
+ tar -xzf libmicrohttpd-0.9.49-agl.tgz
+ cd libmicrohttpd-0.9.49-agl
+ ./configure --prefix=$DEST
+ make
+ make install-strip
+
+ # retreive last AFB_daemon from AGL
+ git clone https://gerrit.automotivelinux.org/gerrit/src/app-framework-binder
# Warning: previous GCC options should be set before initial cmake (clean Build/*)
- source ~/.bashrc
cd app-framework-binder; mkdir build; cd build
cmake -DCMAKE_INSTALL_PREFIX=$DEST ..
make
@@ -48,7 +61,7 @@ make install
ls
# Start the binder
-afb-daemon --token=x --ldpaths=$INSTALL_DIR/lib --port=1234 --roothttp=$INSTALL_DIR/htdocs/audio-bindings --verbose
+afb-daemon --token=x --ldpaths=$INSTALL_DIR/lib/audio --port=1234 --roothttp=$INSTALL_DIR/htdocs/audio-bindings --verbose
```