home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!ccut!news.u-tokyo.ac.jp!yayoi!tansei1!mhiroshi
- From: mhiroshi@tansei.cc.u-tokyo.ac.jp (H. Murakami)
- Newsgroups: fj.os.386bsd
- Subject: patch for math_emulate.c
- Message-ID: <3849@tansei1.tansei.cc.u-tokyo.ac.jp>
- Date: 8 Jan 93 13:44:18 GMT
- Sender: news@tansei.cc.u-tokyo.ac.jp
- Distribution: fj
- Organization: Hokkaido Univ. However I am subject to tansei for JUNET.
- Lines: 49
-
-
- tmp = (long *) ®(rm);
-
- $B$H$J$*$9%Q%C%A(J.
-
-
- ==========> QUOTE <===========================
- Article: 10419 of comp.unix.bsd
- From: vdlinden@fwi.uva.nl (Frank van der Linden)
- Newsgroups: comp.unix.bsd
- Subject: Re: gcc 2.x and kernel building
- Message-ID: <1993Jan1.202748.18714@fwi.uva.nl>
- Date: 1 Jan 93 20:27:48 GMT
- References: <1992Dec28.213027.18853@fwi.uva.nl>
- Sender: news@fwi.uva.nl
- Organization: FWI, University of Amsterdam
- Lines: 27
- Nntp-Posting-Host: carol.fwi.uva.nl
- Status: RO
-
-
- It turns out I missed an error in math_emulate.c which causes gcc 2.3.3
- to abort the kernel compilation.
- Patch below assumes that the patchkit is installed.
-
- Onno van der Linden c/o vdlinden@fwi.uva.nl
-
- *** /usr/src/sys.386bsd/i386/i386/math_emulate.c.orig Sun Nov 22 14:00:34 1992
- --- /usr/src/sys.386bsd/i386/i386/math_emulate.c Thu Dec 31 19:35:55 1992
- ***************
- *** 620,624 ****
- return (char *) offset;
- }
- ! tmp = & (long)REG(rm);
- switch (mod) {
- case 0: offset = 0; break;
- --- 620,624 ----
- return (char *) offset;
- }
- ! tmp = (long *) ®(rm);
- switch (mod) {
- case 0: offset = 0; break;
- --
- Frank van der Linden. Internet : vdlinden@fwi.uva.nl
- * WARNING ---- The author of this message has once seen some AT&T Unix source *
- * code, so now this message is probably copyrighted by them! You have been *
- * reading this entirely at your own risk.. *
-
-
-