Subject: Re: lib/37473 (Statically linked executables are much larger in
To: None <ad@NetBSD.org, gnats-admin@netbsd.org, netbsd-bugs@netbsd.org,>
From: Joerg Sonnenberger <joerg@britannica.bec.de>
List: netbsd-bugs
Date: 12/04/2007 16:50:04
The following reply was made to PR lib/37473; it has been noted by GNATS.

From: Joerg Sonnenberger <joerg@britannica.bec.de>
To: gnats-bugs@NetBSD.org
Cc: 
Subject: Re: lib/37473 (Statically linked executables are much larger in
	-current)
Date: Tue, 4 Dec 2007 17:47:05 +0100

 On Tue, Dec 04, 2007 at 04:44:57PM +0000, joerg@netbsd.org wrote:
 > ad imported jemalloc.
 
 Problem is that jemalloc using strerror_r for mmap and munmap errors.
 This pulls in snprintf and with that the whole stdio chain. I'm not sure
 if errors at this point are of great interest and maybe would just match
 the interesting case of ENOMEM with a hard-coded error message.
 
 Joerg