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.

CCS/TMS320C6727: Version number of Run Time Support libraries in CCS3.3

Part Number: TMS320C6727
Other Parts Discussed in Thread: CCSTUDIO

Tool/software: Code Composer Studio

Hello,

I am on a program that has strict documentation requirements that is using CCS3.3, and I would like to know the version of the rts67plus.lib that I am using for my project. There does not appear to be any obvious way to determine the version, but I did open the header files under the include directory related to the rts67plus.lib located here: <CCStudio_v3.3 Install Dir>\C6000\cgtools\include\. It appears that all the header files have a version of 6.0.8 in their comments, but I am hoping there's perhaps a more reliable way to determine the library version number?

Thank you,

Vincent Galbo

  • Yes, that is the build tools version. There should also be a readme inside the C6000 folder (readme.txt or readme.1st) that will provide the build tools number.

    A better way to confirm  the version is to run ofd on the library. The output will be big so pipe it to a file.

    Example:

    C:\CCStudio_v3.3PLA\C6000\cgtools\lib>..\bin\ofd6x.exe rts67plus.lib > rts67plusofd.txt

    When you open the text file, you should see something like:


    ARCHIVE: rts67plus.lib

    OBJECT FILE: autoinit.obj

    Object File Information

    File Name: autoinit.obj
    Format: TI-COFF Version 2
    File Type: relocatable file
    Time Stamp: Sat May 23 10:51:13 2009
    Machine: TI C6x
    Machine Endian: little endian
    Entry Point: 0x00000000
    Vendor: Texas Instruments, Inc.
    Producer: Assembler
    Assembler Version: 6.1.10
    Number of Sections: 9
    File Length: 6063
    File Offset in Archive: 17634
    Symbol Table File Offset: 0x000015f9
    String Table File Offset: 0x0000173d
    TI-COFF f_flags: 0x000021c0
    CPU Generation: C6700+
    Control Data Endian: little endian

    Section Information

    id name load addr run addr size align alloc
    -- ---- --------- -------- ---- ----- -----
    1 $build.attributes 0x00000000 0x00000000 0x21 1 N
    2 .text 0x00000000 0x00000000 0x0 1 Y

    ....

    Note the part in BOLD

    Thanks

    ki