Related articles |
---|
Symbols in library. atandin@free.fr (2003-07-31) |
Re: Symbols in library. v.Abazarov@attAbi.com (Victor Bazarov) (2003-08-04) |
Re: Symbols in library. artiegold@austin.rr.com (Artie Gold) (2003-08-04) |
Re: Symbols in library. alfps@start.no (2003-08-10) |
Re: Symbols in library. atandin@free.fr (2003-08-20) |
Re: Symbols in library. kamalp@acm.org (2003-08-23) |
Re: Symbols in library. vbdis@aol.com (2003-08-23) |
Re: Symbols in library. david.thompson1@worldnet.att.net (Dave Thompson) (2003-09-01) |
From: | vbdis@aol.com (VBDis) |
Newsgroups: | comp.compilers |
Date: | 23 Aug 2003 23:16:11 -0400 |
Organization: | AOL Bertelsmann Online GmbH & Co. KG http://www.germany.aol.com |
References: | 03-08-054 |
Keywords: | symbols, linker |
Posted-Date: | 23 Aug 2003 23:16:11 EDT |
atandin@free.fr (Torbak) schreibt:
>I fact my question should be shortly discribe like this : Libraries
>are files wich contain compiled code. Then to be linked, they contain
>symboles description to discribe to the linker where it can find
>functions which are accesible in the library.
It's just the linker which also has to know about private/static functions, so
that these also can be linked into a program.
>I use microsoft C compiler.
If you really want the names of static functions to disappear, then make the
library a DLL. Then the linker can resolve all internal references when linking
the DLL, so that only the exported (non-static) names remain visible in the
exports section of the DLL.
DoDi
Return to the
comp.compilers page.
Search the
comp.compilers archives again.