Hi, all
I'm building DM365 app code, but met error as below:
make[4]: Entering directory `/home/aaron/ipnc/ipnc_app/multimedia'Making all in subdirectory avi_save...make[5]: Entering directory `/home/aaron/ipnc/ipnc_app/multimedia/avi_save'/opt/mv_pro_5.0/montavista/pro/devkit/arm/v5t_le /bin/arm_v5t_le-gcc -fomit-frame-pointer -Wdeclaration-after-statement -Wall -Wno-switch -Wdisabled-optimization -Wpointer-arith -Wredundant-decls -Wcast-qual -Wwrite-strings -O3 -fno-math-errno -I./include -I/home/aaron/ipnc/ipnc_app/interface/inc -I./include/libavutil -I./include/libavcodec -I./include/libavformat -I./include/libswscale -I./include/libavdevice -I./include/libavfilter -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_ISOC9X_SOURCE -c -o Appro_avi_save.o Appro_avi_save.cmake[5]: execvp: /opt/mv_pro_5.0/montavista/pro/devkit/arm/v5t_le: Permission deniedmake[5]: *** [Appro_avi_save.o] Error 127
I use root to build this, dont know why it said I do not has the Permission. And I have check the permission of folder " /home/aaron/ipnc/ipnc_app/multimedia/avi_save" it is drwxrwxrwx . Don't know what's the problem is. could you please help to look at this , thank you:)
Hi,
Can you please run "make sysall" when you are building first time
ALso, can you run chmod command to get permission for /opt/mv_pro_5.0 folder
Regards,
Raghu
Please mark this reply as Verify Answer on this post if it answers the question.
Pan Aaronmake[5]: Entering directory `/home/aaron/ipnc/ipnc_app/multimedia/avi_save'/opt/mv_pro_5.0/montavista/pro/devkit/arm/v5t_le /bin/arm_v5t_le-gcc
There's a space after 'v5t_le' in your directory path. As a result, the build is trying to _execute_ a directory and [correctly] giving you a "Permission denied" error.
Pan Aaronmake[5]: execvp: /opt/mv_pro_5.0/montavista/pro/devkit/arm/v5t_le: Permission denied
Chris
oh, yes! it's ok now!
thank you very much!