preprocessor: fixed option "use_dll" (and therefore "k_order_solver") for Octave

git-svn-id: https://www.dynare.org/svn/dynare/trunk@3178 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
sebastien 2009-11-30 16:36:00 +00:00
parent 03600d9131
commit 19a3db853e
1 changed files with 5 additions and 1 deletions

View File

@ -297,7 +297,11 @@ ModFile::writeOutputFiles(const string &basename, bool clear_all) const
// Compile the dynamic MEX file for use_dll option
if (use_dll)
mOutputFile << "mex -O LDFLAGS='-pthread -shared -Wl,--no-undefined' " << basename << "_dynamic.c" << endl;
mOutputFile << "if ~exist('OCTAVE_VERSION')" << endl
<< " eval('mex -O LDFLAGS=''-pthread -shared -Wl,--no-undefined'' " << basename << "_dynamic.c')" << endl // This command is enclosed in an eval(), because otherwise it will make Octave fail
<< "else" << endl
<< " mex " << basename << "_dynamic.c" << endl
<< "end" << endl;
// Add path for block option with M-files
if (block && !byte_code)