[Python-checkins] python/dist/src README,1.154,1.155

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Mon, 14 Oct 2002 11:15:43 -0700


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv26203

Modified Files:
	README 
Log Message:
I'd forgotten that tcsh was the default for 10.1, but SF's 10.1 system
uses bash and so does my 10.2 system.  "limit stacksize 2048" is the
right invocation for tcsh/csh.


Index: README
===================================================================
RCS file: /cvsroot/python/python/dist/src/README,v
retrieving revision 1.154
retrieving revision 1.155
diff -C2 -d -r1.154 -r1.155
*** README	14 Oct 2002 18:04:39 -0000	1.154
--- README	14 Oct 2002 18:15:35 -0000	1.155
***************
*** 457,464 ****
  
  MacOSX: The tests will crash on both 10.1 and 10.2 with SEGV in
!         test_re and test_sre due to the small default stack size.  Do
!         "ulimit -s 2048" before "make test" to avoid the failure.
!         Note that this is a built-in bash command so if you're using a
!         different shell, the command may be different too.
  
          On naked Darwin you may want to add the configure option
--- 457,465 ----
  
  MacOSX: The tests will crash on both 10.1 and 10.2 with SEGV in
!         test_re and test_sre due to the small default stack size.  If
!         you set the stack size to 2048 before doing a "make test" the
!         failure can be avoided.  If you're using the tcsh (the default
!         on OSX), or csh shells use "limit stacksize 2048" and for the
!         bash shell, use "ulimit -s 2048".
  
          On naked Darwin you may want to add the configure option