Standalone executiable can't work and show 'Unable to locate program input point' related to libmwms.dll

조회 수: 3 (최근 30일)
Version:2019b
I generated a Standalone executiable in MATLAB, but there will be an error when running it.
Errors show:
Unable to locate program input point ?internal_push_move@concurrent_queue_base_v8@internal@tbb@@IEAAXBX@Z at C:\XXXX\libmwms.dll.
Actually, there is libmwms.dll in the specified path. And I uninstalled the MATLAB , and after reinstallation, this problem still exists.
By the way, the Standalone executiable can work in another PC, I don't why.
  댓글 수: 3
Logan
Logan 2022년 8월 26일
Hi, I'm having the same issue with two of my programs now on two different computers; they work fine on my machine as well as on a fourth other machine. Have you figured out a solution to this?
JiYuan Lee
JiYuan Lee 2022년 8월 30일
No, I guess it due to two versions of MATLAB installed in the computer.

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

채택된 답변

Divyam
Divyam 2025년 4월 30일
The error arises due to the presence of multiple versions of the "tbb.dll" on your system. "tbb.dll" is part of Intel's Threading Building Blocks library, and a copy of it is also shipped with MATLAB and MATLAB Runtime.
The tbb.dll that comes with MATLAB can be found in '$MATLABROOT\bin\win64'. When the error occurs, your application is most likely picking up a different version of tbb.dll from the "C:\Windows\System32" folder.
There are two possible workarounds:
  1. Drag a copy of MATLAB's tbb.dll and place it within the same folder as your application file. The above workaround is to force the process to pick up the required version of tbb.dll.
  2. Back up the "tbb.dll" file in your C:\Window\System32 directory before removing it. This will restore functionality to your compiled MATLAB applications but may break the functionality of whichever 3rd party application that originally placed the "tbb.dll" file in your C:\Window\System32 directory. Once the exact 3rd party application can be verified, placing the backup "tbb.dll" directly in that application's installation directory should resolve the issue.
I hope this helps to resolve your issue!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by