How long does it take to configure, build and install CMake on a Raspberry pi 3 A+?
I'm aware that CMake is part of the standard package library, but sometimes you need to build a different, or your own version.
How long does it take to configure, build and install CMake on a Raspberry pi 3 A+?
I'm aware that CMake is part of the standard package library, but sometimes you need to build a different, or your own version.
I have recently been through this process and wanted to capture the answer for future reference. These benchmarks were taken using a regular stopwatch.
30 minutes 80 minutes1 minutesI was building CMake version: 3.13
using the following steps:
git clone https://github.com/Kitware/CMake.git
cd CMake
mkdir build && cd build
../configure
make
sudo make install