I am using SFML 2.0
I am also using Code::Blocks 12.11 MingGW
I was attempting to test the sample application from the tutorial pages
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
sf::CircleShape shape(100.f);
shape.setFillColor(sf::Color::Green);
while (window.isOpen())
{
sf::Event event;
while (window.pollEvent(event))
{
if (event.type == sf::Event::Closed)
window.close();
}
window.clear();
window.draw(shape);
window.display();
}
return 0;
}
error "The Procedure Entry Point_gxx_personality_v0 could not be located in the dynamic link library" then it said where my sfml-system-d-2.dll file was.
I came across while I attempted to build (tested both debug and release)
I added all of the required files to the output file
I rebuilt it
checked the compilers and I checked the linking