Skip to content
Snippets Groups Projects
Commit 02681122 authored by stepan's avatar stepan
Browse files

Added the modification by michel on build_matlab.m (r2565) for mwSignedIndex.

git-svn-id: https://www.dynare.org/svn/dynare/trunk@2569 ac1d8469-bf42-47a9-8791-bf33cf982152
parent 48b4d50f
No related branches found
No related tags found
No related merge requests found
...@@ -54,6 +54,11 @@ if matlab_ver_less_than('7.3') ...@@ -54,6 +54,11 @@ if matlab_ver_less_than('7.3')
COMPILE_OPTIONS = [ COMPILE_OPTIONS ' -DMWTYPES_NOT_DEFINED' ]; COMPILE_OPTIONS = [ COMPILE_OPTIONS ' -DMWTYPES_NOT_DEFINED' ];
end end
% Matlab Lapack expects mwSignedIndex arguments only starting with Matlab 7.8
if ~matlab_ver_less_than('7.8')
COMPILE_OPTIONS = [ COMPILE_OPTIONS ' -DLAPACK_USE_MWSIGNEDINDEX' ];
end
% Large array dims for 64 bits platforms appeared in Matlab 7.3 % Large array dims for 64 bits platforms appeared in Matlab 7.3
if (strcmpi('GLNXA64', computer) || strcmpi('PCWIN64', computer)) ... if (strcmpi('GLNXA64', computer) || strcmpi('PCWIN64', computer)) ...
&& ~matlab_ver_less_than('7.3') && ~matlab_ver_less_than('7.3')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment