From 80c6e3ad05e13ef376ff6dc24902ca2c24fc4b62 Mon Sep 17 00:00:00 2001 From: sebastien Date: Fri, 18 Dec 2009 13:35:50 +0000 Subject: [PATCH] Fix problem with USE_DLL under Octave 3.2 (closes #70) git-svn-id: https://www.dynare.org/svn/dynare/trunk@3269 ac1d8469-bf42-47a9-8791-bf33cf982152 --- preprocessor/ModFile.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/preprocessor/ModFile.cc b/preprocessor/ModFile.cc index 666714e58..0ee3b6ff1 100644 --- a/preprocessor/ModFile.cc +++ b/preprocessor/ModFile.cc @@ -318,8 +318,11 @@ ModFile::writeOutputFiles(const string &basename, bool clear_all mOutputFile << " eval('mex -O LDFLAGS=''-Wl,-twolevel_namespace -undefined error -arch \\$ARCHS -Wl,-syslibroot,\\$SDKROOT -mmacosx-version-min=\\$MACOSX_DEPLOYMENT_TARGET -bundle'' " << basename << "_dynamic.c')" << endl; // MATLAB/MacOS # endif #endif - mOutputFile << "else" << endl - << " mex " << basename << "_dynamic.c" << endl // Octave + mOutputFile << "else" << endl // Octave + << " if ~octave_ver_less_than('3.2.0')" << endl // Workaround for bug in Octave >= 3.2, see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=550823 + << " sleep(2)" << endl + << " end" << endl + << " mex " << basename << "_dynamic.c" << endl << "end" << endl; }