Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

install guide: add instrs for modern cmake #2815

Merged
merged 3 commits into from
Jan 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion doc/src/install_guide/installation_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Register and enable Red Hat subscription to install any packages on the system.
# subscription-manager register --proxy=PROXY --username=USER --password=PASSWORD --auto-attach
```

Set the RHEL version and install packages. Set proxy name and port number
Set the RHEL version and install packages. Set proxy name and port number.

```console
# subscription-manager release --set=8.2 --proxy proxy-name.com:port number
Expand All @@ -126,6 +126,17 @@ Set the RHEL version and install packages. Set proxy name and port number
# python3 -m pip install --user jsonschema virtualenv pudb pyyaml
```

Install the latest version of [cmake](https://github.com/Kitware) on top of the outdated cmake package from the package manager.

```console
# cd cmake-3.25.1/
# ./bootstrap --prefix=/usr
# make
# make install
# which cmake
/usr/bin/cmake
```

### Create opae-sdk packages ###

Download the OPAE-SDK source code from github. For example, download from Master branch.
Expand Down