Skip to content
Snippets Groups Projects
Commit 798c22fb authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Account for matlab R2017b.

parent 6e1d5bdf
Branches
Tags
No related merge requests found
...@@ -22,6 +22,9 @@ AC_REQUIRE([AX_MATLAB]) ...@@ -22,6 +22,9 @@ AC_REQUIRE([AX_MATLAB])
AC_MSG_CHECKING([for MATLAB version]) AC_MSG_CHECKING([for MATLAB version])
if test "x$MATLAB_VERSION" != "x"; then if test "x$MATLAB_VERSION" != "x"; then
case $MATLAB_VERSION in case $MATLAB_VERSION in
*2017b | *2017B)
MATLAB_VERSION="9.3"
;;
*2017a | *2017A) *2017a | *2017A)
MATLAB_VERSION="9.2" MATLAB_VERSION="9.2"
;; ;;
......
...@@ -52,7 +52,7 @@ else ...@@ -52,7 +52,7 @@ else
end end
end end
else else
tmp = [dynareroot '../mex/matlab/win64-7.8-9.2/']; tmp = [dynareroot '../mex/matlab/win64-7.8-9.3/'];
if exist(tmp, 'dir') if exist(tmp, 'dir')
mexpath = tmp; mexpath = tmp;
if modifypath if modifypath
......
...@@ -98,9 +98,9 @@ Section "MEX files for MATLAB 64-bit, version 7.5 to 7.7 (R2007b to R2008b)" ...@@ -98,9 +98,9 @@ Section "MEX files for MATLAB 64-bit, version 7.5 to 7.7 (R2007b to R2008b)"
File ..\mex\matlab\win64-7.5-7.7\*.mexw64 File ..\mex\matlab\win64-7.5-7.7\*.mexw64
SectionEnd SectionEnd
Section "MEX files for MATLAB 64-bit, version 7.8 to 9.2 (R2009a to R2017a)" Section "MEX files for MATLAB 64-bit, version 7.8 to 9.3 (R2009a to R2017b)"
SetOutPath $INSTDIR\mex\matlab\win64-7.8-9.2 SetOutPath $INSTDIR\mex\matlab\win64-7.8-9.3
File ..\mex\matlab\win64-7.8-9.2\*.mexw64 File ..\mex\matlab\win64-7.8-9.3\*.mexw64
SectionEnd SectionEnd
SectionGroupEnd SectionGroupEnd
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment