This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: Cannot bootstrap libstdc++ on trunk
- To: Peter Schmid <schmid at snake dot iap dot physik dot tu-darmstadt dot de>
- Subject: Re: Cannot bootstrap libstdc++ on trunk
- From: Benjamin Kosnik <bkoz at redhat dot com>
- Date: Sat, 1 Sep 2001 08:05:55 -0700 (PDT)
- cc: libstdc++ at gcc dot gnu dot org
> I do not understand why for a successful build of the current
> libstdc++ library the msgfmt command is required when gcc is configured
> with the --disable-nls option.
> --host=i686-pc-linux-gnu --enable-shared --enable-threads=posix
> --enable-languages=c,c++,f77,objc --disable-nls --enable-clocale=gnu
because of --enable-clocale=gnu, msgfmt is needed. there are no sanity
checks on this configure option at the moment: if you select it and
gettext functionality is missing, you bomb out.
-benjamin