This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Error occurs in libstdc++-v3/include is ignored
- From: Hideki IWAMOTO <h-iwamoto at kit dot hi-ho dot ne dot jp>
- To: gcc at gcc dot gnu dot org
- Date: Thu, 17 Jun 2004 02:33:23 +0900
- Subject: Error occurs in libstdc++-v3/include is ignored
Even if an error occurs in libstdc++-v3/include,
libstdc++-v3/configure ignores it and continues building.
/home/iwamoto/work2/canadian-test3/mn10300-elf/am33/libstdc++-v3/include/mn10300-elf/bits/ctype_base.h:56: error: `_L' was not declared in this scope
/home/iwamoto/work2/canadian-test3/mn10300-elf/am33/libstdc++-v3/include/mn10300-elf/bits/ctype_base.h:56: error: `_N' was not declared in this scope
make[1]: *** [mn10300-elf/bits/stdc++.h] Error 1
make[1]: Leaving directory `/home2/iwamoto/work/canadian-test3/mn10300-elf/am33/libstdc++-v3/include'
Running configure in multilib subdir am33-2
pwd: /home/iwamoto/work2/canadian-test3/mn10300-elf
mkdir am33-2
configure: creating cache ./config.cache
checking build system type... i686-pc-linux-gnu
checking host system type... mn10300-unknown-elf
checking target system type... mn10300-unknown-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
Why doesn't it stop like this?
Index: configure.ac
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/configure.ac,v
retrieving revision 1.14.4.2
diff -u -r1.14.4.2 configure.ac
--- configure.ac 31 May 2004 21:18:53 -0000 1.14.4.2
+++ configure.ac 16 Jun 2004 17:12:24 -0000
@@ -343,7 +343,7 @@
done
rm vpsed
fi
- (cd include && ${MAKE-make})
+ (cd include && ${MAKE-make}) || { (exit 1); exit 1; }
],
[
# Variables needed in config.status (file generation) which aren't already
----
Hideki IWAMOTO h-iwamoto@kit.hi-ho.ne.jp