主题中讨论的其他器件:OMAP-L138
工具/软件:Code Composer Studio
您好!
我正在尝试构建 TI "OMAPL138-DSP-LED-v4.zip"提供的项目。
链接器 cmd 如下所示、
/*********
用于 OMAP-L138测试代码的链接器命令文件。
*
*版权所有2009、Logic Product Development、Inc. 保留所有权利。
秘书长的报告 /
l rts67plus.lib
-stack 0x00000800
堆 0x00000800
存储器
{
DSP_L2_ram: origin = 0x1180000 length = 0x00040000
entry_point: origin = 0x80010000 length = 0x00000080
shared_ram: origin = 0x80010080 length = 0x00007F80
external_ram: origin = 0xC0000000 length = 0x08000000
ARM_LOCAL: origin = 0xFFFFFF0000 length = 0x00002000
}
部分
{
.text:_c_int00 > entry_point
.cinit > shared_ram
.text > shared_ram
.const > shared_ram
.bss > shared_ram
.far > shared_ram
.switch > shared_ram
.stack > shared_ram
.data > shared_ram
.sysmem > shared_ram
.cio > shared_ram
}
在构建项目时、我遇到有关"rts67plus.lib"的错误。
误差如下所示、
"目标文件具有不兼容的格式("C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.2.2/lib/rts67plus.lib) "= TI-COFF、"./main.obj"= ELF)。 请参阅 processors.wiki.ti.com/.../C6000_EABI_Migration 上的"C6000 EABI 迁移"指南空:目标文件格式不兼容("C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.2.2/lib/rts67plus.lib) "= TI-COFF、"./main.obj"= ELF)。 请参阅位于 processors.wiki.ti.com/.../C6000_EABI_Migration 上的"C6000 EABI 迁移"指南"
在给定的项目中包含该库文件非常重要。 我们可以忽略它还是从链接器命令文件中删除此行?
谢谢。