home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / unix / aux / 4459 < prev    next >
Encoding:
Internet Message Format  |  1992-12-30  |  1.1 KB

  1. 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
  2. From: dennisg@olympus.East.Sun.COM ( Federal Area S.E. Vienna Va.)
  3. Newsgroups: comp.unix.aux
  4. Subject: GNU make 3.62. core dumping
  5. Keywords: GNU make
  6. Message-ID: <1ht4l5INNlhb@olympus.East.Sun.COM>
  7. Date: 30 Dec 92 21:34:29 GMT
  8. Organization: Sun Microsystems, Inc., Vienna, VA.
  9. Lines: 21
  10. NNTP-Posting-Host: olympus-bb.east.sun.com
  11.  
  12. I lost the original posting on someone inquiring about a core dump problem
  13. with GNU make 3.62. The problwm can be solved by fixing line 348 in
  14. main.c. Arguments 2 and 3 to setvbuf are *reversed* for A/UX.
  15.  
  16. The line should read:
  17.  
  18.  setvbuf (stdout, (char *) 0, _IOLBF,  BUFSIZ);
  19.  
  20. instead it reads:
  21.  
  22.  setvbuf (stdout,  _IOLBF, (char *) 0,   BUFSIZ);
  23.  
  24. Here are also the flags I used in the build (I also used gcc)
  25.  
  26.  
  27.  -DUSG -DDIRENT -DNLIST_NAME_ARRAY  -DKERNEL_FILE_NAME=\"/unix\"
  28. -- 
  29. Dennis Govoni                SUN Microsystems, Federal Area, SE
  30. dennis.govoni@East.Sun.COM        2650 Park Tower Drive, Vienna, VA 22180
  31.                     Phone: 1-703-204-4250
  32.                     Fax:   1-703-204-4782
  33.