Pelles C forum

Pelles C => Bug reports => Topic started by: Vortex on July 14, 2012, 11:07:55 AM

Title: PODUMP not displaying exported functions
Post by: Vortex on July 14, 2012, 11:07:55 AM
I created the .def file below :


LIBRARY test
EXPORTS

"func1"
"_func2"
"_anotherfunc@4"


Running polib.exe V7.00.0 :

polib /DEF:test.def /OUT:test.lib /MACHINE:x86

Podump does not list the exported functions :

podump /EXPORTS test.lib

Dump of test.lib

File type: LIB

SUMMARY
      14 .idata$2
      14 .idata$3
       4 .idata$4
       4 .idata$5
       A .idata$6


Trying the same with Microsoft's dumpbin tool :

\masm32\bin\dumpbin.exe /EXPORTS test.lib
.
.
Dump of file test.lib

File Type: LIBRARY

     Exports

       ordinal    name

                  _anotherfunc@4
                  __func2
                  _func1

  Summary

          14 .idata$2
          14 .idata$3
           4 .idata$4
           4 .idata$5
           A .idata$6

Title: Re: PODUMP not displaying exported functions
Post by: Pelle on September 01, 2012, 08:14:49 PM
Not a bug since it's never been implemented in PODUMP, nor documented as being that. I will add this to the 'wish-list' ...