Date: Mon, 1 Jun 1998 20:01:14 +0300 (IDT) From: Eli Zaretskii To: Nate Eldredge cc: Thomas Demmer , djgpp AT delorie DOT com Subject: Re: BUGREPORT tmpfile() doesn't open in O_BINARY mode !!! In-Reply-To: <19980528232445.AAG7077@ppp101.cartsys.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk 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