1
General / Re: Build fails; 'undefined reference to..'
« on: October 21, 2013, 04:02:33 am »
Can you post the command that it's using to compile?
Example:
A lot of the time, the order of the build command is very important, especially when linking. All linking flags should go after the rest of the command.
Example:
Code: [Select]
g++ main.o -o main -ilib/sfml/include -Llib/sfml/lib -lsfml-graphics -lsfml-window -lsfml-system
A lot of the time, the order of the build command is very important, especially when linking. All linking flags should go after the rest of the command.