C:\Documents and Settings eacher\Desktop\camera\frc_camera\camera.c:30:Error [1027] unable to locate ‘stdio.h’
I get this message each time i try and compile this project what can i do to change it
Any help would be greatly appreciated
C:\Documents and Settings eacher\Desktop\camera\frc_camera\camera.c:30:Error [1027] unable to locate ‘stdio.h’
I get this message each time i try and compile this project what can i do to change it
Any help would be greatly appreciated
Looks like you may be running into the path limitation. The compiler can’t handle paths with more than 63 characters, so move it closer to the root of your hard drive…
I got the same thing wen i moved it closer
Clean: Deleting intermediary and output files.
Clean: Done.
Executing: “c:\mcc18\bin\mcc18.exe” -p=18F8722 “camera.c” -fo=“camera.o” -Ou- -Ot- -Ob- -Op- -Or- -Od- -Opa- -nw=2066 -D_FRC_BOARD
C:\frc_camera\camera.c:30:Error [1027] unable to locate ‘stdio.h’
Halting build on first failure as requested.
BUILD FAILED: Sat Feb 18 18:44:17 2006
in MPLAB, open your workspace [mcw file], go to Project [menu] -> built options -> project, and in the field labeled Include Path $(INCDIR), insert C:\mcc18\h
that making the assumption you installed C18 in its default diurectory [if not, change that address to your specific C18 folder\h]
good luck