Skip to content

Commit 0ba6a73

Browse files
Remove unnecessary cmake build from rocky9 setup (#474)
### Remove unnecessary cmake build from rocky9 setup ### Linked issues NA ### Summarize your change. Remove unnecessary cmake build from rocky9 build system setup ### Describe the reason for the change. Rocky Linux 9 comes with cmake version 3.26.5 which is more recent than the cmake version 3.24 built from sources that were in the build system setup instructions. ### Describe what you have tested and on which operating system. Open RV Rocky 9 build system instructions were validated on a branch new Rocky 9 installation. ### Add a list of changes, and note any that might need special attention during the review. ### If possible, provide screenshots. Signed-off-by: Bernard Laberge <[email protected]>
1 parent 9844fa4 commit 0ba6a73

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ Open RV is currently supported on the following operating systems:
3737
* [Windows 10 and 11](docs/build_system/config_windows.md)
3838
* [macOS Big Sur, Monterey and Ventura](docs/build_system/config_macos.md)
3939
* [Linux Centos 7](docs/build_system/config_linux_centos7.md)
40+
* [Linux Rocky 8](docs/build_system/config_linux_rocky8.md)
41+
* [Linux Rocky 9](docs/build_system/config_linux_rocky9.md)
4042

4143
Support for other operating systems is on a best effort basis.
4244

docs/build_system/config_linux_rocky9.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -46,22 +46,6 @@ Some of the RV build scripts requires extra python packages. They can be install
4646
python3 -m pip install -r requirements.txt
4747
```
4848

49-
## Install CMake
50-
51-
You need CMake version 3.24+ to build RV. The dnf-installable version is not quite recent enough, you'll to build and install CMake from sources.
52-
53-
```bash
54-
wget https://github.com/Kitware/CMake/releases/download/v3.24.0/cmake-3.24.0.tar.gz
55-
tar -zxvf cmake-3.24.0.tar.gz
56-
cd cmake-3.24.0
57-
./bootstrap --parallel=32 # 32 or whatever your machine allows
58-
make -j 32 # 32 or whatever your machine allows
59-
sudo make install
60-
61-
cmake --version # confirm the version of your newly installed version of CMake
62-
cmake version 3.24.0
63-
```
64-
6549
## Install Qt
6650

6751
Download the last version of Qt 5.15.x that you can get using the online installer on the [Qt page](https://www.qt.io/download-open-source). Logs, Android, iOS and WebAssembly are not required to build OpenRV.

0 commit comments

Comments
 (0)