-
Link error
Im trying to make my first OpenGL program, and this is the error i keep getting...
Code:
--------------------Configuration: GL1 - Win32 Release--------------------
Compiling...
GL1.cpp
Linking...
LINK : warning LNK4089: all references to "GLU32.dll" discarded by /OPT:REF
LINK : warning LNK4089: all references to "OPENGL32.dll" discarded by /OPT:REF
GL1.exe - 0 error(s), 2 warning(s)
Any ideas?
-
They're not errors, they're warnings. Your program will still run. What's happened is that it's found that although they're referenced to be linked in, none of the functions are are actually called. Therefore it's decided not to include them.
-
-
If you are paranoid..you can turn off warnings from showing up :D
-
Its not that im paranoid, i just thought since its not linking, the program wont work.