How to avoid code error when compile stand alone utility
8 次查看(过去 30 天)
显示 更早的评论
Hello,
I'm trying to compile a Stand Alone Utility.
Source code is based on folders tree with many layers and functions (it's a ~ 10 years legacy code).
I receive error in "deploytool" for trying to compile functions with Matlab error inside. I've tried to fix the errors manually, one by one, but there are just too many.
Is there an automated process, in which I could simple check something like "ignore files with code error"?
I know for 100% my GUI won't be using those files with error code, that's why I don't afraind to remove them entirely from my compilation.
I'm familiar with the function "checkcode". But in order to use it, I have to run over ALL the "milion" files in my GUI, and I'm trying to avoid that.
2 个评论
Benjamin Thompson
2022-5-25
Please post the code, and which C compiler you have configured with MEX to compile the code, and a list of the output errors. Otherwise we cannot reproduce your problem and do not know what errors you are having.
回答(1 个)
Image Analyst
2022-5-25
With lots of silly errors, are you even able to run it in the MATLAB IDE? If so, can you simply use
>> mcc -m yourMainFile.m
to compile your app? If not, what does it say? It shouldn't matter if there are hundreds of functions being called as long as they are all on the path -- it will find them. Sometimes the code will only throw an error during run-time so of course the compiler won't know or care about those lines of code. However if there is a syntax error in your main program, it won't compile. Not sure if syntax errors in dependent m-files will be caught during the compile process or not.
I compile standalone apps built with GUIDE every day.
Compiler FAQ:
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!