4.1 preprocessor: exporting Dynamic symbol when making mex file for dynamic model with Matlab

git-svn-id: https://www.dynare.org/svn/dynare/trunk@3208 ac1d8469-bf42-47a9-8791-bf33cf982152
issue#70
michel 2009-12-08 11:49:25 +00:00
parent 1f72431ec4
commit fc719ad8c7
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ ModFile::writeOutputFiles(const string &basename, bool clear_all) const
// Compile the dynamic MEX file for use_dll option
if (use_dll)
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
<< " eval('mex -O LINKER=''echo EXPORTS > mex.def & echo mexFunction & echo Dynamic >> mex.def & gcc-3'' 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;