Skip to content

Commit d2a6547

Browse files
Nemi26Nemi Verploegh
authored andcommitted
[rocm-libraries] ROCm/rocm-libraries#4410 (commit ad49140)
update READMEs to use ninja instead of make for building (#4410) ## Motivation Ninja is the recommended build tool now ## Technical Details ## Test Plan ## Test Result ## Submission Checklist - [x] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests. Co-authored-by: Nemi Verploegh <nemi.verploegh@streamhpc.com>
1 parent 2040db4 commit d2a6547

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,11 @@ cd rocm-libraries/projects/rocrand; mkdir build; cd build
9292
#
9393
# The python interface do not work with static library.
9494
#
95+
# The package and install scripts require Make, but otherwise passing -GNinja is recommended for faster building.
9596
[CXX=hipcc] cmake -DBUILD_BENCHMARK=ON ../. -DCMAKE_PREFIX_PATH=/opt/rocm # or cmake-gui ../.
9697

9798
# Build
98-
make -j4
99+
make -j4 # or `ninja`
99100

100101
# Optionally, run tests if they're enabled
101102
ctest --output-on-failure

0 commit comments

Comments
 (0)