I'm trying to get the tutorial for openGL with SFML working (
http://www.sfml-dev.org/tutorials/1.6/window-opengl.php), but I'm getting errors like
"undefined reference to `gluPerspective@32'" - I think these are linker errors?
Anyway, I've tried
-lopengl32
-lsfml-graphics-s-d
-lsfml-window-s-d
-lsfml-system-s-d
which gives the 'undefined..' errors, and
-lglu32
-lopengl32
-lsfml-graphics-s-d
-lsfml-window-s-d
-lsfml-system-s-d
which, when I try to compile, gives me an error that ld.exe has stopped working.
I am a total beginner with openGL, so I appreciate any help you can give me.
(I have Windows 7, using GNU GCC with Code::Blocks.)