mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
community/spirv-llvm-translator to 13.0.0.r24+gf1372c87-1
This commit is contained in:
parent
fd1ddd24f8
commit
d2faf0532a
1 changed files with 21 additions and 20 deletions
|
@ -6,7 +6,7 @@
|
|||
|
||||
_srcname=SPIRV-LLVM-Translator
|
||||
pkgname=${_srcname,,}
|
||||
pkgver=13.0.0.r23+gc9f1e369
|
||||
pkgver=13.0.0.r24+gf1372c87
|
||||
pkgrel=1
|
||||
pkgdesc="Tool and a library for bi-directional translation between SPIR-V and LLVM IR"
|
||||
arch=(x86_64)
|
||||
|
@ -15,36 +15,37 @@ license=(custom)
|
|||
depends=(llvm-libs)
|
||||
makedepends=(git cmake llvm spirv-headers spirv-tools)
|
||||
checkdepends=(python python-setuptools clang)
|
||||
_commit=c9f1e36957255656b52bc9013e24e3201990eeee # Adapted from IGC release notes
|
||||
# Adapted from IGC release notes 99420daab98998a7e36858befac9c5ed109d4920
|
||||
_commit=f1372c879bf4294ed37a6a259b3f6000458c0d02
|
||||
source=(git+${url}.git#commit=$_commit)
|
||||
sha256sums=(SKIP)
|
||||
|
||||
pkgver() {
|
||||
cd ${_srcname}
|
||||
git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./;s/-/+/'
|
||||
cd ${_srcname}
|
||||
git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./;s/-/+/'
|
||||
}
|
||||
|
||||
build() {
|
||||
cmake -B build -S ${_srcname} \
|
||||
-DBUILD_SHARED_LIBS=ON \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_POSITION_INDEPENDENT_CODE=ON \
|
||||
-DCMAKE_SKIP_RPATH=ON \
|
||||
-DLLVM_INCLUDE_TESTS=ON \
|
||||
-DLLVM_EXTERNAL_LIT=/usr/bin/lit \
|
||||
-DLLVM_EXTERNAL_SPIRV_HEADERS_SOURCE_DIR=/usr/include/spirv/ \
|
||||
-Wno-dev
|
||||
make -C build llvm-spirv
|
||||
cmake -B build -S ${_srcname} \
|
||||
-DBUILD_SHARED_LIBS=ON \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_POSITION_INDEPENDENT_CODE=ON \
|
||||
-DCMAKE_SKIP_RPATH=ON \
|
||||
-DLLVM_INCLUDE_TESTS=ON \
|
||||
-DLLVM_EXTERNAL_LIT=/usr/bin/lit \
|
||||
-DLLVM_EXTERNAL_SPIRV_HEADERS_SOURCE_DIR=/usr/include/spirv/ \
|
||||
-Wno-dev
|
||||
make -C build llvm-spirv
|
||||
}
|
||||
|
||||
check() {
|
||||
# https://github.com/KhronosGroup/SPIRV-LLVM-Translator/issues/1433
|
||||
LD_LIBRARY_PATH="${srcdir}/build/lib/SPIRV" make -C build test || echo "Tests failed"
|
||||
# https://github.com/KhronosGroup/SPIRV-LLVM-Translator/issues/1433
|
||||
LD_LIBRARY_PATH="${srcdir}/build/lib/SPIRV" make -C build test || echo "Tests failed"
|
||||
}
|
||||
|
||||
package() {
|
||||
make -C build DESTDIR="${pkgdir}" install
|
||||
install -Dm755 build/tools/llvm-spirv/llvm-spirv -t "${pkgdir}"/usr/bin
|
||||
install -Dm644 ${_srcname}/LICENSE.TXT -t "${pkgdir}"/usr/share/licenses/${pkgname}/
|
||||
make -C build DESTDIR="${pkgdir}" install
|
||||
install -Dm755 build/tools/llvm-spirv/llvm-spirv -t "${pkgdir}"/usr/bin
|
||||
install -Dm644 ${_srcname}/LICENSE.TXT -t "${pkgdir}"/usr/share/licenses/${pkgname}/
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue