我用的是2407,编程环境CCS3.1。想把原来的工程生成.out文件在别的工程里面调用,但不论debug还是release生成的.lib文件都100+kbyte大,给别的工程用以后编译出来的.out文件也都100+了,根本用不了。怎么办?
我不常上网看帖子,麻烦把回复也发到我邮箱里面一份吧,多谢了:5169935@163.com
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.
你可以使用编译环境中精简CODE SIZE的编译选项 -ms 调用不同级别的优化选项
A variation on the 2nd option is to run the strip2000.exe utility on the .out file. This removes all symbols + file information. You can then compare only the instructions and data. See section 10-3 of SPRU513c for details.