home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / gnu / gcc / help / 2496 < prev    next >
Encoding:
Internet Message Format  |  1992-11-11  |  2.2 KB

  1. 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
  2. From: edx@cc.usu.edu
  3. Newsgroups: gnu.gcc.help
  4. Subject: Re: Problems compiling gcc2.3.1. on AIX3.2/RS6000
  5. Message-ID: <1992Nov11.102327.60682@cc.usu.edu>
  6. Date: 11 Nov 92 16:23:27 GMT
  7. References: <1992Nov10.142724.24992@jussieu.fr>
  8. Organization: Utah State University
  9. Lines: 44
  10.  
  11. In article <1992Nov10.142724.24992@jussieu.fr>, eranian@fructidor.ibp.fr (Stephane ERANIAN) writes:
  12. > I am posting this news here, but I don't know if it is the right place.
  13. > Anyway, I 'm having problem with gcc2.3.1 compilation on our RS6000 running
  14. > AIX3.2
  15. > I followed the steps described in the INSTALL file.
  16. > % configure --target=rs6000-ibm-aix
  17. > Everthing is OK . Then I just type
  18. > % make LANGUAGES=c
  19. > After I while ( rather half an hour !!), I got the fllowinfg message : 
  20. >    .
  21. >    .
  22. >    .
  23. >    if [ -f libgcc2.ready ] ; then \
  24. >                         true; \
  25. >                 else \
  26. >                         touch libgcc2.ready; \
  27. >                 fi
  28. >         rm -f tmplibgcc2.a
  29. >         set -e; \
  30. >                 for name in _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2  _lshrdi3 _lshldi3
  31. > _ashldi3 _ashrdi3   _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf  _fixunsdfsi
  32. > _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi  __gcc_bcmp _varargs _eprintf _builtin_new
  33. > _caps_New _builtin_del  _bb _shtab _clear_cache _trampoline __main _exit _ctors; \
  34. >                 do \
  35. >                   echo ${name}; \
  36. >                   ./xgcc -B./ -O2  -DIN_GCC   -g  -g1 -I. -I. -I./config -c -DL${name} \
  37. >                       ./libgcc2.c -o ${name}.o; \
  38. >                   if [ $? -eq 0 ] ; then true; else exit 1; fi; \
  39. >                   ar rc tmplibgcc2.a ${name}.o; \
  40. >                   rm -f ${name}.o; \
  41. >                 done
  42. > _muldi3
  43. > Assembler:
  44. > /tmp/ccQ4wCzR.s: line 33: 1252-142 Syntax error.
  45. > make: 1254-004 The error code from the last command is 1.
  46. > Make Quitting.
  47. > What's wrong, please help !!!!!
  48. I saw this behavior too.  Change the Makefile to compile things without
  49. the -g and the -g1 debugging flags.  Then it will compile ok.
  50.