From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Puneet Singhal" To: "Suraj Chatrath" , Subject: RE: info Date: Tue, 20 Feb 2001 23:27:00 -0000 Message-id: References: <19CC5A519D17D2118E9C0008C7F4327502E4F3D8@twrmsg02> X-SW-Source: 2001-02/msg00179.html Hi Suraj >1) what is a shared object? a shared object is a piece of code which is like a DLL on a windows problem. at link time of a proggy only the adresses of symbols are added to the exec. At runtime the shared object is loaded.Its path must appear in LD_LIBRARY_PATH >2)how to make a shared object in unix........ you can use GCC for it. for *compiling* use the switch -fPIC and then use -shared to create the library. it usually has an extension of .so. >Is there any material avilable on the net from where i can get a check out the manuals on gcc.gnu.org cheers Puneet