I just built a static library in VS 2010, how can I determine the exported symbols?
I am using Intel Fortran Composer XE. I ju开发者_运维技巧st built a static library which I'm trying to link against using the MS Visual Studio 2010 C++ compiler. Since my linking step isn't working, I want to list the symbols in my Fortran library to make sure that the name is mangled in the expected way. What is the easiest way to get a symbol list out of the library -- short of downloading and installing cygwin to get a 64-bit version of nm. Note that I am build/compiling/running on x64 (Windows 7).
dumpbin /symbols libraryname.lib
Dumps out all symbols in the library.
Does dumpbin with symbol support enabled give you what you need?
精彩评论