Application deployment R2012a vs. R2014b

조회 수: 1 (최근 30일)
André
André 2015년 5월 8일
답변: André 2015년 5월 18일
I am attempting to update from R2012a to R2014b but have been unable to get 64bit stand-alone Windows applications to show anything other than the splashscreen for R2014b compiled code.
Here is the (simple) function
function deploytest
n = 1000;
v = zeros(1,n);
h = waitbar(0,'Please wait...');
for i=1:n,
v(1,i) = rand;
waitbar(i/n,h)
end
plot(v)
Compiled using "deploytool" from the MATLAB command line and then respective GUI/APP in 2012a and 2014b. Compiled on the same 64bit Windows workstation. No problems apparent in creation of executables. Transfer files by USB thumb drive as the deployed workstation is not on a network. Both MCR versions are installed on the deployed workstation. Runs just fine in 2012a.
Any ideas on what I am doing incorrectly or what I might be missing? - Andre Weinstock
  댓글 수: 4
André
André 2015년 5월 11일
Hi again,
I have been able to succesfully use R2014b 32bit.
Now thinking it might be something funny about my install of R2014b 64bit concurrently with other versions on my compiling workstation. Am trying a fresh install of R2015a 64bit and will see if that works.
Stay tuned...
André
André 2015년 5월 18일
Resloved by doing a clean install of R2015a 64bit and R2015a 32bit on the compiling workstation. Either there was a problem with the pathname of the 64bit R2014b or a bug in R2014b which I could not detemrine.

댓글을 달려면 로그인하십시오.

채택된 답변

André
André 2015년 5월 18일
This problem was resolved when I upgraded to R2015a (64bit and 32bit) on the compiling workstation. - Andre

추가 답변 (1개)

Dasharath Gulvady
Dasharath Gulvady 2015년 5월 12일
Check if "C:\Program Files\MATLAB\MATLAB Compiler Runtime\v84\runtime\win64" is added in Windows PATH environment variable. If it is present, make sure it is above all the other releases.
The best way to analyze such issues is by using Process Monitor.

카테고리

Help CenterFile 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!

Translated by