ChinaUnix.net
相关文章推荐:

gdbserver 编译 mips

编译gdb时会出现 cc1: warnings being treated as errors 错误,把对应目录下的makefile文件里面的-Werror 去掉即可。 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/103529/showart_2034383.html

by firekingr - Linux文档专区 - 2009-08-22 13:10:43 阅读(932) 回复(0)

相关讨论

1.编译gdb: 1) mkdir /opt/arm-gdb 2) ./configure --host=i686-pc-linux-gnu --target=arm-926ejs-linux --build=i686-pc-linux-gnu --enable-shared --prefix=/opt/arm-gdb --without-x --disable-gdbtk --disable-tui --without-included-regex --without-included-gettext 3)make;make install 2.编译gdbserver 1)mkdir /opt/arm-gdb/gdbserver 2) ./configure --target=arm-926ejs-linux --host=arm-926ejs-linux --prefix...

by koliver - Linux文档专区 - 2009-12-31 09:17:36 阅读(1311) 回复(0)

请高手帮忙:我在编译gdbserver时出现这样的问题:linux-arm-low.c:26:21: sys/reg.h: No such file or directory ./configure --target=arm-linux --host=arm-linux make CC=/opt/crosstool/gcc-3.4.5-glibc-2.3.6/arm-softfloat-linux-gnu/bin/arm-softfloat-linux-gnu-gcc

by flying8127 - 嵌入式开发 - 2008-07-07 10:56:04 阅读(1402) 回复(0)

$ ./configure --target=arm-softfloat-linux-gnu --host=arm-softfloat-linux-gnu $ make CC=arm-softfloat-linux-gnu-gcc 编译gdbserver成功后,生成gdbserver可执行文件,但是通过NFS在arm板上gdbserver不能执行。提示: # ./gdbserver 192.168.1.1:2345 hello -sh: ./gdbserver: not found 我的交叉编译器是:arm-softfloat-linux-gcc,不知道有没有什么影响。用的是gdb6.6 谢谢各位指导。 配置gdbserver文件如下: ...

by flylonginsky - 内核/嵌入技术 - 2006-12-26 08:55:13 阅读(2900) 回复(2)

$ ./configure --target=arm-softfloat-linux-gnu --host=arm-softfloat-linux-gnu $ make CC=arm-softfloat-linux-gnu-gcc 编译gdbserver成功后,生成gdbserver可执行文件,但是通过NFS在arm板上gdbserver不能执行。提示: # ./gdbserver 192.168.1.1:2345 hello -sh: ./gdbserver: not found 我的交叉编译器是:arm-softfloat-linux-gcc,不知道有没有什么影响。用的是gdb6.6 谢谢各位指导。 配置gdbserver文件如下: ...

by flylonginsky - 内核源码 - 2006-12-26 08:55:13 阅读(3396) 回复(2)

--host=i686-pc-linux-gnu --target=mips-linux 大端 若要小端 则是 'mipsel' info registers 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/36660/showart_695895.html

by wuxb45 - Linux文档专区 - 2008-05-20 15:20:00 阅读(1375) 回复(0)

拿到arm的开发板,查看里面的光盘,安装eabi4.2.2,发现编译系统没有debug工具,光盘里也没有这样的工具,于是从网上搜所gdb的编译方法,文章比较少,介绍的版本也不是最新的gdb6.6。现在把我的编译方法介绍一下。
1.从gnu.org上下在最新的gdb版本gdb-6.6.tar.gz
2.tar解压后,进入gdb-6.6

by matthew_ye - 移动操作系统 - 2011-01-19 16:02:44 阅读(802) 回复(0)

我执行下面命令后: [root@localhost]cd gdb-6.6 [root@localhost]cd gdb/gdbserver [root@localhost] ./configure --target=arm-softfloat-linux-gnu –-host=arm-softfloat-linux-gnu [root@localhost] make CC=/opt/crosstool/gcc-3.4.1-glibc-2.3.3/arm-softfloat-linux-gnu/bin/arm-softfloat-linux-gnu-gcc 执行上面命令后,遇到下面问题: gcc -c -Wall -g -O2 -I. -I. -I./../regformats -I./../../include -I../../bfd...

by libo198212 - Linux系统管理 - 2007-06-21 20:55:22 阅读(2686) 回复(3)

错误信息如下: In file included from arch/mips/kernel/asm-offsets.c:14: include/linux/mm.h:514:2: #error SECTIONS_WIDTH+NODES_WIDTH+ZONES_WIDTH > BITS_PER_LONG - NR_PAGEFLAGS 难道是因为版本不同? 我是用2.6.18-92.el5xen编译2.6.3.36就报这个错 不知道怎么改,求大神帮助

by Dannysd - 嵌入式开发 - 2014-01-22 13:43:46 阅读(1175) 回复(6)

RT, 我是参照http://bbs.chinaunix.net/thread-2073219-1-1.html这个帖子来的 前面都没问题,但在编译GCC的时候出现 “checking for C compiler default output file name... configure: error: C compiler cannot create executables” 这个错误 在网上查了下,大多数是因为库不全,安装软件包的时候报的错,跟这个不太一样,不知道怎么弄了 请大神帮助,谢谢 ----------------------------------------------------------...

by Dannysd - 嵌入式开发 - 2014-01-22 10:10:18 阅读(1238) 回复(5)

请教一下在x86上为mips编译sasl, 应该给configure加什么参数啊? 我试了--host=mips --target=mips CC=mips_lexra_fp_be-gcc CPP=mips_lexra_fp_be-gcc, 结果说检查mips_lexra_fp_be-gcc出现 failed sanity check. 怎么办啊?

by thirdlee - 服务器应用 - 2006-02-27 14:12:39 阅读(986) 回复(2)