Re: [Sdcc-user] Error: linker script not specified

2008-02-08 Thread sdcc
David Henningsson schrieb: > I'm trying to link my program (using sdcc windows snapshot from > yesterday), using this command: > > sdcc -mpic14 -p16f877 main.o sci.o lcd.o delay.o buttons.o trital.o Try adding -Wl-s16f877.lkr to the sdcc call and copy the appropriate lkr file to you project

Re: [Sdcc-user] ANNOUNCEMENT: GNU/Gtk BlowIT project under new management.

2008-02-08 Thread Moses McKnight
> By they way gang: I'm right now trying to make a decision between using > XML files to store configuration information or if I want to use GConf > instead. What I'm wrestling with there is I'm not sure I want to make > folks dependent on the GNOME environment. > > Thoughts anybody? My thought

Re: [Sdcc-user] ANNOUNCEMENT: GNU/Gtk BlowIT project under new management.

2008-02-08 Thread Peter L. Berghold
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ken Jackson wrote: > > BTW, you didn't mention the SourceForge URL: > > > Oops! Thanks for that! :-) By they way gang: I'm right now trying to make a decision between using XML files to store configuration i

[Sdcc-user] ANNOUNCEMENT: GNU/Gtk BlowIT project under new management.

2008-02-08 Thread Ken Jackson
Excellent! I love using Linux for development, but the one area where I always ran into problems was programming devices. I kept a Win2K machine under my desk so I could copy the hex files to it and burn them with crappy proprietary programmers. What a shame! Only with avrdude

[Sdcc-user] ANNOUNCEMENT: GNU/Gtk BlowIT project under new management.

2008-02-08 Thread Peter L. Berghold
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi folks, After talking with the original owner of the GNU/Gtk BlowIT project on SourceForge I have taken over ownership of the project. I've been actively working on the code and plan some big things for the project. What is GNU/Gtk BlowIT? It is

[Sdcc-user] Error: linker script not specified

2008-02-08 Thread Ken Jackson
I don't know the answer to your question, but I think I see a problem with the Makefile. Try replacing this line $(CC) $(CFLAGS) $? With this: $(CC) $(CFLAGS) $^ The $? variable gives you "the names of all the prerequisites that are newer than the target," but you don't want a partial l