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.

[参考译文] 编译器/TMS320F28377S:TMS320F28377S

Guru**** 2471820 points


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

https://e2e.ti.com/support/tools/code-composer-studio-group/ccs/f/code-composer-studio-forum/889225/compiler-tms320f28377s-tms320f28377s

器件型号:TMS320F28377S

工具/软件:TI C/C++编译器

我使用了'ofd2000'

我解析了使用'ofd2000'的 xxx.out 文件此命令" ofd2000.exe -g -dwarf_display=none、dinfo、types -obj_display=none -o output.ofd input.out

但是... 我找不到我声明的变量。

我需要一个我声明变量的类型。

我怎么能找到它...  

请帮我一个忙...

最恰当的考虑。

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

    我建议您从小开始。  创建一个定义一个变量的 C 文件...  

    /* file.c */
    int global_variable; 

    编译该文件。  请勿链接。  以 file.obj 作为输入运行 ofd2000。  检查输出。  然后开始对文件进行小幅更改。  更改变量的类型、更改变量的名称、再添加一个变量、等等。  每次都慢慢增加一点复杂性。  看看这些变化在 ofd2000的输出中是如何出现的。

    谢谢、此致、

    乔治