getCommand
获取编译工具命令
语法
c_out = h.getCommand
c_out = h.getCommand('value')
c_out = h.getCommand('macro')
说明
输入参数
输出参量
示例
tc = coder.make.ToolchainInfo;
btl = tc.getBuildTool('C Compiler');
btl.getCommand
ans = icl
btl.getCommand('value')
ans = icl
c_out = btl.getCommand('macro')
c_out = CC
版本历史记录
在 R2013a 中推出