zlib 在 Visual Studio 2005 下编译失败的解决办法

来源:本站
导读:目前正在解读《zlib 在 Visual Studio 2005 下编译失败的解决办法》的相关信息,《zlib 在 Visual Studio 2005 下编译失败的解决办法》是由用户自行发布的知识型内容!下面请观看由(电工技术网 - www.9ddd.net)用户发布《zlib 在 Visual Studio 2005 下编译失败的解决办法》的详细说明。
简介:最近需要读写 png 文件,按照以前的办法试验,却发现无法编译zlib 1.2.3。

出错信息为:

inffas32.asm(594) : error A2070: invalid instruction operands

inffas32.asm(596) : error A2070: invalid instruction operands

inffas32.asm(610) : error A2070: invalid instruction operands

inffas32.asm(667) : error A2070: invalid instruction operands

上网一查,发现别人也遇到相同的问题:http://svn.haxx.se/dev/archive-2005-11/0942.shtml。原因在于

It (Microsoft Macro Assembler 8.0, included with Visual C++ 2005 Express )refuses to assemble a MOVD instruction with a memory operand with an implied size, and requires that "dword ptr" prefix the memory operand.

微软说这是by design,不是bug:

http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx?feedbackid=6306f7dc-2cc2-4591-bd60-5d802178fdfa

解决办法是把inffas32.asm中的4处出错的类似

movd mm4, [esp+0]

的汇编代码,添加dword ptr修饰符,改为

movd mm4,dword ptr [esp+0]

这样就能顺利编译、通过测试了。

提醒:《zlib 在 Visual Studio 2005 下编译失败的解决办法》最后刷新时间 2024-03-14 01:01:20,本站为公益型个人网站,仅供个人学习和记录信息,不进行任何商业性质的盈利。如果内容、图片资源失效或内容涉及侵权,请反馈至,我们会及时处理。本站只保证内容的可读性,无法保证真实性,《zlib 在 Visual Studio 2005 下编译失败的解决办法》该内容的真实性请自行鉴别。