home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: gnu.gcc.help
- Path: sparky!uunet!cis.ohio-state.edu!anaconda.cis.ohio-state.edu!chatfiel
- From: chatfiel@anaconda.cis.ohio-state.edu (William Lewis Chatfield)
- Subject: gcc 386BSD 4.4 net2 instalation problem
- Message-ID: <1992Sep2.134039.21143@cis.ohio-state.edu>
- Sender: news@cis.ohio-state.edu (NETnews )
- Organization: The Ohio State University Dept. of Computer and Info. Science
- Distribution: gnu
- Date: Wed, 2 Sep 1992 13:40:39 GMT
- Lines: 58
-
- I am trying to build gcc 2.2.2 on at 386BSD 4.4 net2 system. I am getting an
- error at the point where it tries to compile the first part of libgcc2.a,
- which is _muldi3. I have included the error messages and some preceding make
- output. I am hoping that someone else has encountered this problem before and
- can tell me how to solve it. I would appreciate any help. If you can direct
- me to someone who might know the answer, that would be great.
-
- BEGIN MAKE OUTPUT:
- _adddf3
- _subdf3
- _fixdfsi
- _fixsfsi
- _floatsidf
- _floatsisf
- _truncdfsf2
- _extendsfdf2
- _addsf3
- _negsf2
- _subsf3
- _mulsf3
- _divsf3
- _eqdf2
- _nedf2
- _gtdf2
- _gedf2
- _ltdf2
- _ledf2
- _eqsf2
- _nesf2
- _gtsf2
- _gesf2
- _ltsf2
- _lesf2
- for file in .. ; do if [ x${file} != x.. ]; then name=`echo ${file} | sed -e 's/[.]c$//' -e 's/[.]asm$//'`; echo ${name}; if [ ${name}.asm = ${file} ]; then cp ${file} ${name}.s; file=${name}.s; if [ $? -eq 0 ] ; then true; else exit 1; fi; else true; fi; cc -O -I. -I. -I./config -c ${file}; if [ $? -eq 0 ] ; then true; else exit 1; fi; ar qc tmplibgcc1.a ${name}.o; if [ $? -eq 0 ] ; then true; else exit 1; fi; rm -f ${name}.[so]; else true; fi; done
- mv tmplibgcc1.a libgcc1.a
- 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
- libgcc2.c:41:Junk character 47.
- libgcc2.c:41:Rest of line ignored. 1st junk character valued 65 (A).
- libgcc2.c:43:Junk character 47.
- libgcc2.c:43:Rest of line ignored. 1st junk character valued 78 (N).
- *** Error code 1
-
- Stop.
- END OF OUTPUT
-
-
- Please send responses to bchatfield@csi.compuserve.com or just reply to this
- posting (chatfiel@cis.ohio-state.edu).
-
-
- Thanks,
- Bill Chatfield
-
-
-