4

我需要修改现有的 C 应用程序并在某个位置打印堆栈跟踪。我怎样才能做到这一点?

我无法编译此源:

#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#ifndef __USE_GNU
#define __USE_GNU
#endif

#include <execinfo.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ucontext.h>
#include <unistd.h>


int main(int argc, char ** argv)
{
 void *             array[50];
 void *             caller_address;
 char **            messages;

 int size = backtrace(array, 50);

 /* overwrite sigaction with caller's address */
 array[1] = caller_address;

 messages = backtrace_symbols(array, size);

 /* skip first stack frame (points here) */
 for (int i = 1; i < size && messages != NULL; ++i)
 {
  fprintf(stderr, "[bt]: (%d) %s\n", i, messages[i]);
 }

 free(messages);


}

因为它缺少一些符号:

$ i586-mingw32msvc-gcc -rdynamic ./trace.cpp -I/usr/include/
i586-mingw32msvc-gcc: unrecognized option '-rdynamic'
./trace.cpp:39:2: warning: no newline at end of file
/tmp/cc6hCJtU.o:trace.cpp:(.text+0x26): undefined reference to `_backtrace'
/tmp/cc6hCJtU.o:trace.cpp:(.text+0x47): undefined reference to `_backtrace_symbols'
/tmp/cc6hCJtU.o:trace.cpp:(.text+0x67): undefined reference to `_stderr'

我没有设法归档正确的 .a 文件。

以下答案,可以在stackoverflow上找到,实际上是不可用的:

有没有可行的解决方案?提前非常感谢。

4

1 回答 1

0

您的 MinGW 工具链不支持 -rdynamic 标志,并且无法使用backtrace()或编译您的应用程序backtrace_symbols()

不确定您使用的是什么 MinGW,但我建议您从这里获得一个新的:http: //mingw-w64.sourceforge.net/

于 2012-12-11T00:29:16.257 回答