Re: [Sdcc-user] PIC library missing

2013-02-24 Thread Raphael Neider
Hi, > Thanks for the advice, it worked! :) I updated to gputils 1.0 Good to hear. > I don't still quite understand why, with gputils 0.13, the build > process of sdcc did not create most of the pic libraries which are > actually supported by gputils 0.13... Hm, gputils-0.13 sounds ancient, are

Re: [Sdcc-user] PIC library missing

2013-02-24 Thread Luis de Arquer
On Sat, Feb 16, 2013 at 8:06 AM, Raphael Neider wrote: > Hi, > >> I guess that is probably related to gpasm version not dealing with 18f47j53. >> >> Just in case, there are other pic18f.lib files which built >> succesfully in the sdcc tree. > > as Philipp pointed out, you should just update yo

Re: [Sdcc-user] PIC library missing

2013-02-16 Thread Raphael Neider
Hi, > I guess that is probably related to gpasm version not dealing with 18f47j53. > > Just in case, there are other pic18f.lib files which built > succesfully in the sdcc tree. as Philipp pointed out, you should just update your gputils to a version that supports your target device, e.g., by

Re: [Sdcc-user] PIC library missing

2013-02-15 Thread Luis de Arquer
Thank you for your help. I had not included -p18f47j53 because the code has a "#define __18f47j53" statement, and sdcc complained about it being defined twice (I guess now I should do it the other way around, remove the #define and leave it on the command line to make the option available to the l

Re: [Sdcc-user] PIC library missing

2013-02-15 Thread Philipp Klaus Krause
On 14.02.2013 23:12, Raphael Neider wrote: > > Can you verify that your sdcc build passed cleanly? I assume that > gputils were not found when you built sdcc, so no libraries nor > crt*.o files could be built. While this is strange, as the build > system used to bail out with an error in that si

Re: [Sdcc-user] PIC library missing

2013-02-14 Thread Raphael Neider
Hi, > 3.2.1 #8415 (Feb 10 2013) (Linux) > > which I downloaded, compiled and installed on ubuntu 12.04 > > I compiled the example code with > >> sdcc -mpic16 --use-non-free crt0i.o toggle_led.c You are at least missing a command line parameter: -p18f47j53 While it is strange that libdev18f452 (th

[Sdcc-user] PIC library missing

2013-02-14 Thread Luis de Arquer
Hi, I am a new user of sdcc and I was trying to compile and link a simple program for the pic 18f47j53. First of all, the sdcc version I am using is 3.2.1 #8415 (Feb 10 2013) (Linux) which I downloaded, compiled and installed on ubuntu 12.04 I compiled the example code with > sdcc -mpic16 --u