mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
# $Id$
|
|
# Maintainer:
|
|
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
|
|
# Contributor: Thomas Dziedzic < gostrc at gmail >
|
|
# Contributor: Denis Martinez <deuns.martinez AT gmail.com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# Romain Reignier <rom.reignier AT gmail.com>
|
|
# - add specfic CXXFLAGS for armv7h and aarch64
|
|
|
|
buildarch=12
|
|
|
|
pkgname=intel-tbb
|
|
pkgver=2018_20171205
|
|
_pkgver=2018_U2
|
|
_file=${_tag}_src.tgz
|
|
pkgrel=1
|
|
pkgdesc='High level abstract threading library'
|
|
arch=(x86_64)
|
|
url='http://www.threadingbuildingblocks.org/'
|
|
license=(GPL)
|
|
depends=(gcc-libs)
|
|
source=(https://github.com/01org/tbb/archive/$_pkgver.tar.gz)
|
|
sha256sums=('78bb9bae474736d213342f01fe1a6d00c6939d5c75b367e2e43e7bf29a6d8eca')
|
|
|
|
build() {
|
|
cd tbb-$_pkgver
|
|
export CXXFLAGS+=" -fno-lifetime-dse" # FS#49898
|
|
[[ $CARCH == "armv7h" ]] && CXXFLAGS+=" -DTBB_USE_GCC_BUILTINS=1 -D__TBB_64BIT_ATOMICS=0"
|
|
[[ $CARCH == "aarch64" ]] && CXXFLAGS+=" -DTBB_USE_GCC_BUILTINS=1 -D__TBB_64BIT_ATOMICS=1"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd tbb-$_pkgver
|
|
install -d "$pkgdir"/usr/lib
|
|
install -m755 build/linux_*/*.so* "$pkgdir"/usr/lib
|
|
install -d "$pkgdir"/usr/include
|
|
cp -a include/tbb "$pkgdir"/usr/include
|
|
}
|