0

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.

Dirk
  • 3,749
  • 3
  • 19
  • 27
GPPK
  • 161
  • 7

1 Answers1

4

I have recently been through this process and wanted to capture the answer for future reference. These benchmarks were taken using a regular stopwatch.

  • Configure: 30 minutes
  • Make: 80 minutes
  • Make Install: 1 minutes

I 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
GPPK
  • 161
  • 7