Native Libraries Installation Requirements

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 842

This topic has not yet been written. The content below is from the topic description.
40.1.1. Install requirements Note At the moment the native layer is only available on Linux. If you are in a platform other than Linux the native compilation will not work The native library uses autoconf what makes the compilation process easy, however you need to install extra packages as a requirement for compilation: gcc - C Compiler gcc-c++ or g++ - Extension to gcc with support for C++ autoconf - Tool for automating native build process make - Plain old make automake - Tool for automating make generation libtool - Tool for link editing native libraries libaio - library to disk asynchronous IO kernel functions libaio-dev - Compilation support for libaio A full JDK installed with the environment variable JAVA_HOME set to its location To perform this installation on RHEL or Fedora, you can simply type this at a command line: sudo yum install automake libtool autoconf gcc-g++ gcc libaio libaio-dev make Or on debian systems: sudo apt-get install automake libtool autoconf gcc-g++ gcc libaio libaio-dev make Note You could find a slight variation of the package names depending on the version and linux distribution. (for example gcc-c++ on Fedora versus g++ on Debian systems)