All,
I'm having some trouble with Avian and certain C++ 11 calls, and wondering if anyone has come across them.
All of the following are causing the program to crash.
#include <iostream>
jbyte *jbyteArray = new jbyte[size];
std::copy(a, b, c);
I've added -std=c++11 to the Makefile in the extension directory which fixes compilation issues and successfully build a final executable, but when I run the executable it terminates FYI, I'm on windows pro 7 64bit, and using Cygwin 64bit v 4.9.2. Java is 1.8.0_92.
C/C++ isn't my strong suit, so I don't know if I'm missing a compiler switch, a library, or what. Any suggestions appreciated. Thanks.