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.

Parallel build problem with CCSv4.1.2.00027

Hello,

I just upgraded the CCSv4 to the recent version 4.1.2.00027. I use mingw32-make as builder because of the parallel build option (mingw32-make.exe -j 2 -k).  After the Update I've got in the Debug build directory a new file ccsCompiler.opt. I figured out that this file is generated for each c-file that has to be compiled with the same name (ccsCompiler.opt) . This file contains the compiler options. This is a problem for the parallel build because mingw32-make.exe starts several build processes at once and the second process overwrites the build options from first one. mingw32-make sucks up in an build error.

Solution:

1) To enumerate the ccsCompiler.opt filename foreach c-file.

2) To switch the managed-build make file generation to the old way. This means: the compiler options are stored in the make file.

Question:

Is there a possibility to switch to the old way? I need this feature because we have big projects that have to be recompiled.