如何判斷windows程式是32還是64位(dumpbin)
阿新 • • 發佈:2019-01-06
dumpbin /HEADERS gdal18.dll(or xxx.exe)
如果安裝過VS2012的話,直接開啟一個VS 2012提供的控制檯視窗,比如VS2012 x64 Native Tools Command Prompt.
用下面的命令檢視程式的頭部資訊:
- gdal_1.8_rtc>dumpbin /HEADERS gdal18.dll
- Microsoft (R) COFF/PE Dumper Version 11.00.60610.1
- Copyright (C) Microsoft Corporation. All rights reserved.
- Dump of file gdal18.dll
- PE signature found
- File Type: DLL
- FILE HEADER VALUES
- 8664 machine (x64)
- 6 number of sections
- 52130233 time date stamp Tue Aug 20 13:44:19 2013
- 0 file pointer to symbol table
- 0 number of symbols
- F0 size of optional header
- 2022 characteristics
- Executable
- Application can handle large (>2GB) addresses
- DLL
看到x64了麼? 所以這是64位的dll.
machine (x64) -- 64 位
machine (x86) -- 32 位