主要内容

getPostbuildTool

获取后编译 BuildTool 对象

语法

bldtl_handle = h.getPostbuildTool(bldtl_name)

说明

bldtl_handle = h.getPostbuildTool(bldtl_name)PostbuildTool 获取命名的 BuildTool 对象并返回该对象的句柄。

输入参数

全部展开

使用对象句柄(如 h)指定的 coder.make.ToolchainInfo 对象。要创建 h,请在 MATLAB® 命令行窗口中输入 h = coder.make.ToolchainInfo

编译工具名称,指定为字符向量或字符串标量。

数据类型: char | string

输出参量

全部展开

coder.make.BuildTool 对象句柄。

示例

h.getPostbuildTool('Download')
ans = 

##############################################
# Build Tool: Download
##############################################

Language              : ''
OptionsRegistry       : {'Download','DOWNLOAD_FLAGS'}
InputFileExtensions   : {}
OutputFileExtensions  : {}
DerivedFileExtensions : {}
SupportedOutputs      : {coder.make.enum.BuildOutput.EXECUTABLE}
CommandPattern        : '|>TOOL<| |>TOOL_OPTIONS<|'

# ---------
# Command
# ---------
DOWNLOAD  = 
DOWNLOAD_PATH  = 

# ------------
# Directives
# ------------
(none)

# -----------------
# File Extensions
# -----------------
(none)

版本历史记录

在 R2013a 中推出