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

后端 未结 4 1003
慢半拍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:03

    From the looks of it, you're only changing half of your projects to x64 and leave the rest to Win32. Since you don't show your project's dependencies, its hard to guess if that's a problem or not ... in any case, for compilation to succeed you'll have to switch all of the dependent projects (libs) to x64!

提交回复
热议问题