开发者

I just built a static library in VS 2010, how can I determine the exported symbols?

开发者 https://www.devze.com 2023-02-09 18:39 出处:网络
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

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?

0

精彩评论

暂无评论...
验证码 换一张
取 消