Skip to content

Commit 693ce9b

Browse files
committed
[Comgr] Update README to reflect recent restructuring
Substitute references to amd-stg-open with amd-staging. Also edit paths for Comgr and Device Libs to reflect their new location in llvm-project/amd Change-Id: I7a3c2b19c10b7b54066782ba2c3f23200dcbea55
1 parent eee2dc4 commit 693ce9b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

amd/comgr/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ Building the Code Object Manager
88
--------------------------------
99

1010
Comgr depends on [LLVM](https://github.com/ROCm/llvm-project) and
11-
[AMDDeviceLibs](https://github.com/ROCm/llvm-project/tree/amd-stg-open/amd/device-libs).
11+
[AMDDeviceLibs](https://github.com/ROCm/llvm-project/tree/amd-staging/amd/device-libs).
1212
One way to make these visible to the Comgr build process is by setting the
1313
`CMAKE_PREFIX_PATH` to include either the build directory or install prefix of
1414
each of these components, separated by a semicolon. Both should be built using
15-
either sources with the same ROCm release tag, or from the `amd-stg-open`
15+
either sources with the same ROCm release tag, or from the `amd-staging`
1616
branch. LLVM should be built with at least
1717
`LLVM_ENABLE_PROJECTS='llvm;clang;lld'` and
1818
`LLVM_TARGETS_TO_BUILD='AMDGPU;X86'`.
1919

2020
An example `bash` session to build Comgr on Linux using GNUMakefiles is:
2121

2222
$ LLVM_PROJECT=~/llvm-project
23-
$ DEVICE_LIBS=~/device-libs
24-
$ COMGR=~/support/lib/comgr
23+
$ DEVICE_LIBS=~/llvm-project/amd/device-libs
24+
$ COMGR=~/llvm-project/amd/comgr
2525
$ mkdir -p "$LLVM_PROJECT/build"
2626
$ cd "$LLVM_PROJECT/build"
2727
$ cmake \
@@ -49,8 +49,8 @@ An example `bash` session to build Comgr on Linux using GNUMakefiles is:
4949
The equivalent on Windows in `cmd.exe` using Visual Studio project files is:
5050

5151
> set LLVM_PROJECT="%HOMEPATH%\llvm-project"
52-
> set DEVICE_LIBS="%HOMEPATH%\device-libs"
53-
> set COMGR="%HOMEPATH%\support\lib\comgr"
52+
> set DEVICE_LIBS="%HOMEPATH%\llvm-project\amd\device-libs"
53+
> set COMGR="%HOMEPATH%\llvm-project\amd\comgr"
5454
> mkdir "%LLVM_PROJECT%\build"
5555
> cd "%LLVM_PROJECT%\build"
5656
> cmake ^

0 commit comments

Comments
 (0)