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/TDA2P-ACD: DMA Utils library for DSP cannot be built

Part Number: TDA2P-ACD

Tool/software: Code Composer Studio

Hi,

I tried to build DMA Utils library for DSP, but the build did not proceed by errors.

Following is the details of my approach and please advise.

-----------------------

* Environment
 - OS
    Windows10 pro
 - Tools
    Code Composer Studio 8.1.0
    Code Generation Tools 7.4.2
  REL.DMAUTILS.00.08.00.02
* Purpose
    I want to run a DMA test program for DSP
* What I did
    I referred "DMAUtilsLibrary_UserGuide.pdf" page 12, and did follosings.
[---1st trial---]
    setting : according to the user guide
              makerules/config.mk #62,#66
              DSP_TOOLS           ?="C:\ti\ccs810\ccsv8\tools\compiler\c6000_7.4.2"
              UTILS_PATH          ?="C:\ti\ccs810\ccsv8\utils\cygwin"
    result  : C:\ti\PROCESSOR_SDK_VISION_03_07_00_00\ti_components\algorithms\REL.DMAUTILS.00.08.00.02\dmautils>gmake CORE=dsp
              /usr/bin/sh: C:\ti\ccs810\ccsv8\utils\cygwinmkdir: command not found
              C:/ti/PROCESSOR_SDK_VISION_03_07_00_00/ti_components/algorithms/REL.DMAUTILS.00.08.00.02/makerules/rules.mk:380: recipe for target '.\libs\dsp\release\\.gitignore' failed
              gmake: *** [.\libs\dsp\release\\.gitignore] Error 127
 I tried changing the settings in 2nd trial because it was probably due to the loss of "\" in the path.
[---2nd trial---]
    setting : UTILS_PATH          ?=C:\ti\ccs810\ccsv8\utils\cygwin
    result  : C:\ti\PROCESSOR_SDK_VISION_03_07_00_00\ti_components\algorithms\REL.DMAUTILS.00.08.00.02\dmautils>gmake CORE=dsp
              compiling .\drivers\src\dma_funcs.c
              /usr/bin/sh: C:ticcs810ccsv8toolscompilerc6000_7.4.2bincl6x: command not found
              C:/ti/PROCESSOR_SDK_VISION_03_07_00_00/ti_components/algorithms/REL.DMAUTILS.00.08.00.02/makerules/rules.mk:418: recipe for target      'C:\ti\PROCESSOR_SDK_VISION_03_07_00_00\ti_components\algorithms\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\dma_funcs.obj' failed
              gmake: *** [C:\ti\PROCESSOR_SDK_VISION_03_07_00_00\ti_components\algorithms\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\dma_funcs.obj] Error 127

    This time, the path on the 3rd line is not working, so I changed the settings in 3rd trial.
[---3rd trial---]
    setting : In addition to the settings above
              makerules/rules.mk #220
              CC = "$(DSP_TOOLS)\bin\cl6x"
    result  : C:\ti\PROCESSOR_SDK_VISION_03_07_00_00\ti_components\algorithms\REL.DMAUTILS.00.08.00.02\dmautils>gmake CORE=dsp
              compiling .\drivers\src\dma_funcs.c
              /usr/bin/sh: C:\ti\ccs810\ccsv8\tools\compiler\c6000_7.4.2\bin\cl6x: command not found
              C:/ti/PROCESSOR_SDK_VISION_03_07_00_00/ti_components/algorithms/REL.DMAUTILS.00.08.00.02/makerules/rules.mk:418: recipe for target 'C:\ti\PROCESSOR_SDK_VISION_03_07_00_00\ti_components\algorithms\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\dma_funcs.obj' failed
              gmake: *** [C:\ti\PROCESSOR_SDK_VISION_03_07_00_00\ti_components\algorithms\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\dma_funcs.obj] Error 127
    The path is fine on the command prompt, but command not found is displayed.
  I tried this URL solution but it didn't resolve my problem.
  (e2e.ti.com/.../845684
  What shoud I try as a next step?
-----------
Thanks,
Koji