I am using SFML with mingw32 without any kind of IDE. I directly link and include from the SFML 2.3.2 for GCC 4.8.1 32-bit folder. I link and include from the makefile for my programs, and the folder that contains the executable also contains all of the necessary DLLs from the SFML bin. My program compiles successfully, but when I try to run it, I am met with:
The procedure entry point __gxx_personality_sj0 could not be located in the dynamic link library libstdc++-6.dll.
How can I resolve this? Admittedly, I do not know a great amount about the inner workings of compilers, so responses that are less esoteric would be appreciated. If there is any other information that I should include, please let me know.
In the past, I have compiled SFML in a similar way, but on Linux, and it worked perfectly. However, I am trying to do it on Windows, and have run into this issue.