home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!ferkel.ucsb.edu!taco!bu.edu!att!linac!uwm.edu!spool.mu.edu!agate!dog.ee.lbl.gov!hellgate.utah.edu!cc.usu.edu!edx
- From: edx@cc.usu.edu
- Newsgroups: gnu.gcc.help
- Subject: Re: Problems compiling gcc2.3.1. on AIX3.2/RS6000
- Message-ID: <1992Nov11.102327.60682@cc.usu.edu>
- Date: 11 Nov 92 16:23:27 GMT
- References: <1992Nov10.142724.24992@jussieu.fr>
- Organization: Utah State University
- Lines: 44
-
- In article <1992Nov10.142724.24992@jussieu.fr>, eranian@fructidor.ibp.fr (Stephane ERANIAN) writes:
- > I am posting this news here, but I don't know if it is the right place.
- > Anyway, I 'm having problem with gcc2.3.1 compilation on our RS6000 running
- > AIX3.2
- > I followed the steps described in the INSTALL file.
- > % configure --target=rs6000-ibm-aix
- > Everthing is OK . Then I just type
- > % make LANGUAGES=c
- > After I while ( rather half an hour !!), I got the fllowinfg message :
- > .
- > .
- > .
- > if [ -f libgcc2.ready ] ; then \
- > true; \
- > else \
- > touch libgcc2.ready; \
- > fi
- > rm -f tmplibgcc2.a
- > set -e; \
- > for name in _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 _lshrdi3 _lshldi3
- > _ashldi3 _ashrdi3 _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf _fixunsdfsi
- > _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi __gcc_bcmp _varargs _eprintf _builtin_new
- > _caps_New _builtin_del _bb _shtab _clear_cache _trampoline __main _exit _ctors; \
- > do \
- > echo ${name}; \
- > ./xgcc -B./ -O2 -DIN_GCC -g -g1 -I. -I. -I./config -c -DL${name} \
- > ./libgcc2.c -o ${name}.o; \
- > if [ $? -eq 0 ] ; then true; else exit 1; fi; \
- > ar rc tmplibgcc2.a ${name}.o; \
- > rm -f ${name}.o; \
- > done
- > _muldi3
- > Assembler:
- > /tmp/ccQ4wCzR.s: line 33: 1252-142 Syntax error.
- > make: 1254-004 The error code from the last command is 1.
- >
- > Make Quitting.
- >
- > What's wrong, please help !!!!!
- >
- >
- >
- I saw this behavior too. Change the Makefile to compile things without
- the -g and the -g1 debugging flags. Then it will compile ok.
-