Класс: coder.make.BuildTool
Пакет: coder.make
Отображение свойств и значений инструмента сборки
h.info
возвращает информацию о h
.infocoder.make.BuildTool
объект.
Начиная с примера Add Custom Toolchains to MATLAB ® Coder™ Build Process, вводите следующие линии:
tc = intel_tc;
tool = tc.getBuildTool('C Compiler');
tool.info
############################################## # Build Tool: Intel C Compiler ############################################## Language : 'C' OptionsRegistry : {'C Compiler','CFLAGS'} InputFileExtensions : {'Source'} OutputFileExtensions : {'Object'} DerivedFileExtensions : {'|>OBJ_EXT<|'} SupportedOutputs : {'*'} CommandPattern : '|>TOOL<| |>TOOL_OPTIONS<| |>OUTPUT_FLAG<||>OUTPUT<|' # --------- # Command # --------- CC = icl CC_PATH = # ------------ # Directives # ------------ Debug = -Zi Include = IncludeSearchPath = -I OutputFlag = -Fo PreprocessorDefine = -D # ----------------- # File Extensions # ----------------- Header = .h Object = .obj Source = .c