Re: [dev] libdraw development

2010-09-04 Thread pancake
Function per file is because the stupid gnu linker does not statically compile functions. Only objects. Afaik. This way the resulting bin can be smaller. - Original message - > 2010/9/3 Connor Lane Smith : > > > Oh, wait, you are creating a new library that uses those libraries! > > > So

Re: [dev] libdraw development

2010-09-04 Thread Uriel
On Sat, Sep 4, 2010 at 12:34 AM, Connor Lane Smith wrote: > One file per function means a binary will only link the objects it needs, which helps keep binary size down when statically linking The linker should be capable of including only the symbols that are actually used in the program. uriel