Not sure why you could just edit your other post, but I can assure you, that SFML works fine everywhere, one just have to know with which compiler, to link what version of SFML and how to link things.
If you take SFML precompiled libs that don't match with your compiler - it won't work.
If you don't add all libraries in the correct order to the linking settings - it won't work.
If you debug and release versions - it won't work.
If you mix static and dynamic versions - it won't work.
If you define SFML_STATIC and link against dynamic libraries - it won't work.
If you don't define SFML_STATIC and link against static libraries - it won't work.
etc. etc.
Linking is a tough businesses for beginners since there are so many ways to do things wrong by accident. But once you understand the concept, things get clearer quickly. So I can strongly advise to read some theoretical information on linking.