I\'m getting some undefined references when building my project. Here\'s the build log:
**** Build of configuration Debug for project test ****
**** Interna
I solved "glew undefined reference" problems.
My development environment is eclipse CDT with MinGW on Windows 7 (x64).
The solution is the following 3 steps:
#define GLEW_STATIC
-lglew32s -lopengl32 -lfreeglut
gcc -DGLEW_STATIC
If needed, you have to add -lglu32 -glut32
etc.