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.

C6flo



I've installed ccv5.3 with built in c6ezflo and used an example c6flo diagram for code generation test. Code generation fails with the following errors listed below:

I've updated all the applicable software through ccv5, and still no success.

Anyone got a clue to the fix?

**** Build of configuration Debug for project x ****

"C:\\ti\\ccsv5\\utils\\bin\\gmake" -k all
'Building target: x.out'
'Invoking: C6000 Linker'
"C:/ti/ccsv5/tools/compiler/c6000_7.4.2/bin/cl6x" -mv6740 --abi=coffabi -g --define=c6747 --display_error_number --diag_warning=225 --diag_wrap=off -z --stack_size=0x800 -m"x.map" --heap_size=0x800 -i"C:/ti/ccsv5/tools/compiler/c6000_7.4.2/lib" -i"C:/ti/ccsv5/tools/compiler/c6000_7.4.2/include" -i"C:/ti/bios_5_42_00_07/packages/ti/rtdx/lib/c6000" -i"C:/ti/bios_5_42_00_07/packages/ti/bios/lib" --reread_libs --warn_sections --display_error_number --diag_wrap=off --rom_model -o "x.out"  -l"libc.a" "../C6747.cmd"
<Linking>
warning #10211-D: cannot resolve archive C:/ti/ccsv5/tools/compiler/c6000_7.4.2/lib/libc.a to a compatible library, as no input files have been encountered
fatal error #10009: no input files

>> Compilation failure
gmake: *** [x.out] Error 1
gmake: Target `all' not remade because of errors.

**** Build Finished ****



Description    Resource    Path    Location    Type
#10211-D cannot resolve archive C:/ti/ccsv5/tools/compiler/c6000_7.4.2/lib/libc.a to a compatible library, as no input files have been encountered    x             C/C++ Problem

  • DAVID RAGER said:
    warning #10211-D: cannot resolve archive C:/ti/ccsv5/tools/compiler/c6000_7.4.2/lib/libc.a to a compatible library, as no input files have been encountered
    fatal error #10009: no input files

    This message indicates that no input object files are being passed to the linker, and that can be confirmed by looking at the command line as well. So there is really nothing for the linker to do as there are no input files.  I'm not familiar with the output from c6flo and how that feeds into the CCS project, but basically there needs to be either source files or object files that are part of the project and that get passed to the linker.

  • I just had the same problem and found it was because I had renamed my main.c to I2C_1 instead of I2C_1.c.  Duh.  Good luck!

  • That worked for me, too.  I created the source code file without changing the extension to .c