Skip to content

Commit 8456f3a

Browse files
authored
Merge pull request #23 from sqlp/fix-win
fix windows detection
2 parents 5b3f79f + 8d4a786 commit 8456f3a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

install_sdpt3.m

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,10 @@ function install_sdpt3( varargin )
3434
mdir = 'o_maci';
3535
case 'aarch64-apple-darwin23.4.0'
3636
mdir = 'o_maca';
37-
case 'i686-w64-mingw32'
37+
case 'x86_64-w64-mingw32'
3838
mdir = 'o_win';
39+
otherwise
40+
error(sprintf('Unexpected computer type: %s', COMPUTER));
3941
end
4042
mext = 'mex';
4143
else

0 commit comments

Comments
 (0)