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.

Error in Compilation DSPlink

Hi,

During dsplink build,  When i give "gmake  -s " command inside  dsplink/dsp/src/samples folder I am getting error

[MPCSXFER            ] ------- INCLUDES -----------------------------------
[MPCSXFER            ] ------- DIRS ------------------ INCLUDE ------------

[SAMPLES             ] ======= OBJECTS =============== DEBUG ==============
[LOOP                ] ------- DIRS ------------------ DEBUG --------------
[LOOP                ] ------- OBJECT ---------------- DEBUG --------------
Compiling main.c...
Compiling loop_config.c...
Compiling tskLoop.c...
Compiling swiLoop.c...
Generating DSP/BIOS configuration files ...
/bin/sh: /home/lxh/ti-dvsdk_omapl138-evm_04_03_00_06/: is a directory
gmake[2]: *** [DspBios/5.XX/OMAPL138GEM/loop_tsk.tcf.deb] Error 126
gmake[1]: *** [objdeb] Error 2
gmake: *** [loop.objdeb] Error 2

What could be the problem?

How can I solve it?

thank you !

lee

 

  • Lee:

        It looks like it is coming from   ./dsplink/make/DspBios/C64XX/compile.mk

        from this make rule:

    $(source_tcf_deb):
            $(CMDECHO)$(DISPLAY) Generating DSP/BIOS configuration files ...
            $(CMDECHO)$(RUNIF) "exist $(COMP_BUILD)$(DIRSEP)BIOS_$(BUILD_MODE)" "$(RMTREE)  $(COMP_BUILD)$(DIRSEP)BIOS_$(BUILD_MODE)" ""
            $(CMDECHO)$(RUNIF) "exist $(COMP_BUILD)$(DIRSEP)BIOS_$(BUILD_MODE)" "" "$(CMDECHO)$(MKDIR) $(COMP_BUILD)$(DIRSEP)BIOS_$(BUILD_MODE)"
            $(CMDECHO)$(TCONF) $(STD_TCF_FLAGS) $(COMP_PATH)$(DIRSEP)$(TCF_FILE) $(TCF_ARGS)

    My guess is one of the makefile or environment variables is incorrect.

    You can dump the makefile variable assignments and check:

    make -qp’.

    http://www.gnu.org/software/make/manual/html_node/Options-Summary.html

    Regards,
    - Gil