Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

wget http://www.cmake.org/files/v3.2/cmake-3.2.2.tar.gz
tar xvf cmake-3.2.2.tar.gz
cd cmake-3.2.2
./bootstrap
make
sudo make install

To check out and build out  the source, do the following:

mkdir incubator-corinthia
cd incubator-corinthia
git clone https://git-wip-us.apache.org/repos/asf/incubator-corinthia.git

Building Corinthia

First time build, which includes generating makefiles:

 

cd
mkdir incubator-corinthia/
git pull
mkdir build
cd incubator-corinthia/build
cmake -G 'Unix Makefiles' ..
make

 

Note that the build directory should be different from the source directory. The example above uses a subdirectory of the source directory, which is fine - but you can also use one in a completely different location as well.

Building Corinthia

Not possible

Testing Corinthia

To rebuild the source, do the following:

cd inbubator-corinthia
git pull
cd build
make

If you work locally or in a branch (recommend) do not do a "git pull".

Testing Corinthia

 

cd inbubator-corinthia
./build/bin/dfutil -test ./tests

 

  Not possible

 


 


To check out and build the source, do the following:

...