From 6725ba386d555cd5328d82a80b6419afddee4e9e Mon Sep 17 00:00:00 2001 From: Brendan Le Foll Date: Thu, 3 Jul 2014 09:40:09 +0100 Subject: [PATCH] building.md: Add details to swig version requirements for nodejs support. resolves #1 Signed-off-by: Brendan Le Foll --- docs/building.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/building.md b/docs/building.md index dbf90d9..1b9dadb 100644 --- a/docs/building.md +++ b/docs/building.md @@ -4,6 +4,11 @@ Building libmraa {#building} libmraa uses cmake in order to make compilation relatively painless. Cmake runs build out of tree so the recommended way is to clone from git and make a build/ directory. +You'll need swig version 3.0.1+, currently I'm using +8d226e39dc7a958013ff9ffd15e231ef206ba265 from the swig master branch. This is +only required for javascript support and can be disabled with a cmake define +(see below). + ~~~~~~~~~~~~~{.sh} mkdir build cd build @@ -25,3 +30,5 @@ Building debug build: Using clang instead of gcc: -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang +Building with an older version of swig (swig 2.0+) requires the disabling of javascript: + -DBUILDSWIGNODE=OFF -- 2.7.4