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 trying to run my sample code which is running on linux ubuntu platform.
When I tried to run the same code on CCS v5.3 with linux (compiler 7.4.2),
<< I am trying to run my sample application on SIMULATOR with C6000 FAMILY and VARIANT as C66XX >>
I am getting following error for the mentioned header files :
Description Resource Path Location Type
#5 could not open source file "fcntl.h" sample.h /sample1/include line 22 C/C++ Problem...
SAME ERROR IS WITH :
# include <unistd.h>
# include <sys/time.h>
# include <sys/stat.h>
I got that files in below mentioned location :
"/usr/include/x86_64-linux-gnu/sys/"
I have added that location into the properties->c6000 complier->include option ,but getting following error :
#3 #include file "/usr/include/x86_64-linux-gnu/sys/fcntl.h" includes itself
Please tell me How I can resolve this issue ??
-Studinstru
Hi,
is this your code or an unmodified example? It seems, as the error states and with little information, you may have header files circularly referencing each other. This is not good. This is the first thing I would check for.
Best Regards,
Lisa
Lisa,
I got that files in below mentioned location :
"/usr/include/x86_64-linux-gnu/sys/"
I have added that location into the properties->c6000 complier->include option ,but getting following error :
#3 #include file "/usr/include/x86_64-linux-gnu/sys/fcntl.h" includes itself
Actually I should not add this path to compile in ccs.
At the start , it tried to run my linux working code on CCS 5.3.
I got the below error
Description Resource Path Location Type
#5 could not open source file "fcntl.h" sample.h /sample1/include line 22 C/C++ Problem...
am using fcntl.h file for open ,read ,write etc ..purpose .But when I tried to run it on CCS am not able to run this .The above mentioned errors am getting .
Tell me the other header file to add in code (option for fcntl.h and unistd.h )
PLease help me to resolve this issue.
-Studinstru
Hi,
unfortunately you have not provided the requested further information
- did you check for circular references?
- is this your own code or an unmodified example? If your own code ... for sure the first place I would look is the first tip (circular references)
Best Regards,
Lisa
HI Lisa,
Sorry for the late reply.
I tried to put my info and scenario that I am facing now.
Actually This code written by me only ,which is working fine on Linux.
But when I tried to run on CCS i am facing the above problem.
As you mentioned check circular references,the above problem is created caz of adding the include path of basic files twicely .
But Now I am not getting that error.But am getting new errors like redefinition of the enum variable .
I have added my enum structure in one header file under -
#ifndef ENUM_USED_H_
#define ENUM_USED_H_
---------------
--------------
#endif
Though there is #ifndef and #define is there still it is telling redefinition of the enum structure.
I have not given the same enum in other files other than enum_used.h file.
Please let me know that any thing is remaining.
<<GIVEN CODE IS WRITTEN BY ME ONLY >>
-Studinstru
Hi,
there is nothing suspicious in what you have shown here. Somewhere there is another define or in order to see if there is an issue more details and/or a reproducable test case would be needed.
Best Regards,
Lisa