From 07d536d020b4823fc57ddd6cdd132d64f5e1f75b Mon Sep 17 00:00:00 2001 From: sebastien Date: Mon, 14 Dec 2009 11:06:29 +0000 Subject: [PATCH] * Fix USE_DLL option at order 2 (closes #64) * Added a corresponding test git-svn-id: https://www.dynare.org/svn/dynare/trunk@3236 ac1d8469-bf42-47a9-8791-bf33cf982152 --- ModFile.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ModFile.cc b/ModFile.cc index 0695a537..42c829b8 100644 --- a/ModFile.cc +++ b/ModFile.cc @@ -287,7 +287,8 @@ ModFile::writeOutputFiles(const string &basename, bool clear_all mOutputFile << "options_.linear = 1;" << endl; mOutputFile << "options_.block=" << block << ";" << endl - << "options_.bytecode=" << byte_code << ";" << endl; + << "options_.bytecode=" << byte_code << ";" << endl + << "options_.use_dll=" << use_dll << ";" << endl; if (byte_code) mOutputFile << "if exist('bytecode') ~= 3" << endl