Skip to content

Compile

Birger Johansson edited this page Sep 18, 2020 · 5 revisions

Compile and run Ikaros

  1. Change directory into ikaros/Build
cd ikaros/Build
  1. Run cmake
cmake ..
  1. Run make
make

Tips

  1. To prepare compilation for debug vs release mode use
cmake -DCMAKE_BUILD_TYPE=Debug ..
cmake -DCMAKE_BUILD_TYPE=Release ..
  1. To force Cmake to start over the configuration procedure, remove the CMakeCache.txt in the Build directory
rm CMakeCache.txt 
  1. To compile in parallel use the j flag with the number of parallel processes
make -j8 
Clone this wiki locally