home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / gnu / gcc / help / 1803 < prev    next >
Encoding:
Internet Message Format  |  1992-07-28  |  2.0 KB

  1. Path: sparky!uunet!snorkelwacker.mit.edu!thunder.mcrcim.mcgill.edu!broue.rot.qc.ca!big
  2. From: big@broue.rot.qc.ca (Patrick Drolet)
  3. Newsgroups: gnu.gcc.help
  4. Subject: AIX PS/2 implementation
  5. Message-ID: <1hGKOC#3NVy8Z=big@broue.rot.qc.ca>
  6. Date: 27 Jul 92 22:34:05 GMT
  7. Distribution: world
  8. Organization: Groupe de Recherche Operationnelle en Telecommunication (ROT)
  9. X-Newsreader: Tin 1.1 PL4
  10. Lines: 55
  11.  
  12. Did anyone of you guys compiled gcc-2.2.2 under AIX PS/2 ?  (I know, I know,
  13. AIX PS/2 is not Sun OS, but I'm stuck with it).
  14. Anyways, I have a problem wich I cannot solve.
  15.  
  16. Ok, it goes like this:
  17. -------------------------------------------------------------------------
  18. # make LANGUAGES=c
  19.  
  20.     if [ -f libgcc2.ready ] ; then \
  21.         true; \
  22.     else \
  23.         touch libgcc2.ready; \
  24.     fi
  25.     rm -f tmplibgcc2.a
  26.     set -e; \
  27.     for name in _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2  _lshrdi3 _lshldi3 _ashldi3 _ashrdi3   _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf  _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi  _varargs _eprintf _builtin_new _builtin_New _builtin_del  _bb _shtab _clear_cache _trampoline __main _exit; \
  28.     do \
  29.       echo ${name}; \
  30.       ./gcc -O2    -g -B./ -g1 -I. -I. -I./config -c -DL${name} \
  31.           ./libgcc2.c -o ${name}.o; \
  32.       if [ $? -eq 0 ] ; then true; else exit 1; fi; \
  33.       ar rc tmplibgcc2.a ${name}.o; \
  34.       rm -f ${name}.o; \
  35.     done
  36. _muldi3
  37. _divdi3
  38. _moddi3
  39. _udivdi3
  40. _umoddi3
  41. _negdi2
  42. _lshrdi3
  43. _lshldi3
  44. _ashldi3
  45. _ashrdi3
  46. _udivmoddi4
  47. Line 389: subl-52(%ebp),%edi sbbl-48(%ebp),%ecx
  48. Line 389: -------------------^-
  49. Line 389: subl-52(%ebp),%edi sbbl-48(%ebp),%ecx
  50. Line 389: expected end of line
  51. Line 459: subl-52(%ebp),%esi sbbl-48(%ebp),%ebx
  52. Line 459: -------------------^-
  53. Line 459: subl-52(%ebp),%esi sbbl-48(%ebp),%ebx
  54. Line 459: expected end of line
  55. Line 469: subl-36(%ebp),%edi sbbl-40(%ebp),%eax
  56. Line 469: -------------------^-
  57. Line 469: subl-36(%ebp),%edi sbbl-40(%ebp),%eax
  58. Line 469: expected end of line
  59. errors detected: 3
  60. *** Error code 1
  61.  
  62. ---------------------------------------------------------------------
  63.  
  64. Any ideas ?
  65.  
  66.                     Patrick Drolet
  67.