Hello everybody.Now I am working on the SEED OMAPL137 evm board.
I downloaded the "Example application using DSP Link on OMAPL1x (TI wiki)" related docunments and tried to build the project in Linux
I changed BASE_TOOLCHAIN, DSPLINK etc according to my installation and DSPLINK version.
The DSP side building is correct, however, the GPP side is not built:
[root@David helloDSPgpp_1_10]# make
make: execvp: /opt/montavista/pro/devkit/arm/v5t_le: permission denied
make:*** [Debug/helloDSP.o] ERROR 127
The GPP side makefile is "rwx" and BASE_TOOL_CHAIN, CC, DSPLINK are correct. Also arm_v5t_le-gcc is correct when build other projects.
So how to solve this problem?
I used the CodeSourcery toolchain on my project but I had no problems building helloDSP using the Montavista toolchain. Here's my settings in Makefile:
BASE_TOOLCHAIN := /opt/mv_pro_5.0/montavista/pro/devkit/arm/v5t_leCC := arm_v5t_le-gccDSPLINK := /opt/OMAPL137_arm_1_00_00_11/dsplink-1_61_03-prebuilt/packages/dsplink
Your paths will be different. May check the permissions on the directory
/opt/montavista/pro/devkit/arm/v5t_le
Thanks.
I used the Montavista toolchain and the permissions on the /opt/montavista/pro/devkit/arm/v5t_le is correct. There is no error when using arm_v5t_le-gcc to build other codes .