Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_linux_programming thread: Re: How to program (create/use) dynamic link library under Linux (or Unix)?


Message #1 by millward@m... on Fri, 3 Aug 2001 15:01:59
> The subject probably says it all.  Thanks for any help, pointer, cuss 
:-)
> 
> Vh
Linux does not use DLL. It uses dynamic shared
libraries. To create a dsl using source hello.c
  gcc -share -fPIC -o libhello.so hello.c

  Return to Index