Re: how to develop library ( .a and .so files) ! URGENT!!!



zoltan wrote:
> Hi all,
> This is REALLY urgent. I need some pointers/ links/suggestions on
> how to develop a library using C. The library needs to be made generic
> afterwards by using C++. Any ideas? The target is to develop a library
> to implement a DNS Query, so I guess it should be a file in .a or .so
> format. Any help will be greatly appreciated. Really urgent. Googling
> didn't help at all. Thanks a lot...
>
> Regards,
>
> Timmy Jose.
>
Write functions in a C file then compile the file using -shared
if you use gcc. The result is a dll (.so).
The question is OT on c.l.c.


--
Ioan - Ciprian Tandau
tandau _at_ freeshell _dot_ org (hope it's not too late)
(... and that it still works...)
.



Relevant Pages