C++ STL implementation for processing extra large datasets
C++ implementation of STL for extra large data sets
libstxxl$ g++ -I$(brew --prefix libstxxl)/include myprogram.cpp -o myprogram -L$(brew --prefix libstxxl)/lib -lstxxl$ echo '#include <stxxl/vector>' > test.cpp && g++ -I$(brew --prefix libstxxl)/include test.cpp$ cmake -DLIBSTXXL_INCLUDE_DIR=$(brew --prefix libstxxl)/include -DLIBSTXXL_LIBRARY=$(brew --prefix libstxxl)/lib .