Editing Talk:VSH
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 8: | Line 8: | ||
ppu-g++ -x c++ -I. -S $1 -o- | grep "^_.*:$" | sed -r 's/^_(.*?):$/\1/' | ppu-g++ -x c++ -I. -S $1 -o- | grep "^_.*:$" | sed -r 's/^_(.*?):$/\1/' | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Now you need to pass a source code or a header file with an empty function bodies (to be able to compile them and get mangled names). It generates a list of mangled names, now you can use an algorithm from [[SPRX File Format]] to get their FNIDs. | Now you need to pass a source code or a header file with an empty function bodies (to be able to compile them and get mangled names). It generates a list of mangled names, now you can use an algorithm from [[SPRX File Format]] to get their FNIDs. | ||
Β | |||
--[[User:Flatz|Flatz]] ([[User talk:Flatz|talk]]) 02:33, 16 June 2014 (EDT) | --[[User:Flatz|Flatz]] ([[User talk:Flatz|talk]]) 02:33, 16 June 2014 (EDT) | ||