I manage to install valgrind on bash for Win10 by compiling the package from the official site but I got this problem
char string[10000];
When I compile and run it, it's okay, it works just fine but whenever I use valgrind it crashed by saying
Process terminating with default action of signal 11 (SIGSEGV): dumping core
General Protection Fault at 0x400568: main (test.cpp:7)
I guess it's somehow connected with stack and my question is how to fix this problem and if it's a stack problem how to increase the stack size value (ulimit says unlimited). Thanks for any help