I am currently working with the quartus prime (16.1) and NIOS II eclipse tool chain. I tried to compile a simple C++ Hello World application, but I get an error like this:
"onchip_memory2_nios2' overflowed by 609088 bytes"
My question now is: Is this behavior normal for the NIOS II target? Does the string (also all STL container) implementation for this target really needs this much memory (I have about 128KB memory)? Has anybody experience with developing software for the NIOS II target in C++ and knows that this is the case or not?
I am happy for any help. Thanks!
application looks like this:
#include <string>
int main()
{
std::string s = "Hello World!";
}