This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libstdc++/61011] New: libstdc++-v3 should be target-libstdc++-v3 in top level configure


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]