dumpbin判断windows程序是32还是64位(包括DLL)

Posted 朝闻道

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dumpbin判断windows程序是32还是64位(包括DLL)相关的知识,希望对你有一定的参考价值。

http://blog.csdn.net/csfreebird/article/details/10105681

dumpbin /HEADERS gdal18.dll(or xxx.exe)

如果安装过VS2012的话,直接打开一个VS 2012提供的控制台窗口,比如VS2012 x64 Native Tools Command Prompt.

用下面的命令查看程序的头部信息:

[cpp] view plain copy
 
  1. gdal_1.8_rtc>dumpbin /HEADERS gdal18.dll  
  2. Microsoft (R) COFF/PE Dumper Version 11.00.60610.1  
  3. Copyright (C) Microsoft Corporation.  All rights reserved.  
  4.   
  5.   
  6. Dump of file gdal18.dll  
  7.   
  8. PE signature found  
  9.   
  10. File Type: DLL  
  11.   
  12. FILE HEADER VALUES  
  13.             8664 machine (x64)  
  14.                6 number of sections  
  15.         52130233 time date stamp Tue Aug 20 13:44:19 2013  
  16.                0 file pointer to symbol table  
  17.                0 number of symbols  
  18.               F0 size of optional header  
  19.             2022 characteristics  
  20.                    Executable  
  21.                    Application can handle large (>2GB) addresses  
  22.                    DLL  

 

看到x64了么? 所以这是64位的dll.

 查看程序/DLL的位数 32位 64 位 
http://2678482.blog.51cto.com/2668482/1616861

machine (x64)  -- 64 位
machine (x86)  -- 32 位

http://blog.csdn.net/cocoasprite/article/details/53257049

以上是关于dumpbin判断windows程序是32还是64位(包括DLL)的主要内容,如果未能解决你的问题,请参考以下文章

如何判断一个程序是 32bit 还是 64bit ?

Windows 命令判断 .dll 文件是 32 位还是 64 位?

判断进程是64bit还是32bit

怎样判断电脑是32位还是64位

在 C# 中确定可执行文件是 64 位还是 32 位 [重复]

32 bit 与 64 bit 程序如何识别?