cf87128628
The samples directory tree is installed as-is during packaging. To avoid this file from being installed, the sample gitignores should be combined with the existing file in the root of the git. Signed-off-by: Jeremy Newton <Jeremy.Newton@amd.com> Change-Id: I2ac30c8d0e42da9254b87cd45127503c70fc6b07
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, run in the sample folder,
mkdir -p build && cd build
rm -rf * (to clear up)
a. to build with shared libs, run
cmake ..
b. to build with static libs, run
cmake -DCMAKE_PREFIX_PATH="<ROCM_PATH>/llvm/lib/cmake" ..
Then run,
make
Note that if you want debug version, add "-DCMAKE_BUILD_TYPE=Debug" in cmake cmd.