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 Composer Studio
我正在尝试了解CCS / TI编译器如何设置“项目->生成->依赖关系”? 似乎不像预期的那样工作。
具有两个已定义项目的示例工作区:
lib-doit -生成为静态库
TestApp -作为可执行文件为TMC4C129NCPDT构建
我将TestApp Project->build->Dependencies设置为依赖于lib-doit。
看看TestApp项目之后,CCS似乎添加了以下内容:
“项目”->“生成”->“ARM编译器”->“包含选项”
"${inherited_include_path}"
“项目”->“生成”->“ARM链接器”->“文件搜索路径”
"${inherited_libraries}"
"${inherited_library_path}"
如果将鼠标悬停在上述项目旁边的"..."上,则会显示"继承自项目lib-doit"。
当我生成TestApp时,似乎没有定义任何继承变量或将其添加到编译器行或链接器行。 您如何使其工作??
不要……
附注:我附加了我所描述的示例工作区。