home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / gnu / gcc / help / 2037 < prev    next >
Encoding:
Text File  |  1992-09-02  |  2.5 KB  |  71 lines

  1. Newsgroups: gnu.gcc.help
  2. Path: sparky!uunet!cis.ohio-state.edu!anaconda.cis.ohio-state.edu!chatfiel
  3. From: chatfiel@anaconda.cis.ohio-state.edu (William Lewis Chatfield)
  4. Subject: gcc 386BSD 4.4 net2 instalation problem
  5. Message-ID: <1992Sep2.134039.21143@cis.ohio-state.edu>
  6. Sender: news@cis.ohio-state.edu (NETnews        )
  7. Organization: The Ohio State University Dept. of Computer and Info. Science
  8. Distribution: gnu
  9. Date: Wed, 2 Sep 1992 13:40:39 GMT
  10. Lines: 58
  11.  
  12. I am trying to build gcc 2.2.2 on at 386BSD 4.4 net2 system.  I am getting an 
  13. error at the point where it tries to compile the first part of libgcc2.a,
  14. which is _muldi3.  I have included the error messages and some preceding make
  15. output.  I am hoping that someone else has encountered this problem before and
  16. can tell me how to solve it.  I would appreciate any help.  If you can direct
  17. me to someone who might know the answer, that would be great.
  18.  
  19. BEGIN MAKE OUTPUT:
  20. _adddf3
  21. _subdf3
  22. _fixdfsi
  23. _fixsfsi
  24. _floatsidf
  25. _floatsisf
  26. _truncdfsf2
  27. _extendsfdf2
  28. _addsf3
  29. _negsf2
  30. _subsf3
  31. _mulsf3
  32. _divsf3
  33. _eqdf2
  34. _nedf2
  35. _gtdf2
  36. _gedf2
  37. _ltdf2
  38. _ledf2
  39. _eqsf2
  40. _nesf2
  41. _gtsf2
  42. _gesf2
  43. _ltsf2
  44. _lesf2
  45. 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
  46. mv tmplibgcc1.a libgcc1.a
  47. rm -f tmplibgcc2.a
  48. 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 ${
  49.  
  50.  
  51. name}.o;  rm -f ${name}.o;  done
  52. _muldi3
  53. libgcc2.c:41:Junk character 47.
  54. libgcc2.c:41:Rest of line ignored. 1st junk character valued 65 (A).
  55. libgcc2.c:43:Junk character 47.
  56. libgcc2.c:43:Rest of line ignored. 1st junk character valued 78 (N).
  57. *** Error code 1
  58.  
  59. Stop.
  60. END OF OUTPUT
  61.  
  62.  
  63. Please send responses to bchatfield@csi.compuserve.com or just reply to this
  64. posting (chatfiel@cis.ohio-state.edu).
  65.  
  66.  
  67. Thanks,
  68. Bill Chatfield
  69.  
  70.  
  71.