Hello All,
Trying to figure if there is a way to use cmd file with clang analyzer. I posted my question here as well:

But can anyone help me if the cmd file is proprietary or can it be used by clang?
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.
Hello All,
Trying to figure if there is a way to use cmd file with clang analyzer. I posted my question here as well:

But can anyone help me if the cmd file is proprietary or can it be used by clang?
TI linker command files contain a proprietary language only used by TI linkers. You can learn the basics about these files in this wiki article.
Thanks and regards,
-George
First, a bit of background ... The gcc linker calls them linker scripts, and the filename extension is typically .ld. The TI linker calls them command files, and the filename extension is typically .cmd. But these files serve the same purpose. They specify to the linker the ranges of memory available on the system, and how to allocate code and data into that memory.
With that background in mind ... The answer is the same. clang cannot process TI linker command files.
Thanks and regards,
-George