1
General / "gdb.exe has stopped responding" codeblocks
« on: October 07, 2010, 09:16:10 pm »
nope never got it solved. I use the static libraries for debugging now. They work fine.
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.
#include <SFML/Window.hpp>
#include <iostream>
int main(int argc, char** argv)
{
sf::Window window;
return 0;
}
I recommend using the prepackaged compiler on the SFML page if you are having problems.
#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;
}