e4caaa2a77
This reverts commit28b17d3dbd. Reason for revert: <INSERT REASONING HERE> Change-Id: I92ceb171e31026ed1864704cef2fc1497b883ef9 [ROCm/hip commit:ad2d55c144]
27 lines
466 B
Markdown
27 lines
466 B
Markdown
Build procedure
|
|
|
|
We provide Makefile and CMakeLists.txt to build the samples seperately.
|
|
|
|
1.Makefile supports shared lib of hip-rocclr runtime and nvcc.
|
|
|
|
To build a sample, just type in sample folder,
|
|
|
|
make
|
|
|
|
|
|
|
|
2.CMakeLists.txt can support shared and static libs of hip-rocclr runtime.
|
|
|
|
To build a sample, type in sample folder,
|
|
|
|
mkdir build (if build folder is missing)
|
|
|
|
cd build
|
|
|
|
cmake ..
|
|
|
|
make
|
|
|
|
If you want debug version, follow,
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Debug .. |