ChinaUnix.net
相关文章推荐:

arm linux gnu

构建arm-linux开发环境过程中,建立初始编译器(bootstrap gcc)时,执行 #make all-gcc 失败: *** Configuration arm-unknown-linux-gnu not supported make: *** [configure-gcc] 错误 1 请知道的大神不吝赐教啊! (我要编译的 gcc 版本是 gcc-4.8.1 )

by lxpursue - 嵌入式开发 - 2013-07-14 17:24:35 阅读(3267) 回复(2)

相关讨论

Building a gnu/linux arm Toolchain (from scratch) Charles M. "Chip" Coldwell Note: (Feb 28, 2008) these days I don't roll my own toolchains anymore. It's just too much trouble, and it's just so easy to get toolchains from places like CodeSourcery these days. This article describes the steps necessary to build a cross-compiler toolchain for targeting arm processors from an i386 workstation ru...

by peijieking - Linux文档专区 - 2008-12-17 09:13:40 阅读(1451) 回复(0)

[color="#02368d"]arm-linux bootloader预备之gnu ld机理 1. 目标文件格式与类型 gnu C compiler根据源文件的后缀名来对文件进行预处理、汇编或编译操作。在编译链接时,生成的目标文件都是ELF格式的(可执行链接格式,Executable and Linking Format)。Object文件格式有三种类型: (1)可重定位(relocatable)文件:用来和其他的object文件一起链接为一个可执行文件(executable)或一个共享文件(.so文件,shared object)。 (2)可...

by gofiend - Linux文档专区 - 2008-06-17 16:19:38 阅读(786) 回复(0)

linux/l-arm-toolchain/" target="_blank">http://www.ibm.com/developerworks/cn/linux/l-arm-toolchain/

如果您对在最普遍的微处理器上开发嵌入式系统感兴趣,那么 Advanced RISC Machines (arm) 内核是您的最佳选择。本文通过描述一组常用的工具(gnu arm 工具链),帮助您开始理解嵌入式系统开发的软件部分。

by yuweixian4230 - 移动操作系统 - 2011-12-20 09:44:10 阅读(523) 回复(0)

本例说明如何在linux平台上学习gnu arm汇编. 1.软件环境 vmware 5.0 + redhat 9.0 + skyeye 1.2.4 + arm-elf 工具 2. 源文件 a.s --------------- .equ a,36 .equ b,39 .equ stack_top,0x2000 .global _start .text _start: mov sp,#stack_top mov r0,#b str r0,[sp] mov r0,#a ldr r1,[sp] add r0,r0,r1 str r0,[sp] ohyeah: b ohyeah .end 3.编译 # arm-elf-as -o a.elf a.s -EL -gstabs ...

by 2195113 - Linux文档专区 - 2008-10-21 16:25:35 阅读(732) 回复(0)

1. 目标文件格式与类型 gnu C compiler根据源文件的后缀名来对文件进行预处理、汇编或编译操作。在编译链接时,生成的目标文件都是ELF格式的(可执行链接格式,Executable and Linking Format)。Object文件格式有三种类型: (1)可重定位(relocatable)文件:用来和其他的object文件一起链接为一个可执行文件(executable)或一个共享文件(.so文件,shared object)。 (2)可执行(executable)文件; (3)共享目标文件(shared object file)...

by nuaagcj - Linux文档专区 - 2008-05-15 16:58:57 阅读(529) 回复(0)

2.8 编译完整的glibc arm@ubuntu:~/dev_home/btools/tchain3.4.4/BUILD/gcc-3.4.4-stage1$ cd ${SRC} arm@ubuntu:~/dev_home/btools/tchain3.4.4$ mkdir -p BUILD/glibc-2.3.5 arm@ubuntu:~/dev_home/btools/tchain3.4.4$ cd BUILD/glibc-2.3.5 arm@ubuntu:~/dev_home/btools/tchain3.4.4/BUILD/glibc-2.3.5$ BUILD_CC=gcc CC=${CROSS_COMPILE}gcc AR=${CROSS_COMPILE}ar RANLIB=${CROSS_COMPILE}ranlib AS=${CROSS_COMPILE}...

by microtiger - Linux文档专区 - 2007-09-04 11:41:58 阅读(893) 回复(0)

gnu交叉工具链(arm-linux-gcc 3.4.4) Modified by litroncn ( [email=litroncn@163.com][color="#0000ff"]litroncn@163.com[/email] ) Based on sunhe (msunhe@gmail.com) 1 linux下工作用户及环境 1.1软件环境 linux ubuntu 6.06 LTS Kernel version 2.6.15-23-686 gcc version 4.0.3 (Ubuntu 4.0.3-1ubuntu5) gnu Make 3.81 msgfmt (gnu gettext-tools) 0.14.5 makeinfo (gnu texinfo) 4.8 gnu M4 1.4.4 flex 2.5.31...

by microtiger - Linux文档专区 - 2007-09-04 11:41:18 阅读(951) 回复(0)

1. 目标文件格式与类型 gnu C compiler根据源文件的后缀名来对文件进行预处理、汇编或编译操作。在编译链接时,生成的目标文件都是ELF格式的(可执行链接格式,Executable and Linking Format)。Object文件格式有三种类型: (1)可重定位(relocatable)文件:用来和其他的object文件一起链接为一个可执行文件(executable)或一个共享文件(.so文件,shared object)。 (2)可执行(executable)文件; (3)共享目标...

by aaronwong0207 - Linux文档专区 - 2007-07-20 02:25:17 阅读(497) 回复(0)

在AS4中,我想用gcc-3.4.5-glibc-2.3.6.tar.gz,环境变量我也修了,我把交叉编译器放在/opt/crosstool/下面了。可是为什么一编译应用程序,会出现Floating point exception .我在网上看到说是glibc 不兼容导致。要加-static参数,我加了后,还是不行,有的说是:高版本的gcc在链接时采用了新的哈希技术来提高动态链接的速度,这在低版本中是不支持的。因此会发生这个错误。解决方案: 在链接的时候添加选项-Wl,--hash-style=sysv ...

exceptionFloatingpoint

by jackyard - 内核源码 - 2011-05-14 14:54:46 阅读(4283) 回复(1)

arm-9tdmi-linux-gnu-gcc如何安装? #make出现以下错误信息: /bin/sh: arm-9tdmi-linux-gnu-gcc: command not found dirname: missing operand Try `dirname --help' for more information. /bin/sh: arm-9tdmi-linux-gnu-gcc: command not found dirname: missing operand Try `dirname --help' for more information. arm-9tdmi-linux-gnu-gcc -g -Os -fno-strict-aliasing -fno-common -ffixed-r8 -D__KERNEL__ -DTEX...

by elesun8 - 嵌入式开发 - 2014-07-07 23:14:24 阅读(785) 回复(0)