systemtap按行号探测"分析失败"

时间:2015-04-10 13:26:46

标签: systemtap probe

使用带有文件名和行号的systemtap会产生错误,因为使用(损坏的)函数名称就可以了。我在这里做错了什么?

// fails with 
// semantic error: no match
// Pass 2: analysis failed.  [man error::pass2]
probe process("a.out").statement("*@hello.cpp:5") {
  printf("in test\n")
}

// succeeds
probe process("a.out").function("_Z4testv").return {
  printf("in test\n")
}

//content of source of a.out 
#include <iostream>

void test() {
  int a = 1;
  std::cout << "Hello World!";
}

int main()
{
  test();
}

//stap command
sudo stap  a.stp -c "./a.out"

linux版本3.10.0-229.el7.x86_64

订钉版2.8/0.160

目录内容:a.out hello.cpp a.stp

1 个答案:

答案 0 :(得分:1)

如果您的程序缺少debuginfo但是有一个符号表 - 即,如果它是在没有CFLAGS=-g的情况下编译的话,这将是预期的行为。