我刚刚使用 VS2008 在 64 位 Windows 机器上构建了 libpng。它会libpng.lib
在 \projects\visualc71\Win32_Lib_Release 目录中生成一个文件(使用的配置是“LIB Release”)。
我曾经dumpbin
检查过这个 LIB 文件:
C:\Temp\libpng-1.4.3>dumpbin projects\visualc71\Win32_LIB_Release\libpng.lib
Microsoft (R) COFF/PE Dumper Version 9.00.30729.01
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file projects\visualc71\Win32_LIB_Release\libpng.lib
File Type: LIBRARY
Summary
8E4 .debug$S
DF2 .drectve
2BCD .rdata
21165 .text
C:\Temp\libpng-1.4.3>
但是它没有显示 LIB 文件的体系结构。如何确定给定的 LIB 文件是为 32 位还是 64 位架构构建的?