nice new tool to show version of feisty meow
[feisty_meow.git] / scripts / buildor / vistu_find_mangled_names.sh
1 #!/bin/bash
2 # this script takes one microsoft compiler output file and tries to find the
3 # mangled C++ function names contained in it.
4 file=$1
5 dumpbin //all "$file" | grep SECREL | sed -e 's/^.*0000C *[0-9a-fA-F][0-9a-fA-F] *\([^ ]*\).*$/\1/' 
6