home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!snorkelwacker.mit.edu!thunder.mcrcim.mcgill.edu!broue.rot.qc.ca!big
- From: big@broue.rot.qc.ca (Patrick Drolet)
- Newsgroups: gnu.gcc.help
- Subject: AIX PS/2 implementation
- Message-ID: <1hGKOC#3NVy8Z=big@broue.rot.qc.ca>
- Date: 27 Jul 92 22:34:05 GMT
- Distribution: world
- Organization: Groupe de Recherche Operationnelle en Telecommunication (ROT)
- X-Newsreader: Tin 1.1 PL4
- Lines: 55
-
- Did anyone of you guys compiled gcc-2.2.2 under AIX PS/2 ? (I know, I know,
- AIX PS/2 is not Sun OS, but I'm stuck with it).
- Anyways, I have a problem wich I cannot solve.
-
- Ok, it goes like this:
- -------------------------------------------------------------------------
- # make LANGUAGES=c
-
- 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 _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; \
- do \
- echo ${name}; \
- ./gcc -O2 -g -B./ -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
- _divdi3
- _moddi3
- _udivdi3
- _umoddi3
- _negdi2
- _lshrdi3
- _lshldi3
- _ashldi3
- _ashrdi3
- _udivmoddi4
- Line 389: subl-52(%ebp),%edi sbbl-48(%ebp),%ecx
- Line 389: -------------------^-
- Line 389: subl-52(%ebp),%edi sbbl-48(%ebp),%ecx
- Line 389: expected end of line
- Line 459: subl-52(%ebp),%esi sbbl-48(%ebp),%ebx
- Line 459: -------------------^-
- Line 459: subl-52(%ebp),%esi sbbl-48(%ebp),%ebx
- Line 459: expected end of line
- Line 469: subl-36(%ebp),%edi sbbl-40(%ebp),%eax
- Line 469: -------------------^-
- Line 469: subl-36(%ebp),%edi sbbl-40(%ebp),%eax
- Line 469: expected end of line
- errors detected: 3
- *** Error code 1
-
- ---------------------------------------------------------------------
-
- Any ideas ?
-
- Patrick Drolet
-