dsPIC compiler issues - Printable Version +- ds30 Loader free edition forums (https://picbootloader.com/forum) +-- Forum: Support (https://picbootloader.com/forum/forumdisplay.php?fid=3) +--- Forum: 16-bit firmwares (https://picbootloader.com/forum/forumdisplay.php?fid=6) +--- Thread: dsPIC compiler issues (/showthread.php?tid=2347) |
dsPIC compiler issues - richcj10 - 2015-03-17 I am trying my luck on the dspic33FJ128GP804 and tryed compiling code with:
Code: make -f nbproject/Makefile-default.mk SUBPROJECTS= .build-conf Do I have somthing misconfiggured? RE: dsPIC compiler issues - slacker - 2015-03-18 I've had the same errors, these warnings "src/ds30loader.s:62: Error: can't open settings.inc for reading" mean it can't find the .inc files and because of that it fails to build. In my case it was because I was using MPLABX and it created its own project folder in the same directory as the src folder so I had to go through the files and change any reference to src/somefilename.inc to ../src/somefilename.inc to give it the correct path to the files relative to the new project folder, or I guess I could have moved the src folder into the MPLABX generated folder. I've used it with the same pic and it works fine using XC16. RE: dsPIC compiler issues - richcj10 - 2015-03-24 I have the software compiling now. Moving the files to the root directory of the project worked for me. I need to configure PPs next. Thanks for the help! |