GDB中所有字符串常量的列表

时间:2017-04-21 14:30:39

标签: c++ gcc

我希望分析开发人员将源代码中的信息作为字符串进行分析。

在编译过程中,有没有办法让GCC输出C ++编程中使用的所有字符串常量的列表。例如,如果我写:

std::string result =  enterLog("The secret word is: elephant");
result =  enterLog("Checkpoint reached", "Now"); 

我想输出

The secret word is: elephant
Checkpoint reached
Now

我想查看是否有人将密码放在代码中,而无需手动检查。

0 个答案:

没有答案