Commit 6e75364c authored by Barry Warsaw's avatar Barry Warsaw

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.
parent 6a8557da
...@@ -456,10 +456,11 @@ Reliant UNIX: The thread support does not compile on Reliant UNIX, and ...@@ -456,10 +456,11 @@ Reliant UNIX: The thread support does not compile on Reliant UNIX, and
future release. future release.
MacOSX: The tests will crash on both 10.1 and 10.2 with SEGV in 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 test_re and test_sre due to the small default stack size. If
"ulimit -s 2048" before "make test" to avoid the failure. you set the stack size to 2048 before doing a "make test" the
Note that this is a built-in bash command so if you're using a failure can be avoided. If you're using the tcsh (the default
different shell, the command may be different too. 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 On naked Darwin you may want to add the configure option
"--disable-toolbox-glue" to disable the glue code for the Carbon "--disable-toolbox-glue" to disable the glue code for the Carbon
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment