mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-16 19:50:50 +01:00
29 lines
950 B
Plaintext
29 lines
950 B
Plaintext
name = 'tbb'
|
|
version = '4.3.5.187'
|
|
|
|
homepage = 'http://software.intel.com/en-us/articles/intel-tbb/'
|
|
description = """Intel Threading Building Blocks 4.0 (Intel TBB)
|
|
is a widely used, award-winning C++ template library for creating reliable,
|
|
portable, and scalable parallel applications.
|
|
Use Intel TBB for a simple and rapid way of developing robust task-based
|
|
parallel applications that scale to available processor cores, are compatible
|
|
with multiple environments, and are easier to maintain.
|
|
Intel TBB is the most proficient way to implement future-proof parallel applications
|
|
that tap into the power and performance of multicore and manycore hardware platforms."""
|
|
|
|
toolchain = {'name': 'dummy', 'version': 'dummy'}
|
|
|
|
sources = ['l_%s_%s.tgz' % (name, version)]
|
|
|
|
moduleclass = 'lib'
|
|
|
|
dontcreateinstalldir = 'True'
|
|
|
|
# license file
|
|
import os
|
|
license_file = os.path.join(
|
|
os.getenv('HOME'),
|
|
"licenses",
|
|
"intel",
|
|
"license.lic")
|