]> git.ipfire.org Git - thirdparty/libtool.git/commit
libtool: avoid non-underscore symbols in the "dumpbin -symbols" wrapper
authorPeter Rosin <peda@lysator.liu.se>
Fri, 19 Oct 2012 06:54:15 +0000 (08:54 +0200)
committerPeter Rosin <peda@lysator.liu.se>
Fri, 19 Oct 2012 06:54:15 +0000 (08:54 +0200)
commit55fd801b97a669ba5336836ce7b8971b8673a517
tree7b2e4a7c6a48e1ed1cd84a844ff1a9f04532c2c4
parentcfe82e7f854ed1f746d6cfd7febf4aad42fbfec1
libtool: avoid non-underscore symbols in the "dumpbin -symbols" wrapper

If an object has a symbol lacking an expected leading underscore,
the symbol name is not printed, but the symbol type is, leading
to output such as:
    T _normal _normal
    T T _another _another
when the expected output would have been something like:
    T _normal _normal
    T no_underscore no_underscore
    T _another _another
However, symbols lacking an expected leading underscore are
not "real" symbols, they are internal symbols which we don't
care about, therefore drop them instead.
* m4/libtool.m4 (_LT_CMD_GLOBAL_SYMBOLS) [MSVC]: Output the whole
symbol line in one go.
* NEWS: Update.
NEWS
m4/libtool.m4