Building a library

Started by
0 comments, last by Rene 24 years, 3 months ago
How do i build a library with GCC (djgpp), or should i use the linker LD. - Thanx
Advertisement
You use the ar utility after you''ve compiled the source file(s) to their object file(s). Generally the form is:

ar rsv libname.a obj1.o obj2.o objN.o

Rock

This topic is closed to new replies.

Advertisement