Another cilk plus question:
Is op_ostream also considered to be outside of cilk plus?
https://www.cilkplus.org/docs/doxygen/include-dir/group___reducers_ostream.html
I am trying to compile the basic "Cilk Plus Tutorial Sources" code as
supplied at http://cilkplus.org/download
reducer-ostream-demo.cpp, reducer-string-demo.cpp and
reducer-wstring-demo.cpp I am unable to get to compile.
Thank you kindly
----
Makefile:
FLAGS=-std=c++14 -Wall -O3 -march=native
CILK_FLAGS=-fcilkplus
SOURCES=$(shell ls *.cpp)
BINS=$(SOURCES:.cpp=)
all:$(BINS)
%:%.cpp
g++ $(FLAGS) $(CILK_FLAGS) $< -o $@