Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2001-03-28 05:19:29 +0400
committerAlexandre Oliva <aoliva@redhat.com>2001-03-28 05:19:29 +0400
commit6222b61feede1fd534c7ec1292f7cb51237bd201 (patch)
tree59a05a0c2371fd808318ab369fe8b8c1a39d918c
parent37a2d97a319c990cd19d99e235dfed47b29639a6 (diff)
* configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
-rw-r--r--ChangeLog4
-rw-r--r--configure.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c3555a7d7..20e7124dd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-03-27 Alexandre Oliva <aoliva@redhat.com>
+
+ * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
+
2001-03-23 Nick Clifton <nickc@redhat.com>
* README-maintainer-mode: Add note about inability to use "make
diff --git a/configure.in b/configure.in
index e2a7f9794..535747002 100644
--- a/configure.in
+++ b/configure.in
@@ -1374,7 +1374,7 @@ esac
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