This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: target/56:(FIXED) [Alpha] Error defining static member in templates with initialization
- From: "Gareth Pearce" <tilps at hotmail dot com>
- To: <neroden at gcc dot gnu dot org>,<clemens dot hintze at alcatel dot de>,<gcc-bugs at gcc dot gnu dot org>,<martin at loewis dot home dot cs dot tu-berlin dot de>,<nobody at gcc dot gnu dot org>,<gcc-gnats at gcc dot gnu dot org>
- Date: Tue, 14 Jan 2003 14:35:03 +1100
- Subject: Re: target/56:(FIXED) [Alpha] Error defining static member in templates with initialization
- References: <20030111222818.16063.qmail@sources.redhat.com> <OE41NRF81RTRwD06mRw00000304@hotmail.com>
My old gcc mainline ...
gcc -v
Reading specs from /home/gareth/lib/gcc-lib/alphaev56-dec-osf4.0d/3.3/specs
Configured with:
../gcc/configure --prefix=/home/gareth --enable-version-specifi
c-libs --with-stabs
Thread model: single
gcc version 3.3 20021102 (experimental)
(this isnt a completely unmodified mainline - but the changes should be
insignificant. - I think this version only has an aditional line or 2 in
collect2 to make it parse the command line correctly in some circumstances
where it wouldnt)
applied:~>g++ --verbose tst.cc
Reading specs from /home/gareth/lib/gcc-lib/alphaev56-dec-osf4.0d/3.3/specs
Configured with:
../gcc/configure --prefix=/home/gareth --enable-version-specifi
c-libs --with-stabs
Thread model: single
gcc version 3.3 20021102 (experimental)
/home/gareth/lib/gcc-lib/alphaev56-dec-osf4.0d/3.3/cc1plus -quiet -v -D__GNU
C__
=3 -D__GNUC_MINOR__=3 -D__GNUC_PATCHLEVEL__=0
tst.cc -D__GNUG__=3 -quiet -dumpba
se tst.cc -auxbase tst -version -o /tmp//ccfRfCeG.s
GNU C++ version 3.3 20021102 (experimental) (alphaev56-dec-osf4.0d)
compiled by GNU C version 3.2 20020707 (experimental).
ignoring nonexistent directory "/usr/local/include"
ignoring nonexistent directory "/home/gareth/alphaev56-dec-osf4.0d/include"
ignoring duplicate directory "/home/gareth/include"
#include "..." search starts here:
#include <...> search starts here:
/home/gareth/include
/home/gareth/include/c++/3.3
/home/gareth/include/c++/3.3/alphaev56-dec-osf4.0d
/home/gareth/include/c++/3.3/backward
/home/gareth/lib/gcc-lib/alphaev56-dec-osf4.0d/3.3/include
/usr/include
End of search list.
In file included from /home/gareth/include/c++/3.3/backward/iostream.h:31,
from tst.cc:2:
/home/gareth/include/c++/3.3/backward/backward_warning.h:32:2: warning:
#warning
This file includes at least one deprecated or antiquated header. Please
conside
r using one of the 32 headers found in section 17.4.1.2 of the C++ standard.
Exa
mples include substituting the <X> header for the <X.h> header for C++
includes,
or <sstream> instead of the deprecated header <strstream.h>. To disable
this wa
rning use -Wno-deprecated.
as -g -nocpp -O0 -o /tmp//cc7EUenl.o /tmp//ccfRfCeG.s
/home/gareth/lib/gcc-lib/alphaev56-dec-osf4.0d/3.3/mips-tfile -v -o
/tmp//cc7EU
enl.o /tmp//ccfRfCeG.s
mips-tfile version 3.3 20021102 (experimental)
/home/gareth/lib/gcc-lib/alphaev56-dec-osf4.0d/3.3/collect2 -G
8 -O1 -S -call_s
hared
/usr/lib/cmplrs/cc/crt0.o -L/home/gareth/lib -L/freeware/shlib -L/home/gar
eth/lib/gcc-lib/alphaev56-dec-osf4.0d/3.3 -L/usr/lib/cmplrs/cc -L/home/garet
h/li
b/gcc-lib/alphaev56-dec-osf4.0d/3.3/../../..
/tmp//cc7EUenl.o -lstdc++ -lm -lgcc
_s -lgcc -lc -lgcc_s -lgcc
applied:~>./a.out
t=0
applied:~>
Looks like this one can be closed.
Gareth