我可以从二进制文件中读取constexpr值或mpl int吗?

时间:2015-05-26 23:27:35

标签: c++ debug-symbols

假设我有一些程序:

#include <boost/mpl/int.hpp>

using MyValue = boost::mpl::int<4>;
constexpr const int myValue = 4;
int main()
{
  // stuff that uses MyValue and myValue here
  return 0;
}

在unix系统上以编译器无关的方式从生成的调试二进制文件中检索MyValuemyValue的最佳方法是什么?这个问题与生成二进制文件所需要的一样多,因为它是关于如何恢复数据的。

0 个答案:

没有答案