Filter löschen
Filter löschen

Error message from c++ compiler is messy when build mex file.

4 Ansichten (letzte 30 Tage)
Jiangfeng Liu
Jiangfeng Liu am 21 Apr. 2022
Beantwortet: Abhishek Chakram am 27 Dez. 2023
I'm building some mex files from c++ source files using Microsoft visual studio 2017 as the compiler. But the error message is not readable. I think it's encoding problem, but I don't know how to solve it. Can someone help me?

Antworten (1)

Abhishek Chakram
Abhishek Chakram am 27 Dez. 2023
Hi Jiangfeng Liu,
It appears to me that you are facing difficulty in building mex files from c++ source files using Microsoft visual studio 2017 as the compiler. The error message you are seeing is likely due to a mismatch between the character encoding used by Visual Studio's output and the encoding expected by MATLAB's command window or the console where you are viewing the message. Here are few ways to resolve the encoding issue:
  • Change Console Code Page:
1. Open a Command Prompt window.
2. Before running MATLAB, change the code page to UTF-8 by typing “chcp 65001”.
3. Start MATLAB from this Command Prompt window and try building the MEX file again.
  • Change MATLAB's Default Character Encoding: In MATLAB, you can change the default character set to UTF-8 by running the following command:
feature('DefaultCharacterSet', 'UTF-8');
After setting this, try to compile the MEX file again.
I hope this helps.
Best Regards,
Abhishek Chakram

Kategorien

Mehr zu MATLAB Compiler finden Sie in Help Center und File Exchange

Produkte


Version

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by