determine target processor of dll

  • Thread starter Thread starter John A Grandy
  • Start date Start date
John A Grandy said:
How to do this ?

Are 3rd party tools available ?

Visual Studio includes a tool for this:

C:\tmp>dumpbin /headers x.exe
Microsoft (R) COFF/PE Dumper Version 9.00.21022.08
Copyright (C) Microsoft Corporation. All rights reserved.

Dump of file x.exe

PE signature found

File Type: EXECUTABLE IMAGE

FILE HEADER VALUES
14C machine (x86)
3 number of sections
49436FF9 time date stamp Sat Dec 13 00:19:05 2008
...

However, a managed exe that targets "AnyCPU" will also report (x86).
 
Back
Top