hogetrace - 関数コールトレーサ
こちらで紹介されているトレーサーを使用したいのですが、makeでエラーが発生してしまいます。
CentOS 7 へ 関数コールトレーサ tracef (hogetrace) をインストール
こちらの記事でいくつかエラーは解消したのですが、以前以下のようなエラーが発生します。
Ubuntu-64bitの環境で実行しています。
In file included from xelf.cpp:13:0: xelf.cpp: In function ‘std::__cxx11::list<long unsigned int> {anonymous}::search_mnemonic(disassemble_info&, uintptr_t, const char*, const char*)’: xelf.h:24:29: error: ‘print_insn_i386_att’ was not declared in this scope #define HT_DISASM_FN print_insn_i386_att /* in libopcodes.a */ ^ xelf.cpp:72:19: note: in expansion of macro ‘HT_DISASM_FN’ long size = HT_DISASM_FN(disinfo.buffer_vma + bytes, &disinfo); ^~~~~~~~~~~~ xelf.h:24:29: note: suggested alternative: ‘print_insn_rl78_g14’ #define HT_DISASM_FN print_insn_i386_att /* in libopcodes.a */ ^ xelf.cpp:72:19: note: in expansion of macro ‘HT_DISASM_FN’ long size = HT_DISASM_FN(disinfo.buffer_vma + bytes, &disinfo); ^~~~~~~~~~~~ Makefile:229: recipe for target 'xelf.o' failed make: *** [xelf.o] Error 1
どうやらprint_insn_i386_attという関数がヘッダーファイル<dis-asm.h>から別のヘッダーファイルに移動されたことが原因のようです。
Move print_insn_XXX to an opcodes internal header
恐らく移動先のヘッダーファイルを読み込めば良いのでしょうが、移動先と思われるopcodes/disassemble.hをインクルードしてもそんなファイルは存在しないとエラーが発生してしまいます。
In file included from ftrace/prototype.cpp:24:0: ./xelf.h:16:10: fatal error: opcodes/disassemble.h: No such file or directory #include <opcodes/disassemble.h> ^~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. Makefile:243: recipe for target 'prototype.o' failed make: *** [prototype.o] Error 1
どうすれば上記のエラーを解決できるでしょうか。
あなたの回答
tips
プレビュー