* configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.

From-SVN: r40893
This commit is contained in:
Alexandre Oliva 2001-03-28 01:18:00 +00:00 committed by Alexandre Oliva
parent 8653a2c31c
commit a076f6a483
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-03-27 Alexandre Oliva <aoliva@redhat.com>
* configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
2001-03-22 Colin Howell <chowell@redhat.com>
* Makefile.in (DO_X): Do not backslash single-quotes in

View File

@ -1456,7 +1456,7 @@ fi
if test "x${CXX_FOR_TARGET+set}" = xset; then
:
elif test -d ${topsrcdir}/gcc; then
CXX_FOR_TARGET='$$r/gcc/g++ -B$$r/gcc/ -nostdinc++ '$libstdcxx_flags
CXX_FOR_TARGET='$$r/gcc/`case $$dir in libstdc++-v3) echo xgcc ;; *) echo g++ ;; esac` -B$$r/gcc/ -nostdinc++ '$libstdcxx_flags
elif test "$host" = "$target"; then
CXX_FOR_TARGET='$(CXX)'
else