blob: ad18de71af3b4af1e44fbbf1f24cff53de28744f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Maintainer: Daniel Bermond <dbermond@archlinux.org>
pkgname=intel-compute-runtime-git
pkgver=22.43.24558.r7611.g05c6612386
pkgrel=1
pkgdesc='Intel(R) Graphics Compute Runtime for oneAPI Level Zero and OpenCL(TM) Driver (git version)'
arch=('x86_64')
url='https://01.org/compute-runtime/'
license=('MIT')
depends=('gcc-libs' 'glibc' 'intel-gmmlib' 'intel-graphics-compiler-git')
makedepends=('cmake' 'git' 'igsc' 'libva' 'level-zero-headers-git')
optdepends=('libva: for cl_intel_va_api_media_sharing'
'libdrm: for cl_intel_va_api_media_sharing')
provides=('intel-compute-runtime' 'opencl-driver' 'level-zero-driver')
conflicts=('intel-compute-runtime')
options=('!lto')
source=('git+https://github.com/intel/compute-runtime.git'
'010-intel-compute-runtime-disable-werror.patch')
sha256sums=('SKIP'
'84c340119a77571a7779a8c21245db62255b0ec28f325a6f250526bd47dd367f')
prepare() {
patch -d compute-runtime -Np1 -i "${srcdir}/010-intel-compute-runtime-disable-werror.patch"
}
pkgver() {
git -C compute-runtime describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'
}
build() {
# ${${pkgver#*.}%.*} not supported by bash?
# Fix runtime error in blender
CXXFLAGS+=' -DSANITIZER_BUILD=1'
CFLAGS+=' -DSANITIZER_BUILD=1'
# fix warning: "_FORTIFY_SOURCE" redefined
# note: upstream forces _FORTIFY_SOURCE=2
export CFLAGS="${CFLAGS/-Wp,-D_FORTIFY_SOURCE=?/}"
export CXXFLAGS="${CXXFLAGS/-Wp,-D_FORTIFY_SOURCE=?/}"
# opencl-headers supported by upstream is already in the source tree
# https://github.com/intel/compute-runtime/blob/24.48.31907.7/third_party/opencl_headers/.version
local _opencl_headers_dir="${srcdir}/compute-runtime/third_party/opencl_headers"
export CXXFLAGS+=" -isystem${_opencl_headers_dir}"
cmake -B build -S compute-runtime \
-G 'Unix Makefiles' \
-DCMAKE_BUILD_TYPE:STRING='Release' \
-DCMAKE_INSTALL_PREFIX:PATH='/usr' \
-DCMAKE_INSTALL_LIBDIR:PATH='lib' \
-DNEO_DISABLE_LD_GOLD:BOOL='ON' \
-DNEO_OCL_VERSION_MAJOR:STRING="${pkgver%%.*}" \
-DNEO_OCL_VERSION_MINOR:STRING="$(echo "$pkgver" | cut -d '.' -f2)" \
-DNEO_VERSION_BUILD:STRING="$(echo "$pkgver" | cut -d '.' -f3)" \
-DSUPPORT_DG1:BOOL='ON' \
-DSUPPORT_DG2:BOOL='ON' \
-DKHRONOS_GL_HEADERS_DIR:PATH='/usr/include' \
-DKHRONOS_HEADERS_DIR:PATH="${_opencl_headers_dir}" \
-DSKIP_UNIT_TESTS:BOOL='ON' \
-Wno-dev
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
install -D -m644 compute-runtime/LICENSE.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
ln -s "$(find "${pkgdir}/usr/lib" -regex '.*libze_intel_gpu.so.[0-9]*' -exec basename {} +)" "${pkgdir}/usr/lib/libze_intel_gpu.so"
ln -s "$(find "${pkgdir}"/usr/bin -name 'ocloc-*' -exec basename {} \;)" "${pkgdir}/usr/bin/ocloc"
}
|