Unresolved external symbol error occurring only in 64-bit mode and not in 32-bit build

后端 未结 4 990
慢半拍i
慢半拍i 2021-01-12 13:04

I have a VC++ code (built using VS2008), which makes use of some static libraries (*.lib files linked statically during compile time).

For ease of understanding let\

4条回答
  •  感情败类
    2021-01-12 14:02

    Old Thread, I know, but found that I had to add "Explicit" exports to the DEF file to get it to work. Must be that the 32-bit was implicitly adding, but the 64 was not. Hope this helps someone :)

提交回复
热议问题