最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

arm - Translation from linker to scatter script - define global symbols - Stack Overflow

programmeradmin5浏览0评论

I have to translate a ld script to ARM Scatter syntax in order to use an ARM FuSa Compiler.

How are the commented parts from ld translated into scatter syntax?

ld:

.foo_data 
{
    . = ALIGN(4);              // This one
    __foo_data_start__ = .;    // This one
    *(.foo_shared_data)
    . = ALIGN(4);
    __foo_data_end__ = .;      // This one
} > foo_shareable

scat:

foo_data 0x20400000 0x0002FF00  
{
    foo_data _base 0x20400000
    {
        __foo_data_start__  Load$$LR$$int_sram$$Base
        __foo_data_start__  = .;
        __foo_data_start__  = 0x20400000;
        *(.foo_shared_data)
    }
}

I cannot access those symbols in my c code.

extern unsigned int __foo_data_start__;

int main(void)
{
    int bar = __foo_data_start__;
    
    return bar > 3 ? 0 : 1;
}

Error:

> armlink --cpu=cortex-m7 --scatter=scatter.scat --map --symbols main.o > foo
Error: L6218E: Undefined symbol __foo_data_start__ (referred from main.o).
Not enough information to list image symbols.

Any suggestions on that? The official ARM documentation is not that clear on that point.

发布评论

评论列表(0)

  1. 暂无评论