projects
/
feisty_meow.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
turned off debugging noise.
[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