From 238c7f6dcab244081ab5e47dea0fedef8da5e8af Mon Sep 17 00:00:00 2001 From: "Galantsev, Dmitrii" Date: Wed, 13 Sep 2023 19:33:21 -0500 Subject: [PATCH] README - shell -> bash Change-Id: I3a50c38ae280747b4874cff443091f332980fe50 Signed-off-by: Galantsev, Dmitrii --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9d7b0a019d..12a12bd63c 100755 --- a/README.md +++ b/README.md @@ -27,24 +27,24 @@ In order to build the latest documentation, the following are required: The source code for ROCm SMI is available on [Github](https://github.com/RadeonOpenCompute/rocm_smi_lib). After the ROCm SMI library git repository has been cloned to a local Linux machine, building the library is achieved by following the typical CMake build sequence. Specifically, -```shell +```bash mkdir -p build cd build cmake .. make -j $(nproc) # Install library file and header; default location is /opt/rocm -$ make install +make install ``` The built library will appear in the `build` folder. To build the rpm and deb packages follow the above steps with: -```shell +```bash make package ``` #### Documentation The following is an example of how to build the docs: -```shell +```bash sudo apt install -y npm sudo npm install -g sass @@ -57,7 +57,7 @@ python3 -m venv .venv #### Building the Tests In order to verify the build and capability of ROCm SMI on your system and to see an example of how ROCm SMI can be used, you may build and run the tests that are available in the repo. To build the tests, follow these steps: -```shell +```bash mkdir build cd build cmake -DBUILD_TESTS=ON ..