folks,
I am using Beaglebone ,import the examples to the CCS V6.2 .
I am getting Error which is " Compiler/diagnostic messages/10198 "
Remedy
To work around this bug, add below two directives to the assembly source file.
- .retain tells the linker to keep this section (.text)
- .retainrefs additionally tells the linker to retain sections that reference this.
.cdecls C,LIST, "device.h"
;------------------------------------------------------------------------------
.text ; Program Start
.retain
.retainrefs
;------------------------------------------------------------------------------
It is not clear solution and has no guide how and where to apply the Directives .
Could you please step by step explain it ?
Thanks
Ash

