Description Resource Path Location Type <a href="file:/E:/CCS/ccs/tools/compiler/dmed/HTML/10099.html">#10099-D</a> program will not fit into available memory, or the section contains a call site that requires a trampoline that can't be generated for this section. run placement with alignment/blocking fails for section "PieVectTableFile" size 0x100 page 1 DSP2833x_Headers_BIOS.cmd /DSP28335/CMD line 107 C/C++ Problem
时间: 2023-12-24 08:04:32 浏览: 401
这也是一个编译错误,提示程序无法适应可用内存,或者包含一个需要跳转的调用点,而该调用点无法为该节生成跳转代码。该错误通常是由于程序代码和数据超出了所分配的内存空间。解决方案可能包括增加可用内存或优化代码以减少所需的内存空间。此外,还可以检查代码中是否存在不必要的变量或函数,并删除未使用的代码以减少程序的大小。
阅读全文