Класс: coder.make.BuildTool
Пакет: coder.make
Установите путь и макрос инструмента сборки в Path
h.setPath(btpath,btmacro)
устанавливает путь и макрос инструмента сборки в coder.make.BuildTool.Paths.h
.setPath(btpath
,btmacro
)
Следующий пример кода показывает setPath
во фрагменте intel_tc.m
файл от Добавления Пользовательских Наборов инструментальных средств к примеру MATLAB® Coder™ Build Process.
% ------------------------------ % C Compiler % ------------------------------ tool = tc.getBuildTool('C Compiler'); tool.setName('Intel C Compiler'); tool.setCommand('icl'); tool.setPath(''); tool.setDirective('IncludeSearchPath','-I'); tool.setDirective('PreprocessorDefine','-D'); tool.setDirective('OutputFlag','-Fo'); tool.setDirective('Debug','-Zi'); tool.setFileExtension('Source','.c'); tool.setFileExtension('Header','.h'); tool.setFileExtension('Object','.obj'); tool.setCommandPattern('|>TOOL<| |>TOOL_OPTIONS<| |>OUTPUT_FLAG<||>OUTPUT<|');
Этот пример показывает вводы и выводы в качестве примера для методов в Командном окне MATLAB®:
Введите следующие линии:
tc = coder.make.ToolchainInfo;
tool = tc.getBuildTool('C Compiler');
tool.getPath
ans = ''
tool.getPath('macro')
ans = CC_PATH
tool.setPath('/gcc')
tool.Path
ans = Macro : CC_PATH Value : /gcc