调试这个问题的一种方法是对这个可执行程序执行objdump命令,并将其结果保存到一个文件中;然后查找出错的指令(在本例中,出错的操作码是98080000)。
One way of debugging this failure is to do an object dump of the executable and save it in a file, then search for the failed instruction (in this case, the failed opcode is 98080000).
为了命令行编译器能用- F选项查找运行期间错误,你必须传递与第一次编译时相同的指令列表。
In order for the command-line compiler to find the runtime error with -f, you must compile the program with all the same command-line parameters you used the first time you compiled it.
为了命令行编译器能用- F选项查找运行期间错误,你必须传递与第一次编译时相同的指令列表。
In order for the command-line compiler to find the runtime error with -f, you must compile the program with all the same command-line parameters you used the first time you compiled it.
应用推荐