reporting: run compilation in batchmode to speed it up slightly

remove-priordens
Houtan Bastani 2015-01-08 18:35:36 +01:00
parent eab8089e16
commit b3a7e49464
1 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ function o = compile(o, varargin)
% SPECIAL REQUIREMENTS
% none
% Copyright (C) 2013-2014 Dynare Team
% Copyright (C) 2013-2015 Dynare Team
%
% This file is part of Dynare.
%
@ -103,7 +103,7 @@ end
if opts.showOutput
status = system([opts.compiler ' ' options middle o.fileName], echo);
else
[status, junk] = system([opts.compiler ' ' options middle o.fileName]);
[status, junk] = system([opts.compiler ' -interaction=batchmode ' options middle o.fileName]);
end
[junk, rfn, junk] = fileparts(o.fileName);
@ -119,4 +119,4 @@ end
if opts.showReport && ~isoctave
open([pwd filesep rfn '.pdf']);
end
end
end