So I took a step back and tried compiling a few tiny programs with g++ using only the command line, proving it really does support some C++11 stuff, and I found something odd. sf::Shader::isAvailable() always returns false.
I get this with the SFML 2.1 dlls and the dlls I built from my local SFML git repo. The simplest command line I've reproduced this with is:
g++ test.cpp -I"C:\Dev\SFML-2.1\include" -L"C:\Dev\SFML-2.1\lib" -lsfml-graphics -lsfml-window -lsfml-system
where test.cpp is:
#include <iostream>
#include <SFML/Graphics.hpp>
int main()
{
std::cout << "Shaders? " << sf::Shader::isAvailable() << std::endl;
}
The output is always "Shaders? 0".
I tried commenting out the isAvailable() call in the "shader" example program, and the result was a crash plus some stderr output saying "Failed to create a shader: your system doesn't support shaders (you should test Shader::isAvailable() before trying to use the Shader class)" several times.
Is it really possible for a laptop purchased in the last 1-2 years to not support shaders? The last computer I owned never had any problems using sf::Shader.