既存の 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で見つけることができる次の回答は、実際には使用できません。
- libunwind は、クロスコンパイル中にコンパイル エラーを引き起こします: エラー: ucontext.h: そのようなファイルまたはディレクトリはありません
- http://www.codeproject.com/Articles/11132/Walking-the-callstackが MinGW でコンパイルされない
- http://www.mr-edd.co.uk/code/dbgもコンパイルされません
- http://www.mr-edd.co.uk/code/stack_traceもコンパイルされず、エラーがあります
実用的な解決策はありますか?よろしくお願いします。