System: Ubuntu 11.10 64 bit
cpu: AMD Phenom(tm) II X4 965 Processor × 4
I installed the 2.0 snapshot LaurentGomila-SFML-2de690f via cmake / Makefile. Had it make everything and did a "sudo make install"
This all looked good and /usr/local/lib/ now contains:
libsfml-audio.so libsfml-network.so.2.0 libsndfile.la
libsfml-audio.so.2 libsfml-system.so libsndfile.so
libsfml-audio.so.2.0 libsfml-system.so.2 libsndfile.so.1
libsfml-graphics.so libsfml-system.so.2.0 libsndfile.so.1.0.25
libsfml-graphics.so.2 libsfml-window.so pkgconfig
libsfml-graphics.so.2.0 libsfml-window.so.2 python2.6
libsfml-network.so libsfml-window.so.2.0 python2.7
libsfml-network.so.2 libsndfile.a site_ruby
also /usr/local/share/SFML/examples/ has:
ftp opengl pong shader sockets sound sound-capture voip window X11
However, if I try to compile an example myself like this:
gcc Window.cpp
/tmp/ccygC6cP.o: In function `main':
Window.cpp:(.text+0x3e): undefined reference to `std::allocator<char>::allocator()'
Window.cpp:(.text+0x53): undefined reference to `std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, std::allocator<char> const&)'
... (more "undefined" errors)
/tmp/ccygC6cP.o:(.eh_frame+0x4b): undefined reference to `__gxx_personality_v0'
collect2: ld returned 1 exit status
So somehow "make" did know how to compile the examples, but I do not. :oops: