3822137516
Closes #40231. Signed-off-by: Izaak Beekman <zbeekman@gmail.com>
34 lines
971 B
Ruby
34 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/20190522.tar.gz"
|
|
sha256 "37a83f26299c66a9988e85f06149487cfb2d69fb41568c64b7ad7c7903bcaac1"
|
|
|
|
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
|