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.

Compiler/TMS320F28377S: TMS320F28377S

Part Number: TMS320F28377S

Tool/software: TI C/C++ Compiler

I used the 'ofd2000'

And i parsed xxx.out file for using 'ofd2000' this command " ofd2000.exe -g --dwarf_display=none,dinfo,types --obj_display=none -o output.ofd input.out

but .. I couldn't find variable which i declared.

I need a type which i declared variable.

How can i find that... 

Please Help me asap...

Best regard.

  • I recommend you start small.  Create one C file that defines one variable ... 

    /* file.c */
    int global_variable;

    Compile that one file.  Do not link.  Run ofd2000 with file.obj as the input.  Inspect the output.  Then start making small changes to the file.  Change the type of the variable, change the variable's name, add one more variable, and so on.  Slowly add a bit more complexity each time.  See how those changes appear in the output of ofd2000.

    Thanks and regards,

    -George