2010-04-12 20:52:53 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tbb < Formula
|
2010-04-12 20:52:53 +00:00
|
|
|
homepage 'http://www.threadingbuildingblocks.org/'
|
2013-07-27 12:31:57 +00:00
|
|
|
url 'http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb41_20130613oss_src.tgz'
|
2013-08-15 08:39:15 +00:00
|
|
|
mirror 'https://distfiles.macports.org/tbb/tbb41_20130613oss_src.tgz'
|
2013-07-27 12:31:57 +00:00
|
|
|
sha1 'b1322bd10c5b05a79f61edb236adc0513b4a1532'
|
|
|
|
version '4.1u4'
|
2010-04-12 20:52:53 +00:00
|
|
|
|
2013-01-31 18:06:54 +00:00
|
|
|
fails_with :clang do
|
2013-08-13 22:31:01 +00:00
|
|
|
build 425
|
2013-01-31 18:06:54 +00:00
|
|
|
cause "Undefined symbols for architecture x86_64: vtable for tbb::tbb_exception"
|
|
|
|
end
|
|
|
|
|
2010-04-12 20:52:53 +00:00
|
|
|
def install
|
2011-10-27 20:20:11 +00:00
|
|
|
# Intel sets varying O levels on each compile command.
|
|
|
|
ENV.no_optimization
|
2010-04-12 20:52:53 +00:00
|
|
|
# Override build prefix so we can copy the dylibs out of the same place
|
2011-10-27 20:20:11 +00:00
|
|
|
# no matter what system we're on, and use our compilers.
|
|
|
|
args = ['tbb_build_prefix=BUILDPREFIX',
|
|
|
|
"CONLY=#{ENV.cc}",
|
|
|
|
"CPLUS=#{ENV.cxx}"]
|
2011-03-18 17:30:47 +00:00
|
|
|
args << (MacOS.prefer_64_bit? ? "arch=intel64" : "arch=ia32")
|
2010-04-12 20:52:53 +00:00
|
|
|
system "make", *args
|
|
|
|
lib.install Dir['build/BUILDPREFIX_release/*.dylib']
|
|
|
|
include.install 'include/tbb'
|
|
|
|
end
|
|
|
|
end
|