|
"Bruno Luong" <b.luong@fogale.findmycountry> wrote in message <k6vnh9$q8r$1@newscl01ah.mathworks.com>...
>
> On my MATLAB when I invoke "mcc -m ...", it's a blocking command, meaning when it's done the exe is built, it does not return right the way and it does not do the work in the background.
>
> I don't know what is those .prj file. I don't use those.
>
> Bruno
mcc is a blocking command, yep....
There's a deploytool command, see http://www.mathworks.co.uk/help/compiler/deploytool.html . On the whole - it's just a GUI for mcc.
I just prefer to drag&drop required files to a build project, and save them as a prj, rather then create a "buildfile" myself...
"Yair Altman" wrote in message <k704hg$8j9$1@newscl01ah.mathworks.com>...
> Igor - in your deploytool, the log window lists the Matlab commands that it is using (the main one being mcc). Simply copy these commands to a new text file (e.g., myCompile.m) and then run this file from the Matlab command window. It should block as requested until the script is done.
Hi, Yair. Thanks for your suggestion. Yep, just copy-pasting command line to my own buildfile might be an easiest workaround... Still just a workaround, though...
On the first place, I'm trying to understand, whether "deploytool -build" behaviour is normal, or is it a bug...
|