This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

CVS-version fails on IRIX


Hi,

trying to build the current CVS version I get



./xgcc -B./ -B/usr/LOCAL/mips-sgi-irix6.5/bin/ -isystem /usr/LOCAL/mips-sgi-irix6.5/include -O2   -DIN_GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -isystem ./include   -g1  -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED  -I. -I. -I/usr/people/jarausch/ZIP/EGCS/gcc-cvs/gcc -I/usr/people/jarausch/ZIP/EGCS/gcc-cvs/gcc/. -I/usr/people/jarausch/ZIP/EGCS/gcc-cvs/gcc/config -I/usr/people/jarausch/ZIP/EGCS/gcc-cvs/gcc/../include  -DL_muldi3 -c /usr/people/jarausch/ZIP/EGCS/gcc-cvs/gcc/libgcc2.c -o libgcc/./_muldi3.o
/usr/people/jarausch/ZIP/EGCS/gcc-cvs/gcc/libgcc2.c: In function `__muldi3':
/usr/people/jarausch/ZIP/EGCS/gcc-cvs/gcc/libgcc2.c:360: Internal compiler error in c_expand_expr, at c-common.c:4072
Please submit a full bug report.

The last version that could be built here is 20010115, 
but unfortunately there are C++ linkage(template generation?) errors:

The following tiny test

#include <string>
using std::string;

#include <sstream>
using std::istringstream;

int main() {
  string Input1("  word1 word2\n   word3");
  istringstream Inp(Input1);
  string S;
  Inp >> S;  // ignores white chars
}

gives

ld32: ERROR   33 : Unresolved text symbol "std::basic_stringbuf<char, std::char_traits<char>, std::allocator<char> >
                   ::seekpos(std::fpos<mbstate_t>, std::_Ios_Openmode)"
                  --
              1st   referenced  by /var/tmp/ccWB6Yco.o.


Thanks for looking into it,

Helmut Jarausch

Lehrstuhl fuer Numerische Mathematik
Institute of Technology, RWTH Aachen
D 52056 Aachen, Germany


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]