vs2013链接问题:module machine type 'x64' conflicts with target machine type 'X86'

在链接外面的库文件时,及时已经指定了lib的路径,但是还是会报错,这时可能因为编译器和链接的动态库文件位数不一致导致。

            
下面说一下我遇到的问题我解决的方法:

vs2013链接问题:module machine type 'x64' conflicts with target machine type 'X86'_第1张图片

module machine type 'x64' conflicts withtarget machine type 'X86'

说是模块机是64位和目标机的32位相冲突

这里是打开:项目->属性->Linker……然后按照图里进行相应设置


vs2013链接问题:module machine type 'x64' conflicts with target machine type 'X86'_第2张图片


如果还不行的话,那么就看下面


vs2013链接问题:module machine type 'x64' conflicts with target machine type 'X86'_第3张图片

将这个工程的平台设置为64

vs2013链接问题:module machine type 'x64' conflicts with target machine type 'X86'_第4张图片

我相信这样设置完,就能链接成功了。


你可能感兴趣的:(vs)