필터 지우기
필터 지우기

How do you specify api:matlab-data when using the Library Compiler for .NET Assembly? 2023b

조회 수: 4 (최근 30일)
I'm trying to compile using the matlab-data api with MATLAB 2023b but I cannot figure out how to add it.
I've tried adding -W 'dotnet:api=matlab-data' to the "Additional parameters passed to mcc" field in Settings. The result is:
mcc -W dotnet:api=matlab-data -W 'dotnet:MLI,Class1,5.0,private,version=1.0'........
with the error message of:
Invalid placement of "api=" in -W option. "api=" must be specified immediately after component name.
If I cleanup the command that's in the log and run it to be the below value then it works correctly.
mcc -W 'dotnet:MLI,Class1,api=matlab-data,5.0,private,version=1.0'........
How do I add the parameter in a way that I can use the Library Compiler to create this?

채택된 답변

Kojiro Saito
Kojiro Saito 2024년 4월 8일
As written in this document, "-W" option cannot be specified in Library Compiler App (deploytool app).
-W 'target[:options]'
Cannot be used in a deploytool app.
You need to specify the data api in compiler.build.dotNETAssembly,
compiler.build.dotNETAssembly(Files, 'Interface','matlab-data')
or in mcc.
mcc -W 'dotnet:MLI,Class1,api=matlab-data,5.0,private,version=1.0'

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Compiler SDK에 대해 자세히 알아보기

태그

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by