[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [avr-gcc-list] Exporting functions as lib
From: |
James A. Russo |
Subject: |
RE: [avr-gcc-list] Exporting functions as lib |
Date: |
Sun, 14 Dec 2003 09:34:44 -0500 |
Chris,
I typically just create the archive from the .o files in my
makefile.
Ex:
$(AR) -rcs libsensor.a sensor.o support.o
That will give you a libsensor.a suitable for -lsensor.
-jr
> The real question is: How do I get a file that is suitable to link
> against.