开发者

Error in building project

开发者 https://www.devze.com 2022-12-13 15:41 出处:网络
While building a c++ project for windows mobile 6.0 , i am getting an error fatal error LNK1112: module machine type \'X86\' conflicts with target machine type \'THUMB\'

While building a c++ project for windows mobile 6.0 , i am getting an error fatal error LNK1112: module machine type 'X86' conflicts with target machine type 'THUMB'

i don't no the reason why this error is coming.. i do Google a bit.. since i hv not much idea about instruction set, its tough for me to find.. it will be helpful if i get some info about how to resolve the same...

Than开发者_Go百科ks GrabIt


Sounds to me like you are targeting Windows Mobile (ARMv4i) but are pulling in a lib or DLL for an x86 target and trying to link against it. That won't work. Use the ARM version.

0

精彩评论

暂无评论...
验证码 换一张
取 消