arm-elf 和arm-linux-elf 有什么不同啊!
arm-elf 和arm-linux-elf 有什么不同啊! 你的意思是:arm-elf-gcc和arm-linux-gcc有什么区别吧??两个不同的交叉编译器,没什么可比性,都很不错的,只是uboot好像默认的要arm-linux-gcc编译的
我也是初学者,上面的回答只是我的理解,可能有误,请高手们砸玉!! 我是指它们编译出来的obj文件格式啦!都是ELF,但在linux和cygwin下有什么不同呢?
谢谢! 如果你用uClinux, 就使用arm-elf-gcc, (cpu不带mmu)
如果你用armlinux, 就使用arm-linux-gcc, (cpu带mmu) 如果你用uClinux, 就使用arm-elf-gcc, (cpu不带mmu)
如果你用armlinux, 就使用arm-linux-gcc, (cpu带mmu)
你这个说法好象有问题吧!!!
arm-elf-gcc,arm-linux-gcc是两个不同的工具,怎么会跟带不带MMU有关系呢?
不同的工具是应该对应不同的操作系统吧。
arm-linux-gcc我就看有人用在uClinux上啊。。。
arm-elf-gcc是在cygwin上吗?这个能用在linux上吗?
arm-linux-gcc是在linux上吗?这个能用在cygwin上吗? 我很想知道这个正确答案,因为我看到有不同的说法。。。
还请高手指点啊
据说这么个区别
arm-elf是编译stand along得,比如bootloader,kernelarm-linux用来编译运行在target Linux system上的应用程序 经典解释:
there are some differences between arm-elf, arm-linux, andarm-uclinux toolch
ains.
As I know, arm-uclinux-binutils is the same as arm-linux-binutils.
arm-uclinux-gcc was patched from arm-linux-gcc to generate PIC
(Program Independent Code) code without GOT (Global Offset Table);
and arm-elf-gcc is designed for operating system independent
applications. For example, arm-elf-gcc will insert code for initializing
global C++ constructors at the beginning of main(), so even no-OS
platforms can work properly. BTW, they are almost the same while
compiling the Linux kernel.
页:
[1]