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

And I receive this error:

error: linker script not specified

Any clues? Here's the entire makefile:

----------
CC = sdcc
CFLAGS = -mpic14 -p16f877 

all: main.o sci.o lcd.o delay.o buttons.o trital.o 
  $(CC) $(CFLAGS) $? 

clean: 
  del *.o

.c.o:
  $(CC) $(CFLAGS) -c $<
---------

Thankful for help!

// David

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Sdcc-user mailing list
Sdcc-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sdcc-user

Reply via email to