CCS编译中常常遇到的问题以及解决办法

1、warning: creating .stack section with default size of 400 (hex) words.
这是因为没有在Project---Build Option---Linker中-stack没有设定值。

2、warning: creating .sysmem section with default size of 400 (hex) words.
这是因为没有在Project---Build Option---Linker中-heap没有设定值。

3、warning: creating output section .cio without SECTIONS specification
这是因为在section中没有定义。

4、warning: entry point symbol _c_int00 undefined
这是因为没有添加lib文件。

5、Loader: One or more sections of your program falls into a memory region that is not writable.  These regions will not actually be written
可能是因为你选择的仿真环境与你工程设定的芯片类型不太一致,液有可能是因为.cmd文件有问题
 
 
未完,待续…………

你可能感兴趣的:(CCS编译中常常遇到的问题以及解决办法)