Turns out the default 8MB stack is quite enough for the programs I'm
currently running.
This commit is contained in:
Kartik Agaram 2020-12-25 08:13:33 -08:00
parent faef965611
commit 56bfd52643
2 changed files with 0 additions and 6 deletions

View File

@ -25,9 +25,6 @@ export OS=${OS:-linux}
echo "== translating and running using C++"
# increase stack
ulimit -S -s 131072 # 128MB
# example programs
echo ex1

View File

@ -19,9 +19,6 @@ set -e
./build
# increase stack
ulimit -S -s 131072 # 128MB
cat $* |apps/braces > a.braces
cat a.braces |apps/calls > a.calls