From efee8f38d1120b5c3725763138a4b102b41f7def Mon Sep 17 00:00:00 2001 From: sebastien Date: Thu, 3 Sep 2009 13:21:57 +0000 Subject: [PATCH] Fixed build_octave.m for new bytecode DLL git-svn-id: https://www.dynare.org/svn/dynare/trunk@2892 ac1d8469-bf42-47a9-8791-bf33cf982152 --- mex/sources/build_octave.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mex/sources/build_octave.m b/mex/sources/build_octave.m index c5123e0bb..9ca4612fc 100644 --- a/mex/sources/build_octave.m +++ b/mex/sources/build_octave.m @@ -51,5 +51,5 @@ eval([ COMPILE_COMMAND ' -DMATLAB -Igensylv/cc ' ... 'gensylv/cc/TriangularSylvester.cpp ' ... 'gensylv/cc/Vector.cpp ' ... '-o ../octave/gensylv.mex']); -disp('Compiling simulate...') -eval([ COMPILE_COMMAND ' -Isimulate -I../../preprocessor simulate/simulate.cc simulate/Interpreter.cc simulate/Mem_Mngr.cc simulate/SparseMatrix.cc -o ../octave/simulate.mex']); +disp('Compiling bytecode...') +eval([ COMPILE_COMMAND ' -Ibytecode -I../../preprocessor bytecode/bytecode.cc bytecode/Interpreter.cc bytecode/Mem_Mngr.cc bytecode/SparseMatrix.cc -o ../octave/bytecode.mex']);