summaryrefslogtreecommitdiff
path: root/community/embree/PKGBUILD
blob: 8d2043c8f63a900877c4ba821db1adb3ad8d66e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# avoid breakage in newer CPU ISAs, supporting SSE2 should be enough for
# 32-bit platforms
eval "$(
  declare -f build | \
    sed '
      /cmake/s/-DEMBREE_MAX_ISA="AVX512SKX"/-DEMBREE_MAX_ISA="SSE2"/
    '
)"

# some 32-bit fixes around intrinsics where applied to WIN32 only,
# applying a counter-patch here
source+=('embree-3.2.0-intrinsic.patch')
sha256sums+=('7d5e44a034b02e14d7d37cd038d8c279d13d66b54a449c09e0687458f117723f')
prepare() {
  cd $pkgname-$pkgver
  patch -Np1 -i "$srcdir/embree-3.2.0-intrinsic.patch"
}