Created
August 31, 2019 01:06
-
-
Save ulyssesrr/f78e5043e29be20224763bd0ddcdf8ed to your computer and use it in GitHub Desktop.
PKGBUILD for rocr-runtime v2.7.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: Jakub Okoński <[email protected]> | |
| pkgname=rocr-runtime | |
| pkgver=2.7.0 | |
| pkgrel=1 | |
| pkgdesc="ROCm HSA" | |
| arch=(x86_64) | |
| url="https://github.com/RadeonOpenCompute/ROCR-Runtime" | |
| license=('unknown') | |
| makedepends=(git cmake gcc ninja) | |
| depends=('roct-thunk-interface') | |
| source=("https://github.com/RadeonOpenCompute/ROCR-Runtime/archive/roc-$pkgver.tar.gz") | |
| sha256sums=("726b6556d4072caa35e751e067f4e5dd283583ed0aff49d72af14e0449bfe318") | |
| build() { | |
| mkdir -p "$srcdir/build" | |
| cd "$srcdir/build" | |
| cmake -DCMAKE_BUILD_TYPE=Release \ | |
| -DCMAKE_INSTALL_PREFIX=$pkgdir/opt/rocm \ | |
| -DCMAKE_PREFIX_PATH=/opt/rocm/libhsakmt \ | |
| -DHSAKMT_INC_PATH=/opt/rocm/include \ | |
| -DHSAKMT_LIB_PATH=/opt/rocm/lib64 \ | |
| -G Ninja \ | |
| "$srcdir/ROCR-Runtime-roc-$pkgver/src" | |
| ninja | |
| } | |
| package() { | |
| ninja -C "$srcdir/build" install | |
| mkdir -p "$pkgdir/etc/ld.so.conf.d" | |
| cat <<-EOF > $pkgdir/etc/ld.so.conf.d/rocm-runtime.conf | |
| /opt/rocm/lib | |
| /opt/rocm/hsa/lib/ | |
| EOF | |
| } |
Author
I get /usr/bin/ld: cannot find -lhsakmt
I fixed the issue by changing line 21 from
-DHSAKMT_LIB_PATH=/opt/rocm/lib64 \
to
-DHSAKMT_LIB_PATH=/opt/rocm/lib \
It builds without problems now, since the library is in another folder
I get /usr/bin/ld: cannot find -lhsakmt
I fixed the issue by changing line 21 from
-DHSAKMT_LIB_PATH=/opt/rocm/lib64 \
to
-DHSAKMT_LIB_PATH=/opt/rocm/lib \It builds without problems now, since the library is in another folder
That worked, thank you!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should have
/opt/rocm/lib64/libhsakmt.soas it's part of theroct-thunk-interfacedependency, could you paste(bin) the output ofpacman -Qil roct-thunk-interfaceIf the lib file above exists, does
sudo ldconfigbefore building solves the problem?