SDK Question

Joined
Jul 21, 2003
Messages
7,819
Location
Adelaide, South Australia
Hi guys. Been trying to update my CivicsInfoPlus Mod to BtS but, when I go to build the new .dll file, I keep getting this warning:

LINK : warning LNK4089: all references to 'KERNEL32.dll' discarded by /OPT:REF

The question is, as it doesn't prevent the CvGameCoreDll file from being created (it's a warning, not an error) will this impact on the game in any way, shape or form?
If yes, then does anyone know how I can solve this problem? It wasn't an issue prior to 3.17, if that helps.

Aussie.
 
That is completely normal and you can set your compiler to ignore it and stop giving you the warning if you want.

The message is basically telling you that your sourcecode has a reference to a debug function, but you are compiling a non-debug version, so it is tossing out a lot of extra data (would be 13M instead of 5M if it didn't toss those)
 
Back
Top Bottom