Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by David Kowis (079d6577790a21f2b1ae9f20ab64265ccfb79d0f)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: David Kowis <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by David Kowis (079d6577790a21f2b1ae9f20ab64265ccfb79d0f)
  • Date: Fri, 25 Sep 2009 13:40:00 -0500

GIT changes to master grimoire by David Kowis <dkowis AT Kain.shlrm.org>:

ChangeLog | 3 +++
libs/tbb/BUILD | 1 +
libs/tbb/DEPENDS | 1 +
libs/tbb/DETAILS | 20 ++++++++++++++++++++
libs/tbb/HISTORY | 2 ++
libs/tbb/INSTALL | 11 +++++++++++
6 files changed, 38 insertions(+)

New commits:
commit 8c9e8a1809250f5fda0255bb9a2016fb146a284f
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT Kain.shlrm.org>

libs/tbb: Creating Intel Thread Building Blocks spell

diff --git a/ChangeLog b/ChangeLog
index 4657090..243f020 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2009-09-25 David Kowis <dkowis AT shlrm.org>
+ * libs/tbb: Intel thread building blocks!
+
2009-09-25 Bor Kraljič <pyrobor AT ver.si>
* gurus.gpg: added my signing key

diff --git a/libs/tbb/BUILD b/libs/tbb/BUILD
new file mode 100755
index 0000000..8f58e6d
--- /dev/null
+++ b/libs/tbb/BUILD
@@ -0,0 +1 @@
+make
diff --git a/libs/tbb/DEPENDS b/libs/tbb/DEPENDS
new file mode 100755
index 0000000..f66defa
--- /dev/null
+++ b/libs/tbb/DEPENDS
@@ -0,0 +1 @@
+depends gcc
diff --git a/libs/tbb/DETAILS b/libs/tbb/DETAILS
new file mode 100755
index 0000000..560dbdf
--- /dev/null
+++ b/libs/tbb/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=tbb
+ VERSION=22_20090809
+
SOURCE_HASH=sha512:f961731d2e29e82e4a9be22273b6553d8499bc75365837d0221cb18095c55730d21cf37661efdcab0bec48a041b79b16b84b5066b2f97e9ed45835262be5fd19
+ SOURCE=${SPELL}${VERSION}oss_src.tgz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/${SPELL}${VERSION}oss
+
SOURCE_URL[0]=http://www.threadingbuildingblocks.org/uploads/77/142/2.2/$SOURCE
+ WEB_SITE=http://www.threadingbuildingblocks.org
+ ENTERED=20090925
+ LICENSE[0]=GPL
+ KEYWORDS="threading intel"
+ DOCS=doc examples
+ SHORT="Intels threading building blocks library"
+cat << EOF
+Intel� Threading Building Blocks (TBB) offers a rich and complete approach to
+expressing parallelism in a C++ program. It is a library that helps you take
+advantage of multi-core processor performance without having to be a
threading
+expert. Threading Building Blocks is not just a threads-replacement library.
It
+represents a higher-level, task-based parallelism that abstracts platform
+details and threading mechanisms for scalability and performance.
+EOF
diff --git a/libs/tbb/HISTORY b/libs/tbb/HISTORY
new file mode 100644
index 0000000..0ec86a9
--- /dev/null
+++ b/libs/tbb/HISTORY
@@ -0,0 +1,2 @@
+2009-09-25 David Kowis<dkowis AT shlrm.org>
+ * DETAILS, BUILD, INSTALL: Created intel thread building blocks spell
diff --git a/libs/tbb/INSTALL b/libs/tbb/INSTALL
new file mode 100755
index 0000000..72e6098
--- /dev/null
+++ b/libs/tbb/INSTALL
@@ -0,0 +1,11 @@
+cd $SOURCE_DIRECTORY &&
+# copy the libs and create symlinks
+for foo in $(find -executable -type f); do
+ bar=$(basename $foo)
+ cp $foo ${INSTALL_ROOT}/usr/lib/$bar &&
+ ln -s ${INSTALL_ROOT}/usr/lib/$bar ${INSTALL_ROOT}/usr/lib/$(expr match
"${bar:2}" '\([a-z_]*\.so\)')
+done &&
+
+#install the include files
+cp -a $SOURCE_DIRECTORY/include/tbb/* ${INSTALL_ROOT}/usr/include
+



  • [SM-Commit] GIT changes to master grimoire by David Kowis (079d6577790a21f2b1ae9f20ab64265ccfb79d0f), David Kowis, 09/25/2009

Archive powered by MHonArc 2.6.24.

Top of Page