Hi all,
I've been stuck with this problem for some time now. Decided to post it up on this forum because I'm getting pretty desperate. Given the following code,
Code:
CFLAGS = /I. /Ox /DWIN32 /DLTN_SRC /W3 /EHsc
cl $(CFLAGS) /c POC.cpp
link POC.obj
will not work because there are unresolved symbols. However the following code will work if the lib is explicitly referenced.
Code:
CFLAGS = /I. /Ox /DWIN32 /DLTN_SRC /W3 /EHsc
cl $(CFLAGS) /c POC.cpp
link /DEFAULTLIB:user32.lib POC.obj
The lib is there, and link.exe does have permission. I've used libdump and I can see the symbols in there that link is looking for.
I've tried to post this on other forums to no avail, please have a look at this link.
http://www.devmaster.net/forums/inde...t=0#entry15246
Any help is greatly appreciated.
Cheers,
-Kilka