homebrew-core/Formula/parallelstl.rb

35 lines
971 B
Ruby

class Parallelstl < Formula
desc "C++ standard library algorithms with support for execution policies"
homepage "https://github.com/intel/parallelstl"
url "https://github.com/intel/parallelstl/archive/20180619.tar.gz"
sha256 "84429d4d08276a635d31eeff7b68c8a40e681832cc0bb4fb3662a570c6e1dbd4"
bottle :unneeded
depends_on "tbb"
def install
include.install Dir["include/*"]
end
test do
(testpath/"test.cpp").write <<~EOS
#include <pstl/execution>
#include <pstl/algorithm>
#include <array>
#include <assert.h>
int main() {
std::array<int, 10> arr {{5,2,3,1,4,9,7,0,8,6}};
std::sort(std::execution::par_unseq, arr.begin(), arr.end());
for(int i=0; i<10; i++)
assert(i==arr.at(i));
return 0;
}
EOS
system ENV.cxx, "-std=c++11", "-L#{Formula["tbb"].opt_lib}", "-ltbb",
"-I#{include}", "test.cpp", "-o", "test"
system "./test"
end
end