I hope you can help me. I have written a small project using CxxTest on my main dev machine. Everything works great on this machine, no problems. However, I tried setting up
I also recently updated MinGW and ran into very very similar problems. After some research I found this question on SO and tried replacing -std=c++11
with -std=gnu++11
. This resolved the issue for me. Hope that helps!
If you are using CMake, ensure you have
set( CMAKE_CXX_EXTENSIONS ON )
in your CMakeLists.txt file