home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / windows / intervie / 3637 < prev    next >
Encoding:
Text File  |  1993-01-27  |  3.2 KB  |  119 lines

  1. Path: sparky!uunet!ogicse!clark!spool.mu.edu!agate!stanford.edu!RAMSESII.ULTRYX.COM!win
  2. From: win@RAMSESII.ULTRYX.COM (Win)
  3. Newsgroups: comp.windows.interviews
  4. Subject: InterViews 3.1 HPUX Series 700 (PA-RISC)
  5. Message-ID: <9301261736.AA03927@ramsesii.ultryx.com>
  6. Date: 26 Jan 93 17:36:28 GMT
  7. Article-I.D.: ramsesii.9301261736.AA03927
  8. Sender: news@shelby.stanford.edu (USENET News System)
  9. Organization: Internet-USENET Gateway at Stanford University
  10. Lines: 107
  11.  
  12. Someone MUST have some ideas on what to attempt next.
  13.  
  14. I'm having a problem compiling InterViews 3.1 on HPUX Series 700 (PA-RISC).  
  15. When attempting to compile action.c, I get the following (Note: the compile
  16. options for more information):
  17.  
  18. --------------- Begin make output -------------------------
  19. /usr/local/src/InterViews/iv/src/lib/IV/HP800> make
  20.         CC +p -v -E +i     -Dcplusplus_2_1  -DSYSV   -I../../../.././src/include
  21.  -I/usr/include/X11R4   -c ../../InterViews/action.c
  22.  /usr/lib/Cpp.ansi -Dcplusplus_2_1 -DSYSV -I../../../.././src/include -I/usr/inc
  23. lude/X11R4 -D__hp9000s700 -D_PA_RISC1_1 -$ -Dc_plusplus -D__cplusplus -D__hp9000
  24. s800 -D__hppa -D__hpux -D__unix -Dhp9000s800 -Dhppa -Dhpux -Dunix -I/usr/include
  25. /CC -I/usr/include ../../InterViews/action.c
  26. # 1 "../../InterViews/action.c"
  27. # 25
  28.  
  29. # 1 "../../../.././src/include/InterViews/action.h"
  30. # 32
  31.  
  32. # 1 "../../../.././src/include/InterViews/resource.h"
  33. # 32
  34.  
  35. # 1 "../../../.././src/include/InterViews/enter-scope.h"
  36. # 28
  37.  
  38. # 1 "../../../.././src/include/InterViews/iv.h"
  39. # 36
  40.  
  41. # 29 "../../../.././src/include/InterViews/enter-scope.h"
  42.  
  43.  
  44.  
  45.  
  46. # 1 "../../../.././src/include/InterViews/_undefs.h"
  47. # 304
  48.  
  49. # 33 "../../../.././src/include/InterViews/enter-scope.h"
  50.  
  51. # 1 "../../../.././src/include/InterViews/_defines.h"
  52. # 304
  53.  
  54. # 34 "../../../.././src/include/InterViews/enter-scope.h"
  55. # 45
  56.  
  57. # 1 "../../../.././src/include/OS/enter-scope.h"
  58. # 28
  59.  
  60. # 1 "../../../.././src/include/OS/os.h"
  61. # 34
  62.  
  63. # 29 "../../../.././src/include/OS/enter-scope.h"
  64. # 34
  65.  
  66. # 1 "../../../.././src/include/OS/_defines.h"
  67. # 25
  68.  
  69. # 35 "../../../.././src/include/OS/enter-scope.h"
  70.  
  71. Pid 11356 received a SIGSEGV for stack growth failure.
  72. Possible causes: insufficient memory or swap space,
  73. or stack size exceeded maxssiz.
  74. CC: error: `/usr/lib/Cpp.ansi' terminated with signal 11 (1922)
  75. *** Error code 1
  76.  
  77. Stop.
  78.  
  79. --------------- End make output -------------------------
  80.  
  81. Experiments have shown:
  82.  
  83.     o    increasing maxssiz from 8388608 to 134,217,728 results only in a larger 
  84.         core file (from approx. 13MB to 58MB).
  85.  
  86.     o    Not including #include <InterViews/enter-scope.h> in resource.h
  87.         causes no core but also generated compiler warnings and errors
  88.         since boolean is not defined.
  89.     
  90.     o    #if 0 ... #endif around code sample to follow, in 
  91.         iv/src/include/OS/enter-scope.h results in moving the error further
  92.         along to the return from resource.h
  93.         
  94. --------------- Begin code sample of enter-scope.h -------------------------
  95. #ifndef os_boolean
  96. #define os_boolean
  97.  
  98. typedef unsigned boolean;
  99.  
  100. static const unsigned false = 0;
  101. static const unsigned true = 1;
  102.  
  103. #endif
  104.  
  105. #ifndef os_u_char
  106. #define os_u_char
  107.  
  108. typedef unsigned char u_char;
  109.  
  110. #endif
  111. --------------- End code sample of enter-scope.h -------------------------
  112.  
  113. Any ideas would be greatly appreciated!
  114.  
  115. Thanks In Advance,
  116.  
  117. Win
  118. win@ultryx.com
  119.