0bfa8b1eb7
Closes Homebrew/homebrew#18852. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
26 lines
923 B
Ruby
26 lines
923 B
Ruby
require 'formula'
|
|
|
|
class Tbb < Formula
|
|
homepage 'http://www.threadingbuildingblocks.org/'
|
|
url 'http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb41_20130314oss_src.tgz'
|
|
sha1 'e2bf74c1e492b06faf3ecdf2321e64ca698c0921'
|
|
version '4.1u3'
|
|
|
|
fails_with :clang do
|
|
cause "Undefined symbols for architecture x86_64: vtable for tbb::tbb_exception"
|
|
end
|
|
|
|
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
|