TI E2E™ 设计支持论坛将于 5 月 30 日至 6 月 1 日进行维护。如果您在此期间需要技术支持,请联系 TI 的客户支持中心寻求帮助。

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.

[参考译文] 其中、我可以从生成 makefile.am243x.r5f.ti-arm-clang

Guru**** 2046970 points
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/tools/code-composer-studio-group/ccs/f/code-composer-studio-forum/1246748/where-from-can-i-make-makefile-am243x-r5f-ti-arm-clang

您好!

安装 SDK 后、我看到 在 C:\ti\mcu_plus_sdk_am243x_08_06_00_43\source\drivers 中  有一个  makefile.am243x.r5f.ti-arm-clang

在安装过程中是否使用它来获取  drivers.am243x.r5f.ti-arm-clang.debug.lib?

我可以从 CCS 中使用它, 还是应该使用其他方式?  

 我已经使用 GCC 编译了一个大型工程、因此 我想尝试稍后使用 makefile 来创建具有 GCC 的库。

谢谢。

Eli

 

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 Eli:

    MCU+ SDK 中的所有库都是使用 makefile 构建的。 只有示例工程使用 CCS 工程文件导入和编译。

    若要清理或构建库、需要转至 C:\ti\mcu_plus_sdk_am243x_08_06_00_43目录、然后使用以下命令:

    gmake -f makefile.am243x libs profile=debug  #for build debug 版本的库

    gmake -f makefile.am243x libs profile=release  #for build release version of libraries

    有关详细信息、请参阅以下 URL:

    AM243x MCU+ SDK:结合使用 SDK 和 Makefile (TI.com)

    此致、

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    谢谢!