diff options
author | John Gilmore <gnu@cygnus> | 1991-08-14 00:02:26 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-08-14 00:02:26 +0000 |
commit | 5ac449d90c0fa68a04ad6bc9d6583c88ced5523c (patch) | |
tree | 412413e278b5eb94b20c607a8ad86775953d05b6 /gdb/xm-sun4os4.h | |
parent | c561ca5dfb38b4415642c3ace584f4eb27776ef3 (diff) | |
download | gdb-5ac449d90c0fa68a04ad6bc9d6583c88ced5523c.zip gdb-5ac449d90c0fa68a04ad6bc9d6583c88ced5523c.tar.gz gdb-5ac449d90c0fa68a04ad6bc9d6583c88ced5523c.tar.bz2 |
* solib.c (solib_add): New argument is the target_ops whose
section list is to be added to, if any. Reallocate the
sections in that target to add any that come from shared libs.
(throughout) so_sections renamed to sections.
(solib_xfer_memory): Deleted.
* tm-sunos.h (SOLIB_ADD): Add target argument.
(SOLIB_XFER_MEMORY): Delete.
* xm-sun3os4.h, xm-sun4os4.h: Define BROKEN_LARGE_ALLOCA,
and add comment explaining shared library screw.
Diffstat (limited to 'gdb/xm-sun4os4.h')
-rw-r--r-- | gdb/xm-sun4os4.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gdb/xm-sun4os4.h b/gdb/xm-sun4os4.h index c9034c4..75f1037 100644 --- a/gdb/xm-sun4os4.h +++ b/gdb/xm-sun4os4.h @@ -18,5 +18,11 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "xm-sparc.h" - #define FPU + +/* Large alloca's fail because the attempt to increase the stack limit in + main() fails because shared libraries are allocated just below the initial + stack limit. The SunOS kernel will not allow the stack to grow into + the area occupied by the shared libraries. Sun knows about this bug + but has no obvious fix for it. */ +#define BROKEN_LARGE_ALLOCA |