[Bug libstdc++/61011] New: libstdc++-v3 should be target-libstdc++-v3 in top level configure
pierre.labastie at neuf dot fr
gcc-bugzilla@gcc.gnu.org
Wed Apr 30 10:43:00 GMT 2014
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=61011
Bug ID: 61011
Summary: libstdc++-v3 should be target-libstdc++-v3 in top
level configure
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: pierre.labastie at neuf dot fr
When passing --disable-libstdcxx to top level configure the following code is
executed:
------------
if test "${ENABLE_LIBSTDCXX}" = "no" ; then
noconfigdirs="$noconfigdirs libstdc++-v3"
fi
------------
This does not have the desired effect, since "make" still tries to build the
target libstdc++.
The above code should be changed to:
------------
if test "${ENABLE_LIBSTDCXX}" = "no" ; then
noconfigdirs="$noconfigdirs target-libstdc++-v3"
fi
------------
Thanks
More information about the Gcc-bugs
mailing list