Error compilation SFML debian -


i have install sfml1.6 on debian school project.

on compilation have theses error :

g++ -c main.cpp

g++ main.o -o bomberman -lsfml-graphics

/usr/local/lib/libsfml-graphics.so: undefined reference sf::unicode::text::text()' /usr/local/lib/libsfml-graphics.so: undefined reference tosf::context::getglobal()' /usr/local/lib/libsfml-graphics.so: undefined reference sf::window::onevent(sf::event const&)' /usr/local/lib/libsfml-graphics.so: undefined reference tosf::window::create(sf::videomode, std::basic_string, std::allocator > const&, unsigned long, sf::windowsettings const&)' /usr/local/lib/libsfml-graphics.so: undefined reference sf::context::setactive(bool)' /usr/local/lib/libsfml-graphics.so: undefined reference totypeinfo sf::window' /usr/local/lib/libsfml-graphics.so: undefined reference sf::window::create(unsigned long, sf::windowsettings const&)' /usr/local/lib/libsfml-graphics.so: undefined reference tosf::window::getheight() const' /usr/local/lib/libsfml-graphics.so: undefined reference sf::window::window()' /usr/local/lib/libsfml-graphics.so: undefined reference tosf::unicode::text::text(unsigned int const*)' /usr/local/lib/libsfml-graphics.so: undefined reference sf::window::~window()' /usr/local/lib/libsfml-graphics.so: undefined reference tosf::context::iscontextactive()' /usr/local/lib/libsfml-graphics.so: undefined reference sf::window::setactive(bool) const' /usr/local/lib/libsfml-graphics.so: undefined reference tosf::unicode::text::operator std::basic_string, std::allocator > const&() const' /usr/local/lib/libsfml-graphics.so: undefined reference `sf::window::getwidth() const' collect2: ld returned 1 exit status make: * [all] error 1

i not understand why theses error comes out. libsfml-* located in /usr/lib/ , needed include in /usr/include

you have link window , system library of sfml well.

g++ main.o -o bomberman  -lsfml-graphics -lsfml-window -lsfml-system 

you should read this tutorial


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -