From 5723e7ea5860fcde4f57c7ea25d8eeca1c73848e Mon Sep 17 00:00:00 2001 From: Houtan Bastani <houtan@dynare.org> Date: Fri, 13 May 2016 10:53:55 +0200 Subject: [PATCH] build system: remove support for 32-bit Matlab on OS X --- matlab/add_path_to_mex_files.m | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/matlab/add_path_to_mex_files.m b/matlab/add_path_to_mex_files.m index 7408746cfc..6d97eabddd 100644 --- a/matlab/add_path_to_mex_files.m +++ b/matlab/add_path_to_mex_files.m @@ -57,19 +57,9 @@ else end end end - % Add OS X 32bits specific paths for Dynare Mac package - if strcmp(computer, 'MACI') - tmp = [dynareroot '../mex/matlab/osx32-7.5-7.11/']; - if exist(tmp, 'dir') - mexpath = tmp; - if modifypath && exist(mexpath, 'dir') - addpath(mexpath); - end - end - end % Add OS X 64bits specific paths for Dynare Mac package if strcmp(computer, 'MACI64') - tmp = [dynareroot '../mex/matlab/osx64/']; + tmp = [dynareroot '../mex/matlab/osx/']; if exist(tmp, 'dir') mexpath = tmp; if modifypath && exist(mexpath, 'dir') -- GitLab