旧文-使用Sourcery G++ Lite Edition + keil 进行开发ARM- 2010年02月21日 10:43

Posted fishhead

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了旧文-使用Sourcery G++ Lite Edition + keil 进行开发ARM- 2010年02月21日 10:43相关的知识,希望对你有一定的参考价值。

一致使用winarm + keil进行ARM开发,但是兼容性不好,例如有时候无法链接,而且WINARM已经很长时间没有更新了,故决定使用Sourcery G++ Lite Edition替换WINARM。
主要遇到了一下几个问题:
1,无法链接_isatty()函数。
把原来的isatty()函数改名为_isatty()即可。
2,(.ARM.exidx+0x0): undefined reference
(.ARM.exidx+0x0): relocation truncated to fit: R_ARM_PREL31 against `.text‘
 
链接脚本中添加:
.ARM.exidx : 
    {
         __exidx_start = .; 
        *(.ARM.exidx* .gnu.linkonce.armexidx.*)
         __exidx_end = .; 
    } >eflash
 
3,sh_link not set for section `.ARM.exidx‘
把上述脚本改为:
/* .ARM.exidx is sorted, so has to go in its own output section.*/
    . = ALIGN(4); 
     __exidx_start = .; 
     PROVIDE(__exidx_start = __exidx_start); 
    .ARM.exidx : 
    {
        /* __exidx_start = .; */
        *(.ARM.exidx* .gnu.linkonce.armexidx.*)
        /* __exidx_end = .; */
    } >eflash
    . = ALIGN(4); 
     __exidx_end = .;
     PROVIDE(__exidx_end = __exidx_end); 

以上是关于旧文-使用Sourcery G++ Lite Edition + keil 进行开发ARM- 2010年02月21日 10:43的主要内容,如果未能解决你的问题,请参考以下文章

为什么不应该使用数据库外键(重温旧文)

Etherpad-lite 有序列表格式化

基于Zephyr在微型MCU上使用Tensor Flow Lite Micro做图像分类

旧文-linux 触摸屏校准-2010年02月09日 13:59

firebug lite作为最喜爱的链接

如何在 Perl 5 中保存通过 MIME::Lite 发送的邮件的备份?