I use sdar for that - but i am not 100% sure if I understood the
question correctly

here is a snipplet from my Makefile:
=====

CC=sdcc
AR=sdar
CFLAGS=-c -mstm8 -DSTM8S105 -I ../inc --opt-code-size
LDFLAGS=-rc
#SOURCES=stm8s_flash.c stm8s_uart2.c stm8s_tim4.c stm8s_clk.c stm8s_itc.c
SOURCES=stm8s_minilib.c
OBJECTS=$(SOURCES:.c=.o)
OBJECTS_LINK=$(SOURCES:.c=.rel)
EXECUTABLE=stm8s_minilib.lib

all: $(SOURCES) $(EXECUTABLE)
   
$(EXECUTABLE): $(OBJECTS)
    $(AR) $(LDFLAGS) $(EXECUTABLE) $(OBJECTS_LINK)

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

clean:
    rm *.lib
    rm *.rst
    rm *.rel
    rm *.lst

=====

On 07/05/2014 06:02 PM, JuanPi wrote:
> Hi all,
>
> I managed to get the code compiled by sdcc now I ma trying to create a 
> library.
>
> I am using autotools and the problem I have is that when libtool calls
> sddc I get
>
> sdcc libio18f4550.lib libc18f.lib libsdcc.lib dwengoADC.lo  libdwengo.la
> at 1: warning 119: don't know what to do with file 'dwengoADC.lo'.
> file extension unsupported
> at 1: warning 119: don't know what to do with file 'libdwengo.la'.
> file extension unsupported
>
> Any suggestion on how to build a library with sdcc? The manual uses
> .lib files but I can't libtool to generate that extension
>
> Any suggestion?
>
> Thanks
>


------------------------------------------------------------------------------
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
_______________________________________________
Sdcc-user mailing list
Sdcc-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sdcc-user

Reply via email to