mex error ARCH: Unsupported platform.
Mostra commenti meno recenti
hey, I am trying to use mex -setup but when I input commend "mex -setup", the error message comes as below: Error: ARCH: Unsupported platform. but I still can select the compiler and continue it. can anyone tell me what is the error message mean? is it effect the work? Im using matlab2013a and windows8 64bit thanks very much for your kindly answer
21 Commenti
Friedrich
il 23 Apr 2013
What do you get when running:
system(fullfile(matlabroot,'bin','mexext.bat'));
wei
il 23 Apr 2013
wei
il 23 Apr 2013
Walter Roberson
il 23 Apr 2013
Modificato: Walter Roberson
il 23 Apr 2013
Friedrich's command did not work because you have a space in the path. But you should not need it; you should be able to just type
mexext
Also we will need to see the output of
computer('arch')
wei
il 23 Apr 2013
Friedrich
il 23 Apr 2013
Yes, right my fault. I asked for mexext.bat because its easily debugable whereas mexext in MATLAB isn't. This should work now:
system(['"',fullfile(matlabroot,'bin','mexext.bat'),'"']);
wei
il 23 Apr 2013
Walter Roberson
il 23 Apr 2013
Is it still saying that D:Program cannot be recognized? Or is it just saying MEXEXT: Unsupported platform now?
wei
il 24 Apr 2013
Walter Roberson
il 24 Apr 2013
curdir = cd( fullfile(matlabroot, 'bin') );
system('mexext.bat');
cd(curdir);
wei
il 24 Apr 2013
wei
il 24 Apr 2013
Walter Roberson
il 24 Apr 2013
Ah... what does matlabroot return for you? In particular, does it include the C: or D: drive prefix?
wei
il 24 Apr 2013
wei
il 24 Apr 2013
Walter Roberson
il 24 Apr 2013
It's okay, cd() returns as its value the old directory.
Is it returning 'D:MATLAB' or is it 'D:\MATLAB' ? If it does not have the \ in there then you are making use of some icky MS Windows relative-directory semantics that are going to cause trouble later. Better if you use the full path rather than the relative path. How are you getting to D:MATLAB ? Are you cd'ing to there or is it by way of the Windows Explorer properties set for the MATLAB icon ?
Anyhow, please also show the content of
matlabroot
Friedrich
il 24 Apr 2013
Please run
!set
in MATLAB and post the output here.
wei
il 24 Apr 2013
Friedrich
il 24 Apr 2013
At least those env. vars suggesting that you started the matlab.exe from the D:\Program Files\MATLAB\R2013a\bin\win64 folder. Whats happening when you start the matlab.exe in the D:\Program Files\MATLAB\R2013a\bin folder?
wei
il 25 Apr 2013
Risposte (1)
Jan
il 24 Apr 2013
0 voti
Two chances to find out more about the serious problem:
- dbstop if all error, then run mex -setup again. Now look if you find any comments near to the failing line. Perhaps you can check the value, hwioch does not match the filter.
- Call the technical support of TMW. The help for installation problems.
1 Commento
wei
il 25 Apr 2013
Categorie
Scopri di più su Web Services in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!