PDA

Click to See Complete Forum and Search --> : Link error


ChimpFace9000
May 2nd, 2001, 05:13 PM
Im trying to make my first OpenGL program, and this is the error i keep getting...


--------------------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?

parksie
May 2nd, 2001, 05:35 PM
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.

ChimpFace9000
May 2nd, 2001, 05:54 PM
Oh, ok thanks.

Active
May 2nd, 2001, 10:34 PM
If you are paranoid..you can turn off warnings from showing up :D

ChimpFace9000
May 3rd, 2001, 01:28 AM
Its not that im paranoid, i just thought since its not linking, the program wont work.