I have installed mingw-w64 to have a 64-bits compiler. I used Code Blocks as IDE and i had before a 32 bits mingw which is working very well. My OS is windows 8.1.
I have followed this tutorial : https://www.youtube.com/watch?v=1nsjGxy1w0U
And the problem I have is this :
||=== Build: Release in uvgen (compiler: GNU GCC Compiler (x64)) ===| F:\Document\c++\uvgen\main.cpp|11|fatal error: GL/glut.h: No such file or directory| ||=== Build failed: 1 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
I put ( the files opengl
, glut
and glu
from my 32bit-compiler):
glut32.dll
and opengl32.dll
in mingw64/bin
GL/glut.h
and others in mingw64/include
and the libs
in mingw64/lib
But my 64bits compiler don't find them :(
Thank you for helping me.