From 131c90cebaa7daa957998d052efc5877a923e9af Mon Sep 17 00:00:00 2001 From: michel Date: Tue, 8 Dec 2009 12:00:55 +0000 Subject: [PATCH] 4.1 preprocessor: exporting "Dynamic" symbol is necessary only in Windows; added test for ispc git-svn-id: https://www.dynare.org/svn/dynare/trunk@3209 ac1d8469-bf42-47a9-8791-bf33cf982152 --- ModFile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ModFile.cc b/ModFile.cc index 5090649c..87d99837 100644 --- a/ModFile.cc +++ b/ModFile.cc @@ -296,7 +296,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 + mOutputFile << "if ~exist('OCTAVE_VERSION') && ispc" << endl << " 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