I want to create a code obfuscator for C++ programs. I rely on the
following approach to do this. Read the declaration of variables/
functions and then replace them with some obscure names. To do this I
need to have a look at the code generated by the lexical analysis
phase of gcc. Can someone suggest a tool or means to see the lexical
analysis output or suggest some alternative way to do code
obfuscation.
TIA
Aditya