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.


Messages - dense

Pages: [1]
1
General / RE:
« on: April 26, 2011, 11:33:21 am »
i tried adding -static-libgcc...it stills says the .dll is missing.

EDIT: I installed the newest MinGW and now it's fixed. Thanks for the help :)

2
General / RE:
« on: April 26, 2011, 12:05:19 am »
I can't find it in the bin folder...

i tried adding static-libgcc doesn't work on Code::Blocks but on Visual Studio i get this error

LINK : fatal error LNK1104: cannot open file 'static-libgcc.obj'

3
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