Fix to cpp DEVNOTES.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/81f31056 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/81f31056 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/81f31056 Branch: refs/heads/ignite-2832 Commit: 81f31056edea7c75537b61b90f1b3020150efa46 Parents: 764c97b Author: vozerov-gridgain <[email protected]> Authored: Thu May 5 16:57:40 2016 +0300 Committer: vozerov-gridgain <[email protected]> Committed: Thu May 5 16:57:40 2016 +0300 ---------------------------------------------------------------------- modules/platforms/cpp/DEVNOTES.txt | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/81f31056/modules/platforms/cpp/DEVNOTES.txt ---------------------------------------------------------------------- diff --git a/modules/platforms/cpp/DEVNOTES.txt b/modules/platforms/cpp/DEVNOTES.txt index 81c22db..fa664ef 100644 --- a/modules/platforms/cpp/DEVNOTES.txt +++ b/modules/platforms/cpp/DEVNOTES.txt @@ -2,7 +2,7 @@ Apache Ignite C++ Build Instructions ==================================== Here you can find instruction on how to build Apache Ignite C++ core library and stand-alone node binary. To build examples you need to build and install core Apache -Ignite library then refer to $IGNITE_HOME/platforms/cpp/example/README.txt for +Ignite library then refer to $IGNITE_HOME/platforms/cpp/example/README.txt for futher instructions. Building on Linux With Autotools @@ -14,21 +14,15 @@ Common Requirements: * Java Development Kit (JDK) must be installed: https://java.com/en/download/index.jsp * JAVA_HOME environment variable must be set pointing to Java installation directory. * IGNITE_HOME environment variable must be set to Ignite installation directory. - * To build ODBC driver you need to install ODBC Driver Manager on you system. + * To build ODBC driver you need to install ODBC Driver Manager on you system. Apache Ignite has been tested with UnixODBC. Building the Apache Ignite C++ components: * Navigate to the directory $IGNITE_HOME/platforms/cpp - * Generate configure file using autotools. - * Configure build system using './configure' script. For additional options - use './configure --help' - * Build enabled components using 'make' command. - -Or simply speaking do the following: - * cd $IGNITE_HOME/platforms/cpp - * libtoolize && aclocal && autoheader && automake --add-missing && autoreconf - * ./configure - * make + * Execute the following commands one by one to build the project: + * libtoolize && aclocal && autoheader && automake --add-missing && autoreconf + * ./configure + * make Among standard included by autotools options configure script also include following Ignite-specific options:
