homebrew-core/Formula/boost-mpi.rb

116 lines
4.0 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.75.0/source/boost_1_75_0.tar.bz2"
sha256 "953db31e016db7bb207f11432bef7df100516eeb746843fa0486a222e3fd49cb"
license "BSL-1.0"
head "https://github.com/boostorg/boost.git"
bottle do
rebuild 2
sha256 arm64_big_sur: "38f6d5dddcdd925515838fd5f7bf55816443419e793fab9a145b4e6f2ce6148e"
sha256 big_sur: "304716b2419c77790b2915ae8ea1df2c6290ce19db2526f497316dcde871d016"
sha256 catalina: "c64692ab8cfde0cf5353806cfe5f2dd413e60864f07ee14524398288430f36c5"
sha256 mojave: "541bcc69465a535743300f1548c4216ba7feea989e076abf00b0ddc98b5098c7"
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"
# Fix build system issues on Apple silicon. This change has aleady
# been merged upstream, remove this patch once it lands in a release.
patch do
url "https://github.com/boostorg/build/commit/456be0b7ecca065fbccf380c2f51e0985e608ba0.patch?full_index=1"
sha256 "e7a78145452fc145ea5d6e5f61e72df7dcab3a6eebb2cade6b4cfae815687f3a"
directory "tools/build"
end
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|
on_macos do
file.write "using darwin : : #{ENV.cxx} ;\n"
end
on_linux do
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*"]
on_macos do
# 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"]
system "mpic++", "test.cpp", "-L#{lib}", "-L#{boost.lib}", "-lboost_mpi", "-lboost_serialization", "-o", "test"
system "mpirun", "-np", "2", "./test"
(testpath/"CMakeLists.txt").write "find_package(Boost COMPONENTS mpi REQUIRED)"
system "cmake", ".", "-Wno-dev"
end
end