home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / windows / x / apps / 921 < prev    next >
Encoding:
Text File  |  1992-09-03  |  3.7 KB  |  89 lines

  1. Newsgroups: comp.windows.x.apps
  2. Path: sparky!uunet!mcsun!sun4nl!dutrun!donau!arthur.et.tudelft.nl!alfred
  3. From: alfred@arthur.et.tudelft.nl (Alfred van der Hoeven)
  4. Subject: Re: Trying to compile xfig2.1.4
  5. Message-ID: <1992Sep03.090948.9969@donau.et.tudelft.nl>
  6. Sender: news@donau.et.tudelft.nl (UseNet News System)
  7. Nntp-Posting-Host: arthur.et.tudelft.nl
  8. Reply-To: alfred@dutentb.et.tudelft.nl
  9. Organization: Delft University of Technology
  10. References: <1992Aug31.161745.1912@informatik.uni-bremen.de> <25898@dog.ee.lbl.gov> <1992Sep2.110406.27715@bohra.cpg.oz.au>
  11. Date: Thu, 03 Sep 1992 09:09:48 GMT
  12. Lines: 75
  13.  
  14. In article <1992Sep2.110406.27715@bohra.cpg.oz.au>, als@bohra.cpg.oz.au (Anthony Shipman) writes:
  15. |> envbvs@epb9.lbl.gov (Brian V. Smith) writes:
  16. |> 
  17. |> >In article <1992Aug31.161745.1912@informatik.uni-bremen.de>, cop18@lehre25.informatik.Uni-Bremen.DE (Kompilerpraktikum Gruppe18) writes:
  18. |> >|> Today I tried to compile xfig 2.1.4 on our HP9000/720. It worked all fine 
  19. |> >|> until u_undo.c. After this part part I got a Bus Error and signal 10.
  20. |> >|> 
  21. |> >|> Is there somebody who could help out ??
  22. |> 
  23. |> 
  24. |> >Please send me a stack trace and I'll see what I can find.  First, compile
  25. |> >u_undo.c with the -g option so the full symbol information is available
  26. |> >for the stack trace.
  27. |> 
  28. |> 
  29. |> Doesn't he mean the compiler crashed, not the program?  If so, try lower
  30. |> levels of optimisation.
  31. |> -- 
  32. |> Anthony Shipman                 "You've got to be taught before it's too late,
  33. |> CP Software Export Pty Ltd,      Before you are six or seven or eight,
  34. |> 19 Cato St., East Hawthorn,      To hate all the people your relatives hate,
  35. |> Melbourne, Australia, 3121       You've got to be carefully taught."  R&H
  36.  
  37. The C compiler on the HP9000/700s stumbles over some of the initializations
  38. that take place in u-undo.c (and object.c), which are probably incorrect.
  39. Applying the following patch will probably solve your problem.
  40.  
  41. ----------------------------- cut here ----------------------------
  42. *** u_undo.c    Mon Apr 20 20:57:01 1992
  43. --- u_undo.c    Tue Jul 28 17:39:50 1992
  44. ***************
  45. *** 38,45 ****
  46.    * all the "next" fields of objects pointed to by object_tails to NULL.
  47.    */
  48.   
  49. ! F_compound    saved_objects = {0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
  50. ! F_compound    object_tails = {0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
  51.   
  52.   /*************** LOCAL *****************/
  53.   
  54. --- 38,45 ----
  55.    * all the "next" fields of objects pointed to by object_tails to NULL.
  56.    */
  57.   
  58. ! F_compound    saved_objects = {0, { 0, 0 }, { 0, 0 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
  59. ! F_compound    object_tails = {0, { 0, 0 }, { 0, 0 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
  60.   
  61.   /*************** LOCAL *****************/
  62.   
  63. *** object.c    Mon Apr 20 20:56:14 1992
  64. --- object.c    Thu Sep  3 11:01:08 1992
  65. ***************
  66. *** 21,27 ****
  67.   
  68.   /************************  Objects  **********************/
  69.   
  70. ! F_compound    objects = {0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
  71.   
  72.   /************  global object pointers ************/
  73.   
  74. --- 21,27 ----
  75.   
  76.   /************************  Objects  **********************/
  77.   
  78. ! F_compound    objects = {0, { 0, 0 }, { 0, 0 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
  79.   
  80.   /************  global object pointers ************/
  81.   
  82. ----------------------------- cut here ----------------------------
  83. --
  84. Alfred van der Hoeven              |                Room 16.05, Mekelweg 4
  85. Delft University of Technology     |        2628 CD Delft, the Netherlands
  86. Faculty of Electrical Engineering  |  e-mail: alfred@dutentb.et.tudelft.nl
  87. Section Network Theory             |                 tel: +31 (0)15 786621
  88. --                                 |                 fax: +31 (0)15 623271
  89.