92fe05351d
Upgrade tbb to 4.0u3, 20120201 stable. It passes make test on Lion with XCode-4.3.2, clang and llvm-gcc. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
22 lines
795 B
Ruby
22 lines
795 B
Ruby
require 'formula'
|
|
|
|
class Tbb < Formula
|
|
homepage 'http://www.threadingbuildingblocks.org/'
|
|
url 'http://threadingbuildingblocks.org/uploads/77/182/4.0%20update%203/tbb40_20120201oss_src.tgz'
|
|
sha1 '717879cd6ce05161892bb44be5a375ed1ed9f7d6'
|
|
version '4.0u3'
|
|
|
|
def install
|
|
# Intel sets varying O levels on each compile command.
|
|
ENV.no_optimization
|
|
# Override build prefix so we can copy the dylibs out of the same place
|
|
# no matter what system we're on, and use our compilers.
|
|
args = ['tbb_build_prefix=BUILDPREFIX',
|
|
"CONLY=#{ENV.cc}",
|
|
"CPLUS=#{ENV.cxx}"]
|
|
args << (MacOS.prefer_64_bit? ? "arch=intel64" : "arch=ia32")
|
|
system "make", *args
|
|
lib.install Dir['build/BUILDPREFIX_release/*.dylib']
|
|
include.install 'include/tbb'
|
|
end
|
|
end
|