Mail Archives: djgpp/1998/06/01/13:04:02
On Thu, 28 May 1998, Nate Eldredge wrote:
> The site at my ISP is accessible only by HTTP, not FTP. That might be a
> problem for some people.
I guess most of the people will be able to live with that.
> I don't know if I'd have the time to maintain the debugging and profiling
> libraries. The normal one is probably okay, since that's just a little
> ar'ing here and there.
Since you begin with ready libraries, adding an object to debugging
and profiling libraries is also just a little ar'ing:
gcc @options -c foo.c
ar rvs libc.a foo.o
gcc @options -c -g foo.c
ar rvs libc_g.a foo.o
gcc @options -c -pg foo.c
ar rvs libc_p.a foo.o
- Raw text -