Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

freeglut.dll missing

I am reading the OpenGl superbible, and on the very first triangle program it will not run. the program compiles just fine but when i run it, it gave me the error message freeglut.dll is missing from your computer. I downloaded that and put it in the correct directory, and it said that MSVCR71.dll was missing, so i downloaded that and put it in the correct directory and it began to say "The procedure entry point __glutCreateWindowWithExit could not be located in the dynamic link library freeglut.dll." does anyone know what i am doing wrong? i followed all the directions that the book told me.

like image 858
harryprotist Avatar asked Dec 17 '22 05:12

harryprotist


1 Answers

You can't just grab random DLLs off the interwebtubes and dump them on your PC. There are versioning issues to consider that you're completely bypassing. It should have been a hint when the MSVC runtime dependency didn't link up.

Install the freeGLUT package properly, in its entirety.

like image 74
Lightness Races in Orbit Avatar answered Dec 24 '22 19:12

Lightness Races in Orbit