home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!spool.mu.edu!agate!ames!sun-barr!news2me.EBay.Sun.COM!seven-up.East.Sun.COM!sungy!sixgun.East.Sun.COM!olympus.East.Sun.COM!news
- From: dennisg@olympus.East.Sun.COM ( Federal Area S.E. Vienna Va.)
- Newsgroups: comp.unix.aux
- Subject: GNU make 3.62. core dumping
- Keywords: GNU make
- Message-ID: <1ht4l5INNlhb@olympus.East.Sun.COM>
- Date: 30 Dec 92 21:34:29 GMT
- Organization: Sun Microsystems, Inc., Vienna, VA.
- Lines: 21
- NNTP-Posting-Host: olympus-bb.east.sun.com
-
- I lost the original posting on someone inquiring about a core dump problem
- with GNU make 3.62. The problwm can be solved by fixing line 348 in
- main.c. Arguments 2 and 3 to setvbuf are *reversed* for A/UX.
-
- The line should read:
-
- setvbuf (stdout, (char *) 0, _IOLBF, BUFSIZ);
-
- instead it reads:
-
- setvbuf (stdout, _IOLBF, (char *) 0, BUFSIZ);
-
- Here are also the flags I used in the build (I also used gcc)
-
-
- -DUSG -DDIRENT -DNLIST_NAME_ARRAY -DKERNEL_FILE_NAME=\"/unix\"
- --
- Dennis Govoni SUN Microsystems, Federal Area, SE
- dennis.govoni@East.Sun.COM 2650 Park Tower Drive, Vienna, VA 22180
- Phone: 1-703-204-4250
- Fax: 1-703-204-4782
-