From e9ae994ea2b256143cac465b85c526f6fbe857d0 Mon Sep 17 00:00:00 2001 From: michel Date: Tue, 8 Dec 2009 15:12:59 +0000 Subject: [PATCH] 4.1 preprocessor: removing -v option in mex under Linux git-svn-id: https://www.dynare.org/svn/dynare/trunk@3211 ac1d8469-bf42-47a9-8791-bf33cf982152 --- ModFile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ModFile.cc b/ModFile.cc index ebba73f4..b5c92cee 100644 --- a/ModFile.cc +++ b/ModFile.cc @@ -300,7 +300,7 @@ ModFile::writeOutputFiles(const string &basename, bool clear_all) const << " if 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 - << " eval('mex -v -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 LDFLAGS=''-pthread -shared -Wl,--no-undefined'' " << basename << "_dynamic.c')" << endl // This command is enclosed in an eval(), because otherwise it will make Octave fail << " end" << endl << "else" << endl << " mex " << basename << "_dynamic.c" << endl