From ab16be4b8f9c826e88bfc5f9be040b2a073ee221 Mon Sep 17 00:00:00 2001 From: Julia Jiang Date: Tue, 1 Mar 2022 15:17:50 -0500 Subject: [PATCH] SWDEV-324824 - Update install instrction to define repository branch variable Change-Id: I6080aabb5a9b6d4a89bc1f2a26c4ed3a4e77aa9f --- hipamd/INSTALL.md | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/hipamd/INSTALL.md b/hipamd/INSTALL.md index bd829a90ce..cc8e46f714 100644 --- a/hipamd/INSTALL.md +++ b/hipamd/INSTALL.md @@ -3,13 +3,27 @@ - Install mesa-common-dev - Either build or install [COMGR](https://github.com/RadeonOpenCompute/ROCm-CompilerSupport), [CLANG](https://github.com/RadeonOpenCompute/llvm-project) and [Device Library](https://github.com/RadeonOpenCompute/ROCm-Device-Libs) +## Branch of repository + +Before get HIP source code, set the expected branch of repository at the variable HIP_BRANCH. +For example, for ROCm5.0 release branch, set +``` +export HIP_BRANCH=rocm-5.0.x +``` + +ROCm5.1 release branch, set +``` +export HIP_BRANCH=rocm-5.1.x +``` +Similiar format for future branches. + ## Getting the source code ```bash -git clone -b develop https://github.com/ROCm-Developer-Tools/hipamd.git -git clone -b develop https://github.com/ROCm-Developer-Tools/hip.git -git clone -b develop https://github.com/ROCm-Developer-Tools/ROCclr.git -git clone -b develop https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime.git +git clone -b $HIP_BRANCH https://github.com/ROCm-Developer-Tools/hipamd.git +git clone -b $HIP_BRANCH https://github.com/ROCm-Developer-Tools/hip.git +git clone -b $HIP_BRANCH https://github.com/ROCm-Developer-Tools/ROCclr.git +git clone -b $HIP_BRANCH https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime.git ``` ## Set the environment variables