2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Boost < Formula
|
2010-01-30 14:35:48 +00:00
|
|
|
homepage 'http://www.boost.org'
|
2014-08-07 19:00:44 +00:00
|
|
|
url 'https://downloads.sourceforge.net/project/boost/boost/1.56.0/boost_1_56_0.tar.bz2'
|
|
|
|
sha1 'f94bb008900ed5ba1994a1072140590784b9b5df'
|
2012-02-08 20:16:32 +00:00
|
|
|
|
2014-03-15 07:40:43 +00:00
|
|
|
head 'https://github.com/boostorg/boost.git'
|
2011-11-18 13:53:50 +00:00
|
|
|
|
2013-11-12 11:31:01 +00:00
|
|
|
bottle do
|
2013-12-05 06:41:38 +00:00
|
|
|
cellar :any
|
2014-10-19 15:00:44 +00:00
|
|
|
revision 1
|
|
|
|
sha1 "ea390cc163c7bc5f4bcebc8dc1dfef0f7a4dbc2d" => :yosemite
|
|
|
|
sha1 "c67641e7b6149c64809fc8d3d0e7e97dcf4ec518" => :mavericks
|
|
|
|
sha1 "d09cea432feca8303106fadb4c27de66b793e2c7" => :mountain_lion
|
2013-11-12 11:31:01 +00:00
|
|
|
end
|
|
|
|
|
2012-11-05 17:20:05 +00:00
|
|
|
env :userpaths
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2012-08-09 05:26:41 +00:00
|
|
|
option :universal
|
2013-06-03 22:02:19 +00:00
|
|
|
option 'with-icu', 'Build regexp engine with icu support'
|
2013-07-18 05:17:45 +00:00
|
|
|
option 'without-single', 'Disable building single-threading variant'
|
|
|
|
option 'without-static', 'Disable building static library variant'
|
2013-10-09 06:15:21 +00:00
|
|
|
option 'with-mpi', 'Build with MPI support'
|
|
|
|
option :cxx11
|
2012-08-09 05:26:41 +00:00
|
|
|
|
2013-10-09 06:15:21 +00:00
|
|
|
if build.with? 'icu'
|
|
|
|
if build.cxx11?
|
|
|
|
depends_on 'icu4c' => 'c++11'
|
|
|
|
else
|
|
|
|
depends_on 'icu4c'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if build.with? 'mpi'
|
|
|
|
if build.cxx11?
|
|
|
|
depends_on 'open-mpi' => 'c++11'
|
|
|
|
else
|
|
|
|
depends_on :mpi => [:cc, :cxx, :optional]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2335
|
|
|
|
cause "Dropped arguments to functions when linking with boost"
|
|
|
|
end
|
2011-11-24 05:06:13 +00:00
|
|
|
|
2011-03-21 21:24:22 +00:00
|
|
|
def install
|
2013-08-13 20:14:24 +00:00
|
|
|
# https://svn.boost.org/trac/boost/ticket/8841
|
2014-03-06 20:40:26 +00:00
|
|
|
if build.with? 'mpi' and build.with? 'single'
|
2013-09-27 05:26:08 +00:00
|
|
|
raise <<-EOS.undent
|
2013-08-13 20:14:24 +00:00
|
|
|
Building MPI support for both single and multi-threaded flavors
|
|
|
|
is not supported. Please use '--with-mpi' together with
|
2013-09-27 05:26:08 +00:00
|
|
|
'--without-single'.
|
2013-08-13 20:14:24 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2013-10-07 09:31:04 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
|
|
|
|
2014-07-19 22:37:25 +00:00
|
|
|
# Force boost to compile with the desired compiler
|
2010-01-30 14:35:48 +00:00
|
|
|
open("user-config.jam", "a") do |file|
|
2012-05-15 18:47:30 +00:00
|
|
|
file.write "using darwin : : #{ENV.cxx} ;\n"
|
2013-01-21 09:33:56 +00:00
|
|
|
file.write "using mpi ;\n" if build.with? 'mpi'
|
2010-01-30 14:35:48 +00:00
|
|
|
end
|
|
|
|
|
2014-07-19 22:37:25 +00:00
|
|
|
# libdir should be set by --prefix but isn't
|
|
|
|
bootstrap_args = ["--prefix=#{prefix}", "--libdir=#{lib}"]
|
2012-02-07 19:45:57 +00:00
|
|
|
|
2013-06-03 22:02:19 +00:00
|
|
|
if build.with? 'icu'
|
2014-02-25 04:38:53 +00:00
|
|
|
icu4c_prefix = Formula['icu4c'].opt_prefix
|
2014-07-19 22:37:25 +00:00
|
|
|
bootstrap_args << "--with-icu=#{icu4c_prefix}"
|
2012-10-26 08:35:11 +00:00
|
|
|
else
|
2014-07-19 22:37:25 +00:00
|
|
|
bootstrap_args << '--without-icu'
|
2012-02-07 19:45:57 +00:00
|
|
|
end
|
|
|
|
|
2013-10-07 09:31:04 +00:00
|
|
|
# Handle libraries that will not be built.
|
2014-07-19 22:37:25 +00:00
|
|
|
without_libraries = ["python"]
|
2013-10-07 09:31:04 +00:00
|
|
|
|
2013-05-05 20:23:04 +00:00
|
|
|
# The context library is implemented as x86_64 ASM, so it
|
|
|
|
# won't build on PPC or 32-bit builds
|
2013-12-14 18:13:11 +00:00
|
|
|
# see https://github.com/Homebrew/homebrew/issues/17646
|
2013-11-27 02:23:19 +00:00
|
|
|
if Hardware::CPU.ppc? || Hardware::CPU.is_32_bit? || build.universal?
|
2013-10-07 09:31:04 +00:00
|
|
|
without_libraries << "context"
|
2013-07-17 22:24:41 +00:00
|
|
|
# The coroutine library depends on the context library.
|
2013-10-07 09:31:04 +00:00
|
|
|
without_libraries << "coroutine"
|
2013-07-17 22:24:41 +00:00
|
|
|
end
|
2013-05-05 20:23:04 +00:00
|
|
|
|
2013-07-01 20:18:47 +00:00
|
|
|
# Boost.Log cannot be built using Apple GCC at the moment. Disabled
|
|
|
|
# on such systems.
|
2013-10-07 09:31:04 +00:00
|
|
|
without_libraries << "log" if ENV.compiler == :gcc || ENV.compiler == :llvm
|
|
|
|
without_libraries << "mpi" if build.without? 'mpi'
|
2013-07-01 20:18:47 +00:00
|
|
|
|
2014-07-19 22:37:25 +00:00
|
|
|
bootstrap_args << "--without-libraries=#{without_libraries.join(',')}"
|
2013-10-02 10:16:41 +00:00
|
|
|
|
2014-07-19 22:37:25 +00:00
|
|
|
# layout should be synchronized with boost-python
|
2011-04-02 00:39:55 +00:00
|
|
|
args = ["--prefix=#{prefix}",
|
|
|
|
"--libdir=#{lib}",
|
2012-10-26 08:35:11 +00:00
|
|
|
"-d2",
|
2011-10-15 05:02:02 +00:00
|
|
|
"-j#{ENV.make_jobs}",
|
2013-07-18 05:17:45 +00:00
|
|
|
"--layout=tagged",
|
2011-04-02 00:39:55 +00:00
|
|
|
"--user-config=user-config.jam",
|
|
|
|
"install"]
|
|
|
|
|
2014-03-06 20:40:26 +00:00
|
|
|
if build.with? "single"
|
2013-07-18 05:17:45 +00:00
|
|
|
args << "threading=multi,single"
|
2014-03-06 20:40:26 +00:00
|
|
|
else
|
|
|
|
args << "threading=multi"
|
2013-07-18 05:17:45 +00:00
|
|
|
end
|
|
|
|
|
2014-03-06 20:40:26 +00:00
|
|
|
if build.with? "static"
|
2013-07-18 05:17:45 +00:00
|
|
|
args << "link=shared,static"
|
2014-03-06 20:40:26 +00:00
|
|
|
else
|
|
|
|
args << "link=shared"
|
2013-07-18 05:17:45 +00:00
|
|
|
end
|
|
|
|
|
2012-08-09 05:26:41 +00:00
|
|
|
args << "address-model=32_64" << "architecture=x86" << "pch=off" if build.universal?
|
2011-01-16 23:42:48 +00:00
|
|
|
|
2014-03-22 06:11:05 +00:00
|
|
|
# Trunk starts using "clang++ -x c" to select C compiler which breaks C++11
|
|
|
|
# handling using ENV.cxx11. Using "cxxflags" and "linkflags" still works.
|
|
|
|
if build.cxx11?
|
|
|
|
args << "cxxflags=-std=c++11"
|
|
|
|
if ENV.compiler == :clang
|
|
|
|
args << "cxxflags=-stdlib=libc++" << "linkflags=-stdlib=libc++"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-19 22:37:25 +00:00
|
|
|
system "./bootstrap.sh", *bootstrap_args
|
2012-11-18 16:52:50 +00:00
|
|
|
system "./b2", *args
|
2009-06-04 18:21:19 +00:00
|
|
|
end
|
2013-08-30 08:14:07 +00:00
|
|
|
|
|
|
|
def caveats
|
2013-10-07 09:31:04 +00:00
|
|
|
s = ''
|
|
|
|
# ENV.compiler doesn't exist in caveats. Check library availability
|
|
|
|
# instead.
|
2014-05-30 17:38:30 +00:00
|
|
|
if Dir["#{lib}/libboost_log*"].empty?
|
2013-10-07 09:31:04 +00:00
|
|
|
s += <<-EOS.undent
|
|
|
|
|
|
|
|
Building of Boost.Log is disabled because it requires newer GCC or Clang.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2013-11-27 02:23:19 +00:00
|
|
|
if Hardware::CPU.ppc? || Hardware::CPU.is_32_bit? || build.universal?
|
2013-10-07 09:31:04 +00:00
|
|
|
s += <<-EOS.undent
|
|
|
|
|
|
|
|
Building of Boost.Context and Boost.Coroutine is disabled as they are
|
|
|
|
only supported on x86_64.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
s
|
2013-08-30 08:14:07 +00:00
|
|
|
end
|
2009-12-01 15:54:11 +00:00
|
|
|
end
|