I am running Cygwin on windows 8, attempting to compile the source code for a game I would like to mod. Unfortunately I am running into some errors while building involving
Changing the -std=c*** in your makefile to -std=gnu++0x should fix your problem.
-std=c***
-std=gnu++0x
If you don't know what c++11 is you're most likely not using it anyway.
c++11
Also if you need c++11 support you can also do: -std=gnu++11 instead of -std=gnu++0x
-std=gnu++11