This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug bootstrap/34922] toplevel ./configure --help is incomplete
- From: "Ralf dot Wildenhues at gmx dot de" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 22 Jan 2008 17:32:08 -0000
- Subject: [Bug bootstrap/34922] toplevel ./configure --help is incomplete
- References: <bug-34922-11811@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #2 from Ralf dot Wildenhues at gmx dot de 2008-01-22 17:32 -------
(In reply to comment #0)
>
> libstdc++-v3 gives:
> $ ../../src/gcc-4.3/configure --disable-libstdc++-v3
> configure: error: invalid feature name: libstdc++-v3
This error is from the Autoconf code that parses arguments, it currently
disallows characters other than alphanumeric, minus, dot, or underscore
in --enable/--disable/--with/--without arguments. I suppose this should
be fixed in Autoconf.
However, there is also a bug in configure.ac, and with that fixed, you
will be able to use
--disable-libstdc__-v3
(i.e., with the plus signs converted to underscore). Once GCC switches
to a fixed Autoconf version, the plus sign conversion will not be needed
any more.
Patch posted at <http://gcc.gnu.org/ml/gcc-patches/2008-01/msg01029.html>.
Cheers,
Ralf
--
Ralf dot Wildenhues at gmx dot de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |Ralf dot Wildenhues at gmx
| |dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34922