diff options
author | Martin Schröder <martin@oneiros.de> | 2007-12-19 15:49:45 +0000 |
---|---|---|
committer | Martin Schröder <martin@oneiros.de> | 2007-12-19 15:49:45 +0000 |
commit | 329d62c35f9b990fee295cdb5bb56cf3ae4ab9e2 (patch) | |
tree | 761190088910ccd2b2514a57b37580725404c066 /Build/source/texk | |
parent | 20f485b42144407b1ef4ce1284e1b8a1ff5ae8cb (diff) |
increase some hard memory limits in tex.ch
git-svn-id: svn://tug.org/texlive/trunk@5816 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk')
-rw-r--r-- | Build/source/texk/web2c/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/web2c/tex.ch | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog index f1222f1d0ce..4388bcf9693 100644 --- a/Build/source/texk/web2c/ChangeLog +++ b/Build/source/texk/web2c/ChangeLog @@ -1,3 +1,8 @@ +2007-12-19 Martin Schröder <martin@oneiros.de> + + * tex.ch (ssup_max_strings): increase to 2097151 + (sup_main_memory): increase to 256000000 + 2007-12-19 Karl Berry <karl@tug.org> * tangle.ch (max_bytes): increase to 65535. diff --git a/Build/source/texk/web2c/tex.ch b/Build/source/texk/web2c/tex.ch index eb4df023485..4b0a0d443b9 100644 --- a/Build/source/texk/web2c/tex.ch +++ b/Build/source/texk/web2c/tex.ch @@ -200,7 +200,7 @@ versions of the program. @y @d file_name_size == maxint @d ssup_error_line = 255 -@d ssup_max_strings == 262143 +@d ssup_max_strings == 2097151 {Larger values than 65536 cause the arrays consume much more memory.} @d ssup_trie_opcode == 65535 @d ssup_trie_size == @"3FFFFF @@ -233,7 +233,7 @@ versions of the program. @!sup_mem_bot = 1; @!inf_main_memory = 3000; -@!sup_main_memory = 32000000; +@!sup_main_memory = 256000000; @!inf_trie_size = 8000; @!sup_trie_size = ssup_trie_size; |