关于OMAPL138 BOOT,我进行了如下设置
同时在程序中加入了如下汇编程序
.global _my_boot
.sect "my_boot_sect"
.align 128
.global _c_int00
_my_boot:
B _c_int00
NOP 5
编译的时候,一直是 #10062-D: entry-point symbol "_my_boot" undefined错误,明明已经定义了
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
关于OMAPL138 BOOT,我进行了如下设置
同时在程序中加入了如下汇编程序
.global _my_boot
.sect "my_boot_sect"
.align 128
.global _c_int00
_my_boot:
B _c_int00
NOP 5
编译的时候,一直是 #10062-D: entry-point symbol "_my_boot" undefined错误,明明已经定义了
改了一下,但又报这个错误
undefined first referenced
symbol in file
--------- ----------------
c_int00 ./myboot.obj
我加的
.global my_boot
.sect "my_boot_sect"
.align 128
.global _c_int00
my_boot:
B _c_int00
NOP 5
还是报错
ccs->Project Properties → CCS Build → C6000 linker → File search path → Include library file or command file as input
参考下面的网站。
http://processors.wiki.ti.com/index.php/Accessing_c_int00#Setting_the_c_int00_Address_to_a_Fixed_Location