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/TM4C1294NCPDT: Error upon trying to build file: subdir_rules.mk:19: recipe for target 'build-945776145-inproc' failed

Part Number: TM4C1294NCPDT

Tool/software: Code Composer Studio

When I attempt to build the program I created this error occurs.

subdir_rules.mk:19: recipe for target 'build-945776145-inproc' failed
js: "C:/ti/xdctools_3_50_07_20_core/packages/xdc/tools/Cmdr.xs", line 52: Error: xdc.tools.configuro: Error: no target named: please use -t, -b, or --cb
gmake[1]: *** [build-945776145-inproc] Error 1
gmake: *** [build-945776145] Error 2
subdir_rules.mk:16: recipe for target 'build-945776145' failed
gmake: Target 'all' not remade because of errors.

**** Build Finished ****

  • Kevin,

    Which version of CCS are you running? Do you have any anti-virus running that could be interfering with the build (as mentioned in the referenced thread)?

    Can you try building other programs (such as example projects from TivaWare) and let us know if those are successful?

  • Hello AartiG,

    I am running  Version: 8.1.0.00011. I have turned off my anti-virus software but it did not have any effect. Yes, other example projects from TivaWare build without this error. The main thing I wanted to know was what could cause an error like this. I was thinking it had something to do with the program not being able to access the libraries I downloaded from TI but I have redownloaded the libraries and that hasn't changed anything either. Are there any other things that could be causing this error?

  • There isn't one specific cause I can point to that triggers the error.

    Is this your own custom project? And is it a RTSC project? The message seems to indicate that the build is invoking xdctools but there appears to be no target named.
  • This is my own project. At first when I attempted to build this program it gave an error saying that a .cfg file did not exsist. So I created a new .cfg file but it has nothing in it, would the xdctools be attempting to invoke something in the .cfg file that should exsist there?
  • It sounds like you want to work with a non-RTSC project. RTSC/TI-RTOS projects require a .cfg file, non-RTSC projects do not. Most TivaWare examples do not use TI-RTOS hence do not include a .cfg file. I believe that having an empty .cfg file in your project, when in reality you likely don't need one, is the source of your problems. I would suggest using one of the TivaWare example projects as a starting point, perhaps make a copy of it and then replace/modify the source files and settings as needed.
  • Yes, that worked thank you.