From: Matthijs Kooijman Date: Wed, 23 Sep 2009 13:21:34 +0000 (+0200) Subject: Run texexec under nice. X-Git-Tag: final-thesis~257 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fmaster-project%2Freport.git;a=commitdiff_plain;h=455c7501c167577b1edc2887689c458a3f18bdc7 Run texexec under nice. Previously, luatex had the habit of choking up all memory and making the system (temporarily) non-responsive. Perhaps this helps. --- diff --git a/SConstruct b/SConstruct index 3edfb1d..fccd78a 100644 --- a/SConstruct +++ b/SConstruct @@ -13,7 +13,7 @@ DEFAULT_TARGET = 'Report.pdf' env = Environment() ## Context MkIV Builder: -contextBuilder = Builder(action='texexec --lua $SOURCE', +contextBuilder = Builder(action='nice texexec --lua $SOURCE', suffix='.pdf', src_suffix='.tex') env.Append(BUILDERS={'Context': contextBuilder})