Why does MATLAB Compiler generate a warning message about a startup file, even though no startup file is present on the MATLAB search path?
이전 댓글 표시
I am trying to create a standalone application using Application Compiler or 'mcc' and get the Warning message:
[Warning: Your deployed application may error out because file or folder paths
not present in the deployed environment may be included in your MATLAB startup
file. Use the MATLAB function "isdeployed" in your MATLAB startup file to
determine the appropriate execution environment when including file and folder
paths, and recompile your application.
]
I confirmed that there is no startup.m file present on the MATLAB search path.
>> which startup.m
'startup.m' not found
The mcc equivalent code that I use to invoke MATLAB Compiler is:
>> mcc -m myprogram.m -a ./*.mexw64
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!