Skip to content

Commit

Permalink
AssertMex(): Handle mex file names for native Matlab for Apple Silico…
Browse files Browse the repository at this point in the history
…n macOS.
  • Loading branch information
kleinerm committed Dec 26, 2023
1 parent 7dd4e3a commit 1861793
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Psychtoolbox/PsychOneliners/AssertMex.m
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@

% Initialize the persistent variables.
if isempty(okNames)
okNames = { 'PCWIN', 'PCWIN64', 'SOL2', 'HPUX', 'HP700', 'ALPHA', 'IBM_RS', 'SGI', 'GLNX86', 'MAC', 'MAC2', 'MACI', 'i486-pc-linux-gnu', 'MACI64', 'GLNXA64' };
mexExtensions = {'mexw32', 'mexw64', '*', '*', '*', '*', '*', '*', 'mexglx', 'mexmac', 'mex', 'mexmaci', 'mex', 'mexmaci64', 'mexa64' };
okNames = { 'PCWIN', 'PCWIN64', 'SOL2', 'HPUX', 'HP700', 'ALPHA', 'IBM_RS', 'SGI', 'GLNX86', 'MAC', 'MAC2', 'MACI', 'i486-pc-linux-gnu', 'MACI64', 'GLNXA64', 'MACA64'};
mexExtensions = {'mexw32', 'mexw64', '*', '*', '*', '*', '*', '*', 'mexglx', 'mexmac', 'mex', 'mexmaci', 'mex', 'mexmaci64', 'mexa64', 'mexmaca64'};
end

inputNames = [];
Expand Down

0 comments on commit 1861793

Please sign in to comment.