我有一个使用arm-linux-gnueabi
工具链编译的非常简单的arm可执行文件。我可以用qemu-arm
来执行它,没有任何问题:
$ qemu-arm -L /usr/arm-linux-gnueabi/ ./a.out
Hello world !
运行没有任何参数的链接器似乎也可以:
qemu-arm /usr/arm-linux-gnueabi/lib/ld-linux.so.3
Usage: ld.so [OPTION]... EXECUTABLE-FILE [ARGS-FOR-PROGRAM...]
You have invoked `ld.so', the helper program for shared library executables.
...
但是,如果我希望链接程序运行我的可执行文件,则会发生以下情况:
$ qemu-arm -L /usr/arm-linux-gnueabi/ /usr/arm-linux-gnueabi/lib/ld-linux.so.3 a.out
a.out: error while loading shared libraries: a.out: cannot open shared object file
这是strace的输出:https://pastebin.com/uJ7AhBdh
知道为什么会这样吗?
答案 0 :(得分:0)
我无法在Ubuntu 20.04上重现该问题:
sudo apt install gcc-arm-linux-gnueabihf qemu-user
printf '
#include <stdio.h>
#include <stdlib.h>
int main() {
puts("hello world");
return EXIT_SUCCESS;
}
' > hello_world.c
qemu-arm -L /usr/arm-linux-gnueabihf ./hello_world
和aarch64:
sudo apt install gcc-aarch64-linux-gnu qemu-user
aarch64-linux-gnu-gcc -ggdb3 -static -o hello_world hello_world.c
qemu-aarch64 -L /usr/aarch64-linux-gnu ./hello_world
都很好。
您还可以提供确切的发行版吗?
已针对GDB步骤调试删除:How to GDB step debug a dynamically linked executable in QEMU user mode?