Glew: Unresolved dependencies

Started by
-1 comments, last by J.d. Ballard 12 years, 2 months ago
Alright, I've been searching the internet for hours for this.

I'm trying to get Glew to link with my program, but I'm getting unresolved depenendies errors.

I've seriously tried everything - all 4 forms of the lib/dll, adding __declspec(dllexport) ,etc.

Here is the error that is generated when calling glewInit():




[color=#000000][font=Arial,]OGLInit.obj : error LNK2019: unresolved external symbol _glewInit@0 referenced in function "bool __stdcall vexal::OGLStartup(void)" (?OGLStartup@vexal@@YG_NXZ)[/font]
[/quote]


And then the C++ command line for the project:

/Ox /I "C:\Users\**\Documents\Vexal2\glm" /I "C:\Users\**\Documents\Vexal2\glfw\include" /I "C:\Users\**\Documents\Vexal2\glew\include" /Gm /EHsc /MTd /Fo"Debug\\" /Fd"Debug\vc90.pdb" /W3 /nologo /c /Zi /Gz /TP /errorReport:prompt /D "GLEW_STATIC"[/quote]

And then the linker command line

/OUT:"C:\Users\**\Documents\Vexal2\vexal\vc9_x86\bin\Debug\VexalClient.exe" /NOLOGO /LIBPATH:"C:\Users\**\Documents\Vexal2\vexal\vc9_x86\lib\Debug" /MANIFEST /MANIFESTFILE:"Debug\VexalClient.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:\Users\**\Documents\Vexal2\vexal\vc9_x86\bin\Debug\VexalClient.pdb" /DYNAMICBASE /NXCOMPAT /MACHINE:X86 /ERRORREPORT:PROMPT ws2_32.lib glew32.lib GLFW.lib opengl32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib "..\lib\minsizerel\glew.lib" /VERBOSE[/quote]

I've used dumpbin to check that glewInit is being exported, and it is.

SO Post: http://stackoverflow...ternal-glewinit

I'm pulling my hair out over this one! HALP!

This topic is closed to new replies.

Advertisement