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.

cl6x编译问题

Other Parts Discussed in Thread: CCSTUDIO

我想用cl6x.exe编译c6713的代码,不知道dsp/bios等的配置对编译有影响吗,主要对编译后的out文件影响,谢谢回答

  • 是一样的,因为配置是在工程文件设的,所以结果是一样的。

    http://processors.wiki.ti.com/index.php/CCStudio_FAQ

    Q: Can I build my CCStudio project file outside of CCStudio?

    Yes. CCStudio come with a utility called timake.exe that allows you to build your CCStudio project (*.pjt) file from the command line. Building a project with timake has the same effect as building the project from within the CCStudio IDE (timake uses the same project manager and versions of Code Generation Tools and DSP/BIOS that CCStudio is configured for).

    To Invoke the timake Utility:

    1. Open a DOS Command Prompt.
    2. Setup the necessary environment variables by running the batch file DosRun.bat. This batch file must be run before using timake. If you installed the Code Composer Studio product in C:\CCStudio_v3.3, the batch file is located at: C:\CCStudio_v3.3\DosRun.bat
    3. Run the timake utility.

    The syntax for invoking the timake utility is:

    >timake.exe PJT -lc | CFG [ -a | -clean ]
    

    The first parameter is required.

    • PJT - The name of a Code Composer Studio project file (.pjt).

    The second parameter must be one of the following:

    • lc: Lists the names of all configurations within the specified project. No build is performed.
    • CFG: The name of a project configuration. Performs an incremental build of the specified configuration. Only files that have been modified since the last build are recompiled. For additional information, see Building a Program.

    When a project configuration (CFG) is specified as the second parameter, one of the following options can be specified as the third parameter:

    • -a: Rebuilds all files. By default, an incremental build is performed. This options forces the recompilation of all files.
    • -clean: Removes all intermediate files that may remain following a build.

    Ex:

    >timake.exe modem.pjt Debug -a