You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-dev@xmlgraphics.apache.org by Simon Pepping <sp...@leverkruid.eu> on 2009/08/10 22:05:13 UTC

Increasing the stack size for the serHyph task

A large number of classes in the hyphenation pattern means a large
stack size (in TernaryTree.insert(TernaryTree.java:228)). -Xss512k
works for me. How do I specify a larger stack size for the serHyph
task in the ant build file?

Simon

-- 
Simon Pepping
home page: http://www.leverkruid.eu

Re: Increasing the stack size for the serHyph task

Posted by Jeremias Maerki <de...@jeremias-maerki.ch>.
You can set the ANT_OPTS environment variable, ex:

SET ANT_OPTS=-Xmx256M -XX:MaxPermSize=128M -Xss512k

This will be picked up by Ant's start script.

HTH

On 10.08.2009 22:05:13 Simon Pepping wrote:
> A large number of classes in the hyphenation pattern means a large
> stack size (in TernaryTree.insert(TernaryTree.java:228)). -Xss512k
> works for me. How do I specify a larger stack size for the serHyph
> task in the ant build file?
> 
> Simon
> 
> -- 
> Simon Pepping
> home page: http://www.leverkruid.eu




Jeremias Maerki