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

Reply via email to