Mail Archives: djgpp/1996/05/15/23:17:21
> Does 'ld' support function level linking ?
No. IBM's AIX linker does, but there's a lot of overhead involved.
> Would it be a good idea to support function level linking ?
Not for V2's libc, since we already manually split up the source files
to nearly eliminate unused functions from being linked in in the first
place. It's easier to write the code that way than to teach the
linker to fix it for you. Most code falls into one of two categories:
1. Part of a library. Manually split the code into many sources once,
and every user benefits.
2. Part of an application. Hey, you're going to use them all anyway
or you wouldn't have written them, right?
- Raw text -