home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / fj / os / 386bsd / 245 < prev    next >
Encoding:
Internet Message Format  |  1993-01-08  |  1.8 KB

  1. Path: sparky!uunet!ccut!news.u-tokyo.ac.jp!yayoi!tansei1!mhiroshi
  2. From: mhiroshi@tansei.cc.u-tokyo.ac.jp (H. Murakami)
  3. Newsgroups: fj.os.386bsd
  4. Subject: patch for math_emulate.c
  5. Message-ID: <3849@tansei1.tansei.cc.u-tokyo.ac.jp>
  6. Date: 8 Jan 93 13:44:18 GMT
  7. Sender: news@tansei.cc.u-tokyo.ac.jp
  8. Distribution: fj
  9. Organization: Hokkaido Univ. However I am subject to tansei for JUNET.
  10. Lines: 49
  11.  
  12.  
  13.     tmp = (long *) ®(rm);
  14.  
  15. $B$H$J$*$9%Q%C%A(J.
  16.  
  17.  
  18. ==========> QUOTE <===========================
  19. Article: 10419 of comp.unix.bsd
  20. From: vdlinden@fwi.uva.nl (Frank van der Linden)
  21. Newsgroups: comp.unix.bsd
  22. Subject: Re: gcc 2.x and kernel building
  23. Message-ID: <1993Jan1.202748.18714@fwi.uva.nl>
  24. Date: 1 Jan 93 20:27:48 GMT
  25. References: <1992Dec28.213027.18853@fwi.uva.nl>
  26. Sender: news@fwi.uva.nl
  27. Organization: FWI, University of Amsterdam
  28. Lines: 27
  29. Nntp-Posting-Host: carol.fwi.uva.nl
  30. Status: RO
  31.  
  32.  
  33.  It turns out I missed an error in math_emulate.c which causes gcc 2.3.3
  34. to abort the kernel compilation.
  35. Patch below assumes that the patchkit is installed.
  36.  
  37. Onno van der Linden          c/o           vdlinden@fwi.uva.nl
  38.  
  39. *** /usr/src/sys.386bsd/i386/i386/math_emulate.c.orig    Sun Nov 22 14:00:34 1992
  40. --- /usr/src/sys.386bsd/i386/i386/math_emulate.c    Thu Dec 31 19:35:55 1992
  41. ***************
  42. *** 620,624 ****
  43.           return (char *) offset;
  44.       }
  45. !     tmp = & (long)REG(rm);
  46.       switch (mod) {
  47.           case 0: offset = 0; break;
  48. --- 620,624 ----
  49.           return (char *) offset;
  50.       }
  51. !     tmp = (long *) ®(rm);
  52.       switch (mod) {
  53.           case 0: offset = 0; break;
  54. -- 
  55.   Frank van der Linden.                        Internet : vdlinden@fwi.uva.nl
  56. * WARNING ---- The author of this message has once seen some AT&T Unix source *
  57. * code, so now this message is probably copyrighted by them! You have been    *
  58. * reading this entirely at your own risk..                                    *
  59.  
  60.  
  61.