Difference between revisions of "DevTools:Bindings"

From CrossWire Bible Society
Jump to: navigation, search
(See also: * Android Bindings)
(See also: removed direct links as category links already)
Line 13: Line 13:
 
   cd perl
 
   cd perl
 
   sudo make install
 
   sudo make install
 
== See also ==
 
* [[DevTools:CMake]]
 
* [[CSharp Bindings on Windows]]
 
* [[DevTools:JNI Bindings for Android|Android Bindings]]
 
  
 
[[Category:Bindings]]
 
[[Category:Bindings]]
 
[[Category:Development tools]]
 
[[Category:Development tools]]

Revision as of 16:10, 10 January 2018

Sword Bindings

SWIG bindings

In order to use libsword from Perl, Python or other scripting languages you need to compile the SWIG bindings section too.

 sudo apt-get install swig
 cd bindings/swig/package
 libtoolize --force
 ./autogen.sh
 ./configure
 make perlswig
 make perl_make
 cd perl
 sudo make install