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 while "make clean" on dm6467t dvsdk 3.10.00.19.

Hi,

I've recently tried to install the new version of dvsdk (3.10.00.19), but I can't finish the procedure indicated in
http://processors.wiki.ti.com/index.php/GSG:_DVEVM_Software_Setup_for_DM6467_Platforms
because when I try to issue the "make clean" command I've got the following error messages:

gguerrero@wfmdevstationU:~/

alternative_dvsdk/dvsdk_3_10_00_19$ make clean
make -C /home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/linuxutils_2_25_04_10/packages/ti/sdo/linuxutils/cmem/src/module clean RULES_MAKE=/home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/Rules.make
make[1]: Entering directory `/home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/linuxutils_2_25_04_10/packages/ti/sdo/linuxutils/cmem/src/module'
rm -rf *.o *mod* *.ko .cmem* .tmp*
make[1]: Leaving directory `/home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/linuxutils_2_25_04_10/packages/ti/sdo/linuxutils/cmem/src/module'
make -C /home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/linuxutils_2_25_04_10/packages/ti/sdo/linuxutils/cmem/src/interface clean RULES_MAKE=/home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/Rules.make
make[1]: Entering directory `/home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/linuxutils_2_25_04_10/packages/ti/sdo/linuxutils/cmem/src/interface'
rm -rf release debug *~
rm -f ../../lib/cmemd.a470MV ../../lib/cmemd.a470uC ../../lib/cmem.a470MV ../../lib/cmem.a470uC
make[1]: Leaving directory `/home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/linuxutils_2_25_04_10/packages/ti/sdo/linuxutils/cmem/src/interface'
make -C /home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/dmai_2_10_00_12 PLATFORM=dm6467_al \
        XDC_INSTALL_DIR_dm6467_al=/home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/xdctools_3_16_01_27 clean
make[1]: Entering directory `/home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/dmai_2_10_00_12'
make -C ./packages/ti/sdo/dmai clean
make[2]: Entering directory `/home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/dmai_2_10_00_12/packages/ti/sdo/dmai'
Removing generated files..
/home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/xdctools_3_16_01_27/packages/xdc/bld/xdc_rules.mak:161: *** The macro XDCPATH must not contain any spaces in pathnames.  Stop.
make[2]: *** [clean] Error 2
make[2]: Leaving directory `/home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/dmai_2_10_00_12/packages/ti/sdo/dmai'
make[1]: *** [clean] Error 2
make[1]: Leaving directory `/home/gguerrero/alternative_dvsdk/dvsdk_3_10_00_19/dmai_2_10_00_12'
make: *** [dmai_clean] Error 2

What can I do?
  • HI Gerard,

    Could you verify that the Rules.make file in the top level directory of the DVSDK installation does not have a space in the middle of any path names specified by the *_INSTALL_DIR variables? Pay special attention to the end of each line as well in case there are trailing spaces.

    Best regards,

    Vincent

  • Hi Vincent,

    I've solved the problem. It was caused by a declaration of the XDCPATH variable in the shell environment. I

     declared that because of some tutorials I was doing before starting with all development. I've erased that variable

    and all worked fine.

    Anyways, I'll check the Rules.make looking for missing ending spaces. That won't harm!

     

    Thanks for your answer!