first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / scripts / buildor / find_mangled.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