How can I retrieve the source files from the _sharedutils folder of a build?

10 visualizzazioni (ultimi 30 giorni)

Risposta accettata

MathWorks Support Team
MathWorks Support Team il 30 Lug 2020
Modificato: MathWorks Support Team il 30 Lug 2020
In MATLAB R2018b and prior, you can obtain a list of shared source files using the model build information:
sharedSourceLib = buildInfo.getLinkObjects('SHARED_SRC_LIB')
getSourceFiles(sharedSourceLib, 1, 1)
In MATLAB R2019a and later, we no longer store a list of shared source files in the model buildInfo object. This is because in a model reference hierarchy, each model buildInfo captures a list of shared source files when the model was last built, so different model buildInfo's each have their own list of shared source files. Since each model buildInfo only captured shared source files that existed when the model buildInfo was created, each model buildInfo has a different list of shared source files (a subset of all the files in _sharedutils).
So starting from MATLAB R2019a, the shared utility code has its own buildInfo. You can use the following code to determine a list of the source files:
buildDir = RTW.getBuildDir(model)
sharedFolder = buildDir.SharedUtilsTgtDir;
sharedBuildInfo = load(fullfile(sharedFolder, 'buildInfo.mat'));
sharedBuildInfo = sharedBuildInfo.buildInfo;
sources = getSourceFiles(sharedBuildInfo, 1, 1);

Più risposte (0)

Categorie

Scopri di più su Deployment, Integration, and Supported Hardware in Help Center e File Exchange

Tag

Non è stata ancora inserito alcun tag.

Prodotti


Release

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by