homebrew-core/Formula/boost-mpi.rb

123 lines
4.2 KiB
Ruby

class BoostMpi < Formula
desc "C++ library for C++/MPI interoperability"
homepage "https://www.boost.org/"
url "https://boostorg.jfrog.io/artifactory/main/release/1.79.0/source/boost_1_79_0.tar.bz2"
sha256 "475d589d51a7f8b3ba2ba4eda022b170e562ca3b760ee922c146b6c65856ef39"
license "BSL-1.0"
head "https://github.com/boostorg/boost.git", branch: "master"
livecheck do
formula "boost"
end
bottle do
sha256 arm64_monterey: "ed3d8d5cea4a54672520a1dc9beacc074119a73475c969ef70258c216bb6ceb3"
sha256 arm64_big_sur: "2d427265f242cccd7ecc9c9b360c51f176759b378e0a26bd51b6e483062096cc"
sha256 monterey: "786e0870dfb10b3dfad8a9c2b943861c926c94571382f88409c3a62397bf0f1f"
sha256 big_sur: "7d0d29c8d9029fde12bf7a990738fb098923b20a56fff772382009c630fa16e3"
sha256 catalina: "504d653c471eb7f6ca848aa3d7659f9c52789fca3cdd21955858fb429e24005e"
sha256 cellar: :any_skip_relocation, x86_64_linux: "ec093b68364ee498acd5f80d7e23b6b516a36d823f188fe554a3aeb36c704c0c"
end
# Test with cmake to avoid issues like:
# https://github.com/Homebrew/homebrew-core/issues/67285
depends_on "cmake" => :test
depends_on "boost"
depends_on "open-mpi"
def install
# "layout" should be synchronized with boost
args = %W[
-d2
-j#{ENV.make_jobs}
--layout=tagged-1.66
--user-config=user-config.jam
install
threading=multi,single
link=shared,static
]
# Trunk starts using "clang++ -x c" to select C compiler which breaks C++11
# handling using ENV.cxx11. Using "cxxflags" and "linkflags" still works.
args << "cxxflags=-std=c++11"
args << "cxxflags=-stdlib=libc++" << "linkflags=-stdlib=libc++" if ENV.compiler == :clang
open("user-config.jam", "a") do |file|
if OS.mac?
file.write "using darwin : : #{ENV.cxx} ;\n"
else
file.write "using gcc : : #{ENV.cxx} ;\n"
end
file.write "using mpi ;\n"
end
system "./bootstrap.sh", "--prefix=#{prefix}", "--libdir=#{lib}", "--with-libraries=mpi"
system "./b2",
"--prefix=install-mpi",
"--libdir=install-mpi/lib",
*args
lib.install Dir["install-mpi/lib/*mpi*"]
(lib/"cmake").install Dir["install-mpi/lib/cmake/*mpi*"]
if OS.mac?
# libboost_mpi links to libboost_serialization, which comes from the main boost formula
boost = Formula["boost"]
MachO::Tools.change_install_name("#{lib}/libboost_mpi-mt.dylib",
"libboost_serialization-mt.dylib",
"#{boost.lib}/libboost_serialization-mt.dylib")
MachO::Tools.change_install_name("#{lib}/libboost_mpi.dylib",
"libboost_serialization.dylib",
"#{boost.lib}/libboost_serialization.dylib")
end
end
test do
(testpath/"test.cpp").write <<~EOS
#include <boost/mpi.hpp>
#include <iostream>
#include <boost/serialization/string.hpp>
namespace mpi = boost::mpi;
int main(int argc, char* argv[])
{
mpi::environment env(argc, argv);
mpi::communicator world;
if (world.rank() == 0) {
world.send(1, 0, std::string("Hello"));
std::string msg;
world.recv(1, 1, msg);
std::cout << msg << "!" << std::endl;
} else {
std::string msg;
world.recv(0, 0, msg);
std::cout << msg << ", ";
std::cout.flush();
world.send(0, 1, std::string("world"));
}
return 0;
}
EOS
boost = Formula["boost"]
args = ["-L#{lib}",
"-L#{boost.lib}",
"-lboost_mpi-mt",
"-lboost_serialization"]
if OS.linux?
args << "-Wl,-rpath,#{lib}"
args << "-Wl,-rpath,#{boost.lib}"
end
system "mpic++", "test.cpp", *args, "-o", "test"
system "mpirun", "-np", "2", "./test"
(testpath/"CMakeLists.txt").write "find_package(Boost COMPONENTS mpi REQUIRED)"
system "cmake", ".", "-Wno-dev"
end
end