- 29
- 0
- 约6.54千字
- 约 4页
- 2017-04-28 发布于重庆
- 举报
dsp编译错误与解决方法
dsp--ccs部分错误及解决
1,ERRORmultiple sections with name PAGE0
解决PAGE 0 中间有个空格隔开。
2ERROR MEMORY specification ignored
解决书写格式错误
3 ERROR:zero or missing length for memory area SPRAM
SPRAM: origin=0x0060H, 解决书写格式错误
4WARNING: entry point other than _c_int00 specified
解决,在“TMS320C6000优化汇编手册”第五章“链接C/C++代
令人生厌的 multiple definition of
我把所有的全局变量写在一个global.h里然后其他文件都include 了它 于是出现了 multiple definition of 编译器 gcc ) 后来在网上搜到了很多类似的错误大家各有各的烦心事。我的代码结构
main.cpp
#include global.h
WinMain()
...
}
file_1.cpp
#include global.h
file_2.cpp
#include global.h
...
由于工程中的每个文件都是独立的
原创力文档

文档评论(0)