Properties-->Linker-->Command Line -->Additional options中的内容改为: /subsystem:$(CESubsystem) /MACHINE:THUMB
EVC fatal error LNK1112: module machine type 'THUMB' conflicts with target machine type 'ARM'
原创
©著作权归作者所有:来自51CTO博客作者碼雲的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Fixing the "A fatal error occurred while trying to sysprep the machine" error
This occurs when a Windows 7system has been sysprepped three times -- KB929828. To overcome this, you will need to do the following: 1) Inside the SysprepUnattend.xml file located at c:\windows\
Windows occurred following overcome -
数组中删除内容但保留索引
在开发过程中经常需要删除数组中某个值; 比如说有个数组;$names = [ '张三', '李四', '王麻子' ] 我们希望删除 李四 这个值; 常规的思路是先用 array_search 函数获取 李四 在 $names 中的键名; 然后使用 unset 删除;
数组中删除内容但保留索引 array_diff() 数组 搜索 开发过程