Is there a way to tell the compiler to exclude the JVM if using compiler.build.StandaloneApplicationOptions?
I have an existing build script for a console application that compiles with the following command:
compiler.build.standaloneApplication(opts)
where opts is of the type:
compiler.build.StandaloneApplicationOptions
Is there a way to tell the runtime to exclude the JVM inside the opts argument so that it will load faster? I basically want to do the same thing as:
mcc -m -R -nojvm
Unfortunately, I don’t want to re-write this build script because it is a standard script we use.
Thanks in advance,
DaveI have an existing build script for a console application that compiles with the following command:
compiler.build.standaloneApplication(opts)
where opts is of the type:
compiler.build.StandaloneApplicationOptions
Is there a way to tell the runtime to exclude the JVM inside the opts argument so that it will load faster? I basically want to do the same thing as:
mcc -m -R -nojvm
Unfortunately, I don’t want to re-write this build script because it is a standard script we use.
Thanks in advance,
Dave I have an existing build script for a console application that compiles with the following command:
compiler.build.standaloneApplication(opts)
where opts is of the type:
compiler.build.StandaloneApplicationOptions
Is there a way to tell the runtime to exclude the JVM inside the opts argument so that it will load faster? I basically want to do the same thing as:
mcc -m -R -nojvm
Unfortunately, I don’t want to re-write this build script because it is a standard script we use.
Thanks in advance,
Dave matlab compiler, jvm, build options, standalone application MATLAB Answers — New Questions