hi,
I am using CCS v5.2. I installed av_bios_sdk_00_08_00_00 to my pc. when i try to run the BIOS_AVSDK project for BOP(back over prevention) program i got this error. I am using xdctools_3_24_03_33. please help me in solving his error..
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.
hi,
I am using CCS v5.2. I installed av_bios_sdk_00_08_00_00 to my pc. when i try to run the BIOS_AVSDK project for BOP(back over prevention) program i got this error. I am using xdctools_3_24_03_33. please help me in solving his error..
Hi Shalini,
for what device is this for? I'm not familiar with what product you are using.
Hi Tom,
Thanks for your reply.I am using
Shalini,
to help debugging the problem you can do a couple of things:
1. Open the config script BIOS_AVSDK_videoM3.cfg, and add the following line at the end:
xdc.module("xdc.cfg.SourceDir").verbose = 4;
You should get a little bit more output in the console window.
2. Check the access permissions on the directory C:/av_bios_sdk_00_08_00_00/avsdk_00_08_00_00/demos/avsk_app/video_m3/ccs_build/src and on files in it. The directory or files in it could be readonly, while gmake is trying to change files or add new ones.
Hi Sasha,
Thanks for the reply.
I added xdc.module("xdc.cfg.SourceDir").verbose = 4; line in BIOS_AVSDK_videoM3.cfg. In spite of that also i am getting the same error.
And also i checked the access permission. It is read only as you said. So what I have to do further.
Regards,
Shalini
Shalini,
you need to have write access to build the libraries.
Can you give "C:/av_bios_sdk_00_08_00_00" write access for all its sub-directories?
Shalini,
setting
xdc.module("xdc.cfg.SourceDir").verbose = 4;
is not going to correct any error. It is supposed to display more output that could help debugging. Can you check if there is more output in the console window, and then post that new output?
The error you are getting happens at the moment when XDCtools is executing some shell commands, and we need to find out which command is failing.
shalini c said:Starting build of library sources ...cd C:/av_bios_sdk_00_08_00_00/avsdk_00_08_00_00/demos/avsk_app/video_m3/ccs_build/srcC:/av_bios_sdk_00_08_00_00/xdctools_3_24_03_33/gmake.exe -f C:/av_bios_sdk_00_08_00_00/avsdk_00_08_00_00/demos/avsk_app/video_m3/ccs_build/src/makefile.libs GEN_SRC_DIR=C:/av_bios_sdk_00_08_00_00/avsdk_00_08_00_00/demos/avsk_app/video_m3/ccs_build/srcmaking C:/av_bios_sdk_00_08_00_00/avsdk_00_08_00_00/demos/avsk_app/video_m3/ccs_build/src/ipc.aem3 ...process_begin: CreateProcess(NULL, C:\ti\ccsv5\utils\bin --no-print-directory -C C:/av_bios_sdk_00_08_00_00/avsdk_00_08_00_00/demos/avsk_app/video_m3/ccs_build/src/ipc, ...) failed.make (e=5): Access is denied.
Shalini,
it seems that your project is trying to execute a directory (marked in red), which causes the error message "Access is denied". I don't really know how that could happen, the only way I could replicate the problem is to open src/makefile.libs in a text editor and then manually change the value of $(MAKE) to point to C:\ti\ccsv5\utils\bin. What's the content of that file in your project?
I also think you should post this to the CCS forum too. They may have more experience with this kind of problem.