Installing CMake
Procedure
- Use PuTTY to log in to the server as the root user.
- Download the CMake installation package.
wget https://github.com/Kitware/CMake/releases/download/v3.24.0-rc4/cmake-3.24.0-rc4-linux-aarch64.tar.gz
- Decompress the installation package.
tar xvf cmake-3.24.0-rc4-linux-aarch64.tar.gz
- Set the environment variables.
cd cmake-3.24.0-rc4-linux-aarch64 export PATH=`pwd`/bin:$PATH
- Verify CMake.
cmake --version
Information similar to the following is displayed:

Parent topic: Configuring the Compilation Environment