Bon voilà la sortie renvoyée par g++ dans codeblocks sous Linux :
-------------- Clean: Debug in SFMLTris (compiler: GNU GCC Compiler)---------------
Cleaned "SFMLTris - Debug"
-------------- Build: Debug in SFMLTris (compiler: GNU GCC Compiler)---------------
g++ -std=c++11 -Wall -std=gnu++11 -DSFML_STATIC -pg -g -Wmain -Wextra -Wall -ansi -c /home/christophedlr/prog/SFML/SFMLTris/src/main.cpp -o /home/christophedlr/prog/SFML/SFMLTris/.objs/src/main.o
In file included from /home/christophedlr/prog/SFML/SFMLTris/src/main.cpp:2:0:
/home/christophedlr/prog/SFML/SFMLTris/src/config.h:6:14: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
int major = 1;
^
/home/christophedlr/prog/SFML/SFMLTris/src/config.h:7:14: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
int minor = 0;
^
/home/christophedlr/prog/SFML/SFMLTris/src/config.h:8:22: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]
std::string state = "Alpha";
^
g++ -o sfmltris /home/christophedlr/prog/SFML/SFMLTris/.objs/src/main.o -lsfml-graphics -lsfml-window -lsfml-system -pg
/usr/bin/ld: escamotage incompatible /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../lib/libsfml-graphics.so lors de la recherche de -lsfml-graphics
/usr/bin/ld: escamotage incompatible /usr/lib/../lib/libsfml-graphics.so lors de la recherche de -lsfml-graphics
/usr/bin/ld: escamotage incompatible /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../libsfml-graphics.so lors de la recherche de -lsfml-graphics
/usr/bin/ld: escamotage incompatible //usr/lib/libsfml-graphics.so lors de la recherche de -lsfml-graphics
/usr/bin/ld: ne peut trouver -lsfml-graphics
/usr/bin/ld: escamotage incompatible /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../lib/libsfml-window.so lors de la recherche de -lsfml-window
/usr/bin/ld: escamotage incompatible /usr/lib/../lib/libsfml-window.so lors de la recherche de -lsfml-window
/usr/bin/ld: escamotage incompatible /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../libsfml-window.so lors de la recherche de -lsfml-window
/usr/bin/ld: escamotage incompatible //usr/lib/libsfml-window.so lors de la recherche de -lsfml-window
/usr/bin/ld: ne peut trouver -lsfml-window
/usr/bin/ld: escamotage incompatible /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../lib/libsfml-system.so lors de la recherche de -lsfml-system
/usr/bin/ld: escamotage incompatible /usr/lib/../lib/libsfml-system.so lors de la recherche de -lsfml-system
/usr/bin/ld: escamotage incompatible /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../libsfml-system.so lors de la recherche de -lsfml-system
/usr/bin/ld: escamotage incompatible //usr/lib/libsfml-system.so lors de la recherche de -lsfml-system
/usr/bin/ld: ne peut trouver -lsfml-system
collect2: error: ld returned 1 exit status
Process terminated with status 1 (0 minute(s), 0 second(s))
0 error(s), 3 warning(s) (0 minute(s), 0 second(s))
Pour ce qui est de la lib xcb-util-image, en fait sur mon Ubuntu (14.04), apparemment le nom est
libxcb-image0 ainsi que la version dev bien entendu.
Par contre avec libxcb-image0 et les autres dépendances installées, j'ai pu recompiler la SFML et maintenant ça marche avec la version recompilée, j'ai plus l'erreur d'escamotage.
Mais je comprend pas cette erreur avec la version donnée sur le site.