• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

dll equivalent on Unix

 
Ranch Hand
Posts: 243
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello
I was just asked a question that what is equivalent of dll on unix platform.
Does anybody has any Idea..
Regards
Mohit Joshi
 
Ranch Hand
Posts: 919
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
that depends...
unfortunately the dos idea of a dll was a bit misimplemented my microsoft, but the basic idea came from the notion of shared libraries.
under different unices you'll find slightly different implementations of the shared libraries concept, implementing it variously in both a static or dynamic framework.
the *.sl file (dynamic), the *.a file (static), and the *.so files (dynamic) are all variations on the theme.
 
mohit joshi
Ranch Hand
Posts: 243
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for reply..
and since I dont know, what is the difference between static and dynamic compiled code. In Java a compiled code is a compiled code
(which is not machine code). So when it is changed into machine executable code, is it static or dynamic in nature?
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic