如何解决 Warning: L6305W: Image does not have an entry point. (Not specified or not set due to multiple choices.)
ADS tcc 编译连接时出现这个Warning: L6305W: Image does not have an entry point. (Not specified or not set due to multiple choices.)
一部分是自己项目编译出来的*.lib文件,另一部分是RTOS,要运行在ARM 平台, 当把这两部分连接到一起的时候出现了此warning.
出现此提示的原因是 (1) 没有指定entry point
(2) 指定了多个entry point
而且我查到指定的参数是-entry, 但是我并没有找到 在嵌入式系统编译连接的时候指定entry point的具体方法,
所以我无法search 到到底项目里面在哪里指定的entry point.所以特来此请教。
希望同做嵌入式系统的高手可以指点迷津,如何在编译嵌入式平台img的时候指定entry point?