Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - dense

Pages: [1]
1
General / libgcc_s_dw2-1.dll missing ?
« on: April 25, 2011, 11:09:28 pm »
I get this error when i compile the code on the first tutorial.

This application failed to start because libgcc_s_dw2-1.dll was not found. Re-installing the application may fix this problem.

Code: [Select]
#include <SFML/System.hpp>
#include <iostream>

int main()
{
    sf::Clock Clock;
    while (Clock.GetElapsedTime() < 5.f)
    {
        std::cout << Clock.GetElapsedTime() << std::endl;
        sf::Sleep(0.5f);
    }

    return 0;
}


I'm using Code::Blocks on WinXP. I also get this error on Visual Studio too.

tnx

Pages: [1]
anything