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/TMS320F28335: CCSv6.2.0 error message

Part Number: TMS320F28335


Tool/software: Code Composer Studio

Hi,

after having solved some problems with CCSv6.1.3 with installing CCS6.2.0, I now get an error #1965an build process is stopped.

This is a simular but other project with F28335.

I attached the complete output!

Anbody an idea?

br Ralf

**** Build of configuration F2833x_RAM for project VVK1 ****

"C:\\ti\\ccsv6\\utils\\bin\\gmake" -k all 
'Building file: ../src/Main.c'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_15.12.3.LTS/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -O1 --opt_for_speed=5 --include_path="C:/ti/xdais_7_24_00_04/packages/ti/xdais" --include_path="C:/projekte/VVK1/src/include" --include_path="C:/ti/ccsv6/tools/compiler/c2000_15.12.3.LTS/include" --advice:performance=all -g --define="_DEBUG" --define="LARGE_MODEL" --display_error_number --diag_warning=225 --gen_func_subsections=on --call_assumptions=3 --asm_define=RAM=1 --temp_directory="../Temp" --asm_directory="../2833x_RAM" --preproc_with_compile --preproc_dependency="src/Main.d" --obj_directory="src"  "../src/Main.c"

>> Compilation failure
src/subdir_rules.mk:7: recipe for target 'src/Main.obj' failed
Fatal error #1965: cannot open IL output file "../Temp/Main.if"
1 catastrophic error detected in the compilation of "../src/Main.c".
Compilation terminated.
gmake: *** [src/Main.obj] Error 1
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_15.12.3.LTS/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -O3 --opt_for_speed=5 --include_path="C:/ti/xdais_7_24_00_04/packages/ti/xdais" --include_path="C:/projekte/VVK1/src/include" --include_path="C:/ti/ccsv6/tools/compiler/c2000_15.12.3.LTS/include" --advice:performance=all -g --program_level_compile --define="_DEBUG" --define="LARGE_MODEL" --display_error_number --diag_warning=225 --gen_func_subsections=on --call_assumptions=3 --asm_define=RAM=1 --temp_directory="../Temp" --asm_directory="../2833x_RAM"  "../src/ADS8329.c" "../src/Angle.c" "../src/Ccmode.c" "../src/Control.c" "../src/Correction.c" "../src/Crmode.c" "../src/CsFastOsc.c" "../src/Csmode.c" "../src/DSP28335GlobalVariableDefs.c" "../src/Dac_AD5544.c" "../src/DevInitF28335.c" "../src/Device.c" "../src/Diagnos.c" "../src/Epwm.c" "../src/IntSvc.c" "../src/Ip2000.c" "../src/McbspDma.c" "../src/Measmode.c" "../src/MyConst.c" "../src/Omega.c" "../src/Pmsm.c" "../src/SpiA.c" "../src/SsiComm.c" "../src/Test.c" "../src/Timer.c" "../src/UsartDebug.c" "../src/buf.c" "../src/dsv.c" "../src/fft.c" "../src/filt.c" "../src/fosc.c" "../src/msc.c" "../src/mth.c" "../src/opt.c" "../src/peripherals_test_task.c" "../src/tsg.c" "../src/usart.c" "../src/version.c"   "../src/DSP2833x_usDelay.asm" "../src/atan2_f32.asm" "../src/cos_f32.asm" "../src/div_f32.asm" "../src/sin_f32.asm" "../src/sqrt_f32.asm"  "../src/FPUmathTables.ASM"  
[ADS8329.c]

>> Compilation failure
makefile:175: recipe for target 'ADS8329.obj' failed
Fatal error #1965: cannot open IL output file "../Temp/ADS8329.if"
1 catastrophic error detected in the compilation of "../src/ADS8329.c".
Compilation terminated.
gmake: *** [ADS8329.obj] Error 1
gmake: Target 'all' not remade because of errors.

**** Build Finished ****

  • Hello Ralf,

    I am moving this to the CCS forum. Hopefully someone here can help you.

    Best Regards,
    Adam Dunhoft
  • Ralf,

    I see the following in the build log:

    "C:\\ti\\ccsv6\\utils\\bin\\gmake" -k all
    'Building file: ../src/Main.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv6/tools/compiler/c2000_15.12.3.LTS/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -O1 --opt_for_speed=5 --include_path="C:/ti/xdais_7_24_00_04/packages/ti/xdais" --include_path="C:/projekte/VVK1/src/include" --include_path="C:/ti/ccsv6/tools/compiler/c2000_15.12.3.LTS/include" --advice:performance=all -g --define="_DEBUG" --define="LARGE_MODEL" --display_error_number --diag_warning=225 --gen_func_subsections=on --call_assumptions=3 --asm_define=RAM=1 --temp_directory="../Temp" --asm_directory="../2833x_RAM" --preproc_with_compile --preproc_dependency="src/Main.d" --obj_directory="src" "../src/Main.c"

    >> Compilation failure
    src/subdir_rules.mk:7: recipe for target 'src/Main.obj' failed
    Fatal error #1965: cannot open IL output file "../Temp/Main.if"
    1 catastrophic error detected in the compilation of "../src/Main.c"

    The main.if file is a temporary file created by the compiler during compilation. Since the error is about not being able to open that file, could you check if the directory that is passed to the --temp_directory option (../Temp) actually exists and is valid? Note that the path is relative to the build directory, which in this case is /F2833x_RAM.

  • Hi,

    I missed a ..\Temp directory, which I supposed has to be created automatically from Compiler!

    I created this path manually and it is working now.

    br and thanks Ralf