From 8d4a786027f934c429accda6e64828d17fe1a6bb Mon Sep 17 00:00:00 2001 From: Michael Grant Date: Wed, 10 Apr 2024 17:10:19 -0500 Subject: [PATCH] fix windows detection --- install_sdpt3.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install_sdpt3.m b/install_sdpt3.m index 9afe045..af669cf 100644 --- a/install_sdpt3.m +++ b/install_sdpt3.m @@ -34,8 +34,10 @@ function install_sdpt3( varargin ) mdir = 'o_maci'; case 'aarch64-apple-darwin23.4.0' mdir = 'o_maca'; - case 'i686-w64-mingw32' + case 'x86_64-w64-mingw32' mdir = 'o_win'; + otherwise + error(sprintf('Unexpected computer type: %s', COMPUTER)); end mext = 'mex'; else