I've followed the tutorial religiously, as well as this one:
http://www.mjbshaw.com/2013/02/building-sfml-2-with-c11-on-os-x.htmlWhen only this is in main.cpp:
int main(int, char const**)
{
// Create the main window
sf::RenderWindow window(sf::VideoMode(800, 600), "SFML window");
return EXIT_SUCCESS;
}
These errors show up:
ld: warning: directory not found for option '-L/usr/local/lib'
Undefined symbols for architecture i386:
"sf::RenderWindow::RenderWindow(sf::VideoMode, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned long, sf::WindowSettings const&)", referenced from:
_main in main.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)