Basically, my program crashes on start up. It's something simple that looks like this:
#include <iostream>
#include <SFML/System.hpp>
using namespace std;
int main()
{
cout << "Test";
sf::Clock Clock;
}
It crashes on the Clock line. I'm using the latest nightly build and GCC 4.6.2. My IDE is eclipse with the CDT plugin. I've googled around and tried multiple things, but to no avail. Can you guys help?