This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: autotools transition report: v 28.07
On Mon, Jul 28, 2003 at 12:03:41PM +0200, Andreas Tobler wrote:
> Hi Phil,
>
> I doubt if I get directly to you. So I cc libstdc++.
(That's not a bad idea. This stuff should be archived. Also, some domains
seem to be blocked at jaj.com, I'm not sure.)
> -I/Volumes/xufs/gcc-cvs-clean/gcc/libstdc++-v3/libsupc++ -O2 -g -O2 -g
> -O2 -c -o testsuite_hooks.o `test -f
> '/Volumes/xufs/gcc-cvs-clean/gcc/libstdc++-v3/testsuite/testsuite_hooks.cc'
> || echo
> '/Volumes/xufs/gcc-cvs-clean/gcc/libstdc++-v3/testsuite/'`/Volumes/xufs/gcc-cvs-clean/gcc/libstdc++-v3/testsuite/testsuite_hooks.cc
> /bin/sh: @glibcxx_CXX@: command not found
> make[2]: *** [testsuite_hooks.o] Error 127
I forgot to include scripts/testsuite_flags.in in the new tarball.
You'll need one line changed as below. Also, I'll roll another tarball.
Index: scripts/testsuite_flags.in
===================================================================
RCS file: /home/pme/Repositories/GCC/gcc/libstdc++-v3/scripts/testsuite_flags.in,v
retrieving revision 1.3
diff -u -r1.3 testsuite_flags.in
--- scripts/testsuite_flags.in 21 Jul 2003 22:12:53 -0000 1.3
+++ scripts/testsuite_flags.in 25 Jul 2003 20:41:39 -0000
@@ -42,7 +42,7 @@
;;
--build-cxx)
PCHFLAGS="@glibcxx_PCHFLAGS@"
- CXX_build="@glibcxx_CXX@ ${PCHFLAGS}"
+ CXX_build="@CXX@ ${PCHFLAGS}"
CXX=`echo "$CXX_build" | sed 's,gcc/xgcc ,gcc/g++ ,'`
echo ${CXX}
;;