交叉编译 gdb 服务器到 mips arc

交叉编译 gdb 服务器到 mips arc

嗨,我正在尝试将 gdbserver 交叉编译到 mips 架构。我下载了 gdb 7-12,在运行 configure 之后

./configure --host=mips-linux-gnu

我收到错误

Makefile:263: recipe for target 'linux-mips-low.o' failed
make: *** [linux-mips-low.o] Error 1

由于谷歌没有给我答案,有人知道如何修复这个错误吗?

答案1

看一下下面的链接,他们教你如何交叉编译并使用 gdb 来处理 powerpc 处理器架构,我曾使用相同的方法交叉编译到 ARM。

https://www.linux.com/news/remote-cross-target-debugging-gdb-and-gdbserver

就我而言,使用上述教程,我所做的是:

./configure --prefix=~/build-workplace/gdb/final --host=arm-none-linux CC=/*arm-sysroot*/arm-none-linux-gnueabi-gcc AR=/*arm-sysroot*/arm-none-linux-gnueabi-ar RANLIB=/*arm-sysroot*/arm-none-linux-gnueabi-ranlib

致以感谢和诚挚问候。

相关内容