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.
Tool/software: TI C/C++ Compiler
Hello
1. The .out file is called a COFF file, does it differ from the typical COFF file?
2. Can I compile CCS without symbol information and mapping files in .out files?
3. I want to extract the symbols from the COFF file, without using the ofd tool.
Is there any way ?? If possible, I want to work through coding.
Or, do you disclose some major source codes that extract symbol information?
Regards, Han
Han SeungJae said:1. The .out file is called a COFF file, does it differ from the typical COFF file?
I'm not sure what counts as a typical COFF file. You will probably find the answer in the article A Brief History of TI Object File Formats.
Han SeungJae said:2. Can I compile CCS without symbol information and mapping files in .out files?
Consider compiling normally, then using the strip utility strip2000. Search for it in the C28x assembly tools manual.
Han SeungJae said:3. I want to extract the symbols from the COFF file, without using the ofd tool.
Is there any way ?? If possible, I want to work through coding.
Or, do you disclose some major source codes that extract symbol information?
We do not supply any source code in any form that allows you to directly process the binary COFF file to extract information like the symbol table. Instead, we provide utilities like ofd2000 and nm2000. You can also see the symbols in the linker map file.
Thanks and regards,
-George